CS计算机代考程序代写 SQL algorithm data structure CVE_exploration

CVE_exploration

In [1]:

import pandas as pd
import numpy as np
df = pd.read_csv(‘cve.csv’)
df.head()

Out[1]:

Unnamed: 0 mod_date pub_date cvss cwe_code cwe_name Unnamed: 6
0 CVE-2019-16548 21/11/2019 15:15 21/11/2019 15:15 6.8 352 Cross-Site Request Forgery (CSRF) NaN
1 CVE-2019-16547 21/11/2019 15:15 21/11/2019 15:15 4.0 732 Incorrect Permission Assignment for Critical … NaN
2 CVE-2019-16546 21/11/2019 15:15 21/11/2019 15:15 4.3 639 Authorization Bypass Through User-Controlled Key NaN
3 CVE-2013-2092 20/11/2019 21:22 20/11/2019 21:15 4.3 79 Improper Neutralization of Input During Web P… NaN
4 CVE-2013-2091 20/11/2019 20:15 20/11/2019 20:15 7.5 89 Improper Neutralization of Special Elements u… NaN

In [2]:

print(“,”.join([column for column in df]))

Unnamed: 0,mod_date,pub_date,cvss,cwe_code,cwe_name,Unnamed: 6

In [3]:

list(df)

Out[3]:

[‘Unnamed: 0’,
‘mod_date’,
‘pub_date’,
‘cvss’,
‘cwe_code’,
‘cwe_name’,
‘Unnamed: 6’]

In [4]:

for index, row in df.iterrows():
print(“,”.join([str(row[column]) for column in df]))

CVE-2019-16548,21/11/2019 15:15,21/11/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16547,21/11/2019 15:15,21/11/2019 15:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16546,21/11/2019 15:15,21/11/2019 15:15,4.3,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2013-2092,20/11/2019 21:22,20/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2091,20/11/2019 20:15,20/11/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1817,20/11/2019 20:15,20/11/2019 20:15,5.0,200, Information Exposure,nan
CVE-2013-1816,20/11/2019 20:15,20/11/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2012-1257,20/11/2019 20:15,20/11/2019 20:15,2.1,319, Cleartext Transmission of Sensitive Information,nan
CVE-2011-4455,20/11/2019 20:10,20/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4454,20/11/2019 20:10,20/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4659,20/11/2019 17:48,20/11/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4660,20/11/2019 16:15,20/11/2019 16:15,7.5,20, Improper Input Validation,nan
CVE-2013-0195,20/11/2019 15:15,20/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0194,20/11/2019 15:15,20/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0193,20/11/2019 15:15,20/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6136,20/11/2019 15:15,20/11/2019 15:15,4.9,276, Incorrect Default Permissions,nan
CVE-2011-1028,20/11/2019 15:15,20/11/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-15072,20/11/2019 5:15,20/11/2019 5:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15071,20/11/2019 4:15,20/11/2019 4:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6191,20/11/2019 2:15,20/11/2019 2:15,4.6,269, Improper Privilege Management,nan
CVE-2019-6189,20/11/2019 2:15,20/11/2019 2:15,4.4,426, Untrusted Search Path,nan
CVE-2019-6187,20/11/2019 2:15,20/11/2019 2:15,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-6184,20/11/2019 2:15,20/11/2019 2:15,4.6,269, Improper Privilege Management,nan
CVE-2011-3352,19/11/2019 23:15,19/11/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10766,19/11/2019 20:57,19/11/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2922,19/11/2019 20:57,19/11/2019 19:15,7.2,20, Improper Input Validation,nan
CVE-2016-1000236,19/11/2019 18:43,19/11/2019 17:15,3.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-6135,19/11/2019 18:43,19/11/2019 17:15,6.4,20, Improper Input Validation,nan
CVE-2011-2921,19/11/2019 18:43,19/11/2019 17:15,10.0,273, Improper Check for Dropped Privileges,nan
CVE-2016-1000006,19/11/2019 16:43,19/11/2019 15:15,7.5,416, Use After Free,nan
CVE-2012-0842,19/11/2019 16:43,19/11/2019 15:15,2.1,200, Information Exposure,nan
CVE-2011-4954,19/11/2019 16:43,19/11/2019 16:15,7.2,269, Improper Privilege Management,nan
CVE-2011-4952,19/11/2019 16:43,19/11/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4919,19/11/2019 16:43,19/11/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-16861,19/11/2019 13:15,19/11/2019 13:15,6.9,426, Untrusted Search Path,nan
CVE-2019-16860,19/11/2019 13:15,19/11/2019 13:15,6.9,426, Untrusted Search Path,nan
CVE-2019-12422,18/11/2019 23:15,18/11/2019 23:15,5.0,20, Improper Input Validation,nan
CVE-2014-5118,18/11/2019 23:15,18/11/2019 23:15,2.1,20, Improper Input Validation,nan
CVE-2019-19117,18/11/2019 22:15,18/11/2019 22:15,9.0,20, Improper Input Validation,nan
CVE-2019-10764,18/11/2019 22:15,18/11/2019 22:15,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-4441,18/11/2019 22:15,18/11/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4440,18/11/2019 22:15,18/11/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7273,18/11/2019 22:15,18/11/2019 22:15,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-17085,18/11/2019 21:15,18/11/2019 21:15,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-15054,18/11/2019 21:15,18/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12409,18/11/2019 21:15,18/11/2019 21:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10070,18/11/2019 21:15,18/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4439,18/11/2019 21:15,18/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4438,18/11/2019 21:15,18/11/2019 21:15,6.5,20, Improper Input Validation,nan
CVE-2019-18215,18/11/2019 20:15,18/11/2019 20:15,4.4,426, Untrusted Search Path,nan
CVE-2019-10763,18/11/2019 20:15,18/11/2019 20:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3424,18/11/2019 19:28,18/11/2019 19:15,6.4,287, Improper Authentication,nan
CVE-2019-3423,18/11/2019 19:28,18/11/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12311,18/11/2019 19:28,18/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12299,18/11/2019 19:28,18/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12271,18/11/2019 19:28,18/11/2019 19:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20687,18/11/2019 19:28,18/11/2019 19:15,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5688,18/11/2019 18:15,18/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-5102,18/11/2019 18:15,18/11/2019 18:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-5101,18/11/2019 18:15,18/11/2019 18:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-19085,18/11/2019 16:33,18/11/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-19084,18/11/2019 16:33,18/11/2019 16:15,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-17058,18/11/2019 16:33,18/11/2019 16:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-17057,18/11/2019 16:33,18/11/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14467,18/11/2019 16:33,18/11/2019 16:15,4.6,20, Improper Input Validation,nan
CVE-2019-19083,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19082,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19081,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19080,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19079,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19078,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19077,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19076,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19075,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19074,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19073,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19072,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19071,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19070,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19069,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19068,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19067,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19066,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19065,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19064,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19063,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19062,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19061,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19060,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19059,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19058,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19057,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19056,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19055,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19054,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19053,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19052,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19051,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19050,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19049,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19048,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19047,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19046,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19045,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19044,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19043,18/11/2019 6:15,18/11/2019 6:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-19041,17/11/2019 21:15,17/11/2019 21:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-19040,17/11/2019 21:15,17/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-19035,17/11/2019 18:15,17/11/2019 18:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-19022,17/11/2019 18:15,17/11/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-19012,17/11/2019 18:15,17/11/2019 18:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-19011,17/11/2019 18:15,17/11/2019 18:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-19010,16/11/2019 1:15,16/11/2019 1:15,7.5,20, Improper Input Validation,nan
CVE-2019-16762,15/11/2019 23:15,15/11/2019 23:15,4.9,20, Improper Input Validation,nan
CVE-2019-16761,15/11/2019 23:15,15/11/2019 23:15,4.9,20, Improper Input Validation,nan
CVE-2019-6664,15/11/2019 21:30,15/11/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-6663,15/11/2019 21:30,15/11/2019 21:15,4.3,20, Improper Input Validation,nan
CVE-2019-6662,15/11/2019 21:30,15/11/2019 21:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-6661,15/11/2019 21:30,15/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6660,15/11/2019 21:30,15/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6659,15/11/2019 21:30,15/11/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-18372,15/11/2019 18:42,15/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-12759,15/11/2019 18:42,15/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-12758,15/11/2019 18:42,15/11/2019 18:15,7.2,20, Improper Input Validation,nan
CVE-2018-18368,15/11/2019 18:04,15/11/2019 17:15,4.6,269, Improper Privilege Management,nan
CVE-2009-5047,15/11/2019 16:15,15/11/2019 16:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0023,15/11/2019 15:15,15/11/2019 15:15,4.6,668, Exposure of Resource to Wrong Sphere,nan
CVE-2013-7089,15/11/2019 15:15,15/11/2019 15:15,5.0,200, Information Exposure,nan
CVE-2013-7088,15/11/2019 15:15,15/11/2019 15:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2013-7087,15/11/2019 15:15,15/11/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14345,15/11/2019 14:15,15/11/2019 14:15,7.5,269, Improper Privilege Management,nan
CVE-2019-14343,15/11/2019 13:15,15/11/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18986,15/11/2019 5:15,15/11/2019 5:15,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2019-18985,15/11/2019 5:15,15/11/2019 5:15,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2019-18982,15/11/2019 5:15,15/11/2019 5:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18928,15/11/2019 4:15,15/11/2019 4:15,7.5,269, Improper Privilege Management,nan
CVE-2019-18980,15/11/2019 3:23,14/11/2019 22:15,5.0,287, Improper Authentication,nan
CVE-2019-11931,15/11/2019 3:23,14/11/2019 23:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2211,14/11/2019 21:36,13/11/2019 18:15,7.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2212,14/11/2019 21:30,13/11/2019 18:15,4.9,200, Information Exposure,nan
CVE-2019-2213,14/11/2019 21:24,13/11/2019 18:15,6.9,416, Use After Free,nan
CVE-2019-18978,14/11/2019 21:21,14/11/2019 21:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-18651,14/11/2019 21:21,14/11/2019 21:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17391,14/11/2019 21:21,14/11/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-15804,14/11/2019 21:21,14/11/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-15803,14/11/2019 21:21,14/11/2019 21:15,6.4,20, Improper Input Validation,nan
CVE-2019-15801,14/11/2019 21:21,14/11/2019 21:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2019-15800,14/11/2019 21:21,14/11/2019 21:15,10.0,20, Improper Input Validation,nan
CVE-2019-15799,14/11/2019 21:21,14/11/2019 21:15,9.0,269, Improper Privilege Management,nan
CVE-2019-2214,14/11/2019 21:19,13/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-18793,14/11/2019 21:14,13/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18646,14/11/2019 20:57,14/11/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14591,14/11/2019 20:57,14/11/2019 20:15,2.1,20, Improper Input Validation,nan
CVE-2019-14590,14/11/2019 20:57,14/11/2019 20:15,2.1,200, Information Exposure,nan
CVE-2019-14574,14/11/2019 20:57,14/11/2019 20:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-11113,14/11/2019 20:57,14/11/2019 20:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11111,14/11/2019 20:57,14/11/2019 20:15,4.6,476, NULL Pointer Dereference,nan
CVE-2019-11089,14/11/2019 20:57,14/11/2019 20:15,2.1,20, Improper Input Validation,nan
CVE-2019-0184,14/11/2019 20:57,14/11/2019 20:15,2.1,200, Information Exposure,nan
CVE-2019-0152,14/11/2019 20:57,14/11/2019 20:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0151,14/11/2019 20:57,14/11/2019 20:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0124,14/11/2019 20:57,14/11/2019 20:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0123,14/11/2019 20:57,14/11/2019 20:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0117,14/11/2019 20:57,14/11/2019 20:15,2.1,200, Information Exposure,nan
CVE-2018-12207,14/11/2019 20:57,14/11/2019 20:15,4.9,20, Improper Input Validation,nan
CVE-2013-4106,14/11/2019 20:57,14/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16950,14/11/2019 20:45,13/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18647,14/11/2019 20:37,14/11/2019 15:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-18649,14/11/2019 20:23,14/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18648,14/11/2019 20:19,14/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18883,14/11/2019 19:57,13/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18939,14/11/2019 19:34,14/11/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-18938,14/11/2019 19:34,14/11/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-18937,14/11/2019 19:34,14/11/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-11139,14/11/2019 19:34,14/11/2019 19:15,2.1,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-11135,14/11/2019 19:34,14/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-11112,14/11/2019 19:34,14/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0185,14/11/2019 19:34,14/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-0155,14/11/2019 19:34,14/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0150,14/11/2019 19:34,14/11/2019 19:15,2.1,863, Incorrect Authorization,nan
CVE-2019-0149,14/11/2019 19:34,14/11/2019 19:15,2.1,20, Improper Input Validation,nan
CVE-2019-0148,14/11/2019 19:34,14/11/2019 19:15,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-0147,14/11/2019 19:34,14/11/2019 19:15,2.1,20, Improper Input Validation,nan
CVE-2019-0146,14/11/2019 19:34,14/11/2019 19:15,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-0145,14/11/2019 19:34,14/11/2019 19:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-0144,14/11/2019 19:34,14/11/2019 19:15,4.9,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-0143,14/11/2019 19:34,14/11/2019 19:15,4.9,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-0142,14/11/2019 19:34,14/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0140,14/11/2019 19:34,14/11/2019 19:15,5.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-0139,14/11/2019 19:34,14/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2013-4109,14/11/2019 19:34,14/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3073,14/11/2019 19:34,14/11/2019 18:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3072,14/11/2019 19:34,14/11/2019 19:15,7.5,287, Improper Authentication,nan
CVE-2013-3070,14/11/2019 19:34,14/11/2019 19:15,5.0,200, Information Exposure,nan
CVE-2012-4384,14/11/2019 19:23,13/11/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3592,14/11/2019 18:25,13/11/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3655,14/11/2019 17:40,13/11/2019 16:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16110,14/11/2019 17:31,14/11/2019 17:15,6.8,20, Improper Input Validation,nan
CVE-2019-15744,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15743,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15475,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15474,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15473,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15472,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15471,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15470,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15469,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15468,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15467,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15466,14/11/2019 17:31,14/11/2019 17:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-15465,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15464,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15462,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15461,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15460,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15459,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15458,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15457,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15456,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15455,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15454,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15453,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15452,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15451,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15449,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15448,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15447,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15446,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15445,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15444,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15443,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15440,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15439,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15438,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15437,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15436,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15435,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15434,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15433,14/11/2019 17:31,14/11/2019 17:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15432,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15431,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15388,14/11/2019 17:31,14/11/2019 17:15,9.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15387,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15386,14/11/2019 17:31,14/11/2019 17:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15383,14/11/2019 17:31,14/11/2019 17:15,2.1,862, Missing Authorization,nan
CVE-2019-15377,14/11/2019 17:31,14/11/2019 17:15,2.1,862, Missing Authorization,nan
CVE-2019-15376,14/11/2019 17:31,14/11/2019 17:15,2.1,862, Missing Authorization,nan
CVE-2019-15375,14/11/2019 17:31,14/11/2019 17:15,2.1,862, Missing Authorization,nan
CVE-2019-14818,14/11/2019 17:31,14/11/2019 17:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-14602,14/11/2019 17:31,14/11/2019 17:15,4.6,276, Incorrect Default Permissions,nan
CVE-2019-14566,14/11/2019 17:31,14/11/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2019-14565,14/11/2019 17:31,14/11/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2019-11182,14/11/2019 17:31,14/11/2019 17:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11181,14/11/2019 17:31,14/11/2019 17:15,7.2,125, Out-of-bounds Read,nan
CVE-2019-11180,14/11/2019 17:31,14/11/2019 17:15,7.8,20, Improper Input Validation,nan
CVE-2019-11179,14/11/2019 17:31,14/11/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2019-11178,14/11/2019 17:31,14/11/2019 17:15,5.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-11177,14/11/2019 17:31,14/11/2019 17:15,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-11175,14/11/2019 17:31,14/11/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-11174,14/11/2019 17:31,14/11/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-11173,14/11/2019 17:31,14/11/2019 17:15,3.6,384, Session Fixation,nan
CVE-2019-11172,14/11/2019 17:31,14/11/2019 17:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-11171,14/11/2019 17:31,14/11/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11170,14/11/2019 17:31,14/11/2019 17:15,7.2,287, Improper Authentication,nan
CVE-2019-11168,14/11/2019 17:31,14/11/2019 17:15,6.4,613, Insufficient Session Expiration,nan
CVE-2019-11156,14/11/2019 17:31,14/11/2019 17:15,4.6,269, Improper Privilege Management,nan
CVE-2019-11155,14/11/2019 17:31,14/11/2019 17:15,3.6,276, Incorrect Default Permissions,nan
CVE-2019-11154,14/11/2019 17:31,14/11/2019 17:15,3.6,276, Incorrect Default Permissions,nan
CVE-2019-11153,14/11/2019 17:31,14/11/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11152,14/11/2019 17:31,14/11/2019 17:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11151,14/11/2019 17:31,14/11/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11137,14/11/2019 17:31,14/11/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2019-11136,14/11/2019 17:31,14/11/2019 17:15,4.6,269, Improper Privilege Management,nan
CVE-2012-1170,14/11/2019 17:31,14/11/2019 17:15,5.0,354, Improper Validation of Integrity Check Value,nan
CVE-2012-1169,14/11/2019 17:31,14/11/2019 17:15,5.0,200, Information Exposure,nan
CVE-2012-1161,14/11/2019 17:31,14/11/2019 17:15,4.0,200, Information Exposure,nan
CVE-2012-1160,14/11/2019 17:31,14/11/2019 17:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2012-1159,14/11/2019 17:31,14/11/2019 17:15,4.0,200, Information Exposure,nan
CVE-2012-1158,14/11/2019 17:31,14/11/2019 17:15,4.0,200, Information Exposure,nan
CVE-2012-1157,14/11/2019 17:31,14/11/2019 17:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-8248,14/11/2019 16:53,14/11/2019 16:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8247,14/11/2019 16:53,14/11/2019 16:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8246,14/11/2019 16:53,14/11/2019 16:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-8244,14/11/2019 16:53,14/11/2019 16:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8243,14/11/2019 16:53,14/11/2019 16:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8242,14/11/2019 16:53,14/11/2019 16:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8241,14/11/2019 16:53,14/11/2019 16:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8240,14/11/2019 16:53,14/11/2019 16:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8239,14/11/2019 16:53,14/11/2019 16:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7962,14/11/2019 16:53,14/11/2019 16:15,4.4,426, Untrusted Search Path,nan
CVE-2019-7960,14/11/2019 16:53,14/11/2019 16:15,4.4,426, Untrusted Search Path,nan
CVE-2013-4655,14/11/2019 16:46,13/11/2019 16:15,7.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-18957,14/11/2019 14:15,14/11/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18895,14/11/2019 14:15,14/11/2019 14:15,4.6,276, Incorrect Default Permissions,nan
CVE-2019-18885,14/11/2019 14:15,14/11/2019 14:15,2.1,476, NULL Pointer Dereference,nan
CVE-2019-3651,14/11/2019 13:15,13/11/2019 23:15,6.5,200, Information Exposure,nan
CVE-2019-5029,14/11/2019 12:30,13/11/2019 23:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-3663,14/11/2019 12:30,14/11/2019 0:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-3662,14/11/2019 12:30,14/11/2019 0:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3661,14/11/2019 12:30,14/11/2019 0:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3660,14/11/2019 12:30,13/11/2019 23:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-3650,14/11/2019 12:30,13/11/2019 23:15,4.0,200, Information Exposure,nan
CVE-2019-3649,14/11/2019 12:30,13/11/2019 23:15,4.0,200, Information Exposure,nan
CVE-2019-3640,14/11/2019 12:30,14/11/2019 0:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-3420,14/11/2019 12:30,13/11/2019 23:15,3.3,200, Information Exposure,nan
CVE-2019-18954,14/11/2019 12:30,14/11/2019 0:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-18952,14/11/2019 12:30,13/11/2019 23:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-18951,14/11/2019 12:30,13/11/2019 23:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-18949,14/11/2019 12:30,14/11/2019 3:15,5.0,20, Improper Input Validation,nan
CVE-2019-18923,14/11/2019 12:30,13/11/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18240,14/11/2019 12:30,13/11/2019 23:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-16863,14/11/2019 12:30,14/11/2019 3:15,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-13555,14/11/2019 12:30,13/11/2019 23:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-0396,14/11/2019 12:30,13/11/2019 23:15,5.5,20, Improper Input Validation,nan
CVE-2019-0393,14/11/2019 12:30,13/11/2019 22:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0391,14/11/2019 12:30,13/11/2019 22:15,4.0,200, Information Exposure,nan
CVE-2019-0390,14/11/2019 12:30,13/11/2019 22:15,4.0,200, Information Exposure,nan
CVE-2019-0389,14/11/2019 12:30,13/11/2019 22:15,6.5,269, Improper Privilege Management,nan
CVE-2019-0388,14/11/2019 12:30,13/11/2019 23:15,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2019-0386,14/11/2019 12:30,13/11/2019 23:15,6.5,863, Incorrect Authorization,nan
CVE-2019-0385,14/11/2019 12:30,13/11/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0382,14/11/2019 12:30,13/11/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3366,14/11/2019 12:30,13/11/2019 22:15,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3097,14/11/2019 12:30,13/11/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1588,14/11/2019 12:30,14/11/2019 2:15,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2011-1490,14/11/2019 12:30,14/11/2019 2:15,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2011-1489,14/11/2019 12:30,14/11/2019 2:15,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2011-1488,14/11/2019 12:30,14/11/2019 2:15,1.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2011-1145,14/11/2019 12:30,14/11/2019 2:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2011-1136,14/11/2019 12:30,14/11/2019 1:15,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1070,14/11/2019 12:30,14/11/2019 1:15,7.2,863, Incorrect Authorization,nan
CVE-2011-0544,14/11/2019 12:30,14/11/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5108,14/11/2019 12:30,13/11/2019 23:15,5.0,276, Incorrect Default Permissions,nan
CVE-2010-4664,14/11/2019 12:30,13/11/2019 22:15,6.5,269, Improper Privilege Management,nan
CVE-2019-17550,13/11/2019 21:26,13/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17515,13/11/2019 21:26,13/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1214,13/11/2019 21:26,13/11/2019 21:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2013-4275,13/11/2019 21:26,13/11/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3367,13/11/2019 21:26,13/11/2019 21:15,10.0,287, Improper Authentication,nan
CVE-2012-5193,13/11/2019 21:26,13/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4972,13/11/2019 21:26,13/11/2019 21:15,5.0,200, Information Exposure,nan
CVE-2010-4661,13/11/2019 21:26,13/11/2019 21:15,4.6,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2010-4657,13/11/2019 21:26,13/11/2019 21:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-9467,13/11/2019 20:22,13/11/2019 20:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9466,13/11/2019 20:22,13/11/2019 20:15,7.5,20, Improper Input Validation,nan
CVE-2019-2210,13/11/2019 20:22,13/11/2019 20:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-18884,13/11/2019 20:22,13/11/2019 20:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-18844,13/11/2019 20:22,13/11/2019 20:15,5.0,617, Reachable Assertion,nan
CVE-2019-18837,13/11/2019 20:22,13/11/2019 20:15,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-3516,13/11/2019 20:22,13/11/2019 20:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4654,13/11/2019 20:22,13/11/2019 20:15,9.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2010-4653,13/11/2019 20:22,13/11/2019 20:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-16951,13/11/2019 19:29,13/11/2019 19:15,5.0,200, Information Exposure,nan
CVE-2013-3517,13/11/2019 19:29,13/11/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4533,13/11/2019 19:29,13/11/2019 19:15,7.5,295, Improper Certificate Validation,nan
CVE-2019-2233,13/11/2019 18:28,13/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-2209,13/11/2019 18:28,13/11/2019 18:15,4.9,125, Out-of-bounds Read,nan
CVE-2019-2208,13/11/2019 18:28,13/11/2019 18:15,7.8,200, Information Exposure,nan
CVE-2019-2207,13/11/2019 18:28,13/11/2019 18:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-2206,13/11/2019 18:28,13/11/2019 18:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2205,13/11/2019 18:28,13/11/2019 18:15,10.0,416, Use After Free,nan
CVE-2019-2204,13/11/2019 18:28,13/11/2019 18:15,10.0,125, Out-of-bounds Read,nan
CVE-2019-2203,13/11/2019 18:28,13/11/2019 18:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-2202,13/11/2019 18:28,13/11/2019 18:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-2201,13/11/2019 18:28,13/11/2019 18:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2199,13/11/2019 18:28,13/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-2198,13/11/2019 18:28,13/11/2019 18:15,4.9,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2197,13/11/2019 18:28,13/11/2019 18:15,2.1,269, Improper Privilege Management,nan
CVE-2019-2196,13/11/2019 18:28,13/11/2019 18:15,4.9,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2195,13/11/2019 18:28,13/11/2019 18:15,7.2,20, Improper Input Validation,nan
CVE-2019-2193,13/11/2019 18:28,13/11/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-2192,13/11/2019 18:28,13/11/2019 18:15,7.2,20, Improper Input Validation,nan
CVE-2019-2036,13/11/2019 18:28,13/11/2019 18:15,10.0,269, Improper Privilege Management,nan
CVE-2019-18279,13/11/2019 18:28,13/11/2019 18:15,6.8,269, Improper Privilege Management,nan
CVE-2019-16949,13/11/2019 18:28,13/11/2019 18:15,4.0,20, Improper Input Validation,nan
CVE-2010-4532,13/11/2019 18:28,13/11/2019 18:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-5294,13/11/2019 17:27,13/11/2019 17:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-5293,13/11/2019 17:27,13/11/2019 17:15,4.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-5289,13/11/2019 17:27,13/11/2019 17:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16948,13/11/2019 17:27,13/11/2019 17:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2014-8167,13/11/2019 17:27,13/11/2019 17:15,4.3,295, Improper Certificate Validation,nan
CVE-2012-4385,13/11/2019 17:27,13/11/2019 17:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5292,13/11/2019 16:17,13/11/2019 16:15,2.1,200, Information Exposure,nan
CVE-2019-18931,13/11/2019 16:17,13/11/2019 16:15,9.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-18930,13/11/2019 16:17,13/11/2019 16:15,9.0,787, Out-of-bounds Write,nan
CVE-2019-18929,13/11/2019 16:17,13/11/2019 16:15,9.0,787, Out-of-bounds Write,nan
CVE-2019-15948,13/11/2019 16:17,13/11/2019 16:15,5.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-5288,13/11/2019 15:28,13/11/2019 15:15,9.3,190, Integer Overflow or Wraparound,nan
CVE-2019-5287,13/11/2019 15:28,13/11/2019 15:15,9.3,190, Integer Overflow or Wraparound,nan
CVE-2019-18839,13/11/2019 15:28,13/11/2019 15:15,8.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17524,13/11/2019 15:28,13/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17523,13/11/2019 15:28,13/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5282,13/11/2019 14:20,13/11/2019 14:15,6.8,415, Double Free,nan
CVE-2019-5279,13/11/2019 14:20,13/11/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-18397,13/11/2019 14:20,13/11/2019 14:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-3641,13/11/2019 14:00,13/11/2019 11:15,3.5,287, Improper Authentication,nan
CVE-2019-5246,13/11/2019 0:15,13/11/2019 0:15,4.6,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-5233,13/11/2019 0:15,13/11/2019 0:15,6.8,287, Improper Authentication,nan
CVE-2019-5231,13/11/2019 0:15,13/11/2019 0:15,2.1,863, Incorrect Authorization,nan
CVE-2019-5230,13/11/2019 0:15,13/11/2019 0:15,4.3,20, Improper Input Validation,nan
CVE-2019-5229,12/11/2019 23:15,12/11/2019 23:15,4.6,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-5228,12/11/2019 23:15,12/11/2019 23:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-5213,12/11/2019 23:15,12/11/2019 23:15,1.9,287, Improper Authentication,nan
CVE-2010-4177,12/11/2019 23:15,12/11/2019 23:15,2.1,319, Cleartext Transmission of Sensitive Information,nan
CVE-2010-3857,12/11/2019 23:15,12/11/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17224,12/11/2019 22:15,12/11/2019 22:15,5.8,476, NULL Pointer Dereference,nan
CVE-2011-1803,12/11/2019 22:15,12/11/2019 22:15,4.3,415, Double Free,nan
CVE-2011-1802,12/11/2019 22:15,12/11/2019 22:15,4.3,476, NULL Pointer Dereference,nan
CVE-2010-3844,12/11/2019 22:15,12/11/2019 22:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2010-3440,12/11/2019 22:15,12/11/2019 22:15,3.3,494, Download of Code Without Integrity Check,nan
CVE-2010-3305,12/11/2019 22:15,12/11/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6188,12/11/2019 21:16,12/11/2019 21:15,7.5,863, Incorrect Authorization,nan
CVE-2019-6172,12/11/2019 21:16,12/11/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-6170,12/11/2019 21:16,12/11/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-5695,12/11/2019 21:16,12/11/2019 21:15,4.4,426, Untrusted Search Path,nan
CVE-2019-14367,12/11/2019 21:16,12/11/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-14366,12/11/2019 21:16,12/11/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-14365,12/11/2019 21:16,12/11/2019 21:15,5.0,200, Information Exposure,nan
CVE-2011-2334,12/11/2019 21:16,12/11/2019 21:15,4.3,416, Use After Free,nan
CVE-2010-3299,12/11/2019 21:16,12/11/2019 21:15,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2010-3292,12/11/2019 21:16,12/11/2019 21:15,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2010-3095,12/11/2019 21:16,12/11/2019 21:15,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-17332,12/11/2019 20:43,12/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17331,12/11/2019 20:43,12/11/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17330,12/11/2019 20:43,12/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1457,12/11/2019 20:43,12/11/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-1456,12/11/2019 20:43,12/11/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1449,12/11/2019 20:43,12/11/2019 19:15,10.0,269, Improper Privilege Management,nan
CVE-2019-1448,12/11/2019 20:43,12/11/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1447,12/11/2019 20:43,12/11/2019 19:15,5.8,20, Improper Input Validation,nan
CVE-2019-1446,12/11/2019 20:43,12/11/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1445,12/11/2019 20:43,12/11/2019 19:15,5.8,20, Improper Input Validation,nan
CVE-2019-1443,12/11/2019 20:43,12/11/2019 19:15,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1442,12/11/2019 20:43,12/11/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-1441,12/11/2019 20:43,12/11/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1440,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1439,12/11/2019 20:43,12/11/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1438,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1437,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1436,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1435,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1434,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1433,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1432,12/11/2019 20:43,12/11/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1430,12/11/2019 20:43,12/11/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1429,12/11/2019 20:43,12/11/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1428,12/11/2019 20:43,12/11/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1427,12/11/2019 20:43,12/11/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1426,12/11/2019 20:43,12/11/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1425,12/11/2019 20:43,12/11/2019 19:15,5.8,269, Improper Privilege Management,nan
CVE-2019-1424,12/11/2019 20:43,12/11/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-1423,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1422,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1420,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1419,12/11/2019 20:43,12/11/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1418,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1417,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1416,12/11/2019 20:43,12/11/2019 19:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-1415,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1413,12/11/2019 20:43,12/11/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-1412,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1411,12/11/2019 20:43,12/11/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1409,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1408,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1407,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1406,12/11/2019 20:43,12/11/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1405,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1402,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1399,12/11/2019 20:43,12/11/2019 19:15,5.5,20, Improper Input Validation,nan
CVE-2019-1398,12/11/2019 20:43,12/11/2019 19:15,7.7,20, Improper Input Validation,nan
CVE-2019-1397,12/11/2019 20:43,12/11/2019 19:15,7.7,20, Improper Input Validation,nan
CVE-2019-1396,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1395,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1394,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1393,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1392,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1391,12/11/2019 20:43,12/11/2019 19:15,4.9,20, Improper Input Validation,nan
CVE-2019-1390,12/11/2019 20:43,12/11/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1389,12/11/2019 20:43,12/11/2019 19:15,7.7,20, Improper Input Validation,nan
CVE-2019-1388,12/11/2019 20:43,12/11/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1385,12/11/2019 20:43,12/11/2019 19:15,6.1,269, Improper Privilege Management,nan
CVE-2019-1384,12/11/2019 20:43,12/11/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2019-1383,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1382,12/11/2019 20:43,12/11/2019 19:15,2.1,269, Improper Privilege Management,nan
CVE-2019-1381,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1380,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1379,12/11/2019 20:43,12/11/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1374,12/11/2019 20:43,12/11/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1373,12/11/2019 20:43,12/11/2019 19:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-1370,12/11/2019 20:43,12/11/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1324,12/11/2019 20:43,12/11/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-1310,12/11/2019 20:43,12/11/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-1309,12/11/2019 20:43,12/11/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-12720,12/11/2019 20:43,12/11/2019 19:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12719,12/11/2019 20:43,12/11/2019 19:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1234,12/11/2019 20:43,12/11/2019 19:15,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2019-0721,12/11/2019 20:43,12/11/2019 19:15,9.0,20, Improper Input Validation,nan
CVE-2019-0719,12/11/2019 20:43,12/11/2019 19:15,9.0,20, Improper Input Validation,nan
CVE-2019-0712,12/11/2019 20:43,12/11/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2011-2335,12/11/2019 20:43,12/11/2019 20:15,5.0,415, Double Free,nan
CVE-2010-3439,12/11/2019 20:43,12/11/2019 20:15,4.0,20, Improper Input Validation,nan
CVE-2010-3438,12/11/2019 20:43,12/11/2019 20:15,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2010-3359,12/11/2019 20:43,12/11/2019 19:15,4.4,20, Improper Input Validation,nan
CVE-2010-2488,12/11/2019 20:43,12/11/2019 20:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-17360,12/11/2019 18:15,12/11/2019 18:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-15815,12/11/2019 18:15,12/11/2019 18:15,4.0,863, Incorrect Authorization,nan
CVE-2018-21026,12/11/2019 18:15,12/11/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-18926,12/11/2019 17:43,12/11/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18925,12/11/2019 17:43,12/11/2019 17:15,7.5,287, Improper Authentication,nan
CVE-2019-18924,12/11/2019 17:43,12/11/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-18655,12/11/2019 17:43,12/11/2019 17:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-17237,12/11/2019 17:43,12/11/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17236,12/11/2019 17:43,12/11/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17235,12/11/2019 17:43,12/11/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-17234,12/11/2019 17:43,12/11/2019 17:15,6.4,20, Improper Input Validation,nan
CVE-2012-1572,12/11/2019 17:43,12/11/2019 17:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-4652,12/11/2019 16:26,12/11/2019 16:15,3.6,276, Incorrect Default Permissions,nan
CVE-2019-18848,12/11/2019 16:26,12/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2012-1109,12/11/2019 16:26,12/11/2019 15:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2011-3618,12/11/2019 16:26,12/11/2019 15:15,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-18817,12/11/2019 14:45,12/11/2019 14:15,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-18658,12/11/2019 14:45,12/11/2019 14:15,7.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-18819,12/11/2019 14:45,12/11/2019 14:15,5.0,863, Incorrect Authorization,nan
CVE-2014-7143,12/11/2019 14:45,12/11/2019 14:15,5.0,295, Improper Certificate Validation,nan
CVE-2014-3599,12/11/2019 14:45,12/11/2019 14:15,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2011-5271,12/11/2019 14:45,12/11/2019 14:15,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-3370,12/11/2019 14:45,12/11/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2936,12/11/2019 14:45,12/11/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2935,12/11/2019 14:45,12/11/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2897,12/11/2019 14:45,12/11/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-18882,12/11/2019 3:15,12/11/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18881,12/11/2019 3:15,12/11/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18874,12/11/2019 2:15,12/11/2019 2:15,5.0,415, Double Free,nan
CVE-2019-18873,12/11/2019 2:15,12/11/2019 2:15,8.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18862,11/11/2019 16:15,11/11/2019 16:15,4.6,269, Improper Privilege Management,nan
CVE-2019-18857,11/11/2019 15:15,11/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-18856,11/11/2019 15:15,11/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-18855,11/11/2019 15:15,11/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-18854,11/11/2019 15:15,11/11/2019 15:15,5.0,674, Uncontrolled Recursion,nan
CVE-2019-18853,11/11/2019 15:15,11/11/2019 15:15,4.3,20, Improper Input Validation,nan
CVE-2019-18852,11/11/2019 14:15,11/11/2019 14:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-18849,11/11/2019 4:15,11/11/2019 4:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-18841,11/11/2019 1:15,11/11/2019 1:15,7.5,20, Improper Input Validation,nan
CVE-2019-18836,11/11/2019 1:15,11/11/2019 1:15,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-18845,9/11/2019 18:15,9/11/2019 18:15,3.6,269, Improper Privilege Management,nan
CVE-2019-18840,9/11/2019 13:15,9/11/2019 13:15,5.0,787, Out-of-bounds Write,nan
CVE-2009-5004,9/11/2019 4:15,9/11/2019 4:15,4.0,20, Improper Input Validation,nan
CVE-2009-4011,9/11/2019 3:15,9/11/2019 3:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-3614,9/11/2019 3:15,9/11/2019 3:15,2.1,20, Improper Input Validation,nan
CVE-2009-3552,9/11/2019 3:15,9/11/2019 3:15,2.9,295, Improper Certificate Validation,nan
CVE-2009-2802,9/11/2019 3:15,9/11/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0035,9/11/2019 3:15,9/11/2019 3:15,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-5701,9/11/2019 2:15,9/11/2019 2:15,4.4,426, Untrusted Search Path,nan
CVE-2019-5698,9/11/2019 2:15,9/11/2019 2:15,2.1,20, Improper Input Validation,nan
CVE-2019-5697,9/11/2019 2:15,9/11/2019 2:15,3.6,863, Incorrect Authorization,nan
CVE-2019-5696,9/11/2019 2:15,9/11/2019 2:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-5694,9/11/2019 2:15,9/11/2019 2:15,4.4,426, Untrusted Search Path,nan
CVE-2019-5693,9/11/2019 2:15,9/11/2019 2:15,4.9,824, Access of Uninitialized Pointer,nan
CVE-2019-5692,9/11/2019 2:15,9/11/2019 2:15,7.2,20, Improper Input Validation,nan
CVE-2019-5691,9/11/2019 2:15,9/11/2019 2:15,7.2,476, NULL Pointer Dereference,nan
CVE-2019-5690,9/11/2019 2:15,9/11/2019 2:15,7.2,20, Improper Input Validation,nan
CVE-2019-5689,9/11/2019 2:15,9/11/2019 2:15,4.6,20, Improper Input Validation,nan
CVE-2019-4645,9/11/2019 2:15,9/11/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4581,9/11/2019 2:15,9/11/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4556,9/11/2019 2:15,9/11/2019 2:15,4.0,20, Improper Input Validation,nan
CVE-2019-4509,9/11/2019 2:15,9/11/2019 2:15,4.0,863, Incorrect Authorization,nan
CVE-2019-4470,9/11/2019 2:15,9/11/2019 2:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4454,9/11/2019 2:15,9/11/2019 2:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4450,9/11/2019 2:15,9/11/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4412,9/11/2019 2:15,9/11/2019 2:15,5.0,200, Information Exposure,nan
CVE-2019-4411,9/11/2019 2:15,9/11/2019 2:15,4.0,200, Information Exposure,nan
CVE-2019-4334,9/11/2019 2:15,9/11/2019 2:15,4.0,200, Information Exposure,nan
CVE-2018-1721,9/11/2019 2:15,9/11/2019 2:15,6.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-13543,8/11/2019 20:15,8/11/2019 20:15,5.0,798, Use of Hard-coded Credentials,nan
CVE-2019-13539,8/11/2019 20:15,8/11/2019 20:15,7.2,20, Improper Input Validation,nan
CVE-2019-13535,8/11/2019 20:15,8/11/2019 20:15,2.1,200, Information Exposure,nan
CVE-2019-13531,8/11/2019 20:15,8/11/2019 20:15,2.1,287, Improper Authentication,nan
CVE-2019-3426,8/11/2019 19:15,8/11/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-3425,8/11/2019 19:15,8/11/2019 19:15,7.5,276, Incorrect Default Permissions,nan
CVE-2019-12410,8/11/2019 19:15,8/11/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12408,8/11/2019 19:15,8/11/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-18623,8/11/2019 18:51,8/11/2019 18:15,7.5,269, Improper Privilege Management,nan
CVE-2019-17661,8/11/2019 18:51,8/11/2019 18:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-17327,8/11/2019 18:51,8/11/2019 18:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13557,8/11/2019 18:51,8/11/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-16210,8/11/2019 18:39,8/11/2019 18:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-16209,8/11/2019 18:39,8/11/2019 18:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-16208,8/11/2019 18:39,8/11/2019 18:15,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-16207,8/11/2019 18:39,8/11/2019 18:15,4.6,798, Use of Hard-coded Credentials,nan
CVE-2019-16206,8/11/2019 18:39,8/11/2019 18:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-16205,8/11/2019 18:38,8/11/2019 18:15,4.3,330, Use of Insufficiently Random Values,nan
CVE-2013-1889,8/11/2019 16:15,8/11/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-3866,8/11/2019 15:22,8/11/2019 15:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-14860,8/11/2019 15:22,8/11/2019 15:15,4.3,20, Improper Input Validation,nan
CVE-2019-14824,8/11/2019 15:22,8/11/2019 15:15,3.5,416, Use After Free,nan
CVE-2019-10222,8/11/2019 15:22,8/11/2019 15:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-10219,8/11/2019 15:22,8/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1820,8/11/2019 15:22,8/11/2019 15:15,4.7,20, Improper Input Validation,nan
CVE-2019-15005,8/11/2019 4:15,8/11/2019 4:15,4.0,862, Missing Authorization,nan
CVE-2019-18835,8/11/2019 0:15,8/11/2019 0:15,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2008-7291,8/11/2019 0:15,8/11/2019 0:15,7.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2008-7272,8/11/2019 0:15,8/11/2019 0:15,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2008-5083,8/11/2019 0:15,8/11/2019 0:15,4.0,200, Information Exposure,nan
CVE-2013-1811,7/11/2019 23:15,7/11/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2013-1809,7/11/2019 23:15,7/11/2019 23:15,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1771,7/11/2019 23:15,7/11/2019 23:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2008-3278,7/11/2019 23:15,7/11/2019 23:15,4.6,1188, Insecure Default Initialization of Resource,nan
CVE-2019-18818,7/11/2019 22:15,7/11/2019 22:15,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2013-1751,7/11/2019 22:15,7/11/2019 22:15,10.0,20, Improper Input Validation,nan
CVE-2013-1429,7/11/2019 22:15,7/11/2019 22:15,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5743,7/11/2019 22:15,7/11/2019 22:15,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2007-3915,7/11/2019 22:15,7/11/2019 22:15,6.4,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-16876,7/11/2019 21:30,7/11/2019 16:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16873,7/11/2019 21:20,7/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16878,7/11/2019 21:19,7/11/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3465,7/11/2019 21:15,7/11/2019 20:15,6.5,20, Improper Input Validation,nan
CVE-2019-3422,7/11/2019 21:15,7/11/2019 20:15,1.9,200, Information Exposure,nan
CVE-2019-18821,7/11/2019 21:15,7/11/2019 21:15,1.9,787, Out-of-bounds Write,nan
CVE-2019-18820,7/11/2019 21:15,7/11/2019 21:15,2.1,787, Out-of-bounds Write,nan
CVE-2019-18819,7/11/2019 21:15,7/11/2019 21:15,2.1,787, Out-of-bounds Write,nan
CVE-2019-11996,7/11/2019 21:15,7/11/2019 19:15,10.0,269, Improper Privilege Management,nan
CVE-2018-18674,7/11/2019 21:15,7/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1426,7/11/2019 21:15,7/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1425,7/11/2019 21:15,7/11/2019 21:15,2.1,276, Incorrect Default Permissions,nan
CVE-2010-2476,7/11/2019 21:15,7/11/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2010-2473,7/11/2019 21:15,7/11/2019 19:15,3.5,20, Improper Input Validation,nan
CVE-2010-2472,7/11/2019 21:15,7/11/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2450,7/11/2019 21:15,7/11/2019 21:15,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2010-2449,7/11/2019 21:15,7/11/2019 20:15,5.5,20, Improper Input Validation,nan
CVE-2010-2447,7/11/2019 21:15,7/11/2019 20:15,7.5,20, Improper Input Validation,nan
CVE-2019-3764,7/11/2019 19:15,7/11/2019 18:15,4.0,863, Incorrect Authorization,nan
CVE-2012-0051,7/11/2019 18:31,7/11/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2012-0049,7/11/2019 18:31,7/11/2019 18:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2011-2337,7/11/2019 18:31,7/11/2019 18:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2011-2336,7/11/2019 18:31,7/11/2019 18:15,4.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2010-2250,7/11/2019 18:31,7/11/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18816,7/11/2019 17:33,7/11/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18815,7/11/2019 17:33,7/11/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2011-2807,7/11/2019 17:33,7/11/2019 17:15,4.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2011-2353,7/11/2019 17:33,7/11/2019 17:15,4.3,416, Use After Free,nan
CVE-2010-2243,7/11/2019 17:33,7/11/2019 17:15,7.8,20, Improper Input Validation,nan
CVE-2019-18814,7/11/2019 16:25,7/11/2019 16:15,7.5,416, Use After Free,nan
CVE-2019-18813,7/11/2019 16:25,7/11/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-18812,7/11/2019 16:25,7/11/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-18811,7/11/2019 16:25,7/11/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-18810,7/11/2019 16:25,7/11/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-18809,7/11/2019 16:25,7/11/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-18808,7/11/2019 16:25,7/11/2019 16:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-18807,7/11/2019 16:25,7/11/2019 16:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-18806,7/11/2019 16:25,7/11/2019 16:15,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-17605,7/11/2019 16:25,7/11/2019 16:15,6.5,863, Incorrect Authorization,nan
CVE-2019-17604,7/11/2019 16:25,7/11/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-17222,7/11/2019 16:25,7/11/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16877,7/11/2019 16:25,7/11/2019 16:15,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16872,7/11/2019 16:25,7/11/2019 16:15,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-6337,7/11/2019 15:37,7/11/2019 15:15,3.3,617, Reachable Assertion,nan
CVE-2019-16874,7/11/2019 15:37,7/11/2019 15:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-12331,7/11/2019 15:37,7/11/2019 15:15,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-18805,7/11/2019 14:49,7/11/2019 14:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-18804,7/11/2019 6:15,7/11/2019 6:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-15004,7/11/2019 4:15,7/11/2019 4:15,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15003,7/11/2019 4:15,7/11/2019 4:15,4.3,863, Incorrect Authorization,nan
CVE-2019-17498,7/11/2019 3:15,21/10/2019 22:15,5.8,190, Integer Overflow or Wraparound,nan
CVE-2019-16401,6/11/2019 23:15,6/11/2019 23:15,3.3,200, Information Exposure,nan
CVE-2019-16400,6/11/2019 23:15,6/11/2019 23:15,3.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-8123,6/11/2019 22:41,5/11/2019 23:15,5.0,20, Improper Input Validation,nan
CVE-2019-18411,6/11/2019 22:15,6/11/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-21029,6/11/2019 22:11,30/10/2019 22:15,7.5,295, Improper Certificate Validation,nan
CVE-2019-8230,6/11/2019 21:56,6/11/2019 0:15,6.5,20, Improper Input Validation,nan
CVE-2019-14356,6/11/2019 21:56,31/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-8231,6/11/2019 21:51,6/11/2019 0:15,6.5,20, Improper Input Validation,nan
CVE-2019-12419,6/11/2019 21:44,6/11/2019 21:15,7.5,287, Improper Authentication,nan
CVE-2019-12406,6/11/2019 21:44,6/11/2019 21:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2014-9014,6/11/2019 21:44,6/11/2019 21:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9013,6/11/2019 21:44,6/11/2019 21:15,6.5,20, Improper Input Validation,nan
CVE-2011-2808,6/11/2019 21:44,6/11/2019 21:15,4.3,20, Improper Input Validation,nan
CVE-2005-2352,6/11/2019 21:44,1/11/2019 21:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-8143,6/11/2019 21:42,6/11/2019 0:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8142,6/11/2019 21:42,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8147,6/11/2019 21:41,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8146,6/11/2019 21:41,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8145,6/11/2019 21:41,6/11/2019 1:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8157,6/11/2019 21:40,6/11/2019 1:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8128,6/11/2019 21:40,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8232,6/11/2019 21:38,6/11/2019 0:15,6.0,20, Improper Input Validation,nan
CVE-2018-5735,6/11/2019 21:28,30/10/2019 14:15,5.0,617, Reachable Assertion,nan
CVE-2010-3674,6/11/2019 21:00,5/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1074,6/11/2019 20:49,26/04/2018 17:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1062,6/11/2019 20:49,6/03/2018 15:29,3.5,200, Information Exposure,nan
CVE-2018-1000095,6/11/2019 20:49,13/03/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7510,6/11/2019 20:42,25/03/2019 18:29,4.0,200, Information Exposure,nan
CVE-2014-7851,6/11/2019 20:35,16/10/2017 15:29,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0153,6/11/2019 20:35,8/09/2014 14:55,4.3,200, Information Exposure,nan
CVE-2014-0151,6/11/2019 20:35,13/02/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3113,6/11/2019 20:34,7/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3077,6/11/2019 20:34,6/06/2017 18:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-18659,6/11/2019 20:32,2/11/2019 1:15,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-5125,6/11/2019 20:31,6/11/2019 20:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-5100,6/11/2019 20:31,6/11/2019 20:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5099,6/11/2019 20:31,6/11/2019 20:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5084,6/11/2019 20:31,6/11/2019 20:15,6.8,787, Out-of-bounds Write,nan
CVE-2014-3180,6/11/2019 20:31,6/11/2019 20:15,6.4,125, Out-of-bounds Read,nan
CVE-2009-5046,6/11/2019 20:31,6/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5045,6/11/2019 20:31,6/11/2019 20:15,5.0,200, Information Exposure,nan
CVE-2010-2490,6/11/2019 20:22,31/10/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-18661,6/11/2019 20:02,2/11/2019 2:15,5.0,200, Information Exposure,nan
CVE-2019-8235,6/11/2019 19:59,30/10/2019 0:15,4.0,20, Improper Input Validation,nan
CVE-2018-19151,6/11/2019 19:49,29/10/2019 20:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6846,6/11/2019 19:47,29/10/2019 19:15,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-18662,6/11/2019 19:44,2/11/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5043,6/11/2019 19:41,31/10/2019 16:15,7.5,755, Improper Handling of Exceptional Conditions,nan
CVE-2018-19161,6/11/2019 19:27,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6122,6/11/2019 19:20,6/11/2019 18:15,4.3,200, Information Exposure,nan
CVE-2019-6121,6/11/2019 19:20,6/11/2019 18:15,4.3,862, Missing Authorization,nan
CVE-2019-6120,6/11/2019 19:20,6/11/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-5644,6/11/2019 19:20,6/11/2019 19:15,7.5,269, Improper Privilege Management,nan
CVE-2019-5643,6/11/2019 19:20,6/11/2019 19:15,5.0,287, Improper Authentication,nan
CVE-2019-5642,6/11/2019 19:20,6/11/2019 19:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-5617,6/11/2019 19:20,6/11/2019 19:15,7.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2016-1000037,6/11/2019 19:20,6/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1298,6/11/2019 19:20,6/11/2019 19:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2010-4178,6/11/2019 19:20,6/11/2019 19:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2010-2471,6/11/2019 19:20,6/11/2019 18:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2009-5050,6/11/2019 19:20,6/11/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2009-5049,6/11/2019 19:20,6/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5048,6/11/2019 19:20,6/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5042,6/11/2019 19:18,31/10/2019 16:15,6.4,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-17134,6/11/2019 19:15,8/10/2019 18:15,6.4,287, Improper Authentication,nan
CVE-2017-5332,6/11/2019 19:01,4/11/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4103,6/11/2019 18:56,4/11/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-13066,6/11/2019 18:53,29/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12612,6/11/2019 18:49,31/10/2019 17:15,7.2,20, Improper Input Validation,nan
CVE-2019-10211,6/11/2019 18:41,29/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2013-4280,6/11/2019 18:40,4/11/2019 19:15,2.1,668, Exposure of Resource to Wrong Sphere,nan
CVE-2006-0062,6/11/2019 18:40,6/11/2019 3:15,7.5,306, Missing Authentication for Critical Function,nan
CVE-2019-18425,6/11/2019 18:38,31/10/2019 14:15,9.3,269, Improper Privilege Management,nan
CVE-2019-18423,6/11/2019 18:37,31/10/2019 14:15,8.5,20, Improper Input Validation,nan
CVE-2019-18422,6/11/2019 18:35,31/10/2019 14:15,8.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-18421,6/11/2019 18:31,31/10/2019 14:15,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-18420,6/11/2019 18:28,31/10/2019 14:15,6.3,20, Improper Input Validation,nan
CVE-2013-1945,6/11/2019 18:15,31/10/2019 20:15,2.1,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2019-18674,6/11/2019 18:14,6/11/2019 2:15,5.0,862, Missing Authorization,nan
CVE-2019-18396,6/11/2019 18:04,31/10/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-18650,6/11/2019 17:58,6/11/2019 2:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-18786,6/11/2019 17:46,6/11/2019 3:15,2.1,200, Information Exposure,nan
CVE-2019-8119,6/11/2019 17:39,5/11/2019 23:15,6.5,20, Improper Input Validation,nan
CVE-2018-1000002,6/11/2019 17:36,22/01/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-15588,6/11/2019 17:35,1/11/2019 15:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-8117,6/11/2019 17:33,5/11/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8115,6/11/2019 17:33,5/11/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10191,6/11/2019 17:32,16/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-10190,6/11/2019 17:32,16/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2018-10920,6/11/2019 17:32,2/08/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2019-8120,6/11/2019 17:31,5/11/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2332,6/11/2019 17:29,6/11/2019 17:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2331,6/11/2019 17:29,6/11/2019 17:15,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-2325,6/11/2019 17:29,6/11/2019 17:15,10.0,129, Improper Validation of Array Index,nan
CVE-2019-2324,6/11/2019 17:29,6/11/2019 17:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2323,6/11/2019 17:29,6/11/2019 17:15,10.0,1187, Use of Uninitialized Resource,nan
CVE-2019-2302,6/11/2019 17:29,6/11/2019 17:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-2285,6/11/2019 17:29,6/11/2019 17:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-2283,6/11/2019 17:29,6/11/2019 17:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2275,6/11/2019 17:29,6/11/2019 17:15,2.1,20, Improper Input Validation,nan
CVE-2019-2258,6/11/2019 17:29,6/11/2019 17:15,10.0,129, Improper Validation of Array Index,nan
CVE-2019-2249,6/11/2019 17:29,6/11/2019 17:15,10.0,125, Out-of-bounds Read,nan
CVE-2019-2246,6/11/2019 17:29,6/11/2019 17:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10565,6/11/2019 17:29,6/11/2019 17:15,7.5,415, Double Free,nan
CVE-2019-10542,6/11/2019 17:29,6/11/2019 17:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-10541,6/11/2019 17:29,6/11/2019 17:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10534,6/11/2019 17:29,6/11/2019 17:15,10.0,476, NULL Pointer Dereference,nan
CVE-2019-10533,6/11/2019 17:29,6/11/2019 17:15,10.0,129, Improper Validation of Array Index,nan
CVE-2019-10531,6/11/2019 17:29,6/11/2019 17:15,10.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10529,6/11/2019 17:29,6/11/2019 17:15,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-10528,6/11/2019 17:29,6/11/2019 17:15,7.5,416, Use After Free,nan
CVE-2019-10524,6/11/2019 17:29,6/11/2019 17:15,4.6,416, Use After Free,nan
CVE-2019-10522,6/11/2019 17:29,6/11/2019 17:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10515,6/11/2019 17:29,6/11/2019 17:15,4.9,416, Use After Free,nan
CVE-2019-10512,6/11/2019 17:29,6/11/2019 17:15,4.6,129, Improper Validation of Array Index,nan
CVE-2019-10505,6/11/2019 17:29,6/11/2019 17:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-10504,6/11/2019 17:29,6/11/2019 17:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-10502,6/11/2019 17:29,6/11/2019 17:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10496,6/11/2019 17:29,6/11/2019 17:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10495,6/11/2019 17:29,6/11/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2019-10491,6/11/2019 17:29,6/11/2019 17:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10488,6/11/2019 17:29,6/11/2019 17:15,5.0,476, NULL Pointer Dereference,nan
CVE-2011-4904,6/11/2019 17:29,6/11/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2011-4903,6/11/2019 17:29,6/11/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4902,6/11/2019 17:29,6/11/2019 17:15,5.5,20, Improper Input Validation,nan
CVE-2011-4901,6/11/2019 17:29,6/11/2019 17:15,4.0,200, Information Exposure,nan
CVE-2011-4900,6/11/2019 17:29,6/11/2019 17:15,4.0,200, Information Exposure,nan
CVE-2011-4632,6/11/2019 17:29,6/11/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4631,6/11/2019 17:29,6/11/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4630,6/11/2019 17:29,6/11/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4629,6/11/2019 17:29,6/11/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4628,6/11/2019 17:29,6/11/2019 17:15,7.5,287, Improper Authentication,nan
CVE-2011-4627,6/11/2019 17:29,6/11/2019 17:15,4.0,200, Information Exposure,nan
CVE-2011-4626,6/11/2019 17:29,6/11/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2446,6/11/2019 17:29,6/11/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2010-2247,6/11/2019 17:29,6/11/2019 17:15,5.0,1188, Insecure Default Initialization of Resource,nan
CVE-2006-4243,6/11/2019 17:15,6/11/2019 3:15,10.0,269, Improper Privilege Management,nan
CVE-2019-3419,6/11/2019 17:14,31/10/2019 16:15,2.7,20, Improper Input Validation,nan
CVE-2019-18784,6/11/2019 17:06,6/11/2019 3:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4245,6/11/2019 16:58,6/11/2019 3:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-6365,6/11/2019 16:56,5/11/2019 14:15,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-18207,6/11/2019 16:50,30/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4423,6/11/2019 16:48,4/11/2019 13:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-3421,6/11/2019 16:47,31/10/2019 16:15,7.7,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-19158,6/11/2019 16:45,21/03/2019 16:00,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-18657,6/11/2019 16:44,31/10/2019 19:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-19159,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19157,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19156,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19155,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19154,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19153,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19152,6/11/2019 16:43,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19167,6/11/2019 16:42,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19160,6/11/2019 16:42,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-18800,6/11/2019 16:35,6/11/2019 16:15,4.3,20, Improper Input Validation,nan
CVE-2019-18799,6/11/2019 16:35,6/11/2019 16:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-18798,6/11/2019 16:35,6/11/2019 16:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-18797,6/11/2019 16:35,6/11/2019 16:15,4.3,674, Uncontrolled Recursion,nan
CVE-2017-18639,6/11/2019 16:35,6/11/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7276,6/11/2019 16:35,6/11/2019 16:15,4.3,798, Use of Hard-coded Credentials,nan
CVE-2013-1910,6/11/2019 16:34,31/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2018-4064,6/11/2019 16:23,31/10/2019 21:15,5.5,287, Improper Authentication,nan
CVE-2014-3649,6/11/2019 16:19,4/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17266,6/11/2019 16:17,6/10/2019 22:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-5023,6/11/2019 16:16,31/10/2019 21:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-18464,6/11/2019 16:15,31/10/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14847,6/11/2019 16:15,6/11/2019 10:15,4.0,476, NULL Pointer Dereference,nan
CVE-2019-14833,6/11/2019 16:15,6/11/2019 10:15,4.9,521, Weak Password Requirements,nan
CVE-2018-1000052,6/11/2019 16:07,9/02/2018 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15710,6/11/2019 16:04,31/10/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5030,6/11/2019 15:54,31/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2013-4751,6/11/2019 15:53,1/11/2019 13:15,4.9,20, Improper Input Validation,nan
CVE-2019-5150,6/11/2019 15:51,31/10/2019 20:15,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9453,6/11/2019 15:44,27/01/2017 17:59,6.8,787, Out-of-bounds Write,nan
CVE-2018-1000879,6/11/2019 15:43,20/12/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-3462,6/11/2019 15:42,28/01/2019 21:29,9.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2012-6124,6/11/2019 15:42,31/10/2019 21:15,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-13081,6/11/2019 15:19,6/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13080,6/11/2019 15:19,6/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13079,6/11/2019 15:19,6/11/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13078,6/11/2019 15:19,6/11/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13077,6/11/2019 15:19,6/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13076,6/11/2019 15:19,6/11/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12918,6/11/2019 15:19,6/11/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12917,6/11/2019 15:19,6/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4401,6/11/2019 15:19,6/11/2019 15:15,10.0,522, Insufficiently Protected Credentials,nan
CVE-2014-8181,6/11/2019 15:19,6/11/2019 15:15,2.1,665, Improper Initialization,nan
CVE-2011-4625,6/11/2019 15:19,6/11/2019 15:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2013-4518,6/11/2019 15:12,4/11/2019 13:15,2.1,200, Information Exposure,nan
CVE-2013-2260,6/11/2019 15:10,4/11/2019 17:15,5.0,331, Insufficient Entropy,nan
CVE-2018-16417,6/11/2019 15:06,30/10/2019 17:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-18653,6/11/2019 15:03,1/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19162,6/11/2019 14:57,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2013-0178,6/11/2019 14:52,1/11/2019 19:15,3.6,20, Improper Input Validation,nan
CVE-2018-19163,6/11/2019 14:51,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19164,6/11/2019 14:46,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2013-0180,6/11/2019 14:42,1/11/2019 19:15,3.6,20, Improper Input Validation,nan
CVE-2018-19165,6/11/2019 14:40,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2013-4104,6/11/2019 14:32,4/11/2019 16:15,5.0,326, Inadequate Encryption Strength,nan
CVE-2015-8980,6/11/2019 14:30,4/11/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2018-19166,6/11/2019 14:23,5/11/2019 21:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-17697,6/11/2019 14:10,15/12/2017 9:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2013-2075,6/11/2019 14:10,31/10/2019 21:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-3983,6/11/2019 14:05,31/10/2019 21:15,6.8,824, Access of Uninitialized Pointer,nan
CVE-2013-1932,6/11/2019 13:37,31/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8158,6/11/2019 13:05,6/11/2019 1:15,7.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-8156,6/11/2019 13:05,6/11/2019 1:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-8132,6/11/2019 13:05,6/11/2019 1:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10218,6/11/2019 13:05,6/11/2019 10:15,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-0899,6/11/2019 13:05,6/11/2019 4:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-0205,6/11/2019 10:15,29/10/2019 19:15,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2006-3100,6/11/2019 4:37,6/11/2019 3:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0061,6/11/2019 4:36,6/11/2019 2:15,7.5,306, Missing Authentication for Critical Function,nan
CVE-2019-18603,6/11/2019 2:15,29/10/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-18602,6/11/2019 2:15,29/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-18601,6/11/2019 2:15,29/10/2019 19:15,5.0,502, Deserialization of Untrusted Data,nan
CVE-2019-7146,6/11/2019 1:15,29/01/2019 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6706,6/11/2019 1:15,23/01/2019 19:29,5.0,416, Use After Free,nan
CVE-2019-6465,6/11/2019 1:15,9/10/2019 16:15,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-5010,6/11/2019 1:15,31/10/2019 21:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12415,6/11/2019 1:15,23/10/2019 20:15,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1000020,6/11/2019 1:15,4/02/2019 21:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-1000019,6/11/2019 1:15,4/02/2019 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5745,6/11/2019 1:15,9/10/2019 16:15,3.5,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-20657,6/11/2019 1:15,2/01/2019 14:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-19854,6/11/2019 1:15,4/12/2018 16:29,1.9,200, Information Exposure,nan
CVE-2018-18751,6/11/2019 1:15,29/10/2018 12:29,7.5,415, Double Free,nan
CVE-2018-10393,6/11/2019 1:15,26/04/2018 5:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-10392,6/11/2019 1:15,26/04/2018 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000878,6/11/2019 1:15,20/12/2018 17:29,6.8,416, Use After Free,nan
CVE-2018-1000877,6/11/2019 1:15,20/12/2018 17:29,6.8,415, Double Free,nan
CVE-2019-8233,6/11/2019 0:44,6/11/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8229,6/11/2019 0:44,6/11/2019 0:15,6.5,20, Improper Input Validation,nan
CVE-2019-8228,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8227,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8159,6/11/2019 0:44,6/11/2019 0:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-8155,6/11/2019 0:44,6/11/2019 0:15,5.0,200, Information Exposure,nan
CVE-2019-8154,6/11/2019 0:44,6/11/2019 0:15,6.5,20, Improper Input Validation,nan
CVE-2019-8153,6/11/2019 0:44,6/11/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8152,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8151,6/11/2019 0:44,6/11/2019 0:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-8150,6/11/2019 0:44,6/11/2019 0:15,6.5,20, Improper Input Validation,nan
CVE-2019-8149,6/11/2019 0:44,6/11/2019 0:15,7.5,384, Session Fixation,nan
CVE-2019-8148,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8144,6/11/2019 0:44,6/11/2019 0:15,7.5,20, Improper Input Validation,nan
CVE-2019-8141,6/11/2019 0:44,6/11/2019 0:15,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-8140,6/11/2019 0:44,6/11/2019 0:15,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8139,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8138,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8137,6/11/2019 0:44,6/11/2019 0:15,6.5,20, Improper Input Validation,nan
CVE-2019-8135,6/11/2019 0:44,6/11/2019 0:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-8134,6/11/2019 0:44,6/11/2019 0:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8133,6/11/2019 0:44,6/11/2019 0:15,4.0,20, Improper Input Validation,nan
CVE-2019-8131,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8130,6/11/2019 0:44,6/11/2019 0:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8129,6/11/2019 0:44,6/11/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8127,6/11/2019 0:44,5/11/2019 23:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8126,6/11/2019 0:44,5/11/2019 23:15,4.0,776, Improper Restriction of Recursive Entity References in DTDs (‘XML Entity Expansion’),nan
CVE-2019-8125,6/11/2019 0:44,5/11/2019 23:15,6.5,20, Improper Input Validation,nan
CVE-2019-8124,6/11/2019 0:44,5/11/2019 23:15,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-8122,6/11/2019 0:44,5/11/2019 23:15,6.5,20, Improper Input Validation,nan
CVE-2019-8118,6/11/2019 0:44,5/11/2019 23:15,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-8116,6/11/2019 0:44,5/11/2019 23:15,5.0,287, Improper Authentication,nan
CVE-2019-8114,6/11/2019 0:44,5/11/2019 23:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8113,6/11/2019 0:44,5/11/2019 23:15,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-8112,6/11/2019 0:44,5/11/2019 23:15,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-8111,6/11/2019 0:44,5/11/2019 23:15,6.5,20, Improper Input Validation,nan
CVE-2019-8110,6/11/2019 0:44,5/11/2019 23:15,6.5,20, Improper Input Validation,nan
CVE-2019-8109,6/11/2019 0:44,5/11/2019 23:15,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8108,6/11/2019 0:44,5/11/2019 23:15,4.0,287, Improper Authentication,nan
CVE-2019-8107,6/11/2019 0:44,5/11/2019 23:15,5.5,20, Improper Input Validation,nan
CVE-2019-8093,6/11/2019 0:44,5/11/2019 23:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8092,6/11/2019 0:44,5/11/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8091,6/11/2019 0:44,5/11/2019 23:15,6.5,20, Improper Input Validation,nan
CVE-2019-5068,6/11/2019 0:44,5/11/2019 22:15,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4002,6/11/2019 0:44,31/10/2019 21:15,7.8,674, Uncontrolled Recursion,nan
CVE-2016-4983,6/11/2019 0:44,5/11/2019 22:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2013-5123,6/11/2019 0:44,5/11/2019 22:15,4.3,287, Improper Authentication,nan
CVE-2011-1460,6/11/2019 0:44,5/11/2019 23:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2011-1459,6/11/2019 0:44,5/11/2019 23:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-4031,6/11/2019 0:29,31/10/2019 21:15,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13547,6/11/2019 0:11,31/10/2019 21:15,10.0,862, Missing Authorization,nan
CVE-2019-13551,6/11/2019 0:04,31/10/2019 21:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5043,5/11/2019 23:40,31/10/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-16295,5/11/2019 23:36,31/10/2019 21:15,1.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18226,5/11/2019 23:23,31/10/2019 22:15,7.5,294, Authentication Bypass by Capture-replay,nan
CVE-2019-18228,5/11/2019 23:20,31/10/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-18229,5/11/2019 23:16,31/10/2019 22:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6657,5/11/2019 22:12,1/11/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6658,5/11/2019 22:02,1/11/2019 15:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13496,5/11/2019 21:51,4/11/2019 17:15,4.3,354, Improper Validation of Integrity Check Value,nan
CVE-2010-3660,5/11/2019 21:43,1/11/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13497,5/11/2019 21:36,4/11/2019 18:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17551,5/11/2019 21:31,31/10/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0186,5/11/2019 21:30,1/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9192,5/11/2019 21:15,26/02/2019 18:29,5.0,399, Resource Management Errors,nan
CVE-2019-6142,5/11/2019 21:15,5/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5089,5/11/2019 21:15,5/11/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-5088,5/11/2019 21:15,5/11/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17624,5/11/2019 21:15,16/10/2019 11:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16284,5/11/2019 21:15,5/11/2019 21:15,9.0,20, Improper Input Validation,nan
CVE-2018-20796,5/11/2019 21:15,26/02/2019 2:29,5.0,674, Uncontrolled Recursion,nan
CVE-2018-16513,5/11/2019 21:15,5/09/2018 13:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-15911,5/11/2019 21:15,28/08/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15910,5/11/2019 21:15,27/08/2018 17:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2011-1135,5/11/2019 21:15,5/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1134,5/11/2019 21:15,5/11/2019 21:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2011-1133,5/11/2019 21:15,5/11/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1982,5/11/2019 21:14,5/11/2019 20:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-1981,5/11/2019 21:14,5/11/2019 20:15,5.0,287, Improper Authentication,nan
CVE-2019-1980,5/11/2019 21:14,5/11/2019 20:15,5.0,287, Improper Authentication,nan
CVE-2019-1978,5/11/2019 21:14,5/11/2019 20:15,5.0,287, Improper Authentication,nan
CVE-2019-18780,5/11/2019 21:14,5/11/2019 20:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1877,5/11/2019 21:14,5/11/2019 20:15,4.3,200, Information Exposure,nan
CVE-2019-18631,5/11/2019 21:14,5/11/2019 16:15,5.1,502, Deserialization of Untrusted Data,nan
CVE-2019-1789,5/11/2019 21:14,5/11/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-1734,5/11/2019 21:14,5/11/2019 20:15,2.1,200, Information Exposure,nan
CVE-2019-17211,5/11/2019 21:14,5/11/2019 16:15,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-17062,5/11/2019 21:14,5/11/2019 16:15,6.8,384, Session Fixation,nan
CVE-2019-15966,5/11/2019 21:14,5/11/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-12625,5/11/2019 21:14,5/11/2019 19:15,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2019-10084,5/11/2019 21:14,5/11/2019 20:15,4.6,306, Missing Authentication for Critical Function,nan
CVE-2013-6275,5/11/2019 21:14,5/11/2019 19:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5661,5/11/2019 21:14,5/11/2019 19:15,2.6,290, Authentication Bypass by Spoofing,nan
CVE-2010-3673,5/11/2019 21:14,5/11/2019 20:15,5.0,200, Information Exposure,nan
CVE-2010-3672,5/11/2019 21:14,5/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3671,5/11/2019 21:14,5/11/2019 20:15,9.4,384, Session Fixation,nan
CVE-2010-3670,5/11/2019 21:14,5/11/2019 20:15,5.8,326, Inadequate Encryption Strength,nan
CVE-2010-2222,5/11/2019 21:14,5/11/2019 20:15,5.0,476, NULL Pointer Dereference,nan
CVE-2010-1678,5/11/2019 21:13,29/10/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2016-10703,5/11/2019 21:09,14/12/2017 19:29,7.8,20, Improper Input Validation,nan
CVE-2009-5041,5/11/2019 20:58,31/10/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-18189,5/11/2019 20:57,28/10/2019 20:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7619,5/11/2019 20:49,30/10/2019 14:15,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2010-2061,5/11/2019 20:41,29/10/2019 22:15,7.2,20, Improper Input Validation,nan
CVE-2017-5331,5/11/2019 20:40,4/11/2019 21:15,4.6,190, Integer Overflow or Wraparound,nan
CVE-2010-2064,5/11/2019 20:33,29/10/2019 22:15,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-18230,5/11/2019 20:29,31/10/2019 22:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-0350,5/11/2019 20:27,4/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-18680,5/11/2019 20:21,4/11/2019 15:15,7.8,476, NULL Pointer Dereference,nan
CVE-2013-3718,5/11/2019 20:17,1/11/2019 13:15,4.3,20, Improper Input Validation,nan
CVE-2019-18362,5/11/2019 20:07,31/10/2019 15:15,5.0,200, Information Exposure,nan
CVE-2010-3666,5/11/2019 20:01,4/11/2019 22:15,5.0,330, Use of Insufficiently Random Values,nan
CVE-2019-18361,5/11/2019 19:53,31/10/2019 15:15,4.6,269, Improper Privilege Management,nan
CVE-2019-18360,5/11/2019 19:48,31/10/2019 15:15,5.0,200, Information Exposure,nan
CVE-2013-4107,5/11/2019 19:38,5/11/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18624,5/11/2019 19:33,29/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2010-3665,5/11/2019 19:30,4/11/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5533,5/11/2019 19:27,29/10/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-17675,5/11/2019 19:15,17/10/2019 13:15,6.8,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2019-17671,5/11/2019 19:15,17/10/2019 13:15,5.0,200, Information Exposure,nan
CVE-2019-17670,5/11/2019 19:15,17/10/2019 13:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-17669,5/11/2019 19:15,17/10/2019 13:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-2389,5/11/2019 19:07,30/08/2019 15:15,1.9,20, Improper Input Validation,nan
CVE-2013-4110,5/11/2019 18:43,5/11/2019 13:15,5.0,200, Information Exposure,nan
CVE-2019-0724,5/11/2019 18:40,5/03/2019 23:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-6845,5/11/2019 18:38,29/10/2019 19:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2010-3668,5/11/2019 18:38,4/11/2019 23:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2010-3669,5/11/2019 18:25,4/11/2019 23:15,4.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18929,5/11/2019 18:13,29/10/2019 20:15,4.0,798, Use of Hard-coded Credentials,nan
CVE-2019-18663,5/11/2019 18:12,4/11/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16659,5/11/2019 18:09,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15560,5/11/2019 18:07,20/08/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-18930,5/11/2019 18:01,29/10/2019 20:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18931,5/11/2019 17:52,29/10/2019 20:15,9.0,269, Improper Privilege Management,nan
CVE-2010-3663,5/11/2019 17:51,4/11/2019 22:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-18604,5/11/2019 17:48,29/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2010-3662,5/11/2019 17:48,4/11/2019 22:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3664,5/11/2019 17:33,4/11/2019 22:15,4.0,200, Information Exposure,nan
CVE-2010-3667,5/11/2019 17:10,4/11/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-10249,5/11/2019 17:07,6/05/2019 16:29,6.8,254, 7PK – Security Features,nan
CVE-2019-15809,5/11/2019 17:03,3/10/2019 14:15,1.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-5744,5/11/2019 16:58,9/10/2019 16:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-10743,5/11/2019 16:54,29/10/2019 19:15,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15681,5/11/2019 16:51,29/10/2019 19:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16647,5/11/2019 16:49,29/10/2019 19:15,9.0,428, Unquoted Search Path or Element,nan
CVE-2019-15683,5/11/2019 16:46,29/10/2019 19:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-18632,5/11/2019 16:33,30/10/2019 22:15,7.5,295, Improper Certificate Validation,nan
CVE-2013-1391,5/11/2019 16:33,30/10/2019 21:15,5.0,287, Improper Authentication,nan
CVE-2019-18633,5/11/2019 16:31,30/10/2019 22:15,7.5,295, Improper Certificate Validation,nan
CVE-2012-6122,5/11/2019 16:30,31/10/2019 21:15,5.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2010-0398,5/11/2019 16:22,30/10/2019 22:15,5.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-18277,5/11/2019 16:15,23/10/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2010-0737,5/11/2019 16:04,30/10/2019 23:15,5.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-17598,5/11/2019 15:27,5/11/2019 15:15,4.3,522, Insufficiently Protected Credentials,nan
CVE-2019-17212,5/11/2019 15:27,5/11/2019 15:15,10.0,787, Out-of-bounds Write,nan
CVE-2013-6461,5/11/2019 15:27,5/11/2019 15:15,4.3,776, Improper Restriction of Recursive Entity References in DTDs (‘XML Entity Expansion’),nan
CVE-2013-6460,5/11/2019 15:27,5/11/2019 15:15,4.3,776, Improper Restriction of Recursive Entity References in DTDs (‘XML Entity Expansion’),nan
CVE-2019-18635,5/11/2019 15:24,30/10/2019 22:15,5.0,476, NULL Pointer Dereference,nan
CVE-2012-6125,5/11/2019 15:17,31/10/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-12314,5/11/2019 15:15,24/05/2019 14:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11341,5/11/2019 15:02,9/10/2019 16:15,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-8839,5/11/2019 14:58,30/04/2018 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15703,5/11/2019 14:57,24/10/2019 14:15,2.6,331, Insufficient Entropy,nan
CVE-2019-18206,5/11/2019 14:52,30/10/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6336,5/11/2019 14:52,31/12/2018 19:29,6.8,254, 7PK – Security Features,nan
CVE-2019-17224,5/11/2019 14:43,28/10/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5536,5/11/2019 14:39,28/10/2019 16:15,3.5,20, Improper Input Validation,nan
CVE-2019-17221,5/11/2019 14:35,5/11/2019 14:15,5.0,552, Files or Directories Accessible to External Parties,nan
CVE-2016-1000002,5/11/2019 14:35,5/11/2019 14:15,2.1,200, Information Exposure,nan
CVE-2013-6364,5/11/2019 14:35,5/11/2019 14:15,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5537,5/11/2019 14:34,28/10/2019 16:15,4.3,295, Improper Certificate Validation,nan
CVE-2005-3056,5/11/2019 14:33,1/11/2019 13:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5538,5/11/2019 14:31,28/10/2019 16:15,4.3,295, Improper Certificate Validation,nan
CVE-2013-2261,5/11/2019 14:21,4/11/2019 16:15,5.0,200, Information Exposure,nan
CVE-2013-4102,5/11/2019 14:13,4/11/2019 15:15,6.4,330, Use of Insufficiently Random Values,nan
CVE-2013-2257,5/11/2019 13:44,4/11/2019 17:15,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2013-2259,5/11/2019 13:30,4/11/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2013-4105,5/11/2019 13:22,4/11/2019 17:15,5.0,200, Information Exposure,nan
CVE-2013-2262,5/11/2019 13:22,4/11/2019 16:15,5.0,200, Information Exposure,nan
CVE-2013-4100,5/11/2019 13:16,4/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-3685,5/11/2019 13:06,5/11/2019 10:15,6.8,295, Improper Certificate Validation,nan
CVE-2019-10223,5/11/2019 13:06,5/11/2019 12:15,4.0,200, Information Exposure,nan
CVE-2013-4374,5/11/2019 13:06,4/11/2019 22:15,3.6,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-6128,5/11/2019 10:15,11/01/2019 5:29,6.8,399, Resource Management Errors,nan
CVE-2017-5333,4/11/2019 21:19,4/11/2019 21:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2013-4409,4/11/2019 21:19,4/11/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-18667,4/11/2019 21:15,2/11/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-2350,4/11/2019 21:06,1/11/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2738,4/11/2019 20:56,1/11/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2600,4/11/2019 20:56,1/11/2019 12:15,5.0,200, Information Exposure,nan
CVE-2013-2739,4/11/2019 20:53,1/11/2019 13:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-16907,4/11/2019 20:40,31/10/2019 22:15,5.0,287, Improper Authentication,nan
CVE-2019-16908,4/11/2019 20:39,1/11/2019 12:15,5.0,200, Information Exposure,nan
CVE-2019-18178,4/11/2019 20:35,4/11/2019 20:15,5.0,416, Use After Free,nan
CVE-2019-17210,4/11/2019 20:35,4/11/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2013-4251,4/11/2019 20:35,4/11/2019 20:15,4.6,269, Improper Privilege Management,nan
CVE-2019-16909,4/11/2019 20:34,1/11/2019 12:15,4.0,200, Information Exposure,nan
CVE-2019-16906,4/11/2019 20:21,31/10/2019 22:15,5.0,287, Improper Authentication,nan
CVE-2019-5151,4/11/2019 20:14,31/10/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4168,4/11/2019 20:04,1/11/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2227,4/11/2019 20:00,1/11/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2005-4890,4/11/2019 19:56,4/11/2019 19:15,7.2,20, Improper Input Validation,nan
CVE-2013-4412,4/11/2019 19:53,4/11/2019 13:15,5.0,476, NULL Pointer Dereference,nan
CVE-2010-2548,4/11/2019 19:50,31/10/2019 21:15,6.4,863, Incorrect Authorization,nan
CVE-2010-2783,4/11/2019 19:45,31/10/2019 21:15,6.4,200, Information Exposure,nan
CVE-2019-18654,4/11/2019 19:24,1/11/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18636,4/11/2019 18:34,1/11/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3661,4/11/2019 18:28,1/11/2019 18:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-18665,4/11/2019 18:23,2/11/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-18664,4/11/2019 18:21,2/11/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7620,4/11/2019 18:19,30/10/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-16511,4/11/2019 18:15,19/09/2019 16:15,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15682,4/11/2019 18:11,30/10/2019 16:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-18608,4/11/2019 18:03,29/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-10208,4/11/2019 17:23,29/10/2019 19:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000,4/11/2019 17:15,12/04/2018 1:29,2.6,200, Information Exposure,nan
CVE-2013-4101,4/11/2019 17:15,4/11/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-18684,4/11/2019 16:35,4/11/2019 16:15,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-18683,4/11/2019 16:35,4/11/2019 16:15,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-19031,4/11/2019 16:35,4/11/2019 15:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-21030,4/11/2019 16:22,31/10/2019 15:15,5.0,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2019-18366,4/11/2019 15:39,31/10/2019 16:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-18367,4/11/2019 15:33,31/10/2019 16:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-18368,4/11/2019 15:30,31/10/2019 16:15,7.5,269, Improper Privilege Management,nan
CVE-2019-18465,4/11/2019 15:10,31/10/2019 17:15,6.8,306, Missing Authentication for Critical Function,nan
CVE-2019-18227,4/11/2019 14:53,31/10/2019 22:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5095,4/11/2019 14:48,31/10/2019 20:15,4.0,862, Missing Authorization,nan
CVE-2019-13508,4/11/2019 14:34,31/10/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-18673,4/11/2019 14:20,2/11/2019 17:15,1.9,200, Information Exposure,nan
CVE-2019-18668,4/11/2019 14:20,2/11/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-14360,4/11/2019 14:20,2/11/2019 17:15,1.9,200, Information Exposure,nan
CVE-2019-14358,4/11/2019 14:20,2/11/2019 17:15,1.9,200, Information Exposure,nan
CVE-2019-6469,2/11/2019 3:15,9/10/2019 16:15,4.3,20, Improper Input Validation,nan
CVE-2018-1732,1/11/2019 21:15,5/12/2018 17:29,5.0,200, Information Exposure,nan
CVE-2019-18369,1/11/2019 20:28,31/10/2019 16:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-18364,1/11/2019 20:24,31/10/2019 15:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-18363,1/11/2019 20:14,31/10/2019 15:15,5.0,200, Information Exposure,nan
CVE-2013-1934,1/11/2019 19:58,31/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17321,1/11/2019 19:45,30/10/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-17322,1/11/2019 19:41,30/10/2019 21:15,4.3,20, Improper Input Validation,nan
CVE-2019-17323,1/11/2019 19:38,30/10/2019 21:15,6.8,91, XML Injection (aka Blind XPath Injection),nan
CVE-2018-18678,1/11/2019 19:38,30/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17324,1/11/2019 19:28,30/10/2019 21:15,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17325,1/11/2019 19:26,30/10/2019 21:15,4.3,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-18205,1/11/2019 19:22,30/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2255,1/11/2019 19:22,1/11/2019 19:15,4.3,295, Improper Certificate Validation,nan
CVE-2013-0165,1/11/2019 19:22,1/11/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2005-2351,1/11/2019 19:22,1/11/2019 19:15,2.1,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-18204,1/11/2019 19:18,30/10/2019 19:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2013-1951,1/11/2019 19:16,31/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17326,1/11/2019 19:15,30/10/2019 21:15,5.8,20, Improper Input Validation,nan
CVE-2019-11660,1/11/2019 19:15,13/09/2019 18:15,7.2,269, Improper Privilege Management,nan
CVE-2019-10210,1/11/2019 19:04,29/10/2019 19:15,1.9,20, Improper Input Validation,nan
CVE-2010-0207,1/11/2019 18:59,30/10/2019 21:15,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2010-0206,1/11/2019 18:51,30/10/2019 21:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-3977,1/11/2019 18:37,29/10/2019 19:15,8.5,494, Download of Code Without Integrity Check,nan
CVE-2019-3976,1/11/2019 18:36,29/10/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2012-0694,1/11/2019 18:32,29/10/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-12752,1/11/2019 18:25,1/11/2019 16:15,4.1,276, Incorrect Default Permissions,nan
CVE-2013-4367,1/11/2019 18:25,1/11/2019 18:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2013-1666,1/11/2019 18:25,1/11/2019 17:15,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3375,1/11/2019 18:23,29/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-8287,1/11/2019 18:21,29/10/2019 19:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2011-2538,1/11/2019 18:17,29/10/2019 19:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9757,1/11/2019 18:12,29/10/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2011-4931,1/11/2019 18:06,29/10/2019 19:15,5.0,521, Weak Password Requirements,nan
CVE-2016-4289,1/11/2019 17:51,29/10/2019 19:15,2.1,787, Out-of-bounds Write,nan
CVE-2019-9758,1/11/2019 17:33,29/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9926,1/11/2019 17:17,29/10/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-18384,1/11/2019 17:01,23/10/2019 21:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-18199,1/11/2019 16:35,24/10/2019 14:15,6.9,294, Authentication Bypass by Capture-replay,nan
CVE-2019-18200,1/11/2019 16:22,24/10/2019 15:15,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-18201,1/11/2019 16:19,24/10/2019 15:15,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2019-3636,1/11/2019 16:15,28/10/2019 15:15,4.6,200, Information Exposure,nan
CVE-2019-17181,1/11/2019 16:13,28/10/2019 17:15,10.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-6847,1/11/2019 15:55,29/10/2019 19:15,4.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2009-3723,1/11/2019 15:54,29/10/2019 19:15,5.0,863, Incorrect Authorization,nan
CVE-2019-6843,1/11/2019 15:52,29/10/2019 19:15,4.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2009-3887,1/11/2019 15:52,29/10/2019 19:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3373,1/11/2019 15:49,29/10/2019 19:15,2.1,20, Improper Input Validation,nan
CVE-2018-5743,1/11/2019 15:47,9/10/2019 16:15,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2012-2979,1/11/2019 15:39,1/11/2019 15:15,4.3,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2011-3923,1/11/2019 15:39,1/11/2019 14:15,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2010-4245,1/11/2019 15:15,28/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0428,1/11/2019 14:55,29/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3978,1/11/2019 14:46,29/10/2019 19:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-3979,1/11/2019 14:45,29/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-6844,1/11/2019 14:22,29/10/2019 19:15,4.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-6842,1/11/2019 14:21,29/10/2019 19:15,4.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-6841,1/11/2019 14:21,29/10/2019 19:15,4.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2009-4900,1/11/2019 14:15,28/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4899,1/11/2019 14:15,28/10/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-2349,1/11/2019 14:15,28/10/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2444,1/11/2019 14:15,28/10/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-10762,1/11/2019 14:12,30/10/2019 22:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6848,1/11/2019 13:52,29/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-6849,1/11/2019 13:45,29/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-6850,1/11/2019 13:44,29/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-6467,1/11/2019 13:44,9/10/2019 16:15,5.0,617, Reachable Assertion,nan
CVE-2019-12417,1/11/2019 13:42,30/10/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6468,1/11/2019 13:40,9/10/2019 16:15,5.0,617, Reachable Assertion,nan
CVE-2019-6471,1/11/2019 13:34,9/10/2019 16:15,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-18383,1/11/2019 13:28,23/10/2019 21:15,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16754,1/11/2019 13:27,24/09/2019 18:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-15702,1/11/2019 13:27,27/08/2019 18:15,5.0,399, Resource Management Errors,nan
CVE-2019-15134,1/11/2019 13:27,17/08/2019 18:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-18645,1/11/2019 13:17,31/10/2019 0:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-18644,1/11/2019 12:50,31/10/2019 0:15,5.8,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2019-18656,1/11/2019 12:31,31/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16675,1/11/2019 12:04,31/10/2019 22:15,6.8,20, Improper Input Validation,nan
CVE-2012-6123,1/11/2019 12:04,31/10/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-18408,1/11/2019 11:15,24/10/2019 14:15,5.0,416, Use After Free,nan
CVE-2019-18281,1/11/2019 11:15,23/10/2019 15:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11042,1/11/2019 7:15,9/08/2019 20:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11041,1/11/2019 7:15,9/08/2019 20:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13553,1/11/2019 3:15,25/10/2019 18:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-13549,1/11/2019 3:15,25/10/2019 18:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-11369,1/11/2019 3:15,3/06/2019 20:29,4.0,255, Credentials Management,nan
CVE-2019-18188,31/10/2019 21:00,28/10/2019 20:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-18187,31/10/2019 20:59,28/10/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14450,31/10/2019 20:59,28/10/2019 17:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002201,31/10/2019 20:51,25/07/2018 17:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17424,31/10/2019 20:40,22/10/2019 13:15,6.8,787, Out-of-bounds Write,nan
CVE-2017-1000043,31/10/2019 20:27,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5049,31/10/2019 20:15,31/10/2019 20:15,7.5,787, Out-of-bounds Write,nan
CVE-2013-2024,31/10/2019 20:15,31/10/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-2012,31/10/2019 20:15,31/10/2019 20:15,4.4,269, Improper Privilege Management,nan
CVE-2013-1931,31/10/2019 20:15,31/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1930,31/10/2019 20:15,31/10/2019 20:15,4.0,20, Improper Input Validation,nan
CVE-2012-5577,31/10/2019 20:11,28/10/2019 17:15,5.0,276, Incorrect Default Permissions,nan
CVE-2010-0749,31/10/2019 19:51,30/10/2019 23:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0748,31/10/2019 19:28,30/10/2019 23:15,7.5,20, Improper Input Validation,nan
CVE-2018-7184,31/10/2019 19:15,6/03/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7183,31/10/2019 19:15,8/03/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7182,31/10/2019 19:15,6/03/2018 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2016-9042,31/10/2019 19:15,4/06/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-17120,31/10/2019 19:03,17/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16700,31/10/2019 19:03,16/10/2019 19:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16251,31/10/2019 18:07,31/10/2019 17:15,4.0,269, Improper Privilege Management,nan
CVE-2019-18424,31/10/2019 16:15,31/10/2019 14:15,6.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-16278,31/10/2019 16:15,14/10/2019 17:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-18611,31/10/2019 12:12,29/10/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-18612,31/10/2019 12:09,29/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-18198,31/10/2019 9:15,18/10/2019 22:15,7.2,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16995,31/10/2019 9:15,30/09/2019 13:15,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16994,31/10/2019 9:15,30/09/2019 13:15,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-17596,31/10/2019 4:15,24/10/2019 22:15,5.0,436, Interpretation Conflict,nan
CVE-2017-5614,31/10/2019 2:45,3/03/2017 15:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2002-2439,31/10/2019 2:39,23/10/2019 18:15,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-18413,31/10/2019 2:38,24/10/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16897,31/10/2019 2:36,28/10/2019 15:15,7.5,269, Improper Privilege Management,nan
CVE-2017-15725,31/10/2019 2:33,28/10/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2010-1673,31/10/2019 2:31,30/10/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0747,31/10/2019 2:30,30/10/2019 23:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-18419,31/10/2019 1:59,24/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11283,31/10/2019 1:40,23/10/2019 16:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2012-0046,31/10/2019 1:39,29/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2012-1187,31/10/2019 1:27,29/10/2019 19:15,7.5,273, Improper Check for Dropped Privileges,nan
CVE-2010-4237,31/10/2019 1:25,29/10/2019 19:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-1010180,31/10/2019 1:15,24/07/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8945,31/10/2019 1:15,22/03/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-7643,31/10/2019 1:15,2/03/2018 15:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-7642,31/10/2019 1:15,2/03/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7570,31/10/2019 1:15,28/02/2018 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7569,31/10/2019 1:15,28/02/2018 21:29,4.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-7568,31/10/2019 1:15,28/02/2018 21:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-7208,31/10/2019 1:15,18/02/2018 4:29,6.8,20, Improper Input Validation,nan
CVE-2018-6872,31/10/2019 1:15,9/02/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-6759,31/10/2019 1:15,6/02/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-6543,31/10/2019 1:15,2/02/2018 9:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-6323,31/10/2019 1:15,26/01/2018 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-6307,31/10/2019 1:15,19/12/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-20750,31/10/2019 1:15,30/01/2019 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-20749,31/10/2019 1:15,30/01/2019 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-20748,31/10/2019 1:15,30/01/2019 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-20671,31/10/2019 1:15,4/01/2019 16:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-20623,31/10/2019 1:15,31/12/2018 19:29,4.3,416, Use After Free,nan
CVE-2018-18607,31/10/2019 1:15,23/10/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18606,31/10/2019 1:15,23/10/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18605,31/10/2019 1:15,23/10/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18484,31/10/2019 1:15,18/10/2018 21:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-18483,31/10/2019 1:15,18/10/2018 21:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-18309,31/10/2019 1:15,15/10/2018 2:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17985,31/10/2019 1:15,4/10/2018 23:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-17360,31/10/2019 1:15,23/09/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-17359,31/10/2019 1:15,23/09/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17358,31/10/2019 1:15,23/09/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15127,31/10/2019 1:15,19/12/2018 16:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-15126,31/10/2019 1:15,19/12/2018 16:29,7.5,416, Use After Free,nan
CVE-2012-2945,31/10/2019 1:09,29/10/2019 19:15,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-10727,31/10/2019 1:07,29/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10209,31/10/2019 0:41,29/10/2019 19:15,3.5,200, Information Exposure,nan
CVE-2019-10748,31/10/2019 0:34,29/10/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10749,31/10/2019 0:13,29/10/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11282,30/10/2019 23:43,23/10/2019 16:15,4.0,200, Information Exposure,nan
CVE-2019-5127,30/10/2019 23:28,25/10/2019 18:15,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5128,30/10/2019 23:22,25/10/2019 18:15,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5129,30/10/2019 23:12,25/10/2019 18:15,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0210,30/10/2019 20:30,29/10/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-11043,30/10/2019 20:15,28/10/2019 15:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-15678,30/10/2019 19:56,29/10/2019 19:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-15679,30/10/2019 19:34,29/10/2019 19:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-15680,30/10/2019 19:19,29/10/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-15780,30/10/2019 19:15,29/08/2019 12:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2010-3293,30/10/2019 19:10,28/10/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2019-9699,30/10/2019 18:38,24/10/2019 16:15,2.7,200, Information Exposure,nan
CVE-2019-18196,30/10/2019 18:33,24/10/2019 16:15,6.9,426, Untrusted Search Path,nan
CVE-2019-13525,30/10/2019 18:25,25/10/2019 18:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-13546,30/10/2019 18:23,25/10/2019 18:15,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-1000855,30/10/2019 18:22,20/12/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18195,30/10/2019 18:20,28/10/2019 14:15,6.5,269, Improper Privilege Management,nan
CVE-2019-10443,30/10/2019 18:15,16/10/2019 14:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10440,30/10/2019 18:15,16/10/2019 14:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-17419,30/10/2019 18:05,7/03/2019 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-14926,30/10/2019 18:04,28/10/2019 13:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-14927,30/10/2019 18:02,28/10/2019 13:15,5.0,200, Information Exposure,nan
CVE-2019-14928,30/10/2019 17:57,28/10/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18385,30/10/2019 17:54,23/10/2019 21:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-14929,30/10/2019 17:52,28/10/2019 13:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2019-14930,30/10/2019 17:50,28/10/2019 13:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-14931,30/10/2019 17:49,28/10/2019 13:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-4546,30/10/2019 17:44,29/10/2019 0:15,6.5,269, Improper Privilege Management,nan
CVE-2019-4600,30/10/2019 17:36,29/10/2019 0:15,5.0,200, Information Exposure,nan
CVE-2018-11093,30/10/2019 17:20,22/05/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14276,30/10/2019 17:11,23/10/2019 12:15,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5120,30/10/2019 17:06,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-18409,30/10/2019 16:55,24/10/2019 14:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-6692,30/10/2019 16:52,24/10/2019 14:15,4.4,427, Uncontrolled Search Path Element,nan
CVE-2019-5114,30/10/2019 16:50,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5116,30/10/2019 16:48,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5117,30/10/2019 16:42,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14925,30/10/2019 16:35,28/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-1010241,30/10/2019 16:20,19/07/2019 17:15,4.0,255, Credentials Management,nan
CVE-2019-7425,30/10/2019 16:15,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16869,30/10/2019 16:13,26/09/2019 16:15,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2019-12147,30/10/2019 16:07,22/10/2019 16:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5119,30/10/2019 15:58,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17506,30/10/2019 15:15,11/10/2019 20:15,10.0,287, Improper Authentication,nan
CVE-2019-1010096,30/10/2019 15:15,18/07/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1010095,30/10/2019 15:15,18/07/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10937,30/10/2019 15:15,8/09/2019 16:15,5.0,295, Improper Certificate Validation,nan
CVE-2019-12148,30/10/2019 15:13,22/10/2019 16:15,7.5,287, Improper Authentication,nan
CVE-2019-3943,30/10/2019 15:10,10/04/2019 21:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5742,30/10/2019 14:58,30/10/2019 14:15,4.3,617, Reachable Assertion,nan
CVE-2019-4262,30/10/2019 14:57,26/09/2019 15:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-18382,30/10/2019 14:43,23/10/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-4397,30/10/2019 14:37,24/10/2019 12:15,4.0,200, Information Exposure,nan
CVE-2015-0270,30/10/2019 14:27,25/10/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5508,30/10/2019 14:21,25/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-18466,30/10/2019 14:17,28/10/2019 13:15,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-4036,30/10/2019 14:05,25/10/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-4409,30/10/2019 13:54,18/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15929,30/10/2019 13:52,24/10/2019 16:15,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2015-9510,30/10/2019 13:38,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14160,30/10/2019 13:37,21/09/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2304,30/10/2019 13:36,23/10/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-5121,30/10/2019 13:29,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-18355,30/10/2019 13:28,23/10/2019 19:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-5122,30/10/2019 13:25,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8236,30/10/2019 13:24,23/10/2019 21:15,7.5,269, Improper Privilege Management,nan
CVE-2019-18212,30/10/2019 13:19,23/10/2019 22:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-18213,30/10/2019 13:15,23/10/2019 22:15,6.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-17371,30/10/2019 13:15,9/10/2019 13:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-18394,30/10/2019 13:11,24/10/2019 11:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-5123,30/10/2019 12:55,25/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1408,30/10/2019 12:06,29/10/2019 20:15,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-16729,30/10/2019 11:15,24/09/2019 5:15,7.2,269, Improper Privilege Management,nan
CVE-2018-17431,30/10/2019 5:15,30/01/2019 15:29,7.5,287, Improper Authentication,nan
CVE-2018-12154,30/10/2019 3:15,15/10/2018 18:29,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-12153,30/10/2019 3:15,10/10/2018 18:29,4.9,20, Improper Input Validation,nan
CVE-2018-12152,30/10/2019 3:15,10/10/2018 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13116,29/10/2019 22:15,16/10/2019 20:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10747,29/10/2019 22:15,23/08/2019 17:15,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2019-11253,29/10/2019 21:15,17/10/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-11249,29/10/2019 21:15,29/08/2019 1:15,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-12516,29/10/2019 21:00,13/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4239,29/10/2019 19:59,28/10/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2010-4240,29/10/2019 19:55,28/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4241,29/10/2019 19:48,28/10/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6851,29/10/2019 19:30,29/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-9763,29/10/2019 19:15,19/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6144,29/10/2019 19:15,23/10/2019 19:15,4.0,863, Incorrect Authorization,nan
CVE-2019-4339,29/10/2019 19:15,29/10/2019 0:15,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-4330,29/10/2019 19:15,29/10/2019 0:15,4.3,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2019-4329,29/10/2019 19:15,29/10/2019 0:15,4.0,20, Improper Input Validation,nan
CVE-2019-4314,29/10/2019 19:15,29/10/2019 0:15,5.0,200, Information Exposure,nan
CVE-2019-4311,29/10/2019 19:15,29/10/2019 0:15,5.0,200, Information Exposure,nan
CVE-2019-4309,29/10/2019 19:15,29/10/2019 0:15,2.1,798, Use of Hard-coded Credentials,nan
CVE-2019-4307,29/10/2019 19:15,29/10/2019 0:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-4306,29/10/2019 19:15,29/10/2019 0:15,6.4,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-18418,29/10/2019 19:15,24/10/2019 20:15,7.5,384, Session Fixation,nan
CVE-2019-18224,29/10/2019 19:15,21/10/2019 17:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-16662,29/10/2019 19:15,28/10/2019 12:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12290,29/10/2019 19:15,22/10/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-11021,29/10/2019 19:15,24/10/2019 16:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11768,29/10/2019 19:15,4/10/2019 14:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0504,29/10/2019 19:15,4/10/2018 20:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-0009,29/10/2019 19:15,11/02/2015 3:00,3.3,254, 7PK – Security Features,nan
CVE-2015-0008,29/10/2019 19:15,11/02/2015 3:00,8.3,284, Improper Access Control,nan
CVE-2019-16663,29/10/2019 19:02,28/10/2019 12:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1321,29/10/2019 18:48,12/07/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14742,29/10/2019 18:35,25/10/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-18221,29/10/2019 18:31,25/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18370,29/10/2019 18:05,23/10/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-18371,29/10/2019 18:02,23/10/2019 21:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12017,29/10/2019 17:59,24/10/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-5012,29/10/2019 17:47,24/10/2019 16:15,7.2,269, Improper Privilege Management,nan
CVE-2019-5013,29/10/2019 17:41,24/10/2019 16:15,7.2,269, Improper Privilege Management,nan
CVE-2016-5202,29/10/2019 16:24,25/10/2019 15:15,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2013-4855,29/10/2019 16:19,25/10/2019 16:15,7.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4658,29/10/2019 16:15,25/10/2019 17:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4856,29/10/2019 16:00,25/10/2019 16:15,2.9,200, Information Exposure,nan
CVE-2015-9517,29/10/2019 14:25,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9516,29/10/2019 14:21,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9518,29/10/2019 14:18,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9519,29/10/2019 14:11,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9520,29/10/2019 13:53,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9521,29/10/2019 13:52,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9522,29/10/2019 13:47,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9523,29/10/2019 13:44,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9524,29/10/2019 13:40,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2358,29/10/2019 13:23,25/10/2019 15:15,5.0,798, Use of Hard-coded Credentials,nan
CVE-2016-2357,29/10/2019 13:20,25/10/2019 15:15,5.0,798, Use of Hard-coded Credentials,nan
CVE-2016-2360,29/10/2019 13:19,25/10/2019 15:15,5.0,798, Use of Hard-coded Credentials,nan
CVE-2016-2359,29/10/2019 13:19,25/10/2019 15:15,7.5,287, Improper Authentication,nan
CVE-2016-2356,29/10/2019 13:18,25/10/2019 15:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-18350,29/10/2019 13:16,23/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17093,29/10/2019 13:12,23/10/2019 17:15,4.4,426, Untrusted Search Path,nan
CVE-2015-9506,29/10/2019 13:11,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18348,29/10/2019 12:47,23/10/2019 17:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12095,29/10/2019 12:40,24/10/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14633,29/10/2019 0:55,21/09/2017 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14632,29/10/2019 0:55,21/09/2017 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-18393,28/10/2019 19:04,24/10/2019 11:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4394,28/10/2019 19:00,25/10/2019 17:15,2.1,20, Improper Input Validation,nan
CVE-2013-4848,28/10/2019 18:58,25/10/2019 17:15,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-4459,28/10/2019 18:19,24/10/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4398,28/10/2019 18:18,24/10/2019 12:15,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2019-3982,28/10/2019 18:10,23/10/2019 19:15,4.0,20, Improper Input Validation,nan
CVE-2019-4486,28/10/2019 18:09,24/10/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12094,28/10/2019 17:34,24/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17141,28/10/2019 17:31,25/10/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-17139,28/10/2019 17:18,25/10/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17140,28/10/2019 17:17,25/10/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-17142,28/10/2019 17:16,25/10/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-17144,28/10/2019 17:15,25/10/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17143,28/10/2019 17:15,25/10/2019 19:15,4.3,416, Use After Free,nan
CVE-2016-4986,28/10/2019 17:09,9/02/2017 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3101,28/10/2019 17:09,9/02/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4988,28/10/2019 17:08,9/02/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4987,28/10/2019 17:08,9/02/2017 15:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17581,28/10/2019 16:55,24/10/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18387,28/10/2019 16:52,23/10/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-18415,28/10/2019 16:42,24/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18414,28/10/2019 16:42,24/10/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-18416,28/10/2019 16:40,24/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18417,28/10/2019 16:39,24/10/2019 18:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-17606,28/10/2019 16:36,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17184,28/10/2019 16:15,4/10/2019 23:15,7.5,269, Improper Privilege Management,nan
CVE-2019-16167,28/10/2019 16:15,9/09/2019 17:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-17145,28/10/2019 15:46,25/10/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-8237,28/10/2019 15:38,23/10/2019 21:15,10.0,326, Inadequate Encryption Strength,nan
CVE-2019-8238,28/10/2019 15:35,23/10/2019 21:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16355,28/10/2019 15:31,14/12/2017 22:29,1.2,200, Information Exposure,nan
CVE-2019-13653,28/10/2019 15:29,24/10/2019 15:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13652,28/10/2019 15:28,24/10/2019 15:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13651,28/10/2019 15:27,24/10/2019 15:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13650,28/10/2019 15:27,24/10/2019 15:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13649,28/10/2019 15:27,24/10/2019 15:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9597,28/10/2019 15:17,23/10/2019 19:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9596,28/10/2019 15:17,23/10/2019 19:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10079,28/10/2019 15:15,22/10/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2017-5731,28/10/2019 15:15,28/10/2019 15:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-18357,28/10/2019 15:12,23/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18356,28/10/2019 15:09,23/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17138,28/10/2019 15:08,25/10/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-4461,28/10/2019 14:19,25/10/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16265,28/10/2019 14:17,25/10/2019 17:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-4396,28/10/2019 14:05,25/10/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14451,28/10/2019 13:57,25/10/2019 17:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-4400,28/10/2019 13:51,25/10/2019 17:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4399,28/10/2019 13:48,25/10/2019 17:15,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-11816,28/10/2019 13:47,20/05/2019 22:29,6.5,284, Improper Access Control,nan
CVE-2019-4395,28/10/2019 13:46,25/10/2019 17:15,2.1,200, Information Exposure,nan
CVE-2013-4857,28/10/2019 13:45,25/10/2019 16:15,7.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-18359,28/10/2019 13:31,23/10/2019 20:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16976,28/10/2019 13:09,23/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16977,28/10/2019 13:04,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9499,28/10/2019 12:57,22/10/2019 21:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8087,28/10/2019 12:52,25/10/2019 16:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-8086,28/10/2019 12:48,25/10/2019 16:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-8082,28/10/2019 12:48,25/10/2019 15:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-8085,28/10/2019 12:47,25/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8081,28/10/2019 12:47,25/10/2019 15:15,5.0,287, Improper Authentication,nan
CVE-2019-8080,28/10/2019 12:47,24/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8079,28/10/2019 12:46,24/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8078,28/10/2019 12:46,24/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8088,28/10/2019 12:45,25/10/2019 16:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-8234,28/10/2019 12:43,25/10/2019 16:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9504,28/10/2019 12:42,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8084,28/10/2019 12:30,25/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8083,28/10/2019 12:23,25/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17133,28/10/2019 2:15,4/10/2019 12:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2015-9503,28/10/2019 1:11,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9502,28/10/2019 1:11,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9505,28/10/2019 1:06,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18197,27/10/2019 23:15,18/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-18217,27/10/2019 21:15,21/10/2019 4:15,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-15164,27/10/2019 3:15,3/10/2019 19:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-15163,27/10/2019 3:15,3/10/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-15162,27/10/2019 3:15,3/10/2019 19:15,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-15161,27/10/2019 3:15,3/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-18218,26/10/2019 11:15,21/10/2019 5:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-17350,26/10/2019 5:15,8/10/2019 0:15,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-17349,26/10/2019 5:15,8/10/2019 1:15,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-9433,26/10/2019 0:15,27/09/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-9423,26/10/2019 0:15,27/09/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9371,26/10/2019 0:15,27/09/2019 19:15,7.1,20, Improper Input Validation,nan
CVE-2019-9325,26/10/2019 0:15,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9278,26/10/2019 0:15,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9232,26/10/2019 0:15,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-17056,25/10/2019 20:15,1/10/2019 14:15,2.1,276, Incorrect Default Permissions,nan
CVE-2019-17055,25/10/2019 20:15,1/10/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2019-17054,25/10/2019 20:15,1/10/2019 14:15,2.1,276, Incorrect Default Permissions,nan
CVE-2019-17053,25/10/2019 20:15,1/10/2019 14:15,2.1,276, Incorrect Default Permissions,nan
CVE-2019-17052,25/10/2019 20:15,1/10/2019 14:15,2.1,276, Incorrect Default Permissions,nan
CVE-2018-19519,25/10/2019 20:15,25/11/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16301,25/10/2019 20:15,3/10/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2015-9507,25/10/2019 19:47,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9508,25/10/2019 19:45,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9509,25/10/2019 19:27,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9511,25/10/2019 19:25,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9512,25/10/2019 19:16,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2114,25/10/2019 19:15,11/10/2019 19:15,4.4,276, Incorrect Default Permissions,nan
CVE-2019-17109,25/10/2019 19:15,9/10/2019 22:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14823,25/10/2019 19:15,14/10/2019 20:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-13286,25/10/2019 19:15,4/07/2019 22:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-13283,25/10/2019 19:15,4/07/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13282,25/10/2019 19:15,4/07/2019 20:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13281,25/10/2019 19:15,4/07/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12958,25/10/2019 19:15,25/06/2019 0:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-12957,25/10/2019 19:15,25/06/2019 0:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-12515,25/10/2019 19:15,2/06/2019 0:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-6062,25/10/2019 19:15,2/03/2017 6:59,5.0,287, Improper Authentication,nan
CVE-2015-9513,25/10/2019 19:14,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9514,25/10/2019 19:12,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9515,25/10/2019 19:10,23/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18344,25/10/2019 18:50,23/10/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-18280,25/10/2019 18:47,23/10/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15587,25/10/2019 18:15,22/10/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18278,25/10/2019 18:05,23/10/2019 14:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9749,25/10/2019 17:54,13/03/2019 19:29,5.0,20, Improper Input Validation,nan
CVE-2013-7333,25/10/2019 17:29,23/10/2019 17:15,7.8,20, Improper Input Validation,nan
CVE-2019-11933,25/10/2019 17:07,23/10/2019 16:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9536,25/10/2019 16:57,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9535,25/10/2019 16:54,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9534,25/10/2019 16:50,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9533,25/10/2019 16:47,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9532,25/10/2019 16:43,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9531,25/10/2019 16:38,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9530,25/10/2019 15:59,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9529,25/10/2019 15:55,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9528,25/10/2019 15:53,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9527,25/10/2019 15:48,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9526,25/10/2019 15:47,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9525,25/10/2019 15:45,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10459,25/10/2019 15:28,23/10/2019 13:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-10462,25/10/2019 15:17,23/10/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17351,25/10/2019 15:15,8/10/2019 0:15,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2019-17348,25/10/2019 15:15,8/10/2019 1:15,4.9,20, Improper Input Validation,nan
CVE-2019-17347,25/10/2019 15:15,8/10/2019 1:15,4.6,20, Improper Input Validation,nan
CVE-2019-17346,25/10/2019 15:15,8/10/2019 1:15,7.2,20, Improper Input Validation,nan
CVE-2019-17345,25/10/2019 15:15,8/10/2019 1:15,4.9,20, Improper Input Validation,nan
CVE-2019-17344,25/10/2019 15:15,8/10/2019 1:15,4.9,20, Improper Input Validation,nan
CVE-2019-17343,25/10/2019 15:15,8/10/2019 1:15,4.6,20, Improper Input Validation,nan
CVE-2019-17342,25/10/2019 15:15,8/10/2019 1:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-17341,25/10/2019 15:15,8/10/2019 1:15,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-17340,25/10/2019 15:15,8/10/2019 1:15,6.1,20, Improper Input Validation,nan
CVE-2019-10463,25/10/2019 15:07,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-10466,25/10/2019 14:59,23/10/2019 13:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10160,25/10/2019 11:53,7/06/2019 18:29,5.0,255, Credentials Management,nan
CVE-2018-1000802,25/10/2019 11:53,18/09/2018 17:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-2183,25/10/2019 11:53,1/09/2016 0:59,5.0,200, Information Exposure,nan
CVE-2014-7185,25/10/2019 11:53,8/10/2014 17:55,6.4,189, Numeric Errors,nan
CVE-2014-1912,25/10/2019 11:53,1/03/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7040,25/10/2019 11:53,19/05/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4238,25/10/2019 11:53,18/08/2013 2:52,4.3,20, Improper Input Validation,nan
CVE-2012-1150,25/10/2019 11:53,5/10/2012 21:55,5.0,310, Cryptographic Issues,nan
CVE-2012-0845,25/10/2019 11:53,5/10/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2011-4944,25/10/2019 11:53,27/08/2012 23:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-4940,25/10/2019 11:53,27/06/2012 10:18,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1521,25/10/2019 11:53,24/05/2011 23:55,6.4,399, Resource Management Errors,nan
CVE-2011-1015,25/10/2019 11:53,9/05/2011 22:55,5.0,200, Information Exposure,nan
CVE-2010-3493,25/10/2019 11:53,19/10/2010 20:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2089,25/10/2019 11:53,27/05/2010 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1634,25/10/2019 11:53,27/05/2010 19:30,5.0,189, Numeric Errors,nan
CVE-2010-1450,25/10/2019 11:53,27/05/2010 19:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1449,25/10/2019 11:53,27/05/2010 19:30,7.5,189, Numeric Errors,nan
CVE-2009-4134,25/10/2019 11:53,27/05/2010 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5031,25/10/2019 11:53,10/11/2008 16:15,10.0,189, Numeric Errors,nan
CVE-2019-14858,24/10/2019 23:15,14/10/2019 15:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-6282,24/10/2019 21:15,21/03/2019 16:01,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20781,24/10/2019 20:15,12/02/2019 17:29,2.1,255, Credentials Management,nan
CVE-2019-10468,24/10/2019 19:42,23/10/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10469,24/10/2019 19:23,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-17666,24/10/2019 19:15,17/10/2019 2:15,8.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10470,24/10/2019 19:05,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-18219,24/10/2019 18:53,23/10/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18220,24/10/2019 18:36,23/10/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11674,24/10/2019 18:23,22/10/2019 15:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-10472,24/10/2019 18:15,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-4523,24/10/2019 18:12,22/10/2019 15:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-12967,24/10/2019 18:00,22/10/2019 15:15,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-8087,24/10/2019 17:56,22/10/2019 16:15,2.1,200, Information Exposure,nan
CVE-2019-10473,24/10/2019 17:46,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-10474,24/10/2019 17:35,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-18216,24/10/2019 17:25,20/10/2019 16:15,7.2,20, Improper Input Validation,nan
CVE-2019-10465,24/10/2019 17:25,23/10/2019 13:15,4.0,276, Incorrect Default Permissions,nan
CVE-2019-10471,24/10/2019 17:15,23/10/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10464,24/10/2019 17:08,23/10/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-18225,24/10/2019 17:06,21/10/2019 18:15,7.5,287, Improper Authentication,nan
CVE-2019-10461,24/10/2019 17:04,23/10/2019 13:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-16964,24/10/2019 17:00,21/10/2019 19:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16966,24/10/2019 16:35,21/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10460,24/10/2019 16:32,23/10/2019 13:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-10050,24/10/2019 16:19,13/05/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-18203,24/10/2019 15:49,21/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17526,24/10/2019 15:36,18/10/2019 17:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-16919,24/10/2019 15:26,18/10/2019 12:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-6475,24/10/2019 15:16,17/10/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-17543,24/10/2019 15:15,14/10/2019 2:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0176,24/10/2019 15:15,22/06/2017 14:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-17513,24/10/2019 15:11,18/10/2019 3:15,5.0,20, Improper Input Validation,nan
CVE-2019-10475,24/10/2019 14:59,23/10/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-18202,24/10/2019 14:55,19/10/2019 1:15,5.0,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-10476,24/10/2019 14:48,23/10/2019 13:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2015-9500,24/10/2019 14:30,22/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8196,24/10/2019 14:29,17/10/2019 21:15,10.0,476, NULL Pointer Dereference,nan
CVE-2019-8181,24/10/2019 14:29,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8180,24/10/2019 14:29,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8173,24/10/2019 14:27,17/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8195,24/10/2019 14:26,17/10/2019 21:15,10.0,476, NULL Pointer Dereference,nan
CVE-2019-8174,24/10/2019 14:22,17/10/2019 21:15,6.8,476, NULL Pointer Dereference,nan
CVE-2019-8175,24/10/2019 14:18,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8194,24/10/2019 14:16,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8176,24/10/2019 14:16,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-17449,24/10/2019 14:15,10/10/2019 16:15,4.6,426, Untrusted Search Path,nan
CVE-2019-8177,24/10/2019 14:12,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2017-18359,24/10/2019 14:11,25/01/2019 5:29,5.0,20, Improper Input Validation,nan
CVE-2019-8178,24/10/2019 14:09,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8179,24/10/2019 14:07,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-10467,24/10/2019 14:07,23/10/2019 13:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2015-4645,24/10/2019 14:02,17/03/2017 14:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2015-4646,24/10/2019 14:00,13/04/2017 17:59,5.0,20, Improper Input Validation,nan
CVE-2019-13657,24/10/2019 13:58,17/10/2019 19:15,6.5,798, Use of Hard-coded Credentials,nan
CVE-2019-6334,24/10/2019 13:54,16/10/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-6327,24/10/2019 13:53,17/06/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16975,24/10/2019 13:47,23/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8162,24/10/2019 13:44,17/10/2019 21:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-8163,24/10/2019 13:41,17/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-9495,24/10/2019 13:40,22/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8164,24/10/2019 13:37,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8165,24/10/2019 13:35,17/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-8166,24/10/2019 13:31,17/10/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9494,24/10/2019 13:27,22/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8167,24/10/2019 13:26,17/10/2019 21:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2019-8169,24/10/2019 13:25,17/10/2019 21:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2019-8170,24/10/2019 13:21,17/10/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8171,24/10/2019 13:18,17/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2015-9498,24/10/2019 13:08,22/10/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9496,24/10/2019 12:53,22/10/2019 21:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5009,24/10/2019 12:31,4/01/2019 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1000828,24/10/2019 12:31,20/12/2018 15:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000412,24/10/2019 12:29,9/01/2019 23:29,4.0,255, Credentials Management,nan
CVE-2018-16886,24/10/2019 12:24,14/01/2019 19:29,6.8,287, Improper Authentication,nan
CVE-2017-11479,24/10/2019 12:15,29/09/2017 1:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6476,24/10/2019 6:15,17/10/2019 20:15,5.0,617, Reachable Assertion,nan
CVE-2019-17531,24/10/2019 6:15,12/10/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-17451,24/10/2019 6:15,10/10/2019 17:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-17450,24/10/2019 6:15,10/10/2019 17:15,4.3,674, Uncontrolled Recursion,nan
CVE-2019-17359,24/10/2019 6:15,8/10/2019 14:15,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-6156,24/10/2019 0:15,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16990,23/10/2019 23:15,21/10/2019 15:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16989,23/10/2019 23:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16987,23/10/2019 23:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16986,23/10/2019 23:15,21/10/2019 16:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16985,23/10/2019 23:15,21/10/2019 16:15,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16984,23/10/2019 23:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16983,23/10/2019 23:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16982,23/10/2019 23:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16981,23/10/2019 23:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16980,23/10/2019 23:15,21/10/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16979,23/10/2019 23:15,21/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16973,23/10/2019 23:15,22/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5586,23/10/2019 20:15,4/06/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17220,23/10/2019 20:15,21/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10969,23/10/2019 20:15,8/10/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2019-10963,23/10/2019 20:15,8/10/2019 19:15,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-9497,23/10/2019 19:58,22/10/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17400,23/10/2019 19:38,21/10/2019 23:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-8089,23/10/2019 19:20,22/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9493,23/10/2019 19:12,22/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20758,23/10/2019 18:36,6/02/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4277,23/10/2019 18:15,11/01/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-15333,23/10/2019 17:15,28/12/2018 15:29,2.1,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-6329,23/10/2019 15:58,25/06/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-16967,23/10/2019 15:16,21/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16991,23/10/2019 15:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16988,23/10/2019 15:15,21/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16978,23/10/2019 15:15,21/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16974,23/10/2019 15:15,21/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16972,23/10/2019 15:15,22/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16971,23/10/2019 15:15,22/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16970,23/10/2019 15:15,21/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16969,23/10/2019 15:15,21/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16968,23/10/2019 15:15,21/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16965,23/10/2019 15:15,21/10/2019 19:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11284,23/10/2019 15:04,17/10/2019 18:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2019-10437,23/10/2019 14:21,16/10/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17365,23/10/2019 14:12,9/10/2019 22:15,4.6,276, Incorrect Default Permissions,nan
CVE-2019-8172,23/10/2019 13:07,17/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8197,23/10/2019 12:48,17/10/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8183,23/10/2019 12:48,17/10/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8198,23/10/2019 12:46,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8203,23/10/2019 12:45,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8204,23/10/2019 12:44,17/10/2019 21:15,6.8,125, Out-of-bounds Read,nan
CVE-2015-9501,23/10/2019 12:40,22/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8199,23/10/2019 12:25,17/10/2019 21:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-17540,23/10/2019 12:15,14/10/2019 2:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-14287,23/10/2019 5:15,17/10/2019 18:15,9.0,20, Improper Input Validation,nan
CVE-2019-8201,23/10/2019 0:41,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8202,23/10/2019 0:36,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8205,23/10/2019 0:19,17/10/2019 21:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-8206,23/10/2019 0:03,17/10/2019 21:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8200,22/10/2019 23:52,17/10/2019 21:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2019-8207,22/10/2019 23:41,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2018-14665,22/10/2019 23:15,25/10/2018 20:29,7.2,863, Incorrect Authorization,nan
CVE-2019-8222,22/10/2019 22:35,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-3957,22/10/2019 22:30,7/06/2019 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-3980,22/10/2019 22:28,8/10/2019 20:15,10.0,20, Improper Input Validation,nan
CVE-2019-12402,22/10/2019 22:15,30/08/2019 9:15,5.0,399, Resource Management Errors,nan
CVE-2019-9491,22/10/2019 21:15,21/10/2019 19:15,5.1,20, Improper Input Validation,nan
CVE-2019-15847,22/10/2019 21:15,2/09/2019 23:15,5.0,331, Insufficient Entropy,nan
CVE-2019-8214,22/10/2019 21:13,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8212,22/10/2019 21:13,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8223,22/10/2019 21:12,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8211,22/10/2019 21:09,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8210,22/10/2019 21:08,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8224,22/10/2019 21:07,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8209,22/10/2019 21:05,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8225,22/10/2019 21:04,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8208,22/10/2019 21:03,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-17114,22/10/2019 20:44,17/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17115,22/10/2019 20:38,17/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17116,22/10/2019 20:29,17/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15626,22/10/2019 20:25,17/10/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-17119,22/10/2019 20:21,17/10/2019 19:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15260,22/10/2019 20:00,16/10/2019 19:15,10.0,269, Improper Privilege Management,nan
CVE-2019-15261,22/10/2019 19:51,16/10/2019 19:15,7.8,20, Improper Input Validation,nan
CVE-2019-15262,22/10/2019 19:47,16/10/2019 19:15,7.8,20, Improper Input Validation,nan
CVE-2019-15264,22/10/2019 19:45,16/10/2019 19:15,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-15265,22/10/2019 19:33,16/10/2019 19:15,2.1,20, Improper Input Validation,nan
CVE-2017-14232,22/10/2019 19:15,15/08/2019 17:15,4.3,399, Resource Management Errors,nan
CVE-2019-12636,22/10/2019 19:05,16/10/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12637,22/10/2019 18:57,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12705,22/10/2019 18:53,16/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8213,22/10/2019 18:52,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-12718,22/10/2019 18:50,16/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16917,22/10/2019 18:35,17/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8215,22/10/2019 18:26,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8185,22/10/2019 18:00,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-17189,22/10/2019 18:00,22/10/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15266,22/10/2019 17:50,16/10/2019 19:15,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8226,22/10/2019 17:39,17/10/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-8221,22/10/2019 17:33,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8220,22/10/2019 17:28,17/10/2019 21:15,7.5,416, Use After Free,nan
CVE-2017-7324,22/10/2019 17:23,30/03/2017 7:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7322,22/10/2019 17:23,30/03/2017 7:59,6.8,295, Improper Certificate Validation,nan
CVE-2017-7321,22/10/2019 17:23,30/03/2017 7:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7320,22/10/2019 17:23,30/03/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8992,22/10/2019 17:23,22/12/2014 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8775,22/10/2019 17:23,3/12/2014 18:59,5.0,200, Information Exposure,nan
CVE-2014-8774,22/10/2019 17:23,3/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8773,22/10/2019 17:23,3/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2736,22/10/2019 17:23,24/04/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2311,22/10/2019 17:23,11/03/2014 19:37,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5278,22/10/2019 17:23,7/10/2012 20:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8219,22/10/2019 17:22,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-10451,22/10/2019 17:22,16/10/2019 14:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10716,22/10/2019 17:19,21/10/2019 0:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-8218,22/10/2019 17:14,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8217,22/10/2019 17:08,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8216,22/10/2019 17:00,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16530,22/10/2019 17:00,21/10/2019 14:15,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15269,22/10/2019 16:40,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15268,22/10/2019 16:26,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15270,22/10/2019 16:16,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1002101,22/10/2019 16:15,1/04/2019 14:29,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-17117,22/10/2019 16:12,17/10/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8064,22/10/2019 16:10,17/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-17118,22/10/2019 16:10,17/10/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17631,22/10/2019 16:08,17/10/2019 18:15,6.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15627,22/10/2019 15:56,17/10/2019 19:15,6.6,20, Improper Input Validation,nan
CVE-2019-10438,22/10/2019 15:55,16/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-13410,22/10/2019 15:46,17/10/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-8187,22/10/2019 15:39,17/10/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-8189,22/10/2019 15:30,17/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-16404,22/10/2019 15:23,21/10/2019 23:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12611,22/10/2019 15:16,17/10/2019 19:15,4.9,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2019-8186,22/10/2019 15:15,17/10/2019 21:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-8188,22/10/2019 15:07,17/10/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-13409,22/10/2019 15:05,17/10/2019 20:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-18209,22/10/2019 15:01,19/10/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8161,22/10/2019 14:50,17/10/2019 21:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2019-8168,22/10/2019 14:48,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-15900,22/10/2019 14:48,18/10/2019 16:15,10.0,1187, Use of Uninitialized Resource,nan
CVE-2019-8190,22/10/2019 14:45,17/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8191,22/10/2019 14:39,17/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-8192,22/10/2019 14:38,17/10/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-15901,22/10/2019 14:37,18/10/2019 16:15,9.0,20, Improper Input Validation,nan
CVE-2019-8193,22/10/2019 14:36,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-18192,22/10/2019 14:21,17/10/2019 20:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-14423,22/10/2019 14:18,17/10/2019 14:15,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-16905,22/10/2019 14:15,9/10/2019 20:15,4.4,190, Integer Overflow or Wraparound,nan
CVE-2019-17668,22/10/2019 14:13,17/10/2019 12:15,4.4,20, Improper Input Validation,nan
CVE-2019-17667,22/10/2019 14:04,17/10/2019 11:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17393,22/10/2019 13:59,18/10/2019 17:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2019-8160,22/10/2019 13:55,17/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15065,22/10/2019 13:34,17/10/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-13412,22/10/2019 13:34,17/10/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-17367,22/10/2019 13:32,18/10/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15064,22/10/2019 13:31,17/10/2019 20:15,7.5,287, Improper Authentication,nan
CVE-2019-8184,22/10/2019 13:29,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-15849,22/10/2019 13:23,17/10/2019 14:15,4.9,384, Session Fixation,nan
CVE-2019-13411,22/10/2019 13:23,17/10/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2019-14424,22/10/2019 13:22,17/10/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-15277,22/10/2019 13:20,16/10/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-15275,22/10/2019 13:20,16/10/2019 19:15,7.2,269, Improper Privilege Management,nan
CVE-2019-15280,22/10/2019 13:19,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15281,22/10/2019 13:18,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15282,22/10/2019 13:16,16/10/2019 19:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-8182,22/10/2019 13:14,17/10/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-15962,22/10/2019 13:14,16/10/2019 19:15,6.6,276, Incorrect Default Permissions,nan
CVE-2019-18214,22/10/2019 13:00,19/10/2019 14:15,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2013-3249,22/10/2019 12:45,20/03/2014 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8220,22/10/2019 12:41,17/11/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15954,22/10/2019 1:15,5/09/2019 19:16,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-8006,22/10/2019 0:15,10/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15709,22/10/2019 0:15,13/02/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-19518,21/10/2019 23:15,25/11/2018 10:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-10715,21/10/2019 20:15,21/10/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17676,21/10/2019 19:38,17/10/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17409,21/10/2019 19:24,21/10/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16862,21/10/2019 19:21,21/10/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15274,21/10/2019 19:02,16/10/2019 19:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-2933,21/10/2019 19:01,16/10/2019 18:15,4.3,200, Information Exposure,nan
CVE-2019-15273,21/10/2019 18:53,16/10/2019 19:15,6.6,269, Improper Privilege Management,nan
CVE-2019-6473,21/10/2019 18:50,16/10/2019 18:15,3.3,617, Reachable Assertion,nan
CVE-2019-12638,21/10/2019 18:50,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6472,21/10/2019 18:49,16/10/2019 18:15,3.3,617, Reachable Assertion,nan
CVE-2019-10441,21/10/2019 18:47,16/10/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000880,21/10/2019 18:33,20/12/2018 17:29,4.3,415, Double Free,nan
CVE-2019-17664,21/10/2019 18:21,16/10/2019 20:15,4.4,426, Untrusted Search Path,nan
CVE-2017-14062,21/10/2019 18:20,31/08/2017 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-14061,21/10/2019 18:20,31/08/2017 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-17207,21/10/2019 18:19,18/10/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17665,21/10/2019 18:16,16/10/2019 20:15,4.4,426, Untrusted Search Path,nan
CVE-2019-15850,21/10/2019 18:10,17/10/2019 14:15,9.0,20, Improper Input Validation,nan
CVE-2019-17512,21/10/2019 18:04,16/10/2019 19:15,6.4,287, Improper Authentication,nan
CVE-2019-16330,21/10/2019 17:54,17/10/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15066,21/10/2019 17:24,17/10/2019 20:15,10.0,20, Improper Input Validation,nan
CVE-2019-17402,21/10/2019 17:15,9/10/2019 19:15,4.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-17662,21/10/2019 17:04,16/10/2019 18:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15257,21/10/2019 17:03,16/10/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-17545,21/10/2019 17:02,14/10/2019 2:15,7.5,415, Double Free,nan
CVE-2019-12708,21/10/2019 17:01,16/10/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-12704,21/10/2019 17:00,16/10/2019 19:15,4.0,200, Information Exposure,nan
CVE-2012-4025,21/10/2019 16:58,19/07/2012 19:55,6.8,189, Numeric Errors,nan
CVE-2012-4024,21/10/2019 16:58,19/07/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12703,21/10/2019 16:46,16/10/2019 19:15,2.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2930,21/10/2019 16:43,16/10/2019 18:15,4.3,287, Improper Authentication,nan
CVE-2019-2922,21/10/2019 16:35,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-12702,21/10/2019 16:35,16/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14497,21/10/2019 16:15,1/08/2019 18:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14496,21/10/2019 16:15,1/08/2019 18:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14464,21/10/2019 16:15,31/07/2019 23:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0201,21/10/2019 16:15,23/05/2019 14:29,4.3,275, Permission Issues,nan
CVE-2017-18638,21/10/2019 16:15,11/10/2019 23:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-15893,21/10/2019 16:03,16/10/2019 14:15,6.5,269, Improper Privilege Management,nan
CVE-2019-9529,21/10/2019 15:57,10/10/2019 20:15,4.9,306, Missing Authentication for Critical Function,nan
CVE-2019-17186,21/10/2019 15:48,8/10/2019 19:15,9.0,20, Improper Input Validation,nan
CVE-2019-17436,21/10/2019 15:46,16/10/2019 19:15,6.6,269, Improper Privilege Management,nan
CVE-2019-3019,21/10/2019 15:22,16/10/2019 18:15,4.9,863, Incorrect Authorization,nan
CVE-2019-3001,21/10/2019 15:19,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-17070,21/10/2019 15:15,10/10/2019 12:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2980,21/10/2019 15:09,16/10/2019 18:15,6.8,200, Information Exposure,nan
CVE-2019-17663,21/10/2019 14:21,16/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17435,21/10/2019 14:21,16/10/2019 19:15,2.1,269, Improper Privilege Management,nan
CVE-2019-10439,21/10/2019 14:18,16/10/2019 14:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-17179,21/10/2019 14:15,4/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16279,21/10/2019 14:15,14/10/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14846,21/10/2019 14:15,8/10/2019 19:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2013-7400,21/10/2019 13:58,29/12/2017 15:29,5.0,200, Information Exposure,nan
CVE-2019-12941,21/10/2019 13:57,14/10/2019 18:15,10.0,522, Insufficiently Protected Credentials,nan
CVE-2019-13545,21/10/2019 13:56,18/10/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-16698,21/10/2019 13:52,16/10/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-13541,21/10/2019 13:51,18/10/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-16699,21/10/2019 13:43,16/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-9745,21/10/2019 13:37,14/10/2019 15:15,7.2,269, Improper Privilege Management,nan
CVE-2019-14810,21/10/2019 13:31,10/10/2019 19:15,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-10442,21/10/2019 13:26,16/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16682,21/10/2019 13:15,16/10/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0075,21/10/2019 13:14,9/10/2019 20:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-0074,21/10/2019 13:13,9/10/2019 20:15,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10752,21/10/2019 13:10,17/10/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0063,21/10/2019 13:10,9/10/2019 20:15,4.3,20, Improper Input Validation,nan
CVE-2019-0062,21/10/2019 13:09,9/10/2019 20:15,6.8,384, Session Fixation,nan
CVE-2019-0061,21/10/2019 13:07,9/10/2019 20:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0072,21/10/2019 12:59,9/10/2019 20:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-10436,21/10/2019 12:50,16/10/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-8071,21/10/2019 12:35,17/10/2019 19:15,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15140,21/10/2019 11:15,18/08/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-15139,21/10/2019 11:15,18/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14981,21/10/2019 11:15,12/08/2019 23:15,4.3,369, Divide By Zero,nan
CVE-2019-17672,21/10/2019 0:17,17/10/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15165,21/10/2019 0:15,3/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2018-19052,21/10/2019 0:15,7/11/2018 5:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17673,20/10/2019 23:34,17/10/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-17674,20/10/2019 23:29,17/10/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0073,20/10/2019 22:50,9/10/2019 20:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-10447,20/10/2019 22:46,16/10/2019 14:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-17546,20/10/2019 22:43,14/10/2019 2:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-16522,20/10/2019 22:19,16/10/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17544,19/10/2019 21:15,14/10/2019 2:15,6.4,125, Out-of-bounds Read,nan
CVE-2019-15258,18/10/2019 21:09,16/10/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-10449,18/10/2019 21:01,16/10/2019 14:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-2884,18/10/2019 20:58,16/10/2019 18:15,4.3,200, Information Exposure,nan
CVE-2019-2935,18/10/2019 20:49,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-10450,18/10/2019 20:47,16/10/2019 14:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-2923,18/10/2019 20:44,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-10452,18/10/2019 20:42,16/10/2019 14:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10453,18/10/2019 20:41,16/10/2019 14:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10446,18/10/2019 20:36,16/10/2019 14:15,6.4,295, Improper Certificate Validation,nan
CVE-2019-10445,18/10/2019 20:31,16/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-10448,18/10/2019 20:28,16/10/2019 14:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-10444,18/10/2019 20:27,16/10/2019 14:15,6.4,295, Improper Certificate Validation,nan
CVE-2019-16523,18/10/2019 20:25,16/10/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16521,18/10/2019 20:24,16/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16520,18/10/2019 20:22,16/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0071,18/10/2019 20:20,9/10/2019 20:15,7.2,269, Improper Privilege Management,nan
CVE-2019-6474,18/10/2019 20:12,16/10/2019 18:15,6.1,20, Improper Input Validation,nan
CVE-2019-15247,18/10/2019 20:10,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15248,18/10/2019 20:07,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15249,18/10/2019 20:03,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15250,18/10/2019 19:57,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15251,18/10/2019 19:52,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17607,18/10/2019 19:51,16/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17608,18/10/2019 19:45,16/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15252,18/10/2019 19:43,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17609,18/10/2019 19:36,16/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17610,18/10/2019 19:35,16/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17611,18/10/2019 19:28,16/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3018,18/10/2019 19:24,16/10/2019 18:15,3.5,20, Improper Input Validation,nan
CVE-2019-2215,18/10/2019 19:15,11/10/2019 19:15,4.6,416, Use After Free,nan
CVE-2019-16926,18/10/2019 19:15,28/09/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16746,18/10/2019 19:15,24/09/2019 6:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16738,18/10/2019 19:15,26/09/2019 2:15,5.0,200, Information Exposure,nan
CVE-2019-13336,18/10/2019 19:03,8/10/2019 13:15,7.5,20, Improper Input Validation,nan
CVE-2019-2952,18/10/2019 19:00,16/10/2019 18:15,5.8,863, Incorrect Authorization,nan
CVE-2019-2969,18/10/2019 18:33,16/10/2019 18:15,2.1,200, Information Exposure,nan
CVE-2019-15240,18/10/2019 18:21,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15241,18/10/2019 18:20,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15242,18/10/2019 18:16,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15244,18/10/2019 18:15,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15243,18/10/2019 18:09,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15245,18/10/2019 18:07,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15246,18/10/2019 18:06,16/10/2019 19:15,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2887,18/10/2019 17:27,16/10/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-16925,18/10/2019 17:15,28/09/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17408,18/10/2019 17:02,14/10/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2019-17627,18/10/2019 17:00,16/10/2019 12:15,3.3,287, Improper Authentication,nan
CVE-2019-11281,18/10/2019 16:55,16/10/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1002201,18/10/2019 16:55,15/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0069,18/10/2019 16:42,9/10/2019 20:15,2.1,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-0068,18/10/2019 16:37,9/10/2019 20:15,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-0067,18/10/2019 16:35,9/10/2019 20:15,6.1,20, Improper Input Validation,nan
CVE-2019-14832,18/10/2019 16:33,15/10/2019 19:15,6.0,863, Incorrect Authorization,nan
CVE-2019-0066,18/10/2019 16:25,9/10/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-0065,18/10/2019 16:17,9/10/2019 20:15,4.3,20, Improper Input Validation,nan
CVE-2019-0064,18/10/2019 16:12,9/10/2019 20:15,4.3,20, Improper Input Validation,nan
CVE-2016-11014,18/10/2019 15:27,16/10/2019 11:15,7.5,613, Insufficient Session Expiration,nan
CVE-2019-2905,18/10/2019 15:25,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-17373,18/10/2019 15:14,9/10/2019 13:15,7.5,287, Improper Authentication,nan
CVE-2019-17595,18/10/2019 15:08,14/10/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-17541,18/10/2019 15:04,14/10/2019 2:15,6.8,416, Use After Free,nan
CVE-2019-17372,18/10/2019 14:56,9/10/2019 13:15,4.3,287, Improper Authentication,nan
CVE-2019-14657,18/10/2019 14:47,8/10/2019 13:15,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10458,18/10/2019 14:47,16/10/2019 14:15,6.5,20, Improper Input Validation,nan
CVE-2019-17547,18/10/2019 14:45,14/10/2019 2:15,6.8,416, Use After Free,nan
CVE-2019-0070,18/10/2019 14:40,9/10/2019 20:15,7.2,20, Improper Input Validation,nan
CVE-2019-17574,18/10/2019 14:35,14/10/2019 14:15,6.4,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2019-4031,18/10/2019 14:33,16/10/2019 13:15,7.2,269, Improper Privilege Management,nan
CVE-2015-9488,18/10/2019 14:33,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-17043,18/10/2019 14:20,14/10/2019 17:15,4.6,276, Incorrect Default Permissions,nan
CVE-2015-9487,18/10/2019 14:19,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-17044,18/10/2019 14:17,14/10/2019 17:15,7.2,276, Incorrect Default Permissions,nan
CVE-2015-9489,18/10/2019 14:15,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2015-9491,18/10/2019 14:10,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-17592,18/10/2019 14:09,14/10/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-17356,18/10/2019 14:06,15/10/2019 21:15,3.3,326, Inadequate Encryption Strength,nan
CVE-2015-9490,18/10/2019 14:02,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-17542,18/10/2019 13:51,14/10/2019 2:15,7.5,129, Improper Validation of Array Index,nan
CVE-2018-14659,18/10/2019 13:45,31/10/2018 19:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-9052,18/10/2019 13:43,18/05/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2015-9486,18/10/2019 13:41,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-17613,18/10/2019 13:40,15/10/2019 23:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13392,18/10/2019 13:30,16/10/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2900,18/10/2019 13:17,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-2898,18/10/2019 13:16,16/10/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-2888,18/10/2019 13:16,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-17578,18/10/2019 13:16,16/10/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17577,18/10/2019 13:15,16/10/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17576,18/10/2019 13:15,16/10/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5184,18/10/2019 13:15,25/09/2017 21:29,7.5,254, 7PK – Security Features,nan
CVE-2015-5183,18/10/2019 13:15,25/09/2017 21:29,7.5,254, 7PK – Security Features,nan
CVE-2015-5182,18/10/2019 13:15,25/09/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14808,18/10/2019 12:59,9/10/2019 16:15,4.0,924, Improper Enforcement of Message Integrity During Transmission in a Communication Channel,nan
CVE-2019-10457,18/10/2019 12:38,16/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-2920,18/10/2019 12:36,16/10/2019 18:15,5.0,863, Incorrect Authorization,nan
CVE-2019-10454,18/10/2019 12:31,16/10/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10456,18/10/2019 12:24,16/10/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10455,18/10/2019 12:18,16/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16410,18/10/2019 12:15,24/09/2019 20:15,6.4,125, Out-of-bounds Read,nan
CVE-2018-0505,18/10/2019 4:15,4/10/2018 20:29,4.0,287, Improper Authentication,nan
CVE-2018-0503,18/10/2019 4:15,4/10/2018 20:29,4.0,269, Improper Privilege Management,nan
CVE-2019-17394,18/10/2019 3:19,15/10/2019 21:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-17355,18/10/2019 3:17,15/10/2019 21:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-9485,18/10/2019 3:17,11/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2015-9484,18/10/2019 3:14,11/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2015-9483,18/10/2019 3:04,11/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-17396,18/10/2019 2:59,15/10/2019 21:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-0056,18/10/2019 2:36,9/10/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-0057,18/10/2019 2:34,9/10/2019 20:15,7.2,287, Improper Authentication,nan
CVE-2019-0058,18/10/2019 2:22,9/10/2019 20:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0059,18/10/2019 2:16,9/10/2019 20:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-0060,18/10/2019 1:54,9/10/2019 20:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-0051,18/10/2019 1:52,9/10/2019 20:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2018-5732,18/10/2019 1:43,9/10/2019 16:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5506,18/10/2019 1:39,9/10/2019 19:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-0050,18/10/2019 1:37,9/10/2019 20:15,4.3,20, Improper Input Validation,nan
CVE-2019-0054,18/10/2019 1:31,9/10/2019 20:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-16217,17/10/2019 23:15,11/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10215,17/10/2019 23:15,8/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0212,17/10/2019 22:15,28/03/2019 22:29,6.0,285, Improper Authorization,nan
CVE-2018-1000850,17/10/2019 22:15,20/12/2018 15:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12610,17/10/2019 22:15,26/07/2018 14:29,4.9,287, Improper Authentication,nan
CVE-2015-5237,17/10/2019 22:15,25/09/2017 17:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0881,17/10/2019 22:15,30/10/2017 16:29,7.8,399, Resource Management Errors,nan
CVE-2019-17539,17/10/2019 20:27,14/10/2019 2:15,7.5,476, NULL Pointer Dereference,nan
CVE-2017-14141,17/10/2019 20:25,19/09/2017 15:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-17536,17/10/2019 20:21,13/10/2019 18:15,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-17499,17/10/2019 20:02,11/10/2019 11:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-17660,17/10/2019 19:53,16/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2110,17/10/2019 19:39,11/10/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-0055,17/10/2019 19:33,9/10/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-16929,17/10/2019 19:31,8/10/2019 13:15,5.0,287, Improper Authentication,nan
CVE-2019-0047,17/10/2019 19:25,9/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9481,17/10/2019 19:22,11/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-11120,17/10/2019 19:12,11/10/2019 18:15,4.6,269, Improper Privilege Management,nan
CVE-2019-2883,17/10/2019 19:06,16/10/2019 18:15,4.9,863, Incorrect Authorization,nan
CVE-2019-0368,17/10/2019 19:03,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17612,17/10/2019 18:51,15/10/2019 23:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14656,17/10/2019 18:51,8/10/2019 13:15,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-11015,17/10/2019 18:46,16/10/2019 11:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4333,17/10/2019 18:38,23/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10756,17/10/2019 18:30,8/10/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-11016,17/10/2019 18:17,16/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14845,17/10/2019 18:16,8/10/2019 19:15,2.9,494, Download of Code Without Integrity Check,nan
CVE-2019-17091,17/10/2019 18:14,2/10/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9482,17/10/2019 17:54,11/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2015-9466,17/10/2019 17:51,10/10/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11167,17/10/2019 17:40,11/10/2019 18:15,4.6,269, Improper Privilege Management,nan
CVE-2019-3765,17/10/2019 17:33,9/10/2019 20:15,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16097,17/10/2019 17:32,8/09/2019 16:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4707,17/10/2019 17:32,20/09/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5048,17/10/2019 17:28,9/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17264,17/10/2019 17:22,6/10/2019 22:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-17601,17/10/2019 17:20,15/10/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6335,17/10/2019 17:17,11/10/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-15226,17/10/2019 17:03,9/10/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-2909,17/10/2019 16:59,16/10/2019 18:15,4.3,20, Improper Input Validation,nan
CVE-2019-2913,17/10/2019 16:58,16/10/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-2924,17/10/2019 16:57,16/10/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-2938,17/10/2019 16:55,16/10/2019 18:15,3.5,20, Improper Input Validation,nan
CVE-2019-2939,17/10/2019 16:52,16/10/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-2940,17/10/2019 16:51,16/10/2019 18:15,2.1,20, Improper Input Validation,nan
CVE-2019-9531,17/10/2019 16:42,10/10/2019 20:15,10.0,287, Improper Authentication,nan
CVE-2019-9532,17/10/2019 16:31,10/10/2019 20:15,2.1,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-17366,17/10/2019 16:21,9/10/2019 22:15,6.5,863, Incorrect Authorization,nan
CVE-2019-17414,17/10/2019 16:15,9/10/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-17267,17/10/2019 16:15,7/10/2019 0:15,7.5,20, Improper Input Validation,nan
CVE-2019-15138,17/10/2019 16:15,20/09/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-17532,17/10/2019 16:12,12/10/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-17534,17/10/2019 16:10,13/10/2019 2:15,6.8,416, Use After Free,nan
CVE-2019-17533,17/10/2019 16:10,13/10/2019 2:15,6.4,125, Out-of-bounds Read,nan
CVE-2019-17415,17/10/2019 16:09,9/10/2019 22:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2010-5334,17/10/2019 16:08,11/10/2019 11:15,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5527,17/10/2019 15:59,10/10/2019 17:15,7.2,416, Use After Free,nan
CVE-2019-17502,17/10/2019 15:58,12/10/2019 20:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-17528,17/10/2019 15:52,12/10/2019 20:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17529,17/10/2019 15:47,12/10/2019 20:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-17530,17/10/2019 15:42,12/10/2019 20:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-5535,17/10/2019 15:38,10/10/2019 17:15,2.9,20, Improper Input Validation,nan
CVE-2019-17553,17/10/2019 15:21,14/10/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14569,17/10/2019 15:18,11/10/2019 18:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17395,17/10/2019 15:10,15/10/2019 22:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-17626,17/10/2019 15:03,16/10/2019 12:15,7.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-1365,17/10/2019 15:03,10/10/2019 14:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14328,17/10/2019 15:00,23/10/2017 8:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17521,17/10/2019 14:56,12/10/2019 18:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14838,17/10/2019 14:53,14/10/2019 15:15,4.0,287, Improper Authentication,nan
CVE-2015-9479,17/10/2019 14:51,10/10/2019 17:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-17575,17/10/2019 14:23,14/10/2019 15:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-17511,17/10/2019 14:13,14/10/2019 16:15,5.0,287, Improper Authentication,nan
CVE-2019-17602,17/10/2019 14:11,15/10/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14948,17/10/2019 14:05,14/10/2019 18:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16519,17/10/2019 14:00,14/10/2019 16:15,7.2,20, Improper Input Validation,nan
CVE-2019-5045,17/10/2019 13:45,9/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17522,17/10/2019 13:40,12/10/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17398,17/10/2019 13:32,15/10/2019 21:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-3767,17/10/2019 13:28,14/10/2019 18:15,1.9,200, Information Exposure,nan
CVE-2019-17579,17/10/2019 13:23,14/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14955,17/10/2019 13:21,2/10/2017 1:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-17594,17/10/2019 13:20,14/10/2019 21:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-16344,17/10/2019 13:17,14/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14737,17/10/2019 13:15,14/10/2019 19:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-17583,17/10/2019 13:08,14/10/2019 16:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2015-1828,17/10/2019 12:58,6/10/2017 22:29,4.3,200, Information Exposure,nan
CVE-2019-14226,17/10/2019 12:56,14/10/2019 17:15,5.5,281, Improper Preservation of Permissions,nan
CVE-2017-14683,17/10/2019 12:31,25/09/2017 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14506,17/10/2019 12:30,25/09/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2181,17/10/2019 4:15,5/09/2019 22:15,6.9,190, Integer Overflow or Wraparound,nan
CVE-2019-15902,17/10/2019 4:15,4/09/2019 6:15,4.7,200, Information Exposure,nan
CVE-2019-14510,17/10/2019 2:02,11/10/2019 12:15,7.2,276, Incorrect Default Permissions,nan
CVE-2019-14570,17/10/2019 1:57,11/10/2019 18:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20582,17/10/2019 1:53,11/10/2019 20:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-21027,17/10/2019 1:52,11/10/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17537,17/10/2019 1:49,13/10/2019 19:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17538,17/10/2019 1:30,13/10/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17501,17/10/2019 1:26,14/10/2019 2:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11790,17/10/2019 1:15,31/01/2019 16:29,4.6,682, Incorrect Calculation,nan
CVE-2018-15909,16/10/2019 23:15,27/08/2018 17:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-17625,16/10/2019 22:36,16/10/2019 12:15,8.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9469,16/10/2019 20:18,10/10/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6800,16/10/2019 20:15,30/08/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16282,16/10/2019 20:14,14/10/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17552,16/10/2019 20:03,14/10/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4572,16/10/2019 20:00,14/10/2019 14:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-17593,16/10/2019 19:56,14/10/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17580,16/10/2019 19:54,14/10/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002151,16/10/2019 19:48,14/09/2017 13:29,5.0,862, Missing Authorization,nan
CVE-2019-17490,16/10/2019 19:45,10/10/2019 21:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-17455,16/10/2019 19:39,10/10/2019 18:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2015-4075,16/10/2019 19:33,20/09/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1002204,16/10/2019 19:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9457,16/10/2019 19:26,10/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-21028,16/10/2019 19:22,11/10/2019 20:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2015-9470,16/10/2019 19:20,10/10/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1372,16/10/2019 19:12,10/10/2019 14:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17629,16/10/2019 19:11,16/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17630,16/10/2019 19:09,16/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15719,16/10/2019 19:00,9/10/2019 12:15,5.2,269, Improper Privilege Management,nan
CVE-2019-17195,16/10/2019 18:39,15/10/2019 14:15,6.8,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-12944,16/10/2019 18:32,15/10/2019 14:15,4.3,269, Improper Privilege Management,nan
CVE-2019-17176,16/10/2019 18:27,11/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17503,16/10/2019 18:23,11/10/2019 17:15,5.0,200, Information Exposure,nan
CVE-2010-5335,16/10/2019 18:19,11/10/2019 11:15,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17497,16/10/2019 18:15,11/10/2019 0:15,4.3,522, Insufficiently Protected Credentials,nan
CVE-2019-11509,16/10/2019 18:15,3/06/2019 20:29,6.5,284, Improper Access Control,nan
CVE-2019-10097,16/10/2019 18:15,26/09/2019 16:15,6.0,476, NULL Pointer Dereference,nan
CVE-2019-10082,16/10/2019 18:15,26/09/2019 16:15,6.4,416, Use After Free,nan
CVE-2019-0227,16/10/2019 18:15,1/05/2019 21:29,5.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-7185,16/10/2019 18:15,6/03/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-20685,16/10/2019 18:15,10/01/2019 21:29,2.6,706, Use of Incorrectly-Resolved Name or Reference,nan
CVE-2018-18066,16/10/2019 18:15,8/10/2018 18:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18065,16/10/2019 18:15,8/10/2018 18:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-12384,16/10/2019 18:15,29/04/2019 15:29,4.3,254, 7PK – Security Features,nan
CVE-2017-12626,16/10/2019 18:15,29/01/2018 17:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-17495,16/10/2019 18:11,10/10/2019 22:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9534,16/10/2019 18:07,10/10/2019 20:15,7.2,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-2183,16/10/2019 17:47,11/10/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-9533,16/10/2019 17:29,10/10/2019 20:15,10.0,522, Insufficiently Protected Credentials,nan
CVE-2019-2187,16/10/2019 17:27,11/10/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-17420,16/10/2019 17:24,10/10/2019 1:06,5.0,20, Improper Input Validation,nan
CVE-2019-2184,16/10/2019 17:22,11/10/2019 19:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-9535,16/10/2019 17:21,9/10/2019 20:15,10.0,20, Improper Input Validation,nan
CVE-2019-2173,16/10/2019 17:18,11/10/2019 19:15,4.6,276, Incorrect Default Permissions,nan
CVE-2019-2185,16/10/2019 17:10,11/10/2019 19:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-15715,16/10/2019 17:07,9/10/2019 20:15,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-2186,16/10/2019 16:57,11/10/2019 19:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-14225,16/10/2019 16:49,14/10/2019 17:15,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-17389,16/10/2019 16:48,9/10/2019 17:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-14227,16/10/2019 16:40,14/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15017,16/10/2019 16:10,9/10/2019 21:15,7.2,798, Use of Hard-coded Credentials,nan
CVE-2019-15015,16/10/2019 15:59,9/10/2019 21:15,7.2,798, Use of Hard-coded Credentials,nan
CVE-2019-17535,16/10/2019 15:33,13/10/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6333,16/10/2019 15:15,11/10/2019 17:15,7.2,20, Improper Input Validation,nan
CVE-2019-16866,16/10/2019 15:15,3/10/2019 19:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9492,16/10/2019 15:15,11/10/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-17382,16/10/2019 15:00,9/10/2019 14:15,6.4,287, Improper Authentication,nan
CVE-2019-17369,16/10/2019 13:43,9/10/2019 11:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9474,16/10/2019 13:35,10/10/2019 17:15,6.5,276, Incorrect Default Permissions,nan
CVE-2019-17426,16/10/2019 13:34,10/10/2019 2:05,6.4,20, Improper Input Validation,nan
CVE-2015-9475,16/10/2019 13:32,10/10/2019 17:15,6.5,276, Incorrect Default Permissions,nan
CVE-2019-17320,16/10/2019 13:28,10/10/2019 15:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-17505,16/10/2019 13:19,11/10/2019 20:15,5.0,287, Improper Authentication,nan
CVE-2019-17508,16/10/2019 13:14,11/10/2019 20:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-17059,16/10/2019 12:58,11/10/2019 17:15,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-6087,16/10/2019 12:57,7/06/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2016-0304,16/10/2019 12:40,29/06/2016 1:59,6.8,284, Improper Access Control,nan
CVE-2016-0301,16/10/2019 12:40,26/06/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0279,16/10/2019 12:40,26/06/2016 14:59,6.8,284, Improper Access Control,nan
CVE-2016-0278,16/10/2019 12:40,26/06/2016 14:59,6.8,284, Improper Access Control,nan
CVE-2016-0277,16/10/2019 12:40,26/06/2016 14:59,6.8,284, Improper Access Control,nan
CVE-2015-5040,16/10/2019 12:40,29/10/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4994,16/10/2019 12:40,29/10/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1981,16/10/2019 12:40,28/06/2015 14:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1903,16/10/2019 12:40,20/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1902,16/10/2019 12:40,20/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0179,16/10/2019 12:40,6/04/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0135,16/10/2019 12:40,21/04/2015 16:59,10.0,189, Numeric Errors,nan
CVE-2015-0134,16/10/2019 12:40,6/04/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17504,16/10/2019 12:30,11/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16709,16/10/2019 12:15,23/09/2019 12:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-11396,16/10/2019 12:15,23/05/2018 13:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9530,16/10/2019 12:13,10/10/2019 20:15,4.9,200, Information Exposure,nan
CVE-2016-4977,16/10/2019 11:15,25/05/2017 17:29,6.5,19, Data Processing Errors,nan
CVE-2019-17223,15/10/2019 22:06,15/10/2019 12:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-10923,15/10/2019 21:54,10/10/2019 14:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-10936,15/10/2019 21:45,10/10/2019 14:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-17124,15/10/2019 21:33,9/10/2019 16:15,10.0,276, Incorrect Default Permissions,nan
CVE-2019-13921,15/10/2019 21:30,10/10/2019 14:15,5.0,287, Improper Authentication,nan
CVE-2019-13929,15/10/2019 21:26,10/10/2019 14:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2016-10906,15/10/2019 21:15,19/08/2019 2:15,4.4,416, Use After Free,nan
CVE-2019-1230,15/10/2019 21:00,10/10/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-17600,15/10/2019 20:56,15/10/2019 14:15,10.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17510,15/10/2019 20:49,11/10/2019 20:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1338,15/10/2019 20:49,10/10/2019 14:15,4.3,326, Inadequate Encryption Strength,nan
CVE-2019-17507,15/10/2019 20:41,11/10/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-17180,15/10/2019 20:36,4/10/2019 20:15,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1334,15/10/2019 20:33,10/10/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-17509,15/10/2019 20:32,11/10/2019 20:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-10759,15/10/2019 20:31,15/10/2019 15:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10760,15/10/2019 20:30,15/10/2019 15:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-17397,15/10/2019 20:29,15/10/2019 15:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-9463,15/10/2019 20:27,10/10/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1337,15/10/2019 20:25,10/10/2019 14:15,2.1,200, Information Exposure,nan
CVE-2015-9465,15/10/2019 20:15,10/10/2019 17:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1356,15/10/2019 20:11,10/10/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-1340,15/10/2019 19:57,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2015-9464,15/10/2019 19:48,10/10/2019 16:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1341,15/10/2019 19:41,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2015-9473,15/10/2019 19:32,10/10/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9471,15/10/2019 19:31,10/10/2019 17:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2010-5339,15/10/2019 19:21,11/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5338,15/10/2019 19:20,11/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5337,15/10/2019 19:20,11/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5340,15/10/2019 19:19,11/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3738,15/10/2019 19:15,18/09/2019 23:15,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2015-9476,15/10/2019 19:15,10/10/2019 17:15,6.5,276, Incorrect Default Permissions,nan
CVE-2010-5336,15/10/2019 19:13,11/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9477,15/10/2019 19:06,10/10/2019 17:15,6.5,276, Incorrect Default Permissions,nan
CVE-2018-16202,15/10/2019 18:53,9/01/2019 23:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9472,15/10/2019 18:40,10/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1344,15/10/2019 18:32,10/10/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-17496,15/10/2019 18:17,11/10/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15051,15/10/2019 18:17,10/10/2019 20:15,9.0,269, Improper Privilege Management,nan
CVE-2015-9480,15/10/2019 18:13,10/10/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9062,15/10/2019 18:03,19/07/2018 19:29,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-3652,15/10/2019 18:02,9/10/2019 16:15,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11528,15/10/2019 17:55,10/10/2019 20:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5507,15/10/2019 17:45,9/10/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-11527,15/10/2019 17:41,10/10/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-17383,15/10/2019 17:34,9/10/2019 16:15,7.5,276, Incorrect Default Permissions,nan
CVE-2019-1314,15/10/2019 17:31,10/10/2019 14:15,4.6,287, Improper Authentication,nan
CVE-2019-17494,15/10/2019 17:25,10/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17352,15/10/2019 17:20,8/10/2019 13:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11077,15/10/2019 17:04,11/04/2019 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11526,15/10/2019 16:58,10/10/2019 19:15,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13529,15/10/2019 16:54,9/10/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1364,15/10/2019 16:52,10/10/2019 14:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1362,15/10/2019 16:52,10/10/2019 14:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1166,15/10/2019 16:50,10/10/2019 14:15,4.3,287, Improper Authentication,nan
CVE-2019-17354,15/10/2019 16:43,9/10/2019 12:15,7.5,287, Improper Authentication,nan
CVE-2015-9478,15/10/2019 16:36,10/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17353,15/10/2019 16:28,9/10/2019 12:15,6.4,287, Improper Authentication,nan
CVE-2019-17362,15/10/2019 16:27,9/10/2019 1:15,6.4,125, Out-of-bounds Read,nan
CVE-2019-3689,15/10/2019 16:15,19/09/2019 14:15,10.0,269, Improper Privilege Management,nan
CVE-2019-1321,15/10/2019 16:13,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0381,15/10/2019 16:12,8/10/2019 20:15,2.1,552, Files or Directories Accessible to External Parties,nan
CVE-2019-17432,15/10/2019 16:01,10/10/2019 12:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5699,15/10/2019 15:58,9/10/2019 22:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5700,15/10/2019 15:57,9/10/2019 22:15,7.2,20, Improper Input Validation,nan
CVE-2019-0380,15/10/2019 15:57,8/10/2019 20:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-1339,15/10/2019 15:56,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0379,15/10/2019 15:40,8/10/2019 20:15,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-17108,15/10/2019 15:36,8/10/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17105,15/10/2019 15:25,8/10/2019 15:15,5.0,330, Use of Insufficiently Random Values,nan
CVE-2019-1347,15/10/2019 15:21,10/10/2019 14:15,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1346,15/10/2019 15:21,10/10/2019 14:15,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17107,15/10/2019 15:18,8/10/2019 13:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-1343,15/10/2019 15:16,10/10/2019 14:15,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-21023,15/10/2019 15:13,8/10/2019 13:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-17041,15/10/2019 14:57,7/10/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-17042,15/10/2019 14:51,7/10/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-3653,15/10/2019 14:50,9/10/2019 16:15,2.1,306, Missing Authentication for Critical Function,nan
CVE-2019-15894,15/10/2019 14:48,7/10/2019 16:15,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13120,15/10/2019 14:38,7/10/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-10757,15/10/2019 14:30,8/10/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-21024,15/10/2019 14:30,8/10/2019 15:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9460,15/10/2019 14:30,10/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17386,15/10/2019 14:22,10/10/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1342,15/10/2019 14:15,10/10/2019 14:15,7.2,20, Improper Input Validation,nan
CVE-2019-17488,15/10/2019 14:02,10/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1358,15/10/2019 13:56,10/10/2019 14:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9462,15/10/2019 13:54,10/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1378,15/10/2019 13:51,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1368,15/10/2019 13:35,10/10/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2019-1359,15/10/2019 13:31,10/10/2019 14:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1371,15/10/2019 13:25,10/10/2019 14:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1375,15/10/2019 12:49,10/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16551,15/10/2019 12:12,5/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6809,15/10/2019 0:15,6/04/2017 21:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-10894,15/10/2019 0:15,16/08/2019 3:15,2.1,254, 7PK – Security Features,nan
CVE-2019-17092,14/10/2019 17:15,9/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17263,14/10/2019 13:15,6/10/2019 22:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-16228,12/10/2019 20:15,11/09/2019 15:15,5.0,369, Divide By Zero,nan
CVE-2019-16227,12/10/2019 20:15,11/09/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16226,12/10/2019 20:15,11/09/2019 15:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16225,12/10/2019 20:15,11/09/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16224,12/10/2019 20:15,11/09/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10874,12/10/2019 5:15,12/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10873,12/10/2019 5:15,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16943,12/10/2019 3:15,1/10/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2018-9132,12/10/2019 3:15,30/03/2018 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-9009,12/10/2019 3:15,25/03/2018 3:29,6.8,416, Use After Free,nan
CVE-2018-7876,12/10/2019 3:15,8/03/2018 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-7873,12/10/2019 3:15,8/03/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7866,12/10/2019 3:15,8/03/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2010-5331,12/10/2019 1:15,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15166,11/10/2019 23:15,3/10/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2018-16452,11/10/2019 23:15,3/10/2019 16:15,5.0,674, Uncontrolled Recursion,nan
CVE-2018-16451,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-16300,11/10/2019 23:15,3/10/2019 16:15,5.0,674, Uncontrolled Recursion,nan
CVE-2018-16230,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-16229,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-16228,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-16227,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14882,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14881,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14880,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14879,11/10/2019 23:15,3/10/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-14470,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14469,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14468,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14467,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14466,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14465,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14464,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14463,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14462,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-14461,11/10/2019 23:15,3/10/2019 16:15,7.5,125, Out-of-bounds Read,nan
CVE-2018-10105,11/10/2019 23:15,3/10/2019 16:15,7.5,20, Improper Input Validation,nan
CVE-2018-10103,11/10/2019 23:15,3/10/2019 16:15,7.5,20, Improper Input Validation,nan
CVE-2019-1311,11/10/2019 20:42,10/10/2019 14:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1320,11/10/2019 20:35,10/10/2019 14:15,4.6,287, Improper Authentication,nan
CVE-2019-17429,11/10/2019 20:32,10/10/2019 12:10,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1070,11/10/2019 20:30,10/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0608,11/10/2019 20:27,10/10/2019 14:15,4.3,290, Authentication Bypass by Spoofing,nan
CVE-2019-1357,11/10/2019 20:22,10/10/2019 14:15,4.3,290, Authentication Bypass by Spoofing,nan
CVE-2019-1315,11/10/2019 20:07,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1316,11/10/2019 20:04,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1318,11/10/2019 19:59,10/10/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-1060,11/10/2019 19:57,10/10/2019 14:15,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-17431,11/10/2019 19:51,10/10/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17128,11/10/2019 19:48,9/10/2019 16:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1319,11/10/2019 19:40,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1331,11/10/2019 19:29,10/10/2019 14:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5418,11/10/2019 19:15,27/03/2019 14:29,5.0,200, Information Exposure,nan
CVE-2019-1238,11/10/2019 19:02,10/10/2019 14:15,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1239,11/10/2019 18:51,10/10/2019 14:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12707,11/10/2019 18:46,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1333,11/10/2019 18:37,10/10/2019 14:15,9.3,20, Improper Input Validation,nan
CVE-2019-17452,11/10/2019 18:35,10/10/2019 17:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-17132,11/10/2019 18:18,4/10/2019 12:15,6.8,20, Improper Input Validation,nan
CVE-2019-15018,11/10/2019 18:14,9/10/2019 21:15,5.0,287, Improper Authentication,nan
CVE-2019-17417,11/10/2019 18:11,10/10/2019 1:06,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1322,11/10/2019 18:09,10/10/2019 14:15,4.6,287, Improper Authentication,nan
CVE-2019-15019,11/10/2019 18:07,9/10/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-1323,11/10/2019 18:04,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-17187,11/10/2019 17:57,8/10/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17131,11/10/2019 17:55,4/10/2019 12:15,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2019-15020,11/10/2019 17:55,9/10/2019 21:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-17191,11/10/2019 17:38,5/10/2019 2:15,5.0,20, Improper Input Validation,nan
CVE-2019-1326,11/10/2019 17:37,10/10/2019 14:15,7.8,20, Improper Input Validation,nan
CVE-2019-15021,11/10/2019 17:35,9/10/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-17178,11/10/2019 17:30,4/10/2019 17:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-15022,11/10/2019 17:29,9/10/2019 21:15,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2019-3745,11/10/2019 17:22,7/10/2019 19:15,6.9,426, Untrusted Search Path,nan
CVE-2019-15023,11/10/2019 17:20,9/10/2019 21:15,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-1584,11/10/2019 17:18,9/10/2019 21:15,6.8,20, Improper Input Validation,nan
CVE-2019-16913,11/10/2019 17:10,7/10/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1325,11/10/2019 16:55,10/10/2019 14:15,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1363,11/10/2019 16:44,10/10/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-1328,11/10/2019 16:37,10/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1330,11/10/2019 16:31,10/10/2019 14:15,4.0,269, Improper Privilege Management,nan
CVE-2019-1329,11/10/2019 16:22,10/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1361,11/10/2019 16:21,10/10/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-17454,11/10/2019 16:08,10/10/2019 17:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-17453,11/10/2019 16:02,10/10/2019 17:15,4.3,476, NULL Pointer Dereference,nan
CVE-2018-21025,11/10/2019 15:57,8/10/2019 13:15,10.0,269, Improper Privilege Management,nan
CVE-2019-17104,11/10/2019 15:49,8/10/2019 13:15,5.0,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2018-21020,11/10/2019 15:40,8/10/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-1336,11/10/2019 15:37,10/10/2019 14:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1345,11/10/2019 15:34,10/10/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-13051,11/10/2019 15:27,9/10/2019 12:15,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1327,11/10/2019 15:23,10/10/2019 14:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9467,11/10/2019 15:14,10/10/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1369,11/10/2019 15:07,10/10/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-17401,11/10/2019 15:06,9/10/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2015-9461,11/10/2019 15:06,10/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9459,11/10/2019 15:04,10/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9468,11/10/2019 15:02,10/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9458,11/10/2019 14:58,10/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14003,11/10/2019 14:54,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-17491,11/10/2019 14:52,10/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17489,11/10/2019 14:51,10/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17493,11/10/2019 14:50,10/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15014,11/10/2019 14:45,9/10/2019 21:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-6776,11/10/2019 14:44,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-13317,11/10/2019 14:40,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-17239,11/10/2019 14:38,7/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3688,11/10/2019 14:34,7/10/2019 14:15,6.6,276, Incorrect Default Permissions,nan
CVE-2019-15016,11/10/2019 14:32,9/10/2019 21:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17370,11/10/2019 14:25,9/10/2019 12:15,6.5,20, Improper Input Validation,nan
CVE-2019-5046,11/10/2019 14:19,9/10/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-5047,11/10/2019 14:08,9/10/2019 21:15,6.8,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2019-4558,11/10/2019 14:01,9/10/2019 16:15,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5050,11/10/2019 13:43,9/10/2019 21:15,6.8,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2019-17375,11/10/2019 13:40,9/10/2019 16:15,6.5,613, Insufficient Session Expiration,nan
CVE-2019-17399,11/10/2019 13:29,9/10/2019 18:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0370,11/10/2019 13:27,8/10/2019 20:15,6.4,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-17112,11/10/2019 13:24,9/10/2019 20:15,4.0,552, Files or Directories Accessible to External Parties,nan
CVE-2019-5053,11/10/2019 12:59,9/10/2019 21:15,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-12700,11/10/2019 12:44,2/10/2019 19:15,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-1317,11/10/2019 12:40,10/10/2019 14:15,5.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-18595,11/10/2019 0:15,4/09/2019 21:15,7.2,415, Double Free,nan
CVE-2019-17113,10/10/2019 21:15,4/10/2019 0:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16920,10/10/2019 21:15,27/09/2019 12:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0193,10/10/2019 21:15,1/08/2019 14:15,9.0,287, Improper Authentication,nan
CVE-2015-9453,10/10/2019 20:52,7/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9454,10/10/2019 20:48,7/10/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1313,10/10/2019 20:43,10/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2015-9455,10/10/2019 20:38,7/10/2019 15:15,7.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1376,10/10/2019 20:36,10/10/2019 14:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-17130,10/10/2019 20:29,4/10/2019 12:15,6.4,552, Files or Directories Accessible to External Parties,nan
CVE-2015-9456,10/10/2019 20:29,7/10/2019 15:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-17071,10/10/2019 20:25,10/10/2019 12:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17430,10/10/2019 20:21,10/10/2019 12:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19725,10/10/2019 20:15,5/03/2019 20:15,10.0,269, Improper Privilege Management,nan
CVE-2019-16891,10/10/2019 20:13,4/10/2019 14:15,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12811,10/10/2019 20:10,7/10/2019 15:15,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-17192,10/10/2019 19:57,5/10/2019 2:15,7.5,20, Improper Input Validation,nan
CVE-2019-3834,10/10/2019 19:53,3/10/2019 14:15,6.8,470, Use of Externally-Controlled Input to Select Classes or Code (‘Unsafe Reflection’),nan
CVE-2019-15859,10/10/2019 19:50,9/10/2019 16:15,10.0,522, Insufficiently Protected Credentials,nan
CVE-2019-0369,10/10/2019 19:48,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17433,10/10/2019 19:45,10/10/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12701,10/10/2019 19:45,2/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-11655,10/10/2019 19:45,4/10/2019 20:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-4265,10/10/2019 19:38,10/10/2019 14:15,2.1,922, Insecure Storage of Sensitive Information,nan
CVE-2019-11651,10/10/2019 19:37,2/10/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17216,10/10/2019 19:36,6/10/2019 16:15,7.5,287, Improper Authentication,nan
CVE-2019-17217,10/10/2019 19:32,6/10/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-17218,10/10/2019 19:29,6/10/2019 16:15,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2019-17219,10/10/2019 19:26,6/10/2019 16:15,5.8,287, Improper Authentication,nan
CVE-2019-17434,10/10/2019 19:22,10/10/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17188,10/10/2019 19:15,4/10/2019 22:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16229,10/10/2019 19:15,11/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-17072,10/10/2019 19:14,10/10/2019 12:10,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6015,10/10/2019 19:11,4/10/2019 19:15,7.8,20, Improper Input Validation,nan
CVE-2019-17427,10/10/2019 19:08,10/10/2019 2:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17199,10/10/2019 19:05,5/10/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17215,10/10/2019 18:48,6/10/2019 16:15,5.0,287, Improper Authentication,nan
CVE-2019-15259,10/10/2019 18:41,2/10/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-15256,10/10/2019 18:13,2/10/2019 19:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-12706,10/10/2019 18:07,2/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-0375,10/10/2019 18:04,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0374,10/10/2019 18:04,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0376,10/10/2019 18:02,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0377,10/10/2019 17:57,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0378,10/10/2019 17:56,8/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12687,10/10/2019 17:53,2/10/2019 19:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12688,10/10/2019 17:50,2/10/2019 19:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12689,10/10/2019 17:23,2/10/2019 19:15,9.0,20, Improper Input Validation,nan
CVE-2019-12690,10/10/2019 17:17,2/10/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-15221,10/10/2019 17:15,16/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11929,10/10/2019 17:14,2/10/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12691,10/10/2019 17:13,2/10/2019 19:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12693,10/10/2019 17:06,2/10/2019 19:15,4.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-12694,10/10/2019 16:57,2/10/2019 19:15,7.2,20, Improper Input Validation,nan
CVE-2019-12699,10/10/2019 16:51,2/10/2019 19:15,7.2,20, Improper Input Validation,nan
CVE-2019-1308,10/10/2019 16:36,10/10/2019 14:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1307,10/10/2019 16:35,10/10/2019 14:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1366,10/10/2019 16:34,10/10/2019 14:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16328,10/10/2019 16:20,3/10/2019 20:15,5.0,862, Missing Authorization,nan
CVE-2019-1335,10/10/2019 16:13,10/10/2019 14:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17110,10/10/2019 15:55,3/10/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-12698,10/10/2019 15:46,2/10/2019 19:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-17418,10/10/2019 15:44,10/10/2019 1:06,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12697,10/10/2019 15:41,2/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-12696,10/10/2019 15:38,2/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-17419,10/10/2019 15:37,10/10/2019 1:06,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12695,10/10/2019 15:33,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17240,10/10/2019 15:18,6/10/2019 19:15,4.3,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2019-17256,10/10/2019 15:06,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17257,10/10/2019 15:04,8/10/2019 12:15,4.3,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-17245,10/10/2019 15:03,8/10/2019 12:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-17242,10/10/2019 15:03,8/10/2019 12:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-17241,10/10/2019 15:03,8/10/2019 12:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-0367,10/10/2019 15:01,8/10/2019 20:15,4.0,862, Missing Authorization,nan
CVE-2019-17259,10/10/2019 14:58,8/10/2019 12:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-17260,10/10/2019 14:56,8/10/2019 12:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17258,10/10/2019 14:55,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17261,10/10/2019 14:48,8/10/2019 12:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-17106,10/10/2019 14:48,8/10/2019 13:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-17262,10/10/2019 14:46,8/10/2019 12:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16865,10/10/2019 14:43,4/10/2019 22:15,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2019-17243,10/10/2019 14:29,8/10/2019 12:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-13628,10/10/2019 14:26,3/10/2019 14:15,1.2,203, Information Exposure Through Discrepancy,nan
CVE-2019-6568,10/10/2019 14:15,17/04/2019 14:29,5.0,20, Improper Input Validation,nan
CVE-2019-10935,10/10/2019 14:15,11/07/2019 22:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10918,10/10/2019 14:15,14/05/2019 20:29,9.0,20, Improper Input Validation,nan
CVE-2019-10917,10/10/2019 14:15,14/05/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2019-10916,10/10/2019 14:15,14/05/2019 20:29,9.0,20, Improper Input Validation,nan
CVE-2018-4843,10/10/2019 14:15,20/03/2018 14:29,6.1,20, Improper Input Validation,nan
CVE-2019-17247,10/10/2019 14:05,8/10/2019 12:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-17244,10/10/2019 14:00,8/10/2019 12:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-17206,10/10/2019 13:38,5/10/2019 23:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-17292,10/10/2019 13:30,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17293,10/10/2019 13:29,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12812,10/10/2019 13:22,7/10/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-16116,10/10/2019 13:21,2/10/2019 16:15,3.5,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-3868,10/10/2019 13:15,24/04/2019 16:29,5.5,200, Information Exposure,nan
CVE-2019-17248,10/10/2019 12:58,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17255,10/10/2019 12:39,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-11212,10/10/2019 12:38,9/10/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13743,10/10/2019 12:38,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-17251,10/10/2019 12:37,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17250,10/10/2019 12:37,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17249,10/10/2019 12:36,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17246,10/10/2019 12:35,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17252,10/10/2019 12:31,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17253,10/10/2019 12:30,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-17254,10/10/2019 12:29,8/10/2019 12:15,6.8,787, Out-of-bounds Write,nan
CVE-2016-7051,10/10/2019 12:19,14/04/2017 18:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-9212,10/10/2019 12:12,27/02/2019 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-9193,10/10/2019 12:12,1/04/2019 21:30,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9039,10/10/2019 12:12,26/06/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7671,10/10/2019 12:12,5/06/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7669,10/10/2019 12:12,1/07/2019 19:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7594,10/10/2019 12:12,20/08/2019 19:15,6.4,798, Use of Hard-coded Credentials,nan
CVE-2019-7593,10/10/2019 12:12,20/08/2019 19:15,6.4,798, Use of Hard-coded Credentials,nan
CVE-2019-7590,10/10/2019 12:12,19/07/2019 21:15,4.6,428, Unquoted Search Path or Element,nan
CVE-2019-7588,10/10/2019 12:12,18/06/2019 14:15,6.9,285, Improper Authorization,nan
CVE-2019-7441,10/10/2019 12:12,21/03/2019 16:01,4.0,20, Improper Input Validation,nan
CVE-2019-7212,10/10/2019 12:12,24/04/2019 15:29,6.4,798, Use of Hard-coded Credentials,nan
CVE-2019-6833,10/10/2019 12:12,17/09/2019 20:15,4.3,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-6538,10/10/2019 12:12,25/03/2019 22:29,3.3,284, Improper Access Control,nan
CVE-2019-5531,10/10/2019 12:11,18/09/2019 22:15,5.8,613, Insufficient Session Expiration,nan
CVE-2019-5513,10/10/2019 12:11,9/04/2019 20:30,5.0,200, Information Exposure,nan
CVE-2019-3797,10/10/2019 12:11,6/05/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-3787,10/10/2019 12:11,19/06/2019 23:15,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-3751,10/10/2019 12:11,3/09/2019 17:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-3741,10/10/2019 12:11,18/07/2019 16:15,2.1,693, Protection Mechanism Failure,nan
CVE-2019-3730,10/10/2019 12:11,30/09/2019 22:15,5.0,209, Information Exposure Through an Error Message,nan
CVE-2019-1578,10/10/2019 12:10,1/07/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1576,10/10/2019 12:10,16/07/2019 14:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-14979,10/10/2019 12:10,29/08/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-1226,10/10/2019 12:10,14/08/2019 21:15,10.0,284, Improper Access Control,nan
CVE-2019-1222,10/10/2019 12:10,14/08/2019 21:15,10.0,284, Improper Access Control,nan
CVE-2019-1182,10/10/2019 12:10,14/08/2019 21:15,10.0,284, Improper Access Control,nan
CVE-2019-1181,10/10/2019 12:10,14/08/2019 21:15,10.0,284, Improper Access Control,nan
CVE-2019-1000,10/10/2019 12:10,16/05/2019 19:29,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-14277,10/10/2019 12:09,26/07/2019 4:15,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-13466,10/10/2019 12:09,30/09/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-12455,10/10/2019 12:09,30/05/2019 4:29,4.9,476, NULL Pointer Dereference,nan
CVE-2019-12401,10/10/2019 12:09,10/09/2019 15:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-12380,10/10/2019 12:09,28/05/2019 3:29,2.1,388, 7PK – Errors,nan
CVE-2019-12256,10/10/2019 12:09,9/08/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12102,10/10/2019 12:09,22/05/2019 15:29,6.4,20, Improper Input Validation,nan
CVE-2019-11653,10/10/2019 12:09,7/08/2019 17:15,5.5,284, Improper Access Control,nan
CVE-2019-11649,10/10/2019 12:09,19/06/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11246,10/10/2019 12:09,29/08/2019 1:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-11146,10/10/2019 12:09,19/08/2019 17:15,4.6,275, Permission Issues,nan
CVE-2019-11145,10/10/2019 12:09,19/08/2019 17:15,4.6,275, Permission Issues,nan
CVE-2019-11064,10/10/2019 12:09,29/08/2019 1:15,5.0,255, Credentials Management,nan
CVE-2019-10970,10/10/2019 12:09,11/07/2019 20:15,10.0,284, Improper Access Control,nan
CVE-2019-10964,10/10/2019 12:09,28/06/2019 21:15,5.8,284, Improper Access Control,nan
CVE-2019-10955,10/10/2019 12:09,25/04/2019 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-0356,10/10/2019 12:08,10/09/2019 17:15,4.0,200, Information Exposure,nan
CVE-2019-0349,10/10/2019 12:08,14/08/2019 15:15,6.5,285, Improper Authorization,nan
CVE-2019-0316,10/10/2019 12:08,14/06/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0053,10/10/2019 12:08,11/07/2019 20:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7827,10/10/2019 12:06,22/05/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5926,10/10/2019 12:05,27/03/2019 16:29,6.4,295, Improper Certificate Validation,nan
CVE-2018-5406,10/10/2019 12:05,3/06/2019 19:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-4833,10/10/2019 12:05,14/06/2018 16:29,5.8,20, Improper Input Validation,nan
CVE-2018-4049,10/10/2019 12:04,2/04/2019 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19615,10/10/2019 12:02,26/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12147,10/10/2019 11:59,13/06/2019 16:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11691,10/10/2019 11:59,14/05/2019 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-17518,10/10/2019 11:55,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-5819,10/10/2019 11:50,21/03/2019 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2807,10/10/2019 11:39,26/03/2019 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2013-2806,10/10/2019 11:39,26/03/2019 17:29,7.8,190, Integer Overflow or Wraparound,nan
CVE-2013-2805,10/10/2019 11:39,26/03/2019 18:29,7.8,125, Out-of-bounds Read,nan
CVE-2010-5305,10/10/2019 11:33,26/03/2019 18:29,7.5,284, Improper Access Control,nan
CVE-2009-5093,10/10/2019 11:31,12/09/2011 12:40,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1784,10/10/2019 11:30,22/05/2009 20:30,10.0,20, Improper Input Validation,nan
CVE-2008-6586,10/10/2019 11:29,3/04/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2314,10/10/2019 11:27,1/07/2008 18:41,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-1508,10/10/2019 11:27,25/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4595,10/10/2019 11:22,7/09/2006 0:04,5.0,200, Information Exposure,nan
CVE-2006-2108,10/10/2019 11:21,29/04/2006 10:02,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0706,10/10/2019 11:21,15/02/2006 11:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-2036,10/10/2019 11:19,16/06/2005 4:00,7.5,200, Information Exposure,nan
CVE-2005-2035,10/10/2019 11:19,16/06/2005 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-0498,10/10/2019 11:17,7/08/2003 4:00,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-0497,10/10/2019 11:17,7/08/2003 4:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12676,10/10/2019 2:07,2/10/2019 19:15,3.3,20, Improper Input Validation,nan
CVE-2019-9922,9/10/2019 23:53,29/03/2019 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9921,9/10/2019 23:53,29/03/2019 15:29,4.0,284, Improper Access Control,nan
CVE-2019-9920,9/10/2019 23:53,29/03/2019 15:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-9919,9/10/2019 23:53,29/03/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9918,9/10/2019 23:53,29/03/2019 15:29,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9901,9/10/2019 23:53,25/04/2019 16:29,7.5,284, Improper Access Control,nan
CVE-2019-9900,9/10/2019 23:53,25/04/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2019-9886,9/10/2019 23:53,11/07/2019 19:15,5.0,284, Improper Access Control,nan
CVE-2019-9885,9/10/2019 23:53,25/07/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9884,9/10/2019 23:53,25/07/2019 17:15,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-9883,9/10/2019 23:53,3/06/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9882,9/10/2019 23:53,3/06/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9753,9/10/2019 23:52,3/06/2019 19:29,4.0,200, Information Exposure,nan
CVE-2019-9141,9/10/2019 23:52,2/08/2019 16:15,7.5,20, Improper Input Validation,nan
CVE-2019-9140,9/10/2019 23:52,1/08/2019 17:15,5.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9139,9/10/2019 23:52,25/04/2019 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9138,9/10/2019 23:52,25/04/2019 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9137,9/10/2019 23:52,25/04/2019 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9136,9/10/2019 23:52,25/04/2019 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9135,9/10/2019 23:52,25/04/2019 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9134,9/10/2019 23:52,9/04/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8995,9/10/2019 23:52,24/04/2019 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-8994,9/10/2019 23:52,24/04/2019 21:29,4.9,284, Improper Access Control,nan
CVE-2019-8993,9/10/2019 23:52,24/04/2019 21:29,5.0,284, Improper Access Control,nan
CVE-2019-8992,9/10/2019 23:52,24/04/2019 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8991,9/10/2019 23:52,24/04/2019 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8990,9/10/2019 23:52,9/04/2019 18:29,6.8,287, Improper Authentication,nan
CVE-2019-8989,9/10/2019 23:52,26/03/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2019-8988,9/10/2019 23:52,26/03/2019 18:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-8987,9/10/2019 23:52,26/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8986,9/10/2019 23:52,7/03/2019 22:29,4.0,200, Information Exposure,nan
CVE-2019-8462,9/10/2019 23:52,2/10/2019 17:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-8461,9/10/2019 23:52,29/08/2019 21:15,6.8,426, Untrusted Search Path,nan
CVE-2019-8459,9/10/2019 23:52,20/06/2019 17:15,7.5,428, Unquoted Search Path or Element,nan
CVE-2019-8458,9/10/2019 23:52,20/06/2019 17:15,3.5,20, Improper Input Validation,nan
CVE-2019-8456,9/10/2019 23:52,9/04/2019 21:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-8455,9/10/2019 23:52,17/04/2019 15:29,3.6,275, Permission Issues,nan
CVE-2019-8454,9/10/2019 23:52,29/04/2019 16:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-8350,9/10/2019 23:52,13/05/2019 14:29,2.1,255, Credentials Management,nan
CVE-2019-8283,9/10/2019 23:52,7/06/2019 15:29,4.3,200, Information Exposure,nan
CVE-2019-8282,9/10/2019 23:52,7/06/2019 15:29,2.6,284, Improper Access Control,nan
CVE-2019-8280,9/10/2019 23:52,8/03/2019 23:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-8276,9/10/2019 23:52,8/03/2019 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8275,9/10/2019 23:52,8/03/2019 23:29,7.5,284, Improper Access Control,nan
CVE-2019-8274,9/10/2019 23:52,8/03/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8273,9/10/2019 23:52,8/03/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8272,9/10/2019 23:52,8/03/2019 23:29,7.5,682, Incorrect Calculation,nan
CVE-2019-8271,9/10/2019 23:52,8/03/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8270,9/10/2019 23:52,8/03/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-8269,9/10/2019 23:52,8/03/2019 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8268,9/10/2019 23:52,8/03/2019 23:29,7.5,682, Incorrect Calculation,nan
CVE-2019-8267,9/10/2019 23:52,8/03/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-8266,9/10/2019 23:52,8/03/2019 23:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-8265,9/10/2019 23:52,8/03/2019 23:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-8264,9/10/2019 23:52,8/03/2019 23:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-8263,9/10/2019 23:52,5/03/2019 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8262,9/10/2019 23:52,5/03/2019 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8261,9/10/2019 23:52,5/03/2019 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-8260,9/10/2019 23:52,5/03/2019 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-8259,9/10/2019 23:52,5/03/2019 15:29,5.0,399, Resource Management Errors,nan
CVE-2019-8258,9/10/2019 23:52,5/03/2019 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7618,9/10/2019 23:52,1/10/2019 18:15,3.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-7617,9/10/2019 23:52,22/08/2019 17:15,6.4,20, Improper Input Validation,nan
CVE-2019-7616,9/10/2019 23:52,30/07/2019 22:15,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7615,9/10/2019 23:52,30/07/2019 22:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-7614,9/10/2019 23:52,30/07/2019 22:15,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-7613,9/10/2019 23:52,25/03/2019 19:29,5.0,20, Improper Input Validation,nan
CVE-2019-7612,9/10/2019 23:52,25/03/2019 19:29,5.0,255, Credentials Management,nan
CVE-2019-7611,9/10/2019 23:52,25/03/2019 19:29,6.8,275, Permission Issues,nan
CVE-2019-7477,9/10/2019 23:52,2/04/2019 18:30,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-7476,9/10/2019 23:52,26/04/2019 21:29,6.8,320, Key Management Errors,nan
CVE-2019-7475,9/10/2019 23:52,2/04/2019 18:30,7.5,284, Improper Access Control,nan
CVE-2019-7474,9/10/2019 23:52,2/04/2019 18:30,4.0,284, Improper Access Control,nan
CVE-2019-7394,9/10/2019 23:52,28/05/2019 19:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-7393,9/10/2019 23:52,28/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2019-7307,9/10/2019 23:52,29/08/2019 15:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-7304,9/10/2019 23:52,23/04/2019 16:29,10.0,20, Improper Input Validation,nan
CVE-2019-7303,9/10/2019 23:51,23/04/2019 16:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-7232,9/10/2019 23:51,24/06/2019 17:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7231,9/10/2019 23:51,24/06/2019 20:15,2.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7230,9/10/2019 23:51,24/06/2019 17:15,5.8,287, Improper Authentication,nan
CVE-2019-7229,9/10/2019 23:51,24/06/2019 18:15,5.4,295, Improper Certificate Validation,nan
CVE-2019-7228,9/10/2019 23:51,27/06/2019 15:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7227,9/10/2019 23:51,27/06/2019 16:15,4.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7226,9/10/2019 23:51,27/06/2019 16:15,5.8,287, Improper Authentication,nan
CVE-2019-7225,9/10/2019 23:51,27/06/2019 17:15,5.8,798, Use of Hard-coded Credentials,nan
CVE-2019-7006,9/10/2019 23:51,27/02/2019 0:29,2.1,310, Cryptographic Issues,nan
CVE-2019-7003,9/10/2019 23:51,11/07/2019 19:15,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7001,9/10/2019 23:51,4/04/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7000,9/10/2019 23:51,31/07/2019 22:15,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6958,9/10/2019 23:51,29/05/2019 19:29,6.4,284, Improper Access Control,nan
CVE-2019-6957,9/10/2019 23:51,29/05/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6840,9/10/2019 23:51,17/09/2019 20:15,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2019-6839,9/10/2019 23:51,17/09/2019 20:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-6838,9/10/2019 23:51,17/09/2019 20:15,5.5,863, Incorrect Authorization,nan
CVE-2019-6837,9/10/2019 23:51,17/09/2019 20:15,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6836,9/10/2019 23:51,17/09/2019 20:15,5.0,863, Incorrect Authorization,nan
CVE-2019-6835,9/10/2019 23:51,17/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6832,9/10/2019 23:51,17/09/2019 20:15,6.8,287, Improper Authentication,nan
CVE-2019-6830,9/10/2019 23:51,17/09/2019 20:15,7.1,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-6829,9/10/2019 23:51,17/09/2019 20:15,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-6828,9/10/2019 23:51,17/09/2019 20:15,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-6826,9/10/2019 23:51,17/09/2019 20:15,6.8,426, Untrusted Search Path,nan
CVE-2019-6825,9/10/2019 23:51,15/07/2019 21:15,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-6824,9/10/2019 23:51,15/07/2019 21:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6823,9/10/2019 23:51,15/07/2019 21:15,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-6820,9/10/2019 23:51,22/05/2019 20:29,6.4,306, Missing Authentication for Critical Function,nan
CVE-2019-6811,9/10/2019 23:51,17/09/2019 20:15,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-6809,9/10/2019 23:51,17/09/2019 20:15,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-6775,9/10/2019 23:51,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-6774,9/10/2019 23:51,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-6773,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6772,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6771,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6770,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6769,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6768,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6767,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6766,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6765,9/10/2019 23:51,3/06/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-6764,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6763,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6762,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6761,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6760,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6759,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6758,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6757,9/10/2019 23:51,3/06/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-6756,9/10/2019 23:51,3/06/2019 19:29,4.3,416, Use After Free,nan
CVE-2019-6755,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6754,9/10/2019 23:51,3/06/2019 19:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6753,9/10/2019 23:51,3/06/2019 19:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-6752,9/10/2019 23:51,3/06/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-6751,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6750,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6749,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6748,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6747,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6746,9/10/2019 23:51,3/06/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-6743,9/10/2019 23:51,3/06/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-6742,9/10/2019 23:51,3/06/2019 19:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-6741,9/10/2019 23:51,3/06/2019 19:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-6740,9/10/2019 23:51,3/06/2019 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6739,9/10/2019 23:51,3/06/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2019-6735,9/10/2019 23:51,21/03/2019 16:01,4.3,125, Out-of-bounds Read,nan
CVE-2019-6734,9/10/2019 23:51,21/03/2019 16:01,4.3,416, Use After Free,nan
CVE-2019-6733,9/10/2019 23:51,21/03/2019 16:01,4.3,125, Out-of-bounds Read,nan
CVE-2019-6732,9/10/2019 23:51,21/03/2019 16:01,4.3,200, Information Exposure,nan
CVE-2019-6731,9/10/2019 23:51,21/03/2019 16:01,6.8,20, Improper Input Validation,nan
CVE-2019-6730,9/10/2019 23:51,21/03/2019 16:01,6.8,416, Use After Free,nan
CVE-2019-6729,9/10/2019 23:51,21/03/2019 16:01,6.8,20, Improper Input Validation,nan
CVE-2019-6728,9/10/2019 23:51,21/03/2019 16:01,4.3,125, Out-of-bounds Read,nan
CVE-2019-6727,9/10/2019 23:51,21/03/2019 16:01,6.8,416, Use After Free,nan
CVE-2019-6584,9/10/2019 23:51,12/06/2019 14:29,6.8,284, Improper Access Control,nan
CVE-2019-6582,9/10/2019 23:51,12/06/2019 14:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-6581,9/10/2019 23:51,12/06/2019 14:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-6580,9/10/2019 23:51,12/06/2019 14:29,6.5,285, Improper Authorization,nan
CVE-2019-6579,9/10/2019 23:51,17/04/2019 14:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-6578,9/10/2019 23:51,14/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-6574,9/10/2019 23:51,14/05/2019 20:29,5.0,284, Improper Access Control,nan
CVE-2019-6571,9/10/2019 23:51,12/06/2019 14:29,7.8,284, Improper Access Control,nan
CVE-2019-6570,9/10/2019 23:51,17/04/2019 14:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-6567,9/10/2019 23:51,12/06/2019 14:29,2.1,255, Credentials Management,nan
CVE-2019-6566,9/10/2019 23:51,9/05/2019 15:29,7.2,284, Improper Access Control,nan
CVE-2019-6565,9/10/2019 23:51,5/03/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6564,9/10/2019 23:51,9/05/2019 15:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2019-6563,9/10/2019 23:51,5/03/2019 20:29,10.0,200, Information Exposure,nan
CVE-2019-6562,9/10/2019 23:51,1/05/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6561,9/10/2019 23:51,5/03/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6559,9/10/2019 23:51,5/03/2019 20:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6557,9/10/2019 23:51,5/03/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6555,9/10/2019 23:51,28/02/2019 20:29,6.8,20, Improper Input Validation,nan
CVE-2019-6554,9/10/2019 23:51,5/04/2019 19:29,5.0,284, Improper Access Control,nan
CVE-2019-6553,9/10/2019 23:51,4/04/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6552,9/10/2019 23:51,5/04/2019 19:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6551,9/10/2019 23:51,28/02/2019 21:29,7.8,287, Improper Authentication,nan
CVE-2019-6549,9/10/2019 23:51,12/02/2019 18:29,4.0,255, Credentials Management,nan
CVE-2019-6548,9/10/2019 23:51,9/05/2019 15:29,6.8,798, Use of Hard-coded Credentials,nan
CVE-2019-6547,9/10/2019 23:51,28/02/2019 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-6546,9/10/2019 23:51,9/05/2019 15:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-6545,9/10/2019 23:51,13/02/2019 1:29,10.0,99, Improper Control of Resource Identifiers (‘Resource Injection’),nan
CVE-2019-6544,9/10/2019 23:51,9/05/2019 15:29,6.8,284, Improper Access Control,nan
CVE-2019-6543,9/10/2019 23:51,13/02/2019 1:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2019-6542,9/10/2019 23:51,28/03/2019 14:29,7.8,306, Missing Authentication for Critical Function,nan
CVE-2019-6541,9/10/2019 23:51,13/02/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6540,9/10/2019 23:51,26/03/2019 18:29,3.3,310, Cryptographic Issues,nan
CVE-2019-6539,9/10/2019 23:51,13/02/2019 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6537,9/10/2019 23:51,13/02/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6535,9/10/2019 23:51,5/02/2019 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6534,9/10/2019 23:51,11/04/2019 21:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-6533,9/10/2019 23:51,12/02/2019 17:29,6.4,306, Missing Authentication for Critical Function,nan
CVE-2019-6531,9/10/2019 23:51,2/04/2019 20:29,4.3,255, Credentials Management,nan
CVE-2019-6528,9/10/2019 23:51,5/03/2019 20:29,6.5,20, Improper Input Validation,nan
CVE-2019-6527,9/10/2019 23:51,12/02/2019 17:29,7.5,287, Improper Authentication,nan
CVE-2019-6526,9/10/2019 23:51,15/04/2019 12:31,5.0,310, Cryptographic Issues,nan
CVE-2019-6524,9/10/2019 23:51,5/03/2019 20:29,5.0,287, Improper Authentication,nan
CVE-2019-6522,9/10/2019 23:51,5/03/2019 20:29,8.5,125, Out-of-bounds Read,nan
CVE-2019-6520,9/10/2019 23:51,5/03/2019 20:29,5.0,284, Improper Access Control,nan
CVE-2019-6518,9/10/2019 23:51,5/03/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-6517,9/10/2019 23:51,6/02/2019 21:29,4.6,284, Improper Access Control,nan
CVE-2019-6339,9/10/2019 23:51,22/01/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2019-6338,9/10/2019 23:51,22/01/2019 14:29,6.0,502, Deserialization of Untrusted Data,nan
CVE-2019-6182,9/10/2019 23:51,3/09/2019 19:15,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-6181,9/10/2019 23:51,3/09/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6180,9/10/2019 23:51,3/09/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6179,9/10/2019 23:51,3/09/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-6178,9/10/2019 23:51,19/08/2019 16:15,4.3,200, Information Exposure,nan
CVE-2019-6177,9/10/2019 23:51,21/08/2019 20:15,7.5,200, Information Exposure,nan
CVE-2019-6171,9/10/2019 23:51,19/08/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-6169,9/10/2019 23:51,26/06/2019 14:15,5.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6168,9/10/2019 23:51,26/06/2019 14:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6167,9/10/2019 23:51,26/06/2019 14:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6166,9/10/2019 23:51,26/06/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6165,9/10/2019 23:51,19/08/2019 15:15,6.8,426, Untrusted Search Path,nan
CVE-2019-6160,9/10/2019 23:51,16/07/2019 19:15,5.0,284, Improper Access Control,nan
CVE-2019-6159,9/10/2019 23:51,19/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6158,9/10/2019 23:51,3/05/2019 20:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-6157,9/10/2019 23:51,22/04/2019 16:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-6155,9/10/2019 23:51,22/04/2019 16:29,7.8,20, Improper Input Validation,nan
CVE-2019-6154,9/10/2019 23:51,10/04/2019 17:29,6.8,426, Untrusted Search Path,nan
CVE-2019-6140,9/10/2019 23:51,9/04/2019 21:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5739,9/10/2019 23:51,28/03/2019 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-5638,9/10/2019 23:51,21/08/2019 20:15,6.8,613, Insufficient Session Expiration,nan
CVE-2019-5635,9/10/2019 23:51,22/08/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-5634,9/10/2019 23:51,22/08/2019 14:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-5633,9/10/2019 23:51,22/08/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-5632,9/10/2019 23:51,22/08/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-5631,9/10/2019 23:51,19/08/2019 15:15,9.3,426, Untrusted Search Path,nan
CVE-2019-5630,9/10/2019 23:51,3/07/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5629,9/10/2019 23:51,13/07/2019 1:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5627,9/10/2019 23:51,22/05/2019 18:29,4.3,255, Credentials Management,nan
CVE-2019-5626,9/10/2019 23:51,22/05/2019 18:29,2.1,255, Credentials Management,nan
CVE-2019-5625,9/10/2019 23:51,22/05/2019 18:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5624,9/10/2019 23:51,30/04/2019 17:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5616,9/10/2019 23:50,15/03/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-5615,9/10/2019 23:50,9/04/2019 16:29,3.5,255, Credentials Management,nan
CVE-2019-5484,9/10/2019 23:50,13/09/2019 18:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5483,9/10/2019 23:50,9/09/2019 17:15,5.0,209, Information Exposure Through an Error Message,nan
CVE-2019-5480,9/10/2019 23:50,3/09/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5479,9/10/2019 23:50,3/09/2019 20:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5478,9/10/2019 23:50,3/09/2019 20:15,2.1,20, Improper Input Validation,nan
CVE-2019-5476,9/10/2019 23:50,7/08/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5475,9/10/2019 23:50,3/09/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5473,9/10/2019 23:50,9/09/2019 18:15,6.5,287, Improper Authentication,nan
CVE-2019-5471,9/10/2019 23:50,9/09/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5467,9/10/2019 23:50,9/09/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5463,9/10/2019 23:50,9/09/2019 18:15,5.0,862, Missing Authorization,nan
CVE-2019-5461,9/10/2019 23:50,9/09/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2019-5458,9/10/2019 23:50,30/07/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5457,9/10/2019 23:50,30/07/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5456,9/10/2019 23:50,30/07/2019 21:15,4.3,255, Credentials Management,nan
CVE-2019-5455,9/10/2019 23:50,30/07/2019 21:15,4.6,287, Improper Authentication,nan
CVE-2019-5454,9/10/2019 23:50,30/07/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5453,9/10/2019 23:50,30/07/2019 21:15,3.6,284, Improper Access Control,nan
CVE-2019-5452,9/10/2019 23:50,30/07/2019 21:15,2.1,20, Improper Input Validation,nan
CVE-2019-5451,9/10/2019 23:50,30/07/2019 21:15,2.1,20, Improper Input Validation,nan
CVE-2019-5450,9/10/2019 23:50,30/07/2019 21:15,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-5449,9/10/2019 23:50,30/07/2019 21:15,4.0,200, Information Exposure,nan
CVE-2019-5448,9/10/2019 23:50,30/07/2019 21:15,4.3,310, Cryptographic Issues,nan
CVE-2019-5447,9/10/2019 23:50,15/07/2019 18:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5446,9/10/2019 23:50,10/07/2019 20:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5445,9/10/2019 23:50,10/07/2019 20:15,4.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5444,9/10/2019 23:50,10/07/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5443,9/10/2019 23:50,2/07/2019 19:15,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-5442,9/10/2019 23:50,12/06/2019 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-5440,9/10/2019 23:50,28/05/2019 19:29,6.8,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-5438,9/10/2019 23:50,10/05/2019 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5437,9/10/2019 23:50,10/05/2019 22:29,5.0,200, Information Exposure,nan
CVE-2019-5434,9/10/2019 23:50,6/05/2019 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-5433,9/10/2019 23:50,6/05/2019 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-5432,9/10/2019 23:50,6/05/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-5431,9/10/2019 23:50,6/05/2019 17:29,5.5,255, Credentials Management,nan
CVE-2019-5430,9/10/2019 23:50,6/05/2019 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5426,9/10/2019 23:50,10/04/2019 18:29,5.8,284, Improper Access Control,nan
CVE-2019-5424,9/10/2019 23:50,10/04/2019 18:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5423,9/10/2019 23:50,3/04/2019 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5422,9/10/2019 23:50,3/04/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5421,9/10/2019 23:50,3/04/2019 15:29,7.5,254, 7PK – Security Features,nan
CVE-2019-5420,9/10/2019 23:50,27/03/2019 14:29,7.5,20, Improper Input Validation,nan
CVE-2019-5416,9/10/2019 23:50,21/03/2019 16:01,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5415,9/10/2019 23:50,21/03/2019 16:01,5.0,200, Information Exposure,nan
CVE-2019-5414,9/10/2019 23:50,21/03/2019 16:01,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5413,9/10/2019 23:50,21/03/2019 16:01,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5040,9/10/2019 23:50,20/08/2019 21:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-4571,9/10/2019 23:50,25/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4566,9/10/2019 23:50,24/09/2019 14:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-4565,9/10/2019 23:50,20/09/2019 16:15,5.0,521, Weak Password Requirements,nan
CVE-2019-4564,9/10/2019 23:50,4/10/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4549,9/10/2019 23:50,2/10/2019 15:15,5.0,922, Insecure Storage of Sensitive Information,nan
CVE-2019-4542,9/10/2019 23:50,2/10/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4539,9/10/2019 23:50,2/10/2019 15:15,5.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-4538,9/10/2019 23:50,2/10/2019 15:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-4536,9/10/2019 23:50,29/08/2019 15:15,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-4520,9/10/2019 23:50,2/10/2019 15:15,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2019-4515,9/10/2019 23:50,24/09/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-4514,9/10/2019 23:50,4/10/2019 14:15,5.0,863, Incorrect Authorization,nan
CVE-2019-4513,9/10/2019 23:50,26/08/2019 15:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4505,9/10/2019 23:50,20/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-4497,9/10/2019 23:50,1/10/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4495,9/10/2019 23:50,1/10/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4494,9/10/2019 23:50,1/10/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4485,9/10/2019 23:50,20/08/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-4484,9/10/2019 23:50,20/08/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-4483,9/10/2019 23:50,20/08/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4482,9/10/2019 23:50,20/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4481,9/10/2019 23:50,20/08/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4477,9/10/2019 23:50,17/09/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-4473,9/10/2019 23:50,5/08/2019 14:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-4460,9/10/2019 23:50,20/08/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4456,9/10/2019 23:50,30/07/2019 14:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4448,9/10/2019 23:50,26/08/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4447,9/10/2019 23:50,26/08/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4442,9/10/2019 23:50,17/09/2019 19:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4441,9/10/2019 23:50,3/10/2019 14:15,5.0,209, Information Exposure Through an Error Message,nan
CVE-2019-4439,9/10/2019 23:50,25/07/2019 15:15,4.6,384, Session Fixation,nan
CVE-2019-4437,9/10/2019 23:50,20/08/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-4433,9/10/2019 23:50,20/08/2019 19:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4430,9/10/2019 23:50,17/07/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4425,9/10/2019 23:50,20/08/2019 19:15,3.5,200, Information Exposure,nan
CVE-2019-4424,9/10/2019 23:50,20/08/2019 20:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4423,9/10/2019 23:50,30/09/2019 16:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4422,9/10/2019 23:50,3/10/2019 14:15,6.5,287, Improper Authentication,nan
CVE-2019-4420,9/10/2019 23:50,20/08/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-4419,9/10/2019 23:50,20/08/2019 19:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4415,9/10/2019 23:50,25/07/2019 15:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-4403,9/10/2019 23:50,14/06/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4402,9/10/2019 23:50,20/08/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-4383,9/10/2019 23:50,1/07/2019 15:15,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-4378,9/10/2019 23:50,26/09/2019 15:15,4.0,20, Improper Input Validation,nan
CVE-2019-4369,9/10/2019 23:50,28/06/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-4357,9/10/2019 23:50,1/07/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4340,9/10/2019 23:50,20/08/2019 20:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4338,9/10/2019 23:50,20/08/2019 20:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-4337,9/10/2019 23:50,1/07/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-4336,9/10/2019 23:50,1/07/2019 15:15,5.0,255, Credentials Management,nan
CVE-2019-4321,9/10/2019 23:50,5/09/2019 15:15,5.0,255, Credentials Management,nan
CVE-2019-4310,9/10/2019 23:50,20/08/2019 19:15,5.0,254, 7PK – Security Features,nan
CVE-2019-4308,9/10/2019 23:50,20/08/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-4305,9/10/2019 23:50,30/09/2019 16:15,5.0,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2019-4304,9/10/2019 23:50,30/09/2019 16:15,6.5,384, Session Fixation,nan
CVE-2019-4299,9/10/2019 23:50,1/07/2019 15:15,1.9,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-4298,9/10/2019 23:50,1/07/2019 15:15,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-4297,9/10/2019 23:50,1/07/2019 15:15,5.5,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2019-4296,9/10/2019 23:50,1/07/2019 15:15,2.1,534, DEPRECATED: Information Exposure Through Debug Log Files,nan
CVE-2019-4295,9/10/2019 23:50,1/07/2019 15:15,4.0,200, Information Exposure,nan
CVE-2019-4294,9/10/2019 23:50,20/08/2019 19:15,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-4285,9/10/2019 23:50,30/07/2019 14:15,3.5,20, Improper Input Validation,nan
CVE-2019-4284,9/10/2019 23:50,5/08/2019 14:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-4280,9/10/2019 23:50,30/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-4275,9/10/2019 23:50,2/08/2019 14:15,2.1,285, Improper Authorization,nan
CVE-2019-4271,9/10/2019 23:50,17/09/2019 19:15,3.5,20, Improper Input Validation,nan
CVE-2019-4270,9/10/2019 23:50,17/09/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4269,9/10/2019 23:50,28/06/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-4268,9/10/2019 23:50,17/09/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4267,9/10/2019 23:50,22/07/2019 14:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4263,9/10/2019 23:50,11/07/2019 20:15,4.0,200, Information Exposure,nan
CVE-2019-4261,9/10/2019 23:50,5/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2019-4260,9/10/2019 23:50,2/07/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-4259,9/10/2019 23:50,13/05/2019 16:29,2.1,200, Information Exposure,nan
CVE-2019-4257,9/10/2019 23:50,6/06/2019 21:29,4.0,200, Information Exposure,nan
CVE-2019-4252,9/10/2019 23:50,27/06/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4250,9/10/2019 23:50,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4249,9/10/2019 23:50,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4246,9/10/2019 23:50,1/10/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-4241,9/10/2019 23:50,26/06/2019 15:15,4.6,284, Improper Access Control,nan
CVE-2019-4239,9/10/2019 23:50,14/06/2019 15:29,2.1,255, Credentials Management,nan
CVE-2019-4238,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4237,9/10/2019 23:50,1/07/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4236,9/10/2019 23:50,22/07/2019 14:15,2.1,19, Data Processing Errors,nan
CVE-2019-4235,9/10/2019 23:50,26/06/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-4234,9/10/2019 23:50,26/06/2019 15:15,4.0,284, Improper Access Control,nan
CVE-2019-4227,9/10/2019 23:50,4/10/2019 14:15,7.5,384, Session Fixation,nan
CVE-2019-4225,9/10/2019 23:50,26/06/2019 15:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-4224,9/10/2019 23:50,26/06/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4222,9/10/2019 23:50,25/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2019-4220,9/10/2019 23:50,6/06/2019 1:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2019-4219,9/10/2019 23:50,6/06/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-4218,9/10/2019 23:50,6/06/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-4217,9/10/2019 23:50,6/06/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-4212,9/10/2019 23:50,25/07/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-4211,9/10/2019 23:50,17/07/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4210,9/10/2019 23:50,8/04/2019 15:29,5.5,287, Improper Authentication,nan
CVE-2019-4208,9/10/2019 23:50,7/05/2019 19:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4207,9/10/2019 23:50,7/05/2019 19:29,2.1,200, Information Exposure,nan
CVE-2019-4203,9/10/2019 23:50,15/04/2019 15:29,9.0,284, Improper Access Control,nan
CVE-2019-4202,9/10/2019 23:50,15/04/2019 15:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-4201,9/10/2019 23:50,6/06/2019 1:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-4194,9/10/2019 23:50,17/07/2019 14:15,4.0,284, Improper Access Control,nan
CVE-2019-4186,9/10/2019 23:50,5/09/2019 15:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-4185,9/10/2019 23:50,6/06/2019 1:29,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-4177,9/10/2019 23:50,17/06/2019 15:15,2.1,200, Information Exposure,nan
CVE-2019-4176,9/10/2019 23:50,17/06/2019 15:15,5.0,284, Improper Access Control,nan
CVE-2019-4175,9/10/2019 23:50,17/09/2019 19:15,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-4174,9/10/2019 23:50,17/06/2019 15:15,2.1,200, Information Exposure,nan
CVE-2019-4173,9/10/2019 23:50,17/06/2019 15:15,4.0,200, Information Exposure,nan
CVE-2019-4171,9/10/2019 23:50,17/09/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-4169,9/10/2019 23:50,26/08/2019 15:15,6.4,255, Credentials Management,nan
CVE-2019-4167,9/10/2019 23:50,20/08/2019 20:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-4166,9/10/2019 23:50,30/04/2019 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-4165,9/10/2019 23:50,31/07/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-4163,9/10/2019 23:50,31/07/2019 17:15,4.0,200, Information Exposure,nan
CVE-2019-4162,9/10/2019 23:50,6/06/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-4161,9/10/2019 23:50,6/06/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-4158,9/10/2019 23:50,25/06/2019 16:15,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-4157,9/10/2019 23:50,25/06/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4156,9/10/2019 23:50,25/06/2019 16:15,4.3,200, Information Exposure,nan
CVE-2019-4155,9/10/2019 23:50,8/04/2019 15:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-4153,9/10/2019 23:50,25/06/2019 16:15,3.5,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-4152,9/10/2019 23:50,25/06/2019 16:15,3.6,384, Session Fixation,nan
CVE-2019-4151,9/10/2019 23:50,25/06/2019 16:15,4.3,326, Inadequate Encryption Strength,nan
CVE-2019-4150,9/10/2019 23:50,25/06/2019 16:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-4149,9/10/2019 23:50,5/09/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4148,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4147,9/10/2019 23:50,16/09/2019 19:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4146,9/10/2019 23:50,25/04/2019 15:29,3.5,200, Information Exposure,nan
CVE-2019-4145,9/10/2019 23:50,25/06/2019 16:15,3.6,200, Information Exposure,nan
CVE-2019-4142,9/10/2019 23:50,18/06/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-4141,9/10/2019 23:50,27/09/2019 14:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-4140,9/10/2019 23:50,2/07/2019 15:15,3.6,284, Improper Access Control,nan
CVE-2019-4136,9/10/2019 23:50,17/06/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4135,9/10/2019 23:50,25/06/2019 16:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-4134,9/10/2019 23:50,2/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4133,9/10/2019 23:50,29/08/2019 15:15,3.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-4132,9/10/2019 23:50,29/08/2019 15:15,2.1,200, Information Exposure,nan
CVE-2019-4131,9/10/2019 23:50,11/07/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-4129,9/10/2019 23:50,2/07/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-4120,9/10/2019 23:50,20/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4119,9/10/2019 23:50,17/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-4117,9/10/2019 23:50,20/08/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-4116,9/10/2019 23:50,25/07/2019 15:15,2.1,200, Information Exposure,nan
CVE-2019-4115,9/10/2019 23:50,30/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4112,9/10/2019 23:50,30/09/2019 16:15,2.1,200, Information Exposure,nan
CVE-2019-4109,9/10/2019 23:50,30/09/2019 16:15,5.8,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2019-4106,9/10/2019 23:50,30/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4103,9/10/2019 23:50,17/06/2019 15:15,7.7,264, Permissions Privileges and Access Controls,nan
CVE-2019-4094,9/10/2019 23:50,21/03/2019 16:01,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4093,9/10/2019 23:50,2/04/2019 14:29,3.6,284, Improper Access Control,nan
CVE-2019-4092,9/10/2019 23:50,25/04/2019 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-4088,9/10/2019 23:50,2/07/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4087,9/10/2019 23:50,2/07/2019 15:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4086,9/10/2019 23:50,17/09/2019 19:15,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2019-4084,9/10/2019 23:50,27/06/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-4083,9/10/2019 23:50,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4080,9/10/2019 23:50,2/04/2019 14:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-4078,9/10/2019 23:50,23/05/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4077,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4076,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4075,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4074,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4073,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4072,9/10/2019 23:50,9/05/2019 15:29,6.5,613, Insufficient Session Expiration,nan
CVE-2019-4071,9/10/2019 23:50,9/05/2019 15:29,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-4070,9/10/2019 23:50,7/06/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4069,9/10/2019 23:50,7/06/2019 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-4068,9/10/2019 23:50,7/06/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-4067,9/10/2019 23:50,7/06/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-4066,9/10/2019 23:50,7/06/2019 15:29,6.5,20, Improper Input Validation,nan
CVE-2019-4063,9/10/2019 23:50,5/03/2019 18:29,4.3,200, Information Exposure,nan
CVE-2019-4062,9/10/2019 23:50,30/07/2019 14:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4061,9/10/2019 23:50,27/02/2019 22:29,5.0,287, Improper Authentication,nan
CVE-2019-4059,9/10/2019 23:50,15/02/2019 20:29,5.0,255, Credentials Management,nan
CVE-2019-4058,9/10/2019 23:50,20/05/2019 18:29,4.0,254, 7PK – Security Features,nan
CVE-2019-4057,9/10/2019 23:50,1/07/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-4056,9/10/2019 23:50,6/06/2019 1:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-4055,9/10/2019 23:50,19/04/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-4054,9/10/2019 23:50,17/07/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-4052,9/10/2019 23:50,22/03/2019 19:29,5.0,200, Information Exposure,nan
CVE-2019-4049,9/10/2019 23:50,20/08/2019 19:15,2.1,20, Improper Input Validation,nan
CVE-2019-4048,9/10/2019 23:50,6/06/2019 1:29,2.1,200, Information Exposure,nan
CVE-2019-4047,9/10/2019 23:50,29/04/2019 17:29,4.0,200, Information Exposure,nan
CVE-2019-4046,9/10/2019 23:50,25/03/2019 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-4045,9/10/2019 23:50,8/04/2019 15:29,4.0,20, Improper Input Validation,nan
CVE-2019-4043,9/10/2019 23:50,2/04/2019 14:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-4040,9/10/2019 23:50,31/01/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4039,9/10/2019 23:50,23/05/2019 14:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-4038,9/10/2019 23:50,4/02/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-4035,9/10/2019 23:50,22/03/2019 19:29,6.4,20, Improper Input Validation,nan
CVE-2019-4034,9/10/2019 23:50,14/03/2019 22:29,6.5,20, Improper Input Validation,nan
CVE-2019-4033,9/10/2019 23:50,25/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4032,9/10/2019 23:50,5/03/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4030,9/10/2019 23:50,6/03/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4029,9/10/2019 23:50,5/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4028,9/10/2019 23:50,5/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4027,9/10/2019 23:50,5/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4016,9/10/2019 23:50,11/03/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4015,9/10/2019 23:50,11/03/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4014,9/10/2019 23:50,3/04/2019 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4012,9/10/2019 23:49,15/04/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-4011,9/10/2019 23:49,20/05/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4008,9/10/2019 23:49,7/02/2019 15:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-3940,9/10/2019 23:49,9/04/2019 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-3939,9/10/2019 23:49,30/04/2019 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-3938,9/10/2019 23:49,30/04/2019 21:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2019-3937,9/10/2019 23:49,30/04/2019 21:29,2.1,255, Credentials Management,nan
CVE-2019-3936,9/10/2019 23:49,30/04/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-3935,9/10/2019 23:49,30/04/2019 21:29,6.4,287, Improper Authentication,nan
CVE-2019-3934,9/10/2019 23:49,30/04/2019 21:29,5.0,284, Improper Access Control,nan
CVE-2019-3933,9/10/2019 23:49,30/04/2019 21:29,5.0,284, Improper Access Control,nan
CVE-2019-3932,9/10/2019 23:49,30/04/2019 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-3931,9/10/2019 23:49,30/04/2019 21:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-3930,9/10/2019 23:49,30/04/2019 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3928,9/10/2019 23:49,30/04/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-3927,9/10/2019 23:49,30/04/2019 21:29,5.0,255, Credentials Management,nan
CVE-2019-3926,9/10/2019 23:49,30/04/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3925,9/10/2019 23:49,30/04/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3924,9/10/2019 23:49,20/02/2019 20:29,5.0,441, Unintended Proxy or Intermediary (‘Confused Deputy’),nan
CVE-2019-3922,9/10/2019 23:49,5/03/2019 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3921,9/10/2019 23:49,5/03/2019 21:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3920,9/10/2019 23:49,5/03/2019 21:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3919,9/10/2019 23:49,5/03/2019 21:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3918,9/10/2019 23:49,5/03/2019 21:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-3917,9/10/2019 23:49,5/03/2019 21:29,5.0,284, Improper Access Control,nan
CVE-2019-3913,9/10/2019 23:49,30/01/2019 20:29,4.0,20, Improper Input Validation,nan
CVE-2019-3912,9/10/2019 23:49,30/01/2019 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-3911,9/10/2019 23:49,30/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3908,9/10/2019 23:49,18/01/2019 18:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2019-3907,9/10/2019 23:49,18/01/2019 18:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-3906,9/10/2019 23:49,18/01/2019 18:29,9.0,798, Use of Hard-coded Credentials,nan
CVE-2019-3899,9/10/2019 23:49,22/04/2019 16:29,7.5,287, Improper Authentication,nan
CVE-2019-3890,9/10/2019 23:49,1/08/2019 14:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-3889,9/10/2019 23:49,11/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3884,9/10/2019 23:49,1/08/2019 14:15,5.0,287, Improper Authentication,nan
CVE-2019-3879,9/10/2019 23:49,25/03/2019 19:29,5.5,275, Permission Issues,nan
CVE-2019-3875,9/10/2019 23:49,12/06/2019 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-3872,9/10/2019 23:49,12/06/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3869,9/10/2019 23:49,28/03/2019 14:29,4.0,255, Credentials Management,nan
CVE-2019-3852,9/10/2019 23:49,26/03/2019 18:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-3851,9/10/2019 23:49,26/03/2019 18:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-3850,9/10/2019 23:49,26/03/2019 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-3849,9/10/2019 23:49,26/03/2019 18:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-3848,9/10/2019 23:49,26/03/2019 18:29,4.0,200, Information Exposure,nan
CVE-2019-3841,9/10/2019 23:49,25/03/2019 18:29,4.9,295, Improper Certificate Validation,nan
CVE-2019-3837,9/10/2019 23:49,11/04/2019 15:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3833,9/10/2019 23:49,14/03/2019 22:29,5.0,399, Resource Management Errors,nan
CVE-2019-3831,9/10/2019 23:49,25/03/2019 18:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3830,9/10/2019 23:49,26/03/2019 18:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-3826,9/10/2019 23:49,26/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3825,9/10/2019 23:49,6/02/2019 20:29,6.9,287, Improper Authentication,nan
CVE-2019-3818,9/10/2019 23:49,5/02/2019 17:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-3817,9/10/2019 23:49,27/03/2019 13:29,6.8,416, Use After Free,nan
CVE-2019-3815,9/10/2019 23:49,28/01/2019 15:29,2.1,399, Resource Management Errors,nan
CVE-2019-3810,9/10/2019 23:49,25/03/2019 18:29,5.0,200, Information Exposure,nan
CVE-2019-3809,9/10/2019 23:49,25/03/2019 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-3808,9/10/2019 23:49,25/03/2019 18:29,4.0,254, 7PK – Security Features,nan
CVE-2019-3807,9/10/2019 23:49,29/01/2019 17:29,6.4,295, Improper Certificate Validation,nan
CVE-2019-3806,9/10/2019 23:49,29/01/2019 17:29,6.8,254, 7PK – Security Features,nan
CVE-2019-3803,9/10/2019 23:49,12/01/2019 0:29,5.0,200, Information Exposure,nan
CVE-2019-3802,9/10/2019 23:49,3/06/2019 14:29,5.0,200, Information Exposure,nan
CVE-2019-3801,9/10/2019 23:49,25/04/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-3800,9/10/2019 23:49,5/08/2019 17:15,2.1,200, Information Exposure,nan
CVE-2019-3799,9/10/2019 23:49,6/05/2019 16:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3798,9/10/2019 23:49,17/04/2019 14:29,6.0,287, Improper Authentication,nan
CVE-2019-3794,9/10/2019 23:49,18/07/2019 16:15,4.3,20, Improper Input Validation,nan
CVE-2019-3793,9/10/2019 23:49,24/04/2019 16:29,5.0,287, Improper Authentication,nan
CVE-2019-3790,9/10/2019 23:49,6/06/2019 19:29,5.5,613, Insufficient Session Expiration,nan
CVE-2019-3789,9/10/2019 23:49,24/04/2019 16:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-3788,9/10/2019 23:49,25/04/2019 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-3786,9/10/2019 23:49,24/04/2019 16:29,4.0,287, Improper Authentication,nan
CVE-2019-3785,9/10/2019 23:49,13/03/2019 21:29,5.5,285, Improper Authorization,nan
CVE-2019-3784,9/10/2019 23:49,7/03/2019 18:29,4.0,384, Session Fixation,nan
CVE-2019-3783,9/10/2019 23:49,7/03/2019 18:29,4.0,255, Credentials Management,nan
CVE-2019-3782,9/10/2019 23:49,13/02/2019 16:29,2.1,255, Credentials Management,nan
CVE-2019-3781,9/10/2019 23:49,7/03/2019 18:29,3.5,255, Credentials Management,nan
CVE-2019-3779,9/10/2019 23:49,8/03/2019 16:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-3777,9/10/2019 23:49,7/03/2019 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2019-3776,9/10/2019 23:49,7/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3775,9/10/2019 23:49,7/03/2019 18:29,4.0,287, Improper Authentication,nan
CVE-2019-3774,9/10/2019 23:49,18/01/2019 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-3773,9/10/2019 23:49,18/01/2019 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-3772,9/10/2019 23:49,18/01/2019 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-3766,9/10/2019 23:49,27/09/2019 21:15,7.5,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2019-3763,9/10/2019 23:49,11/09/2019 20:15,2.1,200, Information Exposure,nan
CVE-2019-3761,9/10/2019 23:49,11/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3760,9/10/2019 23:49,11/09/2019 20:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3759,9/10/2019 23:49,11/09/2019 20:15,5.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-3758,9/10/2019 23:49,18/09/2019 23:15,7.5,287, Improper Authentication,nan
CVE-2019-3756,9/10/2019 23:49,18/09/2019 23:15,4.0,200, Information Exposure,nan
CVE-2019-3754,9/10/2019 23:49,3/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3753,9/10/2019 23:49,20/08/2019 19:15,4.0,255, Credentials Management,nan
CVE-2019-3747,9/10/2019 23:49,27/09/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3746,9/10/2019 23:49,27/09/2019 21:15,6.5,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2019-3744,9/10/2019 23:49,9/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-3742,9/10/2019 23:49,9/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-3740,9/10/2019 23:49,18/09/2019 23:15,4.3,200, Information Exposure,nan
CVE-2019-3739,9/10/2019 23:49,18/09/2019 23:15,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2019-3737,9/10/2019 23:49,19/06/2019 23:15,5.0,20, Improper Input Validation,nan
CVE-2019-3736,9/10/2019 23:49,27/09/2019 21:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-3735,9/10/2019 23:49,20/06/2019 22:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-3734,9/10/2019 23:49,18/07/2019 16:15,4.0,285, Improper Authorization,nan
CVE-2019-3733,9/10/2019 23:49,30/09/2019 22:15,4.0,200, Information Exposure,nan
CVE-2019-3732,9/10/2019 23:49,30/09/2019 22:15,5.0,203, Information Exposure Through Discrepancy,nan
CVE-2019-3731,9/10/2019 23:49,30/09/2019 22:15,5.0,203, Information Exposure Through Discrepancy,nan
CVE-2019-3729,9/10/2019 23:49,30/09/2019 22:15,2.7,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-3728,9/10/2019 23:49,30/09/2019 22:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-3726,9/10/2019 23:49,24/09/2019 16:15,6.2,427, Uncontrolled Search Path Element,nan
CVE-2019-3723,9/10/2019 23:49,6/06/2019 19:29,6.4,20, Improper Input Validation,nan
CVE-2019-3722,9/10/2019 23:49,6/06/2019 19:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-3721,9/10/2019 23:49,25/04/2019 21:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-3720,9/10/2019 23:49,25/04/2019 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3719,9/10/2019 23:49,18/04/2019 20:29,7.9,20, Improper Input Validation,nan
CVE-2019-3718,9/10/2019 23:49,18/04/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3717,9/10/2019 23:49,5/08/2019 17:15,7.2,284, Improper Access Control,nan
CVE-2019-3716,9/10/2019 23:49,13/03/2019 21:29,2.1,255, Credentials Management,nan
CVE-2019-3712,9/10/2019 23:49,7/03/2019 18:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3711,9/10/2019 23:49,13/03/2019 21:29,4.0,255, Credentials Management,nan
CVE-2019-3710,9/10/2019 23:49,28/03/2019 18:29,6.8,320, Key Management Errors,nan
CVE-2019-3709,9/10/2019 23:49,17/04/2019 14:29,9.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3708,9/10/2019 23:49,17/04/2019 14:29,9.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3707,9/10/2019 23:49,26/04/2019 19:29,10.0,287, Improper Authentication,nan
CVE-2019-3706,9/10/2019 23:49,26/04/2019 19:29,10.0,287, Improper Authentication,nan
CVE-2019-3705,9/10/2019 23:49,26/04/2019 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3704,9/10/2019 23:49,7/02/2019 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-3684,9/10/2019 23:49,13/05/2019 15:29,4.3,200, Information Exposure,nan
CVE-2019-3646,9/10/2019 23:49,13/09/2019 13:15,6.0,426, Untrusted Search Path,nan
CVE-2019-3644,9/10/2019 23:49,11/09/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-3643,9/10/2019 23:49,11/09/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-3639,9/10/2019 23:49,14/08/2019 17:15,5.8,20, Improper Input Validation,nan
CVE-2019-3638,9/10/2019 23:49,12/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3637,9/10/2019 23:49,14/08/2019 17:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-3635,9/10/2019 23:49,14/08/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-3634,9/10/2019 23:49,21/08/2019 16:15,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3633,9/10/2019 23:49,21/08/2019 16:15,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3632,9/10/2019 23:49,27/06/2019 21:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3631,9/10/2019 23:49,27/06/2019 21:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3630,9/10/2019 23:49,27/06/2019 21:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3629,9/10/2019 23:49,27/06/2019 21:15,4.3,287, Improper Authentication,nan
CVE-2019-3628,9/10/2019 23:49,27/06/2019 17:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-3621,9/10/2019 23:49,25/07/2019 17:15,4.6,287, Improper Authentication,nan
CVE-2019-3615,9/10/2019 23:49,12/03/2019 21:29,2.1,255, Credentials Management,nan
CVE-2019-3612,9/10/2019 23:49,10/04/2019 20:29,2.1,200, Information Exposure,nan
CVE-2019-3610,9/10/2019 23:49,13/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-3606,9/10/2019 23:49,26/03/2019 18:29,1.9,200, Information Exposure,nan
CVE-2019-3604,9/10/2019 23:49,1/02/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3599,9/10/2019 23:49,28/02/2019 15:29,4.3,200, Information Exposure,nan
CVE-2019-3598,9/10/2019 23:49,28/02/2019 15:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3597,9/10/2019 23:49,26/03/2019 18:29,7.5,287, Improper Authentication,nan
CVE-2019-3595,9/10/2019 23:49,24/07/2019 15:15,4.4,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3593,9/10/2019 23:49,28/01/2019 17:29,5.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-3592,9/10/2019 23:49,18/07/2019 18:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-3587,9/10/2019 23:49,23/01/2019 15:29,6.8,426, Untrusted Search Path,nan
CVE-2019-3584,9/10/2019 23:49,23/01/2019 15:29,3.6,284, Improper Access Control,nan
CVE-2019-3582,9/10/2019 23:49,28/02/2019 15:29,6.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-3581,9/10/2019 23:49,9/01/2019 14:29,5.0,20, Improper Input Validation,nan
CVE-2019-3571,9/10/2019 23:49,16/07/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-3570,9/10/2019 23:49,18/07/2019 16:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3569,9/10/2019 23:49,26/06/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-3567,9/10/2019 23:49,3/06/2019 19:29,9.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-3564,9/10/2019 23:49,6/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-3563,9/10/2019 23:49,29/04/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3562,9/10/2019 23:49,29/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3561,9/10/2019 23:49,29/04/2019 16:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-3560,9/10/2019 23:49,29/04/2019 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3559,9/10/2019 23:49,6/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-3557,9/10/2019 23:49,15/01/2019 22:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-3554,9/10/2019 23:49,15/01/2019 22:29,4.3,19, Data Processing Errors,nan
CVE-2019-3486,9/10/2019 23:49,25/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3485,9/10/2019 23:49,24/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3475,9/10/2019 23:49,20/02/2019 22:29,7.2,284, Improper Access Control,nan
CVE-2019-3474,9/10/2019 23:49,20/02/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3418,9/10/2019 23:49,15/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3417,9/10/2019 23:49,15/08/2019 15:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3416,9/10/2019 23:49,23/09/2019 14:15,10.0,20, Improper Input Validation,nan
CVE-2019-3413,9/10/2019 23:49,11/06/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3412,9/10/2019 23:49,11/06/2019 20:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3411,9/10/2019 23:49,11/06/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-3410,9/10/2019 23:49,11/06/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3409,9/10/2019 23:49,11/06/2019 19:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-3403,9/10/2019 23:49,22/05/2019 18:29,5.0,285, Improper Authorization,nan
CVE-2019-3401,9/10/2019 23:49,22/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2019-3399,9/10/2019 23:49,30/04/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-2390,9/10/2019 23:48,30/08/2019 15:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-2386,9/10/2019 23:48,6/08/2019 19:15,6.0,285, Improper Authorization,nan
CVE-2019-1984,9/10/2019 23:48,21/08/2019 19:15,5.5,20, Improper Input Validation,nan
CVE-2019-1977,9/10/2019 23:48,30/08/2019 9:15,4.3,371, State Issues,nan
CVE-2019-1976,9/10/2019 23:48,5/09/2019 2:15,5.0,255, Credentials Management,nan
CVE-2019-1975,9/10/2019 23:48,18/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1974,9/10/2019 23:48,21/08/2019 19:15,10.0,287, Improper Authentication,nan
CVE-2019-1973,9/10/2019 23:48,8/08/2019 8:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1972,9/10/2019 23:48,8/08/2019 8:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1971,9/10/2019 23:48,8/08/2019 8:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1970,9/10/2019 23:48,8/08/2019 8:15,5.0,693, Protection Mechanism Failure,nan
CVE-2019-1969,9/10/2019 23:48,30/08/2019 9:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1968,9/10/2019 23:48,30/08/2019 9:15,5.0,20, Improper Input Validation,nan
CVE-2019-1967,9/10/2019 23:48,30/08/2019 9:15,7.8,399, Resource Management Errors,nan
CVE-2019-1966,9/10/2019 23:48,30/08/2019 9:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1965,9/10/2019 23:48,28/08/2019 19:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1964,9/10/2019 23:48,28/08/2019 19:15,7.8,20, Improper Input Validation,nan
CVE-2019-1963,9/10/2019 23:48,28/08/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-1962,9/10/2019 23:48,28/08/2019 19:15,7.8,20, Improper Input Validation,nan
CVE-2019-1961,9/10/2019 23:48,8/08/2019 8:15,6.8,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-1960,9/10/2019 23:48,8/08/2019 8:15,2.1,20, Improper Input Validation,nan
CVE-2019-1959,9/10/2019 23:48,8/08/2019 8:15,2.1,20, Improper Input Validation,nan
CVE-2019-1958,9/10/2019 23:48,8/08/2019 8:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1957,9/10/2019 23:48,8/08/2019 8:15,7.8,399, Resource Management Errors,nan
CVE-2019-1956,9/10/2019 23:48,8/08/2019 8:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1955,9/10/2019 23:48,8/08/2019 8:15,5.0,20, Improper Input Validation,nan
CVE-2019-1954,9/10/2019 23:48,8/08/2019 8:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-1953,9/10/2019 23:48,8/08/2019 8:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-1952,9/10/2019 23:48,8/08/2019 8:15,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1951,9/10/2019 23:48,8/08/2019 8:15,5.0,20, Improper Input Validation,nan
CVE-2019-1949,9/10/2019 23:48,8/08/2019 8:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1948,9/10/2019 23:48,21/08/2019 19:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-1946,9/10/2019 23:48,8/08/2019 8:15,6.4,287, Improper Authentication,nan
CVE-2019-1945,9/10/2019 23:48,7/08/2019 22:15,4.6,20, Improper Input Validation,nan
CVE-2019-1944,9/10/2019 23:48,7/08/2019 22:15,4.4,200, Information Exposure,nan
CVE-2019-1943,9/10/2019 23:48,17/07/2019 21:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-1942,9/10/2019 23:48,17/07/2019 21:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1941,9/10/2019 23:48,17/07/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1940,9/10/2019 23:48,17/07/2019 21:15,4.3,310, Cryptographic Issues,nan
CVE-2019-1939,9/10/2019 23:48,5/09/2019 2:15,9.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-1938,9/10/2019 23:48,21/08/2019 19:15,10.0,287, Improper Authentication,nan
CVE-2019-1934,9/10/2019 23:48,7/08/2019 22:15,6.5,285, Improper Authorization,nan
CVE-2019-1933,9/10/2019 23:48,6/07/2019 2:15,4.3,20, Improper Input Validation,nan
CVE-2019-1932,9/10/2019 23:48,6/07/2019 2:15,7.2,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-1931,9/10/2019 23:48,6/07/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1930,9/10/2019 23:48,6/07/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1929,9/10/2019 23:48,7/08/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1928,9/10/2019 23:48,7/08/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1927,9/10/2019 23:48,7/08/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1926,9/10/2019 23:48,7/08/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1925,9/10/2019 23:48,7/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1924,9/10/2019 23:48,7/08/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1923,9/10/2019 23:48,17/07/2019 21:15,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1922,9/10/2019 23:48,6/07/2019 2:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-1921,9/10/2019 23:48,6/07/2019 2:15,5.0,20, Improper Input Validation,nan
CVE-2019-1920,9/10/2019 23:48,17/07/2019 21:15,6.1,20, Improper Input Validation,nan
CVE-2019-1919,9/10/2019 23:48,17/07/2019 21:15,7.2,798, Use of Hard-coded Credentials,nan
CVE-2019-1918,9/10/2019 23:48,7/08/2019 22:15,6.1,20, Improper Input Validation,nan
CVE-2019-1917,9/10/2019 23:48,17/07/2019 21:15,10.0,287, Improper Authentication,nan
CVE-2019-1915,9/10/2019 23:48,2/10/2019 19:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1911,9/10/2019 23:48,6/07/2019 2:15,4.6,216, Containment Errors (Container Errors),nan
CVE-2019-1910,9/10/2019 23:48,7/08/2019 21:15,6.1,20, Improper Input Validation,nan
CVE-2019-1909,9/10/2019 23:48,6/07/2019 2:15,4.3,20, Improper Input Validation,nan
CVE-2019-1908,9/10/2019 23:48,21/08/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-1907,9/10/2019 23:48,21/08/2019 19:15,6.5,285, Improper Authorization,nan
CVE-2019-1906,9/10/2019 23:48,20/06/2019 3:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1905,9/10/2019 23:48,20/06/2019 3:15,5.0,20, Improper Input Validation,nan
CVE-2019-1904,9/10/2019 23:48,21/06/2019 3:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1903,9/10/2019 23:48,20/06/2019 3:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1901,9/10/2019 23:48,31/07/2019 18:15,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1900,9/10/2019 23:48,21/08/2019 19:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-1896,9/10/2019 23:48,21/08/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1895,9/10/2019 23:48,7/08/2019 21:15,7.5,306, Missing Authentication for Critical Function,nan
CVE-2019-1894,9/10/2019 23:48,6/07/2019 2:15,9.0,20, Improper Input Validation,nan
CVE-2019-1893,9/10/2019 23:48,6/07/2019 2:15,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1892,9/10/2019 23:48,6/07/2019 2:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1891,9/10/2019 23:48,6/07/2019 2:15,5.0,20, Improper Input Validation,nan
CVE-2019-1890,9/10/2019 23:48,4/07/2019 20:15,3.3,284, Improper Access Control,nan
CVE-2019-1889,9/10/2019 23:48,4/07/2019 20:15,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1887,9/10/2019 23:48,6/07/2019 2:15,5.0,787, Out-of-bounds Write,nan
CVE-2019-1886,9/10/2019 23:48,4/07/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-1885,9/10/2019 23:48,21/08/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1884,9/10/2019 23:48,4/07/2019 20:15,4.0,20, Improper Input Validation,nan
CVE-2019-1883,9/10/2019 23:48,21/08/2019 19:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1882,9/10/2019 23:48,5/06/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1881,9/10/2019 23:48,5/06/2019 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1880,9/10/2019 23:48,5/06/2019 17:29,2.1,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-1879,9/10/2019 23:48,20/06/2019 3:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1878,9/10/2019 23:48,20/06/2019 3:15,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1876,9/10/2019 23:48,20/06/2019 3:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-1875,9/10/2019 23:48,20/06/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1873,9/10/2019 23:48,10/07/2019 18:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-1872,9/10/2019 23:48,5/06/2019 17:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1871,9/10/2019 23:48,21/08/2019 19:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1870,9/10/2019 23:48,5/06/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1869,9/10/2019 23:48,20/06/2019 3:15,5.0,824, Access of Uninitialized Pointer,nan
CVE-2019-1868,9/10/2019 23:48,5/06/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-1867,9/10/2019 23:48,10/05/2019 12:29,10.0,287, Improper Authentication,nan
CVE-2019-1865,9/10/2019 23:48,21/08/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1864,9/10/2019 23:48,21/08/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1863,9/10/2019 23:48,21/08/2019 19:15,9.0,285, Improper Authorization,nan
CVE-2019-1861,9/10/2019 23:48,5/06/2019 17:29,9.0,20, Improper Input Validation,nan
CVE-2019-1859,9/10/2019 23:48,3/05/2019 17:29,6.5,285, Improper Authorization,nan
CVE-2019-1858,9/10/2019 23:48,16/05/2019 2:29,5.0,20, Improper Input Validation,nan
CVE-2019-1855,9/10/2019 23:48,4/07/2019 20:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-1853,9/10/2019 23:48,16/05/2019 2:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-1852,9/10/2019 23:48,3/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1851,9/10/2019 23:48,16/05/2019 2:29,4.0,285, Improper Authorization,nan
CVE-2019-1850,9/10/2019 23:48,21/08/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1849,9/10/2019 23:48,16/05/2019 2:29,6.1,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-1848,9/10/2019 23:48,20/06/2019 3:15,4.8,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-1846,9/10/2019 23:48,16/05/2019 2:29,6.1,20, Improper Input Validation,nan
CVE-2019-1845,9/10/2019 23:48,5/06/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-1844,9/10/2019 23:48,3/05/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-1843,9/10/2019 23:48,20/06/2019 3:15,5.0,20, Improper Input Validation,nan
CVE-2019-1841,9/10/2019 23:48,18/04/2019 2:29,5.5,20, Improper Input Validation,nan
CVE-2019-1840,9/10/2019 23:48,18/04/2019 2:29,7.8,665, Improper Initialization,nan
CVE-2019-1839,9/10/2019 23:48,21/08/2019 19:15,7.2,20, Improper Input Validation,nan
CVE-2019-1837,9/10/2019 23:48,18/04/2019 2:29,7.8,20, Improper Input Validation,nan
CVE-2019-1836,9/10/2019 23:48,3/05/2019 17:29,6.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1835,9/10/2019 23:48,18/04/2019 2:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1834,9/10/2019 23:48,18/04/2019 2:29,3.3,20, Improper Input Validation,nan
CVE-2019-1833,9/10/2019 23:48,16/05/2019 2:29,5.0,693, Protection Mechanism Failure,nan
CVE-2019-1832,9/10/2019 23:48,16/05/2019 2:29,5.0,693, Protection Mechanism Failure,nan
CVE-2019-1831,9/10/2019 23:48,18/04/2019 2:29,5.0,20, Improper Input Validation,nan
CVE-2019-1830,9/10/2019 23:48,18/04/2019 2:29,6.8,20, Improper Input Validation,nan
CVE-2019-1829,9/10/2019 23:48,18/04/2019 2:29,7.2,287, Improper Authentication,nan
CVE-2019-1828,9/10/2019 23:48,4/04/2019 16:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-1827,9/10/2019 23:48,4/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1826,9/10/2019 23:48,18/04/2019 2:29,5.5,20, Improper Input Validation,nan
CVE-2019-1825,9/10/2019 23:48,16/05/2019 1:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1824,9/10/2019 23:48,16/05/2019 1:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1823,9/10/2019 23:48,16/05/2019 1:29,9.0,20, Improper Input Validation,nan
CVE-2019-1822,9/10/2019 23:48,16/05/2019 1:29,9.0,20, Improper Input Validation,nan
CVE-2019-1820,9/10/2019 23:48,16/05/2019 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1819,9/10/2019 23:48,16/05/2019 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1818,9/10/2019 23:48,16/05/2019 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1817,9/10/2019 23:48,3/05/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-1816,9/10/2019 23:48,3/05/2019 17:29,7.2,20, Improper Input Validation,nan
CVE-2019-1814,9/10/2019 23:48,16/05/2019 0:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1808,9/10/2019 23:48,15/05/2019 23:29,2.1,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-1807,9/10/2019 23:48,3/05/2019 17:29,6.8,384, Session Fixation,nan
CVE-2019-1806,9/10/2019 23:48,15/05/2019 22:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-1805,9/10/2019 23:48,18/04/2019 1:29,3.3,284, Improper Access Control,nan
CVE-2019-1804,9/10/2019 23:48,3/05/2019 17:29,10.0,310, Cryptographic Issues,nan
CVE-2019-1803,9/10/2019 23:48,3/05/2019 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1802,9/10/2019 23:48,18/04/2019 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1800,9/10/2019 23:48,18/04/2019 1:29,6.1,399, Resource Management Errors,nan
CVE-2019-1799,9/10/2019 23:48,18/04/2019 1:29,6.1,399, Resource Management Errors,nan
CVE-2019-1797,9/10/2019 23:48,18/04/2019 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1796,9/10/2019 23:48,18/04/2019 1:29,6.1,399, Resource Management Errors,nan
CVE-2019-1794,9/10/2019 23:48,18/04/2019 1:29,3.6,427, Uncontrolled Search Path Element,nan
CVE-2019-1792,9/10/2019 23:48,18/04/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1790,9/10/2019 23:48,15/05/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1788,9/10/2019 23:48,8/04/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-1787,9/10/2019 23:48,8/04/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-1784,9/10/2019 23:48,15/05/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1783,9/10/2019 23:48,15/05/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1778,9/10/2019 23:48,15/05/2019 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1777,9/10/2019 23:48,18/04/2019 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1775,9/10/2019 23:48,15/05/2019 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1774,9/10/2019 23:48,15/05/2019 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1773,9/10/2019 23:48,15/05/2019 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1772,9/10/2019 23:48,15/05/2019 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1771,9/10/2019 23:48,15/05/2019 20:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1770,9/10/2019 23:48,15/05/2019 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1766,9/10/2019 23:48,22/03/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-1765,9/10/2019 23:48,22/03/2019 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1764,9/10/2019 23:48,22/03/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1763,9/10/2019 23:48,22/03/2019 20:29,5.0,284, Improper Access Control,nan
CVE-2019-1762,9/10/2019 23:48,28/03/2019 1:29,2.1,200, Information Exposure,nan
CVE-2019-1761,9/10/2019 23:48,28/03/2019 1:29,3.3,665, Improper Initialization,nan
CVE-2019-1760,9/10/2019 23:48,28/03/2019 1:29,7.1,20, Improper Input Validation,nan
CVE-2019-1759,9/10/2019 23:48,28/03/2019 1:29,5.0,284, Improper Access Control,nan
CVE-2019-1758,9/10/2019 23:47,28/03/2019 1:29,3.3,287, Improper Authentication,nan
CVE-2019-1757,9/10/2019 23:47,28/03/2019 1:29,4.3,295, Improper Certificate Validation,nan
CVE-2019-1756,9/10/2019 23:47,28/03/2019 1:29,9.0,20, Improper Input Validation,nan
CVE-2019-1755,9/10/2019 23:47,28/03/2019 1:29,9.0,20, Improper Input Validation,nan
CVE-2019-1754,9/10/2019 23:47,28/03/2019 1:29,9.0,20, Improper Input Validation,nan
CVE-2019-1753,9/10/2019 23:47,28/03/2019 0:29,9.0,20, Improper Input Validation,nan
CVE-2019-1752,9/10/2019 23:47,28/03/2019 0:29,7.8,20, Improper Input Validation,nan
CVE-2019-1751,9/10/2019 23:47,28/03/2019 0:29,7.8,20, Improper Input Validation,nan
CVE-2019-1750,9/10/2019 23:47,28/03/2019 0:29,6.1,388, 7PK – Errors,nan
CVE-2019-1749,9/10/2019 23:47,28/03/2019 0:29,6.1,20, Improper Input Validation,nan
CVE-2019-1748,9/10/2019 23:47,28/03/2019 0:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-1747,9/10/2019 23:47,28/03/2019 0:29,5.0,20, Improper Input Validation,nan
CVE-2019-1746,9/10/2019 23:47,28/03/2019 0:29,6.1,20, Improper Input Validation,nan
CVE-2019-1745,9/10/2019 23:47,28/03/2019 0:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1743,9/10/2019 23:47,28/03/2019 0:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1742,9/10/2019 23:47,28/03/2019 0:29,5.0,284, Improper Access Control,nan
CVE-2019-1741,9/10/2019 23:47,28/03/2019 0:29,7.8,20, Improper Input Validation,nan
CVE-2019-1740,9/10/2019 23:47,28/03/2019 0:29,7.8,20, Improper Input Validation,nan
CVE-2019-1739,9/10/2019 23:47,28/03/2019 0:29,7.8,20, Improper Input Validation,nan
CVE-2019-1738,9/10/2019 23:47,28/03/2019 0:29,7.8,20, Improper Input Validation,nan
CVE-2019-1737,9/10/2019 23:47,27/03/2019 23:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-1733,9/10/2019 23:47,15/05/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1732,9/10/2019 23:47,15/05/2019 17:29,6.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1727,9/10/2019 23:47,15/05/2019 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1725,9/10/2019 23:47,18/04/2019 1:29,3.6,20, Improper Input Validation,nan
CVE-2019-1724,9/10/2019 23:47,3/05/2019 17:29,6.8,287, Improper Authentication,nan
CVE-2019-1722,9/10/2019 23:47,18/04/2019 1:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1721,9/10/2019 23:47,18/04/2019 1:29,6.8,399, Resource Management Errors,nan
CVE-2019-1720,9/10/2019 23:47,18/04/2019 1:29,6.8,20, Improper Input Validation,nan
CVE-2019-1719,9/10/2019 23:47,18/04/2019 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1718,9/10/2019 23:47,17/04/2019 22:29,7.8,399, Resource Management Errors,nan
CVE-2019-1717,9/10/2019 23:47,15/05/2019 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1716,9/10/2019 23:47,22/03/2019 20:29,7.5,20, Improper Input Validation,nan
CVE-2019-1715,9/10/2019 23:47,3/05/2019 17:29,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2019-1713,9/10/2019 23:47,3/05/2019 17:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1712,9/10/2019 23:47,17/04/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2019-1711,9/10/2019 23:47,17/04/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2019-1710,9/10/2019 23:47,17/04/2019 22:29,7.5,20, Improper Input Validation,nan
CVE-2019-1709,9/10/2019 23:47,3/05/2019 16:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1708,9/10/2019 23:47,3/05/2019 16:29,7.8,404, Improper Resource Shutdown or Release,nan
CVE-2019-1707,9/10/2019 23:47,11/03/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1706,9/10/2019 23:47,3/05/2019 16:29,7.8,404, Improper Resource Shutdown or Release,nan
CVE-2019-1705,9/10/2019 23:47,3/05/2019 16:29,4.3,404, Improper Resource Shutdown or Release,nan
CVE-2019-1704,9/10/2019 23:47,3/05/2019 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1702,9/10/2019 23:47,11/03/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1701,9/10/2019 23:47,3/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1700,9/10/2019 23:47,21/02/2019 21:29,5.7,399, Resource Management Errors,nan
CVE-2019-1699,9/10/2019 23:47,3/05/2019 16:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1698,9/10/2019 23:47,21/02/2019 21:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1694,9/10/2019 23:47,3/05/2019 15:29,7.8,399, Resource Management Errors,nan
CVE-2019-1693,9/10/2019 23:47,3/05/2019 15:29,6.8,399, Resource Management Errors,nan
CVE-2019-1692,9/10/2019 23:47,3/05/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-1691,9/10/2019 23:47,21/02/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-1690,9/10/2019 23:47,11/03/2019 21:29,3.3,284, Improper Access Control,nan
CVE-2019-1689,9/10/2019 23:47,25/02/2019 17:29,4.9,20, Improper Input Validation,nan
CVE-2019-1688,9/10/2019 23:47,12/02/2019 19:29,5.6,798, Use of Hard-coded Credentials,nan
CVE-2019-1686,9/10/2019 23:47,17/04/2019 22:29,5.0,284, Improper Access Control,nan
CVE-2019-1685,9/10/2019 23:47,21/02/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1684,9/10/2019 23:47,21/02/2019 20:29,6.1,399, Resource Management Errors,nan
CVE-2019-1683,9/10/2019 23:47,25/02/2019 17:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-1682,9/10/2019 23:47,3/05/2019 15:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1681,9/10/2019 23:47,21/02/2019 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1680,9/10/2019 23:47,7/02/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-1679,9/10/2019 23:47,7/02/2019 21:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1678,9/10/2019 23:47,7/02/2019 20:29,4.0,20, Improper Input Validation,nan
CVE-2019-1677,9/10/2019 23:47,7/02/2019 19:29,1.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1676,9/10/2019 23:47,8/02/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2019-1675,9/10/2019 23:47,7/02/2019 20:29,7.8,798, Use of Hard-coded Credentials,nan
CVE-2019-1674,9/10/2019 23:47,28/02/2019 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1673,9/10/2019 23:47,8/02/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1672,9/10/2019 23:47,8/02/2019 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1671,9/10/2019 23:47,7/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1670,9/10/2019 23:47,7/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1669,9/10/2019 23:47,24/01/2019 16:29,5.0,693, Protection Mechanism Failure,nan
CVE-2019-1668,9/10/2019 23:47,24/01/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1667,9/10/2019 23:47,21/02/2019 19:29,2.1,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-1666,9/10/2019 23:47,21/02/2019 19:29,5.0,284, Improper Access Control,nan
CVE-2019-1665,9/10/2019 23:47,21/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1664,9/10/2019 23:47,21/02/2019 19:29,7.2,284, Improper Access Control,nan
CVE-2019-1662,9/10/2019 23:47,21/02/2019 17:29,6.4,287, Improper Authentication,nan
CVE-2019-1661,9/10/2019 23:47,7/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1660,9/10/2019 23:47,7/02/2019 21:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1659,9/10/2019 23:47,21/02/2019 15:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-1658,9/10/2019 23:47,24/01/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1657,9/10/2019 23:47,24/01/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1656,9/10/2019 23:47,24/01/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2019-1655,9/10/2019 23:47,24/01/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1654,9/10/2019 23:47,17/04/2019 22:29,7.2,284, Improper Access Control,nan
CVE-2019-1651,9/10/2019 23:47,24/01/2019 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1650,9/10/2019 23:47,24/01/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-1649,9/10/2019 23:47,13/05/2019 19:29,7.2,284, Improper Access Control,nan
CVE-2019-1648,9/10/2019 23:47,24/01/2019 15:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1647,9/10/2019 23:47,24/01/2019 15:29,7.7,284, Improper Access Control,nan
CVE-2019-1646,9/10/2019 23:47,24/01/2019 15:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1645,9/10/2019 23:47,24/01/2019 15:29,3.3,200, Information Exposure,nan
CVE-2019-1644,9/10/2019 23:47,23/01/2019 23:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1643,9/10/2019 23:47,23/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1642,9/10/2019 23:47,23/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1641,9/10/2019 23:47,23/01/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1640,9/10/2019 23:47,23/01/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1639,9/10/2019 23:47,23/01/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1638,9/10/2019 23:47,23/01/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1637,9/10/2019 23:47,23/01/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1636,9/10/2019 23:47,23/01/2019 22:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1635,9/10/2019 23:47,3/05/2019 15:29,7.8,399, Resource Management Errors,nan
CVE-2019-1634,9/10/2019 23:47,21/08/2019 19:15,9.0,20, Improper Input Validation,nan
CVE-2019-1632,9/10/2019 23:47,20/06/2019 3:15,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1631,9/10/2019 23:47,20/06/2019 3:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-1630,9/10/2019 23:47,20/06/2019 3:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1629,9/10/2019 23:47,20/06/2019 3:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-1628,9/10/2019 23:47,20/06/2019 3:15,2.1,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-1627,9/10/2019 23:47,20/06/2019 3:15,4.0,200, Information Exposure,nan
CVE-2019-1626,9/10/2019 23:47,20/06/2019 3:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-1625,9/10/2019 23:47,20/06/2019 3:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1624,9/10/2019 23:47,20/06/2019 3:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1623,9/10/2019 23:47,20/06/2019 3:15,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1618,9/10/2019 23:47,11/03/2019 21:29,7.2,275, Permission Issues,nan
CVE-2019-1617,9/10/2019 23:47,11/03/2019 21:29,6.1,913, Improper Control of Dynamically-Managed Code Resources,nan
CVE-2019-1616,9/10/2019 23:47,11/03/2019 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1615,9/10/2019 23:47,11/03/2019 21:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-1614,9/10/2019 23:47,11/03/2019 21:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1613,9/10/2019 23:47,11/03/2019 21:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1612,9/10/2019 23:47,11/03/2019 21:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1611,9/10/2019 23:47,11/03/2019 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1610,9/10/2019 23:47,11/03/2019 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1609,9/10/2019 23:47,8/03/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1608,9/10/2019 23:47,8/03/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1607,9/10/2019 23:47,8/03/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1606,9/10/2019 23:47,8/03/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1605,9/10/2019 23:47,8/03/2019 20:29,7.2,20, Improper Input Validation,nan
CVE-2019-1604,9/10/2019 23:47,8/03/2019 19:29,7.2,285, Improper Authorization,nan
CVE-2019-1603,9/10/2019 23:47,8/03/2019 19:29,4.6,285, Improper Authorization,nan
CVE-2019-1602,9/10/2019 23:47,8/03/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1601,9/10/2019 23:47,8/03/2019 18:29,7.2,284, Improper Access Control,nan
CVE-2019-1600,9/10/2019 23:47,7/03/2019 20:29,2.1,200, Information Exposure,nan
CVE-2019-1599,9/10/2019 23:47,7/03/2019 20:29,7.8,399, Resource Management Errors,nan
CVE-2019-1598,9/10/2019 23:47,7/03/2019 19:29,7.8,20, Improper Input Validation,nan
CVE-2019-1597,9/10/2019 23:47,7/03/2019 19:29,7.8,20, Improper Input Validation,nan
CVE-2019-1596,9/10/2019 23:47,7/03/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1595,9/10/2019 23:47,6/03/2019 22:29,6.1,913, Improper Control of Dynamically-Managed Code Resources,nan
CVE-2019-1594,9/10/2019 23:47,6/03/2019 22:29,6.1,20, Improper Input Validation,nan
CVE-2019-1593,9/10/2019 23:47,6/03/2019 22:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1592,9/10/2019 23:47,3/05/2019 15:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1591,9/10/2019 23:47,6/03/2019 22:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1590,9/10/2019 23:47,3/05/2019 15:29,6.8,295, Improper Certificate Validation,nan
CVE-2019-1589,9/10/2019 23:47,3/05/2019 15:29,2.1,200, Information Exposure,nan
CVE-2019-1588,9/10/2019 23:47,6/03/2019 21:29,2.1,20, Improper Input Validation,nan
CVE-2019-1587,9/10/2019 23:47,3/05/2019 15:29,4.0,399, Resource Management Errors,nan
CVE-2019-1586,9/10/2019 23:47,3/05/2019 15:29,2.1,320, Key Management Errors,nan
CVE-2019-1585,9/10/2019 23:47,6/03/2019 21:29,7.2,16, Configuration,nan
CVE-2019-15637,9/10/2019 23:46,26/08/2019 17:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-15272,9/10/2019 23:46,2/10/2019 19:15,6.4,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2019-15108,9/10/2019 23:46,16/08/2019 4:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15068,9/10/2019 23:46,25/09/2019 19:15,10.0,287, Improper Authentication,nan
CVE-2019-14997,9/10/2019 23:46,11/09/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-14844,9/10/2019 23:46,26/09/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2019-14826,9/10/2019 23:46,17/09/2019 16:15,2.1,613, Insufficient Session Expiration,nan
CVE-2019-14693,9/10/2019 23:46,8/08/2019 18:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-14495,9/10/2019 23:46,1/08/2019 17:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-14431,9/10/2019 23:46,29/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14418,9/10/2019 23:46,29/07/2019 20:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14417,9/10/2019 23:46,29/07/2019 20:15,9.0,20, Improper Input Validation,nan
CVE-2019-14416,9/10/2019 23:46,29/07/2019 20:15,9.0,20, Improper Input Validation,nan
CVE-2019-14415,9/10/2019 23:46,29/07/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13922,9/10/2019 23:46,13/09/2019 17:15,4.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2019-13920,9/10/2019 23:46,13/09/2019 17:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13919,9/10/2019 23:46,13/09/2019 17:15,4.0,200, Information Exposure,nan
CVE-2019-13918,9/10/2019 23:46,13/09/2019 17:15,7.5,521, Weak Password Requirements,nan
CVE-2019-13658,9/10/2019 23:46,2/10/2019 17:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-13558,9/10/2019 23:46,18/09/2019 22:15,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13556,9/10/2019 23:46,18/09/2019 22:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13552,9/10/2019 23:46,18/09/2019 21:15,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13550,9/10/2019 23:46,18/09/2019 21:15,9.0,863, Incorrect Authorization,nan
CVE-2019-13548,9/10/2019 23:46,13/09/2019 17:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-13544,9/10/2019 23:46,11/09/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-13542,9/10/2019 23:46,17/09/2019 19:15,4.0,476, NULL Pointer Dereference,nan
CVE-2019-13540,9/10/2019 23:46,11/09/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13538,9/10/2019 23:46,17/09/2019 20:15,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13536,9/10/2019 23:46,11/09/2019 21:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-13534,9/10/2019 23:46,12/09/2019 20:15,6.5,494, Download of Code Without Integrity Check,nan
CVE-2019-13532,9/10/2019 23:46,13/09/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13530,9/10/2019 23:46,12/09/2019 20:15,6.5,798, Use of Hard-coded Credentials,nan
CVE-2019-13528,9/10/2019 23:46,24/09/2019 22:15,2.1,287, Improper Authentication,nan
CVE-2019-13527,9/10/2019 23:46,24/09/2019 22:15,6.8,824, Access of Uninitialized Pointer,nan
CVE-2019-13526,9/10/2019 23:46,30/08/2019 9:15,6.5,287, Improper Authentication,nan
CVE-2019-13523,9/10/2019 23:46,26/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-13522,9/10/2019 23:46,4/09/2019 15:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13518,9/10/2019 23:46,4/09/2019 15:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13517,9/10/2019 23:46,6/09/2019 14:15,6.5,384, Session Fixation,nan
CVE-2019-13516,9/10/2019 23:46,15/08/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13515,9/10/2019 23:46,15/08/2019 19:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-13514,9/10/2019 23:46,15/08/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-13513,9/10/2019 23:46,15/08/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13512,9/10/2019 23:46,15/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-13511,9/10/2019 23:46,15/08/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-13458,9/10/2019 23:46,21/08/2019 14:15,4.0,255, Credentials Management,nan
CVE-2019-13423,9/10/2019 23:46,23/08/2019 14:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13422,9/10/2019 23:46,23/08/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-13421,9/10/2019 23:46,23/08/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-13420,9/10/2019 23:46,13/08/2019 15:15,4.3,200, Information Exposure,nan
CVE-2019-13419,9/10/2019 23:46,13/08/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-13418,9/10/2019 23:46,12/08/2019 22:15,5.0,129, Improper Validation of Array Index,nan
CVE-2019-13417,9/10/2019 23:46,12/08/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-13416,9/10/2019 23:46,13/08/2019 19:15,3.5,285, Improper Authorization,nan
CVE-2019-13415,9/10/2019 23:46,13/08/2019 19:15,3.5,285, Improper Authorization,nan
CVE-2019-13408,9/10/2019 23:46,29/08/2019 1:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13407,9/10/2019 23:46,29/08/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13343,9/10/2019 23:46,2/10/2019 16:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13332,9/10/2019 23:46,3/10/2019 22:15,6.8,416, Use After Free,nan
CVE-2019-13331,9/10/2019 23:46,3/10/2019 22:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13330,9/10/2019 23:46,3/10/2019 22:15,6.8,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2019-13329,9/10/2019 23:46,3/10/2019 22:15,6.8,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2019-13328,9/10/2019 23:46,3/10/2019 22:15,6.8,416, Use After Free,nan
CVE-2019-13327,9/10/2019 23:46,3/10/2019 22:15,6.8,416, Use After Free,nan
CVE-2019-13326,9/10/2019 23:46,3/10/2019 22:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13325,9/10/2019 23:46,3/10/2019 22:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13324,9/10/2019 23:46,3/10/2019 22:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13323,9/10/2019 23:46,3/10/2019 22:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-13320,9/10/2019 23:46,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-13319,9/10/2019 23:46,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-13318,9/10/2019 23:46,4/10/2019 18:15,4.3,134, Use of Externally-Controlled Format String,nan
CVE-2019-13316,9/10/2019 23:46,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-13315,9/10/2019 23:46,4/10/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-13156,9/10/2019 23:46,3/09/2019 15:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13071,9/10/2019 23:46,10/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13014,9/10/2019 23:46,23/08/2019 17:15,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-13013,9/10/2019 23:46,23/08/2019 17:15,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-12936,9/10/2019 23:46,23/06/2019 23:15,6.0,20, Improper Input Validation,nan
CVE-2019-12834,9/10/2019 23:46,16/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12810,9/10/2019 23:46,30/08/2019 17:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-12809,9/10/2019 23:46,15/08/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-12808,9/10/2019 23:46,13/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12807,9/10/2019 23:46,13/08/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12806,9/10/2019 23:46,13/08/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12805,9/10/2019 23:46,9/08/2019 17:15,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12804,9/10/2019 23:46,10/07/2019 20:15,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-12803,9/10/2019 23:46,10/07/2019 20:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12799,9/10/2019 23:46,13/06/2019 20:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12728,9/10/2019 23:46,4/06/2019 13:29,6.8,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2019-12717,9/10/2019 23:46,25/09/2019 21:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12716,9/10/2019 23:46,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12715,9/10/2019 23:46,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12714,9/10/2019 23:46,2/10/2019 19:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-12713,9/10/2019 23:46,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12712,9/10/2019 23:46,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12711,9/10/2019 23:46,2/10/2019 19:15,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-12710,9/10/2019 23:46,2/10/2019 19:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12709,9/10/2019 23:46,25/09/2019 21:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12686,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12685,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12684,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12683,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12682,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12681,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12680,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12679,9/10/2019 23:46,2/10/2019 19:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12678,9/10/2019 23:46,2/10/2019 19:15,5.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-12677,9/10/2019 23:46,2/10/2019 19:15,4.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-12675,9/10/2019 23:46,2/10/2019 19:15,7.2,116, Improper Encoding or Escaping of Output,nan
CVE-2019-12674,9/10/2019 23:46,2/10/2019 19:15,7.2,116, Improper Encoding or Escaping of Output,nan
CVE-2019-12673,9/10/2019 23:46,2/10/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-12672,9/10/2019 23:46,25/09/2019 21:15,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-12671,9/10/2019 23:46,25/09/2019 21:15,7.2,863, Incorrect Authorization,nan
CVE-2019-12670,9/10/2019 23:46,25/09/2019 21:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-12669,9/10/2019 23:46,25/09/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-12668,9/10/2019 23:46,25/09/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12667,9/10/2019 23:46,25/09/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12666,9/10/2019 23:46,25/09/2019 21:15,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12665,9/10/2019 23:46,25/09/2019 21:15,5.8,326, Inadequate Encryption Strength,nan
CVE-2019-12664,9/10/2019 23:46,25/09/2019 21:15,5.0,287, Improper Authentication,nan
CVE-2019-12663,9/10/2019 23:46,25/09/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-12662,9/10/2019 23:46,25/09/2019 21:15,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-12661,9/10/2019 23:45,25/09/2019 21:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12660,9/10/2019 23:45,25/09/2019 21:15,4.9,20, Improper Input Validation,nan
CVE-2019-12659,9/10/2019 23:45,25/09/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-12658,9/10/2019 23:45,25/09/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-12657,9/10/2019 23:45,25/09/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-12656,9/10/2019 23:45,25/09/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-12655,9/10/2019 23:45,25/09/2019 21:15,7.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-12654,9/10/2019 23:45,25/09/2019 21:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-12653,9/10/2019 23:45,25/09/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-12652,9/10/2019 23:45,25/09/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-12651,9/10/2019 23:45,25/09/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12650,9/10/2019 23:45,25/09/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12649,9/10/2019 23:45,25/09/2019 20:15,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-12648,9/10/2019 23:45,25/09/2019 20:15,9.0,863, Incorrect Authorization,nan
CVE-2019-12647,9/10/2019 23:45,25/09/2019 20:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-12646,9/10/2019 23:45,25/09/2019 20:15,7.8,665, Improper Initialization,nan
CVE-2019-12645,9/10/2019 23:45,5/09/2019 2:15,7.2,20, Improper Input Validation,nan
CVE-2019-12644,9/10/2019 23:45,5/09/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12643,9/10/2019 23:45,28/08/2019 19:15,10.0,287, Improper Authentication,nan
CVE-2019-12635,9/10/2019 23:45,5/09/2019 2:15,4.0,285, Improper Authorization,nan
CVE-2019-12634,9/10/2019 23:45,21/08/2019 19:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-12633,9/10/2019 23:45,5/09/2019 2:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-12632,9/10/2019 23:45,5/09/2019 2:15,5.0,20, Improper Input Validation,nan
CVE-2019-12631,9/10/2019 23:45,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12630,9/10/2019 23:45,2/10/2019 19:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12627,9/10/2019 23:45,21/08/2019 19:15,5.0,284, Improper Access Control,nan
CVE-2019-12626,9/10/2019 23:45,21/08/2019 19:15,3.5,20, Improper Input Validation,nan
CVE-2019-12624,9/10/2019 23:45,21/08/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12623,9/10/2019 23:45,21/08/2019 18:15,4.0,538, File and Directory Information Exposure,nan
CVE-2019-12622,9/10/2019 23:45,21/08/2019 18:15,7.2,275, Permission Issues,nan
CVE-2019-12621,9/10/2019 23:45,21/08/2019 18:15,5.8,320, Key Management Errors,nan
CVE-2019-12620,9/10/2019 23:45,18/09/2019 17:15,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-12591,9/10/2019 23:45,3/06/2019 13:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12494,9/10/2019 23:45,5/06/2019 19:29,5.0,284, Improper Access Control,nan
CVE-2019-12328,9/10/2019 23:45,22/07/2019 18:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12327,9/10/2019 23:45,22/07/2019 18:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-12326,9/10/2019 23:45,22/07/2019 17:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12325,9/10/2019 23:45,22/07/2019 16:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12324,9/10/2019 23:45,22/07/2019 16:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12091,9/10/2019 23:45,26/09/2019 16:15,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-11932,9/10/2019 23:45,3/10/2019 22:15,7.5,415, Double Free,nan
CVE-2019-11927,9/10/2019 23:45,27/09/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-11926,9/10/2019 23:45,6/09/2019 19:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-11925,9/10/2019 23:45,6/09/2019 19:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-11899,9/10/2019 23:45,12/09/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-11898,9/10/2019 23:45,12/09/2019 19:15,6.5,798, Use of Hard-coded Credentials,nan
CVE-2019-11897,9/10/2019 23:45,21/08/2019 18:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-11896,9/10/2019 23:45,29/05/2019 21:29,6.8,275, Permission Issues,nan
CVE-2019-11895,9/10/2019 23:45,29/05/2019 21:29,7.1,284, Improper Access Control,nan
CVE-2019-11894,9/10/2019 23:45,29/05/2019 21:29,2.9,284, Improper Access Control,nan
CVE-2019-11893,9/10/2019 23:45,29/05/2019 20:29,4.9,275, Permission Issues,nan
CVE-2019-11892,9/10/2019 23:45,29/05/2019 20:29,6.8,284, Improper Access Control,nan
CVE-2019-11891,9/10/2019 23:45,29/05/2019 20:29,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-11829,9/10/2019 23:45,30/06/2019 15:15,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-11828,9/10/2019 23:45,30/06/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11827,9/10/2019 23:45,30/06/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11826,9/10/2019 23:45,30/06/2019 15:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11825,9/10/2019 23:45,30/06/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11822,9/10/2019 23:45,30/06/2019 15:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11821,9/10/2019 23:45,30/06/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11820,9/10/2019 23:45,9/05/2019 6:29,2.1,255, Credentials Management,nan
CVE-2019-11778,9/10/2019 23:45,18/09/2019 23:15,5.5,416, Use After Free,nan
CVE-2019-11777,9/10/2019 23:45,11/09/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-11776,9/10/2019 23:45,9/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11774,9/10/2019 23:45,12/09/2019 18:15,5.8,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2019-11773,9/10/2019 23:45,12/09/2019 18:15,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11771,9/10/2019 23:45,17/07/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-11770,9/10/2019 23:45,14/06/2019 14:29,6.8,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2019-11654,9/10/2019 23:45,23/08/2019 18:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11628,9/10/2019 23:45,1/05/2019 3:29,4.0,284, Improper Access Control,nan
CVE-2019-11603,9/10/2019 23:45,21/08/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11602,9/10/2019 23:45,21/08/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-11601,9/10/2019 23:45,21/08/2019 20:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11543,9/10/2019 23:45,26/04/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11541,9/10/2019 23:45,26/04/2019 2:29,5.0,287, Improper Authentication,nan
CVE-2019-11476,9/10/2019 23:45,29/08/2019 15:15,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-11457,9/10/2019 23:45,27/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11405,9/10/2019 23:45,22/04/2019 11:29,5.8,254, 7PK – Security Features,nan
CVE-2019-11404,9/10/2019 23:45,22/04/2019 11:29,4.3,254, 7PK – Security Features,nan
CVE-2019-11280,9/10/2019 23:45,20/09/2019 19:15,6.5,269, Improper Privilege Management,nan
CVE-2019-11279,9/10/2019 23:45,26/09/2019 22:15,6.5,269, Improper Privilege Management,nan
CVE-2019-11278,9/10/2019 23:45,26/09/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-11277,9/10/2019 23:45,23/09/2019 18:15,5.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11276,9/10/2019 23:45,19/08/2019 15:15,4.1,284, Improper Access Control,nan
CVE-2019-11275,9/10/2019 23:45,1/10/2019 15:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-11274,9/10/2019 23:45,9/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11273,9/10/2019 23:45,23/07/2019 23:15,4.0,200, Information Exposure,nan
CVE-2019-11268,9/10/2019 23:45,11/07/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-11248,9/10/2019 23:45,29/08/2019 1:15,6.4,200, Information Exposure,nan
CVE-2019-11211,9/10/2019 23:45,18/09/2019 23:15,9.0,20, Improper Input Validation,nan
CVE-2019-11210,9/10/2019 23:45,18/09/2019 23:15,10.0,20, Improper Input Validation,nan
CVE-2019-11209,9/10/2019 23:45,20/08/2019 18:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-11208,9/10/2019 23:45,8/08/2019 16:15,6.5,285, Improper Authorization,nan
CVE-2019-11207,9/10/2019 23:45,13/08/2019 21:15,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11203,9/10/2019 23:45,24/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11063,9/10/2019 23:45,29/08/2019 1:15,8.3,284, Improper Access Control,nan
CVE-2019-11062,9/10/2019 23:45,11/07/2019 19:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-11060,9/10/2019 23:45,29/08/2019 1:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-11032,9/10/2019 23:45,24/04/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10996,9/10/2019 23:45,23/09/2019 16:15,6.8,416, Use After Free,nan
CVE-2019-10994,9/10/2019 23:45,5/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-10992,9/10/2019 23:45,24/07/2019 15:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-10990,9/10/2019 23:45,23/09/2019 16:15,4.3,798, Use of Hard-coded Credentials,nan
CVE-2019-10988,9/10/2019 23:45,4/09/2019 14:15,3.6,200, Information Exposure,nan
CVE-2019-10984,9/10/2019 23:45,23/09/2019 16:15,6.8,824, Access of Uninitialized Pointer,nan
CVE-2019-10982,9/10/2019 23:45,24/07/2019 15:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10980,9/10/2019 23:45,5/08/2019 19:15,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-10978,9/10/2019 23:45,23/09/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10977,9/10/2019 23:45,23/05/2019 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-10976,9/10/2019 23:45,26/07/2019 0:15,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10975,9/10/2019 23:45,2/07/2019 20:15,3.3,125, Out-of-bounds Read,nan
CVE-2019-10974,9/10/2019 23:45,26/07/2019 0:15,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10973,9/10/2019 23:45,8/07/2019 18:15,9.0,20, Improper Input Validation,nan
CVE-2019-10972,9/10/2019 23:45,26/07/2019 0:15,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-10971,9/10/2019 23:45,12/06/2019 16:29,6.8,426, Untrusted Search Path,nan
CVE-2019-10968,9/10/2019 23:45,24/07/2019 15:15,2.1,284, Improper Access Control,nan
CVE-2019-10966,9/10/2019 23:45,10/07/2019 18:15,5.0,287, Improper Authentication,nan
CVE-2019-10962,9/10/2019 23:45,13/06/2019 21:29,5.0,284, Improper Access Control,nan
CVE-2019-10961,9/10/2019 23:45,2/08/2019 17:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-10960,9/10/2019 23:45,20/08/2019 21:15,5.0,255, Credentials Management,nan
CVE-2019-10959,9/10/2019 23:45,13/06/2019 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10954,9/10/2019 23:45,1/05/2019 19:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10952,9/10/2019 23:45,1/05/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10951,9/10/2019 23:45,17/04/2019 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10950,9/10/2019 23:45,30/04/2019 17:29,10.0,287, Improper Authentication,nan
CVE-2019-10949,9/10/2019 23:45,17/04/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-10948,9/10/2019 23:45,30/04/2019 17:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-10947,9/10/2019 23:45,17/04/2019 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10943,9/10/2019 23:45,13/08/2019 19:15,5.0,284, Improper Access Control,nan
CVE-2019-10942,9/10/2019 23:45,13/08/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-10938,9/10/2019 23:45,2/08/2019 14:15,7.5,284, Improper Access Control,nan
CVE-2019-10931,9/10/2019 23:45,11/07/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-10930,9/10/2019 23:45,11/07/2019 22:15,6.4,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10929,9/10/2019 23:45,13/08/2019 19:15,4.3,284, Improper Access Control,nan
CVE-2019-10928,9/10/2019 23:45,13/08/2019 19:15,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10927,9/10/2019 23:45,13/08/2019 19:15,4.0,20, Improper Input Validation,nan
CVE-2019-10926,9/10/2019 23:45,12/06/2019 14:29,2.6,310, Cryptographic Issues,nan
CVE-2019-10925,9/10/2019 23:45,12/06/2019 14:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-10882,9/10/2019 23:45,26/09/2019 16:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10880,9/10/2019 23:45,12/04/2019 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-10868,9/10/2019 23:44,5/04/2019 1:29,4.0,284, Improper Access Control,nan
CVE-2019-10435,9/10/2019 23:44,1/10/2019 14:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-10434,9/10/2019 23:44,1/10/2019 14:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-10432,9/10/2019 23:44,1/10/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10431,9/10/2019 23:44,1/10/2019 14:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10427,9/10/2019 23:44,25/09/2019 16:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-10426,9/10/2019 23:44,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10425,9/10/2019 23:44,25/09/2019 16:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10424,9/10/2019 23:44,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10423,9/10/2019 23:44,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10422,9/10/2019 23:44,25/09/2019 16:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10421,9/10/2019 23:44,25/09/2019 16:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10420,9/10/2019 23:44,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10419,9/10/2019 23:44,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10418,9/10/2019 23:44,25/09/2019 16:15,6.5,269, Improper Privilege Management,nan
CVE-2019-10417,9/10/2019 23:44,25/09/2019 16:15,6.5,269, Improper Privilege Management,nan
CVE-2019-10416,9/10/2019 23:44,25/09/2019 16:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10415,9/10/2019 23:44,25/09/2019 16:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10414,9/10/2019 23:44,25/09/2019 16:15,3.5,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10413,9/10/2019 23:44,25/09/2019 16:15,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10412,9/10/2019 23:44,25/09/2019 16:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-10411,9/10/2019 23:44,25/09/2019 16:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-10410,9/10/2019 23:44,25/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10409,9/10/2019 23:44,25/09/2019 16:15,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-10408,9/10/2019 23:44,25/09/2019 16:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10407,9/10/2019 23:44,25/09/2019 16:15,4.0,200, Information Exposure,nan
CVE-2019-10405,9/10/2019 23:44,25/09/2019 16:15,4.0,200, Information Exposure,nan
CVE-2019-10404,9/10/2019 23:44,25/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10403,9/10/2019 23:44,25/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10402,9/10/2019 23:44,25/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10401,9/10/2019 23:44,25/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10400,9/10/2019 23:44,12/09/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-10399,9/10/2019 23:44,12/09/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-10398,9/10/2019 23:44,12/09/2019 14:15,2.1,522, Insufficiently Protected Credentials,nan
CVE-2019-10397,9/10/2019 23:44,12/09/2019 14:15,2.6,522, Insufficiently Protected Credentials,nan
CVE-2019-10396,9/10/2019 23:44,12/09/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10395,9/10/2019 23:44,12/09/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10394,9/10/2019 23:44,12/09/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-10393,9/10/2019 23:44,12/09/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-10392,9/10/2019 23:44,12/09/2019 14:15,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-10391,9/10/2019 23:44,28/08/2019 16:15,4.3,200, Information Exposure,nan
CVE-2019-10390,9/10/2019 23:44,28/08/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-10389,9/10/2019 23:44,7/08/2019 15:15,4.0,275, Permission Issues,nan
CVE-2019-10388,9/10/2019 23:44,7/08/2019 15:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10387,9/10/2019 23:44,7/08/2019 15:15,4.0,275, Permission Issues,nan
CVE-2019-10386,9/10/2019 23:44,7/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10382,9/10/2019 23:44,7/08/2019 15:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-10381,9/10/2019 23:44,7/08/2019 15:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-10380,9/10/2019 23:44,7/08/2019 15:15,6.5,254, 7PK – Security Features,nan
CVE-2019-10379,9/10/2019 23:44,7/08/2019 15:15,4.0,255, Credentials Management,nan
CVE-2019-10377,9/10/2019 23:44,7/08/2019 15:15,4.0,275, Permission Issues,nan
CVE-2019-10376,9/10/2019 23:44,7/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10375,9/10/2019 23:44,7/08/2019 15:15,4.0,200, Information Exposure,nan
CVE-2019-10374,9/10/2019 23:44,7/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10373,9/10/2019 23:44,7/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10372,9/10/2019 23:44,7/08/2019 15:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-10371,9/10/2019 23:44,7/08/2019 15:15,5.0,384, Session Fixation,nan
CVE-2019-10370,9/10/2019 23:44,7/08/2019 15:15,4.3,255, Credentials Management,nan
CVE-2019-10369,9/10/2019 23:44,7/08/2019 15:15,4.0,275, Permission Issues,nan
CVE-2019-10368,9/10/2019 23:44,7/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10367,9/10/2019 23:44,7/08/2019 15:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-10365,9/10/2019 23:44,31/07/2019 13:15,4.0,200, Information Exposure,nan
CVE-2019-10364,9/10/2019 23:44,31/07/2019 13:15,2.1,200, Information Exposure,nan
CVE-2019-10363,9/10/2019 23:44,31/07/2019 13:15,4.0,200, Information Exposure,nan
CVE-2019-10362,9/10/2019 23:44,31/07/2019 13:15,5.5,20, Improper Input Validation,nan
CVE-2019-10360,9/10/2019 23:44,31/07/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10359,9/10/2019 23:44,31/07/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10358,9/10/2019 23:44,31/07/2019 13:15,4.0,20, Improper Input Validation,nan
CVE-2019-10349,9/10/2019 23:44,11/07/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10347,9/10/2019 23:44,11/07/2019 14:15,4.0,255, Credentials Management,nan
CVE-2019-10346,9/10/2019 23:44,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10345,9/10/2019 23:44,31/07/2019 13:15,2.1,255, Credentials Management,nan
CVE-2019-10344,9/10/2019 23:44,31/07/2019 13:15,4.0,275, Permission Issues,nan
CVE-2019-10343,9/10/2019 23:44,31/07/2019 13:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-10342,9/10/2019 23:44,11/07/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-10341,9/10/2019 23:44,11/07/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-10340,9/10/2019 23:44,11/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10319,9/10/2019 23:44,21/05/2019 13:29,4.0,275, Permission Issues,nan
CVE-2019-10312,9/10/2019 23:44,30/04/2019 13:29,4.0,255, Credentials Management,nan
CVE-2019-10306,9/10/2019 23:44,18/04/2019 17:29,6.5,254, 7PK – Security Features,nan
CVE-2019-10305,9/10/2019 23:44,18/04/2019 17:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-10304,9/10/2019 23:44,18/04/2019 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10303,9/10/2019 23:44,18/04/2019 17:29,4.0,255, Credentials Management,nan
CVE-2019-10302,9/10/2019 23:44,18/04/2019 17:29,4.0,255, Credentials Management,nan
CVE-2019-10301,9/10/2019 23:44,18/04/2019 17:29,4.0,255, Credentials Management,nan
CVE-2019-10299,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10298,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10297,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10296,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10295,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10294,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10293,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-10292,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10291,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10290,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-10289,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10288,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10287,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10286,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10285,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10284,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10283,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10282,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10281,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10280,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10279,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-10278,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10277,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-10248,9/10/2019 23:44,22/04/2019 21:29,6.8,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2019-10246,9/10/2019 23:44,22/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-10244,9/10/2019 23:44,9/04/2019 16:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10243,9/10/2019 23:44,9/04/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-10242,9/10/2019 23:44,9/04/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10240,9/10/2019 23:44,3/04/2019 18:29,6.8,310, Cryptographic Issues,nan
CVE-2019-10212,9/10/2019 23:44,2/10/2019 19:15,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-10202,9/10/2019 23:44,1/10/2019 15:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10201,9/10/2019 23:44,14/08/2019 17:15,5.5,287, Improper Authentication,nan
CVE-2019-1020011,9/10/2019 23:44,29/07/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2019-10199,9/10/2019 23:44,14/08/2019 17:15,6.8,20, Improper Input Validation,nan
CVE-2019-10198,9/10/2019 23:44,31/07/2019 22:15,4.0,287, Improper Authentication,nan
CVE-2019-10183,9/10/2019 23:44,3/07/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-10175,9/10/2019 23:44,28/06/2019 20:15,4.0,284, Improper Access Control,nan
CVE-2019-10173,9/10/2019 23:44,23/07/2019 13:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10171,9/10/2019 23:44,2/08/2019 14:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-10168,9/10/2019 23:44,2/08/2019 13:15,4.6,284, Improper Access Control,nan
CVE-2019-10167,9/10/2019 23:44,2/08/2019 13:15,4.6,284, Improper Access Control,nan
CVE-2019-10166,9/10/2019 23:44,2/08/2019 13:15,4.6,284, Improper Access Control,nan
CVE-2019-10165,9/10/2019 23:44,30/07/2019 23:15,2.1,200, Information Exposure,nan
CVE-2019-10161,9/10/2019 23:44,30/07/2019 23:15,7.2,284, Improper Access Control,nan
CVE-2019-10157,9/10/2019 23:44,12/06/2019 14:29,2.1,287, Improper Authentication,nan
CVE-2019-10154,9/10/2019 23:44,26/06/2019 19:15,5.0,284, Improper Access Control,nan
CVE-2019-10153,9/10/2019 23:44,30/07/2019 23:15,4.0,172, Encoding Error,nan
CVE-2019-10150,9/10/2019 23:44,12/06/2019 14:29,4.3,287, Improper Authentication,nan
CVE-2019-10147,9/10/2019 23:44,3/06/2019 19:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-10145,9/10/2019 23:44,3/06/2019 19:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-10144,9/10/2019 23:44,3/06/2019 19:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-10142,9/10/2019 23:44,30/07/2019 17:15,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-10138,9/10/2019 23:44,30/07/2019 17:15,6.5,284, Improper Access Control,nan
CVE-2019-10137,9/10/2019 23:44,2/07/2019 20:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10136,9/10/2019 23:44,2/07/2019 20:15,4.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-10135,9/10/2019 23:44,11/07/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2019-10134,9/10/2019 23:44,26/06/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-10133,9/10/2019 23:44,26/06/2019 19:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-10130,9/10/2019 23:44,30/07/2019 17:15,4.0,284, Improper Access Control,nan
CVE-2019-10129,9/10/2019 23:44,30/07/2019 17:15,4.0,200, Information Exposure,nan
CVE-2019-1010299,9/10/2019 23:44,15/07/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-1010283,9/10/2019 23:44,17/07/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-1010275,9/10/2019 23:44,17/07/2019 21:15,7.5,295, Improper Certificate Validation,nan
CVE-2019-1010237,9/10/2019 23:44,22/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010218,9/10/2019 23:44,22/07/2019 18:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010209,9/10/2019 23:44,23/07/2019 14:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1010200,9/10/2019 23:44,23/07/2019 18:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1010178,9/10/2019 23:44,24/07/2019 14:15,7.5,284, Improper Access Control,nan
CVE-2019-1010162,9/10/2019 23:44,23/07/2019 14:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-1010123,9/10/2019 23:44,23/07/2019 13:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1010091,9/10/2019 23:44,17/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010062,9/10/2019 23:44,16/07/2019 13:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1010018,9/10/2019 23:44,16/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10098,9/10/2019 23:44,25/09/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-1003099,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003098,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003097,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003096,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003095,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003094,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003093,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003092,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003091,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003090,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003089,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003088,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003087,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003086,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003085,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003084,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003083,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003082,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003081,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003080,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003079,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003078,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003077,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003076,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003075,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003074,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003073,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003072,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003071,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003070,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003069,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003068,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003067,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003066,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003065,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003064,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003063,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003062,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003061,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003060,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003059,9/10/2019 23:44,4/04/2019 16:29,4.0,275, Permission Issues,nan
CVE-2019-1003058,9/10/2019 23:44,4/04/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003057,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003056,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003055,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003054,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003053,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003052,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003051,9/10/2019 23:44,4/04/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-1003048,9/10/2019 23:44,28/03/2019 18:29,2.1,255, Credentials Management,nan
CVE-2019-1003047,9/10/2019 23:44,28/03/2019 18:29,4.0,275, Permission Issues,nan
CVE-2019-1003046,9/10/2019 23:44,28/03/2019 18:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003045,9/10/2019 23:44,28/03/2019 18:29,4.0,200, Information Exposure,nan
CVE-2019-1003044,9/10/2019 23:44,28/03/2019 18:29,2.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003043,9/10/2019 23:44,28/03/2019 18:29,3.5,255, Credentials Management,nan
CVE-2019-1003039,9/10/2019 23:44,8/03/2019 21:29,4.0,255, Credentials Management,nan
CVE-2019-1003037,9/10/2019 23:44,8/03/2019 21:29,4.0,200, Information Exposure,nan
CVE-2019-1003028,9/10/2019 23:44,20/02/2019 21:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1003027,9/10/2019 23:44,20/02/2019 21:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1003026,9/10/2019 23:44,20/02/2019 21:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1003025,9/10/2019 23:44,20/02/2019 21:29,4.0,200, Information Exposure,nan
CVE-2019-1003024,9/10/2019 23:44,20/02/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003023,9/10/2019 23:44,6/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1003022,9/10/2019 23:44,6/02/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003021,9/10/2019 23:44,6/02/2019 16:29,4.3,200, Information Exposure,nan
CVE-2019-1003020,9/10/2019 23:44,6/02/2019 16:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1003019,9/10/2019 23:44,6/02/2019 16:29,4.3,384, Session Fixation,nan
CVE-2019-1003018,9/10/2019 23:44,6/02/2019 16:29,4.3,200, Information Exposure,nan
CVE-2019-1003017,9/10/2019 23:44,6/02/2019 16:29,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003016,9/10/2019 23:44,6/02/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003015,9/10/2019 23:44,6/02/2019 16:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1003014,9/10/2019 23:44,6/02/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1003013,9/10/2019 23:44,6/02/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1003012,9/10/2019 23:44,6/02/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003011,9/10/2019 23:44,6/02/2019 16:29,5.5,20, Improper Input Validation,nan
CVE-2019-1003009,9/10/2019 23:44,6/02/2019 16:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-1003008,9/10/2019 23:44,6/02/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003007,9/10/2019 23:44,6/02/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1003006,9/10/2019 23:44,6/02/2019 16:29,6.5,284, Improper Access Control,nan
CVE-2019-1003004,9/10/2019 23:44,22/01/2019 14:29,6.5,613, Insufficient Session Expiration,nan
CVE-2019-1003003,9/10/2019 23:44,22/01/2019 14:29,6.5,613, Insufficient Session Expiration,nan
CVE-2019-1003002,9/10/2019 23:44,22/01/2019 14:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003001,9/10/2019 23:44,22/01/2019 14:29,6.5,254, 7PK – Security Features,nan
CVE-2019-0202,9/10/2019 23:43,26/07/2019 0:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-0052,9/10/2019 23:43,11/07/2019 20:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-0049,9/10/2019 23:43,11/07/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-0048,9/10/2019 23:43,11/07/2019 20:15,5.0,254, 7PK – Security Features,nan
CVE-2019-0046,9/10/2019 23:43,11/07/2019 20:15,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-0043,9/10/2019 23:43,10/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-0042,9/10/2019 23:43,10/04/2019 20:29,1.9,20, Improper Input Validation,nan
CVE-2019-0041,9/10/2019 23:43,10/04/2019 20:29,5.0,254, 7PK – Security Features,nan
CVE-2019-0040,9/10/2019 23:43,10/04/2019 20:29,6.4,20, Improper Input Validation,nan
CVE-2019-0038,9/10/2019 23:43,10/04/2019 20:29,6.1,399, Resource Management Errors,nan
CVE-2019-0037,9/10/2019 23:43,10/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-0036,9/10/2019 23:43,10/04/2019 20:29,7.5,254, 7PK – Security Features,nan
CVE-2019-0035,9/10/2019 23:43,10/04/2019 20:29,7.2,255, Credentials Management,nan
CVE-2019-0030,9/10/2019 23:43,15/01/2019 21:29,4.0,326, Inadequate Encryption Strength,nan
CVE-2019-0029,9/10/2019 23:43,15/01/2019 21:29,2.1,255, Credentials Management,nan
CVE-2019-0028,9/10/2019 23:43,10/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-0027,9/10/2019 23:43,15/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0026,9/10/2019 23:43,15/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0025,9/10/2019 23:43,15/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0024,9/10/2019 23:43,15/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0023,9/10/2019 23:43,15/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0022,9/10/2019 23:43,15/01/2019 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-0021,9/10/2019 23:43,15/01/2019 21:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-0020,9/10/2019 23:43,15/01/2019 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-0019,9/10/2019 23:43,10/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-0018,9/10/2019 23:43,15/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0017,9/10/2019 23:43,15/01/2019 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-0016,9/10/2019 23:43,15/01/2019 21:29,5.5,284, Improper Access Control,nan
CVE-2019-0015,9/10/2019 23:43,15/01/2019 21:29,5.5,287, Improper Authentication,nan
CVE-2019-0014,9/10/2019 23:43,15/01/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2019-0013,9/10/2019 23:43,15/01/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2019-0012,9/10/2019 23:43,15/01/2019 21:29,4.3,19, Data Processing Errors,nan
CVE-2019-0011,9/10/2019 23:43,15/01/2019 21:29,3.3,20, Improper Input Validation,nan
CVE-2019-0010,9/10/2019 23:43,15/01/2019 21:29,5.0,399, Resource Management Errors,nan
CVE-2019-0009,9/10/2019 23:43,15/01/2019 21:29,2.1,20, Improper Input Validation,nan
CVE-2019-0007,9/10/2019 23:43,15/01/2019 21:29,7.5,254, 7PK – Security Features,nan
CVE-2019-0006,9/10/2019 23:43,15/01/2019 21:29,7.5,20, Improper Input Validation,nan
CVE-2019-0004,9/10/2019 23:43,15/01/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0003,9/10/2019 23:43,15/01/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-0002,9/10/2019 23:43,15/01/2019 21:29,7.5,20, Improper Input Validation,nan
CVE-2019-0001,9/10/2019 23:43,15/01/2019 21:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-9984,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9983,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9982,9/10/2019 23:43,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9981,9/10/2019 23:43,17/05/2018 15:29,6.8,824, Access of Uninitialized Pointer,nan
CVE-2018-9980,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9979,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9978,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9977,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9976,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9975,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9974,9/10/2019 23:43,17/05/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9973,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9972,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9971,9/10/2019 23:43,17/05/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-9970,9/10/2019 23:43,17/05/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-9969,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9968,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9967,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9965,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9964,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9963,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9962,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9961,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9960,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9959,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9958,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9957,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9956,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9955,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9954,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9953,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9952,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9951,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9950,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9949,9/10/2019 23:43,17/05/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9948,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9947,9/10/2019 23:43,17/05/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9946,9/10/2019 23:43,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-9945,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9944,9/10/2019 23:43,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-9943,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9942,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9941,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9940,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9939,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9938,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9937,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9936,9/10/2019 23:43,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9935,9/10/2019 23:43,17/05/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-9866,9/10/2019 23:43,3/08/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-8929,9/10/2019 23:43,6/07/2018 12:29,6.8,417, Channel and Path Errors,nan
CVE-2018-8928,9/10/2019 23:43,5/07/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8927,9/10/2019 23:43,14/06/2018 14:29,4.0,863, Incorrect Authorization,nan
CVE-2018-8925,9/10/2019 23:43,8/06/2018 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8924,9/10/2019 23:43,5/06/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8923,9/10/2019 23:43,5/06/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8921,9/10/2019 23:43,1/06/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8920,9/10/2019 23:43,24/12/2018 15:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-8919,9/10/2019 23:43,24/12/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-8918,9/10/2019 23:43,24/12/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8917,9/10/2019 23:43,24/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8916,9/10/2019 23:43,8/06/2018 13:29,4.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-8915,9/10/2019 23:43,10/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8914,9/10/2019 23:43,10/05/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8913,9/10/2019 23:43,1/04/2019 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-8912,9/10/2019 23:43,9/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8911,9/10/2019 23:43,9/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8910,9/10/2019 23:43,10/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8872,9/10/2019 23:43,4/05/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8871,9/10/2019 23:43,25/05/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8870,9/10/2019 23:42,3/07/2018 1:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-8869,9/10/2019 23:42,4/05/2018 17:29,10.0,20, Improper Input Validation,nan
CVE-2018-8867,9/10/2019 23:42,18/05/2018 20:29,7.8,20, Improper Input Validation,nan
CVE-2018-8865,9/10/2019 23:42,4/05/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8864,9/10/2019 23:42,25/05/2018 16:29,2.9,311, Missing Encryption of Sensitive Data,nan
CVE-2018-8862,9/10/2019 23:42,25/05/2018 16:29,2.9,287, Improper Authentication,nan
CVE-2018-8859,9/10/2019 23:42,24/07/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-8857,9/10/2019 23:42,4/05/2018 17:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-8855,9/10/2019 23:42,24/07/2018 17:29,7.5,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-8854,9/10/2019 23:42,26/09/2018 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-8853,9/10/2019 23:42,4/05/2018 17:29,7.2,269, Improper Privilege Management,nan
CVE-2018-8852,9/10/2019 23:42,26/09/2018 19:29,6.8,384, Session Fixation,nan
CVE-2018-8851,9/10/2019 23:42,24/07/2018 17:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-8850,9/10/2019 23:42,26/09/2018 19:29,7.5,20, Improper Input Validation,nan
CVE-2018-8849,9/10/2019 23:42,18/05/2018 13:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-8848,9/10/2019 23:42,26/09/2018 19:29,5.0,276, Incorrect Default Permissions,nan
CVE-2018-8847,9/10/2019 23:42,13/07/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8846,9/10/2019 23:42,26/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8845,9/10/2019 23:42,15/05/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8844,9/10/2019 23:42,26/09/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8843,9/10/2019 23:42,14/05/2018 18:29,4.3,416, Use After Free,nan
CVE-2018-8842,9/10/2019 23:42,26/09/2018 19:29,3.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-8841,9/10/2019 23:42,15/05/2018 22:29,4.6,269, Improper Privilege Management,nan
CVE-2018-8840,9/10/2019 23:42,18/04/2018 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8837,9/10/2019 23:42,25/04/2018 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-8836,9/10/2019 23:42,3/04/2018 13:29,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2018-8835,9/10/2019 23:42,25/04/2018 23:29,6.8,415, Double Free,nan
CVE-2018-8834,9/10/2019 23:42,17/04/2018 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8833,9/10/2019 23:42,25/04/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8785,9/10/2019 23:42,29/11/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8784,9/10/2019 23:42,29/11/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7851,9/10/2019 23:42,22/05/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7838,9/10/2019 23:42,15/07/2019 21:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7834,9/10/2019 23:42,22/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7824,9/10/2019 23:42,22/05/2019 20:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-7820,9/10/2019 23:42,17/09/2019 20:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-7817,9/10/2019 23:42,6/02/2019 23:29,6.8,416, Use After Free,nan
CVE-2018-7788,9/10/2019 23:42,22/05/2019 20:29,4.0,255, Credentials Management,nan
CVE-2018-7689,9/10/2019 23:42,7/06/2018 13:29,4.0,862, Missing Authorization,nan
CVE-2018-7688,9/10/2019 23:42,7/06/2018 13:29,4.0,862, Missing Authorization,nan
CVE-2018-7687,9/10/2019 23:42,21/05/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7685,9/10/2019 23:42,31/08/2018 15:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-7678,9/10/2019 23:42,14/03/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7677,9/10/2019 23:42,14/03/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7676,9/10/2019 23:42,28/03/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-7675,9/10/2019 23:42,7/03/2018 22:29,3.5,200, Information Exposure,nan
CVE-2018-7674,9/10/2019 23:42,28/03/2018 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-7603,9/10/2019 23:42,15/01/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7533,9/10/2019 23:42,14/03/2018 18:29,7.2,276, Incorrect Default Permissions,nan
CVE-2018-7532,9/10/2019 23:42,22/03/2018 18:29,7.5,287, Improper Authentication,nan
CVE-2018-7531,9/10/2019 23:42,14/03/2018 18:29,7.1,20, Improper Input Validation,nan
CVE-2018-7530,9/10/2019 23:42,17/04/2018 19:29,4.6,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2018-7529,9/10/2019 23:42,14/03/2018 18:29,7.8,502, Deserialization of Untrusted Data,nan
CVE-2018-7528,9/10/2019 23:42,22/03/2018 18:29,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7527,9/10/2019 23:42,26/04/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7525,9/10/2019 23:42,21/03/2018 20:29,4.6,476, NULL Pointer Dereference,nan
CVE-2018-7524,9/10/2019 23:42,22/03/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7523,9/10/2019 23:42,21/03/2018 20:29,4.6,415, Double Free,nan
CVE-2018-7521,9/10/2019 23:42,21/03/2018 20:29,4.6,416, Use After Free,nan
CVE-2018-7520,9/10/2019 23:42,22/03/2018 18:29,7.5,284, Improper Access Control,nan
CVE-2018-7519,9/10/2019 23:42,21/03/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7518,9/10/2019 23:42,24/05/2018 20:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-7517,9/10/2019 23:42,21/03/2018 20:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-7516,9/10/2019 23:42,22/03/2018 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-7515,9/10/2019 23:42,21/03/2018 20:29,4.6,476, NULL Pointer Dereference,nan
CVE-2018-7514,9/10/2019 23:42,17/04/2018 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7513,9/10/2019 23:42,21/03/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7512,9/10/2019 23:42,22/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7511,9/10/2019 23:42,20/03/2018 16:29,6.8,20, Improper Input Validation,nan
CVE-2018-7510,9/10/2019 23:42,6/06/2018 20:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-7509,9/10/2019 23:42,4/05/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-7508,9/10/2019 23:42,14/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7507,9/10/2019 23:42,4/05/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7505,9/10/2019 23:42,15/05/2018 22:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7504,9/10/2019 23:42,14/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7503,9/10/2019 23:42,15/05/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7501,9/10/2019 23:42,15/05/2018 22:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7499,9/10/2019 23:42,15/05/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7498,9/10/2019 23:42,28/03/2018 17:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-7497,9/10/2019 23:42,15/05/2018 22:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-7496,9/10/2019 23:42,14/03/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-7495,9/10/2019 23:42,15/05/2018 22:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7494,9/10/2019 23:42,4/05/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7366,9/10/2019 23:42,28/12/2018 16:29,4.6,863, Incorrect Authorization,nan
CVE-2018-7365,9/10/2019 23:42,20/12/2018 14:29,6.5,426, Untrusted Search Path,nan
CVE-2018-7364,9/10/2019 23:42,7/12/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2018-7363,9/10/2019 23:42,16/11/2018 15:29,3.3,863, Incorrect Authorization,nan
CVE-2018-7362,9/10/2019 23:42,16/11/2018 15:29,9.0,284, Improper Access Control,nan
CVE-2018-7361,9/10/2019 23:42,16/11/2018 15:29,3.3,476, NULL Pointer Dereference,nan
CVE-2018-7360,9/10/2019 23:42,16/11/2018 15:29,3.3,200, Information Exposure,nan
CVE-2018-7359,9/10/2019 23:42,16/11/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7358,9/10/2019 23:42,14/11/2018 15:29,5.8,287, Improper Authentication,nan
CVE-2018-7357,9/10/2019 23:42,14/11/2018 15:29,3.3,306, Missing Authentication for Critical Function,nan
CVE-2018-7356,9/10/2019 23:42,1/11/2018 13:29,5.0,294, Authentication Bypass by Capture-replay,nan
CVE-2018-7340,9/10/2019 23:42,17/04/2019 15:29,5.0,287, Improper Authentication,nan
CVE-2018-7166,9/10/2019 23:42,21/08/2018 12:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7160,9/10/2019 23:42,17/05/2018 14:29,6.8,290, Authentication Bypass by Spoofing,nan
CVE-2018-7158,9/10/2019 23:42,17/05/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-6922,9/10/2019 23:42,9/08/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-6755,9/10/2019 23:42,6/12/2018 23:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6707,9/10/2019 23:42,14/12/2018 0:29,4.4,400, Uncontrolled Resource Consumption,nan
CVE-2018-6703,9/10/2019 23:42,11/12/2018 23:29,7.5,416, Use After Free,nan
CVE-2018-6700,9/10/2019 23:42,24/09/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-6693,9/10/2019 23:42,18/09/2018 21:29,3.3,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2018-6692,9/10/2019 23:42,21/08/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6690,9/10/2019 23:42,18/09/2018 22:29,3.6,346, Origin Validation Error,nan
CVE-2018-6689,9/10/2019 23:42,3/10/2018 12:29,4.6,287, Improper Authentication,nan
CVE-2018-6687,9/10/2019 23:42,21/02/2019 14:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-6686,9/10/2019 23:42,27/07/2018 13:29,4.6,287, Improper Authentication,nan
CVE-2018-6683,9/10/2019 23:41,23/07/2018 15:29,4.6,276, Incorrect Default Permissions,nan
CVE-2018-6682,9/10/2019 23:41,24/09/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6681,9/10/2019 23:41,17/07/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6677,9/10/2019 23:41,23/07/2018 13:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6672,9/10/2019 23:41,15/06/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-6670,9/10/2019 23:41,7/06/2018 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6669,9/10/2019 23:41,20/12/2018 13:29,5.2,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-6667,9/10/2019 23:41,26/06/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-6664,9/10/2019 23:41,25/05/2018 13:29,6.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-6662,9/10/2019 23:41,5/06/2018 14:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6661,9/10/2019 23:41,2/04/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-6660,9/10/2019 23:41,2/04/2018 13:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6659,9/10/2019 23:41,2/04/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6651,9/10/2019 23:41,5/02/2018 22:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6590,9/10/2019 23:41,3/08/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6588,9/10/2019 23:41,29/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6587,9/10/2019 23:41,29/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6586,9/10/2019 23:41,29/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6559,9/10/2019 23:41,26/10/2018 17:29,2.1,200, Information Exposure,nan
CVE-2018-6555,9/10/2019 23:41,4/09/2018 18:29,7.2,416, Use After Free,nan
CVE-2018-6554,9/10/2019 23:41,4/09/2018 18:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-6511,9/10/2019 23:41,8/05/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6510,9/10/2019 23:41,8/05/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6504,9/10/2019 23:41,20/09/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6502,9/10/2019 23:41,20/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6500,9/10/2019 23:41,20/09/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6499,9/10/2019 23:41,30/08/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-6498,9/10/2019 23:41,30/08/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-6497,9/10/2019 23:41,16/06/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6496,9/10/2019 23:41,16/06/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6495,9/10/2019 23:41,23/05/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6494,9/10/2019 23:41,22/05/2018 18:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6493,9/10/2019 23:41,22/05/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6492,9/10/2019 23:41,22/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6490,9/10/2019 23:41,2/03/2018 1:29,7.8,20, Improper Input Validation,nan
CVE-2018-6488,9/10/2019 23:41,22/02/2018 22:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-6487,9/10/2019 23:41,20/02/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-6486,9/10/2019 23:41,2/02/2018 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6347,9/10/2019 23:41,31/12/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-6346,9/10/2019 23:41,31/12/2018 22:29,5.0,388, 7PK – Errors,nan
CVE-2018-6345,9/10/2019 23:41,15/01/2019 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6344,9/10/2019 23:41,31/12/2018 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6343,9/10/2019 23:41,31/12/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-6342,9/10/2019 23:41,31/12/2018 22:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6341,9/10/2019 23:41,31/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6340,9/10/2019 23:41,31/12/2018 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6339,9/10/2019 23:41,14/06/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6337,9/10/2019 23:41,31/12/2018 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6335,9/10/2019 23:41,31/12/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-6334,9/10/2019 23:41,31/12/2018 19:29,7.5,20, Improper Input Validation,nan
CVE-2018-6333,9/10/2019 23:41,31/12/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-6332,9/10/2019 23:41,3/12/2018 14:29,4.3,19, Data Processing Errors,nan
CVE-2018-6331,9/10/2019 23:41,31/12/2018 23:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-5739,9/10/2019 23:41,16/01/2019 20:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5737,9/10/2019 23:41,16/01/2019 20:29,5.0,617, Reachable Assertion,nan
CVE-2018-5734,9/10/2019 23:41,16/01/2019 20:29,5.0,617, Reachable Assertion,nan
CVE-2018-5733,9/10/2019 23:41,16/01/2019 20:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-5560,9/10/2019 23:41,31/01/2019 21:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-5559,9/10/2019 23:41,28/11/2018 19:29,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-5553,9/10/2019 23:41,10/07/2018 16:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-5552,9/10/2019 23:41,19/03/2018 15:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2018-5551,9/10/2019 23:41,19/03/2018 15:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-5550,9/10/2019 23:41,8/02/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5477,9/10/2019 23:41,20/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-5476,9/10/2019 23:41,15/03/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5475,9/10/2019 23:41,19/02/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5474,9/10/2019 23:41,26/03/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2018-5473,9/10/2019 23:41,19/02/2018 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5471,9/10/2019 23:41,6/03/2018 21:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-5470,9/10/2019 23:41,26/03/2018 14:29,7.2,426, Untrusted Search Path,nan
CVE-2018-5469,9/10/2019 23:41,6/03/2018 21:29,7.5,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-5467,9/10/2019 23:41,6/03/2018 21:29,6.4,200, Information Exposure,nan
CVE-2018-5466,9/10/2019 23:41,26/03/2018 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-5465,9/10/2019 23:41,6/03/2018 21:29,6.8,384, Session Fixation,nan
CVE-2018-5464,9/10/2019 23:41,26/03/2018 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-5463,9/10/2019 23:41,9/04/2018 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5462,9/10/2019 23:41,26/03/2018 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-5461,9/10/2019 23:41,6/03/2018 21:29,5.8,326, Inadequate Encryption Strength,nan
CVE-2018-5459,9/10/2019 23:41,13/02/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2018-5458,9/10/2019 23:41,26/03/2018 14:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-5457,9/10/2019 23:41,6/02/2018 21:29,6.9,427, Uncontrolled Search Path Element,nan
CVE-2018-5455,9/10/2019 23:41,5/03/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-5453,9/10/2019 23:41,5/03/2018 17:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5452,9/10/2019 23:41,7/03/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5451,9/10/2019 23:41,28/03/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-5449,9/10/2019 23:41,5/03/2018 17:29,3.3,476, NULL Pointer Dereference,nan
CVE-2018-5448,9/10/2019 23:41,4/05/2018 18:29,2.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5447,9/10/2019 23:41,25/01/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2018-5446,9/10/2019 23:41,4/05/2018 18:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-5445,9/10/2019 23:41,25/01/2018 3:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5443,9/10/2019 23:41,25/01/2018 3:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5442,9/10/2019 23:41,5/02/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5441,9/10/2019 23:41,30/01/2018 20:29,4.6,20, Improper Input Validation,nan
CVE-2018-5440,9/10/2019 23:41,15/02/2018 10:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5439,9/10/2019 23:41,19/02/2018 18:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-5436,9/10/2019 23:41,27/06/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-5434,9/10/2019 23:41,13/06/2018 13:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5433,9/10/2019 23:41,13/06/2018 13:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5432,9/10/2019 23:41,13/06/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5431,9/10/2019 23:41,17/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5430,9/10/2019 23:41,17/04/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5428,9/10/2019 23:41,20/06/2018 18:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-5413,9/10/2019 23:41,10/01/2019 22:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5411,9/10/2019 23:41,13/12/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5410,9/10/2019 23:41,7/01/2019 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5405,9/10/2019 23:41,3/06/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5404,9/10/2019 23:41,3/06/2019 19:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5403,9/10/2019 23:41,10/01/2019 22:29,6.8,287, Improper Authentication,nan
CVE-2018-5402,9/10/2019 23:41,8/10/2018 15:29,6.5,310, Cryptographic Issues,nan
CVE-2018-5401,9/10/2019 23:41,8/10/2018 15:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-5400,9/10/2019 23:41,8/10/2018 15:29,6.4,346, Origin Validation Error,nan
CVE-2018-5399,9/10/2019 23:41,8/10/2018 15:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-5393,9/10/2019 23:41,28/09/2018 17:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2018-5389,9/10/2019 23:41,6/09/2018 21:29,4.3,521, Weak Password Requirements,nan
CVE-2018-5388,9/10/2019 23:41,31/05/2018 13:29,4.0,787, Out-of-bounds Write,nan
CVE-2018-5387,9/10/2019 23:41,24/07/2018 15:29,5.0,287, Improper Authentication,nan
CVE-2018-5386,9/10/2019 23:41,24/07/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-5385,9/10/2019 23:41,24/07/2018 15:29,6.8,384, Session Fixation,nan
CVE-2018-5384,9/10/2019 23:41,24/07/2018 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5381,9/10/2019 23:41,19/02/2018 13:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5380,9/10/2019 23:41,19/02/2018 13:29,4.0,125, Out-of-bounds Read,nan
CVE-2018-5379,9/10/2019 23:41,19/02/2018 13:29,7.5,415, Double Free,nan
CVE-2018-5378,9/10/2019 23:41,19/02/2018 13:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5200,9/10/2019 23:41,20/12/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5199,9/10/2019 23:41,20/12/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-5198,9/10/2019 23:41,20/12/2018 14:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-5196,9/10/2019 23:41,21/12/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4861,9/10/2019 23:41,26/06/2018 18:29,4.0,200, Information Exposure,nan
CVE-2018-4860,9/10/2019 23:41,26/06/2018 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4859,9/10/2019 23:41,26/06/2018 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4855,9/10/2019 23:41,3/07/2018 14:29,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2018-4852,9/10/2019 23:41,3/07/2018 14:29,7.5,287, Improper Authentication,nan
CVE-2018-4851,9/10/2019 23:41,3/07/2018 14:29,8.5,20, Improper Input Validation,nan
CVE-2018-4849,9/10/2019 23:41,3/05/2018 13:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-4846,9/10/2019 23:41,26/06/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-4845,9/10/2019 23:41,26/06/2018 18:29,6.5,269, Improper Privilege Management,nan
CVE-2018-4844,9/10/2019 23:41,20/03/2018 14:29,3.8,269, Improper Privilege Management,nan
CVE-2018-4842,9/10/2019 23:41,14/06/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4841,9/10/2019 23:41,29/03/2018 13:29,10.0,287, Improper Authentication,nan
CVE-2018-4840,9/10/2019 23:41,8/03/2018 17:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2018-4835,9/10/2019 23:41,25/01/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-4834,9/10/2019 23:41,24/01/2018 16:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3871,9/10/2019 23:40,19/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3870,9/10/2019 23:40,19/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3860,9/10/2019 23:40,19/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3859,9/10/2019 23:40,19/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3858,9/10/2019 23:40,19/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3857,9/10/2019 23:40,19/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3831,9/10/2019 23:40,19/09/2018 19:29,4.0,200, Information Exposure,nan
CVE-2018-3830,9/10/2019 23:40,19/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3829,9/10/2019 23:40,19/09/2018 19:29,3.5,290, Authentication Bypass by Spoofing,nan
CVE-2018-3828,9/10/2019 23:40,19/09/2018 19:29,3.5,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-3827,9/10/2019 23:40,19/09/2018 19:29,4.3,255, Credentials Management,nan
CVE-2018-3826,9/10/2019 23:40,19/09/2018 19:29,4.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-3825,9/10/2019 23:40,19/09/2018 19:29,4.3,1188, Insecure Default Initialization of Resource,nan
CVE-2018-3824,9/10/2019 23:40,19/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3823,9/10/2019 23:40,19/09/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3822,9/10/2019 23:40,30/03/2018 20:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3821,9/10/2019 23:40,30/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3820,9/10/2019 23:40,30/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3819,9/10/2019 23:40,30/03/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-3818,9/10/2019 23:40,30/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3817,9/10/2019 23:40,30/03/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-3787,9/10/2019 23:40,31/08/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3786,9/10/2019 23:40,24/08/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3785,9/10/2019 23:40,17/08/2018 13:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3784,9/10/2019 23:40,17/08/2018 13:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-3781,9/10/2019 23:40,13/08/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3780,9/10/2019 23:40,13/08/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3778,9/10/2019 23:40,8/08/2018 20:29,5.0,863, Incorrect Authorization,nan
CVE-2018-3777,9/10/2019 23:40,3/08/2018 20:29,7.5,172, Encoding Error,nan
CVE-2018-3776,9/10/2019 23:40,12/08/2018 22:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-3775,9/10/2019 23:40,12/08/2018 22:29,4.0,287, Improper Authentication,nan
CVE-2018-3774,9/10/2019 23:40,12/08/2018 22:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-3773,9/10/2019 23:40,30/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3772,9/10/2019 23:40,30/07/2018 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-3771,9/10/2019 23:40,20/07/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3770,9/10/2019 23:40,20/07/2018 22:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3769,9/10/2019 23:40,5/07/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3766,9/10/2019 23:40,5/07/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3764,9/10/2019 23:40,5/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3763,9/10/2019 23:40,5/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3762,9/10/2019 23:40,5/07/2018 16:29,4.0,281, Improper Preservation of Permissions,nan
CVE-2018-3761,9/10/2019 23:40,5/07/2018 16:29,5.8,287, Improper Authentication,nan
CVE-2018-3760,9/10/2019 23:40,26/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-3759,9/10/2019 23:40,13/06/2018 15:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-3758,9/10/2019 23:40,7/06/2018 21:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3755,9/10/2019 23:40,1/06/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3746,9/10/2019 23:40,1/06/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3745,9/10/2019 23:40,29/05/2018 20:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-3744,9/10/2019 23:40,29/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3743,9/10/2019 23:40,1/06/2018 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-3741,9/10/2019 23:40,30/03/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3739,9/10/2019 23:40,7/06/2018 2:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-3738,9/10/2019 23:40,7/06/2018 2:29,4.3,185, Incorrect Regular Expression,nan
CVE-2018-3737,9/10/2019 23:40,7/06/2018 2:29,5.0,185, Incorrect Regular Expression,nan
CVE-2018-3735,9/10/2019 23:40,7/06/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3734,9/10/2019 23:40,29/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3733,9/10/2019 23:40,29/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3732,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3731,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3730,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3729,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3728,9/10/2019 23:40,30/03/2018 19:29,6.5,471, Modification of Assumed-Immutable Data (MAID),nan
CVE-2018-3727,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3726,9/10/2019 23:40,7/06/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3725,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3724,9/10/2019 23:40,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3723,9/10/2019 23:40,7/06/2018 2:29,6.5,20, Improper Input Validation,nan
CVE-2018-3719,9/10/2019 23:40,7/06/2018 2:29,6.5,20, Improper Input Validation,nan
CVE-2018-3717,9/10/2019 23:40,7/06/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3716,9/10/2019 23:40,7/06/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3715,9/10/2019 23:40,7/06/2018 2:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3714,9/10/2019 23:40,7/06/2018 2:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3713,9/10/2019 23:40,7/06/2018 2:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3712,9/10/2019 23:40,7/06/2018 2:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3711,9/10/2019 23:40,7/06/2018 2:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-3710,9/10/2019 23:40,21/03/2018 20:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3609,9/10/2019 23:40,16/02/2018 22:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-2428,9/10/2019 23:40,12/06/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-2425,9/10/2019 23:40,12/06/2018 15:29,2.1,200, Information Exposure,nan
CVE-2018-2424,9/10/2019 23:40,12/06/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-2420,9/10/2019 23:40,9/05/2018 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-2419,9/10/2019 23:40,9/05/2018 20:29,5.5,862, Missing Authorization,nan
CVE-2018-2418,9/10/2019 23:40,9/05/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-2417,9/10/2019 23:40,9/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-2415,9/10/2019 23:40,9/05/2018 20:29,4.3,172, Encoding Error,nan
CVE-2018-2413,9/10/2019 23:40,10/04/2018 15:29,6.5,862, Missing Authorization,nan
CVE-2018-2412,9/10/2019 23:40,10/04/2018 15:29,6.5,862, Missing Authorization,nan
CVE-2018-2410,9/10/2019 23:40,10/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2409,9/10/2019 23:40,10/04/2018 15:29,6.5,384, Session Fixation,nan
CVE-2018-2408,9/10/2019 23:40,10/04/2018 15:29,7.5,384, Session Fixation,nan
CVE-2018-2406,9/10/2019 23:40,10/04/2018 15:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-2405,9/10/2019 23:40,10/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2404,9/10/2019 23:40,10/04/2018 15:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-2403,9/10/2019 23:40,10/04/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-2402,9/10/2019 23:40,14/03/2018 19:29,3.5,200, Information Exposure,nan
CVE-2018-2401,9/10/2019 23:40,14/03/2018 19:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-2399,9/10/2019 23:40,14/03/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2398,9/10/2019 23:40,14/03/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-2397,9/10/2019 23:40,14/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2366,9/10/2019 23:40,14/03/2018 19:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20826,9/10/2019 23:39,9/08/2019 20:15,4.0,285, Improper Authorization,nan
CVE-2018-2028,9/10/2019 23:39,6/06/2019 1:29,4.0,200, Information Exposure,nan
CVE-2018-2026,9/10/2019 23:39,23/01/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-20253,9/10/2019 23:39,13/02/2019 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-20252,9/10/2019 23:39,5/02/2019 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-20251,9/10/2019 23:39,5/02/2019 20:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20250,9/10/2019 23:39,5/02/2019 20:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20249,9/10/2019 23:39,24/12/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20248,9/10/2019 23:39,24/12/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20247,9/10/2019 23:39,24/12/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2024,9/10/2019 23:39,22/07/2019 14:15,5.5,275, Permission Issues,nan
CVE-2018-2022,9/10/2019 23:39,17/07/2019 14:15,5.0,200, Information Exposure,nan
CVE-2018-2021,9/10/2019 23:39,17/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2019,9/10/2019 23:39,18/01/2019 16:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-20106,9/10/2019 23:39,15/03/2019 20:29,9.3,20, Improper Input Validation,nan
CVE-2018-2009,9/10/2019 23:39,11/03/2019 22:29,4.0,200, Information Exposure,nan
CVE-2018-2007,9/10/2019 23:39,29/04/2019 17:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-2006,9/10/2019 23:39,21/02/2019 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-2005,9/10/2019 23:39,20/05/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-2004,9/10/2019 23:39,29/04/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2001,9/10/2019 23:39,7/05/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-2000,9/10/2019 23:39,8/04/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1999,9/10/2019 23:39,8/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-1998,9/10/2019 23:39,11/03/2019 22:29,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1996,9/10/2019 23:39,19/02/2019 17:29,3.5,200, Information Exposure,nan
CVE-2018-1994,9/10/2019 23:39,10/04/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1993,9/10/2019 23:39,8/01/2019 16:29,2.1,200, Information Exposure,nan
CVE-2018-1992,9/10/2019 23:39,21/03/2019 16:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1991,9/10/2019 23:39,22/05/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-1987,9/10/2019 23:39,2/08/2019 14:15,1.9,200, Information Exposure,nan
CVE-2018-1984,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1983,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1982,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1980,9/10/2019 23:39,11/03/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1978,9/10/2019 23:39,11/03/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1977,9/10/2019 23:39,14/12/2018 16:29,4.0,20, Improper Input Validation,nan
CVE-2018-1976,9/10/2019 23:39,29/01/2019 16:29,4.0,200, Information Exposure,nan
CVE-2018-1975,9/10/2019 23:39,16/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1973,9/10/2019 23:39,20/12/2018 14:29,9.0,269, Improper Privilege Management,nan
CVE-2018-1970,9/10/2019 23:39,4/02/2019 21:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1969,9/10/2019 23:39,14/01/2019 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1968,9/10/2019 23:39,11/07/2019 20:15,5.0,200, Information Exposure,nan
CVE-2018-1967,9/10/2019 23:39,14/01/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1962,9/10/2019 23:39,4/02/2019 21:29,2.1,384, Session Fixation,nan
CVE-2018-1961,9/10/2019 23:39,29/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2018-1959,9/10/2019 23:39,24/01/2019 16:29,4.6,255, Credentials Management,nan
CVE-2018-1957,9/10/2019 23:39,10/12/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-1956,9/10/2019 23:39,14/01/2019 14:29,5.0,254, 7PK – Security Features,nan
CVE-2018-1952,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1951,9/10/2019 23:39,4/01/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1950,9/10/2019 23:39,21/02/2019 17:29,4.0,200, Information Exposure,nan
CVE-2018-1949,9/10/2019 23:39,21/02/2019 17:29,4.0,200, Information Exposure,nan
CVE-2018-1948,9/10/2019 23:39,21/02/2019 17:29,4.3,384, Session Fixation,nan
CVE-2018-1947,9/10/2019 23:39,21/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1946,9/10/2019 23:39,21/02/2019 17:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1945,9/10/2019 23:39,21/02/2019 17:29,5.8,20, Improper Input Validation,nan
CVE-2018-1944,9/10/2019 23:39,21/02/2019 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-1943,9/10/2019 23:39,8/04/2019 15:29,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1941,9/10/2019 23:39,5/12/2018 17:29,4.6,269, Improper Privilege Management,nan
CVE-2018-1939,9/10/2019 23:39,5/03/2019 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1938,9/10/2019 23:39,5/03/2019 18:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-1937,9/10/2019 23:39,5/03/2019 18:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-1936,9/10/2019 23:39,3/04/2019 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1935,9/10/2019 23:39,6/12/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1932,9/10/2019 23:39,8/01/2019 16:29,4.0,200, Information Exposure,nan
CVE-2018-1929,9/10/2019 23:39,14/03/2019 22:29,4.0,200, Information Exposure,nan
CVE-2018-1927,9/10/2019 23:39,30/11/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1926,9/10/2019 23:39,12/12/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1925,9/10/2019 23:39,15/04/2019 15:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2018-1923,9/10/2019 23:39,11/03/2019 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1922,9/10/2019 23:39,11/03/2019 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1921,9/10/2019 23:39,17/07/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1920,9/10/2019 23:39,7/12/2018 16:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1918,9/10/2019 23:39,8/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1917,9/10/2019 23:39,2/04/2019 14:29,4.0,200, Information Exposure,nan
CVE-2018-1916,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1914,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1913,9/10/2019 23:39,3/04/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1912,9/10/2019 23:39,6/03/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1911,9/10/2019 23:39,6/03/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1910,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1908,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1905,9/10/2019 23:39,26/11/2018 16:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1904,9/10/2019 23:39,11/12/2018 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1902,9/10/2019 23:39,11/03/2019 22:29,4.0,200, Information Exposure,nan
CVE-2018-1900,9/10/2019 23:39,11/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1897,9/10/2019 23:39,30/11/2018 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1896,9/10/2019 23:39,7/12/2018 16:29,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1895,9/10/2019 23:39,15/02/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1893,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1892,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1891,9/10/2019 23:39,17/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1890,9/10/2019 23:39,11/03/2019 22:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2018-1889,9/10/2019 23:39,17/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1888,9/10/2019 23:39,4/01/2019 15:29,6.8,426, Untrusted Search Path,nan
CVE-2018-1887,9/10/2019 23:39,13/12/2018 16:29,4.6,798, Use of Hard-coded Credentials,nan
CVE-2018-1886,9/10/2019 23:39,13/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1885,9/10/2019 23:39,8/04/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-1884,9/10/2019 23:39,12/11/2018 16:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1878,9/10/2019 23:39,2/11/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-1877,9/10/2019 23:39,2/11/2018 15:29,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-1876,9/10/2019 23:39,2/11/2018 15:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1875,9/10/2019 23:39,5/03/2019 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1874,9/10/2019 23:39,2/04/2019 14:29,2.1,200, Information Exposure,nan
CVE-2018-1872,9/10/2019 23:39,9/11/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1871,9/10/2019 23:39,6/12/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1857,9/10/2019 23:39,9/11/2018 1:29,4.0,200, Information Exposure,nan
CVE-2018-1853,9/10/2019 23:39,8/04/2019 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-1851,9/10/2019 23:39,31/10/2018 13:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1848,9/10/2019 23:39,14/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1847,9/10/2019 23:39,18/09/2019 15:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1846,9/10/2019 23:39,2/11/2018 15:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1845,9/10/2019 23:39,17/06/2019 15:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1844,9/10/2019 23:39,12/10/2018 11:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1843,9/10/2019 23:39,21/11/2018 15:29,1.9,200, Information Exposure,nan
CVE-2018-1842,9/10/2019 23:39,9/11/2018 1:29,3.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-1841,9/10/2019 23:39,19/11/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-1840,9/10/2019 23:39,3/12/2018 15:29,6.8,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-1838,9/10/2019 23:39,12/10/2018 5:29,4.0,200, Information Exposure,nan
CVE-2018-1836,9/10/2019 23:39,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1835,9/10/2019 23:39,2/11/2018 15:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1834,9/10/2019 23:39,9/11/2018 1:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-1833,9/10/2019 23:39,18/12/2018 15:29,3.5,20, Improper Input Validation,nan
CVE-2018-1829,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1828,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1827,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1826,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1825,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1824,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1823,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1822,9/10/2019 23:39,18/10/2018 15:29,10.0,287, Improper Authentication,nan
CVE-2018-1821,9/10/2019 23:39,13/12/2018 16:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1820,9/10/2019 23:39,27/09/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1819,9/10/2019 23:39,4/10/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1818,9/10/2019 23:39,13/12/2018 16:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-1817,9/10/2019 23:39,13/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1815,9/10/2019 23:39,13/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1814,9/10/2019 23:39,13/12/2018 16:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1812,9/10/2019 23:39,5/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1808,9/10/2019 23:39,13/11/2018 15:29,6.5,20, Improper Input Validation,nan
CVE-2018-1805,9/10/2019 23:39,13/12/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-1804,9/10/2019 23:39,13/12/2018 16:29,4.3,384, Session Fixation,nan
CVE-2018-1803,9/10/2019 23:39,13/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-1802,9/10/2019 23:39,9/11/2018 1:29,4.6,426, Untrusted Search Path,nan
CVE-2018-1801,9/10/2019 23:39,4/02/2019 21:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1800,9/10/2019 23:39,20/09/2018 15:29,1.9,200, Information Exposure,nan
CVE-2018-1799,9/10/2019 23:39,9/11/2018 1:29,3.6,20, Improper Input Validation,nan
CVE-2018-1798,9/10/2019 23:39,12/11/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1797,9/10/2019 23:39,16/11/2018 15:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1796,9/10/2019 23:39,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1795,9/10/2019 23:39,5/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1794,9/10/2019 23:39,3/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1793,9/10/2019 23:39,3/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1792,9/10/2019 23:39,13/11/2018 15:29,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1791,9/10/2019 23:39,14/09/2018 12:29,4.9,20, Improper Input Validation,nan
CVE-2018-1790,9/10/2019 23:39,10/05/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1789,9/10/2019 23:39,7/09/2018 15:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1788,9/10/2019 23:39,2/11/2018 15:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1787,9/10/2019 23:39,8/04/2019 15:29,2.1,275, Permission Issues,nan
CVE-2018-1786,9/10/2019 23:39,12/11/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-1785,9/10/2019 23:39,26/09/2018 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1784,9/10/2019 23:39,20/12/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2018-1781,9/10/2019 23:39,9/11/2018 1:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-1780,9/10/2019 23:39,9/11/2018 1:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-1779,9/10/2019 23:39,20/11/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-1778,9/10/2019 23:39,20/12/2018 14:29,9.3,287, Improper Authentication,nan
CVE-2018-1777,9/10/2019 23:39,16/10/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1775,9/10/2019 23:39,27/02/2019 22:29,4.0,200, Information Exposure,nan
CVE-2018-1774,9/10/2019 23:39,9/11/2018 1:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1773,9/10/2019 23:39,12/09/2018 14:29,4.0,287, Improper Authentication,nan
CVE-2018-1771,9/10/2019 23:39,20/12/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1770,9/10/2019 23:39,12/10/2018 11:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1768,9/10/2019 23:39,26/09/2018 15:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1767,9/10/2019 23:39,29/10/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1766,9/10/2019 23:39,29/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1762,9/10/2019 23:39,29/11/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1761,9/10/2019 23:39,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1760,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1758,9/10/2019 23:39,27/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1757,9/10/2019 23:39,7/09/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-1756,9/10/2019 23:39,7/09/2018 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1755,9/10/2019 23:39,24/08/2018 10:29,4.3,200, Information Exposure,nan
CVE-2018-1753,9/10/2019 23:39,8/10/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-1751,9/10/2019 23:39,23/01/2019 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1750,9/10/2019 23:39,8/10/2018 15:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1749,9/10/2019 23:39,8/10/2018 15:29,4.0,20, Improper Input Validation,nan
CVE-2018-1747,9/10/2019 23:39,15/10/2018 13:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1745,9/10/2019 23:39,11/10/2018 12:29,7.8,287, Improper Authentication,nan
CVE-2018-1744,9/10/2019 23:39,15/10/2018 13:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1743,9/10/2019 23:39,8/10/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-1742,9/10/2019 23:38,8/10/2018 15:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-1741,9/10/2019 23:38,8/10/2018 15:29,6.4,20, Improper Input Validation,nan
CVE-2018-1740,9/10/2019 23:38,13/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1738,9/10/2019 23:38,11/10/2018 12:29,5.5,287, Improper Authentication,nan
CVE-2018-1736,9/10/2019 23:38,27/09/2018 19:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1734,9/10/2019 23:38,27/06/2019 14:15,4.0,200, Information Exposure,nan
CVE-2018-1733,9/10/2019 23:38,29/01/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-1730,9/10/2019 23:38,5/12/2018 17:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1729,9/10/2019 23:38,19/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2018-1728,9/10/2019 23:38,5/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1727,9/10/2019 23:38,15/02/2019 20:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1724,9/10/2019 23:38,11/10/2018 12:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1723,9/10/2019 23:38,5/10/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-1720,9/10/2019 23:38,25/04/2019 15:29,5.0,310, Cryptographic Issues,nan
CVE-2018-1719,9/10/2019 23:38,14/09/2018 12:29,4.3,200, Information Exposure,nan
CVE-2018-1718,9/10/2019 23:38,31/07/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1716,9/10/2019 23:38,27/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1715,9/10/2019 23:38,16/08/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1712,9/10/2019 23:38,16/08/2018 19:29,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1711,9/10/2019 23:38,21/09/2018 13:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1708,9/10/2019 23:38,11/10/2018 12:29,4.0,200, Information Exposure,nan
CVE-2018-1706,9/10/2019 23:38,11/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1705,9/10/2019 23:38,28/08/2018 11:29,4.0,200, Information Exposure,nan
CVE-2018-1704,9/10/2019 23:38,28/09/2018 13:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1702,9/10/2019 23:38,28/09/2018 13:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1699,9/10/2019 23:38,24/08/2018 10:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1698,9/10/2019 23:38,13/09/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-1697,9/10/2019 23:38,5/12/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-1694,9/10/2019 23:38,6/11/2018 16:29,4.3,200, Information Exposure,nan
CVE-2018-1692,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1691,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1690,9/10/2019 23:38,7/08/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1688,9/10/2019 23:38,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1686,9/10/2019 23:38,5/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1684,9/10/2019 23:38,9/11/2018 1:29,4.0,20, Improper Input Validation,nan
CVE-2018-1683,9/10/2019 23:38,26/09/2018 15:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-1680,9/10/2019 23:38,2/04/2019 14:29,5.0,254, 7PK – Security Features,nan
CVE-2018-1679,9/10/2019 23:38,20/07/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1677,9/10/2019 23:38,20/12/2018 14:29,2.1,20, Improper Input Validation,nan
CVE-2018-1676,9/10/2019 23:38,6/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1675,9/10/2019 23:38,4/02/2019 21:29,5.0,200, Information Exposure,nan
CVE-2018-1674,9/10/2019 23:38,20/09/2018 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1673,9/10/2019 23:38,12/10/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1672,9/10/2019 23:38,1/10/2018 14:29,6.5,287, Improper Authentication,nan
CVE-2018-1670,9/10/2019 23:38,4/10/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1669,9/10/2019 23:38,25/09/2018 15:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1668,9/10/2019 23:38,29/01/2019 16:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-1667,9/10/2019 23:38,13/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1666,9/10/2019 23:38,7/02/2019 15:29,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1665,9/10/2019 23:38,13/12/2018 16:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1663,9/10/2019 23:38,7/12/2018 16:29,4.3,200, Information Exposure,nan
CVE-2018-1661,9/10/2019 23:38,20/12/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1660,9/10/2019 23:38,27/09/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1659,9/10/2019 23:38,25/09/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1657,9/10/2019 23:38,4/01/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1656,9/10/2019 23:38,20/08/2018 21:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1655,9/10/2019 23:38,22/06/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-1654,9/10/2019 23:38,11/12/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1653,9/10/2019 23:38,13/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1652,9/10/2019 23:38,11/12/2018 16:29,2.1,20, Improper Input Validation,nan
CVE-2018-1650,9/10/2019 23:38,5/12/2018 17:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2018-1649,9/10/2019 23:38,5/10/2018 13:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1647,9/10/2019 23:38,5/10/2018 13:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-1644,9/10/2019 23:38,27/08/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1643,9/10/2019 23:38,15/11/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1640,9/10/2019 23:38,2/04/2019 14:29,9.0,20, Improper Input Validation,nan
CVE-2018-1639,9/10/2019 23:38,16/11/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-1638,9/10/2019 23:38,31/07/2018 13:29,6.8,287, Improper Authentication,nan
CVE-2018-1626,9/10/2019 23:38,2/04/2019 14:29,4.0,384, Session Fixation,nan
CVE-2018-1625,9/10/2019 23:38,2/04/2019 14:29,4.0,200, Information Exposure,nan
CVE-2018-1623,9/10/2019 23:38,2/04/2019 14:29,2.1,200, Information Exposure,nan
CVE-2018-1622,9/10/2019 23:38,2/04/2019 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1621,9/10/2019 23:38,6/07/2018 14:29,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-1618,9/10/2019 23:38,2/04/2019 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1614,9/10/2019 23:38,26/06/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-1612,9/10/2019 23:38,17/07/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1610,9/10/2019 23:38,26/09/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1607,9/10/2019 23:38,25/09/2018 15:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1606,9/10/2019 23:38,6/11/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-1605,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1604,9/10/2019 23:38,4/10/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1603,9/10/2019 23:38,4/10/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1602,9/10/2019 23:38,4/10/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1601,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1600,9/10/2019 23:38,4/06/2018 17:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-1599,9/10/2019 23:38,22/08/2018 11:29,3.5,20, Improper Input Validation,nan
CVE-2018-1593,9/10/2019 23:38,2/10/2018 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1588,9/10/2019 23:38,25/09/2018 15:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1587,9/10/2019 23:38,19/07/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1585,9/10/2019 23:38,19/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1584,9/10/2019 23:38,28/11/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1568,9/10/2019 23:38,5/12/2018 17:29,2.1,200, Information Exposure,nan
CVE-2018-1567,9/10/2019 23:38,7/09/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1566,9/10/2019 23:38,10/07/2018 16:29,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2018-1565,9/10/2019 23:38,25/05/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1564,9/10/2019 23:38,20/07/2018 16:29,2.1,200, Information Exposure,nan
CVE-2018-1563,9/10/2019 23:38,20/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1560,9/10/2019 23:38,25/09/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1558,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1557,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1556,9/10/2019 23:38,6/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1555,9/10/2019 23:38,6/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1554,9/10/2019 23:38,2/08/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1553,9/10/2019 23:38,27/06/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-1552,9/10/2019 23:38,2/11/2018 15:29,9.3,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1551,9/10/2019 23:38,6/08/2018 14:29,6.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1550,9/10/2019 23:38,26/09/2018 15:29,2.1,269, Improper Privilege Management,nan
CVE-2018-1549,9/10/2019 23:38,10/07/2018 16:29,4.9,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-1548,9/10/2019 23:38,9/07/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-1546,9/10/2019 23:38,6/07/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-1545,9/10/2019 23:38,26/09/2018 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1544,9/10/2019 23:38,25/05/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1543,9/10/2019 23:38,27/06/2018 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-1542,9/10/2019 23:38,6/07/2018 14:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1541,9/10/2019 23:38,24/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1539,9/10/2019 23:38,25/09/2018 15:29,6.4,287, Improper Authentication,nan
CVE-2018-1536,9/10/2019 23:38,19/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1535,9/10/2019 23:38,19/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1534,9/10/2019 23:38,12/10/2018 11:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1533,9/10/2019 23:38,12/10/2018 11:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1532,9/10/2019 23:38,31/05/2018 21:29,4.0,200, Information Exposure,nan
CVE-2018-1528,9/10/2019 23:38,6/08/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1525,9/10/2019 23:38,6/12/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-1524,9/10/2019 23:38,3/08/2018 15:29,9.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-1523,9/10/2019 23:38,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1522,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1521,9/10/2019 23:38,10/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1518,9/10/2019 23:38,18/10/2018 15:29,2.1,326, Inadequate Encryption Strength,nan
CVE-2018-1517,9/10/2019 23:38,20/08/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-1515,9/10/2019 23:38,25/05/2018 14:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1514,9/10/2019 23:38,7/06/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1513,9/10/2019 23:38,23/07/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1509,9/10/2019 23:38,2/10/2018 15:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-1507,9/10/2019 23:38,27/06/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1505,9/10/2019 23:38,6/12/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-1504,9/10/2019 23:38,6/12/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-1503,9/10/2019 23:38,23/07/2018 13:29,4.0,20, Improper Input Validation,nan
CVE-2018-1498,9/10/2019 23:38,2/10/2018 15:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-1496,9/10/2019 23:38,31/05/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1495,9/10/2019 23:38,29/05/2018 17:29,5.5,269, Improper Privilege Management,nan
CVE-2018-1494,9/10/2019 23:38,6/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1492,9/10/2019 23:38,10/07/2018 16:29,4.6,384, Session Fixation,nan
CVE-2018-1488,9/10/2019 23:38,25/05/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1487,9/10/2019 23:38,10/07/2018 16:29,4.6,426, Untrusted Search Path,nan
CVE-2018-1485,9/10/2019 23:38,12/12/2018 16:29,4.0,384, Session Fixation,nan
CVE-2018-1484,9/10/2019 23:38,12/12/2018 16:29,4.3,384, Session Fixation,nan
CVE-2018-1483,9/10/2019 23:38,11/04/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1481,9/10/2019 23:38,12/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1480,9/10/2019 23:38,12/12/2018 16:29,5.0,384, Session Fixation,nan
CVE-2018-1478,9/10/2019 23:38,12/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-1476,9/10/2019 23:38,12/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1474,9/10/2019 23:38,12/12/2018 16:29,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-1470,9/10/2019 23:38,20/07/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-1467,9/10/2019 23:38,25/05/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-1460,9/10/2019 23:38,15/06/2018 14:29,7.2,269, Improper Privilege Management,nan
CVE-2018-1458,9/10/2019 23:38,10/07/2018 16:29,6.8,426, Untrusted Search Path,nan
CVE-2018-1455,9/10/2019 23:38,15/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1454,9/10/2019 23:38,5/06/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-1453,9/10/2019 23:38,8/06/2018 13:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1444,9/10/2019 23:38,14/03/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1443,9/10/2019 23:38,8/03/2018 16:29,4.6,287, Improper Authentication,nan
CVE-2018-1442,9/10/2019 23:38,8/03/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1441,9/10/2019 23:38,14/03/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1440,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1439,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1437,9/10/2019 23:38,14/03/2018 0:29,9.3,426, Untrusted Search Path,nan
CVE-2018-1435,9/10/2019 23:38,14/03/2018 0:29,6.8,426, Untrusted Search Path,nan
CVE-2018-1432,9/10/2019 23:38,5/06/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-1429,9/10/2019 23:38,23/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1428,9/10/2019 23:38,22/03/2018 12:29,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-1427,9/10/2019 23:38,22/03/2018 12:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1426,9/10/2019 23:38,22/03/2018 12:29,6.4,320, Key Management Errors,nan
CVE-2018-1424,9/10/2019 23:38,7/12/2018 16:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1423,9/10/2019 23:38,10/07/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-1422,9/10/2019 23:38,6/08/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1421,9/10/2019 23:38,4/04/2018 18:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1420,9/10/2019 23:38,1/10/2018 14:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1408,9/10/2019 23:38,10/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1407,9/10/2019 23:38,10/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1405,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1404,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1403,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1398,9/10/2019 23:38,20/07/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1396,9/10/2019 23:38,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1395,9/10/2019 23:38,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1394,9/10/2019 23:38,20/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1393,9/10/2019 23:38,13/06/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1390,9/10/2019 23:38,30/03/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1387,9/10/2019 23:38,8/03/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1386,9/10/2019 23:38,14/03/2018 0:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1384,9/10/2019 23:38,30/03/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1380,9/10/2019 23:38,29/10/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-1376,9/10/2019 23:38,29/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1375,9/10/2019 23:38,29/05/2018 13:29,5.0,384, Session Fixation,nan
CVE-2018-1374,9/10/2019 23:38,26/06/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-1373,9/10/2019 23:38,2/03/2018 17:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-1370,9/10/2019 23:38,29/05/2018 13:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1369,9/10/2019 23:38,29/05/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-1350,9/10/2019 23:38,26/03/2018 19:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1349,9/10/2019 23:38,26/03/2018 19:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1347,9/10/2019 23:38,21/03/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1279,9/10/2019 23:38,10/12/2018 19:29,3.3,330, Use of Insufficiently Random Values,nan
CVE-2018-1273,9/10/2019 23:38,11/04/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2018-1264,9/10/2019 23:38,5/10/2018 21:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1255,9/10/2019 23:38,13/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1253,9/10/2019 23:38,21/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1251,9/10/2019 23:38,28/09/2018 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1250,9/10/2019 23:38,28/09/2018 18:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1246,9/10/2019 23:38,28/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1245,9/10/2019 23:38,13/07/2018 17:29,9.0,863, Incorrect Authorization,nan
CVE-2018-1244,9/10/2019 23:38,2/07/2018 17:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-1243,9/10/2019 23:38,2/07/2018 17:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2018-1241,9/10/2019 23:38,29/05/2018 17:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1230,9/10/2019 23:38,21/03/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1229,9/10/2019 23:38,21/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1212,9/10/2019 23:38,2/07/2018 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-1191,9/10/2019 23:38,29/03/2018 20:29,3.5,200, Information Exposure,nan
CVE-2018-1180,9/10/2019 23:38,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-1179,9/10/2019 23:38,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-1178,9/10/2019 23:38,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-1177,9/10/2019 23:38,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-1176,9/10/2019 23:38,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-1175,9/10/2019 23:38,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-1174,9/10/2019 23:38,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-1173,9/10/2019 23:38,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-1172,9/10/2019 23:38,16/05/2018 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1170,9/10/2019 23:38,2/03/2018 1:29,8.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1169,9/10/2019 23:38,2/03/2018 1:29,6.8,20, Improper Input Validation,nan
CVE-2018-1168,9/10/2019 23:38,21/02/2018 14:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1167,9/10/2019 23:38,19/04/2018 2:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1166,9/10/2019 23:38,21/02/2018 14:29,7.2,20, Improper Input Validation,nan
CVE-2018-1165,9/10/2019 23:38,21/02/2018 14:29,7.2,20, Improper Input Validation,nan
CVE-2018-1164,9/10/2019 23:38,21/02/2018 14:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1161,9/10/2019 23:38,8/02/2018 18:29,10.0,20, Improper Input Validation,nan
CVE-2018-1160,9/10/2019 23:38,20/12/2018 21:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-1140,9/10/2019 23:38,22/08/2018 14:29,3.3,20, Improper Input Validation,nan
CVE-2018-1139,9/10/2019 23:38,22/08/2018 14:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2018-1132,9/10/2019 23:38,20/06/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1131,9/10/2019 23:38,15/05/2018 13:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1130,9/10/2019 23:38,10/05/2018 13:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-1128,9/10/2019 23:38,10/07/2018 14:29,5.4,287, Improper Authentication,nan
CVE-2018-1127,9/10/2019 23:38,11/09/2018 15:29,6.8,384, Session Fixation,nan
CVE-2018-1125,9/10/2019 23:38,23/05/2018 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1123,9/10/2019 23:38,23/05/2018 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1121,9/10/2019 23:38,13/06/2018 20:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-1120,9/10/2019 23:38,20/06/2018 13:29,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1118,9/10/2019 23:38,10/05/2018 22:29,2.1,200, Information Exposure,nan
CVE-2018-1116,9/10/2019 23:38,10/07/2018 19:29,3.6,200, Information Exposure,nan
CVE-2018-1114,9/10/2019 23:38,11/09/2018 15:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-1113,9/10/2019 23:38,3/07/2018 1:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1106,9/10/2019 23:38,23/04/2018 20:29,2.1,287, Improper Authentication,nan
CVE-2018-1104,9/10/2019 23:38,2/05/2018 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1103,9/10/2019 23:38,12/06/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-1102,9/10/2019 23:38,30/04/2018 19:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1101,9/10/2019 23:38,2/05/2018 18:29,6.5,521, Weak Password Requirements,nan
CVE-2018-1100,9/10/2019 23:38,11/04/2018 19:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1097,9/10/2019 23:38,4/04/2018 21:29,4.0,200, Information Exposure,nan
CVE-2018-1096,9/10/2019 23:38,5/04/2018 21:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1090,9/10/2019 23:38,18/06/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-1089,9/10/2019 23:38,9/05/2018 15:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1086,9/10/2019 23:38,12/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1085,9/10/2019 23:38,15/06/2018 13:29,10.0,287, Improper Authentication,nan
CVE-2018-1084,9/10/2019 23:38,12/04/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-1083,9/10/2019 23:38,28/03/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1082,9/10/2019 23:38,4/04/2018 21:29,6.8,287, Improper Authentication,nan
CVE-2018-1081,9/10/2019 23:38,4/04/2018 21:29,5.0,388, 7PK – Errors,nan
CVE-2018-1079,9/10/2019 23:38,12/04/2018 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1077,9/10/2019 23:38,14/03/2018 18:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1075,9/10/2019 23:38,12/06/2018 13:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1073,9/10/2019 23:38,19/06/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-1072,9/10/2019 23:38,26/06/2018 18:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1071,9/10/2019 23:38,9/03/2018 15:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1070,9/10/2019 23:38,12/06/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-1069,9/10/2019 23:38,9/03/2018 14:29,5.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1067,9/10/2019 23:38,21/05/2018 17:29,5.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-1056,9/10/2019 23:38,27/07/2018 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-1053,9/10/2019 23:38,9/02/2018 14:29,3.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1052,9/10/2019 23:38,9/02/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1051,9/10/2019 23:38,25/01/2018 20:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-1049,9/10/2019 23:38,16/02/2018 21:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-1047,9/10/2019 23:38,24/01/2018 23:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19879,9/10/2019 23:37,28/03/2019 17:29,5.0,255, Credentials Management,nan
CVE-2018-19644,9/10/2019 23:37,27/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19643,9/10/2019 23:37,27/03/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-19642,9/10/2019 23:37,27/03/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-19641,9/10/2019 23:37,27/03/2019 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19634,9/10/2019 23:37,22/01/2019 15:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2018-19276,9/10/2019 23:37,21/03/2019 16:00,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-19029,9/10/2019 23:37,5/02/2019 18:29,8.3,476, NULL Pointer Dereference,nan
CVE-2018-19027,9/10/2019 23:37,30/01/2019 16:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-19023,9/10/2019 23:37,25/01/2019 20:29,5.8,287, Improper Authentication,nan
CVE-2018-19021,9/10/2019 23:37,25/01/2019 20:29,3.3,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-19020,9/10/2019 23:37,12/02/2019 22:29,3.5,125, Out-of-bounds Read,nan
CVE-2018-19019,9/10/2019 23:37,22/01/2019 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-19018,9/10/2019 23:37,12/02/2019 22:29,6.0,824, Access of Uninitialized Pointer,nan
CVE-2018-19017,9/10/2019 23:37,22/01/2019 20:29,6.8,416, Use After Free,nan
CVE-2018-19016,9/10/2019 23:37,27/03/2019 18:29,7.8,20, Improper Input Validation,nan
CVE-2018-19015,9/10/2019 23:37,28/01/2019 19:29,6.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19014,9/10/2019 23:37,28/01/2019 22:29,3.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-19013,9/10/2019 23:37,22/01/2019 20:29,4.9,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19011,9/10/2019 23:37,22/01/2019 20:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19010,9/10/2019 23:37,28/01/2019 22:29,3.3,20, Improper Input Validation,nan
CVE-2018-19009,9/10/2019 23:37,25/01/2019 20:29,2.1,255, Credentials Management,nan
CVE-2018-19008,9/10/2019 23:37,13/02/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-19007,9/10/2019 23:37,14/12/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19006,9/10/2019 23:37,8/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19005,9/10/2019 23:37,20/12/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-19004,9/10/2019 23:37,1/02/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19003,9/10/2019 23:37,14/12/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19002,9/10/2019 23:37,5/02/2019 18:29,8.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19001,9/10/2019 23:37,7/12/2018 14:29,4.6,326, Inadequate Encryption Strength,nan
CVE-2018-19000,9/10/2019 23:37,5/02/2019 18:29,5.0,287, Improper Authentication,nan
CVE-2018-18999,9/10/2019 23:37,19/12/2018 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-18998,9/10/2019 23:37,5/02/2019 18:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-18997,9/10/2019 23:37,3/01/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18996,9/10/2019 23:37,5/02/2019 18:29,7.5,862, Missing Authorization,nan
CVE-2018-18995,9/10/2019 23:37,3/01/2019 22:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-18994,9/10/2019 23:37,27/03/2019 18:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-18993,9/10/2019 23:37,4/12/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18992,9/10/2019 23:37,5/02/2019 18:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-18991,9/10/2019 23:37,4/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18990,9/10/2019 23:37,5/02/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18989,9/10/2019 23:37,4/12/2018 22:29,6.8,416, Use After Free,nan
CVE-2018-18988,9/10/2019 23:37,1/02/2019 17:29,8.3,20, Improper Input Validation,nan
CVE-2018-18986,9/10/2019 23:37,5/02/2019 18:29,8.3,125, Out-of-bounds Read,nan
CVE-2018-18985,9/10/2019 23:37,29/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18984,9/10/2019 23:37,14/12/2018 15:29,2.1,310, Cryptographic Issues,nan
CVE-2018-18982,9/10/2019 23:37,27/11/2018 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18981,9/10/2019 23:37,24/01/2019 21:29,7.8,787, Out-of-bounds Write,nan
CVE-2018-18816,9/10/2019 23:37,7/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18814,9/10/2019 23:37,16/01/2019 22:29,7.5,287, Improper Authentication,nan
CVE-2018-18813,9/10/2019 23:37,16/01/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18812,9/10/2019 23:37,16/01/2019 22:29,3.5,269, Improper Privilege Management,nan
CVE-2018-18810,9/10/2019 23:37,11/12/2018 19:29,4.0,255, Credentials Management,nan
CVE-2018-18808,9/10/2019 23:37,7/03/2019 22:29,8.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-18807,9/10/2019 23:37,26/11/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18593,9/10/2019 23:37,31/12/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18591,9/10/2019 23:37,13/11/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-18590,9/10/2019 23:37,7/11/2018 16:29,5.8,200, Information Exposure,nan
CVE-2018-18589,9/10/2019 23:37,23/10/2018 17:29,6.5,20, Improper Input Validation,nan
CVE-2018-17957,9/10/2019 23:37,26/12/2018 15:29,2.1,287, Improper Authentication,nan
CVE-2018-17956,9/10/2019 23:37,15/03/2019 20:29,2.1,255, Credentials Management,nan
CVE-2018-17955,9/10/2019 23:37,15/03/2019 20:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-17936,9/10/2019 23:37,27/11/2018 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-17935,9/10/2019 23:37,24/10/2018 13:29,4.8,254, 7PK – Security Features,nan
CVE-2018-17934,9/10/2019 23:37,27/11/2018 20:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17931,9/10/2019 23:37,30/10/2018 21:29,7.2,284, Improper Access Control,nan
CVE-2018-17930,9/10/2019 23:37,28/11/2018 23:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17929,9/10/2019 23:37,11/10/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17928,9/10/2019 23:37,31/01/2019 21:29,3.3,287, Improper Authentication,nan
CVE-2018-17927,9/10/2019 23:37,11/10/2018 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17926,9/10/2019 23:37,31/01/2019 17:29,3.3,287, Improper Authentication,nan
CVE-2018-17924,9/10/2019 23:37,7/12/2018 14:29,7.8,306, Missing Authentication for Critical Function,nan
CVE-2018-17923,9/10/2019 23:37,24/10/2018 22:29,6.9,287, Improper Authentication,nan
CVE-2018-17922,9/10/2019 23:37,2/11/2018 15:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-17921,9/10/2019 23:37,24/10/2018 22:29,5.8,284, Improper Access Control,nan
CVE-2018-17919,9/10/2019 23:37,10/10/2018 15:29,6.4,798, Use of Hard-coded Credentials,nan
CVE-2018-17918,9/10/2019 23:37,2/11/2018 15:29,7.5,287, Improper Authentication,nan
CVE-2018-17917,9/10/2019 23:37,10/10/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-17916,9/10/2019 23:37,2/11/2018 13:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17915,9/10/2019 23:37,10/10/2018 15:29,6.4,311, Missing Encryption of Sensitive Data,nan
CVE-2018-17913,9/10/2019 23:37,5/11/2018 23:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-17912,9/10/2019 23:37,2/11/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17911,9/10/2019 23:37,17/10/2018 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17910,9/10/2019 23:37,29/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17909,9/10/2019 23:37,5/11/2018 23:29,6.8,416, Use After Free,nan
CVE-2018-17908,9/10/2019 23:37,29/10/2018 18:29,7.2,284, Improper Access Control,nan
CVE-2018-17907,9/10/2019 23:37,5/11/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-17906,9/10/2019 23:37,19/11/2018 20:29,3.3,255, Credentials Management,nan
CVE-2018-17905,9/10/2019 23:37,5/11/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17904,9/10/2019 23:37,25/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17903,9/10/2019 23:37,24/10/2018 22:29,6.4,20, Improper Input Validation,nan
CVE-2018-17902,9/10/2019 23:37,12/10/2018 14:29,5.0,384, Session Fixation,nan
CVE-2018-17901,9/10/2019 23:37,17/10/2018 2:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17900,9/10/2019 23:37,12/10/2018 14:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-17899,9/10/2019 23:37,17/10/2018 2:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17898,9/10/2019 23:37,12/10/2018 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-17896,9/10/2019 23:37,12/10/2018 14:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2018-17895,9/10/2019 23:37,17/10/2018 2:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-17894,9/10/2019 23:37,12/10/2018 14:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-17893,9/10/2019 23:37,17/10/2018 2:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-17891,9/10/2019 23:37,4/10/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-1046,9/10/2019 23:37,16/07/2018 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1041,9/10/2019 23:37,15/02/2018 17:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-17890,9/10/2019 23:36,12/10/2018 14:29,7.5,398, 7PK – Code Quality,nan
CVE-2018-17889,9/10/2019 23:36,8/10/2018 12:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17888,9/10/2019 23:36,12/10/2018 14:29,7.5,330, Use of Insufficiently Random Values,nan
CVE-2018-17707,9/10/2019 23:36,24/01/2019 4:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17706,9/10/2019 23:36,29/10/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17705,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17704,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17703,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17702,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17701,9/10/2019 23:36,24/01/2019 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-17699,9/10/2019 23:36,24/01/2019 4:29,4.3,200, Information Exposure,nan
CVE-2018-17698,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17697,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17696,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17695,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17694,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17693,9/10/2019 23:36,24/01/2019 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-17692,9/10/2019 23:36,24/01/2019 4:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17691,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17690,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17689,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17688,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17687,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17686,9/10/2019 23:36,24/01/2019 4:29,4.3,200, Information Exposure,nan
CVE-2018-17685,9/10/2019 23:36,24/01/2019 4:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-17684,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17683,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17682,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17681,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17680,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17679,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17678,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17677,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17676,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17675,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17674,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17673,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17672,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17671,9/10/2019 23:36,24/01/2019 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-17670,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17669,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17668,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17667,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17666,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17665,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17664,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17663,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17662,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17661,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17660,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17659,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17658,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17657,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17656,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17655,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17654,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17653,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17652,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17651,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17650,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17649,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17648,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17647,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17646,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17645,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17644,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17643,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17642,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17641,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17640,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17639,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17638,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17637,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17636,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17635,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17634,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17633,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17632,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17631,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17630,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17629,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17627,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17626,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17625,9/10/2019 23:36,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-17624,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17623,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17622,9/10/2019 23:36,29/10/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-17621,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17620,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17619,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17618,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17617,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17616,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17615,9/10/2019 23:36,29/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-17614,9/10/2019 23:36,13/11/2018 21:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17542,9/10/2019 23:36,11/02/2019 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17502,9/10/2019 23:36,21/03/2019 16:00,2.1,200, Information Exposure,nan
CVE-2018-17500,9/10/2019 23:36,21/03/2019 16:00,2.1,255, Credentials Management,nan
CVE-2018-17499,9/10/2019 23:36,21/03/2019 16:00,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-17497,9/10/2019 23:36,21/03/2019 16:00,2.1,255, Credentials Management,nan
CVE-2018-17492,9/10/2019 23:36,21/03/2019 16:00,2.1,798, Use of Hard-coded Credentials,nan
CVE-2018-17491,9/10/2019 23:36,21/03/2019 16:00,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-17490,9/10/2019 23:36,21/03/2019 16:00,3.6,269, Improper Privilege Management,nan
CVE-2018-17489,9/10/2019 23:36,21/03/2019 16:00,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-17486,9/10/2019 23:36,21/03/2019 16:00,3.6,254, 7PK – Security Features,nan
CVE-2018-17485,9/10/2019 23:36,21/03/2019 16:00,2.1,255, Credentials Management,nan
CVE-2018-17484,9/10/2019 23:36,21/03/2019 16:00,3.6,200, Information Exposure,nan
CVE-2018-17483,9/10/2019 23:36,21/03/2019 16:00,2.1,200, Information Exposure,nan
CVE-2018-17482,9/10/2019 23:36,21/03/2019 16:00,2.1,200, Information Exposure,nan
CVE-2018-17247,9/10/2019 23:36,20/12/2018 22:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17246,9/10/2019 23:36,20/12/2018 22:29,7.5,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2018-17245,9/10/2019 23:36,20/12/2018 22:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-17244,9/10/2019 23:36,20/12/2018 22:29,4.0,200, Information Exposure,nan
CVE-2018-16883,9/10/2019 23:36,19/12/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-16882,9/10/2019 23:36,3/01/2019 16:29,7.2,416, Use After Free,nan
CVE-2018-16879,9/10/2019 23:36,3/01/2019 14:29,7.5,417, Channel and Path Errors,nan
CVE-2018-16870,9/10/2019 23:36,3/01/2019 16:29,4.3,310, Cryptographic Issues,nan
CVE-2018-16869,9/10/2019 23:36,3/12/2018 14:29,3.3,310, Cryptographic Issues,nan
CVE-2018-16867,9/10/2019 23:36,12/12/2018 13:29,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16863,9/10/2019 23:36,3/12/2018 17:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16857,9/10/2019 23:36,28/11/2018 14:29,4.3,358, Improperly Implemented Security Check for Standard,nan
CVE-2018-16856,9/10/2019 23:36,26/03/2019 18:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-16855,9/10/2019 23:36,3/12/2018 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16854,9/10/2019 23:36,26/11/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16853,9/10/2019 23:36,28/11/2018 14:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-16852,9/10/2019 23:36,28/11/2018 14:29,3.5,476, NULL Pointer Dereference,nan
CVE-2018-16851,9/10/2019 23:36,28/11/2018 14:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-16850,9/10/2019 23:36,13/11/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16849,9/10/2019 23:36,2/11/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-16847,9/10/2019 23:36,2/11/2018 22:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-16841,9/10/2019 23:36,28/11/2018 14:29,4.0,415, Double Free,nan
CVE-2018-16840,9/10/2019 23:36,31/10/2018 18:29,7.5,416, Use After Free,nan
CVE-2018-16839,9/10/2019 23:36,31/10/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16555,9/10/2019 23:36,13/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16529,9/10/2019 23:36,28/03/2019 17:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-16493,9/10/2019 23:36,1/02/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16492,9/10/2019 23:36,1/02/2019 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16491,9/10/2019 23:36,1/02/2019 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16490,9/10/2019 23:36,1/02/2019 18:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16489,9/10/2019 23:36,1/02/2019 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16486,9/10/2019 23:36,1/02/2019 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16485,9/10/2019 23:36,1/02/2019 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16484,9/10/2019 23:36,1/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16482,9/10/2019 23:36,1/02/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16481,9/10/2019 23:36,1/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16480,9/10/2019 23:36,1/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16479,9/10/2019 23:36,1/02/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16478,9/10/2019 23:36,4/12/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16476,9/10/2019 23:36,30/11/2018 19:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-16475,9/10/2019 23:36,6/11/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16474,9/10/2019 23:36,6/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16473,9/10/2019 23:36,6/11/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16472,9/10/2019 23:36,6/11/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-16470,9/10/2019 23:36,13/11/2018 23:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-16469,9/10/2019 23:36,30/10/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-16468,9/10/2019 23:36,30/10/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16467,9/10/2019 23:36,30/10/2018 21:29,5.0,287, Improper Authentication,nan
CVE-2018-16466,9/10/2019 23:36,30/10/2018 21:29,5.5,273, Improper Check for Dropped Privileges,nan
CVE-2018-16465,9/10/2019 23:36,30/10/2018 21:29,4.3,287, Improper Authentication,nan
CVE-2018-16464,9/10/2019 23:36,30/10/2018 21:29,3.5,287, Improper Authentication,nan
CVE-2018-16463,9/10/2019 23:36,30/10/2018 21:29,3.6,384, Session Fixation,nan
CVE-2018-16462,9/10/2019 23:36,30/10/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16461,9/10/2019 23:36,30/10/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16460,9/10/2019 23:36,7/09/2018 18:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16459,9/10/2019 23:36,6/09/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15801,9/10/2019 23:35,19/12/2018 22:29,5.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-15800,9/10/2019 23:35,10/12/2018 19:29,3.5,200, Information Exposure,nan
CVE-2018-15798,9/10/2019 23:35,19/12/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-15797,9/10/2019 23:35,5/12/2018 18:29,4.0,255, Credentials Management,nan
CVE-2018-15796,9/10/2019 23:35,9/11/2018 22:29,5.5,310, Cryptographic Issues,nan
CVE-2018-15795,9/10/2019 23:35,13/11/2018 14:29,5.5,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-15784,9/10/2019 23:35,18/01/2019 22:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-15782,9/10/2019 23:35,16/01/2019 20:29,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15781,9/10/2019 23:35,13/02/2019 16:29,7.9,798, Use of Hard-coded Credentials,nan
CVE-2018-15778,9/10/2019 23:35,4/02/2019 22:29,7.2,20, Improper Input Validation,nan
CVE-2018-15776,9/10/2019 23:35,13/12/2018 22:29,4.6,388, 7PK – Errors,nan
CVE-2018-15774,9/10/2019 23:35,13/12/2018 22:29,6.5,863, Incorrect Authorization,nan
CVE-2018-15765,9/10/2019 23:35,18/10/2018 22:29,2.1,200, Information Exposure,nan
CVE-2018-15763,9/10/2019 23:35,5/10/2018 21:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-15762,9/10/2019 23:35,2/11/2018 22:29,6.5,269, Improper Privilege Management,nan
CVE-2018-15759,9/10/2019 23:35,19/11/2018 14:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-15755,9/10/2019 23:35,12/10/2018 22:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15754,9/10/2019 23:35,13/12/2018 22:29,4.0,863, Incorrect Authorization,nan
CVE-2018-15722,9/10/2019 23:35,20/12/2018 21:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15721,9/10/2019 23:35,20/12/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2018-15720,9/10/2019 23:35,20/12/2018 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-15719,9/10/2019 23:35,12/12/2018 19:29,5.0,521, Weak Password Requirements,nan
CVE-2018-15718,9/10/2019 23:35,12/12/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-15717,9/10/2019 23:35,12/12/2018 19:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-15716,9/10/2019 23:35,30/11/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15715,9/10/2019 23:35,30/11/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-15688,9/10/2019 23:35,26/10/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15687,9/10/2019 23:35,26/10/2018 14:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-15640,9/10/2019 23:35,9/04/2019 16:29,9.0,269, Improper Privilege Management,nan
CVE-2018-15635,9/10/2019 23:35,9/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15616,9/10/2019 23:35,17/10/2018 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-15615,9/10/2019 23:35,24/09/2018 12:29,2.1,200, Information Exposure,nan
CVE-2018-15614,9/10/2019 23:35,23/01/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15613,9/10/2019 23:35,21/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15612,9/10/2019 23:35,21/09/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15557,9/10/2019 23:35,27/06/2019 17:15,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-15556,9/10/2019 23:35,27/06/2019 17:15,10.0,287, Improper Authentication,nan
CVE-2018-15555,9/10/2019 23:35,28/06/2019 15:15,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-15467,9/10/2019 23:35,11/01/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15466,9/10/2019 23:35,11/01/2019 15:29,4.3,306, Missing Authentication for Critical Function,nan
CVE-2018-15465,9/10/2019 23:35,24/12/2018 14:29,5.5,863, Incorrect Authorization,nan
CVE-2018-15464,9/10/2019 23:35,11/01/2019 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-15463,9/10/2019 23:35,15/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15461,9/10/2019 23:35,10/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15460,9/10/2019 23:35,10/01/2019 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-15458,9/10/2019 23:35,10/01/2019 19:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-15457,9/10/2019 23:35,10/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15456,9/10/2019 23:35,10/01/2019 18:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-15455,9/10/2019 23:35,23/01/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15454,9/10/2019 23:35,1/11/2018 12:29,7.8,20, Improper Input Validation,nan
CVE-2018-15453,9/10/2019 23:35,10/01/2019 18:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15452,9/10/2019 23:35,13/11/2018 14:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2018-15451,9/10/2019 23:35,8/11/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15450,9/10/2019 23:35,8/11/2018 20:29,5.5,20, Improper Input Validation,nan
CVE-2018-15449,9/10/2019 23:35,8/11/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-15448,9/10/2019 23:35,8/11/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-15447,9/10/2019 23:35,8/11/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15446,9/10/2019 23:35,8/11/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-15445,9/10/2019 23:35,8/11/2018 18:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15444,9/10/2019 23:35,8/11/2018 18:29,4.9,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-15443,9/10/2019 23:35,8/11/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-15442,9/10/2019 23:35,24/10/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15441,9/10/2019 23:35,28/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15440,9/10/2019 23:35,15/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15439,9/10/2019 23:35,8/11/2018 17:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2018-15438,9/10/2019 23:35,17/10/2018 22:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15437,9/10/2019 23:35,8/11/2018 17:29,2.1,254, 7PK – Security Features,nan
CVE-2018-15436,9/10/2019 23:35,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15435,9/10/2019 23:35,17/10/2018 21:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15434,9/10/2019 23:35,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15433,9/10/2019 23:35,5/10/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-15432,9/10/2019 23:35,5/10/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-15431,9/10/2019 23:35,5/10/2018 14:29,6.9,20, Improper Input Validation,nan
CVE-2018-15430,9/10/2019 23:35,5/10/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2018-15429,9/10/2019 23:35,5/10/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-15428,9/10/2019 23:35,5/10/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-15427,9/10/2019 23:35,5/10/2018 14:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-15426,9/10/2019 23:35,5/10/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15425,9/10/2019 23:35,5/10/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2018-15424,9/10/2019 23:35,5/10/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2018-15423,9/10/2019 23:35,5/10/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-15422,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15421,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15420,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15419,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15418,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15417,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15416,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15415,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15414,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15413,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15412,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15411,9/10/2019 23:35,5/10/2018 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15410,9/10/2019 23:35,5/10/2018 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15409,9/10/2019 23:35,5/10/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-15408,9/10/2019 23:35,5/10/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-15407,9/10/2019 23:35,5/10/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-15406,9/10/2019 23:35,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15405,9/10/2019 23:35,5/10/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-15404,9/10/2019 23:35,5/10/2018 14:29,4.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-15403,9/10/2019 23:35,5/10/2018 14:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-15402,9/10/2019 23:35,17/10/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15401,9/10/2019 23:35,5/10/2018 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15400,9/10/2019 23:35,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15399,9/10/2019 23:35,5/10/2018 14:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-15397,9/10/2019 23:35,5/10/2018 14:29,7.1,320, Key Management Errors,nan
CVE-2018-15396,9/10/2019 23:35,5/10/2018 14:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-15393,9/10/2019 23:35,8/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15391,9/10/2019 23:35,5/10/2018 14:29,7.8,682, Incorrect Calculation,nan
CVE-2018-15389,9/10/2019 23:35,5/10/2018 14:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-15388,9/10/2019 23:35,3/05/2019 15:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-15387,9/10/2019 23:35,5/10/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2018-15383,9/10/2019 23:35,5/10/2018 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-15382,9/10/2019 23:35,5/10/2018 14:29,7.5,642, External Control of Critical State Data,nan
CVE-2018-15381,9/10/2019 23:35,8/11/2018 16:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-15380,9/10/2019 23:35,20/02/2019 23:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15379,9/10/2019 23:35,5/10/2018 14:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15378,9/10/2019 23:35,15/10/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15376,9/10/2019 23:35,5/10/2018 14:29,7.2,123, Write-what-where Condition,nan
CVE-2018-15375,9/10/2019 23:35,5/10/2018 14:29,7.2,123, Write-what-where Condition,nan
CVE-2018-15374,9/10/2019 23:35,5/10/2018 14:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-15371,9/10/2019 23:35,5/10/2018 14:29,7.2,287, Improper Authentication,nan
CVE-2018-15369,9/10/2019 23:35,5/10/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-15368,9/10/2019 23:35,5/10/2018 14:29,7.2,20, Improper Input Validation,nan
CVE-2018-15361,9/10/2019 23:35,5/03/2019 15:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-14829,9/10/2019 23:35,20/09/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14828,9/10/2019 23:35,23/10/2018 20:29,7.2,269, Improper Privilege Management,nan
CVE-2018-14827,9/10/2019 23:35,20/09/2018 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-14826,9/10/2019 23:35,2/10/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-14825,9/10/2019 23:35,24/09/2018 19:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14824,9/10/2019 23:35,27/09/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-14823,9/10/2019 23:35,26/09/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14822,9/10/2019 23:35,2/10/2018 21:29,7.5,200, Information Exposure,nan
CVE-2018-14821,9/10/2019 23:35,20/09/2018 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14820,9/10/2019 23:35,23/10/2018 20:29,6.4,20, Improper Input Validation,nan
CVE-2018-14819,9/10/2019 23:35,26/09/2018 20:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-14818,9/10/2019 23:35,8/10/2018 12:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14817,9/10/2019 23:35,26/09/2018 20:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-14816,9/10/2019 23:35,23/10/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14814,9/10/2019 23:35,27/03/2019 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-14813,9/10/2019 23:35,26/09/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14812,9/10/2019 23:35,24/10/2018 21:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-14811,9/10/2019 23:35,26/09/2018 20:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-14810,9/10/2019 23:35,8/10/2018 12:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-14809,9/10/2019 23:35,26/09/2018 20:29,7.5,416, Use After Free,nan
CVE-2018-14808,9/10/2019 23:35,1/10/2018 15:29,4.0,269, Improper Privilege Management,nan
CVE-2018-14807,9/10/2019 23:35,18/10/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14806,9/10/2019 23:35,23/10/2018 20:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14805,9/10/2019 23:35,29/08/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2018-14804,9/10/2019 23:35,1/10/2018 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14803,9/10/2019 23:35,26/09/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-14802,9/10/2019 23:35,1/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14801,9/10/2019 23:35,22/08/2018 18:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-14800,9/10/2019 23:35,3/10/2018 13:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14799,9/10/2019 23:35,22/08/2018 18:29,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2018-14798,9/10/2019 23:35,1/10/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-14797,9/10/2019 23:35,23/08/2018 19:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-14796,9/10/2019 23:35,20/09/2018 19:29,7.8,306, Missing Authentication for Critical Function,nan
CVE-2018-14795,9/10/2019 23:35,21/08/2018 14:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14794,9/10/2019 23:35,1/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14793,9/10/2019 23:35,21/08/2018 14:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14792,9/10/2019 23:35,19/09/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14791,9/10/2019 23:35,23/08/2018 19:29,4.6,269, Improper Privilege Management,nan
CVE-2018-14790,9/10/2019 23:35,1/10/2018 13:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-14789,9/10/2019 23:35,22/08/2018 18:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-14788,9/10/2019 23:35,1/10/2018 13:29,5.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-14787,9/10/2019 23:35,22/08/2018 18:29,4.6,269, Improper Privilege Management,nan
CVE-2018-14785,9/10/2019 23:35,10/08/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-14784,9/10/2019 23:35,10/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14783,9/10/2019 23:35,10/08/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14782,9/10/2019 23:35,10/08/2018 19:29,5.0,287, Improper Authentication,nan
CVE-2018-14781,9/10/2019 23:35,13/08/2018 21:48,2.9,287, Improper Authentication,nan
CVE-2018-14667,9/10/2019 23:35,6/11/2018 22:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14666,9/10/2019 23:35,22/01/2019 15:29,6.5,863, Incorrect Authorization,nan
CVE-2018-14663,9/10/2019 23:35,26/11/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2018-14658,9/10/2019 23:35,13/11/2018 19:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-14657,9/10/2019 23:35,13/11/2018 19:29,4.3,254, 7PK – Security Features,nan
CVE-2018-14656,9/10/2019 23:35,8/10/2018 22:29,2.1,20, Improper Input Validation,nan
CVE-2018-14655,9/10/2019 23:35,13/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14650,9/10/2019 23:35,27/09/2018 20:29,1.9,276, Incorrect Default Permissions,nan
CVE-2018-14648,9/10/2019 23:35,28/09/2018 13:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-14646,9/10/2019 23:35,26/11/2018 19:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-14644,9/10/2019 23:35,9/11/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-14643,9/10/2019 23:35,21/09/2018 13:29,10.0,287, Improper Authentication,nan
CVE-2018-14641,9/10/2019 23:35,18/09/2018 13:29,7.1,20, Improper Input Validation,nan
CVE-2018-14638,9/10/2019 23:35,14/09/2018 19:29,5.0,415, Double Free,nan
CVE-2018-14637,9/10/2019 23:35,30/11/2018 13:29,6.8,287, Improper Authentication,nan
CVE-2018-14635,9/10/2019 23:35,10/09/2018 19:29,4.0,20, Improper Input Validation,nan
CVE-2018-14632,9/10/2019 23:35,6/09/2018 14:29,4.0,787, Out-of-bounds Write,nan
CVE-2018-14631,9/10/2019 23:35,17/09/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14630,9/10/2019 23:35,17/09/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14629,9/10/2019 23:35,28/11/2018 14:29,4.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14623,9/10/2019 23:35,14/12/2018 0:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14622,9/10/2019 23:35,30/08/2018 13:29,5.0,769, DEPRECATED: Uncontrolled File Descriptor Consumption,nan
CVE-2018-14621,9/10/2019 23:35,30/08/2018 13:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14620,9/10/2019 23:35,10/09/2018 19:29,7.5,20, Improper Input Validation,nan
CVE-2018-14619,9/10/2019 23:35,30/08/2018 12:29,7.2,20, Improper Input Validation,nan
CVE-2018-14597,9/10/2019 23:35,17/10/2018 21:49,5.0,200, Information Exposure,nan
CVE-2018-14320,9/10/2019 23:34,17/09/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14318,9/10/2019 23:34,24/09/2018 23:29,6.8,20, Improper Input Validation,nan
CVE-2018-14317,9/10/2019 23:34,30/08/2018 12:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14316,9/10/2019 23:34,31/07/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-14315,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14314,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14313,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14312,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14311,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14310,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14309,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14308,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14307,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14306,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14305,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14304,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14303,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14302,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14301,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14299,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14298,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14297,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14296,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14294,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14293,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14292,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14291,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14290,9/10/2019 23:34,31/07/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14289,9/10/2019 23:34,31/07/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-14288,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14287,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14286,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14285,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14284,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14283,9/10/2019 23:34,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14282,9/10/2019 23:34,31/07/2018 20:29,6.8,824, Access of Uninitialized Pointer,nan
CVE-2018-14281,9/10/2019 23:34,31/07/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-14280,9/10/2019 23:34,31/07/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-14279,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14278,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14277,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14276,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14275,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14274,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14273,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14272,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14271,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14270,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14269,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14268,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14267,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14266,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14265,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14264,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14263,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14262,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14261,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14260,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14259,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14258,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14257,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14256,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14255,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14254,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14253,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14252,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14251,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14250,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14249,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14248,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14247,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14246,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14245,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14244,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14243,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14242,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-14241,9/10/2019 23:34,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-13994,9/10/2019 23:34,7/05/2019 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-13993,9/10/2019 23:34,7/05/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13992,9/10/2019 23:34,7/05/2019 18:29,5.0,255, Credentials Management,nan
CVE-2018-13991,9/10/2019 23:34,7/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-13990,9/10/2019 23:34,6/05/2019 19:29,5.0,287, Improper Authentication,nan
CVE-2018-13816,9/10/2019 23:34,12/12/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2018-13815,9/10/2019 23:34,13/12/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-13814,9/10/2019 23:34,13/12/2018 16:29,6.8,20, Improper Input Validation,nan
CVE-2018-13813,9/10/2019 23:34,13/12/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-13812,9/10/2019 23:34,13/12/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13811,9/10/2019 23:34,13/12/2018 16:29,2.1,200, Information Exposure,nan
CVE-2018-13807,9/10/2019 23:34,12/09/2018 13:29,7.8,20, Improper Input Validation,nan
CVE-2018-13806,9/10/2019 23:34,12/09/2018 13:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2018-13802,9/10/2019 23:34,10/10/2018 17:29,9.0,269, Improper Privilege Management,nan
CVE-2018-13801,9/10/2019 23:34,10/10/2018 17:29,9.0,269, Improper Privilege Management,nan
CVE-2018-13800,9/10/2019 23:34,10/10/2018 17:29,4.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13299,9/10/2019 23:34,1/04/2019 15:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13297,9/10/2019 23:34,1/04/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-13296,9/10/2019 23:34,1/04/2019 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-13295,9/10/2019 23:34,1/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-13294,9/10/2019 23:34,1/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-13293,9/10/2019 23:34,1/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13292,9/10/2019 23:34,1/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-13291,9/10/2019 23:34,1/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-13290,9/10/2019 23:34,1/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2018-13289,9/10/2019 23:34,1/04/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-13288,9/10/2019 23:34,1/04/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-13287,9/10/2019 23:34,1/04/2019 15:29,4.0,276, Incorrect Default Permissions,nan
CVE-2018-13286,9/10/2019 23:34,1/04/2019 15:29,4.0,276, Incorrect Default Permissions,nan
CVE-2018-13285,9/10/2019 23:34,1/04/2019 15:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13284,9/10/2019 23:34,1/04/2019 15:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13282,9/10/2019 23:34,31/10/2018 16:29,6.8,384, Session Fixation,nan
CVE-2018-13281,9/10/2019 23:34,31/10/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-13280,9/10/2019 23:34,30/07/2018 14:29,4.3,330, Use of Insufficiently Random Values,nan
CVE-2018-12551,9/10/2019 23:34,27/03/2019 18:29,6.8,287, Improper Authentication,nan
CVE-2018-12548,9/10/2019 23:34,31/01/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12546,9/10/2019 23:34,27/03/2019 18:29,4.0,254, 7PK – Security Features,nan
CVE-2018-12545,9/10/2019 23:34,27/03/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-12544,9/10/2019 23:34,10/10/2018 20:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12543,9/10/2019 23:34,15/11/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-12541,9/10/2019 23:34,10/10/2018 20:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12540,9/10/2019 23:34,12/07/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12539,9/10/2019 23:34,14/08/2018 19:29,4.6,502, Deserialization of Untrusted Data,nan
CVE-2018-12538,9/10/2019 23:34,22/06/2018 19:29,6.5,384, Session Fixation,nan
CVE-2018-12537,9/10/2019 23:34,14/08/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-12479,9/10/2019 23:34,9/10/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-12478,9/10/2019 23:34,9/10/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2018-12477,9/10/2019 23:34,9/10/2018 13:29,6.4,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2018-12474,9/10/2019 23:34,9/10/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2018-12473,9/10/2019 23:34,2/10/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12472,9/10/2019 23:34,4/10/2018 14:29,6.4,287, Improper Authentication,nan
CVE-2018-12471,9/10/2019 23:33,4/10/2018 14:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12470,9/10/2019 23:33,4/10/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12469,9/10/2019 23:33,12/10/2018 13:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-12468,9/10/2019 23:33,1/08/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-12467,9/10/2019 23:33,1/08/2018 15:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12466,9/10/2019 23:33,1/08/2018 15:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12465,9/10/2019 23:33,29/06/2018 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12464,9/10/2019 23:33,29/06/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12463,9/10/2019 23:33,12/07/2018 16:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12462,9/10/2019 23:33,10/07/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12461,9/10/2019 23:33,10/07/2018 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-12449,9/10/2019 23:33,11/10/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-12448,9/10/2019 23:33,2/08/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-12416,9/10/2019 23:33,13/11/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12414,9/10/2019 23:33,6/11/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12413,9/10/2019 23:33,6/11/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12412,9/10/2019 23:33,6/11/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12411,9/10/2019 23:33,6/11/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12408,9/10/2019 23:33,8/08/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12120,9/10/2019 23:33,28/11/2018 17:29,6.8,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2018-12115,9/10/2019 23:33,21/08/2018 12:29,5.0,787, Out-of-bounds Write,nan
CVE-2018-11779,9/10/2019 23:33,26/07/2019 0:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-11746,9/10/2019 23:33,3/07/2018 13:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-11623,9/10/2019 23:33,31/07/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-11622,9/10/2019 23:33,31/07/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-11621,9/10/2019 23:33,31/07/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-11620,9/10/2019 23:33,31/07/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-11619,9/10/2019 23:33,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-11618,9/10/2019 23:33,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-11617,9/10/2019 23:33,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-11616,9/10/2019 23:33,30/08/2018 12:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11615,9/10/2019 23:33,30/08/2018 12:29,7.8,185, Incorrect Regular Expression,nan
CVE-2018-11465,9/10/2019 23:33,12/12/2018 16:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-11463,9/10/2019 23:33,12/12/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11455,9/10/2019 23:33,7/08/2018 15:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11454,9/10/2019 23:33,7/08/2018 15:29,4.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11453,9/10/2019 23:33,7/08/2018 15:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11450,9/10/2019 23:33,9/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11448,9/10/2019 23:33,26/06/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11447,9/10/2019 23:33,26/06/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11082,9/10/2019 23:33,5/10/2018 21:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-11080,9/10/2019 23:33,18/10/2018 22:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11079,9/10/2019 23:33,18/10/2018 22:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-11078,9/10/2019 23:33,11/09/2018 19:29,6.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11075,9/10/2019 23:33,28/09/2018 18:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11074,9/10/2019 23:33,28/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11073,9/10/2019 23:33,28/09/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11071,9/10/2019 23:33,18/09/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-11070,9/10/2019 23:33,11/09/2018 19:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-11069,9/10/2019 23:33,11/09/2018 19:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-11068,9/10/2019 23:33,11/09/2018 19:29,2.1,459, Incomplete Cleanup,nan
CVE-2018-11065,9/10/2019 23:33,24/08/2018 15:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11064,9/10/2019 23:33,5/10/2018 21:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11059,9/10/2019 23:33,24/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11053,9/10/2019 23:33,26/06/2018 22:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11052,9/10/2019 23:33,3/07/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-11051,9/10/2019 23:33,3/07/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10937,9/10/2019 23:33,11/09/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10936,9/10/2019 23:33,30/08/2018 13:29,6.8,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2018-10935,9/10/2019 23:33,11/09/2018 15:29,4.0,20, Improper Input Validation,nan
CVE-2018-10933,9/10/2019 23:33,17/10/2018 12:29,6.4,287, Improper Authentication,nan
CVE-2018-10932,9/10/2019 23:33,21/08/2018 18:29,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10922,9/10/2019 23:33,2/08/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-10921,9/10/2019 23:33,2/08/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-10919,9/10/2019 23:33,22/08/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-10918,9/10/2019 23:33,22/08/2018 17:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-10912,9/10/2019 23:33,23/07/2018 22:29,4.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10908,9/10/2019 23:33,9/08/2018 19:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-10905,9/10/2019 23:33,24/07/2018 13:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10902,9/10/2019 23:33,21/08/2018 19:29,4.6,415, Double Free,nan
CVE-2018-10898,9/10/2019 23:33,30/07/2018 17:29,5.8,798, Use of Hard-coded Credentials,nan
CVE-2018-10895,9/10/2019 23:33,12/07/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10894,9/10/2019 23:33,1/08/2018 17:29,5.5,295, Improper Certificate Validation,nan
CVE-2018-10891,9/10/2019 23:33,10/07/2018 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10890,9/10/2019 23:33,10/07/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-10889,9/10/2019 23:33,10/07/2018 18:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-10888,9/10/2019 23:33,10/07/2018 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10887,9/10/2019 23:33,10/07/2018 14:29,5.8,190, Integer Overflow or Wraparound,nan
CVE-2018-10885,9/10/2019 23:33,5/07/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-10884,9/10/2019 23:33,22/08/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10883,9/10/2019 23:33,30/07/2018 16:29,4.9,787, Out-of-bounds Write,nan
CVE-2018-10882,9/10/2019 23:33,27/07/2018 18:29,4.9,787, Out-of-bounds Write,nan
CVE-2018-10881,9/10/2019 23:33,26/07/2018 18:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10879,9/10/2019 23:33,26/07/2018 18:29,6.1,416, Use After Free,nan
CVE-2018-10878,9/10/2019 23:33,26/07/2018 18:29,6.1,787, Out-of-bounds Write,nan
CVE-2018-10873,9/10/2019 23:33,17/08/2018 12:29,6.5,20, Improper Input Validation,nan
CVE-2018-10871,9/10/2019 23:33,18/07/2018 13:29,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-10870,9/10/2019 23:33,19/07/2018 22:29,7.5,20, Improper Input Validation,nan
CVE-2018-10869,9/10/2019 23:33,19/07/2018 22:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10864,9/10/2019 23:33,13/08/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-10861,9/10/2019 23:33,10/07/2018 14:29,5.5,287, Improper Authentication,nan
CVE-2018-10859,9/10/2019 23:33,16/07/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-10857,9/10/2019 23:33,16/07/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-10856,9/10/2019 23:33,3/07/2018 1:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10852,9/10/2019 23:33,26/06/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-10851,9/10/2019 23:33,29/11/2018 18:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-10847,9/10/2019 23:33,30/07/2018 17:29,6.5,287, Improper Authentication,nan
CVE-2018-10843,9/10/2019 23:33,2/07/2018 17:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10842,9/10/2019 23:33,13/08/2018 17:29,4.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10840,9/10/2019 23:33,16/07/2018 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10637,9/10/2019 23:32,13/09/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10636,9/10/2019 23:32,13/08/2018 21:47,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10635,9/10/2019 23:32,11/07/2018 17:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2018-10634,9/10/2019 23:32,13/08/2018 21:47,2.9,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-10633,9/10/2019 23:32,11/07/2018 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-10632,9/10/2019 23:32,24/07/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-10631,9/10/2019 23:32,13/07/2018 19:29,4.6,693, Protection Mechanism Failure,nan
CVE-2018-10630,9/10/2019 23:32,10/08/2018 19:29,10.0,287, Improper Authentication,nan
CVE-2018-10628,9/10/2019 23:32,24/07/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10627,9/10/2019 23:32,24/07/2018 17:29,6.4,200, Information Exposure,nan
CVE-2018-10626,9/10/2019 23:32,10/08/2018 18:29,3.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-10624,9/10/2019 23:32,1/08/2018 21:29,3.3,388, 7PK – Errors,nan
CVE-2018-10623,9/10/2019 23:32,18/06/2018 19:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-10622,9/10/2019 23:32,10/08/2018 18:29,1.9,522, Insufficiently Protected Credentials,nan
CVE-2018-10621,9/10/2019 23:32,18/06/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10620,9/10/2019 23:32,19/07/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10619,9/10/2019 23:32,7/06/2018 20:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-10618,9/10/2019 23:32,1/08/2018 18:29,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2018-10617,9/10/2019 23:32,18/06/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10616,9/10/2019 23:32,18/07/2018 15:29,9.3,20, Improper Input Validation,nan
CVE-2018-10615,9/10/2019 23:32,4/06/2018 14:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10614,9/10/2019 23:32,9/10/2018 21:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10613,9/10/2019 23:32,4/06/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10612,9/10/2019 23:32,29/01/2019 16:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10611,9/10/2019 23:32,4/06/2018 14:29,7.5,287, Improper Authentication,nan
CVE-2018-10610,9/10/2019 23:32,9/10/2018 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10609,9/10/2019 23:32,31/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10607,9/10/2019 23:32,31/07/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-10606,9/10/2019 23:32,26/09/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10605,9/10/2019 23:32,1/10/2018 16:29,9.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-10604,9/10/2019 23:32,24/07/2018 13:29,6.5,269, Improper Privilege Management,nan
CVE-2018-10603,9/10/2019 23:32,31/07/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-10602,9/10/2019 23:32,26/09/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10601,9/10/2019 23:32,5/06/2018 20:29,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10600,9/10/2019 23:32,24/07/2018 13:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10599,9/10/2019 23:32,5/06/2018 20:29,2.9,200, Information Exposure,nan
CVE-2018-10598,9/10/2019 23:32,13/08/2018 21:47,5.8,125, Out-of-bounds Read,nan
CVE-2018-10597,9/10/2019 23:32,5/06/2018 20:29,5.4,287, Improper Authentication,nan
CVE-2018-10596,9/10/2019 23:32,3/07/2018 1:29,5.2,200, Information Exposure,nan
CVE-2018-10595,9/10/2019 23:32,24/05/2018 16:29,4.9,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10594,9/10/2019 23:32,26/06/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10593,9/10/2019 23:32,24/05/2018 16:29,3.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10592,9/10/2019 23:32,31/07/2018 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-10591,9/10/2019 23:32,15/05/2018 22:29,2.6,384, Session Fixation,nan
CVE-2018-10590,9/10/2019 23:32,15/05/2018 22:29,5.0,538, File and Directory Information Exposure,nan
CVE-2018-10589,9/10/2019 23:32,15/05/2018 22:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10502,9/10/2019 23:32,24/09/2018 23:29,4.6,20, Improper Input Validation,nan
CVE-2018-10501,9/10/2019 23:32,24/09/2018 23:29,4.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10499,9/10/2019 23:32,24/09/2018 23:29,4.4,20, Improper Input Validation,nan
CVE-2018-10498,9/10/2019 23:32,24/09/2018 23:29,2.1,200, Information Exposure,nan
CVE-2018-10497,9/10/2019 23:32,24/09/2018 23:29,4.6,20, Improper Input Validation,nan
CVE-2018-10496,9/10/2019 23:32,24/09/2018 23:29,6.8,20, Improper Input Validation,nan
CVE-2018-10495,9/10/2019 23:32,17/05/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-10494,9/10/2019 23:32,17/05/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10493,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10492,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10491,9/10/2019 23:32,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10490,9/10/2019 23:32,17/05/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-10489,9/10/2019 23:32,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10488,9/10/2019 23:32,17/05/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10487,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10486,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10485,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10484,9/10/2019 23:32,17/05/2018 15:29,6.8,824, Access of Uninitialized Pointer,nan
CVE-2018-10483,9/10/2019 23:32,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10482,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10481,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10480,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10479,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10478,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10477,9/10/2019 23:32,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10476,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10475,9/10/2019 23:32,17/05/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-10474,9/10/2019 23:32,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10473,9/10/2019 23:32,17/05/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10470,9/10/2019 23:32,12/06/2018 17:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-1002209,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002208,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002207,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002206,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002205,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002203,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002202,9/10/2019 23:32,25/07/2018 17:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002200,9/10/2019 23:32,25/07/2018 17:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1002103,9/10/2019 23:32,5/12/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1002100,9/10/2019 23:32,2/06/2018 1:29,3.6,20, Improper Input Validation,nan
CVE-2018-1000030,9/10/2019 23:32,8/02/2018 17:29,6.8,416, Use After Free,nan
CVE-2018-0485,9/10/2019 23:32,5/10/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-0483,9/10/2019 23:32,10/01/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0482,9/10/2019 23:32,10/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0481,9/10/2019 23:32,5/10/2018 14:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0480,9/10/2019 23:32,5/10/2018 14:29,5.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-0477,9/10/2019 23:32,5/10/2018 14:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0475,9/10/2019 23:32,5/10/2018 14:29,6.1,20, Improper Input Validation,nan
CVE-2018-0474,9/10/2019 23:32,10/01/2019 16:29,4.0,255, Credentials Management,nan
CVE-2018-0471,9/10/2019 23:32,5/10/2018 14:29,6.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-0469,9/10/2019 23:32,5/10/2018 14:29,7.1,415, Double Free,nan
CVE-2018-0465,9/10/2019 23:32,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0464,9/10/2019 23:32,5/10/2018 16:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0462,9/10/2019 23:32,5/10/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-0461,9/10/2019 23:32,10/01/2019 16:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-0460,9/10/2019 23:32,5/10/2018 14:29,6.8,863, Incorrect Authorization,nan
CVE-2018-0459,9/10/2019 23:32,5/10/2018 14:29,6.8,863, Incorrect Authorization,nan
CVE-2018-0458,9/10/2019 23:32,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0456,9/10/2019 23:32,17/10/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-0454,9/10/2019 23:32,5/10/2018 14:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0453,9/10/2019 23:32,5/10/2018 14:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0452,9/10/2019 23:32,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0451,9/10/2019 23:32,5/10/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0450,9/10/2019 23:32,5/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0449,9/10/2019 23:32,10/01/2019 16:29,3.3,275, Permission Issues,nan
CVE-2018-0448,9/10/2019 23:32,5/10/2018 14:29,7.5,326, Inadequate Encryption Strength,nan
CVE-2018-0447,9/10/2019 23:32,5/10/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-0446,9/10/2019 23:32,5/10/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0445,9/10/2019 23:32,5/10/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0444,9/10/2019 23:32,5/10/2018 14:29,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0443,9/10/2019 23:32,17/10/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-0442,9/10/2019 23:32,17/10/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-0441,9/10/2019 23:32,17/10/2018 22:29,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-0440,9/10/2019 23:32,5/10/2018 14:29,9.0,20, Improper Input Validation,nan
CVE-2018-0439,9/10/2019 23:32,5/10/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0438,9/10/2019 23:32,5/10/2018 14:29,7.2,269, Improper Privilege Management,nan
CVE-2018-0437,9/10/2019 23:32,5/10/2018 14:29,7.2,269, Improper Privilege Management,nan
CVE-2018-0436,9/10/2019 23:32,5/10/2018 14:29,5.5,269, Improper Privilege Management,nan
CVE-2018-0435,9/10/2019 23:32,5/10/2018 14:29,6.5,287, Improper Authentication,nan
CVE-2018-0434,9/10/2019 23:32,5/10/2018 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-0433,9/10/2019 23:32,5/10/2018 14:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0432,9/10/2019 23:32,5/10/2018 14:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0431,9/10/2019 23:32,5/10/2018 14:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0430,9/10/2019 23:32,5/10/2018 14:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0428,9/10/2019 23:32,15/08/2018 20:29,7.2,269, Improper Privilege Management,nan
CVE-2018-0427,9/10/2019 23:32,15/08/2018 20:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0426,9/10/2019 23:32,5/10/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0425,9/10/2019 23:32,5/10/2018 14:29,5.0,269, Improper Privilege Management,nan
CVE-2018-0424,9/10/2019 23:32,5/10/2018 14:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0423,9/10/2019 23:32,5/10/2018 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0421,9/10/2019 23:32,5/10/2018 14:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-0420,9/10/2019 23:32,17/10/2018 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0419,9/10/2019 23:32,15/08/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2018-0418,9/10/2019 23:32,15/08/2018 20:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0416,9/10/2019 23:32,17/10/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-0415,9/10/2019 23:32,15/08/2018 20:29,5.5,388, 7PK – Errors,nan
CVE-2018-0414,9/10/2019 23:32,5/10/2018 14:29,3.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-0413,9/10/2019 23:32,1/08/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0411,9/10/2019 23:32,1/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0410,9/10/2019 23:32,15/08/2018 20:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0409,9/10/2019 23:32,15/08/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-0408,9/10/2019 23:32,1/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0407,9/10/2019 23:31,1/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0406,9/10/2019 23:31,1/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0405,9/10/2019 23:31,5/10/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0404,9/10/2019 23:31,5/10/2018 16:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0403,9/10/2019 23:31,18/07/2018 23:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-0402,9/10/2019 23:31,18/07/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0401,9/10/2019 23:31,18/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0400,9/10/2019 23:31,18/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0399,9/10/2019 23:31,18/07/2018 23:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-0398,9/10/2019 23:31,18/07/2018 23:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-0396,9/10/2019 23:31,18/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0395,9/10/2019 23:31,17/10/2018 19:29,2.9,20, Improper Input Validation,nan
CVE-2018-0394,9/10/2019 23:31,18/07/2018 23:29,6.5,20, Improper Input Validation,nan
CVE-2018-0392,9/10/2019 23:31,18/07/2018 23:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0390,9/10/2019 23:31,18/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0388,9/10/2019 23:31,17/10/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0387,9/10/2019 23:31,18/07/2018 23:29,9.3,20, Improper Input Validation,nan
CVE-2018-0386,9/10/2019 23:31,15/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0385,9/10/2019 23:31,16/07/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-0384,9/10/2019 23:31,16/07/2018 17:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0383,9/10/2019 23:31,16/07/2018 17:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0382,9/10/2019 23:31,17/04/2019 22:29,5.0,287, Improper Authentication,nan
CVE-2018-0381,9/10/2019 23:31,17/10/2018 22:29,5.5,400, Uncontrolled Resource Consumption,nan
CVE-2018-0379,9/10/2019 23:31,18/07/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0378,9/10/2019 23:31,17/10/2018 21:49,7.8,20, Improper Input Validation,nan
CVE-2018-0377,9/10/2019 23:31,18/07/2018 23:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-0376,9/10/2019 23:31,18/07/2018 23:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-0375,9/10/2019 23:31,18/07/2018 23:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-0374,9/10/2019 23:31,18/07/2018 23:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-0373,9/10/2019 23:31,21/06/2018 11:29,4.9,20, Improper Input Validation,nan
CVE-2018-0372,9/10/2019 23:31,18/07/2018 23:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0371,9/10/2019 23:31,21/06/2018 11:29,6.8,20, Improper Input Validation,nan
CVE-2018-0369,9/10/2019 23:31,16/07/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-0367,9/10/2019 23:31,15/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0366,9/10/2019 23:31,16/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0365,9/10/2019 23:31,21/06/2018 11:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0364,9/10/2019 23:31,21/06/2018 11:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0363,9/10/2019 23:31,21/06/2018 11:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0362,9/10/2019 23:31,21/06/2018 11:29,4.6,287, Improper Authentication,nan
CVE-2018-0359,9/10/2019 23:31,21/06/2018 11:29,2.1,384, Session Fixation,nan
CVE-2018-0358,9/10/2019 23:31,21/06/2018 11:29,5.0,769, DEPRECATED: Uncontrolled File Descriptor Consumption,nan
CVE-2018-0357,9/10/2019 23:31,7/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0356,9/10/2019 23:31,7/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0355,9/10/2019 23:31,7/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-0354,9/10/2019 23:31,7/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0352,9/10/2019 23:31,7/06/2018 21:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0351,9/10/2019 23:31,18/07/2018 23:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0350,9/10/2019 23:31,18/07/2018 23:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0349,9/10/2019 23:31,18/07/2018 23:29,10.0,20, Improper Input Validation,nan
CVE-2018-0348,9/10/2019 23:31,18/07/2018 23:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0347,9/10/2019 23:31,18/07/2018 23:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0346,9/10/2019 23:31,18/07/2018 23:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0345,9/10/2019 23:31,18/07/2018 23:29,9.0,20, Improper Input Validation,nan
CVE-2018-0344,9/10/2019 23:31,18/07/2018 23:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0343,9/10/2019 23:31,18/07/2018 23:29,6.5,269, Improper Privilege Management,nan
CVE-2018-0342,9/10/2019 23:31,18/07/2018 23:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0341,9/10/2019 23:31,16/07/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0340,9/10/2019 23:31,7/06/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0339,9/10/2019 23:31,7/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0338,9/10/2019 23:31,7/06/2018 21:29,4.6,20, Improper Input Validation,nan
CVE-2018-0337,9/10/2019 23:31,21/06/2018 11:29,7.2,20, Improper Input Validation,nan
CVE-2018-0336,9/10/2019 23:31,7/06/2018 21:29,6.5,862, Missing Authorization,nan
CVE-2018-0335,9/10/2019 23:31,7/06/2018 21:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-0334,9/10/2019 23:31,7/06/2018 21:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-0333,9/10/2019 23:31,7/06/2018 21:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0331,9/10/2019 23:31,21/06/2018 11:29,6.1,20, Improper Input Validation,nan
CVE-2018-0330,9/10/2019 23:31,20/06/2018 21:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0329,9/10/2019 23:31,7/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-0328,9/10/2019 23:31,17/05/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0327,9/10/2019 23:31,17/05/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0326,9/10/2019 23:31,17/05/2018 3:29,4.3,693, Protection Mechanism Failure,nan
CVE-2018-0325,9/10/2019 23:31,17/05/2018 3:29,5.0,20, Improper Input Validation,nan
CVE-2018-0324,9/10/2019 23:31,17/05/2018 3:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0323,9/10/2019 23:31,17/05/2018 3:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0322,9/10/2019 23:31,7/06/2018 12:29,6.5,862, Missing Authorization,nan
CVE-2018-0321,9/10/2019 23:31,7/06/2018 12:29,7.5,287, Improper Authentication,nan
CVE-2018-0320,9/10/2019 23:31,7/06/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0319,9/10/2019 23:31,7/06/2018 12:29,5.0,287, Improper Authentication,nan
CVE-2018-0318,9/10/2019 23:31,7/06/2018 12:29,5.0,287, Improper Authentication,nan
CVE-2018-0317,9/10/2019 23:31,7/06/2018 12:29,6.5,862, Missing Authorization,nan
CVE-2018-0316,9/10/2019 23:31,7/06/2018 12:29,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2018-0315,9/10/2019 23:31,7/06/2018 12:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0314,9/10/2019 23:31,20/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0313,9/10/2019 23:31,21/06/2018 11:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0312,9/10/2019 23:31,20/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0311,9/10/2019 23:31,21/06/2018 11:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0310,9/10/2019 23:31,21/06/2018 11:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-0309,9/10/2019 23:31,21/06/2018 11:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0308,9/10/2019 23:31,20/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0307,9/10/2019 23:31,20/06/2018 21:29,7.2,20, Improper Input Validation,nan
CVE-2018-0306,9/10/2019 23:31,21/06/2018 11:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0305,9/10/2019 23:31,21/06/2018 11:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-0304,9/10/2019 23:31,20/06/2018 21:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-0303,9/10/2019 23:31,21/06/2018 11:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0302,9/10/2019 23:31,21/06/2018 11:29,7.2,20, Improper Input Validation,nan
CVE-2018-0301,9/10/2019 23:31,20/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0300,9/10/2019 23:31,21/06/2018 11:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0299,9/10/2019 23:31,21/06/2018 11:29,6.8,20, Improper Input Validation,nan
CVE-2018-0298,9/10/2019 23:31,21/06/2018 11:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0297,9/10/2019 23:31,17/05/2018 3:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0295,9/10/2019 23:31,20/06/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-0293,9/10/2019 23:31,20/06/2018 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0292,9/10/2019 23:31,20/06/2018 21:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0291,9/10/2019 23:31,20/06/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-0289,9/10/2019 23:31,17/05/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0288,9/10/2019 23:31,2/05/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-0287,9/10/2019 23:31,2/05/2018 22:29,6.8,20, Improper Input Validation,nan
CVE-2018-0286,9/10/2019 23:31,2/05/2018 22:29,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2018-0285,9/10/2019 23:31,2/05/2018 22:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0283,9/10/2019 23:31,2/05/2018 22:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-0282,9/10/2019 23:31,10/01/2019 0:29,7.1,371, State Issues,nan
CVE-2018-0281,9/10/2019 23:31,2/05/2018 22:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-0280,9/10/2019 23:31,17/05/2018 3:29,5.0,20, Improper Input Validation,nan
CVE-2018-0279,9/10/2019 23:31,17/05/2018 3:29,6.5,20, Improper Input Validation,nan
CVE-2018-0278,9/10/2019 23:31,2/05/2018 22:29,4.3,200, Information Exposure,nan
CVE-2018-0277,9/10/2019 23:31,17/05/2018 3:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-0276,9/10/2019 23:31,19/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0274,9/10/2019 23:31,7/06/2018 12:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0272,9/10/2019 23:31,19/04/2018 20:29,4.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2018-0271,9/10/2019 23:31,17/05/2018 3:29,7.5,287, Improper Authentication,nan
CVE-2018-0270,9/10/2019 23:31,17/05/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0269,9/10/2019 23:31,19/04/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-0268,9/10/2019 23:31,17/05/2018 3:29,10.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2018-0267,9/10/2019 23:31,19/04/2018 20:29,2.1,200, Information Exposure,nan
CVE-2018-0266,9/10/2019 23:31,19/04/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-0264,9/10/2019 23:31,2/05/2018 22:29,6.8,20, Improper Input Validation,nan
CVE-2018-0263,9/10/2019 23:31,7/06/2018 12:29,3.3,200, Information Exposure,nan
CVE-2018-0260,9/10/2019 23:31,19/04/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-0259,9/10/2019 23:31,19/04/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0258,9/10/2019 23:31,2/05/2018 22:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-0256,9/10/2019 23:31,19/04/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-0255,9/10/2019 23:31,19/04/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0254,9/10/2019 23:31,19/04/2018 20:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0253,9/10/2019 23:31,2/05/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2018-0252,9/10/2019 23:31,2/05/2018 22:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0251,9/10/2019 23:31,19/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0250,9/10/2019 23:31,2/05/2018 22:29,2.7,693, Protection Mechanism Failure,nan
CVE-2018-0249,9/10/2019 23:31,2/05/2018 22:29,3.3,20, Improper Input Validation,nan
CVE-2018-0248,9/10/2019 23:31,17/04/2019 22:29,6.8,20, Improper Input Validation,nan
CVE-2018-0247,9/10/2019 23:31,2/05/2018 22:29,3.3,287, Improper Authentication,nan
CVE-2018-0245,9/10/2019 23:31,2/05/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-0244,9/10/2019 23:31,19/04/2018 20:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0243,9/10/2019 23:31,19/04/2018 20:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0242,9/10/2019 23:31,19/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0239,9/10/2019 23:31,19/04/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-0238,9/10/2019 23:31,19/04/2018 20:29,9.0,287, Improper Authentication,nan
CVE-2018-0237,9/10/2019 23:31,19/04/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-0235,9/10/2019 23:31,2/05/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2018-0234,9/10/2019 23:31,2/05/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-0233,9/10/2019 23:31,19/04/2018 20:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0231,9/10/2019 23:31,19/04/2018 20:29,7.8,787, Out-of-bounds Write,nan
CVE-2018-0230,9/10/2019 23:31,19/04/2018 20:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0229,9/10/2019 23:31,19/04/2018 20:29,4.3,384, Session Fixation,nan
CVE-2018-0227,9/10/2019 23:31,19/04/2018 20:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-0224,9/10/2019 23:31,8/03/2018 7:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0223,9/10/2019 23:31,8/03/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0222,9/10/2019 23:31,17/05/2018 3:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-0221,9/10/2019 23:31,8/03/2018 7:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0220,9/10/2019 23:31,8/03/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0219,9/10/2019 23:31,8/03/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0218,9/10/2019 23:31,8/03/2018 7:29,4.3,200, Information Exposure,nan
CVE-2018-0217,9/10/2019 23:31,8/03/2018 7:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0216,9/10/2019 23:31,8/03/2018 7:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0215,9/10/2019 23:31,8/03/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0214,9/10/2019 23:31,8/03/2018 7:29,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0213,9/10/2019 23:31,8/03/2018 7:29,6.5,20, Improper Input Validation,nan
CVE-2018-0212,9/10/2019 23:31,8/03/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0211,9/10/2019 23:31,8/03/2018 7:29,4.9,20, Improper Input Validation,nan
CVE-2018-0210,9/10/2019 23:31,8/03/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0209,9/10/2019 23:31,8/03/2018 7:29,6.8,20, Improper Input Validation,nan
CVE-2018-0208,9/10/2019 23:31,8/03/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0207,9/10/2019 23:31,8/03/2018 7:29,4.3,200, Information Exposure,nan
CVE-2018-0206,9/10/2019 23:31,22/02/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0205,9/10/2019 23:31,22/02/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0204,9/10/2019 23:31,22/02/2018 0:29,5.0,521, Weak Password Requirements,nan
CVE-2018-0201,9/10/2019 23:31,22/02/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0200,9/10/2019 23:31,22/02/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0199,9/10/2019 23:31,22/02/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0198,9/10/2019 23:31,27/03/2018 9:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0197,9/10/2019 23:31,5/10/2018 14:29,3.3,20, Improper Input Validation,nan
CVE-2018-0195,9/10/2019 23:31,28/03/2018 22:29,6.5,287, Improper Authentication,nan
CVE-2018-0194,9/10/2019 23:31,2/04/2018 14:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0193,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0190,9/10/2019 23:31,28/03/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0188,9/10/2019 23:31,28/03/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0187,9/10/2019 23:31,23/01/2019 22:29,4.0,200, Information Exposure,nan
CVE-2018-0186,9/10/2019 23:31,28/03/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0185,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0184,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0183,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0182,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0181,9/10/2019 23:31,10/01/2019 0:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-0176,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0175,9/10/2019 23:31,28/03/2018 22:29,7.9,134, Use of Externally-Controlled Format String,nan
CVE-2018-0174,9/10/2019 23:31,28/03/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-0173,9/10/2019 23:31,28/03/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-0172,9/10/2019 23:31,28/03/2018 22:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0171,9/10/2019 23:31,28/03/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2018-0170,9/10/2019 23:31,28/03/2018 22:29,7.8,416, Use After Free,nan
CVE-2018-0169,9/10/2019 23:31,28/03/2018 22:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0167,9/10/2019 23:31,28/03/2018 22:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0165,9/10/2019 23:31,28/03/2018 22:29,6.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-0163,9/10/2019 23:31,28/03/2018 22:29,3.3,287, Improper Authentication,nan
CVE-2018-0160,9/10/2019 23:31,28/03/2018 22:29,6.3,415, Double Free,nan
CVE-2018-0159,9/10/2019 23:31,28/03/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-0158,9/10/2019 23:31,28/03/2018 22:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-0156,9/10/2019 23:31,28/03/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-0155,9/10/2019 23:31,28/03/2018 22:29,7.8,388, 7PK – Errors,nan
CVE-2018-0152,9/10/2019 23:31,28/03/2018 22:29,9.0,613, Insufficient Session Expiration,nan
CVE-2018-0151,9/10/2019 23:31,28/03/2018 22:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0150,9/10/2019 23:31,28/03/2018 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-0149,9/10/2019 23:31,7/06/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0148,9/10/2019 23:31,22/02/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0147,9/10/2019 23:31,8/03/2018 7:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-0146,9/10/2019 23:31,22/02/2018 0:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0145,9/10/2019 23:31,22/02/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0144,9/10/2019 23:31,8/03/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0141,9/10/2019 23:31,8/03/2018 7:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-0140,9/10/2019 23:31,8/02/2018 7:29,4.0,200, Information Exposure,nan
CVE-2018-0139,9/10/2019 23:31,22/02/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-0138,9/10/2019 23:31,8/02/2018 7:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-0137,9/10/2019 23:31,8/02/2018 7:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-0136,9/10/2019 23:31,31/01/2018 20:29,7.8,20, Improper Input Validation,nan
CVE-2018-0135,9/10/2019 23:31,8/02/2018 7:29,4.0,20, Improper Input Validation,nan
CVE-2018-0134,9/10/2019 23:31,8/02/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-0132,9/10/2019 23:31,8/02/2018 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0131,9/10/2019 23:31,14/08/2018 16:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2018-0130,9/10/2019 23:31,22/02/2018 0:29,7.5,1188, Insecure Default Initialization of Resource,nan
CVE-2018-0129,9/10/2019 23:31,8/02/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0128,9/10/2019 23:31,8/02/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0127,9/10/2019 23:31,8/02/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-0125,9/10/2019 23:31,8/02/2018 7:29,10.0,20, Improper Input Validation,nan
CVE-2018-0124,9/10/2019 23:31,22/02/2018 0:29,7.5,320, Key Management Errors,nan
CVE-2018-0123,9/10/2019 23:31,8/02/2018 7:29,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0122,9/10/2019 23:31,8/02/2018 7:29,4.9,20, Improper Input Validation,nan
CVE-2018-0121,9/10/2019 23:31,22/02/2018 0:29,7.5,287, Improper Authentication,nan
CVE-2018-0120,9/10/2019 23:31,8/02/2018 7:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0118,9/10/2019 23:31,11/01/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0117,9/10/2019 23:31,8/02/2018 7:29,7.8,20, Improper Input Validation,nan
CVE-2018-0116,9/10/2019 23:31,8/02/2018 7:29,6.4,287, Improper Authentication,nan
CVE-2018-0115,9/10/2019 23:31,18/01/2018 6:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0113,9/10/2019 23:31,8/02/2018 7:29,6.5,20, Improper Input Validation,nan
CVE-2018-0112,9/10/2019 23:31,19/04/2018 20:29,6.0,20, Improper Input Validation,nan
CVE-2018-0111,9/10/2019 23:31,18/01/2018 6:29,5.0,200, Information Exposure,nan
CVE-2018-0110,9/10/2019 23:31,18/01/2018 6:29,5.5,863, Incorrect Authorization,nan
CVE-2018-0109,9/10/2019 23:31,18/01/2018 6:29,4.0,200, Information Exposure,nan
CVE-2018-0108,9/10/2019 23:31,18/01/2018 6:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-0107,9/10/2019 23:31,18/01/2018 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0106,9/10/2019 23:31,18/01/2018 6:29,2.1,200, Information Exposure,nan
CVE-2018-0105,9/10/2019 23:31,18/01/2018 6:29,5.0,200, Information Exposure,nan
CVE-2018-0104,9/10/2019 23:31,4/01/2018 6:29,9.3,20, Improper Input Validation,nan
CVE-2018-0103,9/10/2019 23:31,4/01/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0102,9/10/2019 23:31,18/01/2018 6:29,6.1,415, Double Free,nan
CVE-2018-0101,9/10/2019 23:31,29/01/2018 20:29,10.0,415, Double Free,nan
CVE-2018-0100,9/10/2019 23:31,18/01/2018 6:29,3.6,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-0099,9/10/2019 23:31,18/01/2018 6:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0098,9/10/2019 23:31,18/01/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0097,9/10/2019 23:31,18/01/2018 6:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-0096,9/10/2019 23:31,18/01/2018 6:29,4.9,863, Incorrect Authorization,nan
CVE-2018-0094,9/10/2019 23:31,18/01/2018 6:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0093,9/10/2019 23:31,18/01/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0092,9/10/2019 23:31,18/01/2018 6:29,3.6,862, Missing Authorization,nan
CVE-2018-0091,9/10/2019 23:31,18/01/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0090,9/10/2019 23:31,18/01/2018 6:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0089,9/10/2019 23:31,18/01/2018 6:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0088,9/10/2019 23:31,18/01/2018 6:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0087,9/10/2019 23:31,8/03/2018 7:29,6.8,287, Improper Authentication,nan
CVE-2018-0086,9/10/2019 23:31,18/01/2018 6:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0063,9/10/2019 23:31,10/10/2018 18:29,3.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-0062,9/10/2019 23:31,10/10/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-0061,9/10/2019 23:31,10/10/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0060,9/10/2019 23:31,10/10/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-0059,9/10/2019 23:31,10/10/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0058,9/10/2019 23:31,10/10/2018 18:29,7.8,20, Improper Input Validation,nan
CVE-2018-0056,9/10/2019 23:31,10/10/2018 18:29,2.9,20, Improper Input Validation,nan
CVE-2018-0055,9/10/2019 23:31,10/10/2018 18:29,2.9,20, Improper Input Validation,nan
CVE-2018-0054,9/10/2019 23:31,10/10/2018 18:29,3.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-0053,9/10/2019 23:31,10/10/2018 18:29,7.2,287, Improper Authentication,nan
CVE-2018-0052,9/10/2019 23:31,10/10/2018 18:29,9.3,287, Improper Authentication,nan
CVE-2018-0051,9/10/2019 23:31,10/10/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-0050,9/10/2019 23:31,10/10/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-0049,9/10/2019 23:31,10/10/2018 18:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-0048,9/10/2019 23:31,10/10/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0047,9/10/2019 23:31,10/10/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0046,9/10/2019 23:31,10/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0045,9/10/2019 23:31,10/10/2018 18:29,5.8,20, Improper Input Validation,nan
CVE-2018-0044,9/10/2019 23:31,10/10/2018 18:29,6.8,287, Improper Authentication,nan
CVE-2018-0043,9/10/2019 23:31,10/10/2018 18:29,5.8,20, Improper Input Validation,nan
CVE-2018-0041,9/10/2019 23:31,11/07/2018 18:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-0040,9/10/2019 23:31,11/07/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-0039,9/10/2019 23:31,11/07/2018 18:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-0037,9/10/2019 23:31,11/07/2018 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-0034,9/10/2019 23:31,11/07/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-0032,9/10/2019 23:31,11/07/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-0031,9/10/2019 23:31,11/07/2018 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-0030,9/10/2019 23:31,11/07/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-0029,9/10/2019 23:31,11/07/2018 18:29,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-0027,9/10/2019 23:31,11/07/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-0024,9/10/2019 23:31,11/07/2018 18:29,7.2,269, Improper Privilege Management,nan
CVE-2018-0023,9/10/2019 23:31,11/04/2018 19:29,2.1,276, Incorrect Default Permissions,nan
CVE-2018-0022,9/10/2019 23:30,11/04/2018 19:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0020,9/10/2019 23:30,11/04/2018 19:29,7.8,20, Improper Input Validation,nan
CVE-2018-0019,9/10/2019 23:30,11/04/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-0018,9/10/2019 23:30,11/04/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-0017,9/10/2019 23:30,11/04/2018 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-0014,9/10/2019 23:30,10/01/2018 22:29,3.3,200, Information Exposure,nan
CVE-2018-0013,9/10/2019 23:30,10/01/2018 22:29,4.0,200, Information Exposure,nan
CVE-2018-0011,9/10/2019 23:30,10/01/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0008,9/10/2019 23:30,10/01/2018 22:29,7.2,287, Improper Authentication,nan
CVE-2018-0006,9/10/2019 23:30,10/01/2018 22:29,2.9,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-0005,9/10/2019 23:30,10/01/2018 22:29,5.8,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-0004,9/10/2019 23:30,10/01/2018 22:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-0002,9/10/2019 23:30,10/01/2018 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9947,9/10/2019 23:30,23/10/2017 8:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9946,9/10/2019 23:30,23/10/2017 8:29,5.0,287, Improper Authentication,nan
CVE-2017-9944,9/10/2019 23:30,27/12/2017 17:08,10.0,269, Improper Privilege Management,nan
CVE-2017-9940,9/10/2019 23:30,8/08/2017 0:29,5.5,269, Improper Privilege Management,nan
CVE-2017-9939,9/10/2019 23:30,8/08/2017 0:29,7.5,287, Improper Authentication,nan
CVE-2017-9664,9/10/2019 23:30,24/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9663,9/10/2019 23:30,9/01/2018 21:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2017-9658,9/10/2019 23:30,30/04/2018 15:29,6.1,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-9657,9/10/2019 23:30,30/04/2018 15:29,3.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-9656,9/10/2019 23:30,24/04/2018 15:29,6.5,798, Use of Hard-coded Credentials,nan
CVE-2017-9654,9/10/2019 23:30,24/04/2018 15:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2017-9650,9/10/2019 23:30,25/08/2017 19:29,4.6,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-9649,9/10/2019 23:30,20/09/2017 16:29,5.4,798, Use of Hard-coded Credentials,nan
CVE-2017-9647,9/10/2019 23:30,7/08/2017 8:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9645,9/10/2019 23:30,20/09/2017 16:29,3.3,326, Inadequate Encryption Strength,nan
CVE-2017-9644,9/10/2019 23:30,25/08/2017 19:29,6.9,428, Unquoted Search Path or Element,nan
CVE-2017-9641,9/10/2019 23:30,25/05/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9640,9/10/2019 23:30,25/08/2017 19:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9639,9/10/2019 23:30,17/07/2017 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9638,9/10/2019 23:30,17/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9637,9/10/2019 23:30,18/05/2018 13:29,1.9,522, Insufficiently Protected Credentials,nan
CVE-2017-9636,9/10/2019 23:30,17/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9635,9/10/2019 23:30,18/05/2018 13:29,1.9,326, Inadequate Encryption Strength,nan
CVE-2017-9634,9/10/2019 23:30,17/04/2018 14:29,10.0,787, Out-of-bounds Write,nan
CVE-2017-9633,9/10/2019 23:30,7/08/2017 8:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9632,9/10/2019 23:30,7/08/2017 8:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-9631,9/10/2019 23:30,7/07/2017 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-9630,9/10/2019 23:30,7/08/2017 8:29,7.5,287, Improper Authentication,nan
CVE-2017-9629,9/10/2019 23:30,7/07/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9628,9/10/2019 23:30,5/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-9627,9/10/2019 23:30,7/07/2017 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-9626,9/10/2019 23:30,27/03/2019 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9625,9/10/2019 23:30,17/10/2017 22:29,6.4,287, Improper Authentication,nan
CVE-2017-9556,9/10/2019 23:30,11/08/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9555,9/10/2019 23:30,24/08/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9552,9/10/2019 23:30,13/06/2017 13:29,2.1,287, Improper Authentication,nan
CVE-2017-9513,9/10/2019 23:30,29/01/2018 19:29,5.5,862, Missing Authorization,nan
CVE-2017-9394,9/10/2019 23:30,14/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9285,9/10/2019 23:30,2/03/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2017-9284,9/10/2019 23:30,26/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2017-9283,9/10/2019 23:30,21/09/2017 22:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9282,9/10/2019 23:30,21/09/2017 22:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9280,9/10/2019 23:30,2/03/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-9279,9/10/2019 23:30,2/03/2018 20:29,9.0,20, Improper Input Validation,nan
CVE-2017-9278,9/10/2019 23:30,2/03/2018 20:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-9276,9/10/2019 23:30,2/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9275,9/10/2019 23:30,26/04/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9274,9/10/2019 23:30,1/03/2018 20:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9271,9/10/2019 23:30,1/03/2018 20:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-9270,9/10/2019 23:30,1/03/2018 20:29,8.5,20, Improper Input Validation,nan
CVE-2017-9269,9/10/2019 23:30,1/03/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2017-9268,9/10/2019 23:30,1/03/2018 20:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8452,9/10/2019 23:30,16/06/2017 21:29,5.0,769, DEPRECATED: Uncontrolled File Descriptor Consumption,nan
CVE-2017-8451,9/10/2019 23:30,16/06/2017 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8450,9/10/2019 23:30,16/06/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-8449,9/10/2019 23:30,16/06/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-8448,9/10/2019 23:30,29/09/2017 1:34,6.5,269, Improper Privilege Management,nan
CVE-2017-8447,9/10/2019 23:30,29/09/2017 1:34,5.5,269, Improper Privilege Management,nan
CVE-2017-8446,9/10/2019 23:30,18/08/2017 20:29,4.0,269, Improper Privilege Management,nan
CVE-2017-8445,9/10/2019 23:30,18/08/2017 20:29,2.1,295, Improper Certificate Validation,nan
CVE-2017-8443,9/10/2019 23:30,30/06/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-8442,9/10/2019 23:30,7/07/2017 20:29,4.0,200, Information Exposure,nan
CVE-2017-8441,9/10/2019 23:30,5/06/2017 14:29,4.0,200, Information Exposure,nan
CVE-2017-8440,9/10/2019 23:30,5/06/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8439,9/10/2019 23:30,5/06/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8438,9/10/2019 23:30,5/06/2017 14:29,6.5,269, Improper Privilege Management,nan
CVE-2017-7968,9/10/2019 23:30,19/05/2017 15:29,7.2,276, Incorrect Default Permissions,nan
CVE-2017-7937,9/10/2019 23:30,19/05/2017 3:29,4.3,287, Improper Authentication,nan
CVE-2017-7936,9/10/2019 23:30,7/08/2017 8:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7935,9/10/2019 23:30,19/05/2017 3:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-7934,9/10/2019 23:30,25/08/2017 19:29,4.3,287, Improper Authentication,nan
CVE-2017-7932,9/10/2019 23:30,7/08/2017 8:29,4.4,295, Improper Certificate Validation,nan
CVE-2017-7931,9/10/2019 23:30,6/06/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2017-7930,9/10/2019 23:29,25/08/2017 19:29,5.8,287, Improper Authentication,nan
CVE-2017-7929,9/10/2019 23:29,6/05/2017 0:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7927,9/10/2019 23:29,6/05/2017 0:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-7926,9/10/2019 23:29,25/08/2017 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7925,9/10/2019 23:29,6/05/2017 0:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-7924,9/10/2019 23:29,20/09/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-7922,9/10/2019 23:29,21/06/2017 19:29,6.5,269, Improper Privilege Management,nan
CVE-2017-7920,9/10/2019 23:29,7/08/2017 8:29,5.0,287, Improper Authentication,nan
CVE-2017-7919,9/10/2019 23:29,3/07/2017 19:29,7.5,287, Improper Authentication,nan
CVE-2017-7918,9/10/2019 23:29,21/06/2017 19:29,6.0,269, Improper Privilege Management,nan
CVE-2017-7917,9/10/2019 23:29,29/05/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7916,9/10/2019 23:29,7/08/2017 8:29,4.0,269, Improper Privilege Management,nan
CVE-2017-7915,9/10/2019 23:29,29/05/2017 16:29,7.5,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-7914,9/10/2019 23:29,14/06/2017 21:29,7.5,862, Missing Authorization,nan
CVE-2017-7913,9/10/2019 23:29,29/05/2017 16:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-7912,9/10/2019 23:29,8/04/2019 15:29,7.5,287, Improper Authentication,nan
CVE-2017-7910,9/10/2019 23:29,14/06/2017 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7909,9/10/2019 23:29,6/05/2017 0:29,7.5,287, Improper Authentication,nan
CVE-2017-7908,9/10/2019 23:29,2/10/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7906,9/10/2019 23:29,6/06/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7905,9/10/2019 23:29,30/06/2017 3:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-7902,9/10/2019 23:29,30/06/2017 3:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2017-7655,9/10/2019 23:29,27/03/2019 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7651,9/10/2019 23:29,24/04/2018 14:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7562,9/10/2019 23:29,26/07/2018 15:29,4.0,287, Improper Authentication,nan
CVE-2017-7560,9/10/2019 23:29,13/09/2017 17:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7559,9/10/2019 23:29,10/01/2018 15:29,5.8,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-7558,9/10/2019 23:29,26/07/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-7557,9/10/2019 23:29,22/08/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7556,9/10/2019 23:29,17/08/2017 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7550,9/10/2019 23:29,21/11/2017 17:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-7546,9/10/2019 23:29,16/08/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2017-7545,9/10/2019 23:29,26/07/2018 15:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7544,9/10/2019 23:29,21/09/2017 21:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-7543,9/10/2019 23:29,26/07/2018 14:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-7539,9/10/2019 23:29,26/07/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-7538,9/10/2019 23:29,26/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7537,9/10/2019 23:29,26/07/2018 13:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-7535,9/10/2019 23:29,26/07/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7534,9/10/2019 23:29,11/04/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7528,9/10/2019 23:29,22/08/2018 16:29,3.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-7526,9/10/2019 23:29,26/07/2018 13:29,4.3,310, Cryptographic Issues,nan
CVE-2017-7524,9/10/2019 23:29,27/06/2017 14:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-7523,9/10/2019 23:29,21/07/2017 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7519,9/10/2019 23:29,27/07/2018 14:29,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2017-7518,9/10/2019 23:29,30/07/2018 15:29,4.6,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-7515,9/10/2019 23:29,6/06/2017 14:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-7514,9/10/2019 23:29,30/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7513,9/10/2019 23:29,22/08/2018 15:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-7509,9/10/2019 23:29,26/07/2018 16:29,4.0,20, Improper Input Validation,nan
CVE-2017-7505,9/10/2019 23:29,26/05/2017 16:29,6.5,269, Improper Privilege Management,nan
CVE-2017-7504,9/10/2019 23:29,19/05/2017 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-7500,9/10/2019 23:29,13/08/2018 17:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-7496,9/10/2019 23:29,26/06/2017 14:29,4.4,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-7482,9/10/2019 23:29,30/07/2018 14:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-7470,9/10/2019 23:29,27/07/2018 13:29,7.5,863, Incorrect Authorization,nan
CVE-2017-7468,9/10/2019 23:29,16/07/2018 13:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-7467,9/10/2019 23:29,11/07/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7466,9/10/2019 23:29,22/06/2018 13:29,8.5,20, Improper Input Validation,nan
CVE-2017-7465,9/10/2019 23:29,27/06/2018 16:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7464,9/10/2019 23:29,27/07/2018 12:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7463,9/10/2019 23:29,27/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7438,9/10/2019 23:29,2/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7437,9/10/2019 23:29,5/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7436,9/10/2019 23:29,1/03/2018 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-7435,9/10/2019 23:29,1/03/2018 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-7434,9/10/2019 23:29,2/03/2018 20:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-7429,9/10/2019 23:29,2/03/2018 20:29,6.5,295, Improper Certificate Validation,nan
CVE-2017-7427,9/10/2019 23:29,5/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7426,9/10/2019 23:29,1/03/2018 20:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7425,9/10/2019 23:29,6/11/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7424,9/10/2019 23:29,21/08/2017 15:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7423,9/10/2019 23:29,21/08/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7422,9/10/2019 23:29,21/08/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7421,9/10/2019 23:29,21/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7420,9/10/2019 23:29,21/08/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2017-7419,9/10/2019 23:29,2/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6924,9/10/2019 23:29,15/01/2019 20:29,5.8,269, Improper Privilege Management,nan
CVE-2017-6923,9/10/2019 23:29,22/01/2019 15:29,4.0,862, Missing Authorization,nan
CVE-2017-6922,9/10/2019 23:29,22/01/2019 15:29,4.0,552, Files or Directories Accessible to External Parties,nan
CVE-2017-6921,9/10/2019 23:29,15/01/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-6872,9/10/2019 23:29,8/08/2017 0:29,6.4,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-6871,9/10/2019 23:29,8/08/2017 0:29,4.6,287, Improper Authentication,nan
CVE-2017-6796,9/10/2019 23:29,7/09/2017 21:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6795,9/10/2019 23:29,7/09/2017 21:29,4.7,20, Improper Input Validation,nan
CVE-2017-6794,9/10/2019 23:29,7/09/2017 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6793,9/10/2019 23:29,7/09/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-6792,9/10/2019 23:29,7/09/2017 21:29,8.5,20, Improper Input Validation,nan
CVE-2017-6789,9/10/2019 23:29,7/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6780,9/10/2019 23:29,7/09/2017 21:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-6779,9/10/2019 23:29,7/06/2018 12:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-6770,9/10/2019 23:29,7/08/2017 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-6764,9/10/2019 23:29,7/08/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6763,9/10/2019 23:29,7/08/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-6762,9/10/2019 23:29,7/08/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6761,9/10/2019 23:29,7/08/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6759,9/10/2019 23:29,7/08/2017 6:29,6.8,20, Improper Input Validation,nan
CVE-2017-6758,9/10/2019 23:29,7/08/2017 6:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6757,9/10/2019 23:29,7/08/2017 6:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6756,9/10/2019 23:29,7/08/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6754,9/10/2019 23:29,7/08/2017 6:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6753,9/10/2019 23:29,25/07/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6752,9/10/2019 23:29,7/08/2017 6:29,5.0,200, Information Exposure,nan
CVE-2017-6747,9/10/2019 23:29,7/08/2017 6:29,7.5,287, Improper Authentication,nan
CVE-2017-6745,9/10/2019 23:29,7/08/2017 6:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6744,9/10/2019 23:29,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6743,9/10/2019 23:29,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6742,9/10/2019 23:29,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6741,9/10/2019 23:29,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6740,9/10/2019 23:29,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6739,9/10/2019 23:28,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6738,9/10/2019 23:28,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6737,9/10/2019 23:28,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6720,9/10/2019 23:28,21/09/2017 5:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6714,9/10/2019 23:28,6/07/2017 0:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6713,9/10/2019 23:28,6/07/2017 0:29,10.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-6711,9/10/2019 23:28,6/07/2017 0:29,6.4,287, Improper Authentication,nan
CVE-2017-6709,9/10/2019 23:28,6/07/2017 0:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-6678,9/10/2019 23:28,26/06/2017 7:29,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-6647,9/10/2019 23:28,22/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-6646,9/10/2019 23:28,22/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-6645,9/10/2019 23:28,22/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-6644,9/10/2019 23:28,22/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-6643,9/10/2019 23:28,22/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-6642,9/10/2019 23:28,22/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-6641,9/10/2019 23:28,22/05/2017 1:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-6632,9/10/2019 23:28,22/05/2017 1:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-6627,9/10/2019 23:28,7/09/2017 21:29,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2017-6623,9/10/2019 23:28,18/05/2017 19:29,7.2,269, Improper Privilege Management,nan
CVE-2017-6619,9/10/2019 23:28,20/04/2017 22:59,9.0,20, Improper Input Validation,nan
CVE-2017-6618,9/10/2019 23:28,20/04/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6617,9/10/2019 23:28,20/04/2017 22:59,4.3,287, Improper Authentication,nan
CVE-2017-6616,9/10/2019 23:28,20/04/2017 22:59,9.0,20, Improper Input Validation,nan
CVE-2017-6614,9/10/2019 23:28,20/04/2017 22:59,6.8,200, Information Exposure,nan
CVE-2017-6054,9/10/2019 23:28,26/04/2017 14:59,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-6053,9/10/2019 23:28,21/06/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6051,9/10/2019 23:28,8/05/2017 17:29,5.1,427, Uncontrolled Search Path Element,nan
CVE-2017-6049,9/10/2019 23:28,2/04/2019 20:29,5.0,287, Improper Authentication,nan
CVE-2017-6048,9/10/2019 23:28,19/05/2017 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6047,9/10/2019 23:28,2/04/2019 20:29,5.0,255, Credentials Management,nan
CVE-2017-6046,9/10/2019 23:28,30/06/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-6045,9/10/2019 23:28,21/06/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-6044,9/10/2019 23:28,30/06/2017 3:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-6043,9/10/2019 23:28,21/06/2017 19:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-6042,9/10/2019 23:28,30/06/2017 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6041,9/10/2019 23:28,30/06/2017 3:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-6040,9/10/2019 23:28,30/06/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-6039,9/10/2019 23:28,2/06/2017 14:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-6038,9/10/2019 23:28,30/06/2017 3:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6037,9/10/2019 23:28,27/04/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6036,9/10/2019 23:28,30/06/2017 3:29,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-6035,9/10/2019 23:28,27/04/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6034,9/10/2019 23:28,30/06/2017 3:29,7.5,287, Improper Authentication,nan
CVE-2017-6033,9/10/2019 23:28,7/04/2017 22:59,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-6032,9/10/2019 23:28,30/06/2017 3:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-6031,9/10/2019 23:28,6/05/2017 0:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-6030,9/10/2019 23:28,30/06/2017 3:29,6.4,331, Insufficient Entropy,nan
CVE-2017-6029,9/10/2019 23:28,6/05/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6028,9/10/2019 23:28,30/06/2017 3:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-6027,9/10/2019 23:28,19/05/2017 3:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-6025,9/10/2019 23:28,19/05/2017 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6024,9/10/2019 23:28,6/05/2017 0:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-6023,9/10/2019 23:28,16/03/2017 4:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6022,9/10/2019 23:28,30/06/2017 3:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-6021,9/10/2019 23:28,14/05/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-6020,9/10/2019 23:28,17/04/2018 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6018,9/10/2019 23:28,30/06/2017 3:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-6015,9/10/2019 23:28,11/05/2018 13:29,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-5536,9/10/2019 23:28,1/05/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5535,9/10/2019 23:28,1/05/2018 18:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2017-5532,9/10/2019 23:28,15/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5528,9/10/2019 23:28,29/06/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5263,9/10/2019 23:28,20/12/2017 22:29,5.4,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5262,9/10/2019 23:28,20/12/2017 22:29,7.7,200, Information Exposure,nan
CVE-2017-5261,9/10/2019 23:28,20/12/2017 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5260,9/10/2019 23:28,20/12/2017 22:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-5259,9/10/2019 23:28,20/12/2017 22:29,9.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-5258,9/10/2019 23:28,20/12/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5257,9/10/2019 23:28,20/12/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5256,9/10/2019 23:28,20/12/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5255,9/10/2019 23:28,20/12/2017 22:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-5254,9/10/2019 23:28,20/12/2017 22:29,9.0,269, Improper Privilege Management,nan
CVE-2017-5251,9/10/2019 23:28,22/02/2018 16:29,6.8,311, Missing Encryption of Sensitive Data,nan
CVE-2017-5250,9/10/2019 23:28,22/02/2018 16:29,5.0,922, Insecure Storage of Sensitive Information,nan
CVE-2017-5249,9/10/2019 23:28,22/02/2018 16:29,5.0,922, Insecure Storage of Sensitive Information,nan
CVE-2017-5244,9/10/2019 23:28,15/06/2017 14:29,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5243,9/10/2019 23:28,6/06/2017 16:29,6.8,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-5189,9/10/2019 23:28,2/03/2018 20:29,5.0,287, Improper Authentication,nan
CVE-2017-5188,9/10/2019 23:28,1/03/2018 20:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-5187,9/10/2019 23:28,21/08/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5176,9/10/2019 23:28,19/05/2017 3:29,6.2,427, Uncontrolled Search Path Element,nan
CVE-2017-5175,9/10/2019 23:28,9/05/2018 19:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-5170,9/10/2019 23:28,18/01/2018 19:29,6.5,427, Uncontrolled Search Path Element,nan
CVE-2017-5147,9/10/2019 23:28,9/09/2017 1:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2017-4028,9/10/2019 23:27,3/04/2018 22:29,2.1,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-3972,9/10/2019 23:27,3/04/2018 22:29,7.5,200, Information Exposure,nan
CVE-2017-3971,9/10/2019 23:27,4/04/2018 13:29,4.0,326, Inadequate Encryption Strength,nan
CVE-2017-3969,9/10/2019 23:27,4/04/2018 13:29,4.3,417, Channel and Path Errors,nan
CVE-2017-3968,9/10/2019 23:27,13/06/2018 20:29,6.4,384, Session Fixation,nan
CVE-2017-3967,9/10/2019 23:27,4/04/2018 13:29,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-3966,9/10/2019 23:27,4/04/2018 13:29,6.5,613, Insufficient Session Expiration,nan
CVE-2017-3965,9/10/2019 23:27,4/04/2018 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-3964,9/10/2019 23:27,4/04/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3962,9/10/2019 23:27,12/06/2018 14:29,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2017-3961,9/10/2019 23:27,25/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3936,9/10/2019 23:27,13/06/2018 21:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-3912,9/10/2019 23:27,18/09/2018 22:29,4.6,287, Improper Authentication,nan
CVE-2017-3907,9/10/2019 23:27,13/06/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-3850,9/10/2019 23:27,21/03/2017 16:59,7.1,20, Improper Input Validation,nan
CVE-2017-3831,9/10/2019 23:27,15/03/2017 20:59,10.0,287, Improper Authentication,nan
CVE-2017-3791,9/10/2019 23:27,1/02/2017 19:59,10.0,287, Improper Authentication,nan
CVE-2017-3226,9/10/2019 23:27,24/07/2018 15:29,4.4,310, Cryptographic Issues,nan
CVE-2017-3225,9/10/2019 23:27,24/07/2018 15:29,2.1,310, Cryptographic Issues,nan
CVE-2017-3224,9/10/2019 23:27,24/07/2018 15:29,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-3223,9/10/2019 23:27,24/07/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3219,9/10/2019 23:27,21/06/2017 20:29,8.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-3218,9/10/2019 23:27,21/06/2017 20:29,8.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-3217,9/10/2019 23:27,24/07/2018 15:29,9.3,306, Missing Authentication for Critical Function,nan
CVE-2017-3216,9/10/2019 23:27,20/06/2017 0:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-3215,9/10/2019 23:27,20/06/2017 0:29,5.0,613, Insufficient Session Expiration,nan
CVE-2017-3214,9/10/2019 23:27,20/06/2017 0:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-3210,9/10/2019 23:27,24/07/2018 15:29,7.2,16, Configuration,nan
CVE-2017-3209,9/10/2019 23:27,24/07/2018 15:29,4.8,306, Missing Authentication for Critical Function,nan
CVE-2017-3207,9/10/2019 23:27,11/06/2018 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-3206,9/10/2019 23:27,11/06/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-3203,9/10/2019 23:27,11/06/2018 17:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-3202,9/10/2019 23:27,11/06/2018 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-3201,9/10/2019 23:27,11/06/2018 17:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-3200,9/10/2019 23:27,11/06/2018 17:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-3199,9/10/2019 23:27,11/06/2018 17:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-3198,9/10/2019 23:27,9/07/2018 19:29,10.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-3197,9/10/2019 23:27,9/07/2018 19:29,10.0,20, Improper Input Validation,nan
CVE-2017-3196,9/10/2019 23:27,16/12/2017 2:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3195,9/10/2019 23:27,16/12/2017 2:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3194,9/10/2019 23:27,16/12/2017 2:29,4.3,200, Information Exposure,nan
CVE-2017-3193,9/10/2019 23:27,16/12/2017 2:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3192,9/10/2019 23:27,16/12/2017 2:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-3191,9/10/2019 23:27,16/12/2017 2:29,5.0,20, Improper Input Validation,nan
CVE-2017-3190,9/10/2019 23:27,16/12/2017 2:29,2.9,295, Improper Certificate Validation,nan
CVE-2017-3189,9/10/2019 23:27,24/07/2018 15:29,9.3,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-3188,9/10/2019 23:27,24/07/2018 15:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-3187,9/10/2019 23:27,24/07/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-3186,9/10/2019 23:27,16/12/2017 2:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-3185,9/10/2019 23:27,16/12/2017 2:29,5.0,200, Information Exposure,nan
CVE-2017-3184,9/10/2019 23:27,16/12/2017 2:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-3183,9/10/2019 23:27,24/07/2018 15:29,6.5,863, Incorrect Authorization,nan
CVE-2017-3182,9/10/2019 23:27,24/07/2018 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-3181,9/10/2019 23:27,24/07/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3180,9/10/2019 23:27,24/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3145,9/10/2019 23:27,16/01/2019 20:29,5.0,416, Use After Free,nan
CVE-2017-3144,9/10/2019 23:27,16/01/2019 20:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-3141,9/10/2019 23:27,16/01/2019 20:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-3140,9/10/2019 23:27,16/01/2019 20:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-3138,9/10/2019 23:27,16/01/2019 20:29,3.5,617, Reachable Assertion,nan
CVE-2017-3137,9/10/2019 23:27,16/01/2019 20:29,5.0,617, Reachable Assertion,nan
CVE-2017-3136,9/10/2019 23:27,16/01/2019 20:29,4.3,617, Reachable Assertion,nan
CVE-2017-3135,9/10/2019 23:27,16/01/2019 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-2685,9/10/2019 23:27,1/03/2017 17:59,5.8,200, Information Exposure,nan
CVE-2017-2674,9/10/2019 23:27,27/07/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2673,9/10/2019 23:27,19/07/2018 13:29,6.5,863, Incorrect Authorization,nan
CVE-2017-2672,9/10/2019 23:27,21/06/2018 13:29,4.0,269, Improper Privilege Management,nan
CVE-2017-2670,9/10/2019 23:27,27/07/2018 15:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-2669,9/10/2019 23:27,21/06/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2017-2668,9/10/2019 23:27,22/06/2018 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-2667,9/10/2019 23:27,12/03/2018 15:29,6.8,295, Improper Certificate Validation,nan
CVE-2017-2666,9/10/2019 23:27,27/07/2018 14:29,6.4,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-2665,9/10/2019 23:27,6/07/2018 13:29,1.9,522, Insufficiently Protected Credentials,nan
CVE-2017-2662,9/10/2019 23:27,22/08/2018 16:29,4.0,269, Improper Privilege Management,nan
CVE-2017-2661,9/10/2019 23:27,12/03/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2659,9/10/2019 23:27,21/03/2019 15:59,5.0,287, Improper Authentication,nan
CVE-2017-2658,9/10/2019 23:27,27/07/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2017-2654,9/10/2019 23:27,6/08/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-2653,9/10/2019 23:27,27/07/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2017-2652,9/10/2019 23:27,27/07/2018 20:29,9.0,287, Improper Authentication,nan
CVE-2017-2651,9/10/2019 23:27,27/07/2018 18:29,4.3,200, Information Exposure,nan
CVE-2017-2649,9/10/2019 23:27,27/07/2018 20:29,6.8,295, Improper Certificate Validation,nan
CVE-2017-2648,9/10/2019 23:27,27/07/2018 20:29,6.8,295, Improper Certificate Validation,nan
CVE-2017-2646,9/10/2019 23:27,27/07/2018 18:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-2640,9/10/2019 23:27,27/07/2018 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-2639,9/10/2019 23:27,27/07/2018 13:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-2638,9/10/2019 23:27,16/07/2018 13:29,6.4,287, Improper Authentication,nan
CVE-2017-2637,9/10/2019 23:27,26/07/2018 12:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-2635,9/10/2019 23:26,22/08/2018 21:29,4.0,476, NULL Pointer Dereference,nan
CVE-2017-2634,9/10/2019 23:26,27/07/2018 19:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2633,9/10/2019 23:26,27/07/2018 19:29,4.0,787, Out-of-bounds Write,nan
CVE-2017-2632,9/10/2019 23:26,27/07/2018 19:29,4.0,863, Incorrect Authorization,nan
CVE-2017-2630,9/10/2019 23:26,27/07/2018 18:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2629,9/10/2019 23:26,27/07/2018 19:29,4.0,295, Improper Certificate Validation,nan
CVE-2017-2627,9/10/2019 23:26,22/08/2018 17:29,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2625,9/10/2019 23:26,27/07/2018 18:29,2.1,320, Key Management Errors,nan
CVE-2017-2624,9/10/2019 23:26,27/07/2018 18:29,1.9,200, Information Exposure,nan
CVE-2017-2623,9/10/2019 23:26,27/07/2018 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2622,9/10/2019 23:26,27/07/2018 13:29,2.1,200, Information Exposure,nan
CVE-2017-2621,9/10/2019 23:26,27/07/2018 18:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-2619,9/10/2019 23:26,12/03/2018 15:29,6.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-2618,9/10/2019 23:26,27/07/2018 19:29,4.9,682, Incorrect Calculation,nan
CVE-2017-2617,9/10/2019 23:26,22/05/2018 17:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-2616,9/10/2019 23:26,27/07/2018 19:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2614,9/10/2019 23:26,27/07/2018 18:29,2.1,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-2613,9/10/2019 23:26,15/05/2018 22:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2612,9/10/2019 23:26,15/05/2018 20:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-2611,9/10/2019 23:26,8/05/2018 18:29,4.0,269, Improper Privilege Management,nan
CVE-2017-2610,9/10/2019 23:26,15/05/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2609,9/10/2019 23:26,22/05/2018 17:29,4.0,200, Information Exposure,nan
CVE-2017-2608,9/10/2019 23:26,15/05/2018 20:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2017-2607,9/10/2019 23:26,21/05/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2606,9/10/2019 23:26,8/05/2018 20:29,4.0,200, Information Exposure,nan
CVE-2017-2604,9/10/2019 23:26,15/05/2018 21:29,4.0,287, Improper Authentication,nan
CVE-2017-2603,9/10/2019 23:26,15/05/2018 21:29,3.5,200, Information Exposure,nan
CVE-2017-2601,9/10/2019 23:26,10/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2600,9/10/2019 23:26,15/05/2018 20:29,4.0,200, Information Exposure,nan
CVE-2017-2599,9/10/2019 23:26,11/04/2018 16:29,5.5,269, Improper Privilege Management,nan
CVE-2017-2598,9/10/2019 23:26,23/05/2018 13:29,4.0,326, Inadequate Encryption Strength,nan
CVE-2017-2595,9/10/2019 23:26,27/07/2018 15:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2594,9/10/2019 23:26,8/05/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2592,9/10/2019 23:26,8/05/2018 17:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-2591,9/10/2019 23:26,30/04/2018 12:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-2590,9/10/2019 23:26,27/07/2018 18:29,5.5,275, Permission Issues,nan
CVE-2017-2587,9/10/2019 23:26,27/07/2018 18:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-2586,9/10/2019 23:26,27/07/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-2581,9/10/2019 23:26,27/07/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-2575,9/10/2019 23:26,22/08/2018 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-2349,9/10/2019 23:26,17/07/2017 13:18,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-2348,9/10/2019 23:26,17/07/2017 13:18,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-2347,9/10/2019 23:26,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-2345,9/10/2019 23:26,17/07/2017 13:18,7.5,20, Improper Input Validation,nan
CVE-2017-2344,9/10/2019 23:26,17/07/2017 13:18,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2343,9/10/2019 23:26,17/07/2017 13:18,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-2341,9/10/2019 23:26,17/07/2017 13:18,7.2,287, Improper Authentication,nan
CVE-2017-2314,9/10/2019 23:26,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-1795,9/10/2019 23:26,6/07/2018 14:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1794,9/10/2019 23:26,19/09/2018 15:29,6.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-1793,9/10/2019 23:26,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1792,9/10/2019 23:26,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1791,9/10/2019 23:26,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1789,9/10/2019 23:26,22/03/2018 12:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1787,9/10/2019 23:26,2/03/2018 17:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2017-1772,9/10/2019 23:26,4/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1768,9/10/2019 23:26,29/05/2018 13:29,4.0,200, Information Exposure,nan
CVE-2017-1767,9/10/2019 23:26,30/03/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1766,9/10/2019 23:26,30/03/2018 16:29,4.0,863, Incorrect Authorization,nan
CVE-2017-1765,9/10/2019 23:26,30/03/2018 16:29,4.0,200, Information Exposure,nan
CVE-2017-1762,9/10/2019 23:26,23/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1756,9/10/2019 23:26,30/03/2018 16:29,2.1,200, Information Exposure,nan
CVE-2017-1753,9/10/2019 23:26,20/08/2018 21:29,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1749,9/10/2019 23:26,13/08/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1748,9/10/2019 23:26,4/06/2018 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1747,9/10/2019 23:26,30/03/2018 16:29,4.0,20, Improper Input Validation,nan
CVE-2017-1741,9/10/2019 23:26,14/03/2018 0:29,4.0,200, Information Exposure,nan
CVE-2017-1738,9/10/2019 23:26,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1733,9/10/2019 23:26,4/04/2018 18:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1732,9/10/2019 23:26,17/08/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-1729,9/10/2019 23:26,10/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1717,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1715,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1713,9/10/2019 23:26,21/03/2019 15:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2017-1705,9/10/2019 23:26,30/03/2018 16:29,4.0,200, Information Exposure,nan
CVE-2017-1695,9/10/2019 23:26,15/02/2019 20:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-1691,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1690,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1679,9/10/2019 23:26,10/09/2018 14:29,2.1,200, Information Exposure,nan
CVE-2017-1655,9/10/2019 23:26,23/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1654,9/10/2019 23:26,2/03/2018 17:29,2.1,200, Information Exposure,nan
CVE-2017-1652,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1651,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1649,9/10/2019 23:26,2/10/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1633,9/10/2019 23:26,20/07/2018 16:29,4.0,200, Information Exposure,nan
CVE-2017-1629,9/10/2019 23:26,23/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1625,9/10/2019 23:26,8/03/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-1624,9/10/2019 23:26,4/04/2018 18:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1622,9/10/2019 23:26,5/12/2018 17:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-1621,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1609,9/10/2019 23:26,2/11/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1608,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1602,9/10/2019 23:26,23/03/2018 19:29,4.0,552, Files or Directories Accessible to External Parties,nan
CVE-2017-1597,9/10/2019 23:26,17/12/2018 16:29,5.0,521, Weak Password Requirements,nan
CVE-2017-1592,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1575,9/10/2019 23:26,20/07/2018 16:29,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-1571,9/10/2019 23:26,22/03/2018 12:29,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-1568,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1565,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1564,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1562,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1561,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1559,9/10/2019 23:26,6/07/2018 14:29,4.0,200, Information Exposure,nan
CVE-2017-1544,9/10/2019 23:26,20/07/2018 16:29,2.1,200, Information Exposure,nan
CVE-2017-1524,9/10/2019 23:26,23/03/2018 19:29,4.0,200, Information Exposure,nan
CVE-2017-1509,9/10/2019 23:26,6/07/2018 14:29,4.0,200, Information Exposure,nan
CVE-2017-1488,9/10/2019 23:26,6/07/2018 14:29,5.0,200, Information Exposure,nan
CVE-2017-1480,9/10/2019 23:26,6/06/2018 17:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1476,9/10/2019 23:26,6/06/2018 17:29,4.3,200, Information Exposure,nan
CVE-2017-1474,9/10/2019 23:26,6/06/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-1418,9/10/2019 23:26,26/11/2018 16:29,3.6,275, Permission Issues,nan
CVE-2017-1412,9/10/2019 23:26,6/08/2018 14:29,4.0,200, Information Exposure,nan
CVE-2017-1411,9/10/2019 23:26,6/08/2018 14:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-1409,9/10/2019 23:26,6/08/2018 14:29,5.0,200, Information Exposure,nan
CVE-2017-1405,9/10/2019 23:26,8/06/2018 13:29,4.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-1396,9/10/2019 23:26,6/08/2018 14:29,5.5,275, Permission Issues,nan
CVE-2017-1395,9/10/2019 23:26,13/07/2018 16:29,4.3,200, Information Exposure,nan
CVE-2017-1368,9/10/2019 23:26,6/08/2018 14:29,4.3,384, Session Fixation,nan
CVE-2017-1367,9/10/2019 23:26,13/07/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-1366,9/10/2019 23:26,6/08/2018 14:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-1329,9/10/2019 23:26,6/07/2018 14:29,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1317,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1316,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1315,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1314,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1313,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1312,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1306,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1294,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1293,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1281,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1280,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1277,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1275,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1272,9/10/2019 23:26,17/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-1268,9/10/2019 23:26,13/12/2018 16:29,2.1,310, Cryptographic Issues,nan
CVE-2017-1265,9/10/2019 23:26,17/12/2018 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-1250,9/10/2019 23:26,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1248,9/10/2019 23:26,6/07/2018 14:29,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1242,9/10/2019 23:26,6/07/2018 14:29,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1239,9/10/2019 23:26,6/07/2018 14:29,5.0,200, Information Exposure,nan
CVE-2017-1238,9/10/2019 23:26,6/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1237,9/10/2019 23:26,6/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1231,9/10/2019 23:26,12/10/2018 5:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-1202,9/10/2019 23:26,5/02/2019 18:29,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-1200,9/10/2019 23:26,5/02/2019 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-1198,9/10/2019 23:26,5/02/2019 18:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1177,9/10/2019 23:26,5/02/2019 18:29,5.0,200, Information Exposure,nan
CVE-2017-1119,9/10/2019 23:26,9/11/2018 1:29,4.0,200, Information Exposure,nan
CVE-2017-1115,9/10/2019 23:26,7/09/2018 15:29,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-1114,9/10/2019 23:26,7/09/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1081,9/10/2019 23:26,10/04/2018 13:29,7.8,20, Improper Input Validation,nan
CVE-2017-18378,9/10/2019 23:25,11/06/2019 21:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-18101,9/10/2019 23:25,10/04/2018 13:29,6.4,862, Missing Authorization,nan
CVE-2017-18095,9/10/2019 23:25,19/02/2018 14:29,5.0,863, Incorrect Authorization,nan
CVE-2017-18036,9/10/2019 23:25,2/02/2018 14:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-18035,9/10/2019 23:25,2/02/2018 14:29,4.0,862, Missing Authorization,nan
CVE-2017-17659,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17658,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17657,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17656,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17655,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17654,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17653,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17652,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17425,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17424,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17423,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17422,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17421,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17420,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17419,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17418,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17417,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17416,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17415,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17414,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17412,9/10/2019 23:25,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17410,9/10/2019 23:25,21/12/2017 14:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-17409,9/10/2019 23:25,21/12/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-17408,9/10/2019 23:25,21/12/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-17407,9/10/2019 23:25,23/01/2018 1:29,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2017-17406,9/10/2019 23:25,23/01/2018 1:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-16858,9/10/2019 23:25,31/01/2018 14:29,4.9,287, Improper Authentication,nan
CVE-2017-16775,9/10/2019 23:25,1/04/2019 15:29,5.8,20, Improper Input Validation,nan
CVE-2017-16774,9/10/2019 23:25,1/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16773,9/10/2019 23:25,5/07/2018 13:29,6.5,863, Incorrect Authorization,nan
CVE-2017-16772,9/10/2019 23:25,22/03/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2017-16771,9/10/2019 23:25,22/03/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16770,9/10/2019 23:25,27/02/2018 15:29,4.0,200, Information Exposure,nan
CVE-2017-16769,9/10/2019 23:25,23/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-16767,9/10/2019 23:25,27/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16766,9/10/2019 23:25,22/12/2017 14:29,6.4,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16753,9/10/2019 23:25,5/01/2018 8:29,5.0,20, Improper Input Validation,nan
CVE-2017-16751,9/10/2019 23:25,15/03/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16749,9/10/2019 23:25,15/03/2018 23:29,6.8,416, Use After Free,nan
CVE-2017-16747,9/10/2019 23:25,15/03/2018 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-16745,9/10/2019 23:25,15/03/2018 23:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16739,9/10/2019 23:25,12/01/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16737,9/10/2019 23:25,12/01/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16736,9/10/2019 23:25,12/01/2018 2:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-16732,9/10/2019 23:25,12/01/2018 2:29,6.4,416, Use After Free,nan
CVE-2017-16731,9/10/2019 23:25,20/12/2017 19:29,2.9,522, Insufficiently Protected Credentials,nan
CVE-2017-16728,9/10/2019 23:25,5/01/2018 8:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-16727,9/10/2019 23:25,22/12/2017 2:29,6.4,521, Weak Password Requirements,nan
CVE-2017-16726,9/10/2019 23:25,27/06/2018 19:29,6.4,326, Inadequate Encryption Strength,nan
CVE-2017-16724,9/10/2019 23:25,5/01/2018 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16721,9/10/2019 23:25,4/12/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16720,9/10/2019 23:25,5/01/2018 8:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16719,9/10/2019 23:25,16/11/2017 21:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16718,9/10/2019 23:25,27/06/2018 19:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-16717,9/10/2019 23:25,20/12/2017 19:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16715,9/10/2019 23:25,16/11/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-16714,9/10/2019 23:25,6/09/2018 19:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-16610,9/10/2019 23:25,23/01/2018 1:29,7.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16609,9/10/2019 23:25,23/01/2018 1:29,5.0,200, Information Exposure,nan
CVE-2017-16608,9/10/2019 23:25,23/01/2018 1:29,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2017-16607,9/10/2019 23:25,23/01/2018 1:29,5.0,200, Information Exposure,nan
CVE-2017-16606,9/10/2019 23:25,23/01/2018 1:29,6.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16605,9/10/2019 23:25,23/01/2018 1:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16604,9/10/2019 23:25,23/01/2018 1:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16603,9/10/2019 23:25,23/01/2018 1:29,6.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16602,9/10/2019 23:25,23/01/2018 1:29,6.5,134, Use of Externally-Controlled Format String,nan
CVE-2017-16601,9/10/2019 23:25,23/01/2018 1:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16600,9/10/2019 23:25,23/01/2018 1:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16599,9/10/2019 23:25,23/01/2018 1:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16598,9/10/2019 23:25,23/01/2018 1:29,6.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16597,9/10/2019 23:25,23/01/2018 1:29,7.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16596,9/10/2019 23:25,23/01/2018 1:29,4.0,200, Information Exposure,nan
CVE-2017-16595,9/10/2019 23:25,23/01/2018 1:29,4.0,200, Information Exposure,nan
CVE-2017-16594,9/10/2019 23:25,23/01/2018 1:29,4.0,20, Improper Input Validation,nan
CVE-2017-16593,9/10/2019 23:25,23/01/2018 1:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16592,9/10/2019 23:25,23/01/2018 1:29,4.0,200, Information Exposure,nan
CVE-2017-16591,9/10/2019 23:25,23/01/2018 1:29,4.0,200, Information Exposure,nan
CVE-2017-16590,9/10/2019 23:25,23/01/2018 1:29,6.8,287, Improper Authentication,nan
CVE-2017-16589,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16588,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16587,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16586,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16585,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16584,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16583,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16582,9/10/2019 23:25,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16581,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16580,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16579,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16578,9/10/2019 23:25,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16577,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16576,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16575,9/10/2019 23:25,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-16574,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16573,9/10/2019 23:25,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-16572,9/10/2019 23:25,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16571,9/10/2019 23:25,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16226,9/10/2019 23:24,7/06/2018 2:29,7.5,20, Improper Input Validation,nan
CVE-2017-16225,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16224,9/10/2019 23:24,7/06/2018 2:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-16223,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16222,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16221,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16220,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16219,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16218,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16217,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16216,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16215,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16214,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16213,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16212,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16211,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16210,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16209,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16208,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16205,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16204,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16203,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16202,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16201,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16200,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16199,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16197,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16196,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16195,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16194,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16193,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16192,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16191,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16190,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16189,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16188,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16187,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16186,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16185,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16184,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16183,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16182,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16181,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16180,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16179,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16178,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16177,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16176,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16175,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16174,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16173,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16172,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16171,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16170,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16169,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16168,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16167,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16166,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16165,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16164,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16163,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16162,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16161,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16160,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16159,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16158,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16157,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16156,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16155,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16154,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16153,9/10/2019 23:24,29/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16152,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16151,9/10/2019 23:24,7/06/2018 2:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16150,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16149,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16148,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16147,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16146,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16145,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16144,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16143,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16142,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16141,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16140,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16139,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16138,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16137,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16136,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16135,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16134,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16133,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16132,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16131,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16130,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16129,9/10/2019 23:24,7/06/2018 2:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-16128,9/10/2019 23:24,7/06/2018 2:29,10.0,276, Incorrect Default Permissions,nan
CVE-2017-16127,9/10/2019 23:24,7/06/2018 2:29,10.0,276, Incorrect Default Permissions,nan
CVE-2017-16125,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16124,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16123,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16122,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16121,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16120,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16119,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16118,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16117,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16116,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16115,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16114,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16113,9/10/2019 23:24,7/06/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2017-16111,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16110,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16109,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16108,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16107,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16106,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16105,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16104,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16103,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16102,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16101,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16100,9/10/2019 23:24,7/06/2018 2:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-16099,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16098,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16097,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16096,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16095,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16094,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16093,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16092,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16091,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16090,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16089,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16086,9/10/2019 23:24,7/06/2018 2:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-16085,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16084,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16083,9/10/2019 23:24,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16082,9/10/2019 23:24,7/06/2018 2:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16081,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16080,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16079,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16078,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16077,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16076,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16075,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16074,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16073,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16072,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16071,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16070,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16069,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16068,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16067,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16066,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16065,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16064,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16063,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16062,9/10/2019 23:24,29/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-16061,9/10/2019 23:24,29/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-16060,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16059,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16058,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16057,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16056,9/10/2019 23:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16055,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16054,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16053,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16052,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16051,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16050,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16049,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16048,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16047,9/10/2019 23:24,29/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-16046,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16045,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16044,9/10/2019 23:24,4/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-16043,9/10/2019 23:24,4/06/2018 19:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16042,9/10/2019 23:24,4/06/2018 19:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16041,9/10/2019 23:24,4/06/2018 19:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-16040,9/10/2019 23:24,4/06/2018 19:29,9.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-16039,9/10/2019 23:24,4/06/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16037,9/10/2019 23:24,4/06/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16036,9/10/2019 23:24,4/06/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16035,9/10/2019 23:24,4/06/2018 19:29,9.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-16029,9/10/2019 23:24,4/06/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16028,9/10/2019 23:24,4/06/2018 19:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-16026,9/10/2019 23:24,4/06/2018 19:29,7.1,20, Improper Input Validation,nan
CVE-2017-16025,9/10/2019 23:24,4/06/2018 19:29,4.3,287, Improper Authentication,nan
CVE-2017-16024,9/10/2019 23:24,4/06/2018 19:29,4.0,200, Information Exposure,nan
CVE-2017-16023,9/10/2019 23:24,4/06/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-16022,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16021,9/10/2019 23:24,4/06/2018 19:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-16020,9/10/2019 23:24,4/06/2018 19:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16019,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16018,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16017,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16016,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16015,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16014,9/10/2019 23:24,4/06/2018 19:29,5.0,388, 7PK – Errors,nan
CVE-2017-16013,9/10/2019 23:24,4/06/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-16010,9/10/2019 23:24,29/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16009,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16008,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16006,9/10/2019 23:24,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16005,9/10/2019 23:24,4/06/2018 19:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-16003,9/10/2019 23:24,29/05/2018 20:29,9.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-15895,9/10/2019 23:24,8/12/2017 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15894,9/10/2019 23:24,8/12/2017 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15893,9/10/2019 23:24,8/12/2017 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15892,9/10/2019 23:24,28/12/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15890,9/10/2019 23:24,15/12/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15889,9/10/2019 23:24,4/12/2017 19:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-15888,9/10/2019 23:24,30/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15887,9/10/2019 23:24,7/11/2017 15:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-15886,9/10/2019 23:24,28/12/2017 15:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-15139,9/10/2019 23:24,27/08/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-15138,9/10/2019 23:24,13/08/2018 17:29,4.0,200, Information Exposure,nan
CVE-2017-15137,9/10/2019 23:24,16/07/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-15133,9/10/2019 23:24,29/01/2018 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-15132,9/10/2019 23:24,25/01/2018 20:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15128,9/10/2019 23:24,14/01/2018 6:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15125,9/10/2019 23:24,27/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15120,9/10/2019 23:24,27/07/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15119,9/10/2019 23:24,27/07/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-15118,9/10/2019 23:24,27/07/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-15113,9/10/2019 23:24,27/07/2018 16:29,3.5,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-15105,9/10/2019 23:24,23/01/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-15104,9/10/2019 23:24,18/12/2017 19:29,2.1,200, Information Exposure,nan
CVE-2017-15103,9/10/2019 23:24,18/12/2017 19:29,9.0,20, Improper Input Validation,nan
CVE-2017-15101,9/10/2019 23:24,27/07/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15097,9/10/2019 23:24,27/07/2018 20:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-15094,9/10/2019 23:24,23/01/2018 15:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15093,9/10/2019 23:24,23/01/2018 15:29,3.5,20, Improper Input Validation,nan
CVE-2017-15092,9/10/2019 23:24,23/01/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15091,9/10/2019 23:24,23/01/2018 15:29,5.5,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-15090,9/10/2019 23:24,23/01/2018 15:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-15088,9/10/2019 23:24,23/11/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15087,9/10/2019 23:24,8/11/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-15085,9/10/2019 23:24,8/11/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-14837,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14836,9/10/2019 23:24,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-14835,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14834,9/10/2019 23:24,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-14833,9/10/2019 23:24,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-14832,9/10/2019 23:24,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-14831,9/10/2019 23:24,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-14830,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14829,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14828,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14827,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14826,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14825,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14824,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14823,9/10/2019 23:24,20/12/2017 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-14822,9/10/2019 23:24,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-14821,9/10/2019 23:24,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-14820,9/10/2019 23:24,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-14819,9/10/2019 23:24,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-14818,9/10/2019 23:24,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-14804,9/10/2019 23:24,1/03/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-14802,9/10/2019 23:24,2/03/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14801,9/10/2019 23:24,2/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14800,9/10/2019 23:24,1/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14799,9/10/2019 23:24,1/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14363,9/10/2019 23:23,21/12/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14362,9/10/2019 23:23,13/12/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14360,9/10/2019 23:23,8/11/2017 14:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-14202,9/10/2019 23:23,29/08/2019 1:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14201,9/10/2019 23:23,29/08/2019 1:15,4.6,416, Use After Free,nan
CVE-2017-14095,9/10/2019 23:23,19/01/2018 19:29,6.8,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2017-14094,9/10/2019 23:23,19/01/2018 19:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-14031,9/10/2019 23:23,6/11/2017 22:29,7.2,269, Improper Privilege Management,nan
CVE-2017-14030,9/10/2019 23:23,12/01/2018 20:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2017-14029,9/10/2019 23:23,6/11/2017 22:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-14028,9/10/2019 23:23,16/11/2017 21:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-14027,9/10/2019 23:23,1/11/2017 2:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-14026,9/10/2019 23:23,6/09/2018 19:29,5.0,287, Improper Authentication,nan
CVE-2017-14025,9/10/2019 23:23,6/11/2017 22:29,2.1,20, Improper Input Validation,nan
CVE-2017-14023,9/10/2019 23:23,6/11/2017 22:29,4.0,20, Improper Input Validation,nan
CVE-2017-14022,9/10/2019 23:23,23/12/2017 0:29,5.0,20, Improper Input Validation,nan
CVE-2017-14021,9/10/2019 23:23,1/11/2017 2:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-14019,9/10/2019 23:23,19/10/2017 23:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2017-14018,9/10/2019 23:23,5/12/2017 23:29,3.3,287, Improper Authentication,nan
CVE-2017-14017,9/10/2019 23:23,19/10/2017 23:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2017-14014,9/10/2019 23:23,1/05/2018 18:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2017-14013,9/10/2019 23:23,17/10/2017 22:29,6.8,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2017-14012,9/10/2019 23:23,1/05/2018 18:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2017-14011,9/10/2019 23:23,17/10/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14010,9/10/2019 23:23,26/04/2018 19:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-14009,9/10/2019 23:23,17/10/2017 22:29,4.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-14008,9/10/2019 23:23,20/03/2018 16:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-14007,9/10/2019 23:23,17/10/2017 22:29,6.8,613, Insufficient Session Expiration,nan
CVE-2017-14006,9/10/2019 23:23,20/03/2018 16:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-14005,9/10/2019 23:23,17/10/2017 22:29,6.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-14004,9/10/2019 23:23,20/03/2018 16:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-14003,9/10/2019 23:23,11/10/2017 19:29,7.5,287, Improper Authentication,nan
CVE-2017-14002,9/10/2019 23:23,20/03/2018 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-14001,9/10/2019 23:23,26/09/2017 2:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14000,9/10/2019 23:23,5/10/2017 1:29,7.5,287, Improper Authentication,nan
CVE-2017-13998,9/10/2019 23:23,5/10/2017 21:29,6.0,522, Insufficiently Protected Credentials,nan
CVE-2017-13997,9/10/2019 23:23,3/10/2017 1:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-13996,9/10/2019 23:23,5/10/2017 21:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-13995,9/10/2019 23:23,5/10/2017 1:29,7.5,287, Improper Authentication,nan
CVE-2017-13994,9/10/2019 23:23,5/10/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13993,9/10/2019 23:23,5/10/2017 1:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-13992,9/10/2019 23:23,5/10/2017 21:29,6.8,331, Insufficient Entropy,nan
CVE-2017-13108,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13107,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13106,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13105,9/10/2019 23:23,15/08/2018 22:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-13104,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13102,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13101,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13100,9/10/2019 23:23,15/08/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13099,9/10/2019 23:23,13/12/2017 1:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-13098,9/10/2019 23:23,13/12/2017 1:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-13097,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13096,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13095,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13094,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13093,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13092,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13091,9/10/2019 23:23,13/07/2018 20:29,4.6,310, Cryptographic Issues,nan
CVE-2017-13083,9/10/2019 23:23,18/10/2017 13:29,6.8,494, Download of Code Without Integrity Check,nan
CVE-2017-12740,9/10/2019 23:23,26/12/2017 4:29,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-12734,9/10/2019 23:23,30/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-12733,9/10/2019 23:23,9/09/2017 1:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2017-12732,9/10/2019 23:23,5/10/2017 21:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12731,9/10/2019 23:23,9/09/2017 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12730,9/10/2019 23:23,6/10/2017 4:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-12729,9/10/2019 23:23,18/01/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12728,9/10/2019 23:23,5/10/2017 1:29,7.2,269, Improper Privilege Management,nan
CVE-2017-12719,9/10/2019 23:23,6/11/2017 22:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-12718,9/10/2019 23:23,15/02/2018 10:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12717,9/10/2019 23:23,30/08/2017 18:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-12716,9/10/2019 23:23,25/04/2018 13:29,3.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-12714,9/10/2019 23:23,25/04/2018 13:29,6.1,920, Improper Restriction of Power Consumption,nan
CVE-2017-12713,9/10/2019 23:23,30/08/2017 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-12712,9/10/2019 23:23,25/04/2018 13:29,8.3,287, Improper Authentication,nan
CVE-2017-12709,9/10/2019 23:23,25/08/2017 16:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2017-12708,9/10/2019 23:23,30/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12707,9/10/2019 23:23,25/08/2017 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12706,9/10/2019 23:23,30/08/2017 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12704,9/10/2019 23:23,30/08/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12702,9/10/2019 23:23,30/08/2017 18:29,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2017-12701,9/10/2019 23:23,17/04/2018 14:29,4.0,20, Improper Input Validation,nan
CVE-2017-12699,9/10/2019 23:23,9/09/2017 1:29,3.6,276, Incorrect Default Permissions,nan
CVE-2017-12698,9/10/2019 23:23,30/08/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2017-12697,9/10/2019 23:23,9/01/2018 21:29,4.3,200, Information Exposure,nan
CVE-2017-12695,9/10/2019 23:23,9/01/2018 21:29,4.0,287, Improper Authentication,nan
CVE-2017-12694,9/10/2019 23:23,25/08/2017 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12373,9/10/2019 23:23,15/12/2017 20:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-12372,9/10/2019 23:23,30/11/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12371,9/10/2019 23:23,30/11/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12370,9/10/2019 23:23,30/11/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12369,9/10/2019 23:23,30/11/2017 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12368,9/10/2019 23:23,30/11/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12367,9/10/2019 23:23,30/11/2017 9:29,6.8,20, Improper Input Validation,nan
CVE-2017-12366,9/10/2019 23:23,30/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12365,9/10/2019 23:23,30/11/2017 9:29,4.0,200, Information Exposure,nan
CVE-2017-12364,9/10/2019 23:23,30/11/2017 9:29,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12363,9/10/2019 23:23,30/11/2017 9:29,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-12361,9/10/2019 23:23,30/11/2017 9:29,2.1,330, Use of Insufficiently Random Values,nan
CVE-2017-12358,9/10/2019 23:23,30/11/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12357,9/10/2019 23:23,30/11/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12356,9/10/2019 23:23,30/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12355,9/10/2019 23:23,30/11/2017 9:29,5.0,20, Improper Input Validation,nan
CVE-2017-12354,9/10/2019 23:23,30/11/2017 9:29,5.0,200, Information Exposure,nan
CVE-2017-12352,9/10/2019 23:23,30/11/2017 9:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12351,9/10/2019 23:22,30/11/2017 9:29,4.6,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-12350,9/10/2019 23:22,16/11/2017 7:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2017-12349,9/10/2019 23:22,30/11/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12348,9/10/2019 23:22,30/11/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12347,9/10/2019 23:22,30/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12346,9/10/2019 23:22,30/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12345,9/10/2019 23:22,30/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12344,9/10/2019 23:22,30/11/2017 9:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-12343,9/10/2019 23:22,30/11/2017 9:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12342,9/10/2019 23:22,30/11/2017 9:29,4.6,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-12341,9/10/2019 23:22,30/11/2017 9:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12338,9/10/2019 23:22,30/11/2017 9:29,2.1,20, Improper Input Validation,nan
CVE-2017-12337,9/10/2019 23:22,16/11/2017 7:29,10.0,287, Improper Authentication,nan
CVE-2017-12330,9/10/2019 23:22,30/11/2017 9:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12329,9/10/2019 23:22,30/11/2017 9:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12328,9/10/2019 23:22,30/11/2017 9:29,5.0,20, Improper Input Validation,nan
CVE-2017-12323,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12322,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12321,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12320,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12319,9/10/2019 23:22,27/03/2018 9:29,7.1,20, Improper Input Validation,nan
CVE-2017-12318,9/10/2019 23:22,16/11/2017 7:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-12317,9/10/2019 23:22,22/10/2017 18:29,4.6,798, Use of Hard-coded Credentials,nan
CVE-2017-12316,9/10/2019 23:22,16/11/2017 7:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-12315,9/10/2019 23:22,16/11/2017 7:29,2.1,200, Information Exposure,nan
CVE-2017-12314,9/10/2019 23:22,16/11/2017 7:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2017-12313,9/10/2019 23:22,16/11/2017 7:29,7.2,426, Untrusted Search Path,nan
CVE-2017-12312,9/10/2019 23:22,16/11/2017 7:29,7.2,426, Untrusted Search Path,nan
CVE-2017-12311,9/10/2019 23:22,16/11/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-12310,9/10/2019 23:22,27/03/2018 9:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-12309,9/10/2019 23:22,16/11/2017 7:29,5.0,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2017-12308,9/10/2019 23:22,18/01/2018 6:29,5.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2017-12307,9/10/2019 23:22,18/01/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12306,9/10/2019 23:22,16/11/2017 7:29,2.1,494, Download of Code Without Integrity Check,nan
CVE-2017-12305,9/10/2019 23:22,16/11/2017 7:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12304,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12303,9/10/2019 23:22,16/11/2017 7:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-12302,9/10/2019 23:22,16/11/2017 7:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12301,9/10/2019 23:22,19/10/2017 8:29,7.2,20, Improper Input Validation,nan
CVE-2017-12300,9/10/2019 23:22,16/11/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-12299,9/10/2019 23:22,16/11/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-12298,9/10/2019 23:22,19/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12297,9/10/2019 23:22,30/11/2017 9:29,4.0,20, Improper Input Validation,nan
CVE-2017-12296,9/10/2019 23:22,19/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12295,9/10/2019 23:22,2/11/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-12294,9/10/2019 23:22,2/11/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12293,9/10/2019 23:22,19/10/2017 8:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-12292,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12291,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12290,9/10/2019 23:22,16/11/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12289,9/10/2019 23:22,19/10/2017 8:29,2.1,200, Information Exposure,nan
CVE-2017-12288,9/10/2019 23:22,19/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12287,9/10/2019 23:22,19/10/2017 8:29,4.0,20, Improper Input Validation,nan
CVE-2017-12286,9/10/2019 23:22,19/10/2017 8:29,2.1,20, Improper Input Validation,nan
CVE-2017-12285,9/10/2019 23:22,19/10/2017 8:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12284,9/10/2019 23:22,19/10/2017 8:29,2.1,200, Information Exposure,nan
CVE-2017-12283,9/10/2019 23:22,2/11/2017 16:29,2.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12282,9/10/2019 23:22,2/11/2017 16:29,5.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12281,9/10/2019 23:22,2/11/2017 16:29,5.4,287, Improper Authentication,nan
CVE-2017-12280,9/10/2019 23:22,2/11/2017 16:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12279,9/10/2019 23:22,2/11/2017 16:29,3.3,200, Information Exposure,nan
CVE-2017-12278,9/10/2019 23:22,2/11/2017 16:29,5.2,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12277,9/10/2019 23:22,2/11/2017 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12276,9/10/2019 23:22,2/11/2017 16:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12275,9/10/2019 23:22,2/11/2017 16:29,6.1,20, Improper Input Validation,nan
CVE-2017-12274,9/10/2019 23:22,2/11/2017 16:29,6.1,20, Improper Input Validation,nan
CVE-2017-12273,9/10/2019 23:22,2/11/2017 16:29,6.1,20, Improper Input Validation,nan
CVE-2017-12272,9/10/2019 23:22,19/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12271,9/10/2019 23:22,19/10/2017 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12270,9/10/2019 23:22,5/10/2017 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12269,9/10/2019 23:22,5/10/2017 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12267,9/10/2019 23:22,5/10/2017 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12266,9/10/2019 23:22,5/10/2017 7:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2017-12265,9/10/2019 23:22,5/10/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12264,9/10/2019 23:22,5/10/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-12263,9/10/2019 23:22,5/10/2017 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12262,9/10/2019 23:22,2/11/2017 16:29,5.8,665, Improper Initialization,nan
CVE-2017-12261,9/10/2019 23:22,2/11/2017 16:29,7.2,863, Incorrect Authorization,nan
CVE-2017-12260,9/10/2019 23:22,19/10/2017 8:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12259,9/10/2019 23:22,19/10/2017 8:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12258,9/10/2019 23:22,5/10/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12257,9/10/2019 23:22,5/10/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12255,9/10/2019 23:22,21/09/2017 5:29,7.2,20, Improper Input Validation,nan
CVE-2017-12254,9/10/2019 23:22,21/09/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12253,9/10/2019 23:22,21/09/2017 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12252,9/10/2019 23:22,21/09/2017 5:29,4.6,426, Untrusted Search Path,nan
CVE-2017-12251,9/10/2019 23:22,19/10/2017 8:29,6.5,287, Improper Authentication,nan
CVE-2017-12250,9/10/2019 23:22,21/09/2017 5:29,5.0,20, Improper Input Validation,nan
CVE-2017-12249,9/10/2019 23:22,13/09/2017 22:29,9.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-12248,9/10/2019 23:22,21/09/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12246,9/10/2019 23:22,5/10/2017 7:29,7.8,20, Improper Input Validation,nan
CVE-2017-12245,9/10/2019 23:22,5/10/2017 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12244,9/10/2019 23:22,5/10/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-12243,9/10/2019 23:22,2/11/2017 16:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12240,9/10/2019 23:22,29/09/2017 1:34,10.0,20, Improper Input Validation,nan
CVE-2017-12239,9/10/2019 23:22,29/09/2017 1:34,7.2,287, Improper Authentication,nan
CVE-2017-12237,9/10/2019 23:22,29/09/2017 1:34,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-12236,9/10/2019 23:22,29/09/2017 1:34,7.5,287, Improper Authentication,nan
CVE-2017-12235,9/10/2019 23:22,29/09/2017 1:34,7.8,20, Improper Input Validation,nan
CVE-2017-12234,9/10/2019 23:22,29/09/2017 1:34,7.8,20, Improper Input Validation,nan
CVE-2017-12233,9/10/2019 23:22,29/09/2017 1:34,7.8,20, Improper Input Validation,nan
CVE-2017-12230,9/10/2019 23:22,29/09/2017 1:34,9.0,276, Incorrect Default Permissions,nan
CVE-2017-12229,9/10/2019 23:22,29/09/2017 1:34,10.0,287, Improper Authentication,nan
CVE-2017-12228,9/10/2019 23:22,29/09/2017 1:34,4.3,295, Improper Certificate Validation,nan
CVE-2017-12227,9/10/2019 23:22,7/09/2017 21:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12226,9/10/2019 23:22,29/09/2017 1:34,9.0,20, Improper Input Validation,nan
CVE-2017-12225,9/10/2019 23:22,7/09/2017 21:29,4.3,384, Session Fixation,nan
CVE-2017-12224,9/10/2019 23:22,7/09/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-12223,9/10/2019 23:22,7/09/2017 21:29,6.9,20, Improper Input Validation,nan
CVE-2017-12222,9/10/2019 23:22,29/09/2017 1:34,6.1,20, Improper Input Validation,nan
CVE-2017-12221,9/10/2019 23:22,7/09/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12220,9/10/2019 23:22,7/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12218,9/10/2019 23:22,7/09/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-12217,9/10/2019 23:22,7/09/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-12216,9/10/2019 23:22,7/09/2017 21:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-12215,9/10/2019 23:22,21/09/2017 5:29,7.8,20, Improper Input Validation,nan
CVE-2017-12214,9/10/2019 23:22,21/09/2017 5:29,6.5,20, Improper Input Validation,nan
CVE-2017-12213,9/10/2019 23:22,7/09/2017 21:29,3.3,287, Improper Authentication,nan
CVE-2017-12212,9/10/2019 23:22,7/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12197,9/10/2019 23:22,18/01/2018 21:29,4.0,20, Improper Input Validation,nan
CVE-2017-12196,9/10/2019 23:22,18/04/2018 1:29,4.3,863, Incorrect Authorization,nan
CVE-2017-12195,9/10/2019 23:22,27/07/2018 15:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-12191,9/10/2019 23:22,28/02/2018 13:29,7.5,613, Insufficient Session Expiration,nan
CVE-2017-12187,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12186,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12185,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12184,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12183,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12182,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12181,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12180,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12179,9/10/2019 23:22,24/01/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-12178,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12177,9/10/2019 23:22,24/01/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-12176,9/10/2019 23:22,24/01/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12175,9/10/2019 23:22,26/07/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12174,9/10/2019 23:22,7/03/2018 22:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-12173,9/10/2019 23:22,27/07/2018 16:29,4.0,200, Information Exposure,nan
CVE-2017-12172,9/10/2019 23:22,22/11/2017 19:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-12171,9/10/2019 23:22,26/07/2018 17:29,6.4,20, Improper Input Validation,nan
CVE-2017-12168,9/10/2019 23:22,20/09/2017 8:29,4.9,617, Reachable Assertion,nan
CVE-2017-12167,9/10/2019 23:22,26/07/2018 17:29,2.1,200, Information Exposure,nan
CVE-2017-12165,9/10/2019 23:22,27/07/2018 15:29,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-12164,9/10/2019 23:22,26/07/2018 16:29,6.9,665, Improper Initialization,nan
CVE-2017-12163,9/10/2019 23:22,26/07/2018 16:29,4.8,200, Information Exposure,nan
CVE-2017-12161,9/10/2019 23:22,21/02/2018 18:29,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-12160,9/10/2019 23:22,26/10/2017 17:29,6.5,287, Improper Authentication,nan
CVE-2017-12159,9/10/2019 23:22,26/10/2017 17:29,5.0,613, Insufficient Session Expiration,nan
CVE-2017-12158,9/10/2019 23:22,26/10/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12153,9/10/2019 23:22,21/09/2017 15:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-12151,9/10/2019 23:22,27/07/2018 12:29,5.8,310, Cryptographic Issues,nan
CVE-2017-12148,9/10/2019 23:22,27/07/2018 16:29,9.0,20, Improper Input Validation,nan
CVE-2017-12080,9/10/2019 23:22,4/12/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-12079,9/10/2019 23:22,4/12/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-12078,9/10/2019 23:22,8/06/2018 13:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12075,9/10/2019 23:22,8/06/2018 13:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12074,9/10/2019 23:22,24/08/2017 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12072,9/10/2019 23:22,20/12/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12071,9/10/2019 23:22,8/09/2017 14:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-11512,9/10/2019 23:22,8/11/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11511,9/10/2019 23:22,8/11/2017 22:29,5.0,200, Information Exposure,nan
CVE-2017-11510,9/10/2019 23:22,28/03/2018 17:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-11482,9/10/2019 23:22,8/12/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-11481,9/10/2019 23:22,8/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11430,9/10/2019 23:22,17/04/2019 14:29,7.5,287, Improper Authentication,nan
CVE-2017-11429,9/10/2019 23:22,17/04/2019 14:29,7.5,287, Improper Authentication,nan
CVE-2017-11428,9/10/2019 23:22,17/04/2019 14:29,7.5,287, Improper Authentication,nan
CVE-2017-11427,9/10/2019 23:22,17/04/2019 14:29,7.5,287, Improper Authentication,nan
CVE-2017-11398,9/10/2019 23:22,19/01/2018 19:29,6.8,534, DEPRECATED: Information Exposure Through Debug Log Files,nan
CVE-2017-11162,9/10/2019 23:21,8/09/2017 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11161,9/10/2019 23:21,8/09/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11159,9/10/2019 23:21,23/08/2017 15:29,4.6,426, Untrusted Search Path,nan
CVE-2017-11158,9/10/2019 23:21,31/08/2017 13:29,4.6,426, Untrusted Search Path,nan
CVE-2017-11156,9/10/2019 23:21,14/08/2017 19:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-11155,9/10/2019 23:21,8/08/2017 15:29,5.0,200, Information Exposure,nan
CVE-2017-11154,9/10/2019 23:21,8/08/2017 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-11153,9/10/2019 23:21,8/08/2017 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-11152,9/10/2019 23:21,8/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11151,9/10/2019 23:21,8/08/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2017-11149,9/10/2019 23:21,14/08/2017 19:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-11148,9/10/2019 23:21,11/08/2017 19:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-10959,9/10/2019 23:21,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-10958,9/10/2019 23:21,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-10957,9/10/2019 23:21,20/12/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-10956,9/10/2019 23:21,20/12/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-10955,9/10/2019 23:21,19/10/2017 19:29,9.0,20, Improper Input Validation,nan
CVE-2017-10954,9/10/2019 23:21,31/10/2017 19:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-10953,9/10/2019 23:21,31/10/2017 19:29,6.8,20, Improper Input Validation,nan
CVE-2017-10952,9/10/2019 23:21,29/08/2017 13:29,6.8,20, Improper Input Validation,nan
CVE-2017-10951,9/10/2019 23:21,29/08/2017 13:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-10950,9/10/2019 23:21,29/08/2017 13:29,6.9,415, Double Free,nan
CVE-2017-10948,9/10/2019 23:21,31/10/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-10947,9/10/2019 23:21,31/10/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-10946,9/10/2019 23:21,31/10/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-10945,9/10/2019 23:21,31/10/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-10944,9/10/2019 23:21,31/10/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-10943,9/10/2019 23:21,31/10/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-10942,9/10/2019 23:21,31/10/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-10941,9/10/2019 23:21,31/10/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-10940,9/10/2019 23:21,31/10/2017 19:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-10624,9/10/2019 23:21,13/10/2017 17:29,5.1,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-10623,9/10/2019 23:21,13/10/2017 17:29,6.8,287, Improper Authentication,nan
CVE-2017-10622,9/10/2019 23:21,13/10/2017 17:29,10.0,287, Improper Authentication,nan
CVE-2017-10621,9/10/2019 23:21,13/10/2017 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-10620,9/10/2019 23:21,13/10/2017 17:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-10617,9/10/2019 23:21,13/10/2017 17:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-10616,9/10/2019 23:21,13/10/2017 17:29,6.4,798, Use of Hard-coded Credentials,nan
CVE-2017-10614,9/10/2019 23:21,13/10/2017 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-10613,9/10/2019 23:21,13/10/2017 17:29,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-10612,9/10/2019 23:21,13/10/2017 17:29,6.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10610,9/10/2019 23:21,13/10/2017 17:29,4.3,20, Improper Input Validation,nan
CVE-2017-10608,9/10/2019 23:21,13/10/2017 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-10605,9/10/2019 23:21,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-10604,9/10/2019 23:21,17/07/2017 13:18,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-10603,9/10/2019 23:21,17/07/2017 13:18,7.2,91, XML Injection (aka Blind XPath Injection),nan
CVE-2017-10601,9/10/2019 23:21,17/07/2017 13:18,10.0,287, Improper Authentication,nan
CVE-2017-1002157,9/10/2019 23:21,10/01/2019 21:29,7.5,20, Improper Input Validation,nan
CVE-2017-1002153,9/10/2019 23:21,6/10/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-1002152,9/10/2019 23:21,10/01/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1002150,9/10/2019 23:21,14/09/2017 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1002101,9/10/2019 23:21,13/03/2018 17:29,5.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-1001004,9/10/2019 23:21,27/11/2017 14:29,6.8,20, Improper Input Validation,nan
CVE-2017-1001003,9/10/2019 23:21,27/11/2017 14:29,7.5,20, Improper Input Validation,nan
CVE-2017-1001002,9/10/2019 23:21,27/11/2017 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-0938,9/10/2019 23:21,12/02/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-0936,9/10/2019 23:21,28/03/2018 20:29,4.9,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-0935,9/10/2019 23:21,22/03/2018 14:29,9.0,269, Improper Privilege Management,nan
CVE-2017-0934,9/10/2019 23:21,22/03/2018 14:29,9.0,269, Improper Privilege Management,nan
CVE-2017-0933,9/10/2019 23:21,22/03/2018 14:29,8.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0932,9/10/2019 23:21,22/03/2018 14:29,9.0,269, Improper Privilege Management,nan
CVE-2017-0931,9/10/2019 23:21,4/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0930,9/10/2019 23:21,4/06/2018 19:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-0928,9/10/2019 23:21,4/06/2018 19:29,4.3,642, External Control of Critical State Data,nan
CVE-2017-0927,9/10/2019 23:21,21/03/2018 20:29,4.0,863, Incorrect Authorization,nan
CVE-2017-0926,9/10/2019 23:21,21/03/2018 20:29,6.5,863, Incorrect Authorization,nan
CVE-2017-0925,9/10/2019 23:21,21/03/2018 20:29,4.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-0924,9/10/2019 23:21,21/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0923,9/10/2019 23:21,21/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0922,9/10/2019 23:21,21/03/2018 20:29,5.0,863, Incorrect Authorization,nan
CVE-2017-0918,9/10/2019 23:21,21/03/2018 20:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-0917,9/10/2019 23:21,21/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0916,9/10/2019 23:21,21/03/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2017-0915,9/10/2019 23:21,21/03/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2017-0914,9/10/2019 23:21,21/03/2018 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-0911,9/10/2019 23:21,9/02/2018 22:29,5.5,287, Improper Authentication,nan
CVE-2017-0910,9/10/2019 23:21,27/11/2017 16:29,4.0,287, Improper Authentication,nan
CVE-2017-0907,9/10/2019 23:21,13/11/2017 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-0906,9/10/2019 23:21,13/11/2017 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-0905,9/10/2019 23:21,13/11/2017 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-0904,9/10/2019 23:21,13/11/2017 17:29,6.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-0903,9/10/2019 23:21,11/10/2017 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-0902,9/10/2019 23:21,31/08/2017 20:29,6.8,346, Origin Validation Error,nan
CVE-2017-0901,9/10/2019 23:21,31/08/2017 20:29,6.4,20, Improper Input Validation,nan
CVE-2017-0899,9/10/2019 23:21,31/08/2017 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-0897,9/10/2019 23:21,22/06/2017 21:29,5.0,331, Insufficient Entropy,nan
CVE-2017-0895,9/10/2019 23:21,8/05/2017 20:29,3.5,200, Information Exposure,nan
CVE-2017-0894,9/10/2019 23:21,8/05/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-0893,9/10/2019 23:21,8/05/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0892,9/10/2019 23:21,8/05/2017 20:29,4.3,384, Session Fixation,nan
CVE-2017-0891,9/10/2019 23:21,8/05/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0890,9/10/2019 23:21,8/05/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0889,9/10/2019 23:21,13/11/2017 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-0887,9/10/2019 23:21,5/04/2017 20:59,4.0,20, Improper Input Validation,nan
CVE-2017-0886,9/10/2019 23:21,5/04/2017 20:59,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-0885,9/10/2019 23:21,5/04/2017 20:59,4.0,200, Information Exposure,nan
CVE-2017-0884,9/10/2019 23:21,5/04/2017 20:59,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0883,9/10/2019 23:21,5/04/2017 20:59,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0882,9/10/2019 23:21,28/03/2017 2:59,4.0,200, Information Exposure,nan
CVE-2017-0881,9/10/2019 23:21,28/03/2017 2:59,4.0,863, Incorrect Authorization,nan
CVE-2016-9778,9/10/2019 23:20,16/01/2019 20:29,4.3,388, 7PK – Errors,nan
CVE-2016-9749,9/10/2019 23:20,9/11/2018 1:29,2.1,20, Improper Input Validation,nan
CVE-2016-9711,9/10/2019 23:20,22/03/2018 12:29,5.0,200, Information Exposure,nan
CVE-2016-9605,9/10/2019 23:20,22/08/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9604,9/10/2019 23:20,11/07/2018 13:29,2.1,347, Improper Verification of Cryptographic Signature,nan
CVE-2016-9602,9/10/2019 23:20,26/04/2018 19:29,9.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-9601,9/10/2019 23:20,24/04/2018 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9600,9/10/2019 23:20,12/03/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9599,9/10/2019 23:20,24/04/2018 1:29,6.0,284, Improper Access Control,nan
CVE-2016-9597,9/10/2019 23:20,30/07/2018 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9595,9/10/2019 23:20,27/07/2018 18:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-9594,9/10/2019 23:20,23/04/2018 19:29,6.8,665, Improper Initialization,nan
CVE-2016-9593,9/10/2019 23:20,16/04/2018 15:29,4.0,255, Credentials Management,nan
CVE-2016-9592,9/10/2019 23:20,16/04/2018 15:29,4.0,399, Resource Management Errors,nan
CVE-2016-9591,9/10/2019 23:20,9/03/2018 20:29,4.3,416, Use After Free,nan
CVE-2016-9590,9/10/2019 23:20,26/04/2018 17:29,4.0,200, Information Exposure,nan
CVE-2016-9589,9/10/2019 23:20,12/03/2018 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-9587,9/10/2019 23:20,24/04/2018 16:29,9.3,20, Improper Input Validation,nan
CVE-2016-9585,9/10/2019 23:20,9/03/2018 15:29,2.6,502, Deserialization of Untrusted Data,nan
CVE-2016-9583,9/10/2019 23:20,1/08/2018 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2016-9581,9/10/2019 23:20,1/08/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9580,9/10/2019 23:20,1/08/2018 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-9579,9/10/2019 23:20,1/08/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2016-9578,9/10/2019 23:20,27/07/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2016-9577,9/10/2019 23:20,27/07/2018 20:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9575,9/10/2019 23:20,13/03/2018 13:29,6.5,285, Improper Authorization,nan
CVE-2016-9574,9/10/2019 23:20,19/07/2018 13:29,4.3,384, Session Fixation,nan
CVE-2016-9573,9/10/2019 23:20,1/08/2018 6:29,5.8,125, Out-of-bounds Read,nan
CVE-2016-9500,9/10/2019 23:20,13/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9499,9/10/2019 23:20,13/07/2018 20:29,5.0,200, Information Exposure,nan
CVE-2016-9498,9/10/2019 23:20,13/07/2018 20:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2016-9497,9/10/2019 23:20,13/07/2018 20:29,8.3,287, Improper Authentication,nan
CVE-2016-9496,9/10/2019 23:20,13/07/2018 20:29,6.1,306, Missing Authentication for Critical Function,nan
CVE-2016-9495,9/10/2019 23:20,13/07/2018 20:29,5.8,798, Use of Hard-coded Credentials,nan
CVE-2016-9494,9/10/2019 23:20,13/07/2018 20:29,3.3,20, Improper Input Validation,nan
CVE-2016-9493,9/10/2019 23:20,13/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9492,9/10/2019 23:20,13/07/2018 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-9491,9/10/2019 23:20,13/07/2018 20:29,6.8,200, Information Exposure,nan
CVE-2016-9489,9/10/2019 23:20,13/07/2018 20:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9487,9/10/2019 23:20,13/07/2018 20:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9486,9/10/2019 23:20,13/07/2018 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9485,9/10/2019 23:20,13/07/2018 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9484,9/10/2019 23:20,13/07/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9483,9/10/2019 23:20,13/07/2018 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-9482,9/10/2019 23:20,13/07/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2016-9473,9/10/2019 23:20,28/03/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9472,9/10/2019 23:20,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9470,9/10/2019 23:20,28/03/2017 2:59,9.3,254, 7PK – Security Features,nan
CVE-2016-9469,9/10/2019 23:20,28/03/2017 2:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9468,9/10/2019 23:20,28/03/2017 2:59,5.0,284, Improper Access Control,nan
CVE-2016-9467,9/10/2019 23:20,28/03/2017 2:59,5.0,284, Improper Access Control,nan
CVE-2016-9466,9/10/2019 23:20,28/03/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9465,9/10/2019 23:20,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9464,9/10/2019 23:20,28/03/2017 2:59,4.0,285, Improper Authorization,nan
CVE-2016-9463,9/10/2019 23:20,28/03/2017 2:59,6.8,287, Improper Authentication,nan
CVE-2016-9462,9/10/2019 23:20,28/03/2017 2:59,4.0,284, Improper Access Control,nan
CVE-2016-9461,9/10/2019 23:20,28/03/2017 2:59,4.0,284, Improper Access Control,nan
CVE-2016-9459,9/10/2019 23:20,28/03/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9368,9/10/2019 23:20,14/03/2017 9:59,5.0,284, Improper Access Control,nan
CVE-2016-9358,9/10/2019 23:20,30/06/2017 3:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-9335,9/10/2019 23:20,9/05/2018 13:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-9225,9/10/2019 23:20,1/02/2017 19:59,7.8,399, Resource Management Errors,nan
CVE-2016-9154,9/10/2019 23:20,23/12/2016 5:59,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2016-9130,9/10/2019 23:20,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9129,9/10/2019 23:20,28/03/2017 2:59,5.0,200, Information Exposure,nan
CVE-2016-9128,9/10/2019 23:20,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9127,9/10/2019 23:20,28/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9126,9/10/2019 23:20,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9125,9/10/2019 23:20,28/03/2017 2:59,7.5,384, Session Fixation,nan
CVE-2016-9124,9/10/2019 23:20,28/03/2017 2:59,5.0,287, Improper Authentication,nan
CVE-2016-9037,9/10/2019 23:20,23/12/2016 22:59,7.8,125, Out-of-bounds Read,nan
CVE-2016-9036,9/10/2019 23:20,23/12/2016 22:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-8656,9/10/2019 23:20,22/05/2018 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8654,9/10/2019 23:20,1/08/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8653,9/10/2019 23:20,1/08/2018 14:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2016-8651,9/10/2019 23:20,1/08/2018 16:29,2.7,20, Improper Input Validation,nan
CVE-2016-8648,9/10/2019 23:20,1/08/2018 14:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2016-8647,9/10/2019 23:20,26/07/2018 14:29,4.0,20, Improper Input Validation,nan
CVE-2016-8641,9/10/2019 23:20,1/08/2018 14:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-8640,9/10/2019 23:20,1/08/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8639,9/10/2019 23:20,1/08/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8637,9/10/2019 23:20,1/08/2018 13:29,2.1,200, Information Exposure,nan
CVE-2016-8635,9/10/2019 23:20,1/08/2018 13:29,4.3,320, Key Management Errors,nan
CVE-2016-8634,9/10/2019 23:20,1/08/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8631,9/10/2019 23:20,31/07/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2016-8629,9/10/2019 23:20,12/03/2018 15:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8628,9/10/2019 23:20,31/07/2018 20:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-8627,9/10/2019 23:20,11/05/2018 13:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2016-8626,9/10/2019 23:20,31/07/2018 19:29,6.8,20, Improper Input Validation,nan
CVE-2016-8625,9/10/2019 23:20,1/08/2018 6:29,5.0,20, Improper Input Validation,nan
CVE-2016-8623,9/10/2019 23:20,1/08/2018 6:29,5.0,416, Use After Free,nan
CVE-2016-8620,9/10/2019 23:20,1/08/2018 6:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-8619,9/10/2019 23:20,1/08/2018 6:29,7.5,415, Double Free,nan
CVE-2016-8616,9/10/2019 23:20,1/08/2018 6:29,4.3,255, Credentials Management,nan
CVE-2016-8614,9/10/2019 23:20,31/07/2018 21:29,5.0,320, Key Management Errors,nan
CVE-2016-8613,9/10/2019 23:20,31/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8612,9/10/2019 23:20,9/03/2018 20:29,3.3,20, Improper Input Validation,nan
CVE-2016-8611,9/10/2019 23:20,31/07/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2016-8609,9/10/2019 23:20,1/08/2018 17:29,5.8,287, Improper Authentication,nan
CVE-2016-8608,9/10/2019 23:20,1/08/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8365,9/10/2019 23:19,3/04/2018 14:29,2.1,284, Improper Access Control,nan
CVE-2016-7078,9/10/2019 23:19,10/09/2018 15:29,4.0,200, Information Exposure,nan
CVE-2016-7077,9/10/2019 23:19,10/09/2018 15:29,4.0,200, Information Exposure,nan
CVE-2016-7075,9/10/2019 23:19,10/09/2018 14:29,6.8,295, Improper Certificate Validation,nan
CVE-2016-7074,9/10/2019 23:19,11/09/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2016-7073,9/10/2019 23:19,11/09/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2016-7072,9/10/2019 23:19,10/09/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-7071,9/10/2019 23:19,10/09/2018 15:29,9.0,285, Improper Authorization,nan
CVE-2016-7070,9/10/2019 23:19,11/09/2018 13:29,5.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7069,9/10/2019 23:19,11/09/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2016-7068,9/10/2019 23:19,11/09/2018 13:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-7067,9/10/2019 23:19,10/09/2018 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-7066,9/10/2019 23:19,11/09/2018 14:29,4.6,275, Permission Issues,nan
CVE-2016-7061,9/10/2019 23:19,10/09/2018 16:29,4.0,200, Information Exposure,nan
CVE-2016-7056,9/10/2019 23:19,10/09/2018 16:29,2.1,320, Key Management Errors,nan
CVE-2016-7047,9/10/2019 23:19,11/09/2018 13:29,4.0,200, Information Exposure,nan
CVE-2016-7043,9/10/2019 23:19,15/05/2019 16:29,5.0,255, Credentials Management,nan
CVE-2016-7041,9/10/2019 23:19,10/09/2018 16:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7035,9/10/2019 23:19,10/09/2018 16:29,7.2,285, Improper Authorization,nan
CVE-2016-6827,9/10/2019 23:19,26/09/2016 16:59,4.0,200, Information Exposure,nan
CVE-2016-6578,9/10/2019 23:19,13/07/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6567,9/10/2019 23:19,13/07/2018 20:29,10.0,20, Improper Input Validation,nan
CVE-2016-6566,9/10/2019 23:19,13/07/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6565,9/10/2019 23:19,13/07/2018 20:29,6.0,20, Improper Input Validation,nan
CVE-2016-6564,9/10/2019 23:19,13/07/2018 20:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6563,9/10/2019 23:19,13/07/2018 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6562,9/10/2019 23:19,13/07/2018 20:29,2.9,295, Improper Certificate Validation,nan
CVE-2016-6560,9/10/2019 23:19,31/03/2017 19:59,7.8,20, Improper Input Validation,nan
CVE-2016-6559,9/10/2019 23:19,13/07/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6558,9/10/2019 23:19,13/07/2018 20:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-6557,9/10/2019 23:19,13/07/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6554,9/10/2019 23:19,13/07/2018 20:29,10.0,255, Credentials Management,nan
CVE-2016-6553,9/10/2019 23:19,13/07/2018 20:29,10.0,255, Credentials Management,nan
CVE-2016-6552,9/10/2019 23:19,13/07/2018 20:29,10.0,255, Credentials Management,nan
CVE-2016-6551,9/10/2019 23:19,13/07/2018 20:29,10.0,255, Credentials Management,nan
CVE-2016-6549,9/10/2019 23:19,13/07/2018 20:29,3.3,287, Improper Authentication,nan
CVE-2016-6548,9/10/2019 23:19,13/07/2018 20:29,5.0,200, Information Exposure,nan
CVE-2016-6547,9/10/2019 23:19,13/07/2018 20:29,2.1,255, Credentials Management,nan
CVE-2016-6546,9/10/2019 23:19,13/07/2018 20:29,2.1,255, Credentials Management,nan
CVE-2016-6545,9/10/2019 23:19,13/07/2018 20:29,5.0,384, Session Fixation,nan
CVE-2016-6544,9/10/2019 23:19,13/07/2018 20:29,5.0,287, Improper Authentication,nan
CVE-2016-6543,9/10/2019 23:19,13/07/2018 20:29,4.3,284, Improper Access Control,nan
CVE-2016-6542,9/10/2019 23:19,13/07/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2016-6541,9/10/2019 23:19,6/07/2018 21:29,5.8,287, Improper Authentication,nan
CVE-2016-6540,9/10/2019 23:19,6/07/2018 21:29,3.3,200, Information Exposure,nan
CVE-2016-6539,9/10/2019 23:19,6/07/2018 21:29,3.3,200, Information Exposure,nan
CVE-2016-6538,9/10/2019 23:19,6/07/2018 21:29,3.3,255, Credentials Management,nan
CVE-2016-6343,9/10/2019 23:19,31/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6328,9/10/2019 23:19,31/10/2018 22:29,5.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5800,9/10/2019 23:18,21/03/2019 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5649,9/10/2019 23:18,24/07/2018 15:29,5.0,200, Information Exposure,nan
CVE-2016-5638,9/10/2019 23:18,24/07/2018 15:29,5.0,200, Information Exposure,nan
CVE-2016-5431,9/10/2019 23:18,7/08/2019 15:15,5.0,310, Cryptographic Issues,nan
CVE-2016-5402,9/10/2019 23:18,31/10/2018 13:29,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-4925,9/10/2019 23:18,13/10/2017 17:29,5.0,19, Data Processing Errors,nan
CVE-2016-4924,9/10/2019 23:18,13/10/2017 17:29,1.7,275, Permission Issues,nan
CVE-2016-4923,9/10/2019 23:18,13/10/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4922,9/10/2019 23:18,13/10/2017 17:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-4921,9/10/2019 23:18,13/10/2017 17:29,7.8,399, Resource Management Errors,nan
CVE-2016-2922,9/10/2019 23:17,13/08/2018 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-2246,9/10/2019 23:17,29/12/2016 9:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2125,9/10/2019 23:17,31/10/2018 20:29,3.3,20, Improper Input Validation,nan
CVE-2016-2123,9/10/2019 23:17,1/11/2018 13:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2121,9/10/2019 23:17,31/10/2018 13:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-2120,9/10/2019 23:17,1/11/2018 13:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2016-1587,9/10/2019 23:17,22/04/2019 16:29,5.0,284, Improper Access Control,nan
CVE-2016-1586,9/10/2019 23:17,22/04/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2016-1585,9/10/2019 23:17,22/04/2019 16:29,7.5,254, 7PK – Security Features,nan
CVE-2016-1584,9/10/2019 23:17,22/04/2019 16:29,5.0,399, Resource Management Errors,nan
CVE-2016-1579,9/10/2019 23:17,22/04/2019 16:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1573,9/10/2019 23:17,22/04/2019 16:29,4.6,416, Use After Free,nan
CVE-2016-1265,9/10/2019 23:17,13/10/2017 17:29,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1261,9/10/2019 23:17,13/10/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10698,9/10/2019 23:17,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10697,9/10/2019 23:17,4/06/2018 19:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10696,9/10/2019 23:17,4/06/2018 19:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10695,9/10/2019 23:17,4/06/2018 19:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10694,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10693,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10691,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10690,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10689,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10688,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10687,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10686,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10685,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10684,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10683,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10682,9/10/2019 23:17,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10681,9/10/2019 23:17,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10680,9/10/2019 23:17,29/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10679,9/10/2019 23:17,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10678,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10677,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10676,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10675,9/10/2019 23:17,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10674,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10673,9/10/2019 23:16,4/06/2018 16:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10672,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10671,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10670,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10669,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10668,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10667,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10666,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10665,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10664,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10663,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10662,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10661,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10660,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10659,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10658,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10657,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10656,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10655,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10654,9/10/2019 23:16,4/06/2018 16:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10653,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10652,9/10/2019 23:16,4/06/2018 16:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10651,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10650,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10649,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10648,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10647,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10646,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10645,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10644,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10643,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10642,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10641,9/10/2019 23:16,4/06/2018 16:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10640,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10639,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10638,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10637,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10636,9/10/2019 23:16,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10635,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10634,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10633,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10632,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10631,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10630,9/10/2019 23:16,1/06/2018 18:29,4.3,310, Cryptographic Issues,nan
CVE-2016-10629,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10628,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10627,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10626,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10625,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10624,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10623,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10622,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10621,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10620,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10619,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10618,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10617,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10616,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10615,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10614,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10613,9/10/2019 23:16,1/06/2018 18:29,4.3,310, Cryptographic Issues,nan
CVE-2016-10612,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10611,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10610,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10609,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10608,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10607,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10606,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10605,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10604,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10603,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10602,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10601,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10600,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10599,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10598,9/10/2019 23:16,1/06/2018 18:29,8.5,310, Cryptographic Issues,nan
CVE-2016-10597,9/10/2019 23:16,1/06/2018 18:29,4.3,310, Cryptographic Issues,nan
CVE-2016-10596,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10595,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10594,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10592,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10591,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10590,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10589,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10588,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10587,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10586,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10585,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10584,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10582,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10581,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10580,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10579,9/10/2019 23:16,1/06/2018 18:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10578,9/10/2019 23:16,29/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10577,9/10/2019 23:16,29/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10576,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10575,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10574,9/10/2019 23:16,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10573,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10572,9/10/2019 23:16,31/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10571,9/10/2019 23:16,31/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10570,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10569,9/10/2019 23:16,31/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10568,9/10/2019 23:16,29/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10567,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10566,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10565,9/10/2019 23:16,31/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10564,9/10/2019 23:16,31/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10563,9/10/2019 23:16,31/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10562,9/10/2019 23:16,31/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10561,9/10/2019 23:16,31/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10560,9/10/2019 23:16,31/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10559,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10558,9/10/2019 23:16,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10557,9/10/2019 23:16,31/05/2018 20:29,6.8,310, Cryptographic Issues,nan
CVE-2016-10556,9/10/2019 23:16,29/05/2018 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10555,9/10/2019 23:16,31/05/2018 20:29,4.0,310, Cryptographic Issues,nan
CVE-2016-10554,9/10/2019 23:16,31/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10553,9/10/2019 23:16,31/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10552,9/10/2019 23:16,31/05/2018 20:29,5.8,254, 7PK – Security Features,nan
CVE-2016-10551,9/10/2019 23:16,29/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10550,9/10/2019 23:16,31/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10549,9/10/2019 23:16,31/05/2018 20:29,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10548,9/10/2019 23:16,31/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10547,9/10/2019 23:16,31/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10546,9/10/2019 23:16,31/05/2018 20:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10544,9/10/2019 23:16,31/05/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2016-10543,9/10/2019 23:16,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-10542,9/10/2019 23:16,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-10541,9/10/2019 23:16,31/05/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10540,9/10/2019 23:16,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-10539,9/10/2019 23:16,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-10538,9/10/2019 23:16,31/05/2018 20:29,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10537,9/10/2019 23:16,31/05/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10536,9/10/2019 23:16,31/05/2018 20:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-10535,9/10/2019 23:16,31/05/2018 20:29,4.3,310, Cryptographic Issues,nan
CVE-2016-10534,9/10/2019 23:16,31/05/2018 20:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-10533,9/10/2019 23:16,31/05/2018 20:29,4.0,200, Information Exposure,nan
CVE-2016-10531,9/10/2019 23:16,31/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10530,9/10/2019 23:16,31/05/2018 20:29,4.3,310, Cryptographic Issues,nan
CVE-2016-10529,9/10/2019 23:16,31/05/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10528,9/10/2019 23:16,31/05/2018 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10527,9/10/2019 23:16,31/05/2018 20:29,5.0,399, Resource Management Errors,nan
CVE-2016-10526,9/10/2019 23:16,31/05/2018 20:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-10524,9/10/2019 23:16,31/05/2018 20:29,4.9,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10523,9/10/2019 23:16,31/05/2018 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10522,9/10/2019 23:16,5/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10521,9/10/2019 23:16,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-10520,9/10/2019 23:16,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-10519,9/10/2019 23:16,31/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2016-10518,9/10/2019 23:16,31/05/2018 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10366,9/10/2019 23:16,16/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10365,9/10/2019 23:16,16/06/2017 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10364,9/10/2019 23:16,16/06/2017 21:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10363,9/10/2019 23:16,16/06/2017 21:29,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2016-10362,9/10/2019 23:16,16/06/2017 21:29,4.0,200, Information Exposure,nan
CVE-2016-10331,9/10/2019 23:16,12/05/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10330,9/10/2019 23:16,12/05/2017 20:29,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10329,9/10/2019 23:16,12/05/2017 20:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0750,9/10/2019 23:16,11/09/2018 13:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2016-0715,9/10/2019 23:16,11/09/2018 17:29,4.3,200, Information Exposure,nan
CVE-2016-0373,9/10/2019 23:16,30/08/2018 16:29,4.0,285, Improper Authorization,nan
CVE-2016-0234,9/10/2019 23:16,30/08/2018 16:29,2.1,613, Insufficient Session Expiration,nan
CVE-2016-0205,9/10/2019 23:16,30/08/2018 16:29,2.1,200, Information Exposure,nan
CVE-2015-9284,9/10/2019 23:15,26/04/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9266,9/10/2019 23:15,5/09/2018 20:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9244,9/10/2019 23:15,29/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9243,9/10/2019 23:15,29/05/2018 20:29,4.3,254, 7PK – Security Features,nan
CVE-2015-9242,9/10/2019 23:15,29/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2015-9241,9/10/2019 23:15,29/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2015-9239,9/10/2019 23:15,31/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2015-9238,9/10/2019 23:15,31/05/2018 20:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2015-9236,9/10/2019 23:15,31/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2015-9235,9/10/2019 23:15,29/05/2018 20:29,7.5,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2015-9105,9/10/2019 23:15,30/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9104,9/10/2019 23:15,30/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9103,9/10/2019 23:15,30/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9102,9/10/2019 23:15,30/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9056,9/10/2019 23:15,16/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7882,9/10/2019 23:15,19/07/2019 16:15,6.8,287, Improper Authentication,nan
CVE-2015-7559,9/10/2019 23:15,1/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2015-6462,9/10/2019 23:14,21/03/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6461,9/10/2019 23:14,21/03/2019 19:29,5.5,20, Improper Input Validation,nan
CVE-2015-6458,9/10/2019 23:14,21/03/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6457,9/10/2019 23:14,21/03/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5297,9/10/2019 23:14,31/07/2019 23:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2015-5123,9/10/2019 23:14,14/07/2015 10:59,10.0,416, Use After Free,nan
CVE-2015-4010,9/10/2019 23:14,9/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4000,9/10/2019 23:14,21/05/2015 0:59,4.3,310, Cryptographic Issues,nan
CVE-2015-3956,9/10/2019 23:14,25/03/2019 18:29,10.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-3954,9/10/2019 23:14,25/03/2019 17:29,10.0,285, Improper Authorization,nan
CVE-2015-3953,9/10/2019 23:14,25/03/2019 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-3952,9/10/2019 23:14,25/03/2019 16:29,5.0,200, Information Exposure,nan
CVE-2015-2125,9/10/2019 23:13,7/06/2015 18:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-2110,9/10/2019 23:13,25/05/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2107,9/10/2019 23:13,14/03/2015 1:59,6.8,284, Improper Access Control,nan
CVE-2015-1343,9/10/2019 23:13,22/04/2019 16:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-1340,9/10/2019 23:13,22/04/2019 16:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1327,9/10/2019 23:13,22/04/2019 16:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1326,9/10/2019 23:13,22/04/2019 16:29,9.3,20, Improper Input Validation,nan
CVE-2015-1320,9/10/2019 23:13,22/04/2019 16:29,5.0,255, Credentials Management,nan
CVE-2015-1316,9/10/2019 23:13,22/04/2019 16:29,5.0,320, Key Management Errors,nan
CVE-2015-1014,9/10/2019 23:13,25/03/2019 19:29,4.4,427, Uncontrolled Search Path Element,nan
CVE-2015-1012,9/10/2019 23:13,25/03/2019 19:29,5.0,200, Information Exposure,nan
CVE-2015-1007,9/10/2019 23:13,25/03/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1006,9/10/2019 23:13,10/05/2019 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0796,9/10/2019 23:12,2/03/2018 20:29,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-9709,9/10/2019 23:12,30/03/2015 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9189,9/10/2019 23:12,25/03/2019 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9187,9/10/2019 23:12,25/03/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9186,9/10/2019 23:12,8/04/2019 16:29,7.5,20, Improper Input Validation,nan
CVE-2014-8184,9/10/2019 23:12,2/08/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8183,9/10/2019 23:12,1/08/2019 14:15,6.5,284, Improper Access Control,nan
CVE-2014-7883,9/10/2019 23:11,15/02/2015 20:59,5.0,200, Information Exposure,nan
CVE-2014-7881,9/10/2019 23:11,15/01/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7879,9/10/2019 23:11,10/12/2014 21:59,8.5,287, Improper Authentication,nan
CVE-2014-6321,9/10/2019 23:11,11/11/2014 22:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6271,9/10/2019 23:11,24/09/2014 18:48,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-5436,9/10/2019 23:11,8/04/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5435,9/10/2019 23:11,8/04/2019 16:29,7.5,787, Out-of-bounds Write,nan
CVE-2014-5434,9/10/2019 23:11,26/03/2019 15:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2014-5433,9/10/2019 23:11,26/03/2019 16:29,7.5,255, Credentials Management,nan
CVE-2014-5432,9/10/2019 23:11,26/03/2019 16:29,7.5,287, Improper Authentication,nan
CVE-2014-5431,9/10/2019 23:11,26/03/2019 16:29,4.6,798, Use of Hard-coded Credentials,nan
CVE-2014-5401,9/10/2019 23:11,26/03/2019 17:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4661,9/10/2019 23:10,10/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3566,9/10/2019 23:10,15/10/2014 0:55,4.3,310, Cryptographic Issues,nan
CVE-2014-2647,9/10/2019 23:10,19/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2646,9/10/2019 23:10,10/10/2014 1:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-2645,9/10/2019 23:10,5/10/2014 1:55,4.3,20, Improper Input Validation,nan
CVE-2014-2644,9/10/2019 23:10,6/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2642,9/10/2019 23:10,2/10/2014 0:55,4.3,20, Improper Input Validation,nan
CVE-2014-2641,9/10/2019 23:10,2/10/2014 0:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2640,9/10/2019 23:10,2/10/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2639,9/10/2019 23:10,28/09/2014 19:55,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2611,9/10/2019 23:10,19/06/2014 10:50,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1428,9/10/2019 23:09,22/04/2019 16:29,5.0,254, 7PK – Security Features,nan
CVE-2014-1427,9/10/2019 23:09,22/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1426,9/10/2019 23:09,22/04/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2014-10068,9/10/2019 23:09,29/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-10066,9/10/2019 23:09,31/05/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-10065,9/10/2019 23:09,31/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10064,9/10/2019 23:09,31/05/2018 20:29,5.0,399, Resource Management Errors,nan
CVE-2014-0594,9/10/2019 23:09,8/06/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0593,9/10/2019 23:09,8/06/2018 17:29,10.0,20, Improper Input Validation,nan
CVE-2014-0224,9/10/2019 23:09,5/06/2014 21:55,5.8,310, Cryptographic Issues,nan
CVE-2014-0160,9/10/2019 23:09,7/04/2014 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6220,9/10/2019 23:08,10/05/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6202,9/10/2019 23:08,24/02/2014 4:48,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6188,9/10/2019 23:08,14/03/2014 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4845,9/10/2019 23:08,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4842,9/10/2019 23:08,18/11/2013 3:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4833,9/10/2019 23:08,16/10/2013 10:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4832,9/10/2019 23:08,16/10/2013 10:52,4.0,200, Information Exposure,nan
CVE-2013-4830,9/10/2019 23:08,16/10/2013 10:52,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4829,9/10/2019 23:08,4/10/2013 10:44,1.5,200, Information Exposure,nan
CVE-2013-4828,9/10/2019 23:08,4/10/2013 10:44,4.3,310, Cryptographic Issues,nan
CVE-2013-4827,9/10/2019 23:08,13/10/2013 10:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4815,9/10/2019 23:08,20/09/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4814,9/10/2019 23:08,23/09/2013 10:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4548,9/10/2019 23:08,8/11/2013 15:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3703,9/10/2019 23:08,8/06/2018 17:29,4.0,275, Permission Issues,nan
CVE-2013-2364,9/10/2019 23:07,22/07/2013 11:19,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2361,9/10/2019 23:07,22/07/2013 11:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2355,9/10/2019 23:07,22/07/2013 11:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2352,9/10/2019 23:07,10/07/2013 22:55,9.4,255, Credentials Management,nan
CVE-2013-2342,9/10/2019 23:07,30/06/2013 19:27,7.7,255, Credentials Management,nan
CVE-2013-2337,9/10/2019 23:07,14/06/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2323,9/10/2019 23:07,28/06/2013 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2322,9/10/2019 23:07,28/06/2013 14:55,3.5,200, Information Exposure,nan
CVE-2013-2321,9/10/2019 23:07,2/05/2013 3:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0169,9/10/2019 23:06,8/02/2013 19:55,2.6,310, Cryptographic Issues,nan
CVE-2012-5222,9/10/2019 23:06,2/05/2013 3:31,5.0,200, Information Exposure,nan
CVE-2012-5219,9/10/2019 23:06,28/04/2013 3:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5218,9/10/2019 23:06,24/04/2013 10:28,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-5217,9/10/2019 23:06,22/07/2013 11:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5216,9/10/2019 23:06,28/03/2013 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5200,9/10/2019 23:06,9/03/2013 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3279,9/10/2019 23:05,6/02/2013 12:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3278,9/10/2019 23:05,25/01/2013 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3276,9/10/2019 23:05,13/12/2012 11:53,2.1,16, Configuration,nan
CVE-2012-3274,9/10/2019 23:05,6/12/2012 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3251,9/10/2019 23:05,16/08/2012 10:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3249,9/10/2019 23:05,16/08/2012 10:38,4.0,200, Information Exposure,nan
CVE-2012-2022,9/10/2019 23:04,7/08/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2021,9/10/2019 23:04,16/07/2012 20:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0433,9/10/2019 23:04,8/06/2018 17:29,2.1,200, Information Exposure,nan
CVE-2011-4791,9/10/2019 23:03,3/02/2012 4:05,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4787,9/10/2019 23:03,12/01/2012 19:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4786,9/10/2019 23:03,12/01/2012 19:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4190,9/10/2019 23:03,8/06/2018 17:29,3.5,310, Cryptographic Issues,nan
CVE-2011-4183,9/10/2019 23:03,13/06/2018 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2011-4182,9/10/2019 23:03,12/06/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2011-4181,9/10/2019 23:03,11/06/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2011-4168,9/10/2019 23:03,27/12/2011 4:01,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4167,9/10/2019 23:03,27/12/2011 4:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4166,9/10/2019 23:03,27/12/2011 4:01,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3178,9/10/2019 23:03,20/03/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3172,9/10/2019 23:03,8/06/2018 13:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3151,9/10/2019 23:03,22/04/2019 16:29,5.8,693, Protection Mechanism Failure,nan
CVE-2011-3147,9/10/2019 23:03,22/04/2019 16:29,5.0,200, Information Exposure,nan
CVE-2011-3145,9/10/2019 23:03,22/04/2019 16:29,7.5,254, 7PK – Security Features,nan
CVE-2011-2410,9/10/2019 23:03,19/08/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2409,9/10/2019 23:03,11/08/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2408,9/10/2019 23:03,11/08/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2405,9/10/2019 23:03,11/08/2011 22:55,7.8,20, Improper Input Validation,nan
CVE-2011-1910,9/10/2019 23:02,31/05/2011 20:55,5.0,189, Numeric Errors,nan
CVE-2011-1854,9/10/2019 23:02,13/05/2011 17:05,10.0,399, Resource Management Errors,nan
CVE-2011-1853,9/10/2019 23:02,13/05/2011 17:05,10.0,20, Improper Input Validation,nan
CVE-2011-1851,9/10/2019 23:02,13/05/2011 17:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1850,9/10/2019 23:02,13/05/2011 17:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1849,9/10/2019 23:02,13/05/2011 17:05,10.0,20, Improper Input Validation,nan
CVE-2011-1830,9/10/2019 23:02,22/04/2019 16:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1515,9/10/2019 23:02,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-0467,9/10/2019 23:02,7/06/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4113,9/10/2019 23:01,22/12/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3637,9/10/2019 23:01,7/11/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3636,9/10/2019 23:01,7/11/2010 22:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-3283,9/10/2019 23:01,24/09/2010 19:00,4.3,20, Improper Input Validation,nan
CVE-2010-3012,9/10/2019 23:01,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3011,9/10/2019 23:01,17/09/2010 18:00,5.0,20, Improper Input Validation,nan
CVE-2010-3003,9/10/2019 23:01,10/09/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1972,9/10/2019 23:00,22/07/2010 5:43,9.0,16, Configuration,nan
CVE-2010-1971,9/10/2019 23:00,15/07/2010 12:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1969,9/10/2019 23:00,22/07/2010 5:43,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1968,9/10/2019 23:00,15/07/2010 12:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1963,9/10/2019 23:00,7/06/2010 17:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1037,9/10/2019 23:00,28/04/2010 22:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1036,9/10/2019 23:00,28/04/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0452,9/10/2019 23:00,29/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0449,9/10/2019 23:00,31/03/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4000,9/10/2019 22:59,20/01/2010 22:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0783,9/10/2019 22:58,5/06/2009 16:00,4.6,200, Information Exposure,nan
CVE-2009-0208,9/10/2019 22:57,26/02/2009 23:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5359,9/10/2019 22:56,5/12/2008 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5357,9/10/2019 22:56,5/12/2008 11:30,9.3,189, Numeric Errors,nan
CVE-2008-4562,9/10/2019 22:56,8/02/2009 21:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4560,9/10/2019 22:56,8/02/2009 21:30,7.8,200, Information Exposure,nan
CVE-2008-4559,9/10/2019 22:56,8/02/2009 21:30,10.0,20, Improper Input Validation,nan
CVE-2008-4420,9/10/2019 22:56,13/04/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3542,9/10/2019 22:56,2/10/2008 18:18,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-3473,9/10/2019 22:56,15/10/2008 0:12,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-2829,9/10/2019 22:55,23/06/2008 20:41,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2291,9/10/2019 22:55,18/05/2008 14:20,7.5,255, Credentials Management,nan
CVE-2008-2252,9/10/2019 22:55,15/10/2008 0:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1447,9/10/2019 22:55,8/07/2008 23:41,5.0,331, Insufficient Entropy,nan
CVE-2008-0213,9/10/2019 22:54,7/02/2008 22:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4841,9/10/2019 22:53,12/09/2007 20:17,9.3,20, Improper Input Validation,nan
CVE-2007-4772,9/10/2019 22:53,9/01/2008 21:46,4.0,399, Resource Management Errors,nan
CVE-2007-3897,9/10/2019 22:53,9/10/2007 22:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3378,9/10/2019 22:53,29/06/2007 18:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-3285,9/10/2019 22:53,20/06/2007 19:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-2246,9/10/2019 22:52,25/04/2007 16:19,7.8,399, Resource Management Errors,nan
CVE-2007-1701,9/10/2019 22:52,27/03/2007 1:19,6.8,502, Deserialization of Untrusted Data,nan
CVE-2007-1562,9/10/2019 22:52,21/03/2007 19:19,6.8,200, Information Exposure,nan
CVE-2007-0994,9/10/2019 22:52,6/03/2007 0:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0988,9/10/2019 22:52,20/02/2007 17:28,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0780,9/10/2019 22:52,26/02/2007 20:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0778,9/10/2019 22:52,26/02/2007 20:28,5.4,200, Information Exposure,nan
CVE-2007-0777,9/10/2019 22:52,26/02/2007 19:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0009,9/10/2019 22:51,26/02/2007 20:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6500,9/10/2019 22:51,20/12/2006 1:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16585,9/10/2019 21:15,6/09/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-17385,9/10/2019 21:00,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17384,9/10/2019 21:00,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4512,9/10/2019 20:55,9/10/2019 16:15,4.0,209, Information Exposure Through an Error Message,nan
CVE-2019-17271,9/10/2019 20:48,8/10/2019 13:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17378,9/10/2019 20:45,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17379,9/10/2019 20:44,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17377,9/10/2019 20:44,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17376,9/10/2019 20:42,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16416,9/10/2019 20:40,8/10/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16417,9/10/2019 20:37,8/10/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17294,9/10/2019 20:24,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-21021,9/10/2019 20:22,8/10/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-21022,9/10/2019 20:16,8/10/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6656,9/10/2019 20:15,25/09/2019 20:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-6655,9/10/2019 20:15,25/09/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-6653,9/10/2019 20:15,25/09/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6652,9/10/2019 20:15,25/09/2019 18:15,6.4,287, Improper Authentication,nan
CVE-2019-6651,9/10/2019 20:15,25/09/2019 18:15,5.0,203, Information Exposure Through Discrepancy,nan
CVE-2019-6650,9/10/2019 20:15,20/09/2019 20:15,5.8,200, Information Exposure,nan
CVE-2019-6648,9/10/2019 20:15,4/09/2019 16:15,1.9,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-6645,9/10/2019 20:15,4/09/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-6643,9/10/2019 20:15,4/09/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-6642,9/10/2019 20:15,1/07/2019 21:15,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-6641,9/10/2019 20:15,3/07/2019 19:15,4.0,20, Improper Input Validation,nan
CVE-2019-6629,9/10/2019 20:15,3/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-6621,9/10/2019 20:15,2/07/2019 21:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1010023,9/10/2019 20:15,15/07/2019 4:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-5547,9/10/2019 20:15,17/08/2018 12:29,7.2,862, Missing Authorization,nan
CVE-2017-15121,9/10/2019 20:15,7/12/2017 2:29,4.9,20, Improper Input Validation,nan
CVE-2019-17368,9/10/2019 20:05,9/10/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17380,9/10/2019 19:55,9/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16931,9/10/2019 19:50,3/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17316,9/10/2019 19:32,7/10/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2019-17315,9/10/2019 19:32,7/10/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2019-17317,9/10/2019 19:31,7/10/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2019-17298,9/10/2019 19:30,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17299,9/10/2019 19:20,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17300,9/10/2019 19:19,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17301,9/10/2019 19:18,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17232,9/10/2019 19:15,7/10/2019 23:15,5.0,20, Improper Input Validation,nan
CVE-2019-1020018,9/10/2019 19:15,29/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-1020017,9/10/2019 19:15,29/07/2019 13:15,5.0,284, Improper Access Control,nan
CVE-2019-17233,9/10/2019 18:55,7/10/2019 23:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-17319,9/10/2019 18:21,7/10/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17303,9/10/2019 18:10,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17302,9/10/2019 18:10,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17304,9/10/2019 18:06,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17306,9/10/2019 18:04,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17305,9/10/2019 18:04,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17307,9/10/2019 17:54,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17269,9/10/2019 17:54,7/10/2019 0:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-17308,9/10/2019 17:50,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17309,9/10/2019 17:48,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-16263,9/10/2019 17:45,7/10/2019 12:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-16407,9/10/2019 17:37,2/10/2019 19:15,4.4,426, Untrusted Search Path,nan
CVE-2019-17310,9/10/2019 17:35,7/10/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-17318,9/10/2019 17:33,7/10/2019 15:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17311,9/10/2019 17:30,7/10/2019 16:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17297,9/10/2019 17:21,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17296,9/10/2019 17:14,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17295,9/10/2019 17:07,7/10/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-17312,9/10/2019 17:06,7/10/2019 16:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17314,9/10/2019 16:50,7/10/2019 16:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16935,9/10/2019 16:15,28/09/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17313,9/10/2019 14:03,7/10/2019 16:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15766,9/10/2019 13:43,3/10/2019 21:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-16198,9/10/2019 13:42,3/10/2019 21:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17183,9/10/2019 13:24,4/10/2019 20:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-15499,9/10/2019 12:51,23/08/2019 4:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4342,9/10/2019 8:15,17/09/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4183,9/10/2019 8:15,17/09/2019 19:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-15635,9/10/2019 8:15,23/09/2019 17:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2015-9450,9/10/2019 0:37,7/10/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15750,9/10/2019 0:34,7/10/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1592,9/10/2019 0:20,19/02/2015 15:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15747,9/10/2019 0:18,7/10/2019 12:15,6.5,269, Improper Privilege Management,nan
CVE-2019-15746,9/10/2019 0:18,7/10/2019 12:15,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15748,9/10/2019 0:16,7/10/2019 12:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15749,9/10/2019 0:14,7/10/2019 12:15,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-15751,9/10/2019 0:10,7/10/2019 12:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13025,8/10/2019 23:52,2/10/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2016-10764,8/10/2019 21:15,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9452,8/10/2019 20:29,7/10/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9451,8/10/2019 20:28,7/10/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13629,8/10/2019 20:24,3/10/2019 14:15,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-5031,8/10/2019 20:16,2/10/2019 16:15,6.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-17075,8/10/2019 20:10,1/10/2019 21:15,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12156,8/10/2019 20:01,2/10/2019 19:15,5.0,209, Information Exposure Through an Error Message,nan
CVE-2019-17214,8/10/2019 19:56,6/10/2019 14:15,5.0,863, Incorrect Authorization,nan
CVE-2019-16942,8/10/2019 19:15,1/10/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2016-1144,8/10/2019 18:40,30/01/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12157,8/10/2019 18:34,2/10/2019 19:15,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-17080,8/10/2019 18:23,2/10/2019 13:15,6.8,502, Deserialization of Untrusted Data,nan
CVE-2019-17177,8/10/2019 18:19,4/10/2019 17:15,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16760,8/10/2019 18:15,30/09/2019 22:15,5.0,494, Download of Code Without Integrity Check,nan
CVE-2019-13335,8/10/2019 18:14,2/10/2019 12:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-17067,8/10/2019 18:04,1/10/2019 17:15,7.5,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2019-0231,8/10/2019 17:47,1/10/2019 20:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-15041,8/10/2019 17:34,1/10/2019 20:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-17063,8/10/2019 17:24,1/10/2019 16:15,4.3,20, Improper Input Validation,nan
CVE-2019-16508,8/10/2019 17:03,1/10/2019 12:15,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-18379,8/10/2019 16:47,7/10/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10750,8/10/2019 16:33,23/08/2019 17:15,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2018-21010,8/10/2019 16:15,5/09/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15035,8/10/2019 16:03,1/10/2019 20:15,4.0,200, Information Exposure,nan
CVE-2019-17175,8/10/2019 15:59,4/10/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11656,8/10/2019 15:51,4/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14957,8/10/2019 15:26,1/10/2019 16:15,5.0,922, Insecure Storage of Sensitive Information,nan
CVE-2019-17197,8/10/2019 15:25,5/10/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15038,8/10/2019 15:24,1/10/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-12737,8/10/2019 15:20,2/10/2019 19:15,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2019-17213,8/10/2019 15:07,6/10/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17069,8/10/2019 15:06,1/10/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-17064,8/10/2019 14:53,1/10/2019 16:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-17068,8/10/2019 14:51,1/10/2019 17:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-17121,8/10/2019 14:49,4/10/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17225,8/10/2019 14:10,6/10/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14958,8/10/2019 14:07,2/10/2019 19:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-13144,8/10/2019 14:07,5/07/2019 13:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-17226,8/10/2019 14:06,6/10/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16332,8/10/2019 13:54,15/09/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14955,8/10/2019 13:53,1/10/2019 16:15,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-14960,8/10/2019 13:45,1/10/2019 16:15,4.6,426, Untrusted Search Path,nan
CVE-2019-14954,8/10/2019 13:36,1/10/2019 14:15,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-18102,8/10/2019 13:27,17/04/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17203,8/10/2019 13:13,5/10/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17204,8/10/2019 13:11,5/10/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-17205,8/10/2019 13:08,5/10/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16992,8/10/2019 12:43,30/09/2019 0:15,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-13709,8/10/2019 12:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000547,8/10/2019 12:27,26/06/2018 16:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16884,8/10/2019 3:15,25/09/2019 18:15,5.0,863, Incorrect Authorization,nan
CVE-2019-14745,8/10/2019 3:15,7/08/2019 15:15,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-16276,8/10/2019 2:15,30/09/2019 19:15,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2018-19541,7/10/2019 21:15,26/11/2018 3:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19540,7/10/2019 21:15,26/11/2018 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10238,7/10/2019 21:15,20/04/2018 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18552,7/10/2019 21:15,19/08/2019 2:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-15042,7/10/2019 20:12,1/10/2019 17:15,5.0,295, Improper Certificate Validation,nan
CVE-2016-10907,7/10/2019 19:15,19/08/2019 2:15,4.6,787, Out-of-bounds Write,nan
CVE-2018-7274,7/10/2019 18:31,21/02/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8452,7/10/2019 17:15,22/04/2019 22:29,4.6,275, Permission Issues,nan
CVE-2019-4013,7/10/2019 17:15,10/04/2019 15:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2009-2446,7/10/2019 16:42,13/07/2009 17:30,8.5,134, Use of Externally-Controlled Format String,nan
CVE-2005-0709,7/10/2019 16:42,2/05/2005 4:00,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1480,7/10/2019 16:42,31/12/2003 5:00,4.3,310, Cryptographic Issues,nan
CVE-2004-0836,7/10/2019 16:40,3/11/2004 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8292,7/10/2019 16:20,1/10/2019 20:15,6.4,306, Missing Authentication for Critical Function,nan
CVE-2019-17040,7/10/2019 16:15,30/09/2019 14:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-10071,7/10/2019 16:15,16/09/2019 18:15,6.8,20, Improper Input Validation,nan
CVE-2019-0207,7/10/2019 16:15,16/09/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0195,7/10/2019 16:15,16/09/2019 16:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-8291,7/10/2019 16:11,1/10/2019 20:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-17074,7/10/2019 16:03,1/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9377,7/10/2019 16:02,27/09/2019 19:15,2.1,862, Missing Authorization,nan
CVE-2018-13699,7/10/2019 15:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13670,7/10/2019 15:18,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-9312,7/10/2019 15:02,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9280,7/10/2019 15:01,27/09/2019 19:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9263,7/10/2019 14:54,27/09/2019 19:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9356,7/10/2019 14:33,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-9246,7/10/2019 14:30,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-10892,7/10/2019 14:15,6/09/2019 20:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13169,7/10/2019 14:14,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13170,7/10/2019 14:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13181,7/10/2019 14:10,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13176,7/10/2019 14:05,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13177,7/10/2019 14:04,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13179,7/10/2019 14:03,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13180,7/10/2019 14:02,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13194,7/10/2019 13:58,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13183,7/10/2019 13:57,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13195,7/10/2019 13:37,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13686,7/10/2019 13:36,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-13574,7/10/2019 13:15,12/07/2019 3:15,6.8,20, Improper Input Validation,nan
CVE-2019-16993,7/10/2019 10:15,30/09/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14379,6/10/2019 23:15,29/07/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2019-9853,6/10/2019 14:15,27/09/2019 16:15,6.8,116, Improper Encoding or Escaping of Output,nan
CVE-2018-10233,6/10/2019 5:15,23/04/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19976,6/10/2019 3:15,17/12/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-19975,6/10/2019 3:15,17/12/2018 19:29,7.1,125, Out-of-bounds Read,nan
CVE-2018-19974,6/10/2019 3:15,17/12/2018 19:29,4.3,200, Information Exposure,nan
CVE-2017-18635,5/10/2019 18:15,25/09/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11753,5/10/2019 6:15,27/09/2019 18:15,4.6,354, Improper Validation of Integrity Check Value,nan
CVE-2019-11751,5/10/2019 6:15,27/09/2019 18:15,6.8,20, Improper Input Validation,nan
CVE-2019-11750,5/10/2019 6:15,27/09/2019 18:15,4.3,704, Incorrect Type Conversion or Cast,nan
CVE-2019-11749,5/10/2019 6:15,27/09/2019 18:15,4.3,200, Information Exposure,nan
CVE-2019-11748,5/10/2019 6:15,27/09/2019 18:15,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-11747,5/10/2019 6:15,27/09/2019 18:15,4.3,665, Improper Initialization,nan
CVE-2019-11738,5/10/2019 6:15,27/09/2019 18:15,6.8,276, Incorrect Default Permissions,nan
CVE-2019-11736,5/10/2019 6:15,27/09/2019 18:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-11735,5/10/2019 6:15,27/09/2019 18:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-11733,5/10/2019 6:15,27/09/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-16941,4/10/2019 21:15,28/09/2019 16:15,6.8,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-14959,4/10/2019 20:00,2/10/2019 19:15,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2019-8290,4/10/2019 19:19,1/10/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13467,4/10/2019 19:16,30/09/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-17049,4/10/2019 19:04,30/09/2019 19:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14454,4/10/2019 18:50,2/10/2019 12:15,7.5,269, Improper Privilege Management,nan
CVE-2019-17050,4/10/2019 18:45,30/09/2019 19:15,6.5,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2019-17051,4/10/2019 18:38,30/09/2019 20:15,6.8,20, Improper Input Validation,nan
CVE-2019-9268,4/10/2019 18:34,27/09/2019 19:15,2.1,416, Use After Free,nan
CVE-2019-11755,4/10/2019 18:15,27/09/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-11752,4/10/2019 18:15,27/09/2019 18:15,9.3,416, Use After Free,nan
CVE-2019-11746,4/10/2019 18:15,27/09/2019 18:15,6.8,416, Use After Free,nan
CVE-2019-11744,4/10/2019 18:15,27/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11743,4/10/2019 18:15,27/09/2019 18:15,4.3,200, Information Exposure,nan
CVE-2019-11742,4/10/2019 18:15,27/09/2019 18:15,4.3,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2019-11740,4/10/2019 18:15,27/09/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11739,4/10/2019 18:15,27/09/2019 18:15,4.3,200, Information Exposure,nan
CVE-2019-10433,4/10/2019 18:15,1/10/2019 14:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-8289,4/10/2019 18:12,1/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8288,4/10/2019 18:10,1/10/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15940,4/10/2019 18:04,1/10/2019 13:15,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-8769,4/10/2019 17:56,18/05/2017 6:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2019-12736,4/10/2019 17:26,2/10/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-17073,4/10/2019 17:12,1/10/2019 20:15,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16932,4/10/2019 16:52,30/09/2019 16:15,5.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-11012,4/10/2019 16:40,12/05/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11011,4/10/2019 16:40,12/05/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16684,4/10/2019 16:33,30/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16683,4/10/2019 16:31,30/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10722,4/10/2019 16:24,2/05/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9350,4/10/2019 16:13,27/09/2019 19:15,4.6,416, Use After Free,nan
CVE-2019-9306,4/10/2019 16:11,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-16676,4/10/2019 16:02,30/09/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2019-16930,4/10/2019 15:58,28/09/2019 22:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-9376,4/10/2019 15:44,27/09/2019 19:15,4.9,20, Improper Input Validation,nan
CVE-2019-17046,4/10/2019 15:42,30/09/2019 15:15,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9313,4/10/2019 15:20,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-11868,4/10/2019 15:15,29/07/2019 17:15,4.6,254, 7PK – Security Features,nan
CVE-2019-9233,4/10/2019 15:12,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9374,4/10/2019 15:04,27/09/2019 19:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9440,4/10/2019 14:51,27/09/2019 19:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-9287,4/10/2019 14:50,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9236,4/10/2019 14:45,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-16414,4/10/2019 14:43,30/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16996,4/10/2019 14:39,30/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9251,4/10/2019 14:38,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-16997,4/10/2019 14:38,30/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9238,4/10/2019 14:31,27/09/2019 19:15,6.9,787, Out-of-bounds Write,nan
CVE-2019-9242,4/10/2019 14:18,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-2191,4/10/2019 14:06,27/09/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-2189,4/10/2019 14:03,27/09/2019 19:15,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-13957,4/10/2019 14:03,2/10/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2188,4/10/2019 14:00,27/09/2019 19:15,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-16924,4/10/2019 13:58,27/09/2019 18:15,3.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-11754,4/10/2019 13:51,27/09/2019 18:15,4.3,20, Improper Input Validation,nan
CVE-2019-9283,4/10/2019 12:55,27/09/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-16413,4/10/2019 9:15,19/09/2019 0:15,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-16234,4/10/2019 9:15,11/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-16233,4/10/2019 9:15,11/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-16232,4/10/2019 9:15,11/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-16231,4/10/2019 9:15,11/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-16230,4/10/2019 9:15,11/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-16089,4/10/2019 9:15,6/09/2019 23:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-15925,4/10/2019 9:15,4/09/2019 21:15,7.2,125, Out-of-bounds Read,nan
CVE-2019-15923,4/10/2019 9:15,4/09/2019 19:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15922,4/10/2019 9:15,4/09/2019 19:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15918,4/10/2019 9:15,4/09/2019 19:15,7.2,125, Out-of-bounds Read,nan
CVE-2019-15916,4/10/2019 9:15,4/09/2019 15:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10744,4/10/2019 9:15,26/07/2019 0:15,7.5,20, Improper Input Validation,nan
CVE-2017-9079,4/10/2019 9:15,19/05/2017 14:29,4.7,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9078,4/10/2019 9:15,19/05/2017 14:29,9.3,415, Double Free,nan
CVE-2019-15741,4/10/2019 6:15,16/09/2019 18:15,7.5,269, Improper Privilege Management,nan
CVE-2019-9235,3/10/2019 20:32,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-9373,3/10/2019 20:24,27/09/2019 19:15,2.1,502, Deserialization of Untrusted Data,nan
CVE-2019-9320,3/10/2019 20:20,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-15036,3/10/2019 20:10,2/10/2019 19:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13124,3/10/2019 20:10,30/09/2019 20:15,5.0,674, Uncontrolled Recursion,nan
CVE-2019-13123,3/10/2019 20:10,30/09/2019 20:15,5.0,674, Uncontrolled Recursion,nan
CVE-2019-16744,3/10/2019 19:56,30/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16745,3/10/2019 19:51,30/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9243,3/10/2019 19:30,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-16910,3/10/2019 19:15,26/09/2019 13:15,2.6,200, Information Exposure,nan
CVE-2019-11510,3/10/2019 18:15,8/05/2019 17:29,7.5,275, Permission Issues,nan
CVE-2019-14956,3/10/2019 17:53,2/10/2019 19:15,4.0,281, Improper Preservation of Permissions,nan
CVE-2019-6698,3/10/2019 17:50,23/08/2019 20:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-16171,3/10/2019 17:34,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15040,3/10/2019 17:30,2/10/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2006-6291,3/10/2019 17:22,5/12/2006 11:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9463,3/10/2019 17:07,27/09/2019 19:15,4.4,269, Improper Privilege Management,nan
CVE-2019-9429,3/10/2019 16:53,27/09/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9407,3/10/2019 16:44,27/09/2019 19:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-6649,3/10/2019 16:13,20/09/2019 20:15,5.8,200, Information Exposure,nan
CVE-2018-13676,3/10/2019 15:49,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-17045,3/10/2019 15:32,30/09/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15039,3/10/2019 15:09,1/10/2019 14:15,6.8,20, Improper Input Validation,nan
CVE-2018-13187,3/10/2019 15:07,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-15037,3/10/2019 15:04,2/10/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2294,3/10/2019 14:56,30/09/2019 16:15,10.0,330, Use of Insufficiently Random Values,nan
CVE-2019-2341,3/10/2019 14:39,30/09/2019 16:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-2333,3/10/2019 14:27,30/09/2019 16:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-7251,3/10/2019 14:15,19/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2019-10540,3/10/2019 14:08,30/09/2019 16:15,10.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2016-10583,3/10/2019 14:06,1/06/2018 18:29,9.3,310, Cryptographic Issues,nan
CVE-2019-2252,3/10/2019 14:02,30/09/2019 16:15,10.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2014-10073,3/10/2019 13:37,20/04/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9280,3/10/2019 13:36,16/01/2019 16:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9304,3/10/2019 13:35,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-7965,3/10/2019 13:34,7/06/2017 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6980,3/10/2019 13:33,13/11/2018 22:29,6.5,863, Incorrect Authorization,nan
CVE-2018-13178,3/10/2019 13:30,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13191,3/10/2019 13:29,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-2081,3/10/2019 13:21,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2082,3/10/2019 13:10,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9378,3/10/2019 12:54,27/09/2019 19:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9384,3/10/2019 12:36,27/09/2019 19:15,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-14710,3/10/2019 12:35,12/07/2018 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2019-9438,3/10/2019 12:27,27/09/2019 19:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2018-16204,3/10/2019 12:25,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8303,3/10/2019 12:17,5/05/2017 18:29,7.5,116, Improper Encoding or Escaping of Output,nan
CVE-2017-18379,3/10/2019 1:15,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13627,3/10/2019 0:15,25/09/2019 15:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-9996,3/10/2019 0:03,10/04/2018 22:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-9989,3/10/2019 0:03,10/04/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9918,3/10/2019 0:03,10/04/2018 18:29,6.8,674, Uncontrolled Recursion,nan
CVE-2018-9867,3/10/2019 0:03,19/02/2019 21:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-9862,3/10/2019 0:03,9/04/2018 16:29,7.2,838, Inappropriate Encoding for Output Context,nan
CVE-2018-9860,3/10/2019 0:03,12/04/2018 5:29,5.0,193, Off-by-one Error,nan
CVE-2018-9853,3/10/2019 0:03,10/07/2018 14:29,7.5,269, Improper Privilege Management,nan
CVE-2018-9845,3/10/2019 0:03,29/04/2018 18:29,7.5,178, Improper Handling of Case Sensitivity,nan
CVE-2018-9587,3/10/2019 0:03,11/02/2019 23:29,4.4,552, Files or Directories Accessible to External Parties,nan
CVE-2018-9582,3/10/2019 0:03,11/02/2019 23:29,4.6,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2018-9548,3/10/2019 0:03,6/12/2018 14:29,2.1,20, Improper Input Validation,nan
CVE-2018-9543,3/10/2019 0:03,14/11/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-9525,3/10/2019 0:03,14/11/2018 18:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-9524,3/10/2019 0:03,14/11/2018 18:29,6.9,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2018-9511,3/10/2019 0:03,2/10/2018 19:29,4.9,909, Missing Initialization of Resource,nan
CVE-2018-9501,3/10/2019 0:03,2/10/2018 19:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-9492,3/10/2019 0:03,2/10/2018 19:29,7.2,862, Missing Authorization,nan
CVE-2018-9488,3/10/2019 0:03,6/11/2018 17:29,4.6,269, Improper Privilege Management,nan
CVE-2018-9458,3/10/2019 0:03,6/11/2018 17:29,6.8,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2018-9457,3/10/2019 0:03,14/11/2018 18:29,2.1,269, Improper Privilege Management,nan
CVE-2018-9444,3/10/2019 0:03,6/11/2018 17:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-9334,3/10/2019 0:03,3/07/2018 21:29,2.1,269, Improper Privilege Management,nan
CVE-2018-9303,3/10/2019 0:03,4/04/2018 21:29,4.3,617, Reachable Assertion,nan
CVE-2018-9280,3/10/2019 0:03,24/10/2018 21:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-9279,3/10/2019 0:03,24/10/2018 21:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-9274,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9273,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9272,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9271,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9270,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9269,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9268,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9267,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9266,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9265,3/10/2019 0:03,4/04/2018 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-9261,3/10/2019 0:03,4/04/2018 7:29,5.0,834, Excessive Iteration,nan
CVE-2018-9257,3/10/2019 0:03,4/04/2018 7:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-9252,3/10/2019 0:03,4/04/2018 2:29,4.3,617, Reachable Assertion,nan
CVE-2018-9251,3/10/2019 0:03,4/04/2018 2:29,2.6,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-9233,3/10/2019 0:03,5/04/2018 17:29,2.1,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2018-9194,3/10/2019 0:03,5/09/2018 13:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2018-9192,3/10/2019 0:03,5/09/2018 13:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2018-9160,3/10/2019 0:03,31/03/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-9159,3/10/2019 0:03,31/03/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9138,3/10/2019 0:03,30/03/2018 8:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-9135,3/10/2019 0:03,30/03/2018 8:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-9133,3/10/2019 0:03,30/03/2018 8:29,4.3,834, Excessive Iteration,nan
CVE-2018-9105,3/10/2019 0:03,27/03/2018 23:29,9.0,287, Improper Authentication,nan
CVE-2018-9086,3/10/2019 0:03,16/11/2018 14:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-9085,3/10/2019 0:03,16/11/2018 14:29,4.0,276, Incorrect Default Permissions,nan
CVE-2018-9083,3/10/2019 0:03,27/11/2018 14:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2018-9078,3/10/2019 0:03,28/09/2018 20:29,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9077,3/10/2019 0:03,28/09/2018 20:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-9076,3/10/2019 0:03,28/09/2018 20:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-9075,3/10/2019 0:03,28/09/2018 20:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-9066,3/10/2019 0:03,30/07/2018 16:29,9.0,20, Improper Input Validation,nan
CVE-2018-9065,3/10/2019 0:03,30/07/2018 16:29,3.5,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-9059,3/10/2019 0:03,20/04/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9058,3/10/2019 0:03,27/03/2018 21:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-9055,3/10/2019 0:03,27/03/2018 4:29,4.3,617, Reachable Assertion,nan
CVE-2018-9039,3/10/2019 0:03,27/03/2018 3:29,4.0,269, Improper Privilege Management,nan
CVE-2018-9038,3/10/2019 0:03,10/04/2018 18:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9031,3/10/2019 0:03,29/03/2018 16:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-9022,3/10/2019 0:03,18/06/2018 18:29,7.5,269, Improper Privilege Management,nan
CVE-2018-9021,3/10/2019 0:03,18/06/2018 18:29,7.5,269, Improper Privilege Management,nan
CVE-2018-8975,3/10/2019 0:03,25/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8960,3/10/2019 0:03,23/03/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-8947,3/10/2019 0:03,25/03/2018 16:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-8933,3/10/2019 0:03,22/03/2018 14:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-8932,3/10/2019 0:03,22/03/2018 14:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-8931,3/10/2019 0:03,22/03/2018 14:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-8902,3/10/2019 0:03,29/06/2018 15:29,4.0,287, Improper Authentication,nan
CVE-2018-8897,3/10/2019 0:03,8/05/2018 18:29,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-8883,3/10/2019 0:03,20/03/2018 23:29,4.6,125, Out-of-bounds Read,nan
CVE-2018-8881,3/10/2019 0:03,20/03/2018 23:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-8866,3/10/2019 0:03,9/05/2018 19:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-8810,3/10/2019 0:03,20/03/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8809,3/10/2019 0:03,20/03/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8808,3/10/2019 0:03,20/03/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8778,3/10/2019 0:03,3/04/2018 22:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2018-8769,3/10/2019 0:03,18/03/2018 6:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-8756,3/10/2019 0:03,18/03/2018 6:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8755,3/10/2019 0:03,25/06/2018 15:29,5.0,862, Missing Authorization,nan
CVE-2018-8733,3/10/2019 0:03,18/04/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8710,3/10/2019 0:03,14/03/2018 19:29,7.5,287, Improper Authentication,nan
CVE-2018-8641,3/10/2019 0:03,12/12/2018 0:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8639,3/10/2019 0:03,12/12/2018 0:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8635,3/10/2019 0:03,12/12/2018 0:29,6.5,20, Improper Input Validation,nan
CVE-2018-8611,3/10/2019 0:03,12/12/2018 0:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8599,3/10/2019 0:03,12/12/2018 0:29,4.6,273, Improper Check for Dropped Privileges,nan
CVE-2018-8584,3/10/2019 0:03,14/11/2018 1:29,7.2,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2018-8572,3/10/2019 0:03,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8568,3/10/2019 0:03,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8562,3/10/2019 0:03,14/11/2018 1:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8561,3/10/2019 0:03,14/11/2018 1:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8554,3/10/2019 0:03,14/11/2018 1:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8552,3/10/2019 0:03,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8518,3/10/2019 0:03,10/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8498,3/10/2019 0:03,10/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8497,3/10/2019 0:03,10/10/2018 13:29,4.6,404, Improper Resource Shutdown or Release,nan
CVE-2018-8485,3/10/2019 0:03,14/11/2018 1:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8484,3/10/2019 0:03,10/10/2018 13:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8480,3/10/2019 0:03,10/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8471,3/10/2019 0:03,14/11/2018 1:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8462,3/10/2019 0:03,13/09/2018 0:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8455,3/10/2019 0:03,13/09/2018 0:29,4.6,404, Improper Resource Shutdown or Release,nan
CVE-2018-8453,3/10/2019 0:03,10/10/2018 13:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8452,3/10/2019 0:03,13/09/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8450,3/10/2019 0:03,14/11/2018 1:29,9.0,404, Improper Resource Shutdown or Release,nan
CVE-2018-8449,3/10/2019 0:03,13/09/2018 0:29,2.1,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2018-8448,3/10/2019 0:03,10/10/2018 13:29,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8435,3/10/2019 0:03,13/09/2018 0:29,2.3,331, Insufficient Entropy,nan
CVE-2018-8431,3/10/2019 0:03,13/09/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8428,3/10/2019 0:03,13/09/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8411,3/10/2019 0:03,10/10/2018 13:29,7.2,863, Incorrect Authorization,nan
CVE-2018-8410,3/10/2019 0:03,13/09/2018 0:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8406,3/10/2019 0:03,15/08/2018 17:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8405,3/10/2019 0:03,15/08/2018 17:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8404,3/10/2019 0:03,15/08/2018 17:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8401,3/10/2019 0:03,15/08/2018 17:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8400,3/10/2019 0:03,15/08/2018 17:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8399,3/10/2019 0:03,15/08/2018 17:29,6.9,404, Improper Resource Shutdown or Release,nan
CVE-2018-8343,3/10/2019 0:03,15/08/2018 17:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-8342,3/10/2019 0:03,15/08/2018 17:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-8339,3/10/2019 0:03,15/08/2018 17:29,6.9,20, Improper Input Validation,nan
CVE-2018-8337,3/10/2019 0:03,13/09/2018 0:29,4.6,178, Improper Handling of Case Sensitivity,nan
CVE-2018-8333,3/10/2019 0:03,10/10/2018 13:29,6.9,404, Improper Resource Shutdown or Release,nan
CVE-2018-8329,3/10/2019 0:03,10/10/2018 13:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8313,3/10/2019 0:03,11/07/2018 0:29,7.2,269, Improper Privilege Management,nan
CVE-2018-8308,3/10/2019 0:03,11/07/2018 0:29,8.5,404, Improper Resource Shutdown or Release,nan
CVE-2018-8306,3/10/2019 0:03,11/07/2018 0:29,5.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-8282,3/10/2019 0:03,11/07/2018 0:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8265,3/10/2019 0:03,10/10/2018 13:29,9.3,20, Improper Input Validation,nan
CVE-2018-8247,3/10/2019 0:03,14/06/2018 12:29,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8233,3/10/2019 0:03,14/06/2018 12:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8224,3/10/2019 0:03,14/06/2018 12:29,6.9,404, Improper Resource Shutdown or Release,nan
CVE-2018-8219,3/10/2019 0:03,14/06/2018 12:29,4.6,269, Improper Privilege Management,nan
CVE-2018-8213,3/10/2019 0:03,14/06/2018 12:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8210,3/10/2019 0:03,14/06/2018 12:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8209,3/10/2019 0:03,14/06/2018 12:29,2.7,200, Information Exposure,nan
CVE-2018-8170,3/10/2019 0:03,9/05/2018 19:29,4.4,404, Improper Resource Shutdown or Release,nan
CVE-2018-8169,3/10/2019 0:03,14/06/2018 12:29,6.9,404, Improper Resource Shutdown or Release,nan
CVE-2018-8167,3/10/2019 0:03,9/05/2018 19:29,4.4,404, Improper Resource Shutdown or Release,nan
CVE-2018-8166,3/10/2019 0:03,9/05/2018 19:29,6.9,404, Improper Resource Shutdown or Release,nan
CVE-2018-8165,3/10/2019 0:03,9/05/2018 19:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8164,3/10/2019 0:03,9/05/2018 19:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8159,3/10/2019 0:03,9/05/2018 19:29,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8152,3/10/2019 0:03,9/05/2018 19:29,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8151,3/10/2019 0:03,9/05/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8145,3/10/2019 0:03,9/05/2018 19:29,7.6,200, Information Exposure,nan
CVE-2018-8124,3/10/2019 0:03,9/05/2018 19:29,6.9,404, Improper Resource Shutdown or Release,nan
CVE-2018-8120,3/10/2019 0:03,9/05/2018 19:29,7.2,404, Improper Resource Shutdown or Release,nan
CVE-2018-8107,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8106,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8105,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8104,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8103,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8102,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8101,3/10/2019 0:03,14/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8090,3/10/2019 0:03,25/07/2018 23:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-8087,3/10/2019 0:03,13/03/2018 6:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-8042,3/10/2019 0:03,18/07/2018 15:29,4.3,209, Information Exposure Through an Error Message,nan
CVE-2018-8040,3/10/2019 0:03,29/08/2018 13:29,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-8039,3/10/2019 0:03,2/07/2018 13:29,6.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2018-8036,3/10/2019 0:03,3/07/2018 20:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-8028,3/10/2019 0:03,23/08/2018 15:29,6.5,862, Missing Authorization,nan
CVE-2018-8017,3/10/2019 0:03,19/09/2018 14:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-8016,3/10/2019 0:03,28/06/2018 16:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-8014,3/10/2019 0:03,16/05/2018 16:29,7.5,1188, Insecure Default Initialization of Resource,nan
CVE-2018-8012,3/10/2019 0:03,21/05/2018 19:29,5.0,862, Missing Authorization,nan
CVE-2018-8009,3/10/2019 0:03,13/11/2018 21:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8005,3/10/2019 0:03,29/08/2018 13:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-8002,3/10/2019 0:03,9/03/2018 19:29,6.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7994,3/10/2019 0:03,31/07/2018 14:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-7988,3/10/2019 0:03,27/11/2018 22:29,3.6,863, Incorrect Authorization,nan
CVE-2018-7960,3/10/2019 0:03,27/11/2018 22:29,5.8,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-7959,3/10/2019 0:03,27/11/2018 22:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-7957,3/10/2019 0:03,31/07/2018 14:29,2.1,863, Incorrect Authorization,nan
CVE-2018-7932,3/10/2019 0:03,24/04/2018 15:29,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-7929,3/10/2019 0:03,18/09/2018 13:29,4.6,863, Incorrect Authorization,nan
CVE-2018-7926,3/10/2019 0:03,13/11/2018 19:29,2.1,863, Incorrect Authorization,nan
CVE-2018-7925,3/10/2019 0:03,13/11/2018 19:29,4.6,863, Incorrect Authorization,nan
CVE-2018-7924,3/10/2019 0:03,17/10/2018 15:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-7890,3/10/2019 0:03,8/03/2018 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7869,3/10/2019 0:03,8/03/2018 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-7792,3/10/2019 0:03,29/08/2018 21:29,5.0,862, Missing Authorization,nan
CVE-2018-7791,3/10/2019 0:03,29/08/2018 21:29,7.5,862, Missing Authorization,nan
CVE-2018-7790,3/10/2019 0:03,29/08/2018 21:29,5.0,294, Authentication Bypass by Capture-replay,nan
CVE-2018-7785,3/10/2019 0:03,3/07/2018 14:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-7782,3/10/2019 0:03,3/07/2018 14:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-7781,3/10/2019 0:03,3/07/2018 14:29,4.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-7779,3/10/2019 0:03,3/07/2018 14:29,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-7770,3/10/2019 0:03,3/07/2018 14:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7757,3/10/2019 0:03,8/03/2018 14:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-7751,3/10/2019 0:03,24/04/2018 6:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7739,3/10/2019 0:03,7/03/2018 2:29,7.5,20, Improper Input Validation,nan
CVE-2018-7727,3/10/2019 0:03,6/03/2018 17:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-7714,3/10/2019 0:03,5/03/2018 23:29,5.0,617, Reachable Assertion,nan
CVE-2018-7713,3/10/2019 0:03,5/03/2018 23:29,5.0,617, Reachable Assertion,nan
CVE-2018-7712,3/10/2019 0:03,5/03/2018 23:29,5.0,617, Reachable Assertion,nan
CVE-2018-7702,3/10/2019 0:03,15/03/2018 1:29,6.4,862, Missing Authorization,nan
CVE-2018-7698,3/10/2019 0:03,5/03/2018 19:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2018-7644,3/10/2019 0:03,5/03/2018 14:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-7641,3/10/2019 0:03,2/03/2018 14:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7640,3/10/2019 0:03,2/03/2018 14:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7639,3/10/2019 0:03,2/03/2018 14:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7638,3/10/2019 0:03,2/03/2018 14:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7637,3/10/2019 0:03,2/03/2018 14:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7588,3/10/2019 0:03,1/03/2018 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7582,3/10/2019 0:03,9/03/2018 20:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-7581,3/10/2019 0:03,9/03/2018 20:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-7535,3/10/2019 0:03,13/07/2018 17:29,7.2,276, Incorrect Default Permissions,nan
CVE-2018-7526,3/10/2019 0:03,24/05/2018 20:29,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-7506,3/10/2019 0:03,6/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-7486,3/10/2019 0:03,26/02/2018 14:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7453,3/10/2019 0:03,24/02/2018 6:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7443,3/10/2019 0:03,23/02/2018 22:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-7440,3/10/2019 0:03,23/02/2018 21:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7438,3/10/2019 0:03,23/02/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7421,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7408,3/10/2019 0:03,22/02/2018 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-7333,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7332,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7331,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7330,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7329,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7328,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7327,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7326,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7325,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7324,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7322,3/10/2019 0:03,23/02/2018 22:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7311,3/10/2019 0:03,21/02/2018 22:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-7300,3/10/2019 0:03,22/02/2018 19:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7298,3/10/2019 0:03,22/02/2018 19:29,9.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-7296,3/10/2019 0:03,22/02/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7295,3/10/2019 0:03,23/05/2018 12:29,4.3,924, Improper Enforcement of Message Integrity During Transmission in a Communication Channel,nan
CVE-2018-7287,3/10/2019 0:03,22/02/2018 0:29,4.3,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-7259,3/10/2019 0:03,20/02/2018 0:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-7254,3/10/2019 0:03,19/02/2018 23:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7253,3/10/2019 0:03,19/02/2018 23:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7246,3/10/2019 0:03,18/04/2018 20:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-7245,3/10/2019 0:03,18/04/2018 20:29,6.4,863, Incorrect Authorization,nan
CVE-2018-7240,3/10/2019 0:03,18/04/2018 20:29,6.5,787, Out-of-bounds Write,nan
CVE-2018-7204,3/10/2019 0:03,7/03/2018 20:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-7174,3/10/2019 0:03,15/02/2018 21:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-7169,3/10/2019 0:03,15/02/2018 20:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-7118,3/10/2019 0:03,9/04/2019 19:29,4.6,284, Improper Access Control,nan
CVE-2018-7084,3/10/2019 0:03,10/05/2019 18:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-7082,3/10/2019 0:03,10/05/2019 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-7079,3/10/2019 0:03,7/12/2018 21:29,6.5,863, Incorrect Authorization,nan
CVE-2018-7073,3/10/2019 0:03,6/08/2018 20:29,2.1,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-7072,3/10/2019 0:03,6/08/2018 20:29,7.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-7048,3/10/2019 0:03,1/03/2018 21:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-7047,3/10/2019 0:03,1/03/2018 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-6978,3/10/2019 0:03,18/12/2018 20:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6977,3/10/2019 0:03,9/10/2018 20:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-6976,3/10/2019 0:03,11/09/2018 14:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-6975,3/10/2019 0:03,11/09/2018 14:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-6971,3/10/2019 0:03,25/07/2018 13:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-6961,3/10/2019 0:03,11/06/2018 22:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6947,3/10/2019 0:03,28/02/2018 22:29,7.2,665, Improper Initialization,nan
CVE-2018-6930,3/10/2019 0:03,13/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-6918,3/10/2019 0:03,4/04/2018 14:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-6875,3/10/2019 0:03,14/03/2018 13:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2018-6873,3/10/2019 0:03,4/04/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-6869,3/10/2019 0:03,9/02/2018 6:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-6857,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6856,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6855,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6854,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6853,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6852,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6851,3/10/2019 0:03,9/07/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6835,3/10/2019 0:03,8/02/2018 7:29,7.5,20, Improper Input Validation,nan
CVE-2018-6831,3/10/2019 0:03,9/07/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6829,3/10/2019 0:03,7/02/2018 23:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-6798,3/10/2019 0:03,17/04/2018 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-6791,3/10/2019 0:03,7/02/2018 2:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6766,3/10/2019 0:03,27/03/2018 17:29,7.2,427, Uncontrolled Search Path Element,nan
CVE-2018-6765,3/10/2019 0:03,27/03/2018 17:29,7.2,427, Uncontrolled Search Path Element,nan
CVE-2018-6764,3/10/2019 0:03,23/02/2018 17:29,4.6,346, Origin Validation Error,nan
CVE-2018-6674,3/10/2019 0:03,25/05/2018 13:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-6654,3/10/2019 0:03,6/02/2018 1:29,6.8,346, Origin Validation Error,nan
CVE-2018-6653,3/10/2019 0:03,1/03/2018 0:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-6635,3/10/2019 0:03,5/02/2018 18:29,6.0,326, Inadequate Encryption Strength,nan
CVE-2018-6634,3/10/2019 0:03,7/05/2019 20:29,7.5,613, Insufficient Session Expiration,nan
CVE-2018-6624,3/10/2019 0:03,5/02/2018 18:29,7.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-6623,3/10/2019 0:03,12/03/2018 21:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6618,3/10/2019 0:03,11/05/2018 21:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-6617,3/10/2019 0:03,11/05/2018 21:29,2.1,287, Improper Authentication,nan
CVE-2018-6606,3/10/2019 0:03,4/02/2018 1:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6594,3/10/2019 0:03,3/02/2018 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-6593,3/10/2019 0:03,3/02/2018 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6592,3/10/2019 0:03,19/02/2018 19:29,4.6,404, Improper Resource Shutdown or Release,nan
CVE-2018-6574,3/10/2019 0:03,7/02/2018 21:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-6562,3/10/2019 0:03,18/05/2018 20:29,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-6560,3/10/2019 0:03,2/02/2018 14:29,4.6,436, Interpretation Conflict,nan
CVE-2018-6544,3/10/2019 0:03,2/02/2018 9:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-6536,3/10/2019 0:03,2/02/2018 9:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6517,3/10/2019 0:03,21/03/2019 16:00,5.0,295, Improper Certificate Validation,nan
CVE-2018-6513,3/10/2019 0:03,11/06/2018 20:29,6.5,426, Untrusted Search Path,nan
CVE-2018-6462,3/10/2019 0:03,31/01/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-6406,3/10/2019 0:03,30/01/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6405,3/10/2019 0:03,30/01/2018 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-6319,3/10/2019 0:03,2/02/2018 21:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-6316,3/10/2019 0:03,15/02/2018 23:29,6.0,863, Incorrect Authorization,nan
CVE-2018-6312,3/10/2019 0:03,10/03/2018 22:29,9.0,521, Weak Password Requirements,nan
CVE-2018-6295,3/10/2019 0:03,13/03/2018 17:29,7.5,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-6271,3/10/2019 0:03,13/02/2019 22:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6269,3/10/2019 0:03,12/04/2019 17:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6267,3/10/2019 0:03,13/02/2019 22:29,9.3,20, Improper Input Validation,nan
CVE-2018-6261,3/10/2019 0:03,2/10/2018 17:29,4.4,276, Incorrect Default Permissions,nan
CVE-2018-6257,3/10/2019 0:03,31/08/2018 20:29,4.4,284, Improper Access Control,nan
CVE-2018-6253,3/10/2019 0:03,2/04/2018 16:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-6243,3/10/2019 0:03,7/05/2019 20:29,7.2,20, Improper Input Validation,nan
CVE-2018-6241,3/10/2019 0:03,31/01/2019 20:29,7.2,20, Improper Input Validation,nan
CVE-2018-6233,3/10/2019 0:03,25/05/2018 15:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-6232,3/10/2019 0:03,25/05/2018 15:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-6231,3/10/2019 0:03,15/03/2018 19:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6222,3/10/2019 0:03,15/03/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6198,3/10/2019 0:03,25/01/2018 3:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-6196,3/10/2019 0:03,25/01/2018 3:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-6180,3/10/2019 0:03,8/02/2018 23:29,5.0,287, Improper Authentication,nan
CVE-2018-6112,3/10/2019 0:03,9/01/2019 19:29,4.3,706, Use of Incorrectly-Resolved Name or Reference,nan
CVE-2018-6080,3/10/2019 0:03,14/11/2018 15:29,4.3,269, Improper Privilege Management,nan
CVE-2018-6070,3/10/2019 0:03,14/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6067,3/10/2019 0:03,14/11/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6057,3/10/2019 0:03,14/11/2018 15:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6040,3/10/2019 0:03,25/09/2018 14:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-6019,3/10/2019 0:03,6/03/2018 20:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-6018,3/10/2019 0:03,24/01/2018 15:29,6.4,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-6017,3/10/2019 0:03,24/01/2018 15:29,6.4,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-6003,3/10/2019 0:03,22/01/2018 20:29,5.0,674, Uncontrolled Recursion,nan
CVE-2018-6000,3/10/2019 0:03,22/01/2018 20:29,10.0,862, Missing Authorization,nan
CVE-2018-5996,3/10/2019 0:03,31/01/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5954,3/10/2019 0:03,25/01/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-5907,3/10/2019 0:03,6/07/2018 19:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-5897,3/10/2019 0:03,6/07/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5892,3/10/2019 0:03,6/07/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-5884,3/10/2019 0:03,6/07/2018 17:29,4.6,269, Improper Privilege Management,nan
CVE-2018-5882,3/10/2019 0:03,6/07/2018 17:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-5871,3/10/2019 0:03,20/09/2018 13:29,3.3,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-5864,3/10/2019 0:03,6/07/2018 19:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-5855,3/10/2019 0:03,6/07/2018 19:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-5841,3/10/2019 0:03,6/06/2018 21:29,9.3,1188, Insecure Default Initialization of Resource,nan
CVE-2018-5840,3/10/2019 0:03,6/06/2018 21:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-5839,3/10/2019 0:03,25/02/2019 22:29,6.6,269, Improper Privilege Management,nan
CVE-2018-5837,3/10/2019 0:03,20/09/2018 13:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-5829,3/10/2019 0:03,6/07/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-5813,3/10/2019 0:03,7/12/2018 22:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5797,3/10/2019 0:03,5/02/2018 4:29,3.3,798, Use of Hard-coded Credentials,nan
CVE-2018-5786,3/10/2019 0:03,19/01/2018 8:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5783,3/10/2019 0:03,19/01/2018 8:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-5772,3/10/2019 0:03,18/01/2018 7:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-5770,3/10/2019 0:03,20/03/2018 15:29,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-5759,3/10/2019 0:03,24/01/2018 21:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-5756,3/10/2019 0:03,16/06/2018 1:29,4.0,269, Improper Privilege Management,nan
CVE-2018-5740,3/10/2019 0:03,16/01/2019 20:29,5.0,617, Reachable Assertion,nan
CVE-2018-5725,3/10/2019 0:03,16/01/2018 22:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-5711,3/10/2019 0:03,16/01/2018 9:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5708,3/10/2019 0:03,30/03/2018 21:29,6.1,522, Insufficiently Protected Credentials,nan
CVE-2018-5706,3/10/2019 0:03,16/01/2018 10:29,6.5,269, Improper Privilege Management,nan
CVE-2018-5698,3/10/2019 0:03,14/01/2018 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-5686,3/10/2019 0:03,14/01/2018 2:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5685,3/10/2019 0:03,14/01/2018 2:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5650,3/10/2019 0:03,12/01/2018 22:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5546,3/10/2019 0:03,17/08/2018 12:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5543,3/10/2019 0:03,31/07/2018 14:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-5540,3/10/2019 0:03,19/07/2018 14:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5536,3/10/2019 0:03,25/07/2018 14:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5527,3/10/2019 0:03,27/06/2018 20:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5516,3/10/2019 0:03,2/05/2018 13:29,4.7,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5511,3/10/2019 0:03,13/04/2018 13:29,6.5,470, Use of Externally-Controlled Input to Select Classes or Code (‘Unsafe Reflection’),nan
CVE-2018-5490,3/10/2019 0:03,3/08/2018 19:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5489,3/10/2019 0:03,3/08/2018 13:29,4.0,863, Incorrect Authorization,nan
CVE-2018-5486,3/10/2019 0:03,25/04/2018 21:29,4.6,306, Missing Authentication for Critical Function,nan
CVE-2018-5482,3/10/2019 0:03,4/03/2019 23:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-5481,3/10/2019 0:03,7/01/2019 14:29,5.8,311, Missing Encryption of Sensitive Data,nan
CVE-2018-5383,3/10/2019 0:03,7/08/2018 21:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-5382,3/10/2019 0:03,16/04/2018 14:29,7.5,354, Improper Validation of Integrity Check Value,nan
CVE-2018-5377,3/10/2019 0:03,12/01/2018 9:29,7.5,862, Missing Authorization,nan
CVE-2018-5358,3/10/2019 0:03,12/01/2018 9:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5357,3/10/2019 0:03,12/01/2018 9:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5349,3/10/2019 0:03,22/03/2018 16:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5347,3/10/2019 0:03,12/01/2018 1:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-5342,3/10/2019 0:03,18/04/2018 8:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-5339,3/10/2019 0:03,18/04/2018 8:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-5328,3/10/2019 0:03,15/01/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2018-5314,3/10/2019 0:03,1/03/2018 17:29,5.0,287, Improper Authentication,nan
CVE-2018-5313,3/10/2019 0:03,8/03/2018 20:29,7.2,276, Incorrect Default Permissions,nan
CVE-2018-5296,3/10/2019 0:03,8/01/2018 7:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-5269,3/10/2019 0:03,8/01/2018 5:29,4.3,617, Reachable Assertion,nan
CVE-2018-5261,3/10/2019 0:03,2/02/2018 21:29,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2018-5253,3/10/2019 0:03,5/01/2018 21:29,6.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-5252,3/10/2019 0:03,5/01/2018 21:29,2.6,834, Excessive Iteration,nan
CVE-2018-5251,3/10/2019 0:03,5/01/2018 20:29,4.3,681, Incorrect Conversion between Numeric Types,nan
CVE-2018-5247,3/10/2019 0:03,5/01/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5246,3/10/2019 0:03,5/01/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5190,3/10/2019 0:03,17/04/2018 13:29,5.0,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2018-5185,3/10/2019 0:03,11/06/2018 21:29,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2018-5179,3/10/2019 0:03,26/04/2019 14:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-5175,3/10/2019 0:03,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5166,3/10/2019 0:03,11/06/2018 21:29,5.0,269, Improper Privilege Management,nan
CVE-2018-5163,3/10/2019 0:03,11/06/2018 21:29,5.1,281, Improper Preservation of Permissions,nan
CVE-2018-5162,3/10/2019 0:03,11/06/2018 21:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-5152,3/10/2019 0:03,11/06/2018 21:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-5135,3/10/2019 0:03,11/06/2018 21:29,5.0,862, Missing Authorization,nan
CVE-2018-5113,3/10/2019 0:03,11/06/2018 21:29,5.0,862, Missing Authorization,nan
CVE-2018-5112,3/10/2019 0:03,11/06/2018 21:29,5.0,552, Files or Directories Accessible to External Parties,nan
CVE-2018-4995,3/10/2019 0:03,9/07/2018 19:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-4965,3/10/2019 0:03,9/07/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-4938,3/10/2019 0:03,19/05/2018 17:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2018-4936,3/10/2019 0:03,19/05/2018 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4890,3/10/2019 0:03,27/02/2018 5:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4868,3/10/2019 0:03,3/01/2018 9:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-4862,3/10/2019 0:03,3/01/2018 9:29,6.5,269, Improper Privilege Management,nan
CVE-2018-4847,3/10/2019 0:03,23/04/2018 16:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-4838,3/10/2019 0:03,8/03/2018 17:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2018-4366,3/10/2019 0:03,3/04/2019 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4351,3/10/2019 0:03,3/04/2019 18:29,4.3,665, Improper Initialization,nan
CVE-2018-4324,3/10/2019 0:03,3/04/2019 18:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4310,3/10/2019 0:03,3/04/2019 18:29,7.5,269, Improper Privilege Management,nan
CVE-2018-4283,3/10/2019 0:03,3/04/2019 18:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-4273,3/10/2019 0:03,3/04/2019 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4271,3/10/2019 0:03,3/04/2019 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4251,3/10/2019 0:03,8/06/2018 18:29,7.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4238,3/10/2019 0:03,8/06/2018 18:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4227,3/10/2019 0:03,8/06/2018 18:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-4220,3/10/2019 0:03,8/06/2018 18:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4218,3/10/2019 0:03,8/06/2018 18:29,6.8,416, Use After Free,nan
CVE-2018-4202,3/10/2019 0:03,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4196,3/10/2019 0:03,8/06/2018 18:29,9.3,200, Information Exposure,nan
CVE-2018-4190,3/10/2019 0:03,8/06/2018 18:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2018-4173,3/10/2019 0:03,13/04/2018 17:29,4.3,269, Improper Privilege Management,nan
CVE-2018-4170,3/10/2019 0:03,3/04/2018 6:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-4167,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4166,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4158,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4157,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4156,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4155,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4154,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4152,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4151,3/10/2019 0:03,3/04/2018 6:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4115,3/10/2019 0:03,3/04/2018 6:29,7.5,281, Improper Preservation of Permissions,nan
CVE-2018-4113,3/10/2019 0:03,3/04/2018 6:29,4.3,617, Reachable Assertion,nan
CVE-2018-4106,3/10/2019 0:03,3/04/2018 6:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-4100,3/10/2019 0:03,3/04/2018 6:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-4073,3/10/2019 0:03,6/05/2019 19:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4072,3/10/2019 0:03,6/05/2019 19:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4051,3/10/2019 0:03,2/04/2019 16:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4050,3/10/2019 0:03,1/04/2019 19:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-4025,3/10/2019 0:03,13/05/2019 16:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4021,3/10/2019 0:03,3/12/2018 22:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4020,3/10/2019 0:03,3/12/2018 22:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4019,3/10/2019 0:03,3/12/2018 22:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4009,3/10/2019 0:03,15/04/2019 20:29,7.2,494, Download of Code Without Integrity Check,nan
CVE-2018-4008,3/10/2019 0:03,15/04/2019 20:29,7.2,269, Improper Privilege Management,nan
CVE-2018-4007,3/10/2019 0:03,17/04/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4006,3/10/2019 0:03,17/04/2019 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-4005,3/10/2019 0:03,17/04/2019 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-4004,3/10/2019 0:03,17/04/2019 15:29,4.9,20, Improper Input Validation,nan
CVE-2018-3974,3/10/2019 0:03,2/04/2019 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-3969,3/10/2019 0:03,21/03/2019 16:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-3963,3/10/2019 0:03,21/03/2019 16:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-3928,3/10/2019 0:03,1/11/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-3910,3/10/2019 0:03,1/11/2018 15:29,5.4,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3890,3/10/2019 0:03,2/11/2018 17:29,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3856,3/10/2019 0:03,23/08/2018 22:29,9.0,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-3854,3/10/2019 0:03,3/12/2018 22:29,3.6,200, Information Exposure,nan
CVE-2018-3841,3/10/2019 0:03,26/06/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-3834,3/10/2019 0:03,2/08/2018 19:29,7.8,346, Origin Validation Error,nan
CVE-2018-3815,3/10/2019 0:03,8/01/2018 5:29,3.5,287, Improper Authentication,nan
CVE-2018-3783,3/10/2019 0:03,17/08/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3757,3/10/2019 0:03,1/06/2018 19:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3705,3/10/2019 0:03,14/12/2018 0:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-3704,3/10/2019 0:03,14/12/2018 0:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-3703,3/10/2019 0:03,10/01/2019 20:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-3701,3/10/2019 0:03,17/05/2019 16:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-3697,3/10/2019 0:03,14/11/2018 14:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-3682,3/10/2019 0:03,10/07/2018 21:29,4.6,269, Improper Privilege Management,nan
CVE-2018-3667,3/10/2019 0:03,10/07/2018 21:29,4.6,1188, Insecure Default Initialization of Resource,nan
CVE-2018-3658,3/10/2019 0:03,12/09/2018 19:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-3652,3/10/2019 0:03,10/07/2018 21:29,4.6,200, Information Exposure,nan
CVE-2018-3619,3/10/2019 0:03,10/07/2018 21:29,2.1,200, Information Exposure,nan
CVE-2018-3610,3/10/2019 0:03,9/01/2018 21:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3594,3/10/2019 0:03,11/04/2018 15:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-3591,3/10/2019 0:03,11/04/2018 15:29,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-3579,3/10/2019 0:03,12/06/2018 20:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-3569,3/10/2019 0:03,6/07/2018 17:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-3245,3/10/2019 0:03,17/10/2018 1:31,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-2503,3/10/2019 0:03,11/12/2018 22:29,3.3,862, Missing Authorization,nan
CVE-2018-2494,3/10/2019 0:03,11/12/2018 22:29,6.5,863, Incorrect Authorization,nan
CVE-2018-2490,3/10/2019 0:03,13/11/2018 20:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-2489,3/10/2019 0:03,13/11/2018 20:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-2484,3/10/2019 0:03,8/01/2019 20:29,6.5,862, Missing Authorization,nan
CVE-2018-2481,3/10/2019 0:03,13/11/2018 20:29,6.5,269, Improper Privilege Management,nan
CVE-2018-2475,3/10/2019 0:03,9/10/2018 13:29,6.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-2461,3/10/2019 0:03,11/09/2018 15:29,6.5,862, Missing Authorization,nan
CVE-2018-2455,3/10/2019 0:03,11/09/2018 15:29,6.5,862, Missing Authorization,nan
CVE-2018-2454,3/10/2019 0:03,11/09/2018 15:29,6.5,862, Missing Authorization,nan
CVE-2018-2451,3/10/2019 0:03,14/08/2018 16:29,6.0,269, Improper Privilege Management,nan
CVE-2018-2437,3/10/2019 0:03,10/07/2018 18:29,6.4,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-2436,3/10/2019 0:03,10/07/2018 18:29,6.5,862, Missing Authorization,nan
CVE-2018-2434,3/10/2019 0:03,10/07/2018 18:29,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-2433,3/10/2019 0:03,10/07/2018 18:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-2381,3/10/2019 0:03,14/02/2018 12:29,6.5,862, Missing Authorization,nan
CVE-2018-2379,3/10/2019 0:03,14/02/2018 12:29,4.0,209, Information Exposure Through an Error Message,nan
CVE-2018-2378,3/10/2019 0:03,14/02/2018 12:29,4.0,200, Information Exposure,nan
CVE-2018-2377,3/10/2019 0:03,14/02/2018 12:29,4.0,200, Information Exposure,nan
CVE-2018-2376,3/10/2019 0:03,14/02/2018 12:29,5.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-2375,3/10/2019 0:03,14/02/2018 12:29,5.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-2374,3/10/2019 0:03,14/02/2018 12:29,4.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-2361,3/10/2019 0:03,9/01/2018 15:29,6.5,863, Incorrect Authorization,nan
CVE-2018-20735,3/10/2019 0:03,17/01/2019 20:29,7.2,287, Improper Authentication,nan
CVE-2018-20727,3/10/2019 0:03,17/01/2019 2:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-20714,3/10/2019 0:03,15/01/2019 16:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20712,3/10/2019 0:03,15/01/2019 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20659,3/10/2019 0:03,2/01/2019 17:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-20652,3/10/2019 0:03,1/01/2019 16:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-20622,3/10/2019 0:03,31/12/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-20621,3/10/2019 0:03,13/03/2019 8:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-20618,3/10/2019 0:03,31/12/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-20578,3/10/2019 0:03,28/12/2018 18:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20567,3/10/2019 0:03,28/12/2018 16:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-20540,3/10/2019 0:03,28/12/2018 16:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-20534,3/10/2019 0:03,28/12/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20512,3/10/2019 0:03,3/01/2019 19:29,10.0,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2018-20482,3/10/2019 0:03,26/12/2018 18:29,1.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20467,3/10/2019 0:03,26/12/2018 3:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20465,3/10/2019 0:03,25/12/2018 23:29,4.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-20451,3/10/2019 0:03,25/12/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20445,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20444,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20443,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20442,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20441,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20440,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20439,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20438,3/10/2019 0:03,25/12/2018 15:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20422,3/10/2019 0:03,24/12/2018 4:29,6.8,287, Improper Authentication,nan
CVE-2018-20421,3/10/2019 0:03,24/12/2018 3:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-20420,3/10/2019 0:03,24/12/2018 3:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-20409,3/10/2019 0:03,23/12/2018 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20408,3/10/2019 0:03,23/12/2018 23:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-20407,3/10/2019 0:03,23/12/2018 23:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-20402,3/10/2019 0:03,23/12/2018 21:29,6.5,1188, Insecure Default Initialization of Resource,nan
CVE-2018-20401,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20400,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20399,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20398,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20397,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20396,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20395,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20394,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20392,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20391,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20390,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20389,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20388,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20387,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20386,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20385,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20384,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20383,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20382,3/10/2019 0:03,23/12/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-20348,3/10/2019 0:03,22/12/2018 0:29,1.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20345,3/10/2019 0:03,21/12/2018 19:29,3.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-20342,3/10/2019 0:03,21/12/2018 18:29,7.2,287, Improper Authentication,nan
CVE-2018-20325,3/10/2019 0:03,21/12/2018 23:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20321,3/10/2019 0:03,10/04/2019 14:29,9.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-20236,3/10/2019 0:03,8/03/2019 18:29,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20218,3/10/2019 0:03,21/03/2019 16:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-20217,3/10/2019 0:03,26/12/2018 21:29,3.5,617, Reachable Assertion,nan
CVE-2018-20216,3/10/2019 0:03,20/12/2018 21:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20201,3/10/2019 0:03,18/12/2018 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-20197,3/10/2019 0:03,18/12/2018 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-20194,3/10/2019 0:03,18/12/2018 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-20193,3/10/2019 0:03,21/12/2018 23:29,4.0,269, Improper Privilege Management,nan
CVE-2018-20167,3/10/2019 0:03,17/12/2018 5:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20155,3/10/2019 0:03,14/12/2018 22:29,4.0,862, Missing Authorization,nan
CVE-2018-20147,3/10/2019 0:03,14/12/2018 20:29,5.5,287, Improper Authentication,nan
CVE-2018-20144,3/10/2019 0:03,28/03/2019 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20131,3/10/2019 0:03,3/01/2019 1:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-20126,3/10/2019 0:03,20/12/2018 21:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-20123,3/10/2019 0:03,17/12/2018 19:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-20122,3/10/2019 0:03,21/02/2019 14:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20103,3/10/2019 0:03,12/12/2018 17:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20100,3/10/2019 0:03,2/01/2019 18:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-20099,3/10/2019 0:03,12/12/2018 10:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20098,3/10/2019 0:03,12/12/2018 10:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20096,3/10/2019 0:03,12/12/2018 10:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20095,3/10/2019 0:03,12/12/2018 10:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-20053,3/10/2019 0:03,25/04/2019 16:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20052,3/10/2019 0:03,25/04/2019 16:29,7.2,1188, Insecure Default Initialization of Resource,nan
CVE-2018-20051,3/10/2019 0:03,10/12/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-20028,3/10/2019 0:03,17/04/2019 19:29,4.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-20021,3/10/2019 0:03,19/12/2018 16:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-20007,3/10/2019 0:03,16/05/2019 19:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-20002,3/10/2019 0:03,10/12/2018 2:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-1999047,3/10/2019 0:03,23/08/2018 18:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1999044,3/10/2019 0:03,23/08/2018 18:29,4.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-1999043,3/10/2019 0:03,23/08/2018 18:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-1999040,3/10/2019 0:03,1/08/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-1999036,3/10/2019 0:03,1/08/2018 13:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1999032,3/10/2019 0:03,1/08/2018 13:29,4.0,269, Improper Privilege Management,nan
CVE-2018-1999030,3/10/2019 0:03,1/08/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-1999028,3/10/2019 0:03,1/08/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-1999012,3/10/2019 0:03,23/07/2018 15:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-1999004,3/10/2019 0:03,23/07/2018 19:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1999003,3/10/2019 0:03,23/07/2018 19:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1999001,3/10/2019 0:03,23/07/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-19990,3/10/2019 0:03,13/05/2019 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19989,3/10/2019 0:03,13/05/2019 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19988,3/10/2019 0:03,13/05/2019 14:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19987,3/10/2019 0:03,13/05/2019 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19986,3/10/2019 0:03,13/05/2019 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19983,3/10/2019 0:03,9/12/2018 19:29,6.1,330, Use of Insufficiently Random Values,nan
CVE-2018-19981,3/10/2019 0:03,4/04/2019 15:29,9.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-19971,3/10/2019 0:03,16/04/2019 19:29,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-19966,3/10/2019 0:03,8/12/2018 4:29,7.2,436, Interpretation Conflict,nan
CVE-2018-19963,3/10/2019 0:03,8/12/2018 4:29,6.9,617, Reachable Assertion,nan
CVE-2018-19962,3/10/2019 0:03,8/12/2018 4:29,6.9,200, Information Exposure,nan
CVE-2018-19961,3/10/2019 0:03,8/12/2018 4:29,6.9,459, Incomplete Cleanup,nan
CVE-2018-19937,3/10/2019 0:03,31/12/2018 16:29,4.6,287, Improper Authentication,nan
CVE-2018-19908,3/10/2019 0:03,6/12/2018 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19853,3/10/2019 0:03,4/12/2018 9:29,6.5,269, Improper Privilege Management,nan
CVE-2018-19840,3/10/2019 0:03,4/12/2018 9:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-19826,3/10/2019 0:03,3/12/2018 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-19795,3/10/2019 0:03,3/12/2018 6:29,7.2,522, Insufficiently Protected Credentials,nan
CVE-2018-19784,3/10/2019 0:03,1/12/2018 0:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-19777,3/10/2019 0:03,30/11/2018 10:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-19760,3/10/2019 0:03,30/11/2018 3:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-19754,3/10/2019 0:03,5/12/2018 22:29,6.5,290, Authentication Bypass by Spoofing,nan
CVE-2018-19664,3/10/2019 0:03,29/11/2018 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19662,3/10/2019 0:03,29/11/2018 8:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19661,3/10/2019 0:03,29/11/2018 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19654,3/10/2019 0:03,29/11/2018 5:29,5.0,20, Improper Input Validation,nan
CVE-2018-19648,3/10/2019 0:03,27/03/2019 21:29,9.0,269, Improper Privilege Management,nan
CVE-2018-19623,3/10/2019 0:03,29/11/2018 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2018-19622,3/10/2019 0:03,29/11/2018 4:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-19620,3/10/2019 0:03,28/11/2018 8:29,4.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-19616,3/10/2019 0:03,26/12/2018 21:29,6.8,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-19589,3/10/2019 0:03,9/04/2019 17:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19543,3/10/2019 0:03,26/11/2018 3:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19515,3/10/2019 0:03,21/03/2019 16:00,7.5,863, Incorrect Authorization,nan
CVE-2018-19499,3/10/2019 0:03,23/11/2018 19:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-19411,3/10/2019 0:03,21/11/2018 16:29,6.5,269, Improper Privilege Management,nan
CVE-2018-19396,3/10/2019 0:03,20/11/2018 21:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-19393,3/10/2019 0:03,15/03/2019 16:29,7.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19374,3/10/2019 0:03,30/04/2019 18:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19333,3/10/2019 0:03,17/11/2018 17:29,7.5,416, Use After Free,nan
CVE-2018-19329,3/10/2019 0:03,17/11/2018 15:29,5.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-19320,3/10/2019 0:03,21/12/2018 23:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-19296,3/10/2019 0:03,16/11/2018 9:29,6.8,915, Improperly Controlled Modification of Dynamically-Determined Object Attributes,nan
CVE-2018-19290,3/10/2019 0:03,30/11/2018 18:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19279,3/10/2019 0:03,14/11/2018 20:29,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-19274,3/10/2019 0:03,17/11/2018 13:29,6.5,915, Improperly Controlled Modification of Dynamically-Determined Object Attributes,nan
CVE-2018-19222,3/10/2019 0:03,12/11/2018 20:29,7.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19213,3/10/2019 0:03,12/11/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-19207,3/10/2019 0:03,12/11/2018 17:29,7.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-19204,3/10/2019 0:03,12/11/2018 16:29,9.0,20, Improper Input Validation,nan
CVE-2018-19168,3/10/2019 0:03,11/11/2018 0:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19143,3/10/2019 0:03,11/11/2018 5:29,5.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-19139,3/10/2019 0:03,9/11/2018 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-19132,3/10/2019 0:03,9/11/2018 11:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-19128,3/10/2019 0:03,9/11/2018 11:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19114,3/10/2019 0:03,8/11/2018 18:29,6.5,20, Improper Input Validation,nan
CVE-2018-19113,3/10/2019 0:03,1/04/2019 21:29,4.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19111,3/10/2019 0:03,8/11/2018 8:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-19110,3/10/2019 0:03,8/11/2018 8:29,4.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-19109,3/10/2019 0:03,8/11/2018 8:29,6.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-19108,3/10/2019 0:03,8/11/2018 8:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-19078,3/10/2019 0:03,7/11/2018 18:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-19072,3/10/2019 0:03,7/11/2018 18:29,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19071,3/10/2019 0:03,7/11/2018 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-19064,3/10/2019 0:03,7/11/2018 18:29,10.0,521, Weak Password Requirements,nan
CVE-2018-18922,3/10/2019 0:03,13/12/2018 19:29,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-18915,3/10/2019 0:03,3/11/2018 4:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-18908,3/10/2019 0:03,20/01/2019 20:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-18897,3/10/2019 0:03,2/11/2018 7:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-18862,3/10/2019 0:03,21/03/2019 16:00,6.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-1882,3/10/2019 0:03,8/04/2019 15:29,1.9,311, Missing Encryption of Sensitive Data,nan
CVE-2018-18817,3/10/2019 0:03,30/10/2018 1:29,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-18815,3/10/2019 0:03,7/03/2019 22:29,7.5,863, Incorrect Authorization,nan
CVE-2018-18754,3/10/2019 0:03,29/10/2018 12:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-18729,3/10/2019 0:03,29/10/2018 12:29,9.0,787, Out-of-bounds Write,nan
CVE-2018-18728,3/10/2019 0:03,29/10/2018 12:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18701,3/10/2019 0:03,29/10/2018 12:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-18700,3/10/2019 0:03,29/10/2018 12:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-18690,3/10/2019 0:03,26/10/2018 18:29,4.9,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-18654,3/10/2019 0:03,26/10/2018 0:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18653,3/10/2019 0:03,26/10/2018 0:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-18651,3/10/2019 0:03,25/10/2018 13:29,4.3,834, Excessive Iteration,nan
CVE-2018-18647,3/10/2019 0:03,4/12/2018 23:29,5.5,862, Missing Authorization,nan
CVE-2018-18641,3/10/2019 0:03,4/12/2018 23:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-18638,3/10/2019 0:03,24/10/2018 22:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18600,3/10/2019 0:03,31/12/2018 16:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18581,3/10/2019 0:03,22/10/2018 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18564,3/10/2019 0:03,20/11/2018 19:29,3.3,284, Improper Access Control,nan
CVE-2018-18563,3/10/2019 0:03,20/11/2018 19:29,8.3,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18562,3/10/2019 0:03,20/11/2018 19:29,3.3,521, Weak Password Requirements,nan
CVE-2018-18555,3/10/2019 0:03,17/12/2018 19:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18544,3/10/2019 0:03,21/10/2018 1:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-18536,3/10/2019 0:03,26/12/2018 21:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-18535,3/10/2019 0:03,26/12/2018 21:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-18505,3/10/2019 0:03,5/02/2019 21:29,7.5,287, Improper Authentication,nan
CVE-2018-18482,3/10/2019 0:03,18/10/2018 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-18454,3/10/2019 0:03,18/10/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18443,3/10/2019 0:03,17/10/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-18435,3/10/2019 0:03,21/03/2019 16:00,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18396,3/10/2019 0:03,19/10/2018 14:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-18395,3/10/2019 0:03,19/10/2018 14:29,10.0,287, Improper Authentication,nan
CVE-2018-18394,3/10/2019 0:03,19/10/2018 14:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-18388,3/10/2019 0:03,20/12/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-18387,3/10/2019 0:03,29/10/2018 18:29,9.0,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2018-18385,3/10/2019 0:03,16/10/2018 16:50,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-18377,3/10/2019 0:03,16/10/2018 1:29,5.0,862, Missing Authorization,nan
CVE-2018-18375,3/10/2019 0:03,16/10/2018 1:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2018-18352,3/10/2019 0:03,11/12/2018 16:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18349,3/10/2019 0:03,11/12/2018 16:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18322,3/10/2019 0:03,15/10/2018 7:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18264,3/10/2019 0:03,3/01/2019 1:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2018-18256,3/10/2019 0:03,15/03/2019 15:29,7.2,287, Improper Authentication,nan
CVE-2018-18255,3/10/2019 0:03,15/03/2019 15:29,7.2,287, Improper Authentication,nan
CVE-2018-18254,3/10/2019 0:03,15/03/2019 15:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18252,3/10/2019 0:03,15/03/2019 15:29,7.2,269, Improper Privilege Management,nan
CVE-2018-18226,3/10/2019 0:03,12/10/2018 6:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-18098,3/10/2019 0:03,10/01/2019 20:29,4.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18097,3/10/2019 0:03,14/12/2018 0:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18094,3/10/2019 0:03,17/04/2019 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18093,3/10/2019 0:03,14/12/2018 0:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-18074,3/10/2019 0:03,9/10/2018 17:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-18071,3/10/2019 0:03,9/10/2018 9:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-18070,3/10/2019 0:03,9/10/2018 9:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-18068,3/10/2019 0:03,4/04/2019 20:29,10.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-18024,3/10/2019 0:03,7/10/2018 18:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-18016,3/10/2019 0:03,5/10/2018 17:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-18014,3/10/2019 0:03,24/10/2018 21:29,7.2,287, Improper Authentication,nan
CVE-2018-18004,3/10/2019 0:03,3/01/2019 20:29,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-17974,3/10/2019 0:03,3/10/2018 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-17972,3/10/2019 0:03,3/10/2018 22:29,4.9,269, Improper Privilege Management,nan
CVE-2018-17969,3/10/2019 0:03,3/10/2018 19:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-17967,3/10/2019 0:03,3/10/2018 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-17966,3/10/2019 0:03,3/10/2018 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-17965,3/10/2019 0:03,3/10/2018 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-17961,3/10/2019 0:03,15/10/2018 16:29,6.8,209, Information Exposure Through an Error Message,nan
CVE-2018-17950,3/10/2019 0:03,12/12/2018 14:29,5.0,863, Incorrect Authorization,nan
CVE-2018-17872,3/10/2019 0:03,4/10/2018 19:29,6.5,269, Improper Privilege Management,nan
CVE-2018-17871,3/10/2019 0:03,4/10/2018 19:29,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-17867,3/10/2019 0:03,1/10/2018 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17857,3/10/2019 0:03,9/10/2018 21:29,4.0,863, Incorrect Authorization,nan
CVE-2018-17848,3/10/2019 0:03,1/10/2018 8:29,5.0,129, Improper Validation of Array Index,nan
CVE-2018-17846,3/10/2019 0:03,1/10/2018 8:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-1783,3/10/2019 0:03,5/10/2018 13:29,2.1,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-17798,3/10/2019 0:03,30/09/2018 20:29,5.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-17787,3/10/2019 0:03,2/10/2018 18:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17786,3/10/2019 0:03,2/10/2018 18:29,7.5,287, Improper Authentication,nan
CVE-2018-17776,3/10/2019 0:03,28/09/2018 21:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-17775,3/10/2019 0:03,8/10/2018 17:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-17613,3/10/2019 0:03,28/09/2018 10:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-17582,3/10/2019 0:03,28/09/2018 9:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-17580,3/10/2019 0:03,28/09/2018 9:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-17565,3/10/2019 0:03,1/04/2019 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17564,3/10/2019 0:03,1/04/2019 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-17563,3/10/2019 0:03,1/04/2019 21:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-17534,3/10/2019 0:03,15/10/2018 19:29,7.2,287, Improper Authentication,nan
CVE-2018-17472,3/10/2019 0:03,14/11/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-17448,3/10/2019 0:03,23/10/2018 21:30,7.5,284, Improper Access Control,nan
CVE-2018-17445,3/10/2019 0:03,23/10/2018 21:30,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-17437,3/10/2019 0:03,24/09/2018 14:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-17435,3/10/2019 0:03,24/09/2018 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-17332,3/10/2019 0:03,22/09/2018 16:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-17317,3/10/2019 0:03,21/09/2018 18:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17305,3/10/2019 0:03,11/04/2019 17:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-17287,3/10/2019 0:03,18/04/2019 18:29,4.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-17281,3/10/2019 0:03,24/09/2018 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-17234,3/10/2019 0:03,20/09/2018 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-17231,3/10/2019 0:03,19/09/2018 22:29,5.0,617, Reachable Assertion,nan
CVE-2018-17228,3/10/2019 0:03,19/09/2018 21:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17208,3/10/2019 0:03,19/09/2018 17:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17205,3/10/2019 0:03,19/09/2018 16:29,5.0,617, Reachable Assertion,nan
CVE-2018-17204,3/10/2019 0:03,19/09/2018 16:29,4.0,617, Reachable Assertion,nan
CVE-2018-17202,3/10/2019 0:03,6/05/2019 18:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-17197,3/10/2019 0:03,24/12/2018 14:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-17190,3/10/2019 0:03,19/11/2018 14:29,7.5,287, Improper Authentication,nan
CVE-2018-17172,3/10/2019 0:03,3/01/2019 3:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-17161,3/10/2019 0:03,3/01/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17156,3/10/2019 0:03,28/11/2018 16:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-17096,3/10/2019 0:03,16/09/2018 21:29,4.3,617, Reachable Assertion,nan
CVE-2018-17092,3/10/2019 0:03,16/09/2018 21:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17068,3/10/2019 0:03,15/09/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17066,3/10/2019 0:03,15/09/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17064,3/10/2019 0:03,15/09/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17063,3/10/2019 0:03,15/09/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17060,3/10/2019 0:03,8/10/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17042,3/10/2019 0:03,14/09/2018 7:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-17037,3/10/2019 0:03,14/09/2018 7:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16987,3/10/2019 0:03,13/09/2018 15:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-16984,3/10/2019 0:03,2/10/2018 18:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-16976,3/10/2019 0:03,12/09/2018 22:29,5.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-16958,3/10/2019 0:03,18/09/2018 2:29,5.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16947,3/10/2019 0:03,12/09/2018 1:29,7.5,287, Improper Authentication,nan
CVE-2018-16946,3/10/2019 0:03,12/09/2018 1:29,5.0,552, Files or Directories Accessible to External Parties,nan
CVE-2018-16889,3/10/2019 0:03,28/01/2019 14:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-16888,3/10/2019 0:03,14/01/2019 22:29,1.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16845,3/10/2019 0:03,7/11/2018 14:29,5.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-16838,3/10/2019 0:03,25/03/2019 18:29,5.5,269, Improper Privilege Management,nan
CVE-2018-16837,3/10/2019 0:03,23/10/2018 15:29,2.1,311, Missing Encryption of Sensitive Data,nan
CVE-2018-16807,3/10/2019 0:03,11/09/2018 2:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-16806,3/10/2019 0:03,10/09/2018 23:29,3.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-16791,3/10/2019 0:03,5/12/2018 22:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-16790,3/10/2019 0:03,10/09/2018 5:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-16764,3/10/2019 0:03,10/09/2018 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-16758,3/10/2019 0:03,10/10/2018 21:29,4.3,306, Missing Authentication for Critical Function,nan
CVE-2018-16752,3/10/2019 0:03,20/09/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16750,3/10/2019 0:03,9/09/2018 15:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-16749,3/10/2019 0:03,9/09/2018 15:29,4.3,617, Reachable Assertion,nan
CVE-2018-16741,3/10/2019 0:03,13/09/2018 16:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16715,3/10/2019 0:03,8/09/2018 10:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16705,3/10/2019 0:03,10/09/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-16703,3/10/2019 0:03,7/09/2018 17:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16669,3/10/2019 0:03,18/09/2018 20:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-16667,3/10/2019 0:03,7/09/2018 17:29,4.4,125, Out-of-bounds Read,nan
CVE-2018-16646,3/10/2019 0:03,6/09/2018 23:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-16645,3/10/2019 0:03,6/09/2018 22:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-16641,3/10/2019 0:03,6/09/2018 22:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-16640,3/10/2019 0:03,6/09/2018 22:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-16636,3/10/2019 0:03,10/12/2018 19:29,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16620,3/10/2019 0:03,15/11/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-16608,3/10/2019 0:03,10/09/2018 13:29,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2018-16597,3/10/2019 0:03,21/09/2018 16:29,4.9,863, Incorrect Authorization,nan
CVE-2018-16591,3/10/2019 0:03,10/09/2018 17:29,10.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-16588,3/10/2019 0:03,26/09/2018 22:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1658,3/10/2019 0:03,14/03/2019 22:29,3.5,20, Improper Input Validation,nan
CVE-2018-16554,3/10/2019 0:03,16/09/2018 2:29,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2018-16548,3/10/2019 0:03,5/09/2018 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-16546,3/10/2019 0:03,5/09/2018 20:29,4.3,798, Use of Hard-coded Credentials,nan
CVE-2018-16545,3/10/2019 0:03,5/09/2018 19:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16515,3/10/2019 0:03,18/09/2018 21:29,6.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-16483,3/10/2019 0:03,1/02/2019 18:29,6.5,269, Improper Privilege Management,nan
CVE-2018-16426,3/10/2019 0:03,4/09/2018 0:29,2.1,674, Uncontrolled Recursion,nan
CVE-2018-16413,3/10/2019 0:03,3/09/2018 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-16412,3/10/2019 0:03,3/09/2018 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-16408,3/10/2019 0:03,3/09/2018 19:29,9.0,269, Improper Privilege Management,nan
CVE-2018-16403,3/10/2019 0:03,3/09/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16368,3/10/2019 0:03,3/09/2018 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16367,3/10/2019 0:03,2/09/2018 22:29,9.0,284, Improper Access Control,nan
CVE-2018-16336,3/10/2019 0:03,2/09/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16310,3/10/2019 0:03,6/09/2018 23:29,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-16281,3/10/2019 0:03,21/09/2018 16:29,7.5,284, Improper Access Control,nan
CVE-2018-16261,3/10/2019 0:03,6/09/2018 23:29,4.6,295, Improper Certificate Validation,nan
CVE-2018-16242,3/10/2019 0:03,14/09/2018 21:29,2.9,294, Authentication Bypass by Capture-replay,nan
CVE-2018-16239,3/10/2019 0:03,30/08/2018 22:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2018-16232,3/10/2019 0:03,17/10/2018 14:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16223,3/10/2019 0:03,20/11/2018 19:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-16222,3/10/2019 0:03,20/11/2018 19:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-16216,3/10/2019 0:03,25/04/2019 20:29,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16184,3/10/2019 0:03,9/01/2019 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16178,3/10/2019 0:03,9/01/2019 23:29,5.0,284, Improper Access Control,nan
CVE-2018-16163,3/10/2019 0:03,15/11/2018 15:29,5.5,284, Improper Access Control,nan
CVE-2018-16158,3/10/2019 0:03,30/08/2018 5:29,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-16146,3/10/2019 0:03,5/09/2018 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16145,3/10/2019 0:03,5/09/2018 21:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-16144,3/10/2019 0:03,5/09/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16140,3/10/2019 0:03,30/08/2018 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-16130,3/10/2019 0:03,27/11/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16090,3/10/2019 0:03,27/11/2018 14:29,6.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16089,3/10/2019 0:03,27/11/2018 14:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16081,3/10/2019 0:03,9/01/2019 19:29,4.3,862, Missing Authorization,nan
CVE-2018-16072,3/10/2019 0:03,9/01/2019 19:29,4.3,346, Origin Validation Error,nan
CVE-2018-16062,3/10/2019 0:03,29/08/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16055,3/10/2019 0:03,26/09/2018 22:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16048,3/10/2019 0:03,3/10/2018 16:29,4.0,862, Missing Authorization,nan
CVE-2018-15967,3/10/2019 0:03,25/09/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-15912,3/10/2019 0:03,29/08/2018 19:29,7.2,269, Improper Privilege Management,nan
CVE-2018-15907,3/10/2019 0:03,29/08/2018 19:29,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-15869,3/10/2019 0:03,25/08/2018 0:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15856,3/10/2019 0:03,25/08/2018 21:29,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-15852,3/10/2019 0:03,25/08/2018 21:29,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-15835,3/10/2019 0:03,30/11/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-15822,3/10/2019 0:03,23/08/2018 23:29,5.0,617, Reachable Assertion,nan
CVE-2018-15809,3/10/2019 0:03,23/08/2018 20:29,2.1,1188, Insecure Default Initialization of Resource,nan
CVE-2018-15807,3/10/2019 0:03,23/08/2018 20:29,4.6,330, Use of Insufficiently Random Values,nan
CVE-2018-15768,3/10/2019 0:03,30/11/2018 17:29,4.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-15767,3/10/2019 0:03,30/11/2018 17:29,9.0,863, Incorrect Authorization,nan
CVE-2018-15752,3/10/2019 0:03,2/10/2018 18:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-15748,3/10/2019 0:03,23/08/2018 15:29,4.0,521, Weak Password Requirements,nan
CVE-2018-15726,3/10/2019 0:03,6/09/2018 23:29,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15711,3/10/2019 0:03,14/11/2018 18:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15710,3/10/2019 0:03,14/11/2018 18:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15709,3/10/2019 0:03,14/11/2018 18:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15693,3/10/2019 0:03,16/11/2018 18:29,3.5,863, Incorrect Authorization,nan
CVE-2018-15692,3/10/2019 0:03,16/11/2018 18:29,3.5,863, Incorrect Authorization,nan
CVE-2018-15685,3/10/2019 0:03,23/08/2018 5:29,6.8,1188, Insecure Default Initialization of Resource,nan
CVE-2018-15681,3/10/2019 0:03,5/09/2018 21:29,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2018-15680,3/10/2019 0:03,5/09/2018 21:29,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2018-15676,3/10/2019 0:03,5/09/2018 21:29,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15667,3/10/2019 0:03,21/08/2018 23:29,5.0,862, Missing Authorization,nan
CVE-2018-15631,3/10/2019 0:03,9/04/2019 16:29,4.0,269, Improper Privilege Management,nan
CVE-2018-15610,3/10/2019 0:03,12/09/2018 21:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15594,3/10/2019 0:03,20/08/2018 8:29,2.1,200, Information Exposure,nan
CVE-2018-15592,3/10/2019 0:03,15/10/2018 16:29,4.6,269, Improper Privilege Management,nan
CVE-2018-15591,3/10/2019 0:03,15/10/2018 16:29,4.6,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-15588,3/10/2019 0:03,11/02/2019 17:29,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2018-15529,3/10/2019 0:03,28/08/2018 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15509,3/10/2019 0:03,18/03/2019 1:32,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15508,3/10/2019 0:03,21/03/2019 16:00,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15502,3/10/2019 0:03,12/09/2018 16:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15498,3/10/2019 0:03,21/03/2019 16:00,6.8,294, Authentication Bypass by Capture-replay,nan
CVE-2018-15491,3/10/2019 0:03,18/08/2018 2:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-15486,3/10/2019 0:03,7/09/2018 22:29,6.4,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2018-15482,3/10/2019 0:03,17/08/2018 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15481,3/10/2019 0:03,21/08/2018 16:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15478,3/10/2019 0:03,30/08/2018 17:29,6.8,287, Improper Authentication,nan
CVE-2018-15468,3/10/2019 0:03,17/08/2018 18:29,4.9,863, Incorrect Authorization,nan
CVE-2018-15462,3/10/2019 0:03,3/05/2019 15:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-15377,3/10/2019 0:03,5/10/2018 14:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-15373,3/10/2019 0:03,5/10/2018 14:29,6.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-15363,3/10/2019 0:03,30/08/2018 19:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-15360,3/10/2019 0:03,17/08/2018 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-15356,3/10/2019 0:03,17/08/2018 15:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-15355,3/10/2019 0:03,17/08/2018 14:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-15350,3/10/2019 0:03,17/08/2018 14:29,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2018-15331,3/10/2019 0:03,20/12/2018 20:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-15329,3/10/2019 0:03,20/12/2018 20:29,6.5,862, Missing Authorization,nan
CVE-2018-15327,3/10/2019 0:03,31/10/2018 14:29,6.5,862, Missing Authorization,nan
CVE-2018-15321,3/10/2019 0:03,31/10/2018 14:29,5.5,269, Improper Privilege Management,nan
CVE-2018-15207,3/10/2019 0:03,30/04/2019 19:29,6.5,269, Improper Privilege Management,nan
CVE-2018-15181,3/10/2019 0:03,9/08/2018 19:29,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14998,3/10/2019 0:03,28/12/2018 21:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14982,3/10/2019 0:03,17/08/2018 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14981,3/10/2019 0:03,17/08/2018 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14980,3/10/2019 0:03,25/04/2019 20:29,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14940,3/10/2019 0:03,5/08/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-14934,3/10/2019 0:03,15/11/2018 20:29,3.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14933,3/10/2019 0:03,4/08/2018 19:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14925,3/10/2019 0:03,3/08/2018 21:29,7.5,209, Information Exposure Through an Error Message,nan
CVE-2018-14901,3/10/2019 0:03,30/08/2018 17:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-14894,3/10/2019 0:03,9/04/2019 18:29,4.6,269, Improper Privilege Management,nan
CVE-2018-14893,3/10/2019 0:03,27/11/2018 20:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14839,3/10/2019 0:03,14/05/2019 21:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14836,3/10/2019 0:03,2/08/2018 0:29,4.0,269, Improper Privilege Management,nan
CVE-2018-14772,3/10/2019 0:03,16/10/2018 22:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14771,3/10/2019 0:03,5/09/2018 21:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14770,3/10/2019 0:03,5/09/2018 21:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14768,3/10/2019 0:03,29/08/2018 19:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-1475,3/10/2019 0:03,27/04/2018 15:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-14748,3/10/2019 0:03,28/11/2018 16:29,7.8,863, Incorrect Authorization,nan
CVE-2018-14746,3/10/2019 0:03,28/11/2018 16:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14706,3/10/2019 0:03,3/12/2018 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14703,3/10/2019 0:03,3/12/2018 22:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14701,3/10/2019 0:03,3/12/2018 22:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14699,3/10/2019 0:03,3/12/2018 22:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14678,3/10/2019 0:03,28/07/2018 18:29,7.2,665, Improper Initialization,nan
CVE-2018-14662,3/10/2019 0:03,15/01/2019 21:29,2.7,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14660,3/10/2019 0:03,1/11/2018 14:29,4.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-14647,3/10/2019 0:03,25/09/2018 0:29,5.0,909, Missing Initialization of Resource,nan
CVE-2018-1463,3/10/2019 0:03,17/05/2018 21:29,4.0,269, Improper Privilege Management,nan
CVE-2018-14627,3/10/2019 0:03,4/09/2018 12:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-1462,3/10/2019 0:03,17/05/2018 21:29,6.5,269, Improper Privilege Management,nan
CVE-2018-14608,3/10/2019 0:03,26/07/2018 22:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-14607,3/10/2019 0:03,26/07/2018 22:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-14596,3/10/2019 0:03,25/07/2018 4:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-14589,3/10/2019 0:03,24/07/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14588,3/10/2019 0:03,24/07/2018 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-14587,3/10/2019 0:03,24/07/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14585,3/10/2019 0:03,24/07/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14584,3/10/2019 0:03,24/07/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14567,3/10/2019 0:03,16/08/2018 20:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14565,3/10/2019 0:03,23/07/2018 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-14558,3/10/2019 0:03,30/10/2018 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14532,3/10/2019 0:03,23/07/2018 8:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-14526,3/10/2019 0:03,8/08/2018 19:29,3.3,924, Improper Enforcement of Message Integrity During Transmission in a Communication Channel,nan
CVE-2018-14523,3/10/2019 0:03,23/07/2018 8:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-1447,3/10/2019 0:03,4/04/2018 18:29,5.0,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2018-14445,3/10/2019 0:03,20/07/2018 13:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14437,3/10/2019 0:03,20/07/2018 0:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-14436,3/10/2019 0:03,20/07/2018 0:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-14435,3/10/2019 0:03,20/07/2018 0:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-14434,3/10/2019 0:03,20/07/2018 0:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-14368,3/10/2019 0:03,19/07/2018 2:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14367,3/10/2019 0:03,19/07/2018 2:29,5.0,252, Unchecked Return Value,nan
CVE-2018-14363,3/10/2019 0:03,17/07/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14357,3/10/2019 0:03,17/07/2018 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14356,3/10/2019 0:03,17/07/2018 17:29,7.5,824, Access of Uninitialized Pointer,nan
CVE-2018-14354,3/10/2019 0:03,17/07/2018 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14347,3/10/2019 0:03,17/07/2018 15:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14345,3/10/2019 0:03,17/07/2018 14:29,6.0,613, Insufficient Session Expiration,nan
CVE-2018-14342,3/10/2019 0:03,19/07/2018 2:29,7.8,834, Excessive Iteration,nan
CVE-2018-14341,3/10/2019 0:03,19/07/2018 2:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14339,3/10/2019 0:03,19/07/2018 2:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14335,3/10/2019 0:03,24/07/2018 13:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14327,3/10/2019 0:03,26/09/2018 22:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1417,3/10/2019 0:03,22/02/2018 19:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14081,3/10/2019 0:03,9/10/2018 17:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-14078,3/10/2019 0:03,20/08/2018 20:29,10.0,287, Improper Authentication,nan
CVE-2018-14073,3/10/2019 0:03,15/07/2018 18:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-14072,3/10/2019 0:03,15/07/2018 18:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-14055,3/10/2019 0:03,15/07/2018 1:29,4.0,20, Improper Input Validation,nan
CVE-2018-14051,3/10/2019 0:03,13/07/2018 16:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-14046,3/10/2019 0:03,13/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14045,3/10/2019 0:03,13/07/2018 15:29,5.0,617, Reachable Assertion,nan
CVE-2018-14044,3/10/2019 0:03,13/07/2018 15:29,5.0,617, Reachable Assertion,nan
CVE-2018-14043,3/10/2019 0:03,13/07/2018 14:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-14017,3/10/2019 0:03,12/07/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-14016,3/10/2019 0:03,12/07/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-13996,3/10/2019 0:03,12/07/2018 12:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13873,3/10/2019 0:03,10/07/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13870,3/10/2019 0:03,10/07/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13868,3/10/2019 0:03,10/07/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13866,3/10/2019 0:03,10/07/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13846,3/10/2019 0:03,10/07/2018 18:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13845,3/10/2019 0:03,10/07/2018 18:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13844,3/10/2019 0:03,10/07/2018 18:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-13843,3/10/2019 0:03,10/07/2018 18:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-13797,3/10/2019 0:03,10/07/2018 12:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13791,3/10/2019 0:03,9/07/2018 21:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13789,3/10/2019 0:03,10/10/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1377,3/10/2019 0:03,26/02/2018 14:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-1372,3/10/2019 0:03,27/02/2018 17:29,5.0,521, Weak Password Requirements,nan
CVE-2018-1368,3/10/2019 0:03,9/02/2018 17:29,3.6,269, Improper Privilege Management,nan
CVE-2018-1360,3/10/2019 0:03,25/04/2019 18:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-1354,3/10/2019 0:03,27/06/2018 20:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13421,3/10/2019 0:03,7/07/2018 17:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13420,3/10/2019 0:03,7/07/2018 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-13419,3/10/2019 0:03,7/07/2018 17:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-13418,3/10/2019 0:03,27/11/2018 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13412,3/10/2019 0:03,12/09/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13411,3/10/2019 0:03,12/09/2018 16:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13405,3/10/2019 0:03,6/07/2018 14:29,4.6,269, Improper Privilege Management,nan
CVE-2018-13400,3/10/2019 0:03,23/10/2018 13:29,6.5,269, Improper Privilege Management,nan
CVE-2018-1340,3/10/2019 0:03,7/02/2019 22:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2018-13399,3/10/2019 0:03,16/10/2018 13:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1339,3/10/2019 0:03,25/04/2018 21:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-1338,3/10/2019 0:03,25/04/2018 21:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-13374,3/10/2019 0:03,22/01/2019 14:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1336,3/10/2019 0:03,2/08/2018 14:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-13358,3/10/2019 0:03,27/11/2018 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13356,3/10/2019 0:03,27/11/2018 21:29,9.0,863, Incorrect Authorization,nan
CVE-2018-13355,3/10/2019 0:03,27/11/2018 21:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13354,3/10/2019 0:03,27/11/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13353,3/10/2019 0:03,27/11/2018 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13338,3/10/2019 0:03,27/11/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13336,3/10/2019 0:03,27/11/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13330,3/10/2019 0:03,27/11/2018 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1333,3/10/2019 0:03,18/06/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-13324,3/10/2019 0:03,26/11/2018 23:29,7.5,863, Incorrect Authorization,nan
CVE-2018-13321,3/10/2019 0:03,26/11/2018 23:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13320,3/10/2019 0:03,26/11/2018 23:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13318,3/10/2019 0:03,26/11/2018 23:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13316,3/10/2019 0:03,27/11/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13314,3/10/2019 0:03,27/11/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13311,3/10/2019 0:03,26/11/2018 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13307,3/10/2019 0:03,27/11/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13306,3/10/2019 0:03,27/11/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13304,3/10/2019 0:03,5/07/2018 17:29,4.3,617, Reachable Assertion,nan
CVE-2018-13302,3/10/2019 0:03,5/07/2018 17:29,6.8,129, Improper Validation of Array Index,nan
CVE-2018-1324,3/10/2019 0:03,16/03/2018 13:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-13153,3/10/2019 0:03,5/07/2018 2:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-1315,3/10/2019 0:03,5/04/2018 13:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13140,3/10/2019 0:03,24/09/2018 22:29,9.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-1314,3/10/2019 0:03,8/11/2018 14:29,4.0,862, Missing Authorization,nan
CVE-2018-13122,3/10/2019 0:03,3/07/2018 22:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13110,3/10/2019 0:03,6/07/2018 14:29,8.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13109,3/10/2019 0:03,6/07/2018 14:29,5.0,863, Incorrect Authorization,nan
CVE-2018-13066,3/10/2019 0:03,2/07/2018 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-13033,3/10/2019 0:03,1/07/2018 16:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-13026,3/10/2019 0:03,30/06/2018 12:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13025,3/10/2019 0:03,29/06/2018 17:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-13023,3/10/2019 0:03,27/11/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13014,3/10/2019 0:03,29/06/2018 15:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-13013,3/10/2019 0:03,29/06/2018 15:29,4.6,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-13012,3/10/2019 0:03,29/06/2018 15:29,6.8,494, Download of Code Without Integrity Check,nan
CVE-2018-12993,3/10/2019 0:03,29/06/2018 12:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-12989,3/10/2019 0:03,3/08/2018 18:29,7.2,281, Improper Preservation of Permissions,nan
CVE-2018-12983,3/10/2019 0:03,29/06/2018 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-12979,3/10/2019 0:03,12/07/2018 18:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12972,3/10/2019 0:03,29/06/2018 5:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1297,3/10/2019 0:03,13/02/2018 12:29,7.5,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-12934,3/10/2019 0:03,28/06/2018 14:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-12925,3/10/2019 0:03,28/06/2018 11:29,10.0,521, Weak Password Requirements,nan
CVE-2018-12922,3/10/2019 0:03,28/06/2018 11:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12917,3/10/2019 0:03,27/06/2018 18:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-12915,3/10/2019 0:03,27/06/2018 18:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-12913,3/10/2019 0:03,27/06/2018 18:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-12884,3/10/2019 0:03,26/06/2018 11:29,4.0,269, Improper Privilege Management,nan
CVE-2018-1286,3/10/2019 0:03,28/02/2018 18:29,4.0,287, Improper Authentication,nan
CVE-2018-12838,3/10/2019 0:03,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12805,3/10/2019 0:03,20/07/2018 19:29,7.5,427, Uncontrolled Search Path Element,nan
CVE-2018-1278,3/10/2019 0:03,11/05/2018 20:29,4.3,863, Incorrect Authorization,nan
CVE-2018-1274,3/10/2019 0:03,18/04/2018 16:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-12710,3/10/2019 0:03,29/08/2018 19:29,2.7,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-12700,3/10/2019 0:03,23/06/2018 23:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-12692,3/10/2019 0:03,23/06/2018 21:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12687,3/10/2019 0:03,22/06/2018 19:29,5.0,617, Reachable Assertion,nan
CVE-2018-12680,3/10/2019 0:03,2/04/2019 20:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-1268,3/10/2019 0:03,6/06/2018 20:29,4.9,20, Improper Input Validation,nan
CVE-2018-12679,3/10/2019 0:03,2/04/2019 19:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-12674,3/10/2019 0:03,19/10/2018 22:29,2.9,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-1267,3/10/2019 0:03,27/03/2018 16:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12649,3/10/2019 0:03,22/06/2018 14:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2018-12642,3/10/2019 0:03,22/06/2018 12:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12641,3/10/2019 0:03,22/06/2018 12:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-12615,3/10/2019 0:03,21/06/2018 15:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12596,3/10/2019 0:03,10/10/2018 21:29,7.5,269, Improper Privilege Management,nan
CVE-2018-1258,3/10/2019 0:03,11/05/2018 20:29,6.5,863, Incorrect Authorization,nan
CVE-2018-12577,3/10/2019 0:03,2/07/2018 16:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-12576,3/10/2019 0:03,2/07/2018 16:29,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2018-12520,3/10/2019 0:03,5/07/2018 20:29,6.8,335, Incorrect Usage of Seeds in Pseudo-Random Number Generator (PRNG),nan
CVE-2018-12504,3/10/2019 0:03,16/06/2018 15:29,5.0,617, Reachable Assertion,nan
CVE-2018-12503,3/10/2019 0:03,16/06/2018 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-12481,3/10/2019 0:03,15/06/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-12457,3/10/2019 0:03,15/06/2018 14:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1242,3/10/2019 0:03,29/05/2018 17:29,4.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-12418,3/10/2019 0:03,14/06/2018 16:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-12402,3/10/2019 0:03,28/02/2019 18:29,4.3,346, Origin Validation Error,nan
CVE-2018-1240,3/10/2019 0:03,18/04/2018 16:29,2.7,200, Information Exposure,nan
CVE-2018-12396,3/10/2019 0:03,28/02/2019 18:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12383,3/10/2019 0:03,18/10/2018 13:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-12381,3/10/2019 0:03,18/10/2018 13:29,5.0,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2018-1238,3/10/2019 0:03,27/03/2018 21:29,8.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-12374,3/10/2019 0:03,18/10/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-12373,3/10/2019 0:03,18/10/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-12372,3/10/2019 0:03,18/10/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-12369,3/10/2019 0:03,18/10/2018 13:29,7.5,863, Incorrect Authorization,nan
CVE-2018-1235,3/10/2019 0:03,29/05/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12335,3/10/2019 0:03,17/06/2018 16:29,4.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12333,3/10/2019 0:03,17/06/2018 16:29,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-12332,3/10/2019 0:03,17/06/2018 16:29,1.9,459, Incomplete Cleanup,nan
CVE-2018-12319,3/10/2019 0:03,4/12/2018 17:29,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12315,3/10/2019 0:03,4/12/2018 17:29,4.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-12313,3/10/2019 0:03,4/12/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1231,3/10/2019 0:03,27/03/2018 16:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12308,3/10/2019 0:03,4/12/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-12296,3/10/2019 0:03,13/05/2019 13:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12268,3/10/2019 0:03,13/06/2018 11:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12261,3/10/2019 0:03,12/06/2018 18:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12260,3/10/2019 0:03,12/06/2018 18:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-12259,3/10/2019 0:03,12/06/2018 18:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12248,3/10/2019 0:03,12/06/2018 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12240,3/10/2019 0:03,29/08/2018 20:29,4.3,798, Use of Hard-coded Credentials,nan
CVE-2018-1223,3/10/2019 0:03,17/09/2018 16:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-12228,3/10/2019 0:03,12/06/2018 4:29,6.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-12223,3/10/2019 0:03,14/03/2019 20:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12217,3/10/2019 0:03,14/03/2019 20:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12210,3/10/2019 0:03,14/03/2019 20:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12209,3/10/2019 0:03,14/03/2019 20:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12205,3/10/2019 0:03,14/03/2019 20:29,7.2,295, Improper Certificate Validation,nan
CVE-2018-12204,3/10/2019 0:03,14/03/2019 20:29,7.2,665, Improper Initialization,nan
CVE-2018-12200,3/10/2019 0:03,14/03/2019 20:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12191,3/10/2019 0:03,14/03/2019 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12189,3/10/2019 0:03,14/03/2019 20:29,2.1,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-12183,3/10/2019 0:03,27/03/2019 20:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-12180,3/10/2019 0:03,27/03/2019 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-12177,3/10/2019 0:03,10/01/2019 20:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12176,3/10/2019 0:03,12/09/2018 19:29,7.2,20, Improper Input Validation,nan
CVE-2018-12175,3/10/2019 0:03,12/09/2018 19:29,4.6,276, Incorrect Default Permissions,nan
CVE-2018-12173,3/10/2019 0:03,10/10/2018 18:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12168,3/10/2019 0:03,12/09/2018 19:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12163,3/10/2019 0:03,12/09/2018 19:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-12162,3/10/2019 0:03,12/09/2018 19:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12158,3/10/2019 0:03,10/10/2018 18:29,5.6,200, Information Exposure,nan
CVE-2018-12155,3/10/2019 0:03,5/12/2018 21:29,2.1,200, Information Exposure,nan
CVE-2018-12148,3/10/2019 0:03,12/09/2018 19:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12131,3/10/2019 0:03,10/10/2018 14:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12103,3/10/2019 0:03,5/07/2018 20:29,3.3,863, Incorrect Authorization,nan
CVE-2018-12093,3/10/2019 0:03,11/06/2018 11:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-12092,3/10/2019 0:03,11/06/2018 11:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-12070,3/10/2019 0:03,25/06/2018 11:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12068,3/10/2019 0:03,25/06/2018 11:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12067,3/10/2019 0:03,25/06/2018 11:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12064,3/10/2019 0:03,8/06/2018 12:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-12063,3/10/2019 0:03,25/06/2018 11:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12062,3/10/2019 0:03,25/06/2018 11:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1203,3/10/2019 0:03,26/03/2018 18:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12028,3/10/2019 0:03,17/06/2018 20:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12027,3/10/2019 0:03,17/06/2018 20:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-12020,3/10/2019 0:03,8/06/2018 21:29,5.0,706, Use of Incorrectly-Resolved Name or Reference,nan
CVE-2018-11985,3/10/2019 0:03,20/12/2018 15:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-1197,3/10/2019 0:03,19/03/2018 18:29,6.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11965,3/10/2019 0:03,20/12/2018 15:29,7.2,269, Improper Privilege Management,nan
CVE-2018-11964,3/10/2019 0:03,20/12/2018 15:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11951,3/10/2019 0:03,26/10/2018 13:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1195,3/10/2019 0:03,19/03/2018 18:29,6.5,613, Insufficient Session Expiration,nan
CVE-2018-11943,3/10/2019 0:03,27/11/2018 16:29,4.6,665, Improper Initialization,nan
CVE-2018-11914,3/10/2019 0:03,27/11/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11913,3/10/2019 0:03,27/11/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11912,3/10/2019 0:03,27/11/2018 16:29,7.2,269, Improper Privilege Management,nan
CVE-2018-11911,3/10/2019 0:03,27/11/2018 16:29,7.2,269, Improper Privilege Management,nan
CVE-2018-11910,3/10/2019 0:03,27/11/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11909,3/10/2019 0:03,27/11/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11908,3/10/2019 0:03,27/11/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11907,3/10/2019 0:03,27/11/2018 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11906,3/10/2019 0:03,27/11/2018 16:29,7.2,276, Incorrect Default Permissions,nan
CVE-2018-11888,3/10/2019 0:03,11/02/2019 15:29,7.2,862, Missing Authorization,nan
CVE-2018-11857,3/10/2019 0:03,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11832,3/10/2019 0:03,18/09/2018 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11826,3/10/2019 0:03,18/09/2018 18:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-1182,3/10/2019 0:03,8/03/2018 15:29,7.2,269, Improper Privilege Management,nan
CVE-2018-11813,3/10/2019 0:03,6/06/2018 3:29,5.0,834, Excessive Iteration,nan
CVE-2018-11792,3/10/2019 0:03,24/10/2018 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11786,3/10/2019 0:03,18/09/2018 14:29,9.0,269, Improper Privilege Management,nan
CVE-2018-11785,3/10/2019 0:03,24/10/2018 20:29,4.0,862, Missing Authorization,nan
CVE-2018-11775,3/10/2019 0:03,10/09/2018 20:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-11771,3/10/2019 0:03,16/08/2018 15:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-11770,3/10/2019 0:03,13/08/2018 16:29,4.9,287, Improper Authentication,nan
CVE-2018-11767,3/10/2019 0:03,21/03/2019 16:00,5.8,269, Improper Privilege Management,nan
CVE-2018-11752,3/10/2019 0:03,2/10/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-11749,3/10/2019 0:03,24/08/2018 13:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-11748,3/10/2019 0:03,2/10/2018 19:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-11724,3/10/2019 0:03,19/06/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-11657,3/10/2019 0:03,1/06/2018 15:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-11656,3/10/2019 0:03,1/06/2018 15:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-11655,3/10/2019 0:03,1/06/2018 15:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-11642,3/10/2019 0:03,3/07/2018 17:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11639,3/10/2019 0:03,3/07/2018 17:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2018-11634,3/10/2019 0:03,3/07/2018 17:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-11625,3/10/2019 0:03,31/05/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-11597,3/10/2019 0:03,31/05/2018 16:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-11593,3/10/2019 0:03,31/05/2018 16:29,5.8,787, Out-of-bounds Write,nan
CVE-2018-11577,3/10/2019 0:03,31/05/2018 0:29,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-11574,3/10/2019 0:03,14/06/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-11544,3/10/2019 0:03,29/05/2018 21:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-11541,3/10/2019 0:03,9/07/2018 12:29,10.0,862, Missing Authorization,nan
CVE-2018-11510,3/10/2019 0:03,28/06/2018 14:29,5.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11509,3/10/2019 0:03,16/08/2018 20:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-11504,3/10/2019 0:03,26/05/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11503,3/10/2019 0:03,26/05/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11488,3/10/2019 0:03,29/05/2018 7:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-11477,3/10/2019 0:03,30/05/2018 21:29,3.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-11468,3/10/2019 0:03,25/05/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11446,3/10/2019 0:03,25/06/2018 11:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1144,3/10/2019 0:03,19/04/2018 13:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11439,3/10/2019 0:03,30/05/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11436,3/10/2019 0:03,30/05/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11434,3/10/2019 0:03,30/05/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11433,3/10/2019 0:03,30/05/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11432,3/10/2019 0:03,30/05/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1143,3/10/2019 0:03,19/04/2018 13:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11419,3/10/2019 0:03,24/05/2018 20:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11418,3/10/2019 0:03,24/05/2018 20:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-1141,3/10/2019 0:03,20/03/2018 18:29,4.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11402,3/10/2019 0:03,24/05/2018 5:29,1.9,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-11399,3/10/2019 0:03,24/05/2018 5:29,1.9,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-11365,3/10/2019 0:03,22/05/2018 4:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-11364,3/10/2019 0:03,22/05/2018 4:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-11363,3/10/2019 0:03,22/05/2018 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-11362,3/10/2019 0:03,22/05/2018 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-1136,3/10/2019 0:03,25/05/2018 12:29,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11357,3/10/2019 0:03,22/05/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-11346,3/10/2019 0:03,22/05/2018 1:29,4.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2018-1134,3/10/2019 0:03,25/05/2018 12:29,4.0,269, Improper Privilege Management,nan
CVE-2018-11338,3/10/2019 0:03,31/07/2018 14:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2018-11325,3/10/2019 0:03,22/05/2018 15:29,5.0,209, Information Exposure Through an Error Message,nan
CVE-2018-11323,3/10/2019 0:03,22/05/2018 15:29,6.5,269, Improper Privilege Management,nan
CVE-2018-11319,3/10/2019 0:03,20/05/2018 20:29,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11291,3/10/2019 0:03,20/09/2018 13:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-11290,3/10/2019 0:03,20/09/2018 13:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-11277,3/10/2019 0:03,20/09/2018 13:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11259,3/10/2019 0:03,6/07/2018 17:29,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11254,3/10/2019 0:03,18/05/2018 19:29,4.3,674, Uncontrolled Recursion,nan
CVE-2018-11251,3/10/2019 0:03,18/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11242,3/10/2019 0:03,20/05/2018 14:29,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-11235,3/10/2019 0:03,30/05/2018 4:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11210,3/10/2019 0:03,16/05/2018 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11209,3/10/2019 0:03,16/05/2018 15:29,4.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-11195,3/10/2019 0:03,1/06/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-11194,3/10/2019 0:03,2/06/2018 1:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11193,3/10/2019 0:03,2/06/2018 1:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11192,3/10/2019 0:03,2/06/2018 1:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11191,3/10/2019 0:03,2/06/2018 1:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-11190,3/10/2019 0:03,2/06/2018 1:29,9.0,269, Improper Privilege Management,nan
CVE-2018-11189,3/10/2019 0:03,2/06/2018 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11188,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11187,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11186,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11185,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11184,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11183,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11182,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11181,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11180,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11179,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11178,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11177,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11176,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11175,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11174,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11173,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11172,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11171,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11170,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11169,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11168,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11167,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11166,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11165,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11164,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11163,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11162,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11161,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11160,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11159,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11158,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11157,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11156,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11155,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11154,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11153,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11152,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11151,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11150,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11149,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11148,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11147,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11146,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11145,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11144,3/10/2019 0:03,2/06/2018 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11143,3/10/2019 0:03,2/06/2018 1:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11142,3/10/2019 0:03,31/05/2018 18:29,2.1,863, Incorrect Authorization,nan
CVE-2018-11139,3/10/2019 0:03,31/05/2018 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11138,3/10/2019 0:03,31/05/2018 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11132,3/10/2019 0:03,31/05/2018 18:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-11116,3/10/2019 0:03,19/06/2018 21:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1111,3/10/2019 0:03,17/05/2018 16:29,7.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11100,3/10/2019 0:03,15/05/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11097,3/10/2019 0:03,15/05/2018 1:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-11095,3/10/2019 0:03,15/05/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11057,3/10/2019 0:03,31/08/2018 18:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-11050,3/10/2019 0:03,1/08/2018 6:29,3.3,522, Insufficiently Protected Credentials,nan
CVE-2018-11047,3/10/2019 0:03,24/07/2018 19:29,5.0,863, Incorrect Authorization,nan
CVE-2018-11040,3/10/2019 0:03,25/06/2018 15:29,4.3,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2018-10999,3/10/2019 0:03,12/05/2018 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10995,3/10/2019 0:03,30/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-10989,3/10/2019 0:03,14/05/2018 14:29,3.5,1188, Insecure Default Initialization of Resource,nan
CVE-2018-10988,3/10/2019 0:03,5/07/2018 20:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-10987,3/10/2019 0:03,5/07/2018 20:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10981,3/10/2019 0:03,10/05/2018 22:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10971,3/10/2019 0:03,10/05/2018 15:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2018-10968,3/10/2019 0:03,18/05/2018 14:29,7.5,1188, Insecure Default Initialization of Resource,nan
CVE-2018-10967,3/10/2019 0:03,18/05/2018 14:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10963,3/10/2019 0:03,10/05/2018 2:29,4.3,617, Reachable Assertion,nan
CVE-2018-10938,3/10/2019 0:03,27/08/2018 13:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10927,3/10/2019 0:03,4/09/2018 15:29,5.5,200, Information Exposure,nan
CVE-2018-10925,3/10/2019 0:03,9/08/2018 21:29,5.5,863, Incorrect Authorization,nan
CVE-2018-10924,3/10/2019 0:03,4/09/2018 15:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-10917,3/10/2019 0:03,15/08/2018 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10915,3/10/2019 0:03,9/08/2018 20:29,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10906,3/10/2019 0:03,24/07/2018 20:29,4.6,269, Improper Privilege Management,nan
CVE-2018-10903,3/10/2019 0:03,30/07/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-10900,3/10/2019 0:03,26/07/2018 15:29,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10853,3/10/2019 0:03,11/09/2018 14:29,4.6,269, Improper Privilege Management,nan
CVE-2018-10846,3/10/2019 0:03,22/08/2018 13:29,1.9,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-10845,3/10/2019 0:03,22/08/2018 13:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-10844,3/10/2019 0:03,22/08/2018 13:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-10825,3/10/2019 0:03,15/05/2018 4:29,2.9,311, Missing Encryption of Sensitive Data,nan
CVE-2018-10824,3/10/2019 0:03,17/10/2018 14:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-10823,3/10/2019 0:03,17/10/2018 14:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10814,3/10/2019 0:03,14/09/2018 21:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-10812,3/10/2019 0:03,8/05/2018 19:29,1.9,312, Cleartext Storage of Sensitive Information,nan
CVE-2018-10805,3/10/2019 0:03,8/05/2018 7:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-10804,3/10/2019 0:03,8/05/2018 7:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-10801,3/10/2019 0:03,8/05/2018 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-10780,3/10/2019 0:03,7/05/2018 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10779,3/10/2019 0:03,7/05/2018 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10767,3/10/2019 0:03,6/05/2018 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10733,3/10/2019 0:03,4/05/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10712,3/10/2019 0:03,30/10/2018 18:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10710,3/10/2019 0:03,30/10/2018 18:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10709,3/10/2019 0:03,30/10/2018 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10660,3/10/2019 0:03,26/06/2018 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10647,3/10/2019 0:03,2/05/2018 7:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10646,3/10/2019 0:03,2/05/2018 7:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10645,3/10/2019 0:03,2/05/2018 7:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10642,3/10/2019 0:03,2/05/2018 7:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10641,3/10/2019 0:03,4/05/2018 3:29,6.8,287, Improper Authentication,nan
CVE-2018-1057,3/10/2019 0:03,13/03/2018 16:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10562,3/10/2019 0:03,4/05/2018 3:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10550,3/10/2019 0:03,30/04/2018 4:29,5.0,269, Improper Privilege Management,nan
CVE-2018-10546,3/10/2019 0:03,29/04/2018 21:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10520,3/10/2019 0:03,27/04/2018 18:29,8.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10519,3/10/2019 0:03,27/04/2018 18:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10518,3/10/2019 0:03,27/04/2018 18:29,8.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10514,3/10/2019 0:03,30/08/2018 19:29,7.2,269, Improper Privilege Management,nan
CVE-2018-10505,3/10/2019 0:03,8/06/2018 14:29,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10431,3/10/2019 0:03,26/04/2018 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10408,3/10/2019 0:03,13/06/2018 22:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-10406,3/10/2019 0:03,13/06/2018 22:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-10405,3/10/2019 0:03,13/06/2018 22:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-10404,3/10/2019 0:03,13/06/2018 22:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-10403,3/10/2019 0:03,13/06/2018 22:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-10381,3/10/2019 0:03,26/04/2018 0:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10369,3/10/2019 0:03,15/08/2018 17:29,10.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10361,3/10/2019 0:03,25/04/2018 5:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-1036,3/10/2019 0:03,14/06/2018 12:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10359,3/10/2019 0:03,8/06/2018 14:29,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10358,3/10/2019 0:03,8/06/2018 14:29,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10355,3/10/2019 0:03,23/05/2018 16:29,1.9,522, Insufficiently Protected Credentials,nan
CVE-2018-10354,3/10/2019 0:03,23/05/2018 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1034,3/10/2019 0:03,12/04/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10327,3/10/2019 0:03,17/05/2018 19:29,1.9,522, Insufficiently Protected Credentials,nan
CVE-2018-1032,3/10/2019 0:03,12/04/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10289,3/10/2019 0:03,22/04/2018 5:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10286,3/10/2019 0:03,22/04/2018 13:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-10285,3/10/2019 0:03,22/04/2018 13:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10254,3/10/2019 0:03,21/04/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-10251,3/10/2019 0:03,4/05/2018 20:29,10.0,862, Missing Authorization,nan
CVE-2018-10229,3/10/2019 0:03,4/05/2018 20:29,5.8,200, Information Exposure,nan
CVE-2018-10212,3/10/2019 0:03,25/04/2018 18:29,5.5,863, Incorrect Authorization,nan
CVE-2018-10211,3/10/2019 0:03,25/04/2018 18:29,5.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2018-10207,3/10/2019 0:03,25/04/2018 18:29,5.0,862, Missing Authorization,nan
CVE-2018-10205,3/10/2019 0:03,19/04/2018 8:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-10204,3/10/2019 0:03,18/04/2018 21:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10193,3/10/2019 0:03,18/04/2018 0:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-10190,3/10/2019 0:03,17/04/2018 20:29,7.2,269, Improper Privilege Management,nan
CVE-2018-10187,3/10/2019 0:03,17/04/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10186,3/10/2019 0:03,17/04/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10177,3/10/2019 0:03,16/04/2018 23:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-10172,3/10/2019 0:03,16/04/2018 22:29,7.2,269, Improper Privilege Management,nan
CVE-2018-10170,3/10/2019 0:03,16/04/2018 21:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10169,3/10/2019 0:03,16/04/2018 21:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-10168,3/10/2019 0:03,3/05/2018 18:29,6.5,269, Improper Privilege Management,nan
CVE-2018-1016,3/10/2019 0:03,12/04/2018 1:29,9.3,20, Improper Input Validation,nan
CVE-2018-1015,3/10/2019 0:03,12/04/2018 1:29,9.3,20, Improper Input Validation,nan
CVE-2018-10143,3/10/2019 0:03,12/12/2018 0:29,10.0,269, Improper Privilege Management,nan
CVE-2018-1014,3/10/2019 0:03,12/04/2018 1:29,4.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1013,3/10/2019 0:03,12/04/2018 1:29,9.3,20, Improper Input Validation,nan
CVE-2018-1012,3/10/2019 0:03,12/04/2018 1:29,9.3,20, Improper Input Validation,nan
CVE-2018-1010,3/10/2019 0:03,12/04/2018 1:29,9.3,20, Improper Input Validation,nan
CVE-2018-10093,3/10/2019 0:03,21/03/2019 16:00,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-10092,3/10/2019 0:03,22/05/2018 20:29,6.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-10086,3/10/2019 0:03,13/04/2018 5:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10084,3/10/2019 0:03,13/04/2018 5:29,6.5,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-1005,3/10/2019 0:03,12/04/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10024,3/10/2019 0:03,11/04/2018 17:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1002150,3/10/2019 0:03,4/04/2018 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000885,3/10/2019 0:03,20/12/2018 21:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1000872,3/10/2019 0:03,20/12/2018 17:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-1000866,3/10/2019 0:03,10/12/2018 14:29,6.5,269, Improper Privilege Management,nan
CVE-2018-1000865,3/10/2019 0:03,10/12/2018 14:29,6.5,269, Improper Privilege Management,nan
CVE-2018-1000864,3/10/2019 0:03,10/12/2018 14:29,4.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-1000863,3/10/2019 0:03,10/12/2018 14:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000832,3/10/2019 0:03,20/12/2018 15:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-1000817,3/10/2019 0:03,20/12/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000805,3/10/2019 0:03,8/10/2018 15:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000660,3/10/2019 0:03,6/09/2018 17:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000649,3/10/2019 0:03,20/08/2018 19:31,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000648,3/10/2019 0:03,20/08/2018 19:31,6.5,269, Improper Privilege Management,nan
CVE-2018-1000647,3/10/2019 0:03,20/08/2018 19:31,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000634,3/10/2019 0:03,20/08/2018 19:31,6.5,269, Improper Privilege Management,nan
CVE-2018-1000627,3/10/2019 0:03,28/12/2018 16:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1000624,3/10/2019 0:03,28/12/2018 16:29,7.8,269, Improper Privilege Management,nan
CVE-2018-1000621,3/10/2019 0:03,9/07/2018 20:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000610,3/10/2019 0:03,26/06/2018 17:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1000608,3/10/2019 0:03,26/06/2018 17:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1000603,3/10/2019 0:03,26/06/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-1000600,3/10/2019 0:03,26/06/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-1000511,3/10/2019 0:03,26/06/2018 16:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000510,3/10/2019 0:03,26/06/2018 16:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000509,3/10/2019 0:03,26/06/2018 16:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1000503,3/10/2019 0:03,26/06/2018 16:29,4.0,269, Improper Privilege Management,nan
CVE-2018-1000502,3/10/2019 0:03,26/06/2018 16:29,6.5,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2018-1000420,3/10/2019 0:03,9/01/2019 23:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1000404,3/10/2019 0:03,9/07/2018 13:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-1000403,3/10/2019 0:03,9/07/2018 13:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-1000401,3/10/2019 0:03,9/07/2018 13:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-1000400,3/10/2019 0:03,18/05/2018 18:29,6.5,269, Improper Privilege Management,nan
CVE-2018-1000301,3/10/2019 0:03,24/05/2018 13:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-1000226,3/10/2019 0:03,20/08/2018 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000215,3/10/2019 0:03,20/08/2018 20:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-1000211,3/10/2019 0:03,13/07/2018 18:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000209,3/10/2019 0:03,13/07/2018 18:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000207,3/10/2019 0:03,13/07/2018 18:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000197,3/10/2019 0:03,5/06/2018 21:29,5.5,863, Incorrect Authorization,nan
CVE-2018-1000193,3/10/2019 0:03,5/06/2018 21:29,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1000180,3/10/2019 0:03,5/06/2018 13:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-1000165,3/10/2019 0:03,18/04/2018 19:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000158,3/10/2019 0:03,18/04/2018 19:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000155,3/10/2019 0:03,24/05/2018 13:29,7.5,863, Incorrect Authorization,nan
CVE-2018-1000152,3/10/2019 0:03,5/04/2018 13:29,6.5,863, Incorrect Authorization,nan
CVE-2018-1000145,3/10/2019 0:03,5/04/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-1000141,3/10/2019 0:03,23/03/2018 21:29,7.5,269, Improper Privilege Management,nan
CVE-2018-1000136,3/10/2019 0:03,23/03/2018 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-1000134,3/10/2019 0:03,16/03/2018 14:29,7.5,521, Weak Password Requirements,nan
CVE-2018-1000133,3/10/2019 0:03,16/03/2018 14:29,6.0,269, Improper Privilege Management,nan
CVE-2018-1000132,3/10/2019 0:03,14/03/2018 13:29,6.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000122,3/10/2019 0:03,14/03/2018 18:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-1000114,3/10/2019 0:03,13/03/2018 13:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1000112,3/10/2019 0:03,13/03/2018 13:29,5.0,863, Incorrect Authorization,nan
CVE-2018-1000111,3/10/2019 0:03,13/03/2018 13:29,5.0,863, Incorrect Authorization,nan
CVE-2018-1000110,3/10/2019 0:03,13/03/2018 13:29,5.0,863, Incorrect Authorization,nan
CVE-2018-1000109,3/10/2019 0:03,13/03/2018 13:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1000107,3/10/2019 0:03,13/03/2018 13:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1000106,3/10/2019 0:03,13/03/2018 13:29,5.5,863, Incorrect Authorization,nan
CVE-2018-1000105,3/10/2019 0:03,13/03/2018 13:29,4.0,863, Incorrect Authorization,nan
CVE-2018-1000104,3/10/2019 0:03,13/03/2018 13:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2018-1000080,3/10/2019 0:03,13/03/2018 15:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000075,3/10/2019 0:03,13/03/2018 15:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2018-1000072,3/10/2019 0:03,13/03/2018 15:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000071,3/10/2019 0:03,13/03/2018 15:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000060,3/10/2019 0:03,9/02/2018 23:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1000057,3/10/2019 0:03,9/02/2018 23:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2018-1000036,3/10/2019 0:03,24/05/2018 13:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2018-1000028,3/10/2019 0:03,9/02/2018 23:29,5.8,269, Improper Privilege Management,nan
CVE-2018-1000025,3/10/2019 0:03,9/02/2018 23:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000022,3/10/2019 0:03,9/02/2018 23:29,2.6,862, Missing Authorization,nan
CVE-2018-1000018,3/10/2019 0:03,24/01/2018 14:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1000015,3/10/2019 0:03,23/01/2018 14:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-1000001,3/10/2019 0:03,31/01/2018 14:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-0982,3/10/2019 0:03,14/06/2018 12:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0966,3/10/2019 0:03,12/04/2018 1:29,2.1,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2018-0947,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0944,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0923,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0921,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0917,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0916,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0915,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0914,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0913,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0912,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0911,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0910,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0909,3/10/2019 0:03,14/03/2018 17:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0908,3/10/2019 0:03,26/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0868,3/10/2019 0:03,14/03/2018 17:29,6.9,20, Improper Input Validation,nan
CVE-2018-0828,3/10/2019 0:03,15/02/2018 2:29,4.6,522, Insufficiently Protected Credentials,nan
CVE-2018-0821,3/10/2019 0:03,15/02/2018 2:29,4.4,269, Improper Privilege Management,nan
CVE-2018-0786,3/10/2019 0:03,10/01/2018 1:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-0752,3/10/2019 0:03,4/01/2018 14:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0751,3/10/2019 0:03,4/01/2018 14:29,3.6,269, Improper Privilege Management,nan
CVE-2018-0748,3/10/2019 0:03,4/01/2018 14:29,4.6,269, Improper Privilege Management,nan
CVE-2018-0737,3/10/2019 0:03,16/04/2018 18:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-0718,3/10/2019 0:03,14/09/2018 12:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0714,3/10/2019 0:03,13/08/2018 13:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0712,3/10/2019 0:03,21/06/2018 13:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0710,3/10/2019 0:03,17/07/2018 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0709,3/10/2019 0:03,17/07/2018 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0708,3/10/2019 0:03,17/07/2018 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0707,3/10/2019 0:03,17/07/2018 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0671,3/10/2019 0:03,9/01/2019 23:29,4.6,269, Improper Privilege Management,nan
CVE-2018-0613,3/10/2019 0:03,26/07/2018 17:29,6.5,269, Improper Privilege Management,nan
CVE-2018-0610,3/10/2019 0:03,26/06/2018 14:29,6.5,269, Improper Privilege Management,nan
CVE-2018-0573,3/10/2019 0:03,26/06/2018 14:29,5.0,269, Improper Privilege Management,nan
CVE-2018-0566,3/10/2019 0:03,26/06/2018 14:29,4.0,269, Improper Privilege Management,nan
CVE-2018-0470,3/10/2019 0:03,5/10/2018 14:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0429,3/10/2019 0:03,9/08/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0422,3/10/2019 0:03,5/10/2018 14:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2018-0042,3/10/2019 0:03,11/07/2018 18:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-0015,3/10/2019 0:03,22/02/2018 22:29,8.5,862, Missing Authorization,nan
CVE-2018-0010,3/10/2019 0:03,10/01/2018 22:29,4.0,269, Improper Privilege Management,nan
CVE-2017-9969,3/10/2019 0:03,12/02/2018 23:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-9958,3/10/2019 0:03,26/09/2017 1:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9955,3/10/2019 0:03,26/06/2017 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9954,3/10/2019 0:03,26/06/2017 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9949,3/10/2019 0:03,26/06/2017 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-9936,3/10/2019 0:03,26/06/2017 12:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9935,3/10/2019 0:03,26/06/2017 12:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9870,3/10/2019 0:03,25/06/2017 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9869,3/10/2019 0:03,25/06/2017 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9865,3/10/2019 0:03,25/06/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9860,3/10/2019 0:03,5/08/2017 17:29,10.0,287, Improper Authentication,nan
CVE-2017-9859,3/10/2019 0:03,5/08/2017 17:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-9854,3/10/2019 0:03,5/08/2017 17:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-9853,3/10/2019 0:03,5/08/2017 17:29,5.0,521, Weak Password Requirements,nan
CVE-2017-9852,3/10/2019 0:03,5/08/2017 17:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-9847,3/10/2019 0:03,24/06/2017 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9835,3/10/2019 0:03,26/07/2017 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-9828,3/10/2019 0:03,23/06/2017 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9818,3/10/2019 0:03,24/08/2018 21:29,5.0,521, Weak Password Requirements,nan
CVE-2017-9815,3/10/2019 0:03,22/06/2017 15:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9810,3/10/2019 0:03,17/07/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9804,3/10/2019 0:03,20/09/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-9797,3/10/2019 0:03,3/10/2017 1:29,5.8,200, Information Exposure,nan
CVE-2017-9792,3/10/2019 0:03,4/10/2017 1:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9790,3/10/2019 0:03,29/09/2017 1:34,5.0,416, Use After Free,nan
CVE-2017-9782,3/10/2019 0:03,21/06/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9780,3/10/2019 0:03,21/06/2017 15:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9778,3/10/2019 0:03,21/06/2017 7:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-9766,3/10/2019 0:03,21/06/2017 7:29,5.0,674, Uncontrolled Recursion,nan
CVE-2017-9757,3/10/2019 0:03,19/06/2017 13:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9740,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9739,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9729,3/10/2019 0:03,16/06/2017 15:29,5.0,674, Uncontrolled Recursion,nan
CVE-2017-9727,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9726,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9725,3/10/2019 0:03,21/09/2017 15:29,9.3,682, Incorrect Calculation,nan
CVE-2017-9724,3/10/2019 0:03,21/09/2017 15:29,9.3,269, Improper Privilege Management,nan
CVE-2017-9720,3/10/2019 0:03,21/09/2017 15:29,6.8,193, Off-by-one Error,nan
CVE-2017-9717,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9715,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9712,3/10/2019 0:03,10/01/2018 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9696,3/10/2019 0:03,16/11/2017 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9694,3/10/2019 0:03,30/03/2018 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9690,3/10/2019 0:03,16/11/2017 22:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-9677,3/10/2019 0:03,21/09/2017 15:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9662,3/10/2019 0:03,14/08/2017 16:29,4.6,269, Improper Privilege Management,nan
CVE-2017-9653,3/10/2019 0:03,14/08/2017 16:29,7.5,863, Incorrect Authorization,nan
CVE-2017-9620,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9617,3/10/2019 0:03,14/06/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-9616,3/10/2019 0:03,14/06/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-9615,3/10/2019 0:03,26/06/2017 7:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9612,3/10/2019 0:03,26/07/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-9611,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9610,3/10/2019 0:03,26/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9606,3/10/2019 0:03,15/06/2017 3:29,4.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9604,3/10/2019 0:03,13/06/2017 13:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-9602,3/10/2019 0:03,16/06/2017 13:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9545,3/10/2019 0:03,27/07/2017 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9543,3/10/2019 0:03,12/06/2017 6:29,5.0,287, Improper Authentication,nan
CVE-2017-9514,3/10/2019 0:03,12/10/2017 13:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9501,3/10/2019 0:03,7/06/2017 14:29,4.3,617, Reachable Assertion,nan
CVE-2017-9500,3/10/2019 0:03,7/06/2017 14:29,4.3,617, Reachable Assertion,nan
CVE-2017-9499,3/10/2019 0:03,7/06/2017 14:29,4.3,617, Reachable Assertion,nan
CVE-2017-9498,3/10/2019 0:03,31/07/2017 3:29,2.1,354, Improper Validation of Integrity Check Value,nan
CVE-2017-9494,3/10/2019 0:03,31/07/2017 3:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9483,3/10/2019 0:03,31/07/2017 3:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9482,3/10/2019 0:03,31/07/2017 3:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9479,3/10/2019 0:03,31/07/2017 3:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9474,3/10/2019 0:03,7/06/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9472,3/10/2019 0:03,7/06/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9471,3/10/2019 0:03,7/06/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9465,3/10/2019 0:03,6/06/2017 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-9462,3/10/2019 0:03,6/06/2017 21:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9461,3/10/2019 0:03,6/06/2017 21:29,6.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9450,3/10/2019 0:03,30/10/2017 14:29,7.2,269, Improper Privilege Management,nan
CVE-2017-9440,3/10/2019 0:03,5/06/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9439,3/10/2019 0:03,5/06/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9438,3/10/2019 0:03,5/06/2017 17:29,5.0,674, Uncontrolled Recursion,nan
CVE-2017-9410,3/10/2019 0:03,27/07/2017 6:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9409,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9408,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9407,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9406,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9405,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9404,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9403,3/10/2019 0:03,2/06/2017 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9378,3/10/2019 0:03,2/06/2017 15:29,4.0,863, Incorrect Authorization,nan
CVE-2017-9377,3/10/2019 0:03,30/10/2017 14:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9375,3/10/2019 0:03,16/06/2017 22:29,1.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9374,3/10/2019 0:03,16/06/2017 22:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9373,3/10/2019 0:03,16/06/2017 22:29,1.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9358,3/10/2019 0:03,2/06/2017 5:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9352,3/10/2019 0:03,2/06/2017 5:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9350,3/10/2019 0:03,2/06/2017 5:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-9349,3/10/2019 0:03,2/06/2017 5:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9346,3/10/2019 0:03,2/06/2017 5:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9345,3/10/2019 0:03,2/06/2017 5:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9333,3/10/2019 0:03,18/09/2017 1:29,6.8,20, Improper Input Validation,nan
CVE-2017-9328,3/10/2019 0:03,15/09/2017 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9324,3/10/2019 0:03,12/06/2017 6:29,6.5,269, Improper Privilege Management,nan
CVE-2017-9310,3/10/2019 0:03,8/06/2017 16:29,1.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9304,3/10/2019 0:03,31/05/2017 4:29,5.0,674, Uncontrolled Recursion,nan
CVE-2017-9265,3/10/2019 0:03,29/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9264,3/10/2019 0:03,29/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9262,3/10/2019 0:03,29/05/2017 4:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9261,3/10/2019 0:03,29/05/2017 4:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9260,3/10/2019 0:03,27/07/2017 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9258,3/10/2019 0:03,27/07/2017 6:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9257,3/10/2019 0:03,27/06/2017 12:29,7.1,834, Excessive Iteration,nan
CVE-2017-9256,3/10/2019 0:03,27/06/2017 12:29,7.1,834, Excessive Iteration,nan
CVE-2017-9255,3/10/2019 0:03,27/06/2017 12:29,7.1,834, Excessive Iteration,nan
CVE-2017-9254,3/10/2019 0:03,27/06/2017 12:29,7.1,834, Excessive Iteration,nan
CVE-2017-9253,3/10/2019 0:03,27/06/2017 12:29,7.1,834, Excessive Iteration,nan
CVE-2017-9248,3/10/2019 0:03,3/07/2017 19:29,7.5,522, Insufficiently Protected Credentials,nan
CVE-2017-9233,3/10/2019 0:03,25/07/2017 20:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9232,3/10/2019 0:03,28/05/2017 0:29,10.0,862, Missing Authorization,nan
CVE-2017-9222,3/10/2019 0:03,27/06/2017 12:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9212,3/10/2019 0:03,23/05/2017 14:29,7.8,134, Use of Externally-Controlled Format String,nan
CVE-2017-9210,3/10/2019 0:03,23/05/2017 4:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9209,3/10/2019 0:03,23/05/2017 4:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9208,3/10/2019 0:03,23/05/2017 4:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9207,3/10/2019 0:03,23/05/2017 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9206,3/10/2019 0:03,23/05/2017 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9203,3/10/2019 0:03,23/05/2017 4:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-9196,3/10/2019 0:03,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9195,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9194,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9193,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9171,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9166,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9165,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9164,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9152,3/10/2019 0:03,23/05/2017 4:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9143,3/10/2019 0:03,22/05/2017 14:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9142,3/10/2019 0:03,22/05/2017 14:29,4.3,617, Reachable Assertion,nan
CVE-2017-9141,3/10/2019 0:03,22/05/2017 14:29,4.3,617, Reachable Assertion,nan
CVE-2017-9137,3/10/2019 0:03,21/05/2017 21:29,7.5,1188, Insecure Default Initialization of Resource,nan
CVE-2017-9136,3/10/2019 0:03,21/05/2017 21:29,7.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-9128,3/10/2019 0:03,12/06/2017 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9125,3/10/2019 0:03,12/06/2017 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9122,3/10/2019 0:03,12/06/2017 6:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9117,3/10/2019 0:03,21/05/2017 19:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9094,3/10/2019 0:03,19/05/2017 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9093,3/10/2019 0:03,19/05/2017 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-9062,3/10/2019 0:03,18/05/2017 14:29,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9060,3/10/2019 0:03,1/06/2017 16:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-9059,3/10/2019 0:03,18/05/2017 6:29,4.9,404, Improper Resource Shutdown or Release,nan
CVE-2017-9058,3/10/2019 0:03,18/05/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9050,3/10/2019 0:03,18/05/2017 6:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9049,3/10/2019 0:03,18/05/2017 6:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9045,3/10/2019 0:03,18/05/2017 6:29,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-9039,3/10/2019 0:03,18/05/2017 1:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-9036,3/10/2019 0:03,26/05/2017 1:29,7.2,862, Missing Authorization,nan
CVE-2017-9035,3/10/2019 0:03,26/05/2017 1:29,5.8,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-8932,3/10/2019 0:03,6/07/2017 16:29,4.3,682, Incorrect Calculation,nan
CVE-2017-8925,3/10/2019 0:03,12/05/2017 21:29,2.1,404, Improper Resource Shutdown or Release,nan
CVE-2017-8915,3/10/2019 0:03,23/05/2017 4:29,5.0,617, Reachable Assertion,nan
CVE-2017-8907,3/10/2019 0:03,14/06/2017 20:29,6.5,863, Incorrect Authorization,nan
CVE-2017-8905,3/10/2019 0:03,11/05/2017 19:29,6.8,682, Incorrect Calculation,nan
CVE-2017-8899,3/10/2019 0:03,11/05/2017 17:29,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8898,3/10/2019 0:03,11/05/2017 17:29,7.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8891,3/10/2019 0:03,10/05/2017 16:29,4.3,1187, Use of Uninitialized Resource,nan
CVE-2017-8879,3/10/2019 0:03,10/05/2017 14:29,4.6,287, Improper Authentication,nan
CVE-2017-8871,3/10/2019 0:03,12/06/2017 6:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-8861,3/10/2019 0:03,22/11/2017 8:29,7.5,287, Improper Authentication,nan
CVE-2017-8858,3/10/2019 0:03,9/05/2017 21:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8857,3/10/2019 0:03,9/05/2017 21:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8856,3/10/2019 0:03,9/05/2017 21:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8851,3/10/2019 0:03,11/05/2017 18:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-8850,3/10/2019 0:03,11/05/2017 18:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-8837,3/10/2019 0:03,5/06/2017 14:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-8830,3/10/2019 0:03,8/05/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8799,3/10/2019 0:03,5/05/2017 18:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8793,3/10/2019 0:03,5/05/2017 18:29,6.8,346, Origin Validation Error,nan
CVE-2017-8787,3/10/2019 0:03,5/05/2017 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-8779,3/10/2019 0:03,4/05/2017 14:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-8765,3/10/2019 0:03,4/05/2017 4:59,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8754,3/10/2019 0:03,13/09/2017 1:29,4.0,20, Improper Input Validation,nan
CVE-2017-8727,3/10/2019 0:03,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8726,3/10/2019 0:03,13/10/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8723,3/10/2019 0:03,13/09/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-8710,3/10/2019 0:03,13/09/2017 1:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8691,3/10/2019 0:03,8/08/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8665,3/10/2019 0:03,15/08/2017 18:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8663,3/10/2019 0:03,1/08/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8660,3/10/2019 0:03,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8650,3/10/2019 0:03,8/08/2017 21:29,5.8,346, Origin Validation Error,nan
CVE-2017-8633,3/10/2019 0:03,8/08/2017 21:29,8.5,863, Incorrect Authorization,nan
CVE-2017-8625,3/10/2019 0:03,8/08/2017 21:29,6.8,276, Incorrect Default Permissions,nan
CVE-2017-8613,3/10/2019 0:03,29/06/2017 13:29,6.8,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-8599,3/10/2019 0:03,11/07/2017 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-8593,3/10/2019 0:03,8/08/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8590,3/10/2019 0:03,11/07/2017 21:29,4.6,281, Improper Preservation of Permissions,nan
CVE-2017-8589,3/10/2019 0:03,11/07/2017 21:29,10.0,281, Improper Preservation of Permissions,nan
CVE-2017-8581,3/10/2019 0:03,11/07/2017 21:29,3.7,281, Improper Preservation of Permissions,nan
CVE-2017-8580,3/10/2019 0:03,11/07/2017 21:29,6.2,281, Improper Preservation of Permissions,nan
CVE-2017-8579,3/10/2019 0:03,29/06/2017 13:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8578,3/10/2019 0:03,11/07/2017 21:29,9.3,281, Improper Preservation of Permissions,nan
CVE-2017-8577,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8576,3/10/2019 0:03,29/06/2017 13:29,6.9,665, Improper Initialization,nan
CVE-2017-8574,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8573,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8571,3/10/2019 0:03,1/08/2017 20:29,6.8,20, Improper Input Validation,nan
CVE-2017-8569,3/10/2019 0:03,11/07/2017 21:29,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8566,3/10/2019 0:03,11/07/2017 21:29,4.4,20, Improper Input Validation,nan
CVE-2017-8563,3/10/2019 0:03,11/07/2017 21:29,5.1,281, Improper Preservation of Permissions,nan
CVE-2017-8562,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8561,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8558,3/10/2019 0:03,29/06/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8556,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8552,3/10/2019 0:03,15/06/2017 1:29,7.2,281, Improper Preservation of Permissions,nan
CVE-2017-8543,3/10/2019 0:03,15/06/2017 1:29,10.0,281, Improper Preservation of Permissions,nan
CVE-2017-8542,3/10/2019 0:03,26/05/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-8539,3/10/2019 0:03,26/05/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-8537,3/10/2019 0:03,26/05/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-8536,3/10/2019 0:03,26/05/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-8535,3/10/2019 0:03,26/05/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-8530,3/10/2019 0:03,15/06/2017 1:29,5.8,346, Origin Validation Error,nan
CVE-2017-8523,3/10/2019 0:03,15/06/2017 1:29,4.3,346, Origin Validation Error,nan
CVE-2017-8494,3/10/2019 0:03,15/06/2017 1:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8493,3/10/2019 0:03,15/06/2017 1:29,2.1,178, Improper Handling of Case Sensitivity,nan
CVE-2017-8468,3/10/2019 0:03,15/06/2017 1:29,7.2,281, Improper Preservation of Permissions,nan
CVE-2017-8467,3/10/2019 0:03,11/07/2017 21:29,6.9,281, Improper Preservation of Permissions,nan
CVE-2017-8466,3/10/2019 0:03,15/06/2017 1:29,7.2,281, Improper Preservation of Permissions,nan
CVE-2017-8465,3/10/2019 0:03,15/06/2017 1:29,7.2,281, Improper Preservation of Permissions,nan
CVE-2017-8460,3/10/2019 0:03,15/06/2017 1:29,4.4,200, Information Exposure,nan
CVE-2017-8458,3/10/2019 0:03,3/05/2017 14:59,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-8422,3/10/2019 0:03,17/05/2017 14:29,7.2,290, Authentication Bypass by Spoofing,nan
CVE-2017-8421,3/10/2019 0:03,2/05/2017 17:59,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8418,3/10/2019 0:03,2/05/2017 14:59,2.1,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-8403,3/10/2019 0:03,1/05/2017 20:59,8.3,287, Improper Authentication,nan
CVE-2017-8393,3/10/2019 0:03,1/05/2017 18:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-8391,3/10/2019 0:03,6/05/2017 0:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8379,3/10/2019 0:03,23/05/2017 4:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8378,3/10/2019 0:03,1/05/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8372,3/10/2019 0:03,1/05/2017 1:59,2.6,617, Reachable Assertion,nan
CVE-2017-8371,3/10/2019 0:03,30/04/2017 20:59,4.0,522, Insufficiently Protected Credentials,nan
CVE-2017-8365,3/10/2019 0:03,30/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-8363,3/10/2019 0:03,30/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-8357,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8356,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8355,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8354,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8353,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8352,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8351,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8350,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8349,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8348,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8347,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8346,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8345,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8344,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8343,3/10/2019 0:03,30/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8338,3/10/2019 0:03,18/05/2017 6:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-8327,3/10/2019 0:03,29/04/2017 20:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-8326,3/10/2019 0:03,29/04/2017 20:59,6.8,682, Incorrect Calculation,nan
CVE-2017-8314,3/10/2019 0:03,23/05/2017 21:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8309,3/10/2019 0:03,23/05/2017 4:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8308,3/10/2019 0:03,27/04/2017 20:59,5.0,269, Improper Privilege Management,nan
CVE-2017-8301,3/10/2019 0:03,27/04/2017 17:59,2.6,295, Improper Certificate Validation,nan
CVE-2017-8296,3/10/2019 0:03,27/04/2017 15:59,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-8284,3/10/2019 0:03,26/04/2017 14:59,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-8280,3/10/2019 0:03,21/09/2017 15:29,5.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8279,3/10/2019 0:03,16/11/2017 22:29,5.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8278,3/10/2019 0:03,21/09/2017 15:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-8277,3/10/2019 0:03,21/09/2017 15:29,6.8,416, Use After Free,nan
CVE-2017-8276,3/10/2019 0:03,18/01/2019 22:29,4.6,863, Incorrect Authorization,nan
CVE-2017-8268,3/10/2019 0:03,18/08/2017 18:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-8264,3/10/2019 0:03,11/08/2017 15:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-8259,3/10/2019 0:03,11/08/2017 15:29,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-8257,3/10/2019 0:03,18/08/2017 18:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8256,3/10/2019 0:03,18/08/2017 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-8253,3/10/2019 0:03,18/08/2017 18:29,9.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-8251,3/10/2019 0:03,21/09/2017 15:29,6.8,129, Improper Validation of Array Index,nan
CVE-2017-8250,3/10/2019 0:03,21/09/2017 15:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-8247,3/10/2019 0:03,21/09/2017 15:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-8240,3/10/2019 0:03,13/06/2017 20:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-8234,3/10/2019 0:03,13/06/2017 20:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-8225,3/10/2019 0:03,25/04/2017 20:59,7.5,522, Insufficiently Protected Credentials,nan
CVE-2017-8222,3/10/2019 0:03,25/04/2017 20:59,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-8221,3/10/2019 0:03,25/04/2017 20:59,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-8220,3/10/2019 0:03,25/04/2017 20:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8218,3/10/2019 0:03,25/04/2017 20:59,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-8201,3/10/2019 0:03,22/11/2017 19:29,4.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8196,3/10/2019 0:03,22/11/2017 19:29,4.6,863, Incorrect Authorization,nan
CVE-2017-8192,3/10/2019 0:03,22/11/2017 19:29,4.6,863, Incorrect Authorization,nan
CVE-2017-8187,3/10/2019 0:03,20/03/2018 15:29,6.5,269, Improper Privilege Management,nan
CVE-2017-8185,3/10/2019 0:03,22/11/2017 19:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-8171,3/10/2019 0:03,22/11/2017 19:29,4.9,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-8168,3/10/2019 0:03,22/11/2017 19:29,3.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-8161,3/10/2019 0:03,22/11/2017 19:29,4.9,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-8158,3/10/2019 0:03,22/11/2017 19:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-8157,3/10/2019 0:03,22/11/2017 19:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-8154,3/10/2019 0:03,11/04/2018 17:29,2.6,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-8144,3/10/2019 0:03,22/11/2017 19:29,7.1,920, Improper Restriction of Power Consumption,nan
CVE-2017-8129,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8128,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8126,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8124,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8123,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8122,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8120,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8119,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8117,3/10/2019 0:03,22/11/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-8116,3/10/2019 0:03,3/07/2017 16:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8114,3/10/2019 0:03,29/04/2017 19:59,6.5,269, Improper Privilege Management,nan
CVE-2017-8112,3/10/2019 0:03,2/05/2017 14:59,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-8108,3/10/2019 0:03,8/06/2017 16:29,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-8086,3/10/2019 0:03,2/05/2017 14:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-8083,3/10/2019 0:03,6/06/2017 14:29,7.2,862, Missing Authorization,nan
CVE-2017-8081,3/10/2019 0:03,30/04/2017 19:59,6.8,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-8080,3/10/2019 0:03,5/05/2017 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-8077,3/10/2019 0:03,23/04/2017 16:59,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-8055,3/10/2019 0:03,22/04/2017 22:59,5.0,203, Information Exposure Through Discrepancy,nan
CVE-2017-8054,3/10/2019 0:03,22/04/2017 22:59,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-8053,3/10/2019 0:03,22/04/2017 21:59,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-8051,3/10/2019 0:03,21/04/2017 18:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8039,3/10/2019 0:03,27/11/2017 10:29,4.3,1188, Insecure Default Initialization of Resource,nan
CVE-2017-8034,3/10/2019 0:03,17/07/2017 14:29,6.0,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2017-8032,3/10/2019 0:03,10/07/2017 20:29,6.0,269, Improper Privilege Management,nan
CVE-2017-8028,3/10/2019 0:03,27/11/2017 10:29,5.1,287, Improper Authentication,nan
CVE-2017-8021,3/10/2019 0:03,3/10/2017 1:29,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-8001,3/10/2019 0:03,28/11/2017 7:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-7982,3/10/2019 0:03,20/04/2017 14:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-7981,3/10/2019 0:03,29/04/2017 16:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7966,3/10/2019 0:03,7/06/2017 19:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-7964,3/10/2019 0:03,19/04/2017 16:59,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-7963,3/10/2019 0:03,19/04/2017 15:59,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-7960,3/10/2019 0:03,19/04/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7945,3/10/2019 0:03,29/04/2017 0:59,5.0,209, Information Exposure Through an Error Message,nan
CVE-2017-7943,3/10/2019 0:03,18/04/2017 19:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7942,3/10/2019 0:03,18/04/2017 19:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7941,3/10/2019 0:03,18/04/2017 19:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7939,3/10/2019 0:03,18/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7933,3/10/2019 0:03,6/06/2018 20:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-7899,3/10/2019 0:03,30/06/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-7898,3/10/2019 0:03,30/06/2017 3:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-7895,3/10/2019 0:03,28/04/2017 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7889,3/10/2019 0:03,17/04/2017 0:59,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7884,3/10/2019 0:03,16/06/2017 13:29,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-7854,3/10/2019 0:03,13/04/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7850,3/10/2019 0:03,19/04/2017 14:59,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7849,3/10/2019 0:03,19/04/2017 14:59,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7836,3/10/2019 0:03,11/06/2018 21:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2017-7821,3/10/2019 0:03,11/06/2018 21:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7816,3/10/2019 0:03,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7813,3/10/2019 0:03,11/06/2018 21:29,6.4,704, Incorrect Type Conversion or Cast,nan
CVE-2017-7807,3/10/2019 0:03,11/06/2018 21:29,5.8,20, Improper Input Validation,nan
CVE-2017-7803,3/10/2019 0:03,11/06/2018 21:29,5.0,269, Improper Privilege Management,nan
CVE-2017-7794,3/10/2019 0:03,11/06/2018 21:29,4.6,276, Incorrect Default Permissions,nan
CVE-2017-7782,3/10/2019 0:03,11/06/2018 21:29,5.0,269, Improper Privilege Management,nan
CVE-2017-7767,3/10/2019 0:03,11/06/2018 21:29,2.1,269, Improper Privilege Management,nan
CVE-2017-7765,3/10/2019 0:03,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7761,3/10/2019 0:03,11/06/2018 21:29,3.6,276, Incorrect Default Permissions,nan
CVE-2017-7748,3/10/2019 0:03,12/04/2017 23:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7746,3/10/2019 0:03,12/04/2017 23:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7745,3/10/2019 0:03,12/04/2017 23:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7737,3/10/2019 0:03,10/08/2017 21:29,4.0,552, Files or Directories Accessible to External Parties,nan
CVE-2017-7729,3/10/2019 0:03,11/07/2017 17:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-7716,3/10/2019 0:03,12/04/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7705,3/10/2019 0:03,12/04/2017 23:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7704,3/10/2019 0:03,12/04/2017 23:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7702,3/10/2019 0:03,12/04/2017 23:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7701,3/10/2019 0:03,12/04/2017 23:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7700,3/10/2019 0:03,12/04/2017 23:59,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7697,3/10/2019 0:03,11/04/2017 23:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7696,3/10/2019 0:03,14/04/2017 18:59,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-7690,3/10/2019 0:03,14/04/2017 18:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7684,3/10/2019 0:03,17/07/2017 13:18,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7677,3/10/2019 0:03,14/06/2017 17:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7673,3/10/2019 0:03,17/07/2017 13:18,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-7670,3/10/2019 0:03,10/07/2017 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7658,3/10/2019 0:03,26/06/2018 17:29,7.5,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-7654,3/10/2019 0:03,5/06/2018 20:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7650,3/10/2019 0:03,11/09/2017 16:29,4.0,287, Improper Authentication,nan
CVE-2017-7642,3/10/2019 0:03,2/08/2017 19:29,7.2,426, Untrusted Search Path,nan
CVE-2017-7624,3/10/2019 0:03,10/04/2017 17:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7623,3/10/2019 0:03,10/04/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7622,3/10/2019 0:03,10/04/2017 17:59,9.0,862, Missing Authorization,nan
CVE-2017-7619,3/10/2019 0:03,10/04/2017 14:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7618,3/10/2019 0:03,10/04/2017 14:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7612,3/10/2019 0:03,9/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7611,3/10/2019 0:03,9/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7610,3/10/2019 0:03,9/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7608,3/10/2019 0:03,9/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7607,3/10/2019 0:03,9/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7605,3/10/2019 0:03,9/04/2017 14:59,6.8,617, Reachable Assertion,nan
CVE-2017-7594,3/10/2019 0:03,9/04/2017 14:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7563,3/10/2019 0:03,7/06/2017 15:29,6.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7561,3/10/2019 0:03,13/09/2017 17:29,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-7542,3/10/2019 0:03,21/07/2017 16:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7536,3/10/2019 0:03,10/01/2018 15:29,4.4,470, Use of Externally-Controlled Input to Select Classes or Code (‘Unsafe Reflection’),nan
CVE-2017-7532,3/10/2019 0:03,17/07/2017 17:29,4.0,269, Improper Privilege Management,nan
CVE-2017-7521,3/10/2019 0:03,27/06/2017 13:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7520,3/10/2019 0:03,27/06/2017 13:29,4.0,125, Out-of-bounds Read,nan
CVE-2017-7512,3/10/2019 0:03,7/07/2017 22:29,7.5,863, Incorrect Authorization,nan
CVE-2017-7508,3/10/2019 0:03,27/06/2017 13:29,5.0,617, Reachable Assertion,nan
CVE-2017-7493,3/10/2019 0:03,17/05/2017 15:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7490,3/10/2019 0:03,15/05/2017 14:29,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-7489,3/10/2019 0:03,15/05/2017 14:29,6.5,269, Improper Privilege Management,nan
CVE-2017-7485,3/10/2019 0:03,12/05/2017 19:29,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-7479,3/10/2019 0:03,15/05/2017 18:29,4.0,617, Reachable Assertion,nan
CVE-2017-7472,3/10/2019 0:03,11/05/2017 19:29,4.9,404, Improper Resource Shutdown or Release,nan
CVE-2017-7471,3/10/2019 0:03,9/07/2018 14:29,7.7,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7459,3/10/2019 0:03,26/06/2017 7:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-7454,3/10/2019 0:03,6/04/2017 0:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7450,3/10/2019 0:03,5/04/2017 23:59,10.0,287, Improper Authentication,nan
CVE-2017-7414,3/10/2019 0:03,4/04/2017 14:59,5.1,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7413,3/10/2019 0:03,4/04/2017 14:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7407,3/10/2019 0:03,3/04/2017 20:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7406,3/10/2019 0:03,7/07/2017 12:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-7401,3/10/2019 0:03,3/04/2017 14:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-7397,3/10/2019 0:03,3/04/2017 20:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7396,3/10/2019 0:03,1/04/2017 2:59,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7392,3/10/2019 0:03,1/04/2017 2:59,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7379,3/10/2019 0:03,3/04/2017 5:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7378,3/10/2019 0:03,3/04/2017 5:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7377,3/10/2019 0:03,10/04/2017 15:59,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-7365,3/10/2019 0:03,13/06/2017 20:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-7341,3/10/2019 0:03,26/10/2017 13:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7337,3/10/2019 0:03,27/05/2017 0:29,6.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7315,3/10/2019 0:03,4/07/2017 2:29,10.0,522, Insufficiently Protected Credentials,nan
CVE-2017-7312,3/10/2019 0:03,7/06/2017 13:29,7.5,269, Improper Privilege Management,nan
CVE-2017-7307,3/10/2019 0:03,4/04/2017 16:59,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7306,3/10/2019 0:03,4/04/2017 16:59,1.9,521, Weak Password Requirements,nan
CVE-2017-7305,3/10/2019 0:03,4/04/2017 16:59,2.1,521, Weak Password Requirements,nan
CVE-2017-7293,3/10/2019 0:03,26/04/2017 5:59,7.2,502, Deserialization of Untrusted Data,nan
CVE-2017-7284,3/10/2019 0:03,12/04/2017 22:59,6.5,287, Improper Authentication,nan
CVE-2017-7279,3/10/2019 0:03,12/04/2017 22:59,10.0,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2017-7253,3/10/2019 0:03,30/03/2017 18:59,9.0,922, Insecure Storage of Sensitive Information,nan
CVE-2017-7239,3/10/2019 0:03,10/04/2017 15:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-7235,3/10/2019 0:03,23/03/2017 4:59,6.8,20, Improper Input Validation,nan
CVE-2017-7228,3/10/2019 0:03,4/04/2017 14:59,7.2,129, Improper Validation of Array Index,nan
CVE-2017-7226,3/10/2019 0:03,22/03/2017 16:59,6.4,125, Out-of-bounds Read,nan
CVE-2017-7220,3/10/2019 0:03,21/04/2017 2:59,9.0,20, Improper Input Validation,nan
CVE-2017-7218,3/10/2019 0:03,14/04/2017 14:59,4.6,20, Improper Input Validation,nan
CVE-2017-7206,3/10/2019 0:03,21/03/2017 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2017-7199,3/10/2019 0:03,23/03/2017 16:59,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7180,3/10/2019 0:03,8/06/2017 12:29,6.9,428, Unquoted Search Path or Element,nan
CVE-2017-7161,3/10/2019 0:03,3/04/2018 6:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-7150,3/10/2019 0:03,23/10/2017 1:29,2.1,521, Weak Password Requirements,nan
CVE-2017-7147,3/10/2019 0:03,23/10/2017 1:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-7146,3/10/2019 0:03,23/10/2017 1:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-7133,3/10/2019 0:03,23/10/2017 1:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-7086,3/10/2019 0:03,23/10/2017 1:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-7079,3/10/2019 0:03,23/10/2017 1:29,4.3,552, Files or Directories Accessible to External Parties,nan
CVE-2017-7078,3/10/2019 0:03,23/10/2017 1:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-7063,3/10/2019 0:03,20/07/2017 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7006,3/10/2019 0:03,20/07/2017 16:29,2.6,203, Information Exposure Through Discrepancy,nan
CVE-2017-6981,3/10/2019 0:03,22/05/2017 5:29,9.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-6979,3/10/2019 0:03,22/05/2017 5:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-6972,3/10/2019 0:03,22/03/2017 20:59,10.0,273, Improper Check for Dropped Privileges,nan
CVE-2017-6971,3/10/2019 0:03,22/03/2017 14:59,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-6970,3/10/2019 0:03,22/03/2017 14:59,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6969,3/10/2019 0:03,17/03/2017 9:59,6.4,125, Out-of-bounds Read,nan
CVE-2017-6967,3/10/2019 0:03,17/03/2017 9:59,7.5,287, Improper Authentication,nan
CVE-2017-6964,3/10/2019 0:03,28/03/2017 1:59,7.2,252, Unchecked Return Value,nan
CVE-2017-6954,3/10/2019 0:03,17/03/2017 9:59,4.0,269, Improper Privilege Management,nan
CVE-2017-6950,3/10/2019 0:03,23/03/2017 20:59,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-6931,3/10/2019 0:03,1/03/2018 23:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-6928,3/10/2019 0:03,1/03/2018 23:29,3.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-6911,3/10/2019 0:03,23/03/2017 20:59,2.1,922, Insecure Storage of Sensitive Information,nan
CVE-2017-6903,3/10/2019 0:03,14/03/2017 22:59,9.3,269, Improper Privilege Management,nan
CVE-2017-6896,3/10/2019 0:03,14/03/2017 20:59,6.5,565, Reliance on Cookies without Validation and Integrity Checking,nan
CVE-2017-6888,3/10/2019 0:03,25/04/2018 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6883,3/10/2019 0:03,14/03/2017 9:59,2.6,125, Out-of-bounds Read,nan
CVE-2017-6829,3/10/2019 0:03,20/03/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-6823,3/10/2019 0:03,12/03/2017 5:59,6.5,294, Authentication Bypass by Capture-replay,nan
CVE-2017-6816,3/10/2019 0:03,12/03/2017 1:59,5.5,863, Incorrect Authorization,nan
CVE-2017-6781,3/10/2019 0:03,17/08/2017 20:29,4.6,287, Improper Authentication,nan
CVE-2017-6774,3/10/2019 0:03,17/08/2017 20:29,4.0,552, Files or Directories Accessible to External Parties,nan
CVE-2017-6768,3/10/2019 0:03,17/08/2017 20:29,7.2,426, Untrusted Search Path,nan
CVE-2017-6767,3/10/2019 0:03,17/08/2017 20:29,4.6,269, Improper Privilege Management,nan
CVE-2017-6750,3/10/2019 0:03,25/07/2017 19:29,5.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6748,3/10/2019 0:03,25/07/2017 19:29,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-6732,3/10/2019 0:03,10/07/2017 20:29,7.2,269, Improper Privilege Management,nan
CVE-2017-6728,3/10/2019 0:03,10/07/2017 20:29,6.9,269, Improper Privilege Management,nan
CVE-2017-6694,3/10/2019 0:03,13/06/2017 6:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-6693,3/10/2019 0:03,13/06/2017 6:29,2.1,862, Missing Authorization,nan
CVE-2017-6692,3/10/2019 0:03,13/06/2017 6:29,9.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6690,3/10/2019 0:03,13/06/2017 6:29,4.0,20, Improper Input Validation,nan
CVE-2017-6689,3/10/2019 0:03,13/06/2017 6:29,6.5,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6688,3/10/2019 0:03,13/06/2017 6:29,9.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6687,3/10/2019 0:03,13/06/2017 6:29,6.5,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6686,3/10/2019 0:03,13/06/2017 6:29,6.5,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6685,3/10/2019 0:03,13/06/2017 6:29,6.5,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6684,3/10/2019 0:03,13/06/2017 6:29,9.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-6672,3/10/2019 0:03,25/07/2017 19:29,5.0,863, Incorrect Authorization,nan
CVE-2017-6665,3/10/2019 0:03,7/08/2017 6:29,3.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-6664,3/10/2019 0:03,7/08/2017 6:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-6658,3/10/2019 0:03,16/05/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-6653,3/10/2019 0:03,22/05/2017 1:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-6650,3/10/2019 0:03,22/05/2017 1:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6649,3/10/2019 0:03,22/05/2017 1:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6640,3/10/2019 0:03,8/06/2017 13:29,10.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-6639,3/10/2019 0:03,8/06/2017 13:29,10.0,862, Missing Authorization,nan
CVE-2017-6638,3/10/2019 0:03,8/06/2017 13:29,7.2,20, Improper Input Validation,nan
CVE-2017-6637,3/10/2019 0:03,22/05/2017 1:29,4.0,20, Improper Input Validation,nan
CVE-2017-6635,3/10/2019 0:03,22/05/2017 1:29,6.8,862, Missing Authorization,nan
CVE-2017-6628,3/10/2019 0:03,3/05/2017 21:59,4.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-6624,3/10/2019 0:03,3/05/2017 21:59,5.0,287, Improper Authentication,nan
CVE-2017-6622,3/10/2019 0:03,18/05/2017 19:29,10.0,862, Missing Authorization,nan
CVE-2017-6620,3/10/2019 0:03,3/05/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2017-6615,3/10/2019 0:03,20/04/2017 22:59,6.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-6613,3/10/2019 0:03,20/04/2017 22:59,5.0,20, Improper Input Validation,nan
CVE-2017-6610,3/10/2019 0:03,20/04/2017 22:59,6.8,20, Improper Input Validation,nan
CVE-2017-6602,3/10/2019 0:03,7/04/2017 17:59,3.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6601,3/10/2019 0:03,7/04/2017 17:59,3.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6600,3/10/2019 0:03,7/04/2017 17:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6599,3/10/2019 0:03,7/04/2017 17:59,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6598,3/10/2019 0:03,7/04/2017 17:59,7.2,862, Missing Authorization,nan
CVE-2017-6594,3/10/2019 0:03,28/08/2017 19:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-6590,3/10/2019 0:03,9/03/2017 19:59,6.9,863, Incorrect Authorization,nan
CVE-2017-6565,3/10/2019 0:03,1/05/2017 19:59,6.5,862, Missing Authorization,nan
CVE-2017-6564,3/10/2019 0:03,1/05/2017 19:59,4.0,862, Missing Authorization,nan
CVE-2017-6558,3/10/2019 0:03,9/03/2017 9:59,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-6554,3/10/2019 0:03,14/04/2017 18:59,9.0,20, Improper Input Validation,nan
CVE-2017-6552,3/10/2019 0:03,9/03/2017 9:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-6549,3/10/2019 0:03,9/03/2017 9:59,9.3,287, Improper Authentication,nan
CVE-2017-6532,3/10/2019 0:03,20/07/2017 13:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-6530,3/10/2019 0:03,20/07/2017 13:29,5.0,287, Improper Authentication,nan
CVE-2017-6528,3/10/2019 0:03,9/03/2017 19:59,4.3,522, Insufficiently Protected Credentials,nan
CVE-2017-6526,3/10/2019 0:03,9/03/2017 19:59,10.0,287, Improper Authentication,nan
CVE-2017-6519,3/10/2019 0:03,1/05/2017 1:59,6.4,346, Origin Validation Error,nan
CVE-2017-6517,3/10/2019 0:03,23/03/2017 20:59,10.0,427, Uncontrolled Search Path Element,nan
CVE-2017-6516,3/10/2019 0:03,14/03/2017 17:59,7.2,20, Improper Input Validation,nan
CVE-2017-6507,3/10/2019 0:03,24/03/2017 7:59,4.3,269, Improper Privilege Management,nan
CVE-2017-6505,3/10/2019 0:03,15/03/2017 14:59,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6499,3/10/2019 0:03,6/03/2017 2:59,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6474,3/10/2019 0:03,4/03/2017 3:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6472,3/10/2019 0:03,4/03/2017 3:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6470,3/10/2019 0:03,4/03/2017 3:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6467,3/10/2019 0:03,4/03/2017 3:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6445,3/10/2019 0:03,5/03/2017 20:59,7.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-6444,3/10/2019 0:03,12/03/2017 5:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-6440,3/10/2019 0:03,15/03/2017 14:59,1.9,787, Out-of-bounds Write,nan
CVE-2017-6436,3/10/2019 0:03,15/03/2017 14:59,1.9,20, Improper Input Validation,nan
CVE-2017-6432,3/10/2019 0:03,9/03/2017 17:59,9.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-6421,3/10/2019 0:03,16/08/2017 15:29,5.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-6417,3/10/2019 0:03,21/03/2017 16:59,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-6414,3/10/2019 0:03,15/03/2017 14:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6410,3/10/2019 0:03,2/03/2017 6:59,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-6409,3/10/2019 0:03,2/03/2017 6:59,7.5,306, Missing Authentication for Critical Function,nan
CVE-2017-6408,3/10/2019 0:03,2/03/2017 6:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-6405,3/10/2019 0:03,2/03/2017 6:59,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2017-6404,3/10/2019 0:03,2/03/2017 6:59,2.1,276, Incorrect Default Permissions,nan
CVE-2017-6401,3/10/2019 0:03,2/03/2017 6:59,4.6,269, Improper Privilege Management,nan
CVE-2017-6386,3/10/2019 0:03,15/03/2017 14:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6384,3/10/2019 0:03,2/03/2017 6:59,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6381,3/10/2019 0:03,16/03/2017 14:59,6.8,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2017-6377,3/10/2019 0:03,16/03/2017 14:59,5.0,863, Incorrect Authorization,nan
CVE-2017-6370,3/10/2019 0:03,17/03/2017 17:59,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-6369,3/10/2019 0:03,24/03/2017 10:59,6.5,862, Missing Authorization,nan
CVE-2017-6361,3/10/2019 0:03,23/03/2017 16:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6360,3/10/2019 0:03,23/03/2017 16:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6359,3/10/2019 0:03,23/03/2017 16:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6356,3/10/2019 0:03,20/03/2017 16:59,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-6343,3/10/2019 0:03,27/02/2017 7:59,9.3,287, Improper Authentication,nan
CVE-2017-6342,3/10/2019 0:03,27/02/2017 7:59,10.0,269, Improper Privilege Management,nan
CVE-2017-6341,3/10/2019 0:03,27/02/2017 7:59,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-6339,3/10/2019 0:03,5/04/2017 16:59,4.0,521, Weak Password Requirements,nan
CVE-2017-6338,3/10/2019 0:03,5/04/2017 16:59,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-6334,3/10/2019 0:03,6/03/2017 2:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6329,3/10/2019 0:03,21/08/2017 20:29,4.6,427, Uncontrolled Search Path Element,nan
CVE-2017-6327,3/10/2019 0:03,11/08/2017 20:29,6.5,20, Improper Input Validation,nan
CVE-2017-6317,3/10/2019 0:03,15/03/2017 14:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6314,3/10/2019 0:03,10/03/2017 2:59,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6299,3/10/2019 0:03,24/02/2017 4:59,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6297,3/10/2019 0:03,27/02/2017 7:59,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-6289,3/10/2019 0:03,10/05/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6278,3/10/2019 0:03,26/03/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6274,3/10/2019 0:03,14/11/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6267,3/10/2019 0:03,22/09/2017 17:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6264,3/10/2019 0:03,14/11/2017 17:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-6256,3/10/2019 0:03,28/07/2017 19:29,4.6,20, Improper Input Validation,nan
CVE-2017-6255,3/10/2019 0:03,28/07/2017 19:29,7.2,20, Improper Input Validation,nan
CVE-2017-6254,3/10/2019 0:03,28/07/2017 19:29,7.2,20, Improper Input Validation,nan
CVE-2017-6253,3/10/2019 0:03,28/07/2017 19:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-6251,3/10/2019 0:03,28/07/2017 19:29,7.2,862, Missing Authorization,nan
CVE-2017-6224,3/10/2019 0:03,13/10/2017 17:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6214,3/10/2019 0:03,23/02/2017 17:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6188,3/10/2019 0:03,22/02/2017 19:59,1.9,20, Improper Input Validation,nan
CVE-2017-6186,3/10/2019 0:03,21/03/2017 16:59,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-6182,3/10/2019 0:03,30/03/2017 17:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6168,3/10/2019 0:03,17/11/2017 19:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-6153,3/10/2019 0:03,1/06/2018 14:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-6152,3/10/2019 0:03,8/03/2018 14:29,2.1,269, Improper Privilege Management,nan
CVE-2017-6135,3/10/2019 0:03,21/12/2017 17:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-6104,3/10/2019 0:03,2/03/2017 22:59,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-6100,3/10/2019 0:03,23/02/2017 19:59,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-6087,3/10/2019 0:03,24/03/2017 14:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6080,3/10/2019 0:03,13/03/2017 6:59,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6056,3/10/2019 0:03,17/02/2017 7:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-6014,3/10/2019 0:03,17/02/2017 7:59,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-5997,3/10/2019 0:03,15/02/2017 19:59,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5993,3/10/2019 0:03,15/03/2017 14:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5987,3/10/2019 0:03,20/03/2017 16:59,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-5986,3/10/2019 0:03,18/02/2017 21:59,7.1,617, Reachable Assertion,nan
CVE-2017-5985,3/10/2019 0:03,14/03/2017 17:59,2.1,862, Missing Authorization,nan
CVE-2017-5981,3/10/2019 0:03,1/03/2017 15:59,4.3,617, Reachable Assertion,nan
CVE-2017-5973,3/10/2019 0:03,27/03/2017 15:59,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-5972,3/10/2019 0:03,14/02/2017 6:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-5970,3/10/2019 0:03,14/02/2017 6:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-5959,3/10/2019 0:03,21/02/2017 7:59,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5948,3/10/2019 0:03,11/05/2017 18:29,4.3,20, Improper Input Validation,nan
CVE-2017-5944,3/10/2019 0:03,3/07/2017 16:29,6.5,20, Improper Input Validation,nan
CVE-2017-5940,3/10/2019 0:03,9/02/2017 18:59,4.6,269, Improper Privilege Management,nan
CVE-2017-5930,3/10/2019 0:03,20/03/2017 16:59,3.5,862, Missing Authorization,nan
CVE-2017-5898,3/10/2019 0:03,15/03/2017 19:59,2.1,190, Integer Overflow or Wraparound,nan
CVE-2017-5867,3/10/2019 0:03,3/03/2017 15:59,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-5857,3/10/2019 0:03,16/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5856,3/10/2019 0:03,16/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5852,3/10/2019 0:03,1/03/2017 15:59,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-5850,3/10/2019 0:03,27/03/2017 15:59,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-5844,3/10/2019 0:03,9/02/2017 15:59,4.3,369, Divide By Zero,nan
CVE-2017-5839,3/10/2019 0:03,9/02/2017 15:59,5.0,674, Uncontrolled Recursion,nan
CVE-2017-5837,3/10/2019 0:03,9/02/2017 15:59,4.3,369, Divide By Zero,nan
CVE-2017-5835,3/10/2019 0:03,3/03/2017 15:59,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-5830,3/10/2019 0:03,3/03/2017 15:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-5789,3/10/2019 0:03,11/10/2017 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5738,3/10/2019 0:03,16/11/2017 14:29,6.4,200, Information Exposure,nan
CVE-2017-5736,3/10/2019 0:03,20/03/2018 20:29,7.2,269, Improper Privilege Management,nan
CVE-2017-5722,3/10/2019 0:03,11/10/2017 0:29,4.4,269, Improper Privilege Management,nan
CVE-2017-5704,3/10/2019 0:03,10/07/2018 21:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-5703,3/10/2019 0:03,3/04/2018 21:29,3.6,269, Improper Privilege Management,nan
CVE-2017-5700,3/10/2019 0:03,11/10/2017 0:29,7.2,522, Insufficiently Protected Credentials,nan
CVE-2017-5686,3/10/2019 0:03,3/04/2017 21:59,2.1,276, Incorrect Default Permissions,nan
CVE-2017-5685,3/10/2019 0:03,3/04/2017 21:59,2.1,276, Incorrect Default Permissions,nan
CVE-2017-5684,3/10/2019 0:03,3/04/2017 21:59,2.1,276, Incorrect Default Permissions,nan
CVE-2017-5671,3/10/2019 0:03,29/03/2017 14:59,7.2,269, Improper Privilege Management,nan
CVE-2017-5669,3/10/2019 0:03,24/02/2017 15:59,4.6,20, Improper Input Validation,nan
CVE-2017-5667,3/10/2019 0:03,16/03/2017 15:59,2.1,125, Out-of-bounds Read,nan
CVE-2017-5664,3/10/2019 0:03,6/06/2017 14:29,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-5653,3/10/2019 0:03,18/04/2017 16:59,5.0,295, Improper Certificate Validation,nan
CVE-2017-5652,3/10/2019 0:03,10/07/2017 20:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-5650,3/10/2019 0:03,17/04/2017 16:59,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2017-5648,3/10/2019 0:03,17/04/2017 16:59,6.4,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-5644,3/10/2019 0:03,24/03/2017 14:59,7.1,776, Improper Restriction of Recursive Entity References in DTDs (‘XML Entity Expansion’),nan
CVE-2017-5642,3/10/2019 0:03,3/04/2017 16:59,7.5,276, Incorrect Default Permissions,nan
CVE-2017-5637,3/10/2019 0:03,10/10/2017 1:30,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-5635,3/10/2019 0:03,19/10/2017 20:29,5.0,287, Improper Authentication,nan
CVE-2017-5634,3/10/2019 0:03,9/02/2017 16:59,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-5630,3/10/2019 0:03,1/02/2017 23:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-5624,3/10/2019 0:03,12/03/2017 5:59,10.0,269, Improper Privilege Management,nan
CVE-2017-5623,3/10/2019 0:03,19/03/2017 20:59,7.2,269, Improper Privilege Management,nan
CVE-2017-5622,3/10/2019 0:03,26/03/2017 20:59,3.6,276, Incorrect Default Permissions,nan
CVE-2017-5619,3/10/2019 0:03,13/03/2017 6:59,7.5,287, Improper Authentication,nan
CVE-2017-5618,3/10/2019 0:03,20/03/2017 16:59,7.2,269, Improper Privilege Management,nan
CVE-2017-5600,3/10/2019 0:03,2/02/2017 15:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-5596,3/10/2019 0:03,25/01/2017 21:59,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-5579,3/10/2019 0:03,15/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5578,3/10/2019 0:03,15/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5572,3/10/2019 0:03,30/01/2017 16:59,5.5,269, Improper Privilege Management,nan
CVE-2017-5567,3/10/2019 0:03,21/03/2017 16:59,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-5566,3/10/2019 0:03,21/03/2017 16:59,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-5565,3/10/2019 0:03,21/03/2017 16:59,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-5563,3/10/2019 0:03,23/01/2017 7:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-5554,3/10/2019 0:03,23/01/2017 7:59,9.3,287, Improper Authentication,nan
CVE-2017-5552,3/10/2019 0:03,15/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5548,3/10/2019 0:03,6/02/2017 6:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5547,3/10/2019 0:03,6/02/2017 6:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5544,3/10/2019 0:03,23/01/2017 7:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-5539,3/10/2019 0:03,23/01/2017 7:59,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5526,3/10/2019 0:03,15/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5525,3/10/2019 0:03,15/03/2017 15:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5524,3/10/2019 0:03,23/03/2017 16:59,4.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-5520,3/10/2019 0:03,17/01/2017 9:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-5507,3/10/2019 0:03,24/03/2017 15:59,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-5493,3/10/2019 0:03,15/01/2017 2:59,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-5491,3/10/2019 0:03,15/01/2017 2:59,5.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-5481,3/10/2019 0:03,3/05/2017 20:59,4.0,200, Information Exposure,nan
CVE-2017-5468,3/10/2019 0:03,11/06/2018 21:29,6.4,665, Improper Initialization,nan
CVE-2017-5462,3/10/2019 0:03,11/06/2018 21:29,5.0,682, Incorrect Calculation,nan
CVE-2017-5456,3/10/2019 0:03,11/06/2018 21:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-5426,3/10/2019 0:03,11/06/2018 21:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-5409,3/10/2019 0:03,11/06/2018 21:29,3.6,269, Improper Privilege Management,nan
CVE-2017-5405,3/10/2019 0:03,11/06/2018 21:29,5.0,1187, Use of Uninitialized Resource,nan
CVE-2017-5397,3/10/2019 0:03,11/06/2018 21:29,10.0,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2017-5388,3/10/2019 0:03,11/06/2018 21:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-5381,3/10/2019 0:03,11/06/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5329,3/10/2019 0:03,27/01/2017 22:59,4.6,787, Out-of-bounds Write,nan
CVE-2017-5219,3/10/2019 0:03,2/02/2017 7:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5214,3/10/2019 0:03,17/05/2017 14:29,5.0,335, Incorrect Usage of Seeds in Pseudo-Random Number Generator (PRNG),nan
CVE-2017-5209,3/10/2019 0:03,11/01/2017 16:59,6.4,125, Out-of-bounds Read,nan
CVE-2017-5207,3/10/2019 0:03,23/03/2017 16:59,7.2,269, Improper Privilege Management,nan
CVE-2017-5199,3/10/2019 0:03,24/03/2017 7:59,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-5186,3/10/2019 0:03,27/04/2017 14:59,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-5180,3/10/2019 0:03,9/02/2017 18:59,4.6,862, Missing Authorization,nan
CVE-2017-5178,3/10/2019 0:03,8/03/2017 8:59,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-5155,3/10/2019 0:03,13/02/2017 21:59,7.5,1188, Insecure Default Initialization of Resource,nan
CVE-2017-5149,3/10/2019 0:03,13/02/2017 22:59,6.8,476, NULL Pointer Dereference,nan
CVE-2017-5142,3/10/2019 0:03,13/02/2017 21:59,6.5,269, Improper Privilege Management,nan
CVE-2017-5140,3/10/2019 0:03,13/02/2017 21:59,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-5139,3/10/2019 0:03,13/02/2017 21:59,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-5136,3/10/2019 0:03,5/02/2017 18:59,7.8,862, Missing Authorization,nan
CVE-2017-5118,3/10/2019 0:03,27/10/2017 5:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-5084,3/10/2019 0:03,27/10/2017 5:29,2.1,269, Improper Privilege Management,nan
CVE-2017-5069,3/10/2019 0:03,27/10/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5053,3/10/2019 0:03,27/10/2017 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-5045,3/10/2019 0:03,24/04/2017 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5042,3/10/2019 0:03,24/04/2017 23:59,3.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-5033,3/10/2019 0:03,24/04/2017 23:59,4.3,281, Improper Preservation of Permissions,nan
CVE-2017-5026,3/10/2019 0:03,17/02/2017 7:59,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2017-5016,3/10/2019 0:03,17/02/2017 7:59,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2017-4992,3/10/2019 0:03,13/06/2017 6:29,7.5,269, Improper Privilege Management,nan
CVE-2017-4991,3/10/2019 0:03,13/06/2017 6:29,6.5,269, Improper Privilege Management,nan
CVE-2017-4985,3/10/2019 0:03,19/06/2017 12:29,7.2,862, Missing Authorization,nan
CVE-2017-4982,3/10/2019 0:03,8/05/2017 21:29,10.0,269, Improper Privilege Management,nan
CVE-2017-4976,3/10/2019 0:03,9/07/2017 20:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-4975,3/10/2019 0:03,13/06/2017 6:29,5.0,276, Incorrect Default Permissions,nan
CVE-2017-4973,3/10/2019 0:03,13/06/2017 6:29,6.5,269, Improper Privilege Management,nan
CVE-2017-4971,3/10/2019 0:03,13/06/2017 6:29,4.3,1188, Insecure Default Initialization of Resource,nan
CVE-2017-4966,3/10/2019 0:03,13/06/2017 6:29,2.1,200, Information Exposure,nan
CVE-2017-4961,3/10/2019 0:03,13/06/2017 6:29,6.5,354, Improper Validation of Integrity Check Value,nan
CVE-2017-4955,3/10/2019 0:03,13/06/2017 6:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-4952,3/10/2019 0:03,2/05/2018 14:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-4946,3/10/2019 0:03,5/01/2018 14:29,7.2,863, Incorrect Authorization,nan
CVE-2017-4943,3/10/2019 0:03,20/12/2017 15:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-4923,3/10/2019 0:03,1/08/2017 16:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-4919,3/10/2019 0:03,28/07/2017 22:29,6.8,306, Missing Authentication for Critical Function,nan
CVE-2017-4917,3/10/2019 0:03,7/06/2017 17:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-4915,3/10/2019 0:03,22/05/2017 14:29,7.2,863, Incorrect Authorization,nan
CVE-2017-4053,3/10/2019 0:03,12/07/2017 15:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-3898,3/10/2019 0:03,1/09/2017 13:29,4.3,20, Improper Input Validation,nan
CVE-2017-3891,3/10/2019 0:03,14/11/2017 21:29,6.8,863, Incorrect Authorization,nan
CVE-2017-3887,3/10/2019 0:03,7/04/2017 17:59,4.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-3885,3/10/2019 0:03,7/04/2017 17:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-3883,3/10/2019 0:03,19/10/2017 8:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-3867,3/10/2019 0:03,17/03/2017 22:59,5.0,287, Improper Authentication,nan
CVE-2017-3857,3/10/2019 0:03,22/03/2017 19:59,7.8,20, Improper Input Validation,nan
CVE-2017-3856,3/10/2019 0:03,22/03/2017 19:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-3839,3/10/2019 0:03,22/02/2017 2:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-3834,3/10/2019 0:03,6/04/2017 18:59,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-3832,3/10/2019 0:03,6/04/2017 18:59,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-3826,3/10/2019 0:03,1/03/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2017-3820,3/10/2019 0:03,3/02/2017 7:59,6.8,665, Improper Initialization,nan
CVE-2017-3819,3/10/2019 0:03,15/03/2017 20:59,9.0,306, Missing Authentication for Critical Function,nan
CVE-2017-3817,3/10/2019 0:03,7/04/2017 17:59,4.0,863, Incorrect Authorization,nan
CVE-2017-3815,3/10/2019 0:03,17/03/2017 22:59,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-3813,3/10/2019 0:03,9/02/2017 17:59,7.2,862, Missing Authorization,nan
CVE-2017-3812,3/10/2019 0:03,3/02/2017 7:59,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-3803,3/10/2019 0:03,26/01/2017 7:59,3.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-3801,3/10/2019 0:03,15/02/2017 20:59,4.6,863, Incorrect Authorization,nan
CVE-2017-3795,3/10/2019 0:03,26/01/2017 7:59,6.5,287, Improper Authentication,nan
CVE-2017-3793,3/10/2019 0:03,20/04/2017 22:59,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-3790,3/10/2019 0:03,1/02/2017 19:59,7.8,20, Improper Input Validation,nan
CVE-2017-3761,3/10/2019 0:03,17/10/2017 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-3760,3/10/2019 0:03,17/10/2017 20:29,5.1,522, Insufficiently Protected Credentials,nan
CVE-2017-3744,3/10/2019 0:03,20/06/2017 0:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-3737,3/10/2019 0:03,7/12/2017 16:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-3631,3/10/2019 0:03,22/06/2017 13:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3630,3/10/2019 0:03,22/06/2017 13:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-3629,3/10/2019 0:03,22/06/2017 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3599,3/10/2019 0:03,24/04/2017 19:59,7.8,190, Integer Overflow or Wraparound,nan
CVE-2017-3563,3/10/2019 0:03,24/04/2017 19:59,4.6,295, Improper Certificate Validation,nan
CVE-2017-3557,3/10/2019 0:03,24/04/2017 19:59,7.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3555,3/10/2019 0:03,24/04/2017 19:59,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-3549,3/10/2019 0:03,24/04/2017 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3548,3/10/2019 0:03,24/04/2017 19:59,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-3547,3/10/2019 0:03,24/04/2017 19:59,7.1,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-3546,3/10/2019 0:03,24/04/2017 19:59,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-3528,3/10/2019 0:03,24/04/2017 19:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-3305,3/10/2019 0:03,24/04/2017 19:59,6.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-3302,3/10/2019 0:03,12/02/2017 4:59,5.0,416, Use After Free,nan
CVE-2017-3300,3/10/2019 0:03,27/01/2017 22:59,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3257,3/10/2019 0:03,27/01/2017 22:59,4.0,269, Improper Privilege Management,nan
CVE-2017-3166,3/10/2019 0:03,13/11/2017 14:29,4.6,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-3139,3/10/2019 0:03,9/04/2019 18:29,5.0,617, Reachable Assertion,nan
CVE-2017-3134,3/10/2019 0:03,27/05/2017 0:29,9.0,20, Improper Input Validation,nan
CVE-2017-3122,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3100,3/10/2019 0:03,17/07/2017 13:18,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3097,3/10/2019 0:03,20/06/2017 17:29,10.0,427, Uncontrolled Search Path Element,nan
CVE-2017-3092,3/10/2019 0:03,20/06/2017 17:29,10.0,427, Uncontrolled Search Path Element,nan
CVE-2017-3090,3/10/2019 0:03,20/06/2017 17:29,10.0,427, Uncontrolled Search Path Element,nan
CVE-2017-3073,3/10/2019 0:03,9/05/2017 16:29,10.0,416, Use After Free,nan
CVE-2017-3013,3/10/2019 0:03,12/04/2017 14:59,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-3012,3/10/2019 0:03,12/04/2017 14:59,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-3009,3/10/2019 0:03,31/03/2017 16:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-3006,3/10/2019 0:03,12/04/2017 14:59,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-2981,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2980,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2979,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2978,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2977,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2976,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2975,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2974,3/10/2019 0:03,15/02/2017 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2909,3/10/2019 0:03,7/11/2017 16:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-2877,3/10/2019 0:03,19/09/2018 18:29,7.5,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-2873,3/10/2019 0:03,19/09/2018 18:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2872,3/10/2019 0:03,17/09/2018 20:29,9.0,287, Improper Authentication,nan
CVE-2017-2849,3/10/2019 0:03,29/06/2017 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2848,3/10/2019 0:03,29/06/2017 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2847,3/10/2019 0:03,29/06/2017 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2846,3/10/2019 0:03,29/06/2017 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2845,3/10/2019 0:03,29/06/2017 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2844,3/10/2019 0:03,29/06/2017 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2843,3/10/2019 0:03,27/06/2017 15:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2842,3/10/2019 0:03,27/06/2017 15:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2841,3/10/2019 0:03,27/06/2017 15:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2824,3/10/2019 0:03,24/05/2017 14:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2765,3/10/2019 0:03,8/02/2017 17:59,7.5,287, Improper Authentication,nan
CVE-2017-2751,3/10/2019 0:03,3/10/2018 20:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-2739,3/10/2019 0:03,22/11/2017 19:29,2.9,494, Download of Code Without Integrity Check,nan
CVE-2017-2723,3/10/2019 0:03,22/11/2017 19:29,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2017-2721,3/10/2019 0:03,22/11/2017 19:29,2.1,287, Improper Authentication,nan
CVE-2017-2720,3/10/2019 0:03,22/11/2017 19:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-2708,3/10/2019 0:03,22/11/2017 19:29,4.9,306, Missing Authentication for Critical Function,nan
CVE-2017-2707,3/10/2019 0:03,22/11/2017 19:29,5.8,494, Download of Code Without Integrity Check,nan
CVE-2017-2700,3/10/2019 0:03,22/11/2017 19:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-2699,3/10/2019 0:03,22/11/2017 19:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-2690,3/10/2019 0:03,22/11/2017 19:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-2689,3/10/2019 0:03,29/03/2017 1:59,6.5,287, Improper Authentication,nan
CVE-2017-2596,3/10/2019 0:03,6/02/2017 6:59,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-2540,3/10/2019 0:03,22/05/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-2535,3/10/2019 0:03,22/05/2017 5:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-2520,3/10/2019 0:03,22/05/2017 5:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-2518,3/10/2019 0:03,22/05/2017 5:29,7.5,416, Use After Free,nan
CVE-2017-2491,3/10/2019 0:03,27/06/2017 20:29,6.8,416, Use After Free,nan
CVE-2017-2486,3/10/2019 0:03,2/04/2017 1:59,4.3,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-2461,3/10/2019 0:03,2/04/2017 1:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-2453,3/10/2019 0:03,2/04/2017 1:59,4.3,20, Improper Input Validation,nan
CVE-2017-2429,3/10/2019 0:03,2/04/2017 1:59,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-2423,3/10/2019 0:03,2/04/2017 1:59,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-2417,3/10/2019 0:03,2/04/2017 1:59,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-2412,3/10/2019 0:03,2/04/2017 1:59,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-2399,3/10/2019 0:03,2/04/2017 1:59,2.1,326, Inadequate Encryption Strength,nan
CVE-2017-2390,3/10/2019 0:03,2/04/2017 1:59,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-2387,3/10/2019 0:03,7/04/2017 11:59,2.9,295, Improper Certificate Validation,nan
CVE-2017-2371,3/10/2019 0:03,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2017-2351,3/10/2019 0:03,20/02/2017 8:59,2.1,20, Improper Input Validation,nan
CVE-2017-2333,3/10/2019 0:03,24/04/2017 15:59,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-2330,3/10/2019 0:03,24/04/2017 15:59,4.9,834, Excessive Iteration,nan
CVE-2017-2327,3/10/2019 0:03,24/04/2017 15:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-2322,3/10/2019 0:03,24/04/2017 18:59,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-2320,3/10/2019 0:03,24/04/2017 15:59,10.0,200, Information Exposure,nan
CVE-2017-2319,3/10/2019 0:03,24/04/2017 15:59,7.5,287, Improper Authentication,nan
CVE-2017-2317,3/10/2019 0:03,24/04/2017 15:59,7.5,200, Information Exposure,nan
CVE-2017-2315,3/10/2019 0:03,24/04/2017 15:59,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-2312,3/10/2019 0:03,24/04/2017 15:59,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-2306,3/10/2019 0:03,30/05/2017 14:29,6.5,863, Incorrect Authorization,nan
CVE-2017-2305,3/10/2019 0:03,30/05/2017 14:29,6.5,863, Incorrect Authorization,nan
CVE-2017-2299,3/10/2019 0:03,15/09/2017 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-2297,3/10/2019 0:03,1/02/2018 22:29,6.0,287, Improper Authentication,nan
CVE-2017-2290,3/10/2019 0:03,3/03/2017 15:59,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-2239,3/10/2019 0:03,7/07/2017 13:29,6.8,200, Information Exposure,nan
CVE-2017-2209,3/10/2019 0:03,9/06/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2161,3/10/2019 0:03,22/05/2017 16:29,2.7,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-2149,3/10/2019 0:03,28/04/2017 16:59,9.3,426, Untrusted Search Path,nan
CVE-2017-2143,3/10/2019 0:03,28/04/2017 16:59,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-2139,3/10/2019 0:03,28/04/2017 16:59,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-2115,3/10/2019 0:03,28/04/2017 16:59,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-2094,3/10/2019 0:03,28/04/2017 16:59,4.0,269, Improper Privilege Management,nan
CVE-2017-18372,3/10/2019 0:03,2/05/2019 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-18370,3/10/2019 0:03,2/05/2019 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-18369,3/10/2019 0:03,2/05/2019 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-18368,3/10/2019 0:03,2/05/2019 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-18361,3/10/2019 0:03,1/02/2019 9:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18348,3/10/2019 0:03,19/10/2018 8:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-18326,3/10/2019 0:03,3/01/2019 15:29,2.1,200, Information Exposure,nan
CVE-2017-18324,3/10/2019 0:03,3/01/2019 15:29,2.1,200, Information Exposure,nan
CVE-2017-18322,3/10/2019 0:03,3/01/2019 15:29,2.1,200, Information Exposure,nan
CVE-2017-18312,3/10/2019 0:03,23/10/2018 13:29,7.2,862, Missing Authorization,nan
CVE-2017-18299,3/10/2019 0:03,23/10/2018 13:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-18294,3/10/2019 0:03,23/10/2018 13:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-18285,3/10/2019 0:03,4/06/2018 6:29,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-18284,3/10/2019 0:03,4/06/2018 6:29,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-18283,3/10/2019 0:03,23/10/2018 13:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18277,3/10/2019 0:03,23/10/2018 13:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18273,3/10/2019 0:03,18/05/2018 19:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18271,3/10/2019 0:03,18/05/2018 19:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18268,3/10/2019 0:03,17/05/2018 13:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-18267,3/10/2019 0:03,10/05/2018 15:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18261,3/10/2019 0:03,19/04/2018 8:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18258,3/10/2019 0:03,8/04/2018 17:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-18254,3/10/2019 0:03,27/03/2018 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-18252,3/10/2019 0:03,27/03/2018 3:29,4.3,617, Reachable Assertion,nan
CVE-2017-18251,3/10/2019 0:03,27/03/2018 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-18246,3/10/2019 0:03,23/03/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18245,3/10/2019 0:03,23/03/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18238,3/10/2019 0:03,15/03/2018 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18236,3/10/2019 0:03,15/03/2018 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18233,3/10/2019 0:03,15/03/2018 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18229,3/10/2019 0:03,14/03/2018 2:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-18226,3/10/2019 0:03,12/03/2018 4:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-18225,3/10/2019 0:03,12/03/2018 4:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-18219,3/10/2019 0:03,5/03/2018 22:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-18212,3/10/2019 0:03,1/03/2018 22:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-18208,3/10/2019 0:03,1/03/2018 5:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18196,3/10/2019 0:03,23/02/2018 21:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18190,3/10/2019 0:03,16/02/2018 17:29,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2017-18186,3/10/2019 0:03,13/02/2018 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18183,3/10/2019 0:03,13/02/2018 19:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-18171,3/10/2019 0:03,23/10/2018 13:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18169,3/10/2019 0:03,15/06/2018 20:29,4.9,617, Reachable Assertion,nan
CVE-2017-18154,3/10/2019 0:03,6/06/2018 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18130,3/10/2019 0:03,11/04/2018 15:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-18129,3/10/2019 0:03,11/04/2018 15:29,10.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-18078,3/10/2019 0:03,29/01/2018 5:29,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-18075,3/10/2019 0:03,24/01/2018 10:29,7.2,763, Release of Invalid Pointer or Reference,nan
CVE-2017-18073,3/10/2019 0:03,11/04/2018 15:29,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-18069,3/10/2019 0:03,15/03/2018 21:29,7.8,125, Out-of-bounds Read,nan
CVE-2017-18044,3/10/2019 0:03,19/01/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-18029,3/10/2019 0:03,12/01/2018 20:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-18028,3/10/2019 0:03,12/01/2018 20:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-18027,3/10/2019 0:03,12/01/2018 20:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-18022,3/10/2019 0:03,5/01/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-18016,3/10/2019 0:03,11/01/2018 16:29,5.0,346, Origin Validation Error,nan
CVE-2017-18009,3/10/2019 0:03,1/01/2018 8:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-18008,3/10/2019 0:03,1/01/2018 8:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-18001,3/10/2019 0:03,31/12/2017 19:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-17942,3/10/2019 0:03,28/12/2017 6:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17935,3/10/2019 0:03,27/12/2017 17:08,5.0,125, Out-of-bounds Read,nan
CVE-2017-17934,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17915,3/10/2019 0:03,27/12/2017 17:08,6.8,125, Out-of-bounds Read,nan
CVE-2017-17914,3/10/2019 0:03,27/12/2017 17:08,7.1,834, Excessive Iteration,nan
CVE-2017-17913,3/10/2019 0:03,27/12/2017 17:08,6.8,125, Out-of-bounds Read,nan
CVE-2017-17912,3/10/2019 0:03,27/12/2017 17:08,6.8,125, Out-of-bounds Read,nan
CVE-2017-17910,3/10/2019 0:03,29/12/2017 19:29,3.3,330, Use of Insufficiently Random Values,nan
CVE-2017-17887,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17886,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17885,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17884,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17883,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17882,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17881,3/10/2019 0:03,27/12/2017 17:08,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17880,3/10/2019 0:03,27/12/2017 17:08,6.8,125, Out-of-bounds Read,nan
CVE-2017-17879,3/10/2019 0:03,27/12/2017 17:08,6.8,125, Out-of-bounds Read,nan
CVE-2017-17867,3/10/2019 0:03,4/01/2018 19:29,9.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1786,3/10/2019 0:03,23/04/2018 13:29,3.5,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17844,3/10/2019 0:03,27/12/2017 17:08,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-1783,3/10/2019 0:03,29/01/2018 16:29,2.1,287, Improper Authentication,nan
CVE-2017-17818,3/10/2019 0:03,21/12/2017 3:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17812,3/10/2019 0:03,21/12/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17807,3/10/2019 0:03,20/12/2017 23:29,2.1,862, Missing Authorization,nan
CVE-2017-17806,3/10/2019 0:03,20/12/2017 23:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-1779,3/10/2019 0:03,29/01/2018 16:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-17783,3/10/2019 0:03,20/12/2017 9:29,5.1,125, Out-of-bounds Read,nan
CVE-2017-17782,3/10/2019 0:03,20/12/2017 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17773,3/10/2019 0:03,15/03/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17771,3/10/2019 0:03,30/03/2018 21:29,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-17765,3/10/2019 0:03,23/02/2018 23:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-17763,3/10/2019 0:03,19/12/2017 23:29,7.6,311, Missing Encryption of Sensitive Data,nan
CVE-2017-17758,3/10/2019 0:03,19/12/2017 7:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-17757,3/10/2019 0:03,19/12/2017 7:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-17747,3/10/2019 0:03,20/12/2017 20:29,2.7,306, Missing Authentication for Critical Function,nan
CVE-2017-17746,3/10/2019 0:03,20/12/2017 20:29,7.7,306, Missing Authentication for Critical Function,nan
CVE-2017-17736,3/10/2019 0:03,23/03/2018 15:29,7.5,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-17724,3/10/2019 0:03,12/02/2018 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17723,3/10/2019 0:03,12/02/2018 22:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-17722,3/10/2019 0:03,12/02/2018 22:29,4.3,617, Reachable Assertion,nan
CVE-2017-17708,3/10/2019 0:03,31/07/2018 14:29,4.0,863, Incorrect Authorization,nan
CVE-2017-17707,3/10/2019 0:03,31/07/2018 14:29,6.5,862, Missing Authorization,nan
CVE-2017-17704,3/10/2019 0:03,31/12/2017 2:29,5.8,330, Use of Insufficiently Random Values,nan
CVE-2017-17693,3/10/2019 0:03,15/12/2017 9:29,4.0,862, Missing Authorization,nan
CVE-2017-17691,3/10/2019 0:03,7/09/2018 22:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2017-17681,3/10/2019 0:03,14/12/2017 6:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-17680,3/10/2019 0:03,14/12/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17669,3/10/2019 0:03,13/12/2017 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17668,3/10/2019 0:03,20/03/2018 14:29,7.8,863, Incorrect Authorization,nan
CVE-2017-17665,3/10/2019 0:03,13/12/2017 20:29,6.5,862, Missing Authorization,nan
CVE-2017-1764,3/10/2019 0:03,23/04/2018 13:29,1.9,522, Insufficiently Protected Credentials,nan
CVE-2017-17593,3/10/2019 0:03,13/12/2017 9:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-17568,3/10/2019 0:03,13/12/2017 9:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-17544,3/10/2019 0:03,9/04/2019 16:29,9.0,281, Improper Preservation of Permissions,nan
CVE-2017-17504,3/10/2019 0:03,11/12/2017 2:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17476,3/10/2019 0:03,20/12/2017 17:29,6.8,200, Information Exposure,nan
CVE-2017-17450,3/10/2019 0:03,7/12/2017 0:29,4.6,862, Missing Authorization,nan
CVE-2017-17448,3/10/2019 0:03,7/12/2017 0:29,4.6,862, Missing Authorization,nan
CVE-2017-17446,3/10/2019 0:03,6/12/2017 19:29,4.3,681, Incorrect Conversion between Numeric Types,nan
CVE-2017-17433,3/10/2019 0:03,6/12/2017 3:29,4.3,862, Missing Authorization,nan
CVE-2017-17432,3/10/2019 0:03,6/12/2017 0:29,7.8,617, Reachable Assertion,nan
CVE-2017-17430,3/10/2019 0:03,7/12/2017 8:29,7.5,287, Improper Authentication,nan
CVE-2017-17429,3/10/2019 0:03,16/01/2018 19:29,2.1,20, Improper Input Validation,nan
CVE-2017-17428,3/10/2019 0:03,5/03/2018 18:29,7.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-17427,3/10/2019 0:03,13/12/2017 16:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-17384,3/10/2019 0:03,7/12/2017 8:29,9.0,269, Improper Privilege Management,nan
CVE-2017-17382,3/10/2019 0:03,13/12/2017 16:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-17330,3/10/2019 0:03,9/03/2018 17:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17329,3/10/2019 0:03,9/03/2018 17:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17323,3/10/2019 0:03,9/03/2018 17:29,4.0,863, Incorrect Authorization,nan
CVE-2017-17302,3/10/2019 0:03,15/02/2018 16:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17301,3/10/2019 0:03,15/02/2018 16:29,7.5,295, Improper Certificate Validation,nan
CVE-2017-17300,3/10/2019 0:03,15/02/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2017-17296,3/10/2019 0:03,15/02/2018 16:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17291,3/10/2019 0:03,15/02/2018 16:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17290,3/10/2019 0:03,15/02/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-17289,3/10/2019 0:03,15/02/2018 16:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17283,3/10/2019 0:03,15/02/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-17258,3/10/2019 0:03,24/04/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-17257,3/10/2019 0:03,24/04/2018 15:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17256,3/10/2019 0:03,24/04/2018 15:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17218,3/10/2019 0:03,9/03/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17176,3/10/2019 0:03,17/10/2018 15:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-17172,3/10/2019 0:03,14/06/2018 14:29,4.4,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-17164,3/10/2019 0:03,15/02/2018 16:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17162,3/10/2019 0:03,15/02/2018 16:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17161,3/10/2019 0:03,15/02/2018 16:29,7.2,287, Improper Authentication,nan
CVE-2017-1716,3/10/2019 0:03,13/12/2017 18:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-17153,3/10/2019 0:03,15/02/2018 16:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17150,3/10/2019 0:03,9/03/2018 17:29,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-17146,3/10/2019 0:03,9/03/2018 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17141,3/10/2019 0:03,5/03/2018 19:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-17134,3/10/2019 0:03,5/03/2018 19:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-17131,3/10/2019 0:03,5/03/2018 19:29,6.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-17125,3/10/2019 0:03,4/12/2017 8:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17106,3/10/2019 0:03,19/12/2017 2:29,10.0,522, Insufficiently Protected Credentials,nan
CVE-2017-17105,3/10/2019 0:03,19/12/2017 2:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-17091,3/10/2019 0:03,2/12/2017 6:29,6.5,330, Use of Insufficiently Random Values,nan
CVE-2017-17090,3/10/2019 0:03,2/12/2017 0:29,5.0,459, Incomplete Cleanup,nan
CVE-2017-17080,3/10/2019 0:03,30/11/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17067,3/10/2019 0:03,30/11/2017 2:29,10.0,863, Incorrect Authorization,nan
CVE-2017-17066,3/10/2019 0:03,5/12/2017 9:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17062,3/10/2019 0:03,16/06/2018 1:29,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17051,3/10/2019 0:03,5/12/2017 18:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-17045,3/10/2019 0:03,28/11/2017 23:29,7.2,416, Use After Free,nan
CVE-2017-17044,3/10/2019 0:03,28/11/2017 23:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-17023,3/10/2019 0:03,9/04/2019 18:29,9.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-17020,3/10/2019 0:03,1/05/2018 16:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1700,3/10/2019 0:03,24/04/2018 14:29,4.0,863, Incorrect Authorization,nan
CVE-2017-1699,3/10/2019 0:03,4/01/2018 17:29,3.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16960,3/10/2019 0:03,27/11/2017 10:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16958,3/10/2019 0:03,27/11/2017 10:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16957,3/10/2019 0:03,27/11/2017 10:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16945,3/10/2019 0:03,31/01/2018 20:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16944,3/10/2019 0:03,25/11/2017 17:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-1694,3/10/2019 0:03,20/12/2017 18:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-16939,3/10/2019 0:03,24/11/2017 10:29,7.2,416, Use After Free,nan
CVE-2017-16935,3/10/2019 0:03,24/11/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-16933,3/10/2019 0:03,24/11/2017 5:29,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16932,3/10/2019 0:03,23/11/2017 21:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-16928,3/10/2019 0:03,31/01/2018 20:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16927,3/10/2019 0:03,23/11/2017 6:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16926,3/10/2019 0:03,22/11/2017 8:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16924,3/10/2019 0:03,19/02/2018 4:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2017-16923,3/10/2019 0:03,21/11/2017 14:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16921,3/10/2019 0:03,8/12/2017 15:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16897,3/10/2019 0:03,27/12/2017 17:08,9.3,290, Authentication Bypass by Spoofing,nan
CVE-2017-16895,3/10/2019 0:03,1/12/2017 17:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16892,3/10/2019 0:03,19/11/2017 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-16885,3/10/2019 0:03,12/01/2018 17:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16882,3/10/2019 0:03,18/11/2017 18:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16857,3/10/2019 0:03,5/12/2017 16:29,6.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-16835,3/10/2019 0:03,20/02/2018 6:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2017-16834,3/10/2019 0:03,16/11/2017 2:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16818,3/10/2019 0:03,20/12/2017 17:29,4.0,617, Reachable Assertion,nan
CVE-2017-16797,3/10/2019 0:03,12/11/2017 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16794,3/10/2019 0:03,12/11/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-16780,3/10/2019 0:03,10/11/2017 23:29,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16777,3/10/2019 0:03,16/11/2017 15:29,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-16759,3/10/2019 0:03,9/11/2017 22:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16754,3/10/2019 0:03,10/11/2017 2:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16743,3/10/2019 0:03,12/01/2018 20:29,10.0,863, Incorrect Authorization,nan
CVE-2017-16672,3/10/2019 0:03,9/11/2017 0:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-16666,3/10/2019 0:03,5/01/2018 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16660,3/10/2019 0:03,8/11/2017 5:29,9.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-16659,3/10/2019 0:03,8/11/2017 5:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16651,3/10/2019 0:03,9/11/2017 14:29,4.6,552, Files or Directories Accessible to External Parties,nan
CVE-2017-16638,3/10/2019 0:03,6/11/2017 23:29,10.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-16611,3/10/2019 0:03,1/12/2017 17:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-16562,3/10/2019 0:03,10/11/2017 2:29,7.5,287, Improper Authentication,nan
CVE-2017-16560,3/10/2019 0:03,16/11/2017 15:29,2.1,922, Insecure Storage of Sensitive Information,nan
CVE-2017-16557,3/10/2019 0:03,16/01/2018 19:29,4.4,787, Out-of-bounds Write,nan
CVE-2017-16555,3/10/2019 0:03,16/01/2018 19:29,4.4,787, Out-of-bounds Write,nan
CVE-2017-16554,3/10/2019 0:03,16/01/2018 19:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-16553,3/10/2019 0:03,16/01/2018 19:29,4.4,787, Out-of-bounds Write,nan
CVE-2017-16552,3/10/2019 0:03,16/01/2018 19:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-16551,3/10/2019 0:03,16/01/2018 19:29,4.4,787, Out-of-bounds Write,nan
CVE-2017-16549,3/10/2019 0:03,16/01/2018 19:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-16548,3/10/2019 0:03,6/11/2017 5:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-16522,3/10/2019 0:03,3/11/2017 17:29,9.0,276, Incorrect Default Permissions,nan
CVE-2017-16520,3/10/2019 0:03,11/11/2017 0:29,5.0,269, Improper Privilege Management,nan
CVE-2017-16512,3/10/2019 0:03,29/03/2018 22:29,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-16419,3/10/2019 0:03,9/12/2017 6:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-16384,3/10/2019 0:03,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16374,3/10/2019 0:03,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16365,3/10/2019 0:03,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16363,3/10/2019 0:03,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-1628,3/10/2019 0:03,27/11/2017 21:29,4.0,863, Incorrect Authorization,nan
CVE-2017-16242,3/10/2019 0:03,22/03/2018 15:29,7.2,287, Improper Authentication,nan
CVE-2017-16241,3/10/2019 0:03,10/12/2017 1:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2017-16232,3/10/2019 0:03,21/03/2019 15:59,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-16229,3/10/2019 0:03,26/02/2018 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-1601,3/10/2019 0:03,2/05/2018 13:29,7.5,521, Weak Password Requirements,nan
CVE-2017-16001,3/10/2019 0:03,6/11/2017 17:29,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15999,3/10/2019 0:03,29/10/2017 17:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-15998,3/10/2019 0:03,29/10/2017 17:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-15997,3/10/2019 0:03,29/10/2017 17:29,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-15994,3/10/2019 0:03,29/10/2017 6:29,7.5,354, Improper Validation of Integrity Check Value,nan
CVE-2017-1598,3/10/2019 0:03,20/12/2017 18:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-15945,3/10/2019 0:03,27/10/2017 21:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-15924,3/10/2019 0:03,27/10/2017 16:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-15918,3/10/2019 0:03,1/11/2017 17:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-15917,3/10/2019 0:03,26/10/2017 17:29,4.0,269, Improper Privilege Management,nan
CVE-2017-15908,3/10/2019 0:03,26/10/2017 14:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-15906,3/10/2019 0:03,26/10/2017 3:29,5.0,269, Improper Privilege Management,nan
CVE-2017-15884,3/10/2019 0:03,31/10/2017 18:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15877,3/10/2019 0:03,19/12/2017 2:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-15871,3/10/2019 0:03,24/10/2017 20:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-15868,3/10/2019 0:03,5/12/2017 23:29,7.2,20, Improper Input Validation,nan
CVE-2017-15860,3/10/2019 0:03,23/02/2018 23:29,9.3,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2017-15859,3/10/2019 0:03,30/03/2018 21:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-15853,3/10/2019 0:03,3/04/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-15852,3/10/2019 0:03,30/03/2018 21:29,4.6,200, Information Exposure,nan
CVE-2017-15845,3/10/2019 0:03,10/01/2018 22:29,4.6,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15837,3/10/2019 0:03,3/04/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-15835,3/10/2019 0:03,7/12/2018 14:29,3.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-15824,3/10/2019 0:03,6/07/2018 17:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15671,3/10/2019 0:03,20/10/2017 17:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15656,3/10/2019 0:03,31/01/2018 20:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2017-15654,3/10/2019 0:03,31/01/2018 20:29,7.6,330, Use of Insufficiently Random Values,nan
CVE-2017-15611,3/10/2019 0:03,19/10/2017 8:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-15609,3/10/2019 0:03,19/10/2017 8:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-15602,3/10/2019 0:03,18/10/2017 21:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-15597,3/10/2019 0:03,30/10/2017 14:29,9.0,200, Information Exposure,nan
CVE-2017-15593,3/10/2019 0:03,18/10/2017 8:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15592,3/10/2019 0:03,18/10/2017 8:29,7.2,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-15582,3/10/2019 0:03,27/10/2017 20:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-15581,3/10/2019 0:03,27/10/2017 20:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-15566,3/10/2019 0:03,1/11/2017 17:29,7.2,426, Untrusted Search Path,nan
CVE-2017-15536,3/10/2019 0:03,5/02/2018 3:29,6.5,269, Improper Privilege Management,nan
CVE-2017-15534,3/10/2019 0:03,26/03/2018 16:29,7.2,287, Improper Authentication,nan
CVE-2017-15533,3/10/2019 0:03,17/05/2018 13:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-15519,3/10/2019 0:03,6/03/2018 20:29,6.4,287, Improper Authentication,nan
CVE-2017-15415,3/10/2019 0:03,28/08/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15404,3/10/2019 0:03,9/01/2019 19:29,7.2,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2017-15403,3/10/2019 0:03,9/01/2019 19:29,4.4,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-15397,3/10/2019 0:03,7/02/2018 23:29,5.8,311, Missing Encryption of Sensitive Data,nan
CVE-2017-15393,3/10/2019 0:03,7/02/2018 23:29,6.8,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-15379,3/10/2019 0:03,23/10/2017 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15371,3/10/2019 0:03,16/10/2017 4:29,4.3,617, Reachable Assertion,nan
CVE-2017-15368,3/10/2019 0:03,16/10/2017 1:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-15366,3/10/2019 0:03,26/10/2017 20:29,10.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-15352,3/10/2019 0:03,15/02/2018 16:29,2.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-15349,3/10/2019 0:03,15/02/2018 16:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15332,3/10/2019 0:03,15/02/2018 16:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15315,3/10/2019 0:03,9/03/2018 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15314,3/10/2019 0:03,9/03/2018 21:29,2.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15302,3/10/2019 0:03,16/10/2017 1:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-15295,3/10/2019 0:03,16/10/2017 16:29,10.0,287, Improper Authentication,nan
CVE-2017-15293,3/10/2019 0:03,16/10/2017 16:29,10.0,287, Improper Authentication,nan
CVE-2017-15290,3/10/2019 0:03,12/10/2017 16:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-15288,3/10/2019 0:03,15/11/2017 16:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-15272,3/10/2019 0:03,15/11/2017 16:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-15269,3/10/2019 0:03,15/11/2017 16:29,4.0,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2017-15268,3/10/2019 0:03,12/10/2017 15:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15235,3/10/2019 0:03,11/10/2017 3:29,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-1523,3/10/2019 0:03,24/10/2017 21:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2017-15226,3/10/2019 0:03,10/10/2017 23:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-15225,3/10/2019 0:03,10/10/2017 23:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15223,3/10/2019 0:03,24/10/2017 17:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-15218,3/10/2019 0:03,10/10/2017 20:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15217,3/10/2019 0:03,10/10/2017 20:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15211,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15209,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15208,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15207,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15206,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15204,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15203,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15202,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15201,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15200,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15199,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15197,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15196,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15195,3/10/2019 0:03,11/10/2017 1:32,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2017-15189,3/10/2019 0:03,10/10/2017 21:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15131,3/10/2019 0:03,9/01/2018 21:29,4.6,276, Incorrect Default Permissions,nan
CVE-2017-15114,3/10/2019 0:03,27/11/2017 16:29,9.3,295, Improper Certificate Validation,nan
CVE-2017-15108,3/10/2019 0:03,20/01/2018 0:29,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-15055,3/10/2019 0:03,27/11/2017 19:29,6.5,269, Improper Privilege Management,nan
CVE-2017-15053,3/10/2019 0:03,27/11/2017 19:29,4.0,269, Improper Privilege Management,nan
CVE-2017-15052,3/10/2019 0:03,27/11/2017 19:29,4.0,269, Improper Privilege Management,nan
CVE-2017-15045,3/10/2019 0:03,6/10/2017 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-15042,3/10/2019 0:03,5/10/2017 21:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-15033,3/10/2019 0:03,5/10/2017 7:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15032,3/10/2019 0:03,5/10/2017 7:29,7.5,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-15024,3/10/2019 0:03,5/10/2017 1:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-15021,3/10/2019 0:03,5/10/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-15020,3/10/2019 0:03,5/10/2017 1:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-15018,3/10/2019 0:03,5/10/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-15014,3/10/2019 0:03,13/10/2017 16:29,4.0,269, Improper Privilege Management,nan
CVE-2017-15013,3/10/2019 0:03,13/10/2017 16:29,6.5,269, Improper Privilege Management,nan
CVE-2017-14993,3/10/2019 0:03,20/02/2018 23:29,5.0,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-14990,3/10/2019 0:03,3/10/2017 1:29,4.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2017-14970,3/10/2019 0:03,2/10/2017 1:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14953,3/10/2019 0:03,1/12/2017 17:29,3.3,311, Missing Encryption of Sensitive Data,nan
CVE-2017-14942,3/10/2019 0:03,30/09/2017 1:29,7.5,552, Files or Directories Accessible to External Parties,nan
CVE-2017-14939,3/10/2019 0:03,30/09/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14938,3/10/2019 0:03,30/09/2017 1:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-14934,3/10/2019 0:03,30/09/2017 1:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14933,3/10/2019 0:03,30/09/2017 1:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14932,3/10/2019 0:03,30/09/2017 1:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14931,3/10/2019 0:03,30/09/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14930,3/10/2019 0:03,30/09/2017 1:29,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-1493,3/10/2019 0:03,9/01/2018 20:29,5.5,269, Improper Privilege Management,nan
CVE-2017-14929,3/10/2019 0:03,30/09/2017 1:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14910,3/10/2019 0:03,23/02/2018 23:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-14905,3/10/2019 0:03,5/12/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14904,3/10/2019 0:03,5/12/2017 19:29,7.2,416, Use After Free,nan
CVE-2017-14903,3/10/2019 0:03,5/12/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14895,3/10/2019 0:03,5/12/2017 19:29,7.2,672, Operation on a Resource after Expiration or Release,nan
CVE-2017-14880,3/10/2019 0:03,3/04/2018 17:29,4.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14867,3/10/2019 0:03,29/09/2017 1:34,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14863,3/10/2019 0:03,29/09/2017 1:34,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14861,3/10/2019 0:03,29/09/2017 1:34,4.3,674, Uncontrolled Recursion,nan
CVE-2017-14860,3/10/2019 0:03,29/09/2017 1:34,4.3,125, Out-of-bounds Read,nan
CVE-2017-14849,3/10/2019 0:03,28/09/2017 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14798,3/10/2019 0:03,1/03/2018 20:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14741,3/10/2019 0:03,26/09/2017 2:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14733,3/10/2019 0:03,25/09/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14731,3/10/2019 0:03,25/09/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14730,3/10/2019 0:03,25/09/2017 17:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-14711,3/10/2019 0:03,13/11/2017 9:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2017-14705,3/10/2019 0:03,22/09/2017 18:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14698,3/10/2019 0:03,29/01/2018 16:29,5.0,287, Improper Authentication,nan
CVE-2017-14684,3/10/2019 0:03,22/09/2017 1:29,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14681,3/10/2019 0:03,21/09/2017 23:29,2.1,665, Improper Initialization,nan
CVE-2017-14649,3/10/2019 0:03,21/09/2017 17:29,4.3,617, Reachable Assertion,nan
CVE-2017-14646,3/10/2019 0:03,21/09/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14645,3/10/2019 0:03,21/09/2017 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14643,3/10/2019 0:03,21/09/2017 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14639,3/10/2019 0:03,21/09/2017 17:29,6.8,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2017-14635,3/10/2019 0:03,21/09/2017 13:29,6.5,20, Improper Input Validation,nan
CVE-2017-14623,3/10/2019 0:03,20/09/2017 23:29,5.1,287, Improper Authentication,nan
CVE-2017-14610,3/10/2019 0:03,20/09/2017 18:29,4.6,665, Improper Initialization,nan
CVE-2017-14609,3/10/2019 0:03,20/09/2017 18:29,4.6,665, Improper Initialization,nan
CVE-2017-14602,3/10/2019 0:03,26/09/2017 14:29,9.0,287, Improper Authentication,nan
CVE-2017-1459,3/10/2019 0:03,10/01/2018 17:29,4.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-14533,3/10/2019 0:03,18/09/2017 1:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14531,3/10/2019 0:03,18/09/2017 1:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-14529,3/10/2019 0:03,18/09/2017 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14519,3/10/2019 0:03,17/09/2017 23:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14502,3/10/2019 0:03,17/09/2017 18:29,5.0,193, Off-by-one Error,nan
CVE-2017-14495,3/10/2019 0:03,3/10/2017 1:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14487,3/10/2019 0:03,1/12/2017 17:29,6.4,290, Authentication Bypass by Spoofing,nan
CVE-2017-14486,3/10/2019 0:03,1/12/2017 17:29,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-14484,3/10/2019 0:03,15/09/2017 10:29,6.9,269, Improper Privilege Management,nan
CVE-2017-14483,3/10/2019 0:03,15/09/2017 10:29,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14481,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14480,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14479,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14478,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14477,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14476,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14475,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14474,3/10/2019 0:03,9/05/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14431,3/10/2019 0:03,13/09/2017 22:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14429,3/10/2019 0:03,13/09/2017 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14428,3/10/2019 0:03,13/09/2017 17:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2017-14427,3/10/2019 0:03,13/09/2017 17:29,2.1,276, Incorrect Default Permissions,nan
CVE-2017-14426,3/10/2019 0:03,13/09/2017 17:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2017-14425,3/10/2019 0:03,13/09/2017 17:29,2.1,276, Incorrect Default Permissions,nan
CVE-2017-14424,3/10/2019 0:03,13/09/2017 17:29,2.1,276, Incorrect Default Permissions,nan
CVE-2017-14423,3/10/2019 0:03,13/09/2017 17:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-14418,3/10/2019 0:03,13/09/2017 17:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2017-14417,3/10/2019 0:03,13/09/2017 17:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2017-14405,3/10/2019 0:03,13/09/2017 3:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1440,3/10/2019 0:03,30/08/2017 21:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14380,3/10/2019 0:03,13/12/2017 20:29,7.2,269, Improper Privilege Management,nan
CVE-2017-14375,3/10/2019 0:03,1/11/2017 1:29,10.0,290, Authentication Bypass by Spoofing,nan
CVE-2017-14349,3/10/2019 0:03,30/09/2017 1:29,7.5,269, Improper Privilege Management,nan
CVE-2017-14343,3/10/2019 0:03,12/09/2017 17:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14339,3/10/2019 0:03,20/09/2017 16:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14330,3/10/2019 0:03,23/10/2017 8:29,7.2,269, Improper Privilege Management,nan
CVE-2017-14329,3/10/2019 0:03,23/10/2017 8:29,7.2,269, Improper Privilege Management,nan
CVE-2017-14326,3/10/2019 0:03,12/09/2017 8:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14325,3/10/2019 0:03,12/09/2017 8:29,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14324,3/10/2019 0:03,12/09/2017 8:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14314,3/10/2019 0:03,12/09/2017 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14312,3/10/2019 0:03,11/09/2017 22:29,7.2,269, Improper Privilege Management,nan
CVE-2017-14263,3/10/2019 0:03,11/09/2017 9:29,9.3,384, Session Fixation,nan
CVE-2017-14262,3/10/2019 0:03,11/09/2017 9:29,9.3,326, Inadequate Encryption Strength,nan
CVE-2017-14248,3/10/2019 0:03,11/09/2017 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14244,3/10/2019 0:03,17/09/2017 19:29,10.0,287, Improper Authentication,nan
CVE-2017-14243,3/10/2019 0:03,17/09/2017 19:29,10.0,287, Improper Authentication,nan
CVE-2017-14229,3/10/2019 0:03,9/09/2017 8:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14227,3/10/2019 0:03,9/09/2017 8:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14226,3/10/2019 0:03,9/09/2017 8:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14222,3/10/2019 0:03,9/09/2017 1:29,7.1,834, Excessive Iteration,nan
CVE-2017-14198,3/10/2019 0:03,30/11/2017 2:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14189,3/10/2019 0:03,29/11/2017 19:29,10.0,521, Weak Password Requirements,nan
CVE-2017-14187,3/10/2019 0:03,24/05/2018 20:29,7.2,269, Improper Privilege Management,nan
CVE-2017-14178,3/10/2019 0:03,2/02/2018 14:29,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-14175,3/10/2019 0:03,7/09/2017 6:29,7.1,834, Excessive Iteration,nan
CVE-2017-14174,3/10/2019 0:03,7/09/2017 6:29,7.1,834, Excessive Iteration,nan
CVE-2017-14173,3/10/2019 0:03,7/09/2017 6:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14172,3/10/2019 0:03,7/09/2017 6:29,7.1,834, Excessive Iteration,nan
CVE-2017-14171,3/10/2019 0:03,7/09/2017 6:29,7.1,834, Excessive Iteration,nan
CVE-2017-14170,3/10/2019 0:03,7/09/2017 6:29,7.1,834, Excessive Iteration,nan
CVE-2017-14163,3/10/2019 0:03,31/10/2017 18:29,6.5,384, Session Fixation,nan
CVE-2017-14159,3/10/2019 0:03,5/09/2017 18:29,1.9,665, Improper Initialization,nan
CVE-2017-14147,3/10/2019 0:03,7/09/2017 14:29,7.5,287, Improper Authentication,nan
CVE-2017-14139,3/10/2019 0:03,4/09/2017 23:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14138,3/10/2019 0:03,4/09/2017 23:29,7.5,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-14130,3/10/2019 0:03,4/09/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14129,3/10/2019 0:03,4/09/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14128,3/10/2019 0:03,4/09/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14124,3/10/2019 0:03,13/09/2017 16:29,3.3,269, Improper Privilege Management,nan
CVE-2017-14122,3/10/2019 0:03,3/09/2017 20:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-14119,3/10/2019 0:03,3/09/2017 20:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14118,3/10/2019 0:03,3/09/2017 20:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14115,3/10/2019 0:03,3/09/2017 19:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2017-14111,3/10/2019 0:03,17/11/2017 20:29,4.0,522, Insufficiently Protected Credentials,nan
CVE-2017-14108,3/10/2019 0:03,5/09/2017 6:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-14102,3/10/2019 0:03,1/09/2017 5:29,4.6,665, Improper Initialization,nan
CVE-2017-14100,3/10/2019 0:03,2/09/2017 16:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14086,3/10/2019 0:03,6/10/2017 1:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-14059,3/10/2019 0:03,31/08/2017 15:29,7.1,834, Excessive Iteration,nan
CVE-2017-14058,3/10/2019 0:03,31/08/2017 15:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-14057,3/10/2019 0:03,31/08/2017 15:29,7.1,834, Excessive Iteration,nan
CVE-2017-14056,3/10/2019 0:03,31/08/2017 15:29,7.1,834, Excessive Iteration,nan
CVE-2017-14055,3/10/2019 0:03,31/08/2017 15:29,7.1,834, Excessive Iteration,nan
CVE-2017-14054,3/10/2019 0:03,31/08/2017 15:29,7.1,834, Excessive Iteration,nan
CVE-2017-14034,3/10/2019 0:03,16/11/2017 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-13889,3/10/2019 0:03,11/01/2019 18:29,7.5,287, Improper Authentication,nan
CVE-2017-1386,3/10/2019 0:03,31/07/2017 21:29,4.3,521, Weak Password Requirements,nan
CVE-2017-1382,3/10/2019 0:03,24/07/2017 21:29,3.6,276, Incorrect Default Permissions,nan
CVE-2017-1378,3/10/2019 0:03,5/10/2017 17:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-13779,3/10/2019 0:03,14/09/2017 6:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-13777,3/10/2019 0:03,30/08/2017 9:29,7.1,834, Excessive Iteration,nan
CVE-2017-13776,3/10/2019 0:03,30/08/2017 9:29,7.1,834, Excessive Iteration,nan
CVE-2017-13771,3/10/2019 0:03,7/09/2017 13:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-13769,3/10/2019 0:03,30/08/2017 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-13767,3/10/2019 0:03,30/08/2017 9:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13765,3/10/2019 0:03,30/08/2017 9:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-13763,3/10/2019 0:03,30/08/2017 0:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-1376,3/10/2019 0:03,29/08/2017 1:35,7.5,829, Inclusion of Functionality from Untrusted Control Sphere,nan
CVE-2017-13757,3/10/2019 0:03,29/08/2017 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-13756,3/10/2019 0:03,29/08/2017 22:29,2.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13752,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13751,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13750,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13749,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13748,3/10/2019 0:03,29/08/2017 6:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13747,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13746,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13745,3/10/2019 0:03,29/08/2017 6:29,5.0,617, Reachable Assertion,nan
CVE-2017-13736,3/10/2019 0:03,29/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13728,3/10/2019 0:03,29/08/2017 6:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13727,3/10/2019 0:03,29/08/2017 6:29,4.3,617, Reachable Assertion,nan
CVE-2017-13726,3/10/2019 0:03,29/08/2017 6:29,4.3,617, Reachable Assertion,nan
CVE-2017-13725,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13721,3/10/2019 0:03,10/10/2017 1:30,1.9,269, Improper Privilege Management,nan
CVE-2017-13716,3/10/2019 0:03,28/08/2017 21:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-13713,3/10/2019 0:03,7/09/2017 13:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-13707,3/10/2019 0:03,27/08/2017 15:29,10.0,269, Improper Privilege Management,nan
CVE-2017-1370,3/10/2019 0:03,31/07/2017 21:29,4.0,209, Information Exposure Through an Error Message,nan
CVE-2017-13690,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13689,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13688,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13687,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13683,3/10/2019 0:03,23/10/2017 20:29,2.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13682,3/10/2019 0:03,23/10/2017 20:29,2.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13673,3/10/2019 0:03,29/08/2017 16:29,4.0,617, Reachable Assertion,nan
CVE-2017-13663,3/10/2019 0:03,1/12/2017 17:29,5.0,312, Cleartext Storage of Sensitive Information,nan
CVE-2017-13658,3/10/2019 0:03,24/08/2017 6:29,4.3,617, Reachable Assertion,nan
CVE-2017-13649,3/10/2019 0:03,23/08/2017 21:29,2.1,665, Improper Initialization,nan
CVE-2017-13648,3/10/2019 0:03,23/08/2017 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-1362,3/10/2019 0:03,25/09/2017 16:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-1339,3/10/2019 0:03,5/10/2017 17:29,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-1337,3/10/2019 0:03,10/07/2017 16:29,4.3,522, Insufficiently Protected Credentials,nan
CVE-2017-13305,3/10/2019 0:03,4/04/2018 16:29,3.6,125, Out-of-bounds Read,nan
CVE-2017-13289,3/10/2019 0:03,4/04/2018 16:29,7.2,131, Incorrect Calculation of Buffer Size,nan
CVE-2017-13288,3/10/2019 0:03,4/04/2018 16:29,7.2,682, Incorrect Calculation,nan
CVE-2017-13286,3/10/2019 0:03,4/04/2018 16:29,7.2,502, Deserialization of Untrusted Data,nan
CVE-2017-13279,3/10/2019 0:03,4/04/2018 16:29,4.3,834, Excessive Iteration,nan
CVE-2017-1326,3/10/2019 0:03,22/06/2017 18:29,4.0,269, Improper Privilege Management,nan
CVE-2017-13252,3/10/2019 0:03,4/04/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13247,3/10/2019 0:03,12/02/2018 19:29,4.6,862, Missing Authorization,nan
CVE-2017-13236,3/10/2019 0:03,12/02/2018 19:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-13234,3/10/2019 0:03,12/02/2018 19:29,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13220,3/10/2019 0:03,12/01/2018 23:29,4.6,843, Access of Resource Using Incompatible Type (‘Type Confusion’),nan
CVE-2017-13209,3/10/2019 0:03,12/01/2018 23:29,7.2,269, Improper Privilege Management,nan
CVE-2017-13208,3/10/2019 0:03,12/01/2018 23:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13199,3/10/2019 0:03,12/01/2018 23:29,7.8,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-13196,3/10/2019 0:03,12/01/2018 23:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13195,3/10/2019 0:03,12/01/2018 23:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13193,3/10/2019 0:03,12/01/2018 23:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13192,3/10/2019 0:03,12/01/2018 23:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13191,3/10/2019 0:03,12/01/2018 23:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-13190,3/10/2019 0:03,12/01/2018 23:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-13189,3/10/2019 0:03,12/01/2018 23:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-13168,3/10/2019 0:03,6/12/2017 14:29,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-13166,3/10/2019 0:03,6/12/2017 14:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-13160,3/10/2019 0:03,6/12/2017 14:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-13156,3/10/2019 0:03,6/12/2017 14:29,7.2,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-13154,3/10/2019 0:03,6/12/2017 14:29,7.2,416, Use After Free,nan
CVE-2017-13153,3/10/2019 0:03,6/12/2017 14:29,7.2,665, Improper Initialization,nan
CVE-2017-13151,3/10/2019 0:03,6/12/2017 14:29,9.3,682, Incorrect Calculation,nan
CVE-2017-13146,3/10/2019 0:03,23/08/2017 6:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13141,3/10/2019 0:03,23/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13134,3/10/2019 0:03,23/08/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-13133,3/10/2019 0:03,23/08/2017 3:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-13132,3/10/2019 0:03,23/08/2017 3:29,4.3,617, Reachable Assertion,nan
CVE-2017-13131,3/10/2019 0:03,23/08/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13130,3/10/2019 0:03,23/08/2017 0:29,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-1309,3/10/2019 0:03,19/07/2017 20:29,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2017-13088,3/10/2019 0:03,17/10/2017 13:29,2.9,330, Use of Insufficiently Random Values,nan
CVE-2017-13087,3/10/2019 0:03,17/10/2017 13:29,2.9,330, Use of Insufficiently Random Values,nan
CVE-2017-13086,3/10/2019 0:03,17/10/2017 13:29,5.4,330, Use of Insufficiently Random Values,nan
CVE-2017-13084,3/10/2019 0:03,17/10/2017 13:29,5.4,330, Use of Insufficiently Random Values,nan
CVE-2017-13082,3/10/2019 0:03,17/10/2017 13:29,5.8,330, Use of Insufficiently Random Values,nan
CVE-2017-13081,3/10/2019 0:03,17/10/2017 13:29,2.9,330, Use of Insufficiently Random Values,nan
CVE-2017-13080,3/10/2019 0:03,17/10/2017 13:29,2.9,330, Use of Insufficiently Random Values,nan
CVE-2017-1308,3/10/2019 0:03,13/07/2017 15:29,4.0,552, Files or Directories Accessible to External Parties,nan
CVE-2017-13079,3/10/2019 0:03,17/10/2017 13:29,2.9,330, Use of Insufficiently Random Values,nan
CVE-2017-13078,3/10/2019 0:03,17/10/2017 13:29,2.9,330, Use of Insufficiently Random Values,nan
CVE-2017-13077,3/10/2019 0:03,17/10/2017 2:29,5.4,330, Use of Insufficiently Random Values,nan
CVE-2017-13066,3/10/2019 0:03,22/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13062,3/10/2019 0:03,22/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13060,3/10/2019 0:03,22/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13059,3/10/2019 0:03,22/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13058,3/10/2019 0:03,22/08/2017 6:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-13055,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13054,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13053,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13052,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13051,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13050,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13049,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13048,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13047,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13046,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13045,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13044,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13043,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13042,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13041,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13040,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13039,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13038,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13037,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13036,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13035,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13034,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13033,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13032,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13031,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13030,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13029,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13028,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13027,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13026,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13025,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13024,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13023,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13022,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13021,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13020,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13019,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13018,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13017,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13016,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13015,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13014,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13013,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13012,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13010,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13009,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13008,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13007,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13006,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13005,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13004,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13003,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13002,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13001,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13000,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12999,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12998,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12997,3/10/2019 0:03,14/09/2017 6:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-12996,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12995,3/10/2019 0:03,14/09/2017 6:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-12994,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12993,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12992,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12991,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12990,3/10/2019 0:03,14/09/2017 6:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-12989,3/10/2019 0:03,14/09/2017 6:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-12988,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12987,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12986,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12985,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12974,3/10/2019 0:03,20/08/2017 16:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-12973,3/10/2019 0:03,20/08/2017 16:29,4.3,354, Improper Validation of Integrity Check Value,nan
CVE-2017-12967,3/10/2019 0:03,19/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12964,3/10/2019 0:03,18/08/2017 21:29,7.8,674, Uncontrolled Recursion,nan
CVE-2017-12962,3/10/2019 0:03,18/08/2017 21:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12960,3/10/2019 0:03,18/08/2017 21:29,5.0,617, Reachable Assertion,nan
CVE-2017-12959,3/10/2019 0:03,18/08/2017 21:29,5.0,617, Reachable Assertion,nan
CVE-2017-12957,3/10/2019 0:03,18/08/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12951,3/10/2019 0:03,28/08/2017 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12944,3/10/2019 0:03,18/08/2017 15:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12937,3/10/2019 0:03,18/08/2017 12:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12933,3/10/2019 0:03,18/08/2017 3:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12902,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12901,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12900,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12899,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12898,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12897,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12896,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12895,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12894,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12893,3/10/2019 0:03,14/09/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12875,3/10/2019 0:03,29/08/2017 15:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12873,3/10/2019 0:03,1/09/2017 21:29,7.5,384, Session Fixation,nan
CVE-2017-12867,3/10/2019 0:03,29/08/2017 15:29,4.3,613, Insufficient Session Expiration,nan
CVE-2017-12861,3/10/2019 0:03,10/10/2017 13:29,7.5,521, Weak Password Requirements,nan
CVE-2017-12860,3/10/2019 0:03,10/10/2017 13:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-12852,3/10/2019 0:03,15/08/2017 16:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-12847,3/10/2019 0:03,23/08/2017 21:29,6.3,665, Improper Initialization,nan
CVE-2017-1283,3/10/2019 0:03,27/11/2017 21:29,4.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12822,3/10/2019 0:03,4/10/2017 1:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2017-12819,3/10/2019 0:03,4/10/2017 1:29,7.5,287, Improper Authentication,nan
CVE-2017-12817,3/10/2019 0:03,25/08/2017 20:29,5.0,311, Missing Encryption of Sensitive Data,nan
CVE-2017-12816,3/10/2019 0:03,25/08/2017 20:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-12763,3/10/2019 0:03,29/08/2017 15:29,9.0,276, Incorrect Default Permissions,nan
CVE-2017-12739,3/10/2019 0:03,15/11/2017 8:29,10.0,1188, Insecure Default Initialization of Resource,nan
CVE-2017-12736,3/10/2019 0:03,26/12/2017 4:29,5.8,665, Improper Initialization,nan
CVE-2017-12720,3/10/2019 0:03,15/02/2018 10:29,6.8,306, Missing Authentication for Critical Function,nan
CVE-2017-12693,3/10/2019 0:03,1/09/2017 21:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12692,3/10/2019 0:03,1/09/2017 21:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12691,3/10/2019 0:03,1/09/2017 21:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12678,3/10/2019 0:03,8/08/2017 1:34,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-12676,3/10/2019 0:03,7/08/2017 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12675,3/10/2019 0:03,7/08/2017 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12674,3/10/2019 0:03,7/08/2017 21:29,7.1,834, Excessive Iteration,nan
CVE-2017-12673,3/10/2019 0:03,7/08/2017 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12672,3/10/2019 0:03,7/08/2017 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12670,3/10/2019 0:03,7/08/2017 21:29,4.3,617, Reachable Assertion,nan
CVE-2017-12669,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12668,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12667,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12666,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12665,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12664,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12663,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12662,3/10/2019 0:03,7/08/2017 21:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-1266,3/10/2019 0:03,20/12/2017 18:29,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-12654,3/10/2019 0:03,7/08/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12653,3/10/2019 0:03,7/08/2017 18:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-12644,3/10/2019 0:03,7/08/2017 15:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12643,3/10/2019 0:03,7/08/2017 15:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12642,3/10/2019 0:03,7/08/2017 15:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12641,3/10/2019 0:03,7/08/2017 15:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12635,3/10/2019 0:03,14/11/2017 20:29,10.0,269, Improper Privilege Management,nan
CVE-2017-12613,3/10/2019 0:03,24/10/2017 1:29,3.6,125, Out-of-bounds Read,nan
CVE-2017-12596,3/10/2019 0:03,7/08/2017 1:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12587,3/10/2019 0:03,6/08/2017 14:29,6.8,834, Excessive Iteration,nan
CVE-2017-12582,3/10/2019 0:03,18/08/2017 16:29,7.5,862, Missing Authorization,nan
CVE-2017-12579,3/10/2019 0:03,19/10/2017 13:29,7.2,427, Uncontrolled Search Path Element,nan
CVE-2017-12576,3/10/2019 0:03,24/08/2018 19:29,9.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-12575,3/10/2019 0:03,24/08/2018 19:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2017-12566,3/10/2019 0:03,5/08/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12565,3/10/2019 0:03,5/08/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12564,3/10/2019 0:03,5/08/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12563,3/10/2019 0:03,5/08/2017 18:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12467,3/10/2019 0:03,7/02/2018 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12463,3/10/2019 0:03,7/02/2018 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12440,3/10/2019 0:03,18/08/2017 14:29,6.0,306, Missing Authentication for Critical Function,nan
CVE-2017-12435,3/10/2019 0:03,4/08/2017 10:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12434,3/10/2019 0:03,4/08/2017 10:29,4.3,617, Reachable Assertion,nan
CVE-2017-12433,3/10/2019 0:03,4/08/2017 10:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12432,3/10/2019 0:03,4/08/2017 10:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12430,3/10/2019 0:03,4/08/2017 10:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12429,3/10/2019 0:03,4/08/2017 10:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12428,3/10/2019 0:03,4/08/2017 10:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12427,3/10/2019 0:03,4/08/2017 9:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12422,3/10/2019 0:03,29/08/2017 15:29,4.0,269, Improper Privilege Management,nan
CVE-2017-12418,3/10/2019 0:03,4/08/2017 0:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12412,3/10/2019 0:03,7/02/2018 17:29,6.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-12378,3/10/2019 0:03,26/01/2018 20:29,7.1,125, Out-of-bounds Read,nan
CVE-2017-12377,3/10/2019 0:03,26/01/2018 20:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-12340,3/10/2019 0:03,30/11/2017 9:29,4.6,116, Improper Encoding or Escaping of Output,nan
CVE-2017-12335,3/10/2019 0:03,30/11/2017 9:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-1233,3/10/2019 0:03,31/01/2018 15:29,7.2,863, Incorrect Authorization,nan
CVE-2017-1232,3/10/2019 0:03,26/10/2017 21:29,4.3,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-1227,3/10/2019 0:03,31/07/2017 21:29,7.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-1221,3/10/2019 0:03,13/11/2017 23:29,5.0,521, Weak Password Requirements,nan
CVE-2017-12190,3/10/2019 0:03,22/11/2017 18:29,4.9,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-12155,3/10/2019 0:03,12/12/2017 20:29,3.3,306, Missing Authentication for Critical Function,nan
CVE-2017-12146,3/10/2019 0:03,8/09/2017 19:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-12144,3/10/2019 0:03,2/08/2017 5:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12140,3/10/2019 0:03,2/08/2017 5:29,7.1,681, Incorrect Conversion between Numeric Types,nan
CVE-2017-12137,3/10/2019 0:03,24/08/2017 14:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-12135,3/10/2019 0:03,24/08/2017 14:29,4.6,682, Incorrect Calculation,nan
CVE-2017-12134,3/10/2019 0:03,24/08/2017 14:29,7.2,682, Incorrect Calculation,nan
CVE-2017-12133,3/10/2019 0:03,7/09/2017 13:29,4.3,416, Use After Free,nan
CVE-2017-12132,3/10/2019 0:03,1/08/2017 16:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-12127,3/10/2019 0:03,14/05/2018 20:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-12123,3/10/2019 0:03,14/05/2018 20:29,3.3,522, Insufficiently Protected Credentials,nan
CVE-2017-12118,3/10/2019 0:03,19/01/2018 23:29,6.8,863, Incorrect Authorization,nan
CVE-2017-12117,3/10/2019 0:03,19/01/2018 22:29,6.8,863, Incorrect Authorization,nan
CVE-2017-12116,3/10/2019 0:03,19/01/2018 23:29,6.8,863, Incorrect Authorization,nan
CVE-2017-12115,3/10/2019 0:03,19/01/2018 22:29,6.8,863, Incorrect Authorization,nan
CVE-2017-12114,3/10/2019 0:03,19/01/2018 22:29,4.3,863, Incorrect Authorization,nan
CVE-2017-12113,3/10/2019 0:03,19/01/2018 23:29,6.8,863, Incorrect Authorization,nan
CVE-2017-12112,3/10/2019 0:03,19/01/2018 22:29,6.8,863, Incorrect Authorization,nan
CVE-2017-12096,3/10/2019 0:03,7/11/2017 16:29,6.1,290, Authentication Bypass by Spoofing,nan
CVE-2017-12095,3/10/2019 0:03,5/04/2018 19:29,3.3,290, Authentication Bypass by Spoofing,nan
CVE-2017-12093,3/10/2019 0:03,5/04/2018 21:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-12084,3/10/2019 0:03,7/11/2017 16:29,6.0,862, Missing Authorization,nan
CVE-2017-1207,3/10/2019 0:03,5/07/2017 17:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-12064,3/10/2019 0:03,1/08/2017 5:29,5.0,116, Improper Encoding or Escaping of Output,nan
CVE-2017-1201,3/10/2019 0:03,5/10/2017 17:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-1197,3/10/2019 0:03,15/06/2017 13:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-1196,3/10/2019 0:03,7/06/2017 17:29,5.0,521, Weak Password Requirements,nan
CVE-2017-11936,3/10/2019 0:03,12/12/2017 21:29,6.5,20, Improper Input Validation,nan
CVE-2017-11830,3/10/2019 0:03,15/11/2017 3:29,4.6,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2017-11829,3/10/2019 0:03,13/10/2017 13:29,2.1,552, Files or Directories Accessible to External Parties,nan
CVE-2017-11823,3/10/2019 0:03,13/10/2017 13:29,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1181,3/10/2019 0:03,17/07/2017 13:18,1.9,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-11786,3/10/2019 0:03,13/10/2017 13:29,9.3,294, Authentication Bypass by Capture-replay,nan
CVE-2017-11782,3/10/2019 0:03,13/10/2017 13:29,4.6,20, Improper Input Validation,nan
CVE-2017-11771,3/10/2019 0:03,13/10/2017 13:29,10.0,20, Improper Input Validation,nan
CVE-2017-11767,3/10/2019 0:03,2/11/2017 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11763,3/10/2019 0:03,13/10/2017 13:29,6.8,20, Improper Input Validation,nan
CVE-2017-11762,3/10/2019 0:03,13/10/2017 13:29,6.8,20, Improper Input Validation,nan
CVE-2017-11757,3/10/2019 0:03,31/07/2017 14:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-11755,3/10/2019 0:03,30/07/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11754,3/10/2019 0:03,30/07/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11752,3/10/2019 0:03,30/07/2017 18:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11751,3/10/2019 0:03,30/07/2017 17:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11747,3/10/2019 0:03,30/07/2017 16:29,2.1,269, Improper Privilege Management,nan
CVE-2017-11746,3/10/2019 0:03,30/07/2017 16:29,7.8,552, Files or Directories Accessible to External Parties,nan
CVE-2017-11741,3/10/2019 0:03,8/08/2017 19:29,7.2,276, Incorrect Default Permissions,nan
CVE-2017-11734,3/10/2019 0:03,29/07/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11730,3/10/2019 0:03,29/07/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11729,3/10/2019 0:03,29/07/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11728,3/10/2019 0:03,29/07/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11724,3/10/2019 0:03,29/07/2017 5:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11717,3/10/2019 0:03,28/07/2017 5:29,5.0,290, Authentication Bypass by Spoofing,nan
CVE-2017-11705,3/10/2019 0:03,28/07/2017 5:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11704,3/10/2019 0:03,28/07/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11703,3/10/2019 0:03,28/07/2017 5:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11692,3/10/2019 0:03,30/07/2017 17:29,5.0,617, Reachable Assertion,nan
CVE-2017-11681,3/10/2019 0:03,27/07/2017 6:29,6.5,269, Improper Privilege Management,nan
CVE-2017-11667,3/10/2019 0:03,26/07/2017 20:29,6.8,613, Insufficient Session Expiration,nan
CVE-2017-11655,3/10/2019 0:03,26/07/2017 14:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11653,3/10/2019 0:03,18/08/2017 17:29,4.6,426, Untrusted Search Path,nan
CVE-2017-11652,3/10/2019 0:03,18/08/2017 17:29,4.6,426, Untrusted Search Path,nan
CVE-2017-11644,3/10/2019 0:03,26/07/2017 8:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11641,3/10/2019 0:03,26/07/2017 8:29,7.5,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11639,3/10/2019 0:03,26/07/2017 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11632,3/10/2019 0:03,26/02/2018 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-11627,3/10/2019 0:03,25/07/2017 23:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11626,3/10/2019 0:03,25/07/2017 23:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11625,3/10/2019 0:03,25/07/2017 23:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11624,3/10/2019 0:03,25/07/2017 23:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11610,3/10/2019 0:03,23/08/2017 14:29,9.0,276, Incorrect Default Permissions,nan
CVE-2017-11608,3/10/2019 0:03,24/07/2017 12:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11605,3/10/2019 0:03,24/07/2017 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11589,3/10/2019 0:03,24/07/2017 0:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11588,3/10/2019 0:03,24/07/2017 0:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11577,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11575,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11573,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11572,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11570,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11569,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11568,3/10/2019 0:03,23/07/2017 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11566,3/10/2019 0:03,25/07/2017 15:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11564,3/10/2019 0:03,24/08/2018 19:29,9.0,787, Out-of-bounds Write,nan
CVE-2017-1156,3/10/2019 0:03,5/05/2017 19:29,6.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-11556,3/10/2019 0:03,23/07/2017 3:29,5.0,674, Uncontrolled Recursion,nan
CVE-2017-11554,3/10/2019 0:03,23/07/2017 3:29,5.0,674, Uncontrolled Recursion,nan
CVE-2017-11549,3/10/2019 0:03,31/07/2017 13:29,7.1,834, Excessive Iteration,nan
CVE-2017-11542,3/10/2019 0:03,23/07/2017 3:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-11541,3/10/2019 0:03,23/07/2017 3:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-11540,3/10/2019 0:03,23/07/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11539,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11538,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11537,3/10/2019 0:03,23/07/2017 3:29,4.3,682, Incorrect Calculation,nan
CVE-2017-11536,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11535,3/10/2019 0:03,23/07/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11534,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11533,3/10/2019 0:03,23/07/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11532,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11531,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11529,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11528,3/10/2019 0:03,23/07/2017 3:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11525,3/10/2019 0:03,23/07/2017 3:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-11524,3/10/2019 0:03,23/07/2017 3:29,4.3,617, Reachable Assertion,nan
CVE-2017-11523,3/10/2019 0:03,22/07/2017 21:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11519,3/10/2019 0:03,21/07/2017 21:29,5.0,335, Incorrect Usage of Seeds in Pseudo-Random Number Generator (PRNG),nan
CVE-2017-11505,3/10/2019 0:03,21/07/2017 16:29,7.1,834, Excessive Iteration,nan
CVE-2017-1150,3/10/2019 0:03,8/03/2017 19:59,3.5,269, Improper Privilege Management,nan
CVE-2017-11478,3/10/2019 0:03,20/07/2017 16:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11472,3/10/2019 0:03,20/07/2017 4:29,3.6,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-11468,3/10/2019 0:03,20/07/2017 23:29,5.0,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-11467,3/10/2019 0:03,20/07/2017 0:29,10.0,269, Improper Privilege Management,nan
CVE-2017-1145,3/10/2019 0:03,20/03/2017 16:59,7.8,404, Improper Resource Shutdown or Release,nan
CVE-2017-11447,3/10/2019 0:03,19/07/2017 7:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11446,3/10/2019 0:03,19/07/2017 7:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11438,3/10/2019 0:03,2/08/2017 19:29,6.5,269, Improper Privilege Management,nan
CVE-2017-11437,3/10/2019 0:03,2/08/2017 19:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-11423,3/10/2019 0:03,18/07/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11422,3/10/2019 0:03,24/07/2017 12:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-11411,3/10/2019 0:03,18/07/2017 21:29,7.8,20, Improper Input Validation,nan
CVE-2017-11410,3/10/2019 0:03,18/07/2017 21:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11409,3/10/2019 0:03,18/07/2017 21:29,7.8,834, Excessive Iteration,nan
CVE-2017-11406,3/10/2019 0:03,18/07/2017 21:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11405,3/10/2019 0:03,18/07/2017 0:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-11404,3/10/2019 0:03,18/07/2017 0:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-11402,3/10/2019 0:03,20/11/2017 15:29,10.0,20, Improper Input Validation,nan
CVE-2017-11400,3/10/2019 0:03,20/11/2017 15:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-11395,3/10/2019 0:03,22/09/2017 16:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11382,3/10/2019 0:03,3/08/2017 15:29,6.4,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-11381,3/10/2019 0:03,1/08/2017 15:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11368,3/10/2019 0:03,9/08/2017 18:29,4.0,617, Reachable Assertion,nan
CVE-2017-11366,3/10/2019 0:03,21/08/2017 1:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11361,3/10/2019 0:03,17/07/2017 17:29,9.0,269, Improper Privilege Management,nan
CVE-2017-11360,3/10/2019 0:03,17/07/2017 13:18,4.3,834, Excessive Iteration,nan
CVE-2017-11349,3/10/2019 0:03,17/07/2017 13:18,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-11341,3/10/2019 0:03,17/07/2017 13:18,5.0,125, Out-of-bounds Read,nan
CVE-2017-11338,3/10/2019 0:03,17/07/2017 13:18,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11336,3/10/2019 0:03,17/07/2017 13:18,4.3,125, Out-of-bounds Read,nan
CVE-2017-11333,3/10/2019 0:03,31/07/2017 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11326,3/10/2019 0:03,24/07/2017 13:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-11322,3/10/2019 0:03,3/10/2017 1:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11321,3/10/2019 0:03,3/10/2017 1:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11319,3/10/2019 0:03,11/12/2017 17:29,6.5,269, Improper Privilege Management,nan
CVE-2017-11310,3/10/2019 0:03,13/07/2017 18:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11301,3/10/2019 0:03,9/12/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11300,3/10/2019 0:03,9/12/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11299,3/10/2019 0:03,9/12/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11298,3/10/2019 0:03,9/12/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11297,3/10/2019 0:03,9/12/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11290,3/10/2019 0:03,9/12/2017 6:29,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2017-11265,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11258,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11255,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11252,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11249,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11248,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11246,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11245,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11244,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11243,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11242,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11239,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11238,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11236,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11233,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11230,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11217,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11210,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11209,3/10/2019 0:03,11/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11188,3/10/2019 0:03,12/07/2017 15:29,7.8,834, Excessive Iteration,nan
CVE-2017-11187,3/10/2019 0:03,12/07/2017 14:29,5.0,307, Improper Restriction of Excessive Authentication Attempts,nan
CVE-2017-11178,3/10/2019 0:03,12/07/2017 0:29,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-11171,3/10/2019 0:03,11/07/2017 20:29,4.9,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11170,3/10/2019 0:03,11/07/2017 20:29,6.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11166,3/10/2019 0:03,10/07/2017 18:29,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11164,3/10/2019 0:03,11/07/2017 3:29,7.8,674, Uncontrolled Recursion,nan
CVE-2017-11150,3/10/2019 0:03,14/08/2017 19:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11147,3/10/2019 0:03,10/07/2017 14:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-11141,3/10/2019 0:03,10/07/2017 3:29,7.1,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-11140,3/10/2019 0:03,10/07/2017 3:29,7.1,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-11135,3/10/2019 0:03,1/08/2017 14:29,5.0,862, Missing Authorization,nan
CVE-2017-11134,3/10/2019 0:03,1/08/2017 14:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-11132,3/10/2019 0:03,1/08/2017 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-11131,3/10/2019 0:03,1/08/2017 14:29,4.3,916, Use of Password Hash With Insufficient Computational Effort,nan
CVE-2017-11130,3/10/2019 0:03,1/08/2017 14:29,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-11126,3/10/2019 0:03,10/07/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11118,3/10/2019 0:03,31/07/2017 13:29,7.1,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-11117,3/10/2019 0:03,31/07/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11116,3/10/2019 0:03,31/07/2017 13:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11110,3/10/2019 0:03,8/07/2017 17:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-11108,3/10/2019 0:03,8/07/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11104,3/10/2019 0:03,8/07/2017 10:29,4.3,20, Improper Input Validation,nan
CVE-2017-11093,3/10/2019 0:03,16/11/2017 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11090,3/10/2019 0:03,16/11/2017 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11089,3/10/2019 0:03,16/11/2017 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11064,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11063,3/10/2019 0:03,10/10/2017 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11062,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11061,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11060,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11055,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11054,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11052,3/10/2019 0:03,10/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11047,3/10/2019 0:03,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11042,3/10/2019 0:03,5/12/2017 17:29,4.6,862, Missing Authorization,nan
CVE-2017-11035,3/10/2019 0:03,16/11/2017 22:29,4.6,125, Out-of-bounds Read,nan
CVE-2017-11030,3/10/2019 0:03,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11026,3/10/2019 0:03,16/11/2017 22:29,4.6,798, Use of Hard-coded Credentials,nan
CVE-2017-11016,3/10/2019 0:03,5/12/2017 17:29,4.6,404, Improper Resource Shutdown or Release,nan
CVE-2017-11015,3/10/2019 0:03,16/11/2017 22:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-11014,3/10/2019 0:03,16/11/2017 22:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-11013,3/10/2019 0:03,16/11/2017 22:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-11012,3/10/2019 0:03,16/11/2017 22:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-11003,3/10/2019 0:03,10/01/2018 22:29,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-11002,3/10/2019 0:03,21/09/2017 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11000,3/10/2019 0:03,21/09/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10998,3/10/2019 0:03,21/09/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10997,3/10/2019 0:03,21/09/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10995,3/10/2019 0:03,7/07/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-10993,3/10/2019 0:03,21/07/2017 6:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10989,3/10/2019 0:03,7/07/2017 12:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-10987,3/10/2019 0:03,17/07/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10986,3/10/2019 0:03,17/07/2017 17:29,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-10985,3/10/2019 0:03,17/07/2017 17:29,7.8,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-10982,3/10/2019 0:03,17/07/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10981,3/10/2019 0:03,17/07/2017 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-10980,3/10/2019 0:03,17/07/2017 17:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-10972,3/10/2019 0:03,6/07/2017 11:29,4.0,665, Improper Initialization,nan
CVE-2017-10930,3/10/2019 0:03,19/09/2017 14:29,5.0,552, Files or Directories Accessible to External Parties,nan
CVE-2017-10928,3/10/2019 0:03,5/07/2017 11:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-10921,3/10/2019 0:03,5/07/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10920,3/10/2019 0:03,5/07/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10910,3/10/2019 0:03,28/12/2017 2:29,4.0,674, Uncontrolled Recursion,nan
CVE-2017-1087,3/10/2019 0:03,16/11/2017 20:29,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10857,3/10/2019 0:03,12/10/2017 14:29,4.0,269, Improper Privilege Management,nan
CVE-2017-10846,3/10/2019 0:03,15/09/2017 17:29,5.0,862, Missing Authorization,nan
CVE-2017-10833,3/10/2019 0:03,29/08/2017 1:35,6.4,425, Direct Request (‘Forced Browsing’),nan
CVE-2017-10810,3/10/2019 0:03,4/07/2017 20:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-10805,3/10/2019 0:03,4/07/2017 18:29,6.5,863, Incorrect Authorization,nan
CVE-2017-10803,3/10/2019 0:03,4/07/2017 18:29,8.5,502, Deserialization of Untrusted Data,nan
CVE-2017-10709,3/10/2019 0:03,30/06/2017 16:29,7.2,287, Improper Authentication,nan
CVE-2017-10700,3/10/2019 0:03,19/09/2017 15:29,10.0,20, Improper Input Validation,nan
CVE-2017-10690,3/10/2019 0:03,9/02/2018 20:29,4.0,269, Improper Privilege Management,nan
CVE-2017-10689,3/10/2019 0:03,9/02/2018 20:29,2.1,269, Improper Privilege Management,nan
CVE-2017-10687,3/10/2019 0:03,29/06/2017 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10685,3/10/2019 0:03,29/06/2017 23:29,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2017-10683,3/10/2019 0:03,29/06/2017 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10668,3/10/2019 0:03,30/06/2017 12:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-10600,3/10/2019 0:03,11/07/2017 17:29,4.6,384, Session Fixation,nan
CVE-2017-10292,3/10/2019 0:03,19/10/2017 17:29,1.7,269, Improper Privilege Management,nan
CVE-2017-10142,3/10/2019 0:03,8/08/2017 15:29,5.5,269, Improper Privilege Management,nan
CVE-2017-10104,3/10/2019 0:03,8/08/2017 15:29,6.5,269, Improper Privilege Management,nan
CVE-2017-10103,3/10/2019 0:03,8/08/2017 15:29,4.0,269, Improper Privilege Management,nan
CVE-2017-10098,3/10/2019 0:03,8/08/2017 15:29,5.5,269, Improper Privilege Management,nan
CVE-2017-10094,3/10/2019 0:03,8/08/2017 15:29,4.9,269, Improper Privilege Management,nan
CVE-2017-10046,3/10/2019 0:03,8/08/2017 15:29,4.9,269, Improper Privilege Management,nan
CVE-2017-1002024,3/10/2019 0:03,14/09/2017 13:29,4.0,287, Improper Authentication,nan
CVE-2017-1002012,3/10/2019 0:03,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002007,3/10/2019 0:03,14/09/2017 13:29,5.0,862, Missing Authorization,nan
CVE-2017-1002006,3/10/2019 0:03,14/09/2017 13:29,5.0,862, Missing Authorization,nan
CVE-2017-1002005,3/10/2019 0:03,14/09/2017 13:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002004,3/10/2019 0:03,14/09/2017 13:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000487,3/10/2019 0:03,3/01/2018 20:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000485,3/10/2019 0:03,3/01/2018 20:29,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000461,3/10/2019 0:03,3/01/2018 20:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000433,3/10/2019 0:03,2/01/2018 23:29,6.8,287, Improper Authentication,nan
CVE-2017-1000416,3/10/2019 0:03,22/01/2018 23:29,5.0,193, Off-by-one Error,nan
CVE-2017-1000411,3/10/2019 0:03,31/01/2018 14:29,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2017-1000408,3/10/2019 0:03,1/02/2018 4:29,7.2,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-1000403,3/10/2019 0:03,26/01/2018 2:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000400,3/10/2019 0:03,26/01/2018 2:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000390,3/10/2019 0:03,26/01/2018 2:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000388,3/10/2019 0:03,26/01/2018 2:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000387,3/10/2019 0:03,26/01/2018 2:29,2.1,522, Insufficiently Protected Credentials,nan
CVE-2017-1000385,3/10/2019 0:03,12/12/2017 21:29,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2017-1000378,3/10/2019 0:03,19/06/2017 16:29,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000369,3/10/2019 0:03,19/06/2017 16:29,2.1,404, Improper Resource Shutdown or Release,nan
CVE-2017-1000367,3/10/2019 0:03,5/06/2017 14:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1000360,3/10/2019 0:03,24/04/2017 16:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-1000359,3/10/2019 0:03,24/04/2017 16:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000358,3/10/2019 0:03,24/04/2017 16:59,4.0,476, NULL Pointer Dereference,nan
CVE-2017-1000357,3/10/2019 0:03,24/04/2017 16:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000252,3/10/2019 0:03,26/09/2017 5:29,2.1,617, Reachable Assertion,nan
CVE-2017-1000246,3/10/2019 0:03,17/11/2017 4:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2017-1000245,3/10/2019 0:03,1/11/2017 13:29,5.0,522, Insufficiently Protected Credentials,nan
CVE-2017-1000243,3/10/2019 0:03,1/11/2017 13:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000241,3/10/2019 0:03,17/11/2017 3:29,6.5,269, Improper Privilege Management,nan
CVE-2017-1000221,3/10/2019 0:03,17/11/2017 22:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000220,3/10/2019 0:03,17/11/2017 1:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000219,3/10/2019 0:03,17/11/2017 0:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000215,3/10/2019 0:03,17/11/2017 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000208,3/10/2019 0:03,17/11/2017 2:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-1000207,3/10/2019 0:03,27/11/2017 15:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-1000203,3/10/2019 0:03,17/11/2017 15:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000195,3/10/2019 0:03,17/11/2017 2:29,6.4,502, Deserialization of Untrusted Data,nan
CVE-2017-1000182,3/10/2019 0:03,17/11/2017 1:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-1000173,3/10/2019 0:03,17/11/2017 3:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-1000159,3/10/2019 0:03,27/11/2017 15:29,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000158,3/10/2019 0:03,17/11/2017 5:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-1000156,3/10/2019 0:03,3/11/2017 18:29,5.5,269, Improper Privilege Management,nan
CVE-2017-1000153,3/10/2019 0:03,3/11/2017 18:29,7.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000148,3/10/2019 0:03,3/11/2017 18:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2017-1000134,3/10/2019 0:03,3/11/2017 18:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000131,3/10/2019 0:03,3/11/2017 18:29,4.0,613, Insufficient Session Expiration,nan
CVE-2017-1000125,3/10/2019 0:03,17/11/2017 5:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000117,3/10/2019 0:03,5/10/2017 1:29,6.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1000116,3/10/2019 0:03,5/10/2017 1:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000111,3/10/2019 0:03,5/10/2017 1:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-1000110,3/10/2019 0:03,5/10/2017 1:29,4.0,287, Improper Authentication,nan
CVE-2017-1000106,3/10/2019 0:03,5/10/2017 1:29,5.5,287, Improper Authentication,nan
CVE-2017-1000105,3/10/2019 0:03,5/10/2017 1:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000104,3/10/2019 0:03,5/10/2017 1:29,4.0,269, Improper Privilege Management,nan
CVE-2017-1000096,3/10/2019 0:03,5/10/2017 1:29,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000095,3/10/2019 0:03,5/10/2017 1:29,4.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000089,3/10/2019 0:03,5/10/2017 1:29,5.0,276, Incorrect Default Permissions,nan
CVE-2017-1000086,3/10/2019 0:03,5/10/2017 1:29,6.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000084,3/10/2019 0:03,5/10/2017 1:29,4.0,276, Incorrect Default Permissions,nan
CVE-2017-1000071,3/10/2019 0:03,17/07/2017 13:18,6.8,287, Improper Authentication,nan
CVE-2017-1000056,3/10/2019 0:03,17/07/2017 13:18,7.5,862, Missing Authorization,nan
CVE-2017-1000052,3/10/2019 0:03,17/07/2017 13:18,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-1000024,3/10/2019 0:03,17/07/2017 13:18,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2017-1000022,3/10/2019 0:03,17/07/2017 13:18,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-1000010,3/10/2019 0:03,17/07/2017 13:18,6.8,427, Uncontrolled Search Path Element,nan
CVE-2017-1000009,3/10/2019 0:03,17/07/2017 13:18,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000003,3/10/2019 0:03,17/07/2017 13:18,7.5,269, Improper Privilege Management,nan
CVE-2017-10000,3/10/2019 0:03,8/08/2017 15:29,4.0,269, Improper Privilege Management,nan
CVE-2017-0920,3/10/2019 0:03,22/03/2018 15:29,4.0,863, Incorrect Authorization,nan
CVE-2017-0913,3/10/2019 0:03,3/07/2018 21:29,1.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0896,3/10/2019 0:03,2/06/2017 17:29,4.0,862, Missing Authorization,nan
CVE-2017-0866,3/10/2019 0:03,16/11/2017 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0861,3/10/2019 0:03,16/11/2017 23:29,4.6,416, Use After Free,nan
CVE-2017-0858,3/10/2019 0:03,16/11/2017 23:29,7.8,20, Improper Input Validation,nan
CVE-2017-0857,3/10/2019 0:03,16/11/2017 23:29,7.8,681, Incorrect Conversion between Numeric Types,nan
CVE-2017-0855,3/10/2019 0:03,12/01/2018 23:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-0854,3/10/2019 0:03,16/11/2017 23:29,8.5,125, Out-of-bounds Read,nan
CVE-2017-0852,3/10/2019 0:03,16/11/2017 23:29,7.8,787, Out-of-bounds Write,nan
CVE-2017-0847,3/10/2019 0:03,16/11/2017 23:29,7.5,276, Incorrect Default Permissions,nan
CVE-2017-0845,3/10/2019 0:03,16/11/2017 23:29,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0842,3/10/2019 0:03,16/11/2017 23:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0841,3/10/2019 0:03,16/11/2017 23:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0836,3/10/2019 0:03,16/11/2017 23:29,9.3,129, Improper Validation of Array Index,nan
CVE-2017-0834,3/10/2019 0:03,16/11/2017 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-0831,3/10/2019 0:03,16/11/2017 23:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0830,3/10/2019 0:03,16/11/2017 23:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0819,3/10/2019 0:03,4/10/2017 1:29,7.8,682, Incorrect Calculation,nan
CVE-2017-0818,3/10/2019 0:03,4/10/2017 1:29,7.8,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-0814,3/10/2019 0:03,4/10/2017 1:29,7.8,200, Information Exposure,nan
CVE-2017-0813,3/10/2019 0:03,4/10/2017 1:29,5.0,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-0812,3/10/2019 0:03,4/10/2017 1:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-0810,3/10/2019 0:03,4/10/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0809,3/10/2019 0:03,4/10/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0806,3/10/2019 0:03,4/10/2017 1:29,9.3,502, Deserialization of Untrusted Data,nan
CVE-2017-0805,3/10/2019 0:03,24/08/2017 0:29,9.3,129, Improper Validation of Array Index,nan
CVE-2017-0794,3/10/2019 0:03,8/09/2017 20:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-0784,3/10/2019 0:03,8/09/2017 20:29,5.8,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0782,3/10/2019 0:03,14/09/2017 19:29,8.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0781,3/10/2019 0:03,14/09/2017 19:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0778,3/10/2019 0:03,8/09/2017 20:29,7.8,200, Information Exposure,nan
CVE-2017-0775,3/10/2019 0:03,8/09/2017 20:29,7.1,834, Excessive Iteration,nan
CVE-2017-0774,3/10/2019 0:03,8/09/2017 20:29,7.1,252, Unchecked Return Value,nan
CVE-2017-0771,3/10/2019 0:03,8/09/2017 20:29,7.1,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-0769,3/10/2019 0:03,8/09/2017 20:29,9.3,404, Improper Resource Shutdown or Release,nan
CVE-2017-0767,3/10/2019 0:03,8/09/2017 20:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0762,3/10/2019 0:03,8/09/2017 20:29,9.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-0761,3/10/2019 0:03,8/09/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0760,3/10/2019 0:03,8/09/2017 20:29,9.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-0759,3/10/2019 0:03,8/09/2017 20:29,9.3,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-0758,3/10/2019 0:03,8/09/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0757,3/10/2019 0:03,8/09/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0756,3/10/2019 0:03,8/09/2017 20:29,9.3,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2017-0752,3/10/2019 0:03,8/09/2017 20:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0750,3/10/2019 0:03,9/08/2017 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-0745,3/10/2019 0:03,9/08/2017 21:29,9.3,665, Improper Initialization,nan
CVE-2017-0738,3/10/2019 0:03,9/08/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-0737,3/10/2019 0:03,9/08/2017 21:29,6.8,129, Improper Validation of Array Index,nan
CVE-2017-0735,3/10/2019 0:03,9/08/2017 21:29,4.3,665, Improper Initialization,nan
CVE-2017-0733,3/10/2019 0:03,9/08/2017 21:29,4.3,404, Improper Resource Shutdown or Release,nan
CVE-2017-0731,3/10/2019 0:03,9/08/2017 21:29,6.8,763, Release of Invalid Pointer or Reference,nan
CVE-2017-0730,3/10/2019 0:03,9/08/2017 21:29,4.3,909, Missing Initialization of Resource,nan
CVE-2017-0729,3/10/2019 0:03,9/08/2017 21:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-0727,3/10/2019 0:03,9/08/2017 21:29,6.8,416, Use After Free,nan
CVE-2017-0726,3/10/2019 0:03,9/08/2017 21:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-0725,3/10/2019 0:03,9/08/2017 21:29,4.3,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-0724,3/10/2019 0:03,9/08/2017 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-0723,3/10/2019 0:03,9/08/2017 21:29,9.3,665, Improper Initialization,nan
CVE-2017-0721,3/10/2019 0:03,9/08/2017 21:29,9.3,20, Improper Input Validation,nan
CVE-2017-0720,3/10/2019 0:03,9/08/2017 21:29,9.3,252, Unchecked Return Value,nan
CVE-2017-0719,3/10/2019 0:03,9/08/2017 21:29,9.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-0716,3/10/2019 0:03,9/08/2017 21:29,9.3,129, Improper Validation of Array Index,nan
CVE-2017-0715,3/10/2019 0:03,9/08/2017 21:29,9.3,131, Incorrect Calculation of Buffer Size,nan
CVE-2017-0712,3/10/2019 0:03,9/08/2017 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-0706,3/10/2019 0:03,6/07/2017 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0703,3/10/2019 0:03,6/07/2017 20:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0702,3/10/2019 0:03,6/07/2017 20:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0701,3/10/2019 0:03,6/07/2017 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-0697,3/10/2019 0:03,6/07/2017 20:29,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2017-0696,3/10/2019 0:03,6/07/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-0695,3/10/2019 0:03,6/07/2017 20:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-0694,3/10/2019 0:03,6/07/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-0692,3/10/2019 0:03,6/07/2017 20:29,4.3,674, Uncontrolled Recursion,nan
CVE-2017-0691,3/10/2019 0:03,6/07/2017 20:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0690,3/10/2019 0:03,6/07/2017 20:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-0689,3/10/2019 0:03,6/07/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-0686,3/10/2019 0:03,6/07/2017 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-0685,3/10/2019 0:03,6/07/2017 20:29,4.3,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2017-0684,3/10/2019 0:03,6/07/2017 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-0679,3/10/2019 0:03,6/07/2017 20:29,9.3,682, Incorrect Calculation,nan
CVE-2017-0676,3/10/2019 0:03,6/07/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-0675,3/10/2019 0:03,6/07/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-0674,3/10/2019 0:03,6/07/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-0672,3/10/2019 0:03,6/07/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-0667,3/10/2019 0:03,6/07/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-0666,3/10/2019 0:03,6/07/2017 20:29,9.3,682, Incorrect Calculation,nan
CVE-2017-0665,3/10/2019 0:03,6/07/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-0663,3/10/2019 0:03,14/06/2017 13:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-0641,3/10/2019 0:03,14/06/2017 13:29,7.1,665, Improper Initialization,nan
CVE-2017-0638,3/10/2019 0:03,14/06/2017 13:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-0635,3/10/2019 0:03,12/05/2017 15:29,7.1,476, NULL Pointer Dereference,nan
CVE-2017-0622,3/10/2019 0:03,12/05/2017 15:29,7.6,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-0620,3/10/2019 0:03,12/05/2017 15:29,7.6,20, Improper Input Validation,nan
CVE-2017-0614,3/10/2019 0:03,12/05/2017 15:29,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0613,3/10/2019 0:03,12/05/2017 15:29,7.6,20, Improper Input Validation,nan
CVE-2017-0612,3/10/2019 0:03,12/05/2017 15:29,7.6,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2017-0611,3/10/2019 0:03,12/05/2017 15:29,7.6,190, Integer Overflow or Wraparound,nan
CVE-2017-0610,3/10/2019 0:03,12/05/2017 15:29,7.6,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-0608,3/10/2019 0:03,12/05/2017 15:29,7.6,787, Out-of-bounds Write,nan
CVE-2017-0607,3/10/2019 0:03,12/05/2017 15:29,7.6,704, Incorrect Type Conversion or Cast,nan
CVE-2017-0604,3/10/2019 0:03,12/05/2017 15:29,9.3,670, Always-Incorrect Control Flow Implementation,nan
CVE-2017-0603,3/10/2019 0:03,12/05/2017 15:29,5.4,369, Divide By Zero,nan
CVE-2017-0601,3/10/2019 0:03,12/05/2017 15:29,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0599,3/10/2019 0:03,12/05/2017 15:29,7.1,252, Unchecked Return Value,nan
CVE-2017-0597,3/10/2019 0:03,12/05/2017 15:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0594,3/10/2019 0:03,12/05/2017 15:29,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0593,3/10/2019 0:03,12/05/2017 15:29,9.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0576,3/10/2019 0:03,7/04/2017 22:59,7.6,190, Integer Overflow or Wraparound,nan
CVE-2017-0569,3/10/2019 0:03,7/04/2017 22:59,7.6,131, Incorrect Calculation of Buffer Size,nan
CVE-2017-0563,3/10/2019 0:03,7/04/2017 22:59,9.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-0561,3/10/2019 0:03,7/04/2017 22:59,10.0,787, Out-of-bounds Write,nan
CVE-2017-0554,3/10/2019 0:03,7/04/2017 22:59,6.8,862, Missing Authorization,nan
CVE-2017-0553,3/10/2019 0:03,7/04/2017 22:59,7.6,190, Integer Overflow or Wraparound,nan
CVE-2017-0548,3/10/2019 0:03,7/04/2017 22:59,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0546,3/10/2019 0:03,7/04/2017 22:59,9.3,476, NULL Pointer Dereference,nan
CVE-2017-0545,3/10/2019 0:03,7/04/2017 22:59,9.3,682, Incorrect Calculation,nan
CVE-2017-0544,3/10/2019 0:03,7/04/2017 22:59,9.3,672, Operation on a Resource after Expiration or Release,nan
CVE-2017-0521,3/10/2019 0:03,8/03/2017 1:59,7.6,190, Integer Overflow or Wraparound,nan
CVE-2017-0520,3/10/2019 0:03,8/03/2017 1:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0493,3/10/2019 0:03,12/05/2017 15:29,4.3,922, Insecure Storage of Sensitive Information,nan
CVE-2017-0492,3/10/2019 0:03,8/03/2017 1:59,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2017-0481,3/10/2019 0:03,8/03/2017 1:59,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0477,3/10/2019 0:03,8/03/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0475,3/10/2019 0:03,8/03/2017 1:59,9.3,20, Improper Input Validation,nan
CVE-2017-0465,3/10/2019 0:03,12/05/2017 15:29,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0463,3/10/2019 0:03,8/03/2017 1:59,7.6,20, Improper Input Validation,nan
CVE-2017-0462,3/10/2019 0:03,7/04/2017 22:59,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-0458,3/10/2019 0:03,8/03/2017 1:59,7.6,20, Improper Input Validation,nan
CVE-2017-0453,3/10/2019 0:03,8/03/2017 1:59,7.6,787, Out-of-bounds Write,nan
CVE-2017-0442,3/10/2019 0:03,8/02/2017 15:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0441,3/10/2019 0:03,8/02/2017 15:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0440,3/10/2019 0:03,8/02/2017 15:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0439,3/10/2019 0:03,8/02/2017 15:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0438,3/10/2019 0:03,8/02/2017 15:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0437,3/10/2019 0:03,8/02/2017 15:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0429,3/10/2019 0:03,8/02/2017 15:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-0428,3/10/2019 0:03,8/02/2017 15:59,9.3,416, Use After Free,nan
CVE-2017-0423,3/10/2019 0:03,8/02/2017 15:59,2.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0418,3/10/2019 0:03,8/02/2017 15:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-0417,3/10/2019 0:03,8/02/2017 15:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-0416,3/10/2019 0:03,8/02/2017 15:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-0412,3/10/2019 0:03,8/02/2017 15:59,9.3,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2017-0411,3/10/2019 0:03,8/02/2017 15:59,9.3,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2017-0410,3/10/2019 0:03,8/02/2017 15:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0383,3/10/2019 0:03,12/01/2017 20:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0381,3/10/2019 0:03,12/01/2017 20:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0376,3/10/2019 0:03,9/06/2017 17:29,5.0,617, Reachable Assertion,nan
CVE-2017-0375,3/10/2019 0:03,9/06/2017 17:29,5.0,617, Reachable Assertion,nan
CVE-2017-0369,3/10/2019 0:03,13/04/2018 16:29,4.0,276, Incorrect Default Permissions,nan
CVE-2017-0367,3/10/2019 0:03,13/04/2018 16:29,6.5,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-0360,3/10/2019 0:03,4/04/2017 17:59,3.5,269, Improper Privilege Management,nan
CVE-2017-0358,3/10/2019 0:03,13/04/2018 15:29,7.2,269, Improper Privilege Management,nan
CVE-2017-0352,3/10/2019 0:03,9/05/2017 21:29,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0340,3/10/2019 0:03,7/07/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0332,3/10/2019 0:03,5/04/2017 14:59,7.6,787, Out-of-bounds Write,nan
CVE-2017-0331,3/10/2019 0:03,2/05/2017 21:59,9.3,367, Time-of-check Time-of-use (TOCTOU) Race Condition,nan
CVE-2017-0327,3/10/2019 0:03,5/04/2017 14:59,7.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0325,3/10/2019 0:03,5/04/2017 14:59,7.6,787, Out-of-bounds Write,nan
CVE-2017-0317,3/10/2019 0:03,15/02/2017 23:59,6.9,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0316,3/10/2019 0:03,16/10/2017 21:29,4.6,20, Improper Input Validation,nan
CVE-2017-0311,3/10/2019 0:03,15/02/2017 23:59,7.2,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2017-0310,3/10/2019 0:03,15/02/2017 23:59,4.9,269, Improper Privilege Management,nan
CVE-2017-0307,3/10/2019 0:03,8/03/2017 1:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0306,3/10/2019 0:03,8/03/2017 1:59,9.3,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0303,3/10/2019 0:03,27/10/2017 14:29,5.0,459, Incomplete Cleanup,nan
CVE-2017-0296,3/10/2019 0:03,15/06/2017 1:29,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2017-0263,3/10/2019 0:03,12/05/2017 14:29,7.2,416, Use After Free,nan
CVE-2017-0261,3/10/2019 0:03,12/05/2017 14:29,9.3,416, Use After Free,nan
CVE-2017-0248,3/10/2019 0:03,12/05/2017 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-0215,3/10/2019 0:03,15/06/2017 1:29,4.6,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-0212,3/10/2019 0:03,12/05/2017 14:29,5.4,20, Improper Input Validation,nan
CVE-2017-0211,3/10/2019 0:03,12/04/2017 14:59,4.3,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2017-0193,3/10/2019 0:03,15/06/2017 1:29,4.6,755, Improper Handling of Exceptional Conditions,nan
CVE-2017-0166,3/10/2019 0:03,12/04/2017 14:59,9.3,131, Incorrect Calculation of Buffer Size,nan
CVE-2017-0095,3/10/2019 0:03,17/03/2017 0:59,7.9,20, Improper Input Validation,nan
CVE-2017-0072,3/10/2019 0:03,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0070,3/10/2019 0:03,17/03/2017 0:59,7.6,416, Use After Free,nan
CVE-2017-0005,3/10/2019 0:03,17/03/2017 0:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20164,2/10/2019 20:15,13/02/2019 14:29,5.0,185, Incorrect Regular Expression,nan
CVE-2016-2091,2/10/2019 19:58,8/02/2016 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2019-10498,2/10/2019 19:40,30/09/2019 16:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-10054,2/10/2019 19:31,11/04/2018 20:29,6.5,20, Improper Input Validation,nan
CVE-2019-9257,2/10/2019 19:24,27/09/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2015-9420,2/10/2019 19:23,26/09/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9435,2/10/2019 19:22,26/09/2019 2:15,7.5,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-10497,2/10/2019 19:11,30/09/2019 16:15,4.6,416, Use After Free,nan
CVE-2019-9364,2/10/2019 19:08,27/09/2019 19:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9383,2/10/2019 19:05,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-9296,2/10/2019 18:59,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-10492,2/10/2019 18:58,30/09/2019 16:15,7.2,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-9239,2/10/2019 18:53,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-10489,2/10/2019 18:47,30/09/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-9369,2/10/2019 18:46,27/09/2019 19:15,2.1,1187, Use of Uninitialized Resource,nan
CVE-2019-9386,2/10/2019 18:39,27/09/2019 19:15,6.9,787, Out-of-bounds Write,nan
CVE-2017-18636,2/10/2019 18:38,30/09/2019 13:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9391,2/10/2019 18:35,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9421,2/10/2019 18:20,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-9460,2/10/2019 18:11,27/09/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16999,2/10/2019 18:06,30/09/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9269,2/10/2019 17:54,27/09/2019 19:15,4.4,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9250,2/10/2019 17:45,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9360,2/10/2019 17:39,27/09/2019 19:15,4.9,125, Out-of-bounds Read,nan
CVE-2019-9358,2/10/2019 17:35,27/09/2019 19:15,4.4,787, Out-of-bounds Write,nan
CVE-2019-9351,2/10/2019 17:34,27/09/2019 19:15,2.1,862, Missing Authorization,nan
CVE-2019-9309,2/10/2019 17:31,27/09/2019 19:15,4.4,787, Out-of-bounds Write,nan
CVE-2019-11741,2/10/2019 17:31,27/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9299,2/10/2019 17:30,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9259,2/10/2019 17:17,27/09/2019 19:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-16294,2/10/2019 17:15,14/09/2019 16:15,6.8,20, Improper Input Validation,nan
CVE-2019-15943,2/10/2019 17:15,19/09/2019 12:15,6.8,20, Improper Input Validation,nan
CVE-2019-10891,2/10/2019 17:15,6/09/2019 20:15,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-8928,2/10/2019 17:10,14/05/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9253,2/10/2019 17:07,27/09/2019 19:15,4.9,922, Insecure Storage of Sensitive Information,nan
CVE-2019-15810,2/10/2019 17:07,30/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16743,2/10/2019 17:04,30/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9249,2/10/2019 16:56,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-14752,2/10/2019 16:53,30/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2190,2/10/2019 16:48,27/09/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-9244,2/10/2019 16:46,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-10539,2/10/2019 16:43,30/09/2019 16:15,10.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-9375,2/10/2019 16:39,27/09/2019 19:15,6.9,125, Out-of-bounds Read,nan
CVE-2019-9344,2/10/2019 16:23,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2017-16808,2/10/2019 16:15,13/11/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-10538,2/10/2019 16:10,30/09/2019 16:15,10.0,20, Improper Input Validation,nan
CVE-2019-9380,2/10/2019 15:48,27/09/2019 19:15,4.3,862, Missing Authorization,nan
CVE-2019-2284,2/10/2019 15:48,30/09/2019 16:15,4.4,416, Use After Free,nan
CVE-2019-9281,2/10/2019 15:29,27/09/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10510,2/10/2019 15:29,30/09/2019 16:15,8.5,476, NULL Pointer Dereference,nan
CVE-2019-9301,2/10/2019 15:21,27/09/2019 19:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-10509,2/10/2019 15:19,30/09/2019 16:15,10.0,416, Use After Free,nan
CVE-2019-12255,2/10/2019 15:15,9/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9282,2/10/2019 14:57,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9277,2/10/2019 14:51,27/09/2019 19:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-10508,2/10/2019 14:44,30/09/2019 16:15,4.6,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-8075,2/10/2019 14:28,27/09/2019 16:15,5.0,346, Origin Validation Error,nan
CVE-2019-9266,2/10/2019 14:26,27/09/2019 19:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-14952,2/10/2019 14:21,1/10/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9314,2/10/2019 14:19,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9315,2/10/2019 14:18,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-15862,2/10/2019 14:17,26/09/2019 21:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16755,2/10/2019 14:15,26/09/2019 16:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-16411,2/10/2019 14:15,24/09/2019 20:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-14953,2/10/2019 14:13,1/10/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11734,2/10/2019 14:12,27/09/2019 18:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-10507,2/10/2019 13:57,30/09/2019 16:15,4.6,125, Out-of-bounds Read,nan
CVE-2019-9414,2/10/2019 13:56,27/09/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2018-9581,2/10/2019 13:53,27/09/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-10506,2/10/2019 13:48,30/09/2019 16:15,4.6,20, Improper Input Validation,nan
CVE-2019-9405,2/10/2019 13:43,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9428,2/10/2019 13:42,27/09/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-11737,2/10/2019 13:40,27/09/2019 18:15,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-9333,2/10/2019 13:38,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9285,2/10/2019 13:38,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9284,2/10/2019 13:28,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9265,2/10/2019 13:25,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9262,2/10/2019 13:21,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9261,2/10/2019 13:15,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-6831,2/10/2019 13:15,17/09/2019 20:15,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-6813,2/10/2019 13:15,17/09/2019 20:15,7.8,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-6810,2/10/2019 13:15,17/09/2019 20:15,6.5,863, Incorrect Authorization,nan
CVE-2018-7811,2/10/2019 13:15,30/11/2018 19:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-10501,2/10/2019 13:14,30/09/2019 16:15,4.6,416, Use After Free,nan
CVE-2019-9258,2/10/2019 13:05,27/09/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9260,2/10/2019 12:57,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-10499,2/10/2019 12:55,30/09/2019 16:15,7.2,129, Improper Validation of Array Index,nan
CVE-2019-9247,2/10/2019 12:54,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9256,2/10/2019 12:51,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-14961,2/10/2019 12:47,1/10/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9240,2/10/2019 12:44,27/09/2019 19:15,1.9,125, Out-of-bounds Read,nan
CVE-2019-9237,2/10/2019 12:39,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-9425,2/10/2019 12:37,27/09/2019 19:15,4.6,269, Improper Privilege Management,nan
CVE-2015-9411,2/10/2019 12:24,26/09/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16928,2/10/2019 4:15,27/09/2019 21:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-1914,1/10/2019 23:15,7/08/2019 6:15,9.0,20, Improper Input Validation,nan
CVE-2019-1913,1/10/2019 23:15,7/08/2019 6:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1912,1/10/2019 23:15,7/08/2019 6:15,6.4,285, Improper Authorization,nan
CVE-2019-16692,1/10/2019 23:15,22/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16645,1/10/2019 23:15,20/09/2019 19:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12562,1/10/2019 23:15,26/09/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15067,1/10/2019 20:02,25/09/2019 19:15,10.0,287, Improper Authentication,nan
CVE-2019-15891,1/10/2019 19:47,26/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-9354,1/10/2019 19:34,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9381,1/10/2019 19:27,27/09/2019 19:15,5.0,416, Use After Free,nan
CVE-2019-9349,1/10/2019 19:26,27/09/2019 19:15,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-9234,1/10/2019 19:24,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9335,1/10/2019 19:23,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9332,1/10/2019 18:56,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9326,1/10/2019 18:50,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2018-19592,1/10/2019 18:46,27/09/2019 16:15,7.2,276, Incorrect Default Permissions,nan
CVE-2019-2172,1/10/2019 18:41,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-16922,1/10/2019 18:37,27/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-8072,1/10/2019 18:28,27/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-2143,1/10/2019 18:28,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2142,1/10/2019 18:24,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8073,1/10/2019 18:19,27/09/2019 16:15,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-2141,1/10/2019 18:17,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-13106,1/10/2019 18:15,6/08/2019 20:15,8.3,787, Out-of-bounds Write,nan
CVE-2019-13104,1/10/2019 18:15,6/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8074,1/10/2019 18:05,27/09/2019 16:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-2140,1/10/2019 18:02,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9427,1/10/2019 17:55,27/09/2019 19:15,2.1,416, Use After Free,nan
CVE-2019-16685,1/10/2019 17:06,27/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16927,1/10/2019 17:02,27/09/2019 20:15,4.3,787, Out-of-bounds Write,nan
CVE-2019-9347,1/10/2019 17:01,27/09/2019 19:15,2.1,416, Use After Free,nan
CVE-2019-9323,1/10/2019 16:57,27/09/2019 19:15,5.0,862, Missing Authorization,nan
CVE-2019-9352,1/10/2019 16:55,27/09/2019 19:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-9316,1/10/2019 16:45,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9318,1/10/2019 16:38,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9310,1/10/2019 16:34,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9303,1/10/2019 16:26,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9298,1/10/2019 16:19,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9420,1/10/2019 15:38,27/09/2019 19:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-9279,1/10/2019 15:38,27/09/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9321,1/10/2019 15:19,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9264,1/10/2019 15:02,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14666,1/10/2019 14:57,25/09/2019 20:15,6.5,522, Insufficiently Protected Credentials,nan
CVE-2019-9252,1/10/2019 14:49,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-15941,1/10/2019 14:46,25/09/2019 20:15,7.5,863, Incorrect Authorization,nan
CVE-2019-16889,1/10/2019 14:39,25/09/2019 20:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-16892,1/10/2019 14:31,25/09/2019 22:15,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-16253,1/10/2019 14:28,25/09/2019 23:15,7.2,269, Improper Privilege Management,nan
CVE-2019-16409,1/10/2019 14:10,26/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-9241,1/10/2019 14:08,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16524,1/10/2019 14:05,26/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9328,1/10/2019 13:56,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9311,1/10/2019 13:48,27/09/2019 19:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-9330,1/10/2019 13:43,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-6161,1/10/2019 13:38,26/09/2019 16:15,5.0,384, Session Fixation,nan
CVE-2019-9286,1/10/2019 13:37,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-2087,1/10/2019 13:34,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2086,1/10/2019 13:32,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2085,1/10/2019 13:31,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2084,1/10/2019 13:30,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2083,1/10/2019 13:29,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2080,1/10/2019 13:27,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2078,1/10/2019 13:26,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2077,1/10/2019 13:25,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2076,1/10/2019 13:18,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2075,1/10/2019 13:18,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9288,1/10/2019 13:17,27/09/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9289,1/10/2019 13:16,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-2074,1/10/2019 13:15,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9290,1/10/2019 13:14,27/09/2019 19:15,4.6,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2019-2073,1/10/2019 13:12,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2072,1/10/2019 13:10,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2071,1/10/2019 12:53,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2070,1/10/2019 12:52,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9291,1/10/2019 12:51,27/09/2019 19:15,6.8,770, Allocation of Resources Without Limits or Throttling,nan
CVE-2019-2069,1/10/2019 12:51,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9292,1/10/2019 12:50,27/09/2019 19:15,2.1,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2019-2068,1/10/2019 12:48,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2067,1/10/2019 12:47,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2066,1/10/2019 12:46,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2065,1/10/2019 12:45,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9293,1/10/2019 12:41,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2064,1/10/2019 12:40,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9294,1/10/2019 12:39,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9295,1/10/2019 12:37,27/09/2019 19:15,4.6,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-2063,1/10/2019 12:32,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2062,1/10/2019 12:32,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2061,1/10/2019 12:31,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2059,1/10/2019 12:30,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-2055,1/10/2019 12:17,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-10184,1/10/2019 2:15,25/07/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-6446,1/10/2019 0:15,16/01/2019 5:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12493,30/09/2019 23:15,31/05/2019 2:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-10092,30/09/2019 23:15,26/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15098,30/09/2019 21:15,16/08/2019 2:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-12973,30/09/2019 21:15,26/06/2019 18:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-9370,30/09/2019 20:00,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9362,30/09/2019 19:45,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2139,30/09/2019 19:44,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9418,30/09/2019 19:22,27/09/2019 19:15,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-9382,30/09/2019 19:22,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9379,30/09/2019 19:21,27/09/2019 19:15,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-9363,30/09/2019 19:20,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9357,30/09/2019 19:20,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-2138,30/09/2019 19:20,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9322,30/09/2019 19:19,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-2144,30/09/2019 19:19,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2160,30/09/2019 19:17,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9424,30/09/2019 19:16,27/09/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-9334,30/09/2019 19:16,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9331,30/09/2019 19:15,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9319,30/09/2019 19:15,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-2692,30/09/2019 19:15,23/04/2019 19:32,3.5,20, Improper Input Validation,nan
CVE-2019-2159,30/09/2019 19:15,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9317,30/09/2019 19:14,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9305,30/09/2019 19:14,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9300,30/09/2019 19:14,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-2161,30/09/2019 19:14,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9459,30/09/2019 19:13,27/09/2019 19:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-9297,30/09/2019 19:13,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-2162,30/09/2019 19:12,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2079,30/09/2019 19:08,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2164,30/09/2019 19:06,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2163,30/09/2019 19:06,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2165,30/09/2019 18:47,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2166,30/09/2019 18:44,27/09/2019 19:15,4.3,665, Improper Initialization,nan
CVE-2019-2167,30/09/2019 18:43,27/09/2019 19:15,4.3,665, Improper Initialization,nan
CVE-2019-2168,30/09/2019 18:42,27/09/2019 19:15,4.3,665, Improper Initialization,nan
CVE-2019-2060,30/09/2019 18:40,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2169,30/09/2019 18:37,27/09/2019 19:15,4.3,665, Improper Initialization,nan
CVE-2019-6812,30/09/2019 18:15,22/05/2019 20:29,4.0,798, Use of Hard-coded Credentials,nan
CVE-2019-10981,30/09/2019 18:15,31/05/2019 21:29,2.1,255, Credentials Management,nan
CVE-2018-17789,30/09/2019 18:15,20/09/2019 19:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2170,30/09/2019 18:12,27/09/2019 19:15,4.3,665, Improper Initialization,nan
CVE-2019-9366,30/09/2019 17:42,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9393,30/09/2019 17:38,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9395,30/09/2019 17:37,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9394,30/09/2019 17:37,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9396,30/09/2019 17:36,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9397,30/09/2019 17:33,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9398,30/09/2019 17:30,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9400,30/09/2019 17:29,27/09/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9401,30/09/2019 17:27,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9402,30/09/2019 17:26,27/09/2019 19:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9404,30/09/2019 17:25,27/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2017-2888,30/09/2019 17:15,11/10/2017 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9430,30/09/2019 17:04,27/09/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-2145,30/09/2019 16:56,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2146,30/09/2019 16:46,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2147,30/09/2019 16:45,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2148,30/09/2019 16:42,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2150,30/09/2019 16:41,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2149,30/09/2019 16:41,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2152,30/09/2019 16:37,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2151,30/09/2019 16:37,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2153,30/09/2019 16:34,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2154,30/09/2019 16:32,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2155,30/09/2019 16:30,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2017-1398,30/09/2019 16:19,10/07/2017 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-5894,30/09/2019 16:19,8/03/2017 19:59,1.9,200, Information Exposure,nan
CVE-2016-2863,30/09/2019 16:19,3/07/2016 21:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2862,30/09/2019 16:19,3/07/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0225,30/09/2019 16:19,29/02/2016 11:59,4.0,284, Improper Access Control,nan
CVE-2016-0208,30/09/2019 16:19,14/03/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2015-5009,30/09/2019 16:19,18/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5008,30/09/2019 16:19,18/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5007,30/09/2019 16:19,15/01/2016 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0200,30/09/2019 16:19,29/05/2015 15:59,2.1,200, Information Exposure,nan
CVE-2014-6211,30/09/2019 16:19,20/05/2015 1:59,2.1,200, Information Exposure,nan
CVE-2014-0943,30/09/2019 16:19,25/05/2014 22:55,7.1,20, Improper Input Validation,nan
CVE-2013-0566,30/09/2019 16:19,27/08/2013 3:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0523,30/09/2019 16:19,21/06/2013 19:55,4.3,200, Information Exposure,nan
CVE-2011-3577,30/09/2019 16:19,20/09/2011 10:55,10.0,287, Improper Authentication,nan
CVE-2019-2156,30/09/2019 16:16,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2157,30/09/2019 16:15,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-9333,30/09/2019 16:15,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2158,30/09/2019 16:14,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9359,30/09/2019 16:13,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9361,30/09/2019 16:08,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9385,30/09/2019 16:03,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9403,30/09/2019 15:58,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9412,30/09/2019 15:55,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9406,30/09/2019 15:54,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9409,30/09/2019 15:52,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9302,30/09/2019 15:52,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9272,30/09/2019 15:52,27/09/2019 19:15,2.1,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-9307,30/09/2019 15:51,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9308,30/09/2019 15:47,27/09/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9327,30/09/2019 15:46,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9329,30/09/2019 15:45,27/09/2019 19:15,5.0,909, Missing Initialization of Resource,nan
CVE-2017-1784,30/09/2019 15:42,29/01/2018 16:29,2.1,200, Information Exposure,nan
CVE-2016-3031,30/09/2019 15:42,5/04/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3015,30/09/2019 15:42,5/04/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0217,30/09/2019 15:42,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9336,30/09/2019 15:41,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-4139,30/09/2019 15:39,29/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9408,30/09/2019 15:30,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9410,30/09/2019 14:56,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9337,30/09/2019 14:55,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9411,30/09/2019 14:53,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9415,30/09/2019 14:52,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9416,30/09/2019 14:50,27/09/2019 19:15,4.3,1187, Use of Uninitialized Resource,nan
CVE-2019-9338,30/09/2019 14:48,27/09/2019 19:15,4.3,909, Missing Initialization of Resource,nan
CVE-2019-9341,30/09/2019 14:47,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9342,30/09/2019 14:46,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9346,30/09/2019 14:45,27/09/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-9343,30/09/2019 14:45,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9348,30/09/2019 14:43,27/09/2019 19:15,7.1,20, Improper Input Validation,nan
CVE-2019-9365,30/09/2019 14:42,27/09/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-9372,30/09/2019 14:41,27/09/2019 19:15,7.1,20, Improper Input Validation,nan
CVE-2019-9399,30/09/2019 14:17,27/09/2019 19:15,4.3,326, Inadequate Encryption Strength,nan
CVE-2019-9353,30/09/2019 14:17,27/09/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9355,30/09/2019 14:15,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16686,30/09/2019 14:15,27/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9368,30/09/2019 14:14,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9367,30/09/2019 14:14,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16688,30/09/2019 14:14,27/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16687,30/09/2019 14:14,27/09/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9387,30/09/2019 14:13,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9388,30/09/2019 14:11,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9389,30/09/2019 14:10,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9390,30/09/2019 14:09,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9413,30/09/2019 14:07,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9419,30/09/2019 14:04,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9417,30/09/2019 14:04,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9422,30/09/2019 14:02,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9425,30/09/2019 13:59,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2018-7784,30/09/2019 13:37,3/07/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2019-9431,30/09/2019 13:27,27/09/2019 19:15,4.0,416, Use After Free,nan
CVE-2019-9432,30/09/2019 13:25,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9434,30/09/2019 13:17,27/09/2019 19:15,4.0,125, Out-of-bounds Read,nan
CVE-2019-9435,30/09/2019 13:16,27/09/2019 19:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9462,30/09/2019 12:57,27/09/2019 19:15,5.0,125, Out-of-bounds Read,nan
CVE-2012-6624,30/09/2019 11:57,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2156,30/09/2019 11:55,18/10/2017 15:29,4.3,20, Improper Input Validation,nan
CVE-2014-0193,30/09/2019 11:55,6/05/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-3488,30/09/2019 11:51,31/07/2014 14:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13377,29/09/2019 23:15,15/08/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-14383,29/09/2019 0:15,30/07/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-14382,29/09/2019 0:15,30/07/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2018-20861,29/09/2019 0:15,30/07/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2018-20860,29/09/2019 0:15,30/07/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-16532,28/09/2019 23:26,26/09/2019 16:15,5.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12922,28/09/2019 18:15,13/09/2019 13:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10583,28/09/2019 18:15,1/05/2018 16:29,5.0,200, Information Exposure,nan
CVE-2019-1010174,28/09/2019 14:15,25/07/2019 14:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-4300,28/09/2019 12:15,3/04/2019 18:29,4.3,200, Information Exposure,nan
CVE-2019-5094,28/09/2019 3:15,24/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-13376,27/09/2019 20:52,27/09/2019 13:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2171,27/09/2019 20:42,27/09/2019 19:15,4.3,665, Improper Initialization,nan
CVE-2019-14916,27/09/2019 20:39,20/09/2019 14:15,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16902,27/09/2019 20:30,27/09/2019 11:15,6.4,20, Improper Input Validation,nan
CVE-2019-16921,27/09/2019 20:22,27/09/2019 13:15,5.0,665, Improper Initialization,nan
CVE-2019-16923,27/09/2019 20:00,27/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6175,27/09/2019 19:58,26/09/2019 16:15,7.8,20, Improper Input Validation,nan
CVE-2019-16667,27/09/2019 18:52,26/09/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1098,27/09/2019 18:42,10/04/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16915,27/09/2019 18:21,26/09/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2007-6762,27/09/2019 18:15,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1516,27/09/2019 18:13,4/05/2012 16:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0384,27/09/2019 18:06,29/03/2012 11:01,8.5,269, Improper Privilege Management,nan
CVE-2019-16914,27/09/2019 18:00,26/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0375,27/09/2019 17:48,17/01/2013 1:55,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2005,27/09/2019 17:36,25/06/2014 11:19,6.9,287, Improper Authentication,nan
CVE-2014-2019,27/09/2019 17:29,18/02/2014 11:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-6014,27/09/2019 17:24,28/10/2013 22:55,6.1,200, Information Exposure,nan
CVE-2016-0128,27/09/2019 17:21,12/04/2016 23:59,5.8,254, 7PK – Security Features,nan
CVE-2012-5376,27/09/2019 17:19,11/10/2012 10:51,9.3,269, Improper Privilege Management,nan
CVE-2016-2118,27/09/2019 17:17,12/04/2016 23:59,6.8,254, 7PK – Security Features,nan
CVE-2016-5729,27/09/2019 17:12,30/06/2016 16:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-1342,27/09/2019 17:07,6/08/2012 17:55,5.0,863, Incorrect Authorization,nan
CVE-2011-1265,27/09/2019 17:05,13/07/2011 22:55,8.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-5942,27/09/2019 17:00,10/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0467,27/09/2019 16:53,2/02/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0658,27/09/2019 16:48,20/02/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0970,27/09/2019 16:44,18/04/2015 2:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1645,27/09/2019 16:43,13/03/2016 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0884,27/09/2019 16:41,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18913,27/09/2019 16:41,21/03/2019 22:29,6.9,426, Untrusted Search Path,nan
CVE-2019-7551,27/09/2019 16:32,10/04/2019 17:29,6.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16894,27/09/2019 16:01,26/09/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7529,27/09/2019 15:52,6/11/2017 17:29,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-0203,27/09/2019 15:33,26/09/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2018-11782,27/09/2019 15:33,26/09/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2018-1000622,27/09/2019 15:15,9/07/2018 20:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2015-9418,27/09/2019 15:04,26/09/2019 0:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9415,27/09/2019 14:56,26/09/2019 0:15,5.0,20, Improper Input Validation,nan
CVE-2019-16880,27/09/2019 14:45,25/09/2019 17:15,7.5,415, Double Free,nan
CVE-2015-9406,27/09/2019 14:15,20/09/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9440,27/09/2019 14:06,26/09/2019 4:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9441,27/09/2019 13:53,26/09/2019 4:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9442,27/09/2019 13:43,26/09/2019 4:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9443,27/09/2019 13:40,26/09/2019 4:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10396,27/09/2019 13:35,20/09/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9447,27/09/2019 13:27,26/09/2019 4:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12245,27/09/2019 13:16,25/09/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-16904,27/09/2019 13:15,26/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12203,27/09/2019 13:14,25/09/2019 19:15,3.7,384, Session Fixation,nan
CVE-2019-12617,27/09/2019 13:11,26/09/2019 12:15,4.0,269, Improper Privilege Management,nan
CVE-2019-14273,27/09/2019 13:08,26/09/2019 12:15,5.0,552, Files or Directories Accessible to External Parties,nan
CVE-2015-9413,27/09/2019 12:35,26/09/2019 0:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000807,27/09/2019 12:21,8/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-1000804,27/09/2019 12:20,8/10/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7609,27/09/2019 5:15,25/03/2019 19:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7608,27/09/2019 5:15,25/03/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010228,27/09/2019 3:15,22/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7489,27/09/2019 3:15,26/02/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-5968,27/09/2019 3:15,22/01/2018 4:29,5.1,502, Deserialization of Untrusted Data,nan
CVE-2018-14721,27/09/2019 3:15,2/01/2019 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-14720,27/09/2019 3:15,2/01/2019 18:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7525,27/09/2019 3:15,6/02/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-17485,27/09/2019 3:15,10/01/2018 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-15095,27/09/2019 3:15,6/02/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10914,26/09/2019 21:15,8/04/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-21009,26/09/2019 21:15,5/09/2019 4:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-18509,26/09/2019 21:15,13/08/2019 14:15,7.2,20, Improper Input Validation,nan
CVE-2017-1000256,26/09/2019 21:11,31/10/2017 15:29,6.8,295, Improper Certificate Validation,nan
CVE-2019-16901,26/09/2019 20:52,26/09/2019 1:15,5.0,755, Improper Handling of Exceptional Conditions,nan
CVE-2019-16900,26/09/2019 20:51,26/09/2019 1:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16899,26/09/2019 20:49,26/09/2019 1:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15069,26/09/2019 20:39,25/09/2019 19:15,7.5,287, Improper Authentication,nan
CVE-2015-9445,26/09/2019 20:32,26/09/2019 4:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9446,26/09/2019 20:30,26/09/2019 4:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11495,26/09/2019 20:15,10/09/2019 18:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11466,26/09/2019 20:15,10/09/2019 18:15,5.0,287, Improper Authentication,nan
CVE-2018-17792,26/09/2019 20:15,19/07/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17791,26/09/2019 20:15,21/08/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2018-17790,26/09/2019 20:15,15/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9444,26/09/2019 20:10,26/09/2019 4:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9416,26/09/2019 20:07,26/09/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9417,26/09/2019 20:00,26/09/2019 0:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9422,26/09/2019 19:50,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9421,26/09/2019 19:38,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9433,26/09/2019 19:31,26/09/2019 2:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9431,26/09/2019 19:25,26/09/2019 2:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16188,26/09/2019 19:23,25/09/2019 17:15,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-12204,26/09/2019 19:22,25/09/2019 19:15,7.5,269, Improper Privilege Management,nan
CVE-2019-12405,26/09/2019 19:15,9/09/2019 17:15,6.8,287, Improper Authentication,nan
CVE-2019-11497,26/09/2019 19:15,10/09/2019 18:15,5.0,295, Improper Certificate Validation,nan
CVE-2019-11467,26/09/2019 19:15,10/09/2019 18:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-11464,26/09/2019 19:15,10/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15728,26/09/2019 19:15,24/08/2018 19:29,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-9432,26/09/2019 19:13,26/09/2019 2:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9428,26/09/2019 19:12,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17232,26/09/2019 19:09,20/09/2018 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17218,26/09/2019 18:57,1/10/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9425,26/09/2019 18:54,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14272,26/09/2019 18:53,26/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9424,26/09/2019 18:28,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9429,26/09/2019 18:23,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11496,26/09/2019 18:15,10/09/2019 18:15,6.4,287, Improper Authentication,nan
CVE-2011-5327,26/09/2019 18:15,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9423,26/09/2019 18:00,26/09/2019 1:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16792,26/09/2019 17:40,13/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9426,26/09/2019 17:18,26/09/2019 1:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9439,26/09/2019 17:17,26/09/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11396,26/09/2019 17:15,29/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0980,26/09/2019 17:05,20/03/2013 14:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-0979,26/09/2019 17:05,20/03/2013 14:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0978,26/09/2019 17:05,20/03/2013 14:55,2.1,200, Information Exposure,nan
CVE-2011-3441,26/09/2019 17:05,11/11/2011 18:55,4.3,200, Information Exposure,nan
CVE-2011-3439,26/09/2019 17:05,11/11/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1797,26/09/2019 17:05,16/08/2010 18:39,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1029,26/09/2019 17:05,19/03/2010 21:30,5.0,399, Resource Management Errors,nan
CVE-2010-0038,26/09/2019 17:05,3/02/2010 19:30,4.6,399, Resource Management Errors,nan
CVE-2009-3273,26/09/2019 17:05,21/09/2009 19:30,7.5,310, Cryptographic Issues,nan
CVE-2009-1690,26/09/2019 17:05,10/06/2009 14:30,9.3,399, Resource Management Errors,nan
CVE-2008-4211,26/09/2019 17:05,10/10/2008 10:30,10.0,189, Numeric Errors,nan
CVE-2015-9427,26/09/2019 17:03,26/09/2019 1:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14220,26/09/2019 16:52,24/09/2019 21:15,4.9,200, Information Exposure,nan
CVE-2019-16903,26/09/2019 16:44,26/09/2019 11:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9449,26/09/2019 16:27,26/09/2019 1:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12068,26/09/2019 16:07,24/09/2019 20:15,5.0,835, Loop with Unreachable Exit Condition (‘Infinite Loop’),nan
CVE-2019-6654,26/09/2019 16:05,25/09/2019 19:15,3.3,20, Improper Input Validation,nan
CVE-2015-9448,26/09/2019 15:57,26/09/2019 4:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9436,26/09/2019 15:51,26/09/2019 2:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9438,26/09/2019 15:42,26/09/2019 2:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9430,26/09/2019 15:40,26/09/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12205,26/09/2019 15:35,25/09/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9414,26/09/2019 15:34,26/09/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9409,26/09/2019 15:31,25/09/2019 17:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000639,26/09/2019 15:19,20/08/2018 19:31,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-9410,26/09/2019 15:19,26/09/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9437,26/09/2019 15:16,26/09/2019 2:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16868,26/09/2019 15:11,25/09/2019 13:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9419,26/09/2019 15:04,26/09/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9434,26/09/2019 14:54,26/09/2019 2:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5989,26/09/2019 14:39,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9412,26/09/2019 13:57,26/09/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16882,26/09/2019 13:42,25/09/2019 17:15,5.0,416, Use After Free,nan
CVE-2019-16887,26/09/2019 13:15,25/09/2019 18:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16724,26/09/2019 13:15,24/09/2019 21:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-15120,26/09/2019 13:15,16/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16890,26/09/2019 13:11,25/09/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18594,26/09/2019 12:15,29/08/2019 0:15,5.0,415, Double Free,nan
CVE-2019-16168,26/09/2019 8:15,9/09/2019 17:15,5.0,369, Divide By Zero,nan
CVE-2019-5477,26/09/2019 4:15,16/08/2019 16:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-16759,26/09/2019 2:15,24/09/2019 22:15,7.5,20, Improper Input Validation,nan
CVE-2019-16881,26/09/2019 1:13,25/09/2019 17:15,7.5,416, Use After Free,nan
CVE-2019-16534,25/09/2019 21:15,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16533,25/09/2019 21:15,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5485,25/09/2019 20:15,13/09/2019 18:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-5332,25/09/2019 20:15,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16701,25/09/2019 19:21,25/09/2019 16:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-16867,25/09/2019 18:28,25/09/2019 12:15,5.5,20, Improper Input Validation,nan
CVE-2019-16194,25/09/2019 18:28,25/09/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14783,25/09/2019 18:15,8/08/2019 21:15,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-10430,25/09/2019 18:15,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10429,25/09/2019 18:15,25/09/2019 16:15,2.1,312, Cleartext Storage of Sensitive Information,nan
CVE-2019-10428,25/09/2019 18:15,25/09/2019 16:15,5.0,319, Cleartext Transmission of Sensitive Information,nan
CVE-2019-10406,25/09/2019 18:15,25/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5504,25/09/2019 17:53,24/09/2019 20:15,7.5,20, Improper Input Validation,nan
CVE-2019-5505,25/09/2019 17:30,24/09/2019 20:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2019-15782,25/09/2019 17:15,29/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16383,25/09/2019 16:12,24/09/2019 15:15,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4448,25/09/2019 15:29,9/06/2016 16:59,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2019-16680,25/09/2019 15:15,21/09/2019 21:15,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15892,25/09/2019 15:15,3/09/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-14807,25/09/2019 14:17,9/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16751,25/09/2019 14:03,24/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14936,25/09/2019 13:48,11/09/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-14239,25/09/2019 13:45,24/09/2019 19:15,4.6,287, Improper Authentication,nan
CVE-2019-14238,25/09/2019 13:32,24/09/2019 18:15,4.6,287, Improper Authentication,nan
CVE-2019-15699,25/09/2019 13:24,24/09/2019 20:15,6.4,125, Out-of-bounds Read,nan
CVE-2019-15001,25/09/2019 13:15,19/09/2019 15:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15000,25/09/2019 13:15,19/09/2019 15:15,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16725,25/09/2019 12:59,24/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9855,25/09/2019 12:15,6/09/2019 19:15,7.5,417, Channel and Path Errors,nan
CVE-2019-16394,25/09/2019 12:15,17/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-16393,25/09/2019 12:15,17/09/2019 21:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-16392,25/09/2019 12:15,17/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16391,25/09/2019 12:15,17/09/2019 21:15,4.0,863, Incorrect Authorization,nan
CVE-2016-10905,25/09/2019 12:15,19/08/2019 2:15,6.1,416, Use After Free,nan
CVE-2018-8032,25/09/2019 11:15,2/08/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6116,25/09/2019 3:15,21/03/2019 16:01,6.8,20, Improper Input Validation,nan
CVE-2019-13923,24/09/2019 22:15,13/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7308,24/09/2019 20:15,1/02/2019 22:29,4.7,189, Numeric Errors,nan
CVE-2019-10937,24/09/2019 20:15,13/09/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-14753,24/09/2019 19:23,24/09/2019 17:15,5.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-1262,24/09/2019 19:15,11/09/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16681,24/09/2019 18:15,21/09/2019 21:15,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2767,24/09/2019 18:15,26/08/2018 16:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13355,24/09/2019 17:19,24/09/2019 15:15,4.6,269, Improper Privilege Management,nan
CVE-2018-9090,24/09/2019 17:19,24/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13356,24/09/2019 17:18,24/09/2019 15:15,4.6,269, Improper Privilege Management,nan
CVE-2010-5333,24/09/2019 17:15,13/09/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-13357,24/09/2019 16:41,24/09/2019 15:15,4.6,426, Untrusted Search Path,nan
CVE-2017-18429,24/09/2019 16:41,2/08/2019 16:15,2.1,254, 7PK – Security Features,nan
CVE-2019-16335,24/09/2019 16:15,15/09/2019 22:15,7.5,20, Improper Input Validation,nan
CVE-2019-14540,24/09/2019 16:15,15/09/2019 22:15,7.5,20, Improper Input Validation,nan
CVE-2018-17962,24/09/2019 16:15,9/10/2018 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10839,24/09/2019 16:15,16/10/2018 14:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2019-9456,24/09/2019 15:15,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16714,24/09/2019 15:15,23/09/2019 12:15,5.0,200, Information Exposure,nan
CVE-2019-15927,24/09/2019 15:15,4/09/2019 21:15,7.2,125, Out-of-bounds Read,nan
CVE-2019-15921,24/09/2019 15:15,4/09/2019 19:15,4.6,399, Resource Management Errors,nan
CVE-2019-15920,24/09/2019 15:15,4/09/2019 19:15,7.2,416, Use After Free,nan
CVE-2019-15919,24/09/2019 15:15,4/09/2019 19:15,7.2,416, Use After Free,nan
CVE-2019-15917,24/09/2019 15:15,4/09/2019 19:15,7.2,416, Use After Free,nan
CVE-2019-15239,24/09/2019 15:15,20/08/2019 8:15,7.2,416, Use After Free,nan
CVE-2019-14816,24/09/2019 15:15,20/09/2019 19:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-14814,24/09/2019 15:15,20/09/2019 19:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-21008,24/09/2019 15:15,4/09/2019 21:15,4.9,416, Use After Free,nan
CVE-2017-18551,24/09/2019 15:15,19/08/2019 2:15,4.6,787, Out-of-bounds Write,nan
CVE-2014-3219,24/09/2019 15:15,9/02/2018 22:29,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-2905,24/09/2019 15:15,2/05/2014 14:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-16748,24/09/2019 14:50,24/09/2019 13:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-16728,24/09/2019 14:27,24/09/2019 5:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10755,24/09/2019 14:08,23/09/2019 23:15,4.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-10754,24/09/2019 13:59,23/09/2019 23:15,5.5,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-1000823,24/09/2019 13:10,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-16649,24/09/2019 12:53,21/09/2019 2:15,5.0,798, Use of Hard-coded Credentials,nan
CVE-2019-1367,24/09/2019 12:51,23/09/2019 20:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1255,24/09/2019 12:49,23/09/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-14821,24/09/2019 3:15,19/09/2019 18:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-13565,24/09/2019 0:15,26/07/2019 13:15,5.0,287, Improper Authentication,nan
CVE-2017-17740,24/09/2019 0:15,18/12/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5392,23/09/2019 22:15,5/06/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-16679,23/09/2019 22:15,21/09/2019 20:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16518,23/09/2019 21:15,23/09/2019 15:15,3.3,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-13990,23/09/2019 21:15,26/07/2019 19:15,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11779,23/09/2019 21:15,19/09/2019 14:15,4.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-16650,23/09/2019 20:15,21/09/2019 2:15,7.5,269, Improper Privilege Management,nan
CVE-2018-18444,23/09/2019 20:15,17/10/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14988,23/09/2019 20:15,3/10/2017 1:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-16723,23/09/2019 20:01,23/09/2019 15:15,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2019-6145,23/09/2019 19:51,20/09/2019 20:15,7.2,428, Unquoted Search Path or Element,nan
CVE-2019-16706,23/09/2019 19:50,23/09/2019 11:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16377,23/09/2019 19:38,23/09/2019 16:15,7.5,863, Incorrect Authorization,nan
CVE-2018-21019,23/09/2019 19:30,23/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2018-21018,23/09/2019 19:30,22/09/2019 15:15,7.5,613, Insufficient Session Expiration,nan
CVE-2019-12407,23/09/2019 19:29,23/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10090,23/09/2019 19:29,23/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12404,23/09/2019 19:28,23/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10089,23/09/2019 19:25,23/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16702,23/09/2019 19:23,23/09/2019 3:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16669,23/09/2019 19:15,21/09/2019 19:15,5.0,203, Information Exposure Through Discrepancy,nan
CVE-2019-16677,23/09/2019 19:10,21/09/2019 20:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10087,23/09/2019 19:08,23/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13063,23/09/2019 18:48,23/09/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16721,23/09/2019 18:34,23/09/2019 14:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16705,23/09/2019 18:34,23/09/2019 5:15,6.4,125, Out-of-bounds Read,nan
CVE-2019-16720,23/09/2019 18:25,23/09/2019 14:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16719,23/09/2019 18:23,23/09/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16718,23/09/2019 18:22,23/09/2019 14:15,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18381,23/09/2019 18:14,16/10/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0289,23/09/2019 18:13,15/02/2010 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0288,23/09/2019 18:13,15/02/2010 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0287,23/09/2019 18:13,15/02/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16722,23/09/2019 18:07,23/09/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-16703,23/09/2019 18:00,23/09/2019 4:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16696,23/09/2019 17:53,22/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16695,23/09/2019 17:52,22/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16694,23/09/2019 17:52,22/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16693,23/09/2019 17:51,22/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16707,23/09/2019 17:50,23/09/2019 12:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16713,23/09/2019 17:44,23/09/2019 12:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16656,23/09/2019 17:44,21/09/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2019-16712,23/09/2019 17:43,23/09/2019 12:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16711,23/09/2019 17:43,23/09/2019 12:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16710,23/09/2019 17:43,23/09/2019 12:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16708,23/09/2019 17:42,23/09/2019 12:15,4.3,772, Missing Release of Resource after Effective Lifetime,nan
CVE-2019-16655,23/09/2019 17:42,21/09/2019 18:15,6.4,20, Improper Input Validation,nan
CVE-2019-11326,23/09/2019 17:37,20/09/2019 19:15,6.5,269, Improper Privilege Management,nan
CVE-2019-11327,23/09/2019 17:30,20/09/2019 19:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9402,23/09/2019 17:27,20/09/2019 16:15,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9388,23/09/2019 17:27,20/09/2019 15:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9387,23/09/2019 17:25,20/09/2019 15:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9390,23/09/2019 17:19,20/09/2019 15:15,4.0,269, Improper Privilege Management,nan
CVE-2019-13390,23/09/2019 17:15,7/07/2019 22:15,4.3,369, Divide By Zero,nan
CVE-2019-16678,23/09/2019 17:04,21/09/2019 20:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16704,23/09/2019 16:33,23/09/2019 4:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10397,23/09/2019 14:22,20/09/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9403,23/09/2019 13:55,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16658,23/09/2019 13:51,21/09/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16657,23/09/2019 13:51,21/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16661,23/09/2019 13:36,21/09/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14915,23/09/2019 13:33,20/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14914,23/09/2019 13:32,20/09/2019 14:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14913,23/09/2019 13:31,20/09/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16659,23/09/2019 13:30,21/09/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16380,23/09/2019 13:30,3/09/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16379,23/09/2019 13:30,3/09/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16660,23/09/2019 13:28,21/09/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14912,23/09/2019 13:28,20/09/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-14911,23/09/2019 13:27,20/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5521,23/09/2019 13:16,20/09/2019 18:15,5.5,125, Out-of-bounds Read,nan
CVE-2019-16664,23/09/2019 13:16,21/09/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16665,23/09/2019 13:00,21/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11200,23/09/2019 12:55,20/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14994,23/09/2019 11:15,19/09/2019 15:15,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9400,20/09/2019 21:20,20/09/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7398,20/09/2019 21:15,6/09/2019 19:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2015-9399,20/09/2019 21:10,20/09/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9405,20/09/2019 21:02,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9404,20/09/2019 20:40,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11559,20/09/2019 20:15,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9385,20/09/2019 20:09,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16644,20/09/2019 20:05,20/09/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16643,20/09/2019 20:03,20/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9397,20/09/2019 19:56,20/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9401,20/09/2019 19:51,20/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9395,20/09/2019 19:51,20/09/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9391,20/09/2019 19:48,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9398,20/09/2019 19:46,20/09/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15088,20/09/2019 19:42,20/09/2019 14:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2015-9394,20/09/2019 19:41,20/09/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9386,20/09/2019 19:36,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9396,20/09/2019 19:35,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15087,20/09/2019 19:25,20/09/2019 14:15,6.5,862, Missing Authorization,nan
CVE-2019-15086,20/09/2019 19:24,20/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15089,20/09/2019 19:18,20/09/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10012,20/09/2019 19:00,25/03/2019 19:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9408,20/09/2019 18:58,20/09/2019 16:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15085,20/09/2019 18:40,20/09/2019 14:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2015-9407,20/09/2019 18:31,20/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9393,20/09/2019 18:27,20/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9392,20/09/2019 18:25,20/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-11011,20/09/2019 18:17,20/09/2019 15:15,4.0,269, Improper Privilege Management,nan
CVE-2016-10999,20/09/2019 18:16,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16642,20/09/2019 18:14,20/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-11013,20/09/2019 18:10,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-11012,20/09/2019 18:03,20/09/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-11000,20/09/2019 18:00,20/09/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10997,20/09/2019 17:59,20/09/2019 15:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-11010,20/09/2019 17:51,20/09/2019 15:15,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2016-11009,20/09/2019 17:51,20/09/2019 15:15,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2015-9389,20/09/2019 17:49,20/09/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-11007,20/09/2019 17:46,20/09/2019 15:15,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2016-11008,20/09/2019 17:45,20/09/2019 15:15,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2015-9384,20/09/2019 17:44,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-11005,20/09/2019 17:20,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5534,20/09/2019 17:15,18/09/2019 21:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-5532,20/09/2019 17:15,18/09/2019 21:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-16531,20/09/2019 17:15,20/09/2019 2:16,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-11004,20/09/2019 17:08,20/09/2019 15:15,6.5,269, Improper Privilege Management,nan
CVE-2016-11003,20/09/2019 17:07,20/09/2019 15:15,6.5,269, Improper Privilege Management,nan
CVE-2016-11002,20/09/2019 17:07,20/09/2019 15:15,6.5,269, Improper Privilege Management,nan
CVE-2016-11001,20/09/2019 16:48,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10998,20/09/2019 16:40,20/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10996,20/09/2019 16:37,20/09/2019 15:15,5.0,863, Incorrect Authorization,nan
CVE-2016-11006,20/09/2019 16:19,20/09/2019 15:15,5.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2019-15843,20/09/2019 16:15,18/09/2019 15:15,5.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9720,20/09/2019 15:29,19/09/2019 21:15,7.1,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-9719,20/09/2019 15:27,19/09/2019 21:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-9717,20/09/2019 15:13,19/09/2019 21:15,7.1,20, Improper Input Validation,nan
CVE-2019-16525,20/09/2019 14:55,19/09/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12447,20/09/2019 14:52,29/05/2019 17:29,4.9,269, Improper Privilege Management,nan
CVE-2019-12449,20/09/2019 14:51,29/05/2019 17:29,3.5,269, Improper Privilege Management,nan
CVE-2019-6974,20/09/2019 14:15,15/02/2019 15:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8798,20/09/2019 14:11,8/06/2016 14:59,7.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8157,20/09/2019 14:11,8/06/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8799,20/09/2019 13:16,8/06/2016 14:59,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10384,20/09/2019 13:15,28/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10383,20/09/2019 13:15,28/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15033,20/09/2019 12:40,19/09/2019 17:15,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-15890,20/09/2019 11:15,6/09/2019 17:15,5.0,416, Use After Free,nan
CVE-2019-1010024,20/09/2019 7:15,15/07/2019 4:15,5.0,200, Information Exposure,nan
CVE-2019-16239,20/09/2019 3:15,17/09/2019 12:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16159,20/09/2019 3:15,9/09/2019 15:15,5.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-20336,19/09/2019 22:15,17/09/2019 16:15,5.0,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-16398,19/09/2019 20:01,19/09/2019 15:15,7.2,20, Improper Input Validation,nan
CVE-2019-15032,19/09/2019 19:44,19/09/2019 17:15,5.0,209, Information Exposure Through an Error Message,nan
CVE-2019-6010,19/09/2019 19:38,19/09/2019 14:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-14458,19/09/2019 19:35,18/09/2019 18:15,7.8,20, Improper Input Validation,nan
CVE-2019-11664,19/09/2019 19:28,18/09/2019 22:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-11663,19/09/2019 19:28,18/09/2019 22:15,4.0,522, Insufficiently Protected Credentials,nan
CVE-2019-11662,19/09/2019 19:28,18/09/2019 22:15,4.0,209, Information Exposure Through an Error Message,nan
CVE-2016-2510,19/09/2019 18:58,7/04/2016 20:59,6.8,19, Data Processing Errors,nan
CVE-2019-11661,19/09/2019 18:56,18/09/2019 22:15,6.5,863, Incorrect Authorization,nan
CVE-2019-16399,19/09/2019 18:15,18/09/2019 14:15,7.5,287, Improper Authentication,nan
CVE-2019-5066,19/09/2019 18:04,18/09/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-5042,19/09/2019 18:04,18/09/2019 21:15,6.5,416, Use After Free,nan
CVE-2019-5067,19/09/2019 18:02,18/09/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-16412,19/09/2019 17:57,19/09/2019 16:15,7.8,20, Improper Input Validation,nan
CVE-2019-16510,19/09/2019 17:46,19/09/2019 16:15,5.0,416, Use After Free,nan
CVE-2018-1000814,19/09/2019 17:40,20/12/2018 15:29,4.0,613, Insufficient Session Expiration,nan
CVE-2019-16170,19/09/2019 17:35,16/09/2019 12:15,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-1549,19/09/2019 17:15,10/09/2019 17:15,5.0,330, Use of Insufficiently Random Values,nan
CVE-2019-11250,19/09/2019 17:15,29/08/2019 1:15,3.5,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-11245,19/09/2019 17:15,29/08/2019 1:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1010266,19/09/2019 17:15,17/07/2019 21:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-16487,19/09/2019 17:15,1/02/2019 18:29,7.5,254, 7PK – Security Features,nan
CVE-2019-16403,19/09/2019 16:59,18/09/2019 12:15,6.5,863, Incorrect Authorization,nan
CVE-2018-18660,19/09/2019 16:47,26/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9681,19/09/2019 16:41,17/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-9677,19/09/2019 16:41,18/09/2019 19:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-9678,19/09/2019 16:40,18/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-12400,19/09/2019 16:32,23/08/2019 21:15,1.9,20, Improper Input Validation,nan
CVE-2018-14496,19/09/2019 16:15,10/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14495,19/09/2019 16:15,10/07/2019 14:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14494,19/09/2019 16:15,10/07/2019 13:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9679,19/09/2019 16:08,18/09/2019 19:15,6.5,276, Incorrect Default Permissions,nan
CVE-2019-9680,19/09/2019 16:06,18/09/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-15301,19/09/2019 16:04,18/09/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16333,19/09/2019 15:59,15/09/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13379,19/09/2019 15:59,4/06/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15858,19/09/2019 14:48,3/09/2019 7:15,6.8,20, Improper Input Validation,nan
CVE-2017-17405,19/09/2019 10:15,15/12/2017 9:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-6007,19/09/2019 5:15,12/09/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-15718,19/09/2019 4:15,4/09/2019 12:15,2.1,284, Improper Access Control,nan
CVE-2019-14835,19/09/2019 4:15,17/09/2019 16:15,7.2,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-14253,19/09/2019 1:33,18/09/2019 16:15,6.4,863, Incorrect Authorization,nan
CVE-2019-14254,19/09/2019 1:12,18/09/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12755,19/09/2019 1:00,17/09/2019 16:15,2.1,200, Information Exposure,nan
CVE-2019-16370,19/09/2019 0:57,16/09/2019 18:15,4.3,20, Improper Input Validation,nan
CVE-2019-11184,18/09/2019 21:15,16/09/2019 16:15,2.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-12565,18/09/2019 21:00,19/06/2018 5:29,6.5,20, Improper Input Validation,nan
CVE-2018-1000535,18/09/2019 20:59,26/06/2018 16:29,5.0,200, Information Exposure,nan
CVE-2019-13140,18/09/2019 20:15,16/09/2019 17:15,4.3,203, Information Exposure Through Discrepancy,nan
CVE-2019-14252,18/09/2019 19:44,18/09/2019 16:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-10992,18/09/2019 19:43,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15729,18/09/2019 19:31,17/09/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-9009,18/09/2019 19:15,17/09/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-16216,18/09/2019 18:43,18/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16215,18/09/2019 18:27,18/09/2019 12:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-10995,18/09/2019 18:22,18/09/2019 12:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-10994,18/09/2019 18:22,18/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16199,18/09/2019 17:37,17/09/2019 21:15,7.5,287, Improper Authentication,nan
CVE-2019-11551,18/09/2019 17:15,21/08/2019 18:15,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-11552,18/09/2019 16:15,19/07/2019 14:15,4.4,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16396,18/09/2019 15:42,17/09/2019 22:15,6.8,416, Use After Free,nan
CVE-2019-16395,18/09/2019 15:42,17/09/2019 22:15,6.8,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-13474,18/09/2019 15:27,16/09/2019 12:15,7.5,287, Improper Authentication,nan
CVE-2016-10976,18/09/2019 15:11,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10983,18/09/2019 15:03,17/09/2019 15:15,4.0,287, Improper Authentication,nan
CVE-2016-10991,18/09/2019 14:51,17/09/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2018-14329,18/09/2019 14:21,17/07/2018 2:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-15848,18/09/2019 14:15,5/09/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15785,18/09/2019 14:15,29/08/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15726,18/09/2019 14:13,16/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-11667,18/09/2019 14:13,17/09/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-11666,18/09/2019 14:06,17/09/2019 19:15,6.8,502, Deserialization of Untrusted Data,nan
CVE-2019-15727,18/09/2019 14:03,16/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-11665,18/09/2019 13:59,17/09/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-16320,18/09/2019 13:41,15/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2018-5256,18/09/2019 13:29,18/05/2018 15:29,5.0,200, Information Exposure,nan
CVE-2019-15728,18/09/2019 13:23,16/09/2019 17:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-16307,18/09/2019 13:22,14/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15723,18/09/2019 13:21,16/09/2019 17:15,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-16321,18/09/2019 13:19,15/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15031,18/09/2019 13:15,13/09/2019 13:15,3.6,200, Information Exposure,nan
CVE-2019-15030,18/09/2019 13:15,13/09/2019 13:15,3.6,20, Improper Input Validation,nan
CVE-2016-10971,18/09/2019 13:11,16/09/2019 13:15,7.5,269, Improper Privilege Management,nan
CVE-2019-15730,18/09/2019 12:40,16/09/2019 17:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-15732,18/09/2019 12:30,16/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-15734,18/09/2019 12:21,16/09/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-15736,18/09/2019 12:19,16/09/2019 18:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-13136,18/09/2019 6:15,4/07/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12086,18/09/2019 2:15,17/05/2019 17:29,5.0,200, Information Exposure,nan
CVE-2016-10968,18/09/2019 1:05,16/09/2019 13:15,6.5,269, Improper Privilege Management,nan
CVE-2018-21015,18/09/2019 0:59,16/09/2019 13:15,4.3,476, NULL Pointer Dereference,nan
CVE-2018-21016,18/09/2019 0:53,16/09/2019 13:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-21017,18/09/2019 0:43,16/09/2019 13:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-16353,18/09/2019 0:28,16/09/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-5482,18/09/2019 0:15,16/09/2019 19:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-5481,18/09/2019 0:15,16/09/2019 19:15,7.5,415, Double Free,nan
CVE-2019-10378,18/09/2019 0:15,7/08/2019 15:15,2.1,255, Credentials Management,nan
CVE-2019-10385,17/09/2019 23:15,7/08/2019 15:15,4.0,255, Credentials Management,nan
CVE-2019-10366,17/09/2019 23:15,31/07/2019 13:15,4.0,255, Credentials Management,nan
CVE-2019-10361,17/09/2019 23:15,31/07/2019 13:15,2.1,255, Credentials Management,nan
CVE-2019-10351,17/09/2019 23:15,11/07/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-10350,17/09/2019 23:15,11/07/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-10348,17/09/2019 23:15,11/07/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-12105,17/09/2019 22:15,10/09/2019 17:15,6.4,306, Missing Authentication for Critical Function,nan
CVE-2019-16378,17/09/2019 21:15,17/09/2019 12:15,7.5,290, Authentication Bypass by Spoofing,nan
CVE-2019-10176,17/09/2019 21:15,2/08/2019 15:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10977,17/09/2019 20:45,17/09/2019 15:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10990,17/09/2019 20:36,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15737,17/09/2019 20:32,16/09/2019 18:15,6.4,287, Improper Authentication,nan
CVE-2016-10975,17/09/2019 19:59,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16264,17/09/2019 19:53,16/09/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10985,17/09/2019 19:48,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10989,17/09/2019 19:40,17/09/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10993,17/09/2019 19:37,17/09/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10974,17/09/2019 19:35,17/09/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16349,17/09/2019 19:27,16/09/2019 13:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-15722,17/09/2019 19:01,16/09/2019 17:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-9008,17/09/2019 18:58,17/09/2019 14:15,6.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15724,17/09/2019 18:42,16/09/2019 17:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16197,17/09/2019 18:34,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11166,17/09/2019 18:32,16/09/2019 16:15,4.6,269, Improper Privilege Management,nan
CVE-2016-10988,17/09/2019 18:27,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15721,17/09/2019 18:25,16/09/2019 17:15,5.5,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-15731,17/09/2019 18:24,16/09/2019 17:15,5.0,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2016-10986,17/09/2019 18:13,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16355,17/09/2019 18:11,16/09/2019 15:15,2.1,276, Incorrect Default Permissions,nan
CVE-2016-10984,17/09/2019 18:10,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10981,17/09/2019 17:45,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10978,17/09/2019 17:44,17/09/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10987,17/09/2019 17:37,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16354,17/09/2019 17:33,16/09/2019 15:15,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10979,17/09/2019 17:27,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10980,17/09/2019 17:20,17/09/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10982,17/09/2019 17:16,17/09/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19362,17/09/2019 17:15,2/01/2019 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-19361,17/09/2019 17:15,2/01/2019 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-19360,17/09/2019 17:15,2/01/2019 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-14719,17/09/2019 17:15,2/01/2019 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-12023,17/09/2019 17:15,21/03/2019 16:00,5.1,502, Deserialization of Untrusted Data,nan
CVE-2018-12022,17/09/2019 17:15,21/03/2019 16:00,5.1,502, Deserialization of Untrusted Data,nan
CVE-2018-10899,17/09/2019 17:15,1/08/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15725,17/09/2019 17:12,16/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-15733,17/09/2019 17:11,16/09/2019 17:15,4.0,200, Information Exposure,nan
CVE-2018-1999019,17/09/2019 17:07,23/07/2018 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-6005,17/09/2019 16:24,12/09/2019 17:15,7.5,269, Improper Privilege Management,nan
CVE-2018-7547,17/09/2019 15:38,27/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15950,17/09/2019 15:35,16/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16366,17/09/2019 15:18,16/09/2019 17:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-15131,17/09/2019 15:04,17/09/2019 12:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15738,17/09/2019 14:59,16/09/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-15740,17/09/2019 14:52,16/09/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-16371,17/09/2019 14:33,16/09/2019 18:15,5.8,522, Insufficiently Protected Credentials,nan
CVE-2019-15739,17/09/2019 14:19,16/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8389,17/09/2019 13:30,17/02/2019 3:29,4.8,200, Information Exposure,nan
CVE-2016-10957,17/09/2019 13:29,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16318,17/09/2019 13:09,14/09/2019 18:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16317,17/09/2019 13:04,14/09/2019 18:15,6.5,502, Deserialization of Untrusted Data,nan
CVE-2016-10964,17/09/2019 12:47,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10960,17/09/2019 12:38,16/09/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2016-10966,17/09/2019 12:34,16/09/2019 13:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10965,17/09/2019 12:34,16/09/2019 13:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10967,17/09/2019 12:26,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12652,17/09/2019 10:15,10/07/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-16237,17/09/2019 9:15,11/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-16236,17/09/2019 9:15,11/09/2019 19:15,5.0,863, Incorrect Authorization,nan
CVE-2019-16235,17/09/2019 9:15,11/09/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-9133,17/09/2019 3:15,9/04/2019 18:29,4.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-10197,17/09/2019 0:15,3/09/2019 15:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16257,16/09/2019 23:41,12/09/2019 13:15,7.5,269, Improper Privilege Management,nan
CVE-2019-16256,16/09/2019 23:40,12/09/2019 13:15,7.5,269, Improper Privilege Management,nan
CVE-2016-10972,16/09/2019 20:54,16/09/2019 17:15,7.5,269, Improper Privilege Management,nan
CVE-2016-10959,16/09/2019 20:51,16/09/2019 13:15,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-10958,16/09/2019 20:47,16/09/2019 13:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-10962,16/09/2019 20:33,16/09/2019 13:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16346,16/09/2019 20:19,16/09/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16347,16/09/2019 20:15,16/09/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16352,16/09/2019 20:06,16/09/2019 13:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10969,16/09/2019 19:59,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16057,16/09/2019 19:58,16/09/2019 12:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-16348,16/09/2019 19:40,16/09/2019 13:15,4.3,476, NULL Pointer Dereference,nan
CVE-2016-10973,16/09/2019 19:39,16/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8371,16/09/2019 19:29,16/09/2019 17:15,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10970,16/09/2019 19:23,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6004,16/09/2019 19:22,12/09/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-8368,16/09/2019 19:18,16/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8446,16/09/2019 19:15,23/08/2019 14:15,5.0,285, Improper Authorization,nan
CVE-2019-8445,16/09/2019 19:15,23/08/2019 14:15,5.0,275, Permission Issues,nan
CVE-2019-8444,16/09/2019 19:15,23/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14998,16/09/2019 19:15,11/09/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14995,16/09/2019 19:15,11/09/2019 14:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-16334,16/09/2019 19:13,15/09/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16351,16/09/2019 19:12,16/09/2019 13:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-16350,16/09/2019 18:54,16/09/2019 13:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-10256,16/09/2019 18:49,10/09/2019 19:15,7.5,287, Improper Authentication,nan
CVE-2019-16319,16/09/2019 18:48,15/09/2019 16:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-14457,16/09/2019 18:47,10/09/2019 18:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2018-15873,16/09/2019 18:40,28/08/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14237,16/09/2019 18:27,12/09/2019 18:15,7.5,863, Incorrect Authorization,nan
CVE-2016-10956,16/09/2019 18:23,16/09/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2019-14236,16/09/2019 18:19,12/09/2019 18:15,7.5,863, Incorrect Authorization,nan
CVE-2019-16275,16/09/2019 18:15,12/09/2019 20:15,3.3,20, Improper Input Validation,nan
CVE-2019-15107,16/09/2019 18:15,16/08/2019 3:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15052,16/09/2019 18:15,14/08/2019 20:15,5.0,255, Credentials Management,nan
CVE-2019-1253,16/09/2019 18:15,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2017-18634,16/09/2019 18:10,16/09/2019 12:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10961,16/09/2019 18:01,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10963,16/09/2019 17:46,16/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5985,16/09/2019 17:44,12/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6003,16/09/2019 17:38,12/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5993,16/09/2019 17:31,12/09/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10949,16/09/2019 17:06,13/09/2019 13:15,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16313,16/09/2019 16:13,14/09/2019 16:15,5.0,522, Insufficiently Protected Credentials,nan
CVE-2016-10951,16/09/2019 15:54,13/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16312,16/09/2019 15:39,14/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15552,16/09/2019 15:38,7/09/2018 22:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-16311,16/09/2019 15:30,14/09/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16310,16/09/2019 15:29,14/09/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16305,16/09/2019 15:29,14/09/2019 15:15,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16309,16/09/2019 15:23,14/09/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10156,16/09/2019 15:15,30/07/2019 23:15,5.5,200, Information Exposure,nan
CVE-2015-6240,16/09/2019 15:15,7/06/2017 20:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-3908,16/09/2019 15:15,12/08/2015 14:59,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-16314,16/09/2019 15:10,14/09/2019 16:15,7.5,20, Improper Input Validation,nan
CVE-2019-16303,16/09/2019 14:36,14/09/2019 0:15,7.5,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-9205,16/09/2019 14:33,23/05/2017 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9204,16/09/2019 14:33,23/05/2017 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9202,16/09/2019 14:33,23/05/2017 4:29,4.3,369, Divide By Zero,nan
CVE-2017-9201,16/09/2019 14:33,23/05/2017 4:29,4.3,369, Divide By Zero,nan
CVE-2017-8325,16/09/2019 14:33,29/04/2017 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7962,16/09/2019 14:33,19/04/2017 15:59,4.3,369, Divide By Zero,nan
CVE-2017-7940,16/09/2019 14:33,18/04/2017 19:59,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-7453,16/09/2019 14:33,6/04/2017 0:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7452,16/09/2019 14:33,6/04/2017 0:59,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7081,16/09/2019 14:11,13/09/2019 17:15,9.3,20, Improper Input Validation,nan
CVE-2019-5315,16/09/2019 14:05,13/09/2019 17:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-16288,16/09/2019 14:01,13/09/2019 15:15,7.8,20, Improper Input Validation,nan
CVE-2019-5314,16/09/2019 13:58,13/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16289,16/09/2019 13:58,13/09/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10952,16/09/2019 13:48,13/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17300,16/09/2019 13:39,21/09/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10950,16/09/2019 13:37,13/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12517,16/09/2019 13:35,13/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16277,16/09/2019 13:26,13/09/2019 12:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5986,16/09/2019 13:22,12/09/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18615,16/09/2019 13:16,13/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18614,16/09/2019 12:59,13/09/2019 12:15,9.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18613,16/09/2019 12:47,13/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18612,16/09/2019 12:38,13/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10945,16/09/2019 12:30,13/09/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15296,16/09/2019 4:15,21/08/2019 7:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20361,16/09/2019 4:15,22/12/2018 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20359,16/09/2019 4:15,22/12/2018 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20358,16/09/2019 4:15,22/12/2018 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20357,16/09/2019 4:15,22/12/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20195,16/09/2019 4:15,18/12/2018 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19504,16/09/2019 4:15,23/11/2018 19:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-19503,16/09/2019 4:15,23/11/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16218,15/09/2019 5:15,11/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8800,15/09/2019 0:15,5/02/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8799,15/09/2019 0:15,5/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-8798,15/09/2019 0:15,5/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-8797,15/09/2019 0:15,5/02/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8796,15/09/2019 0:15,5/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-8795,15/09/2019 0:15,5/02/2019 20:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-8794,15/09/2019 0:15,5/02/2019 20:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-8793,15/09/2019 0:15,5/02/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8792,15/09/2019 0:15,5/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-8791,15/09/2019 0:15,5/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-20182,15/09/2019 0:15,15/03/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20181,15/09/2019 0:15,15/03/2019 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-20180,15/09/2019 0:15,15/03/2019 18:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-20178,15/09/2019 0:15,15/03/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-20175,15/09/2019 0:15,15/03/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-15717,14/09/2019 19:15,29/08/2019 17:15,7.5,416, Use After Free,nan
CVE-2019-11324,14/09/2019 18:15,18/04/2019 21:29,5.0,295, Improper Certificate Validation,nan
CVE-2019-15926,14/09/2019 4:15,4/09/2019 21:15,9.4,125, Out-of-bounds Read,nan
CVE-2019-15924,14/09/2019 4:15,4/09/2019 19:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15807,14/09/2019 4:15,29/08/2019 18:15,7.8,399, Resource Management Errors,nan
CVE-2019-15666,14/09/2019 4:15,27/08/2019 5:15,7.8,125, Out-of-bounds Read,nan
CVE-2019-14511,14/09/2019 4:15,22/08/2019 13:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-9488,13/09/2019 21:11,11/09/2019 18:15,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-16293,13/09/2019 21:01,13/09/2019 17:15,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-10954,13/09/2019 20:21,13/09/2019 13:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13364,13/09/2019 20:13,13/09/2019 13:15,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13363,13/09/2019 20:11,13/09/2019 13:15,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10942,13/09/2019 19:59,13/09/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10941,13/09/2019 19:56,13/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10938,13/09/2019 19:49,13/09/2019 12:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8076,13/09/2019 19:22,12/09/2019 19:15,6.8,426, Untrusted Search Path,nan
CVE-2019-6163,13/09/2019 19:15,26/06/2019 14:15,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2019-8069,13/09/2019 19:14,12/09/2019 19:15,10.0,346, Origin Validation Error,nan
CVE-2016-10953,13/09/2019 19:10,13/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8070,13/09/2019 19:07,12/09/2019 19:15,10.0,416, Use After Free,nan
CVE-2016-10940,13/09/2019 18:58,13/09/2019 12:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10946,13/09/2019 18:57,13/09/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10943,13/09/2019 18:55,13/09/2019 12:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10939,13/09/2019 18:54,13/09/2019 12:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13473,13/09/2019 18:50,11/09/2019 19:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-17200,13/09/2019 18:49,11/09/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2016-10947,13/09/2019 18:38,13/09/2019 13:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16238,13/09/2019 18:34,12/09/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10948,13/09/2019 18:30,13/09/2019 13:15,6.8,20, Improper Input Validation,nan
CVE-2016-10955,13/09/2019 18:26,13/09/2019 13:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16098,13/09/2019 18:23,11/09/2019 17:15,7.2,269, Improper Privilege Management,nan
CVE-2019-5956,13/09/2019 18:22,12/09/2019 17:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11465,13/09/2019 18:20,10/09/2019 17:15,5.0,203, Information Exposure Through Discrepancy,nan
CVE-2016-10944,13/09/2019 18:02,13/09/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0912,13/09/2019 17:54,3/07/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15302,13/09/2019 17:50,11/09/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2019-5992,13/09/2019 17:49,12/09/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5975,13/09/2019 17:37,12/09/2019 17:15,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-0189,13/09/2019 17:03,11/09/2019 21:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-16261,13/09/2019 16:55,12/09/2019 15:15,8.5,287, Improper Authentication,nan
CVE-2019-5978,13/09/2019 16:51,12/09/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-5977,13/09/2019 16:43,12/09/2019 17:15,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5991,13/09/2019 16:41,12/09/2019 17:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11769,13/09/2019 16:29,11/09/2019 20:15,7.2,522, Insufficiently Protected Credentials,nan
CVE-2019-10074,13/09/2019 16:14,11/09/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-10073,13/09/2019 16:14,11/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1233,13/09/2019 16:08,11/09/2019 22:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5976,13/09/2019 16:01,12/09/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2019-14513,13/09/2019 15:15,1/08/2019 21:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1294,13/09/2019 15:15,11/09/2019 22:15,2.1,20, Improper Input Validation,nan
CVE-2019-1220,13/09/2019 15:06,11/09/2019 22:15,4.3,732, Incorrect Permission Assignment for Critical Resource,nan
CVE-2019-5055,13/09/2019 14:49,11/09/2019 22:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-16248,13/09/2019 14:42,11/09/2019 23:15,5.0,20, Improper Input Validation,nan
CVE-2019-16247,13/09/2019 14:40,11/09/2019 22:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1303,13/09/2019 14:23,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1306,13/09/2019 14:16,11/09/2019 22:15,7.5,20, Improper Input Validation,nan
CVE-2019-5054,13/09/2019 14:11,11/09/2019 22:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-1305,13/09/2019 14:07,11/09/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16249,13/09/2019 14:06,11/09/2019 23:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-16250,13/09/2019 13:52,11/09/2019 23:15,5.0,20, Improper Input Validation,nan
CVE-2019-6009,13/09/2019 13:35,12/09/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-14729,13/09/2019 13:23,10/09/2019 16:15,5.5,20, Improper Input Validation,nan
CVE-2019-14728,13/09/2019 13:08,10/09/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-14722,13/09/2019 13:07,10/09/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-14727,13/09/2019 12:56,10/09/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-14730,13/09/2019 12:55,10/09/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-14726,13/09/2019 12:49,10/09/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-14723,13/09/2019 12:27,10/09/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2019-5996,13/09/2019 12:14,12/09/2019 17:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11841,13/09/2019 9:15,22/05/2019 17:29,4.3,310, Cryptographic Issues,nan
CVE-2019-14308,13/09/2019 5:15,26/08/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14307,13/09/2019 5:15,26/08/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14305,13/09/2019 5:15,26/08/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14300,13/09/2019 5:15,26/08/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16173,12/09/2019 22:15,9/09/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16172,12/09/2019 22:15,9/09/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16193,12/09/2019 21:56,11/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14725,12/09/2019 21:16,11/09/2019 12:15,4.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2019-15903,12/09/2019 21:15,4/09/2019 6:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-14724,12/09/2019 21:10,11/09/2019 12:15,5.0,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2019-14721,12/09/2019 21:09,10/09/2019 16:15,5.5,639, Authorization Bypass Through User-Controlled Key,nan
CVE-2019-0928,12/09/2019 20:15,11/09/2019 22:15,5.5,20, Improper Input Validation,nan
CVE-2017-18603,12/09/2019 20:13,10/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1280,12/09/2019 20:07,11/09/2019 22:15,9.3,20, Improper Input Validation,nan
CVE-2018-1000835,12/09/2019 20:02,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1271,12/09/2019 20:00,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1268,12/09/2019 19:55,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1270,12/09/2019 19:46,11/09/2019 22:15,3.6,269, Improper Privilege Management,nan
CVE-2019-1287,12/09/2019 19:42,11/09/2019 22:15,4.6,20, Improper Input Validation,nan
CVE-2019-1272,12/09/2019 19:39,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1284,12/09/2019 19:33,11/09/2019 22:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1282,12/09/2019 19:21,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1208,12/09/2019 19:15,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1232,12/09/2019 19:07,11/09/2019 22:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1235,12/09/2019 19:05,11/09/2019 22:15,7.2,20, Improper Input Validation,nan
CVE-2019-1300,12/09/2019 18:47,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1283,12/09/2019 18:42,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1265,12/09/2019 18:40,11/09/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-1236,12/09/2019 18:34,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1293,12/09/2019 18:18,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1292,12/09/2019 18:17,11/09/2019 22:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18056,12/09/2019 18:15,20/08/2019 17:15,2.1,200, Information Exposure,nan
CVE-2019-1297,12/09/2019 18:14,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1142,12/09/2019 17:53,11/09/2019 22:15,2.1,269, Improper Privilege Management,nan
CVE-2019-1278,12/09/2019 17:37,11/09/2019 22:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1285,12/09/2019 17:33,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1301,12/09/2019 17:31,11/09/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-1302,12/09/2019 17:29,11/09/2019 22:15,6.8,20, Improper Input Validation,nan
CVE-2019-1267,12/09/2019 17:20,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1214,12/09/2019 17:16,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1251,12/09/2019 17:12,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1219,12/09/2019 17:08,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1289,12/09/2019 17:05,11/09/2019 22:15,3.6,269, Improper Privilege Management,nan
CVE-2019-1252,12/09/2019 17:05,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-1245,12/09/2019 16:59,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-1286,12/09/2019 16:50,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-1290,12/09/2019 16:48,11/09/2019 22:15,9.3,20, Improper Input Validation,nan
CVE-2019-1254,12/09/2019 16:37,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1299,12/09/2019 16:36,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-1256,12/09/2019 16:26,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1244,12/09/2019 16:25,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-1260,12/09/2019 16:24,11/09/2019 22:15,4.0,269, Improper Privilege Management,nan
CVE-2019-1291,12/09/2019 16:22,11/09/2019 22:15,9.3,20, Improper Input Validation,nan
CVE-2019-1298,12/09/2019 16:17,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1547,12/09/2019 16:15,10/09/2019 17:15,1.9,311, Missing Encryption of Sensitive Data,nan
CVE-2019-1261,12/09/2019 16:09,11/09/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1259,12/09/2019 16:09,11/09/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1264,12/09/2019 16:04,11/09/2019 22:15,6.8,20, Improper Input Validation,nan
CVE-2019-1269,12/09/2019 16:03,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1277,12/09/2019 15:59,11/09/2019 22:15,4.6,269, Improper Privilege Management,nan
CVE-2019-1274,12/09/2019 15:40,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-12943,12/09/2019 15:31,10/09/2019 21:15,2.6,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-16058,12/09/2019 15:15,6/09/2019 18:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1266,12/09/2019 14:54,11/09/2019 22:15,4.3,20, Improper Input Validation,nan
CVE-2019-1296,12/09/2019 14:49,11/09/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2019-12942,12/09/2019 14:43,10/09/2019 21:15,3.3,269, Improper Privilege Management,nan
CVE-2019-1295,12/09/2019 14:32,11/09/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2019-1221,12/09/2019 14:27,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1231,12/09/2019 14:26,11/09/2019 22:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-1257,12/09/2019 14:24,11/09/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2019-1216,12/09/2019 14:15,11/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-1209,12/09/2019 14:15,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-1263,12/09/2019 14:11,11/09/2019 22:15,4.3,200, Information Exposure,nan
CVE-2019-0787,12/09/2019 14:11,11/09/2019 22:15,9.3,20, Improper Input Validation,nan
CVE-2019-0788,12/09/2019 13:57,11/09/2019 22:15,9.3,20, Improper Input Validation,nan
CVE-2019-1215,12/09/2019 13:36,11/09/2019 22:15,7.2,269, Improper Privilege Management,nan
CVE-2019-1273,12/09/2019 13:25,11/09/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1138,12/09/2019 13:23,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1217,12/09/2019 13:22,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1237,12/09/2019 13:21,11/09/2019 22:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1240,12/09/2019 13:17,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1241,12/09/2019 13:12,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1242,12/09/2019 12:53,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1243,12/09/2019 12:52,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8451,12/09/2019 12:49,11/09/2019 14:15,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-1246,12/09/2019 12:47,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1247,12/09/2019 12:43,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1249,12/09/2019 12:40,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1250,12/09/2019 12:38,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1248,12/09/2019 12:30,11/09/2019 22:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16163,12/09/2019 12:15,9/09/2019 17:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2013-6933,12/09/2019 12:13,23/01/2014 21:55,7.5,189, Numeric Errors,nan
CVE-2013-6934,12/09/2019 12:00,23/01/2014 21:55,7.5,189, Numeric Errors,nan
CVE-2019-1563,12/09/2019 11:15,10/09/2019 17:15,4.3,311, Missing Encryption of Sensitive Data,nan
CVE-2019-2102,12/09/2019 4:15,7/06/2019 20:29,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-16223,12/09/2019 4:15,11/09/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16222,12/09/2019 4:15,11/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16221,12/09/2019 4:15,11/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16220,12/09/2019 4:15,11/09/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-16219,12/09/2019 4:15,11/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15946,11/09/2019 22:15,5/09/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15945,11/09/2019 22:15,5/09/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16425,11/09/2019 22:15,4/09/2018 0:29,4.6,415, Double Free,nan
CVE-2018-16424,11/09/2019 22:15,4/09/2018 0:29,4.6,415, Double Free,nan
CVE-2018-10931,11/09/2019 21:15,9/08/2018 20:29,7.5,749, Exposed Dangerous Method or Function,nan
CVE-2019-8450,11/09/2019 20:33,11/09/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14996,11/09/2019 19:51,11/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8449,11/09/2019 19:49,11/09/2019 14:15,5.0,200, Information Exposure,nan
CVE-2018-9206,11/09/2019 19:28,11/10/2018 15:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11247,11/09/2019 19:15,29/08/2019 1:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-16214,11/09/2019 19:07,11/09/2019 4:15,3.5,20, Improper Input Validation,nan
CVE-2018-19289,11/09/2019 18:39,15/11/2018 6:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16202,11/09/2019 18:34,10/09/2019 14:15,4.0,269, Improper Privilege Management,nan
CVE-2018-6806,11/09/2019 18:09,7/02/2018 5:29,4.3,200, Information Exposure,nan
CVE-2019-10233,11/09/2019 18:08,27/03/2019 17:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-12996,11/09/2019 17:15,10/09/2019 19:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000837,11/09/2019 16:53,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-16190,11/09/2019 15:08,9/09/2019 20:15,7.5,287, Improper Authentication,nan
CVE-2019-6788,11/09/2019 15:02,9/09/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-6795,11/09/2019 14:49,9/09/2019 20:15,5.8,20, Improper Input Validation,nan
CVE-2019-0365,11/09/2019 14:43,10/09/2019 17:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-11668,11/09/2019 14:38,10/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-15297,11/09/2019 14:30,9/09/2019 21:15,4.0,476, NULL Pointer Dereference,nan
CVE-2019-11669,11/09/2019 14:24,10/09/2019 21:15,5.0,863, Incorrect Authorization,nan
CVE-2019-0355,11/09/2019 14:16,10/09/2019 17:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-16145,11/09/2019 14:07,9/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0357,11/09/2019 14:06,10/09/2019 17:15,7.2,269, Improper Privilege Management,nan
CVE-2019-0361,11/09/2019 14:04,10/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16192,11/09/2019 14:02,9/09/2019 21:15,7.5,269, Improper Privilege Management,nan
CVE-2019-0363,11/09/2019 13:59,10/09/2019 17:15,5.5,20, Improper Input Validation,nan
CVE-2017-18604,11/09/2019 13:59,10/09/2019 12:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-0364,11/09/2019 13:41,10/09/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2019-15896,11/09/2019 13:30,10/09/2019 16:15,7.5,269, Improper Privilege Management,nan
CVE-2018-18571,11/09/2019 13:18,5/06/2019 15:29,6.4,287, Improper Authentication,nan
CVE-2019-16106,11/09/2019 12:54,10/09/2019 16:15,5.0,276, Incorrect Default Permissions,nan
CVE-2019-3975,11/09/2019 12:40,10/09/2019 16:15,7.5,120, Buffer Copy without Checking Size of Input (‘Classic Buffer Overflow’),nan
CVE-2019-5503,11/09/2019 12:29,10/09/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-0352,11/09/2019 12:20,10/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2018-21011,11/09/2019 12:15,9/09/2019 13:15,5.0,200, Information Exposure,nan
CVE-2018-20551,11/09/2019 12:15,28/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2019-16056,11/09/2019 5:15,6/09/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2018-6240,11/09/2019 3:15,6/09/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14806,11/09/2019 0:15,9/08/2019 15:15,5.0,331, Insufficient Entropy,nan
CVE-2018-16844,11/09/2019 0:15,7/11/2018 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-16843,11/09/2019 0:15,7/11/2018 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-10253,10/09/2019 22:56,9/09/2019 21:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11544,10/09/2019 22:47,9/09/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-11545,10/09/2019 22:38,9/09/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-11546,10/09/2019 22:28,9/09/2019 19:15,3.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-11547,10/09/2019 22:21,9/09/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11548,10/09/2019 22:16,9/09/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19824,10/09/2019 22:15,3/12/2018 17:29,4.6,416, Use After Free,nan
CVE-2019-11549,10/09/2019 22:10,9/09/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-6789,10/09/2019 20:55,9/09/2019 20:15,4.0,200, Information Exposure,nan
CVE-2019-6792,10/09/2019 20:52,9/09/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-6960,10/09/2019 20:50,9/09/2019 20:15,7.5,269, Improper Privilege Management,nan
CVE-2017-18597,10/09/2019 20:43,10/09/2019 11:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18605,10/09/2019 20:41,10/09/2019 12:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18596,10/09/2019 20:38,10/09/2019 11:15,6.5,269, Improper Privilege Management,nan
CVE-2017-18610,10/09/2019 20:28,10/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18611,10/09/2019 20:27,10/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0353,10/09/2019 20:26,10/09/2019 17:15,2.1,200, Information Exposure,nan
CVE-2017-18602,10/09/2019 20:23,10/09/2019 12:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18601,10/09/2019 20:23,10/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18607,10/09/2019 20:18,10/09/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18606,10/09/2019 20:17,10/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6785,10/09/2019 20:04,9/09/2019 20:15,4.0,20, Improper Input Validation,nan
CVE-2017-18600,10/09/2019 19:57,10/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6786,10/09/2019 19:53,9/09/2019 20:15,4.0,20, Improper Input Validation,nan
CVE-2019-6782,10/09/2019 19:51,9/09/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-6793,10/09/2019 19:46,9/09/2019 20:15,6.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6783,10/09/2019 19:44,9/09/2019 20:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16175,10/09/2019 19:39,9/09/2019 21:15,4.3,1021, Improper Restriction of Rendered UI Layers or Frames,nan
CVE-2019-6794,10/09/2019 19:18,9/09/2019 20:15,4.0,200, Information Exposure,nan
CVE-2019-6784,10/09/2019 19:10,9/09/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11605,10/09/2019 19:01,9/09/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-6995,10/09/2019 18:44,9/09/2019 20:15,4.0,281, Improper Preservation of Permissions,nan
CVE-2018-18630,10/09/2019 18:38,6/09/2019 17:15,4.6,275, Permission Issues,nan
CVE-2019-6996,10/09/2019 18:34,9/09/2019 20:15,4.0,200, Information Exposure,nan
CVE-2019-6997,10/09/2019 18:30,9/09/2019 20:15,4.0,200, Information Exposure,nan
CVE-2019-6791,10/09/2019 18:18,9/09/2019 21:15,4.0,281, Improper Preservation of Permissions,nan
CVE-2018-9568,10/09/2019 18:15,6/12/2018 14:29,7.2,704, Incorrect Type Conversion or Cast,nan
CVE-2018-16871,10/09/2019 18:15,30/07/2019 17:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-7176,10/09/2019 17:56,9/09/2019 21:15,4.3,863, Incorrect Authorization,nan
CVE-2019-16179,10/09/2019 17:46,9/09/2019 21:15,5.0,295, Improper Certificate Validation,nan
CVE-2019-16147,10/09/2019 17:34,9/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16183,10/09/2019 17:33,9/09/2019 21:15,4.0,276, Incorrect Default Permissions,nan
CVE-2017-18598,10/09/2019 17:21,10/09/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18599,10/09/2019 17:13,10/09/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16174,10/09/2019 17:07,9/09/2019 21:15,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-18609,10/09/2019 17:06,10/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16176,10/09/2019 17:03,9/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-16177,10/09/2019 17:00,9/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-16180,10/09/2019 16:59,9/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-16181,10/09/2019 16:55,9/09/2019 21:15,4.0,20, Improper Input Validation,nan
CVE-2019-16184,10/09/2019 16:53,9/09/2019 21:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18608,10/09/2019 16:51,10/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15639,10/09/2019 16:49,9/09/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-16185,10/09/2019 16:47,9/09/2019 21:15,6.5,276, Incorrect Default Permissions,nan
CVE-2019-16186,10/09/2019 16:43,9/09/2019 21:15,6.5,276, Incorrect Default Permissions,nan
CVE-2019-10665,10/09/2019 16:42,9/09/2019 13:15,7.5,20, Improper Input Validation,nan
CVE-2019-16114,10/09/2019 16:30,9/09/2019 13:15,7.5,284, Improper Access Control,nan
CVE-2019-16182,10/09/2019 16:15,9/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16178,10/09/2019 16:09,9/09/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10666,10/09/2019 16:05,9/09/2019 13:15,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10668,10/09/2019 15:52,9/09/2019 13:15,6.4,287, Improper Authentication,nan
CVE-2019-10669,10/09/2019 15:51,9/09/2019 13:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16187,10/09/2019 15:45,9/09/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-12463,10/09/2019 15:41,9/09/2019 14:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10670,10/09/2019 15:32,9/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10671,10/09/2019 15:28,9/09/2019 14:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5612,10/09/2019 15:15,30/08/2019 9:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5611,10/09/2019 15:15,30/08/2019 9:15,7.8,20, Improper Input Validation,nan
CVE-2019-5610,10/09/2019 15:15,30/08/2019 9:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-5609,10/09/2019 15:15,30/08/2019 9:15,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5608,10/09/2019 15:15,30/08/2019 9:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-12464,10/09/2019 15:15,9/09/2019 14:15,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16164,10/09/2019 14:47,9/09/2019 17:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-16162,10/09/2019 14:39,9/09/2019 17:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16161,10/09/2019 14:30,9/09/2019 17:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-14223,10/09/2019 14:27,6/09/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-9450,10/09/2019 14:16,6/09/2019 22:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-16096,10/09/2019 14:15,8/09/2019 4:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-12465,10/09/2019 14:06,9/09/2019 14:15,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16131,10/09/2019 14:04,9/09/2019 3:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-16132,10/09/2019 14:01,9/09/2019 3:15,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16133,10/09/2019 13:58,9/09/2019 3:15,4.0,613, Insufficient Session Expiration,nan
CVE-2019-16165,10/09/2019 13:56,9/09/2019 17:15,4.3,416, Use After Free,nan
CVE-2019-16137,10/09/2019 13:51,9/09/2019 12:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16166,10/09/2019 13:50,9/09/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-16138,10/09/2019 13:49,9/09/2019 12:15,7.5,416, Use After Free,nan
CVE-2019-16148,10/09/2019 13:41,9/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12265,10/09/2019 13:15,9/08/2019 19:15,5.0,399, Resource Management Errors,nan
CVE-2019-12263,10/09/2019 13:15,9/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12262,10/09/2019 13:15,14/08/2019 20:15,7.5,284, Improper Access Control,nan
CVE-2019-12261,10/09/2019 13:15,9/08/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12260,10/09/2019 13:15,9/08/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12259,10/09/2019 13:15,9/08/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12258,10/09/2019 13:15,9/08/2019 20:15,5.0,384, Session Fixation,nan
CVE-2019-1125,10/09/2019 13:15,3/09/2019 18:15,2.1,200, Information Exposure,nan
CVE-2019-10915,10/09/2019 13:15,11/07/2019 22:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-1000426,10/09/2019 13:13,2/01/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16146,10/09/2019 12:54,9/09/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-21014,10/09/2019 12:51,9/09/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9451,10/09/2019 12:50,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-13139,10/09/2019 11:15,22/08/2019 20:15,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9854,10/09/2019 3:15,6/09/2019 19:15,7.5,284, Improper Access Control,nan
CVE-2019-7638,10/09/2019 3:15,8/02/2019 11:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7636,10/09/2019 3:15,8/02/2019 11:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7578,10/09/2019 3:15,7/02/2019 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7577,10/09/2019 3:15,7/02/2019 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7576,10/09/2019 3:15,7/02/2019 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7575,10/09/2019 3:15,7/02/2019 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7574,10/09/2019 3:15,7/02/2019 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7573,10/09/2019 3:15,7/02/2019 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7572,10/09/2019 3:15,7/02/2019 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-16120,10/09/2019 3:15,8/09/2019 23:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16119,10/09/2019 3:15,8/09/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-16118,10/09/2019 3:15,8/09/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16117,10/09/2019 3:15,8/09/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15833,10/09/2019 3:15,30/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15757,10/09/2019 3:15,29/08/2019 1:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-14817,10/09/2019 3:15,3/09/2019 16:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-14813,10/09/2019 3:15,6/09/2019 14:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-14811,10/09/2019 3:15,3/09/2019 16:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-13656,10/09/2019 3:15,6/09/2019 15:15,7.5,284, Improper Access Control,nan
CVE-2019-13626,10/09/2019 3:15,17/07/2019 16:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-13510,10/09/2019 3:15,15/08/2019 19:15,6.8,416, Use After Free,nan
CVE-2018-18809,10/09/2019 3:15,7/03/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18373,10/09/2019 3:15,17/10/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11797,10/09/2019 3:15,5/10/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-18539,10/09/2019 3:15,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9383,10/09/2019 3:15,3/09/2019 5:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-9382,10/09/2019 3:15,3/09/2019 5:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-9381,10/09/2019 3:15,3/09/2019 5:15,6.8,125, Out-of-bounds Read,nan
CVE-2018-18473,9/09/2019 22:15,21/03/2019 16:00,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-7549,9/09/2019 21:15,29/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-15895,9/09/2019 21:15,9/09/2019 13:15,5.0,284, Improper Access Control,nan
CVE-2018-21012,9/09/2019 21:15,9/09/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10746,9/09/2019 20:31,23/08/2019 17:15,7.5,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2019-16109,9/09/2019 20:27,8/09/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2015-9353,9/09/2019 20:21,28/08/2019 12:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7155,9/09/2019 20:15,16/04/2019 22:29,4.0,284, Improper Access Control,nan
CVE-2019-6796,9/09/2019 20:15,11/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6790,9/09/2019 20:15,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-6781,9/09/2019 20:15,17/05/2019 16:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-16124,9/09/2019 20:01,9/09/2019 2:15,7.5,269, Improper Privilege Management,nan
CVE-2019-16125,9/09/2019 19:59,9/09/2019 2:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10667,9/09/2019 19:58,9/09/2019 13:15,5.0,200, Information Exposure,nan
CVE-2019-16126,9/09/2019 19:55,9/09/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16139,9/09/2019 19:51,9/09/2019 12:15,9.0,787, Out-of-bounds Write,nan
CVE-2019-15550,9/09/2019 19:50,26/08/2019 15:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16130,9/09/2019 19:47,9/09/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9866,9/09/2019 19:15,29/05/2019 17:29,4.0,200, Information Exposure,nan
CVE-2019-7353,9/09/2019 19:15,17/05/2019 17:29,6.4,284, Improper Access Control,nan
CVE-2019-15947,9/09/2019 19:04,5/09/2019 17:15,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-21013,9/09/2019 19:00,9/09/2019 13:15,7.5,269, Improper Privilege Management,nan
CVE-2019-9245,9/09/2019 18:55,6/09/2019 22:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9452,9/09/2019 18:53,6/09/2019 22:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9454,9/09/2019 18:52,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9453,9/09/2019 18:52,6/09/2019 22:15,2.1,20, Improper Input Validation,nan
CVE-2019-9455,9/09/2019 18:49,6/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-16140,9/09/2019 18:46,9/09/2019 12:15,7.5,416, Use After Free,nan
CVE-2019-9458,9/09/2019 18:35,6/09/2019 22:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-16123,9/09/2019 18:35,9/09/2019 2:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-16141,9/09/2019 18:28,9/09/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2019-9461,9/09/2019 18:25,6/09/2019 22:15,7.8,200, Information Exposure,nan
CVE-2019-9248,9/09/2019 18:24,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16142,9/09/2019 18:16,9/09/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2019-16143,9/09/2019 18:02,9/09/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2011-1572,9/09/2019 18:02,4/10/2011 10:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9271,9/09/2019 18:00,6/09/2019 22:15,4.4,416, Use After Free,nan
CVE-2019-9273,9/09/2019 17:58,6/09/2019 22:15,4.6,416, Use After Free,nan
CVE-2019-9275,9/09/2019 17:56,6/09/2019 22:15,7.5,416, Use After Free,nan
CVE-2019-16144,9/09/2019 17:50,9/09/2019 12:15,7.8,20, Improper Input Validation,nan
CVE-2012-4506,9/09/2019 17:49,22/10/2012 23:55,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9426,9/09/2019 17:38,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-2832,9/09/2019 17:34,23/07/2019 23:15,4.6,284, Improper Access Control,nan
CVE-2019-9436,9/09/2019 17:33,6/09/2019 22:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-16113,9/09/2019 17:33,8/09/2019 21:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9442,9/09/2019 17:30,6/09/2019 22:15,4.6,416, Use After Free,nan
CVE-2019-16115,9/09/2019 17:28,8/09/2019 22:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-16104,9/09/2019 17:19,8/09/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9443,9/09/2019 17:18,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-2182,9/09/2019 17:14,6/09/2019 22:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-9270,9/09/2019 17:13,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9274,9/09/2019 17:12,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-6644,9/09/2019 17:04,4/09/2019 17:15,6.8,285, Improper Authorization,nan
CVE-2019-6647,9/09/2019 17:01,4/09/2019 17:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-15944,9/09/2019 16:57,5/09/2019 20:15,5.0,116, Improper Encoding or Escaping of Output,nan
CVE-2019-12588,9/09/2019 16:56,4/09/2019 12:15,3.3,20, Improper Input Validation,nan
CVE-2019-16093,9/09/2019 16:02,8/09/2019 3:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-16092,9/09/2019 16:02,8/09/2019 3:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-16091,9/09/2019 16:02,8/09/2019 3:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16095,9/09/2019 16:01,8/09/2019 3:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-16094,9/09/2019 16:01,8/09/2019 3:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-9276,9/09/2019 16:00,6/09/2019 22:15,4.6,416, Use After Free,nan
CVE-2019-9345,9/09/2019 15:53,6/09/2019 22:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-16100,9/09/2019 15:50,8/09/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-9441,9/09/2019 15:30,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16099,9/09/2019 15:19,8/09/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16101,9/09/2019 15:17,8/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-10677,9/09/2019 15:17,5/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-16102,9/09/2019 15:16,8/09/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2019-9445,9/09/2019 15:15,6/09/2019 22:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-9444,9/09/2019 15:15,6/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-9446,9/09/2019 15:14,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-16103,9/09/2019 15:14,8/09/2019 17:15,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-16105,9/09/2019 15:11,8/09/2019 17:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9447,9/09/2019 15:09,6/09/2019 22:15,4.6,416, Use After Free,nan
CVE-2019-9448,9/09/2019 15:07,6/09/2019 22:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-9449,9/09/2019 14:24,6/09/2019 22:15,2.1,125, Out-of-bounds Read,nan
CVE-2015-9301,9/09/2019 13:52,13/08/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11198,9/09/2019 13:33,6/09/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15128,9/09/2019 13:26,6/09/2019 22:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16088,9/09/2019 13:23,6/09/2019 22:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-15102,9/09/2019 13:21,6/09/2019 17:15,7.5,287, Improper Authentication,nan
CVE-2019-16059,9/09/2019 2:17,6/09/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-16060,9/09/2019 2:13,6/09/2019 19:15,5.0,255, Credentials Management,nan
CVE-2019-15237,8/09/2019 5:15,20/08/2019 1:15,4.3,20, Improper Input Validation,nan
CVE-2019-15043,8/09/2019 5:15,3/09/2019 12:15,5.0,284, Improper Access Control,nan
CVE-2019-13207,8/09/2019 5:15,3/07/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18559,8/09/2019 5:15,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15784,7/09/2019 18:15,29/08/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-21007,7/09/2019 17:15,29/08/2019 12:15,7.5,284, Improper Access Control,nan
CVE-2019-15026,7/09/2019 12:15,30/08/2019 15:15,5.0,125, Out-of-bounds Read,nan
CVE-2018-17586,7/09/2019 5:15,15/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17585,7/09/2019 5:15,15/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17584,7/09/2019 5:15,15/04/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17583,7/09/2019 5:15,15/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18499,7/09/2019 5:15,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13917,7/09/2019 2:15,25/07/2019 20:15,10.0,19, Data Processing Errors,nan
CVE-2017-1000119,7/09/2019 0:15,5/10/2017 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11507,6/09/2019 21:15,8/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15058,6/09/2019 20:15,14/08/2019 21:15,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15952,6/09/2019 19:15,5/09/2019 19:16,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000127,6/09/2019 19:01,13/03/2018 21:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-13953,6/09/2019 18:59,6/09/2019 16:15,8.3,287, Improper Authentication,nan
CVE-2018-1000086,6/09/2019 18:42,13/03/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13361,6/09/2019 18:39,5/09/2019 17:15,3.3,275, Permission Issues,nan
CVE-2019-14222,6/09/2019 18:32,5/09/2019 22:15,7.5,320, Key Management Errors,nan
CVE-2019-14224,6/09/2019 18:28,5/09/2019 22:15,9.0,20, Improper Input Validation,nan
CVE-2019-2115,6/09/2019 18:25,5/09/2019 22:15,7.2,415, Double Free,nan
CVE-2019-15939,6/09/2019 18:23,5/09/2019 16:15,5.0,369, Divide By Zero,nan
CVE-2019-2123,6/09/2019 18:22,5/09/2019 22:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-6251,6/09/2019 18:15,14/01/2019 8:29,5.8,20, Improper Input Validation,nan
CVE-2019-2179,6/09/2019 18:15,5/09/2019 22:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-14970,6/09/2019 18:15,29/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14778,6/09/2019 18:15,29/08/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-14777,6/09/2019 18:15,29/08/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-14776,6/09/2019 18:15,29/08/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-14535,6/09/2019 18:15,29/08/2019 18:15,6.8,369, Divide By Zero,nan
CVE-2019-14534,6/09/2019 18:15,29/08/2019 19:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-14533,6/09/2019 18:15,29/08/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-14498,6/09/2019 18:15,29/08/2019 18:15,6.8,369, Divide By Zero,nan
CVE-2019-14438,6/09/2019 18:15,29/08/2019 18:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-14437,6/09/2019 18:15,29/08/2019 18:15,6.8,416, Use After Free,nan
CVE-2018-6913,6/09/2019 18:15,17/04/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6797,6/09/2019 18:15,17/04/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18314,6/09/2019 18:15,7/12/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18313,6/09/2019 18:15,7/12/2018 21:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-18312,6/09/2019 18:15,5/12/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15029,6/09/2019 18:12,5/09/2019 21:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-2103,6/09/2019 18:04,5/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2018-11569,6/09/2019 18:03,5/09/2019 16:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-11380,6/09/2019 17:55,5/09/2019 21:15,5.0,284, Improper Access Control,nan
CVE-2019-13020,6/09/2019 17:54,26/08/2019 18:15,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-12223,6/09/2019 17:35,5/09/2019 15:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10753,6/09/2019 17:20,5/09/2019 20:15,4.3,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2019-15942,6/09/2019 17:11,5/09/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15867,6/09/2019 16:59,3/09/2019 12:15,6.5,798, Use of Hard-coded Credentials,nan
CVE-2019-14339,6/09/2019 16:53,5/09/2019 20:15,4.3,200, Information Exposure,nan
CVE-2019-15544,6/09/2019 16:46,26/08/2019 18:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-2108,6/09/2019 16:32,5/09/2019 22:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2124,6/09/2019 16:30,5/09/2019 22:15,2.1,200, Information Exposure,nan
CVE-2019-2174,6/09/2019 16:29,5/09/2019 22:15,7.2,416, Use After Free,nan
CVE-2019-2176,6/09/2019 16:20,5/09/2019 22:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2175,6/09/2019 16:20,5/09/2019 22:15,4.4,275, Permission Issues,nan
CVE-2019-2177,6/09/2019 16:09,5/09/2019 22:15,6.8,275, Permission Issues,nan
CVE-2019-2178,6/09/2019 16:08,5/09/2019 22:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-2180,6/09/2019 16:05,5/09/2019 22:15,2.1,20, Improper Input Validation,nan
CVE-2019-9254,6/09/2019 15:52,5/09/2019 22:15,7.2,20, Improper Input Validation,nan
CVE-2019-13190,6/09/2019 15:38,5/09/2019 17:15,5.0,287, Improper Authentication,nan
CVE-2019-15949,6/09/2019 15:24,5/09/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15846,6/09/2019 15:15,6/09/2019 11:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14934,6/09/2019 15:15,11/08/2019 22:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-14267,6/09/2019 15:15,29/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11500,6/09/2019 15:15,29/08/2019 14:15,7.5,787, Out-of-bounds Write,nan
CVE-2016-10884,6/09/2019 15:15,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15953,6/09/2019 15:14,5/09/2019 19:16,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13349,6/09/2019 15:11,5/09/2019 18:15,4.0,255, Credentials Management,nan
CVE-2019-14278,6/09/2019 14:58,5/09/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-15955,6/09/2019 14:54,5/09/2019 19:16,4.0,407, Inefficient Algorithmic Complexity,nan
CVE-2019-5065,6/09/2019 14:43,5/09/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-5069,6/09/2019 14:16,5/09/2019 17:15,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-5070,6/09/2019 14:15,5/09/2019 17:15,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7999,6/09/2019 14:15,9/03/2018 19:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-13187,6/09/2019 13:56,5/09/2019 18:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12587,6/09/2019 13:36,4/09/2019 12:15,4.8,20, Improper Input Validation,nan
CVE-2019-13209,6/09/2019 13:24,4/09/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15323,6/09/2019 5:15,22/08/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8460,6/09/2019 0:15,26/08/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-15291,6/09/2019 0:15,20/08/2019 14:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15223,6/09/2019 0:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15222,6/09/2019 0:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15217,6/09/2019 0:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15213,6/09/2019 0:15,19/08/2019 22:15,4.9,416, Use After Free,nan
CVE-2019-15118,6/09/2019 0:15,16/08/2019 14:15,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2019-15117,6/09/2019 0:15,16/08/2019 14:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15099,6/09/2019 0:15,16/08/2019 2:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-10140,6/09/2019 0:15,15/08/2019 17:15,4.9,476, NULL Pointer Dereference,nan
CVE-2018-20976,6/09/2019 0:15,19/08/2019 2:15,4.6,416, Use After Free,nan
CVE-2018-20854,6/09/2019 0:15,26/07/2019 5:15,4.6,125, Out-of-bounds Read,nan
CVE-2019-15745,5/09/2019 21:23,29/08/2019 13:15,3.3,798, Use of Hard-coded Credentials,nan
CVE-2019-13520,5/09/2019 21:15,20/08/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14261,5/09/2019 20:37,3/09/2019 18:15,5.0,310, Cryptographic Issues,nan
CVE-2019-15630,5/09/2019 20:20,30/08/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13188,5/09/2019 20:09,5/09/2019 18:15,5.0,284, Improper Access Control,nan
CVE-2019-13191,5/09/2019 19:38,5/09/2019 18:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15937,5/09/2019 19:14,5/09/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15938,5/09/2019 19:13,5/09/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1020010,5/09/2019 19:01,29/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9697,5/09/2019 18:28,30/08/2019 9:15,4.0,200, Information Exposure,nan
CVE-2019-15232,5/09/2019 18:22,20/08/2019 0:15,7.5,416, Use After Free,nan
CVE-2019-15545,5/09/2019 18:20,26/08/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-12586,5/09/2019 18:19,4/09/2019 20:15,3.3,20, Improper Input Validation,nan
CVE-2019-10056,5/09/2019 18:07,28/08/2019 21:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10709,5/09/2019 17:46,4/09/2019 12:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-18371,5/09/2019 17:34,30/08/2019 9:15,4.0,200, Information Exposure,nan
CVE-2019-15828,5/09/2019 17:14,30/08/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15816,5/09/2019 17:12,30/08/2019 13:15,5.0,254, 7PK – Security Features,nan
CVE-2019-15818,5/09/2019 16:39,30/08/2019 13:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-15821,5/09/2019 16:18,30/08/2019 13:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-15839,5/09/2019 16:15,30/08/2019 17:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15769,5/09/2019 16:15,29/08/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20969,5/09/2019 16:15,16/08/2019 4:15,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-15553,5/09/2019 16:04,26/08/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-15552,5/09/2019 16:03,26/08/2019 15:15,7.5,416, Use After Free,nan
CVE-2009-2698,5/09/2019 15:45,27/08/2009 17:30,7.2,476, NULL Pointer Dereference,nan
CVE-2019-10051,5/09/2019 15:35,28/08/2019 20:15,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-18370,5/09/2019 15:29,30/08/2019 9:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5060,5/09/2019 15:15,31/07/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5059,5/09/2019 15:15,31/07/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5058,5/09/2019 15:15,31/07/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5057,5/09/2019 15:15,31/07/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13616,5/09/2019 15:15,16/07/2019 17:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-10055,5/09/2019 15:06,28/08/2019 21:15,7.8,20, Improper Input Validation,nan
CVE-2019-15872,5/09/2019 14:31,3/09/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15805,5/09/2019 14:31,29/08/2019 18:15,7.5,255, Credentials Management,nan
CVE-2019-15866,5/09/2019 14:27,3/09/2019 12:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15873,5/09/2019 14:20,3/09/2019 13:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13405,5/09/2019 14:18,29/08/2019 1:15,10.0,284, Improper Access Control,nan
CVE-2019-14439,5/09/2019 14:15,30/07/2019 11:15,5.0,200, Information Exposure,nan
CVE-2019-12814,5/09/2019 14:15,19/06/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-12384,5/09/2019 14:15,24/06/2019 16:15,4.3,502, Deserialization of Untrusted Data,nan
CVE-2019-15819,5/09/2019 14:07,30/08/2019 13:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13976,5/09/2019 13:34,4/09/2019 16:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13975,5/09/2019 12:54,4/09/2019 16:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-6646,5/09/2019 2:50,4/09/2019 18:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-15824,5/09/2019 2:40,30/08/2019 13:15,7.5,254, 7PK – Security Features,nan
CVE-2019-14319,5/09/2019 2:31,4/09/2019 20:15,3.3,200, Information Exposure,nan
CVE-2019-14470,5/09/2019 2:16,4/09/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14246,5/09/2019 2:15,21/08/2019 19:15,4.0,255, Credentials Management,nan
CVE-2019-14245,5/09/2019 2:15,21/08/2019 19:15,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13599,5/09/2019 2:15,21/08/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-5747,4/09/2019 23:15,9/01/2019 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-20679,4/09/2019 23:15,9/01/2019 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-1000366,4/09/2019 23:15,19/06/2017 16:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15823,4/09/2019 21:38,30/08/2019 13:15,7.5,254, 7PK – Security Features,nan
CVE-2019-15871,4/09/2019 21:23,3/09/2019 13:15,4.0,275, Permission Issues,nan
CVE-2019-15820,4/09/2019 21:11,30/08/2019 13:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-15860,4/09/2019 20:56,3/09/2019 7:15,4.3,20, Improper Input Validation,nan
CVE-2019-12753,4/09/2019 20:31,30/08/2019 9:15,4.0,200, Information Exposure,nan
CVE-2018-20834,4/09/2019 20:15,30/04/2019 19:29,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-15825,4/09/2019 20:08,30/08/2019 13:15,7.5,254, 7PK – Security Features,nan
CVE-2019-15863,4/09/2019 20:02,3/09/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2019-10052,4/09/2019 19:59,28/08/2019 20:15,5.0,707, Improper Enforcement of Message or Data Structure,nan
CVE-2019-15714,4/09/2019 19:22,28/08/2019 12:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10054,4/09/2019 19:21,28/08/2019 21:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6113,4/09/2019 19:16,30/08/2019 9:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15826,4/09/2019 18:39,30/08/2019 13:15,7.5,254, 7PK – Security Features,nan
CVE-2019-3394,4/09/2019 18:25,29/08/2019 15:15,4.0,255, Credentials Management,nan
CVE-2019-15642,4/09/2019 18:09,26/08/2019 18:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15813,4/09/2019 18:00,4/09/2019 14:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15814,4/09/2019 17:49,4/09/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15543,4/09/2019 17:47,26/08/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13608,4/09/2019 17:24,29/08/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-13267,4/09/2019 17:13,27/08/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2015-9344,4/09/2019 17:10,27/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20977,4/09/2019 17:02,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15109,4/09/2019 16:58,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10892,4/09/2019 16:52,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15771,4/09/2019 16:48,29/08/2019 13:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-15055,4/09/2019 16:47,26/08/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2019-15889,4/09/2019 16:15,3/09/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15787,4/09/2019 15:49,29/08/2019 12:15,7.8,190, Integer Overflow or Wraparound,nan
CVE-2019-15898,4/09/2019 15:27,3/09/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15776,4/09/2019 15:24,29/08/2019 12:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-15773,4/09/2019 15:12,29/08/2019 12:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-15772,4/09/2019 14:59,29/08/2019 12:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-9369,4/09/2019 14:52,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15497,4/09/2019 14:50,26/08/2019 21:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-15835,4/09/2019 14:30,30/08/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13273,4/09/2019 14:29,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10724,4/09/2019 14:26,29/08/2019 0:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-15716,4/09/2019 14:19,28/08/2019 15:15,2.1,275, Permission Issues,nan
CVE-2019-15836,4/09/2019 14:10,30/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15700,4/09/2019 14:05,27/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15770,4/09/2019 13:57,29/08/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5530,4/09/2019 13:52,29/08/2019 1:15,6.8,20, Improper Input Validation,nan
CVE-2015-9375,4/09/2019 13:47,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14943,4/09/2019 13:44,29/08/2019 12:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-15294,4/09/2019 13:32,28/08/2019 12:15,5.0,255, Credentials Management,nan
CVE-2019-15753,4/09/2019 13:25,28/08/2019 21:15,6.4,399, Resource Management Errors,nan
CVE-2019-15074,4/09/2019 13:24,21/08/2019 19:15,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15752,4/09/2019 13:16,28/08/2019 21:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-11061,4/09/2019 13:15,29/08/2019 1:15,4.8,284, Improper Access Control,nan
CVE-2019-15834,4/09/2019 12:16,30/08/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10357,4/09/2019 10:15,31/07/2019 13:15,4.0,275, Permission Issues,nan
CVE-2019-10356,4/09/2019 10:15,31/07/2019 13:15,6.5,254, 7PK – Security Features,nan
CVE-2019-10355,4/09/2019 10:15,31/07/2019 13:15,6.5,254, 7PK – Security Features,nan
CVE-2019-15538,4/09/2019 5:15,25/08/2019 16:15,7.8,399, Resource Management Errors,nan
CVE-2019-15505,4/09/2019 5:15,23/08/2019 6:15,10.0,125, Out-of-bounds Read,nan
CVE-2019-15504,4/09/2019 5:15,23/08/2019 6:15,10.0,415, Double Free,nan
CVE-2019-15775,4/09/2019 1:25,29/08/2019 12:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-15774,4/09/2019 1:25,29/08/2019 12:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-13266,4/09/2019 1:00,27/08/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2019-13268,4/09/2019 0:46,27/08/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2019-13269,4/09/2019 0:43,27/08/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2019-13270,4/09/2019 0:37,27/08/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2019-15806,3/09/2019 23:38,29/08/2019 18:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-14282,3/09/2019 23:15,26/07/2019 5:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15767,3/09/2019 21:51,29/08/2019 3:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15788,3/09/2019 21:36,29/08/2019 13:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-15569,3/09/2019 21:16,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15779,3/09/2019 21:10,29/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15786,3/09/2019 20:37,29/08/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9373,3/09/2019 20:35,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9366,3/09/2019 20:32,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10931,3/09/2019 20:31,26/08/2019 12:15,6.8,295, Improper Certificate Validation,nan
CVE-2019-15841,3/09/2019 20:25,30/08/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9370,3/09/2019 20:24,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15868,3/09/2019 20:21,3/09/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15783,3/09/2019 20:19,29/08/2019 12:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9371,3/09/2019 20:19,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9372,3/09/2019 20:09,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15822,3/09/2019 19:55,30/08/2019 13:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15759,3/09/2019 19:53,29/08/2019 2:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-15758,3/09/2019 19:48,29/08/2019 2:15,4.3,20, Improper Input Validation,nan
CVE-2019-15837,3/09/2019 19:43,30/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15831,3/09/2019 19:40,30/08/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15832,3/09/2019 19:31,30/08/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15777,3/09/2019 19:28,29/08/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9374,3/09/2019 19:27,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15829,3/09/2019 19:22,30/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14281,3/09/2019 19:15,26/07/2019 5:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-9380,3/09/2019 19:00,30/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15827,3/09/2019 18:55,30/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15502,3/09/2019 18:53,29/08/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-13271,3/09/2019 18:52,27/08/2019 17:15,5.8,284, Improper Access Control,nan
CVE-2019-15541,3/09/2019 18:44,26/08/2019 12:15,5.0,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-15510,3/09/2019 18:38,30/08/2019 9:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12754,3/09/2019 18:37,30/08/2019 9:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9569,3/09/2019 18:34,26/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15511,3/09/2019 18:32,30/08/2019 9:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15513,3/09/2019 18:24,30/08/2019 9:15,5.0,284, Improper Access Control,nan
CVE-2019-13263,3/09/2019 18:21,27/08/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2019-15864,3/09/2019 18:19,3/09/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13264,3/09/2019 18:19,27/08/2019 18:15,5.8,284, Improper Access Control,nan
CVE-2018-15512,3/09/2019 18:16,30/08/2019 9:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4253,3/09/2019 18:15,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1636,3/09/2019 18:15,20/08/2019 19:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1635,3/09/2019 18:15,20/08/2019 19:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1634,3/09/2019 18:15,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1633,3/09/2019 18:15,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1632,3/09/2019 18:15,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1631,3/09/2019 18:15,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1630,3/09/2019 18:15,20/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11796,3/09/2019 18:15,9/10/2018 22:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-15870,3/09/2019 18:09,3/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13265,3/09/2019 17:55,27/08/2019 18:15,5.8,284, Improper Access Control,nan
CVE-2019-15869,3/09/2019 17:54,3/09/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15720,3/09/2019 17:53,28/08/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-9367,3/09/2019 17:39,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9368,3/09/2019 17:38,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15865,3/09/2019 17:37,3/09/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5590,3/09/2019 17:36,28/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15555,3/09/2019 17:24,26/08/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15838,3/09/2019 17:20,30/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9358,3/09/2019 17:15,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14694,3/09/2019 17:12,28/08/2019 20:15,4.7,416, Use After Free,nan
CVE-2019-15817,3/09/2019 17:11,30/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15640,3/09/2019 16:59,26/08/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-15830,3/09/2019 16:44,30/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12532,3/09/2019 16:29,26/08/2019 18:15,4.6,284, Improper Access Control,nan
CVE-2019-15557,3/09/2019 16:22,26/08/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10059,3/09/2019 16:03,28/08/2019 22:15,5.0,254, 7PK – Security Features,nan
CVE-2019-13406,3/09/2019 15:51,29/08/2019 1:15,5.0,284, Improper Access Control,nan
CVE-2019-15542,3/09/2019 15:25,26/08/2019 18:15,5.0,399, Resource Management Errors,nan
CVE-2019-15549,3/09/2019 15:20,26/08/2019 17:15,5.0,399, Resource Management Errors,nan
CVE-2012-6442,3/09/2019 15:16,24/01/2013 21:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11364,3/09/2019 15:03,29/08/2019 21:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-15554,3/09/2019 15:02,26/08/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15551,3/09/2019 15:02,26/08/2019 15:15,7.5,415, Double Free,nan
CVE-2017-18587,3/09/2019 15:02,26/08/2019 13:15,5.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-11363,3/09/2019 14:58,29/08/2019 21:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9933,3/09/2019 14:53,28/08/2019 22:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9932,3/09/2019 14:44,28/08/2019 22:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15560,3/09/2019 14:42,26/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9931,3/09/2019 14:38,28/08/2019 22:15,7.8,20, Improper Input Validation,nan
CVE-2019-15571,3/09/2019 14:32,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9378,3/09/2019 14:31,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9355,3/09/2019 14:30,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-21000,3/09/2019 14:29,26/08/2019 15:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20999,3/09/2019 14:29,26/08/2019 15:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9379,3/09/2019 14:27,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9377,3/09/2019 14:26,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15572,3/09/2019 14:17,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15573,3/09/2019 14:12,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15574,3/09/2019 14:07,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15651,3/09/2019 13:36,26/08/2019 22:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-15304,3/09/2019 13:23,26/08/2019 13:15,6.4,255, Credentials Management,nan
CVE-2019-7364,3/09/2019 13:11,23/08/2019 20:15,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-15811,3/09/2019 13:10,29/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15842,3/09/2019 12:44,30/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15840,3/09/2019 12:33,30/08/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15778,3/09/2019 12:22,29/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17866,3/09/2019 5:15,9/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16967,3/09/2019 5:15,15/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16966,3/09/2019 5:15,15/04/2019 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1000021,3/09/2019 3:15,4/02/2019 21:29,5.0,284, Improper Access Control,nan
CVE-2019-9852,3/09/2019 0:15,15/08/2019 22:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9851,3/09/2019 0:15,15/08/2019 22:15,7.5,20, Improper Input Validation,nan
CVE-2019-9850,3/09/2019 0:15,15/08/2019 22:15,7.5,20, Improper Input Validation,nan
CVE-2019-3819,3/09/2019 0:15,25/01/2019 18:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2019-3701,3/09/2019 0:15,3/01/2019 16:29,4.9,787, Out-of-bounds Write,nan
CVE-2019-15292,3/09/2019 0:15,21/08/2019 6:15,10.0,416, Use After Free,nan
CVE-2019-15221,3/09/2019 0:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15220,3/09/2019 0:15,19/08/2019 22:15,4.9,416, Use After Free,nan
CVE-2019-15216,3/09/2019 0:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15215,3/09/2019 0:15,19/08/2019 22:15,4.9,416, Use After Free,nan
CVE-2019-15214,3/09/2019 0:15,19/08/2019 22:15,4.7,416, Use After Free,nan
CVE-2019-15212,3/09/2019 0:15,19/08/2019 22:15,4.9,415, Double Free,nan
CVE-2019-15211,3/09/2019 0:15,19/08/2019 22:15,4.9,416, Use After Free,nan
CVE-2019-15090,3/09/2019 0:15,16/08/2019 0:15,4.6,125, Out-of-bounds Read,nan
CVE-2019-14763,3/09/2019 0:15,7/08/2019 22:15,4.9,189, Numeric Errors,nan
CVE-2019-10086,3/09/2019 0:15,20/08/2019 21:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-19985,3/09/2019 0:15,21/03/2019 16:00,2.1,125, Out-of-bounds Read,nan
CVE-2019-15081,2/09/2019 21:15,15/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13235,2/09/2019 21:15,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13234,2/09/2019 21:15,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14280,2/09/2019 19:15,26/07/2019 4:15,5.0,200, Information Exposure,nan
CVE-2019-13237,2/09/2019 19:15,27/08/2019 12:15,4.0,200, Information Exposure,nan
CVE-2019-13236,2/09/2019 19:15,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10751,2/09/2019 18:15,23/08/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-14372,2/09/2019 11:15,28/07/2019 19:15,4.3,399, Resource Management Errors,nan
CVE-2018-5766,2/09/2019 11:15,18/01/2018 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11102,2/09/2019 11:15,15/05/2018 2:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9987,2/09/2019 11:15,28/06/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11772,2/09/2019 10:15,17/07/2019 21:15,7.5,787, Out-of-bounds Write,nan
CVE-2016-10872,2/09/2019 7:15,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10152,2/09/2019 0:15,30/07/2019 23:15,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10875,1/09/2019 21:15,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4089,1/09/2019 6:15,19/09/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8308,1/09/2019 0:15,12/02/2019 23:29,4.4,20, Improper Input Validation,nan
CVE-2019-15540,31/08/2019 21:15,25/08/2019 17:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11461,31/08/2019 17:15,22/04/2019 21:29,4.4,254, 7PK – Security Features,nan
CVE-2017-2920,31/08/2019 17:15,5/10/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15531,31/08/2019 0:15,23/08/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2011-5329,30/08/2019 20:27,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6717,30/08/2019 20:16,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9359,30/08/2019 20:14,28/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18593,30/08/2019 20:12,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9360,30/08/2019 20:12,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11658,30/08/2019 20:03,30/08/2019 9:15,4.0,200, Information Exposure,nan
CVE-2019-15641,30/08/2019 20:00,26/08/2019 18:15,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-15558,30/08/2019 19:48,26/08/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9356,30/08/2019 19:45,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14978,30/08/2019 19:42,29/08/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-15781,30/08/2019 19:35,29/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15701,30/08/2019 19:25,27/08/2019 18:15,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-15230,30/08/2019 19:15,28/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1582,30/08/2019 19:10,23/08/2019 18:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9364,30/08/2019 18:52,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5592,30/08/2019 18:44,23/08/2019 20:15,4.3,200, Information Exposure,nan
CVE-2019-15496,30/08/2019 18:44,28/08/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20991,30/08/2019 18:37,26/08/2019 15:15,7.5,415, Double Free,nan
CVE-2015-9362,30/08/2019 18:20,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1937,30/08/2019 18:15,21/08/2019 19:15,10.0,287, Improper Authentication,nan
CVE-2019-1936,30/08/2019 18:15,21/08/2019 19:15,9.0,20, Improper Input Validation,nan
CVE-2019-1935,30/08/2019 18:15,21/08/2019 19:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-9363,30/08/2019 18:05,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15513,30/08/2019 17:50,23/08/2019 7:15,7.8,20, Improper Input Validation,nan
CVE-2019-15514,30/08/2019 17:43,23/08/2019 13:15,5.0,200, Information Exposure,nan
CVE-2019-15533,30/08/2019 17:33,26/08/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13567,30/08/2019 17:15,12/07/2019 4:15,6.8,20, Improper Input Validation,nan
CVE-2018-5738,30/08/2019 17:15,16/01/2019 20:29,5.0,200, Information Exposure,nan
CVE-2017-3142,30/08/2019 17:15,16/01/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2015-9365,30/08/2019 17:09,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7363,30/08/2019 17:00,23/08/2019 20:15,6.8,416, Use After Free,nan
CVE-2019-15503,30/08/2019 16:46,26/08/2019 18:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1583,30/08/2019 16:28,23/08/2019 18:15,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-15649,30/08/2019 16:14,27/08/2019 12:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15325,30/08/2019 15:51,22/08/2019 20:15,5.0,254, 7PK – Security Features,nan
CVE-2019-15524,30/08/2019 15:49,26/08/2019 13:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15525,30/08/2019 15:39,23/08/2019 16:15,6.8,295, Improper Certificate Validation,nan
CVE-2015-9361,30/08/2019 15:28,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12889,30/08/2019 15:26,20/08/2019 12:15,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-1010124,30/08/2019 15:15,23/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15657,30/08/2019 15:07,26/08/2019 23:15,7.5,20, Improper Input Validation,nan
CVE-2019-15658,30/08/2019 14:45,26/08/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11589,30/08/2019 14:05,23/08/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-14258,30/08/2019 13:54,21/08/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-18588,30/08/2019 13:54,26/08/2019 18:15,5.0,295, Improper Certificate Validation,nan
CVE-2019-14999,30/08/2019 13:51,23/08/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15519,30/08/2019 13:40,23/08/2019 15:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10745,30/08/2019 13:30,20/08/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2017-18589,30/08/2019 13:21,26/08/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-5039,30/08/2019 13:18,20/08/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20989,30/08/2019 13:18,26/08/2019 18:15,5.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-15045,30/08/2019 12:59,21/08/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-1580,30/08/2019 12:58,23/08/2019 18:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14686,30/08/2019 12:58,21/08/2019 20:15,6.8,426, Untrusted Search Path,nan
CVE-2018-20995,30/08/2019 12:58,26/08/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15316,30/08/2019 12:57,21/08/2019 20:15,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-15315,30/08/2019 12:57,21/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-11029,30/08/2019 12:55,22/08/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11030,30/08/2019 12:54,22/08/2019 15:15,10.0,502, Deserialization of Untrusted Data,nan
CVE-2019-9153,30/08/2019 12:52,22/08/2019 16:15,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-11031,30/08/2019 12:52,22/08/2019 15:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9155,30/08/2019 12:51,22/08/2019 16:15,4.3,310, Cryptographic Issues,nan
CVE-2019-9154,30/08/2019 12:51,22/08/2019 16:15,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-12385,30/08/2019 12:50,22/08/2019 19:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20996,30/08/2019 12:50,26/08/2019 18:15,7.5,415, Double Free,nan
CVE-2018-20997,30/08/2019 12:41,26/08/2019 18:15,7.5,416, Use After Free,nan
CVE-2019-11924,30/08/2019 12:35,20/08/2019 20:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-20998,30/08/2019 12:28,26/08/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6143,30/08/2019 12:22,20/08/2019 21:15,6.4,287, Improper Authentication,nan
CVE-2019-11162,30/08/2019 12:08,19/08/2019 17:15,4.6,284, Improper Access Control,nan
CVE-2019-5035,30/08/2019 12:07,20/08/2019 22:15,6.8,287, Improper Authentication,nan
CVE-2019-15293,30/08/2019 12:04,21/08/2019 6:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9013,30/08/2019 11:42,15/08/2019 17:15,5.8,255, Credentials Management,nan
CVE-2019-9012,30/08/2019 11:42,15/08/2019 18:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9010,30/08/2019 11:42,15/08/2019 18:15,7.5,284, Improper Access Control,nan
CVE-2019-15151,30/08/2019 11:38,18/08/2019 21:15,7.5,415, Double Free,nan
CVE-2019-15149,30/08/2019 11:38,18/08/2019 20:15,6.8,254, 7PK – Security Features,nan
CVE-2019-15130,30/08/2019 11:36,18/08/2019 17:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15129,30/08/2019 11:35,18/08/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-14774,30/08/2019 11:15,8/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15145,30/08/2019 9:15,18/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-15144,30/08/2019 9:15,18/08/2019 19:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-15143,30/08/2019 9:15,18/08/2019 19:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-15142,30/08/2019 9:15,18/08/2019 19:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010065,30/08/2019 9:15,18/07/2019 17:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-10081,30/08/2019 9:15,15/08/2019 22:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10892,30/08/2019 9:15,6/07/2018 16:29,5.0,417, Channel and Path Errors,nan
CVE-2019-13564,29/08/2019 21:15,11/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13381,29/08/2019 21:15,4/06/2019 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9376,29/08/2019 20:31,28/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15515,29/08/2019 20:20,26/08/2019 18:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15713,29/08/2019 20:04,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10933,29/08/2019 20:02,26/08/2019 13:15,4.3,254, 7PK – Security Features,nan
CVE-2019-15698,29/08/2019 20:01,27/08/2019 17:15,4.0,200, Information Exposure,nan
CVE-2018-20994,29/08/2019 19:42,26/08/2019 13:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14671,29/08/2019 19:29,15/08/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2019-5034,29/08/2019 19:22,20/08/2019 22:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14751,29/08/2019 18:58,22/08/2019 16:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11163,29/08/2019 18:34,19/08/2019 17:15,4.6,284, Improper Access Control,nan
CVE-2019-15559,29/08/2019 18:23,26/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15224,29/08/2019 18:20,19/08/2019 23:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-16259,29/08/2019 18:15,12/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16258,29/08/2019 18:15,12/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16257,29/08/2019 18:15,12/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16256,29/08/2019 18:15,12/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16255,29/08/2019 18:15,12/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8447,29/08/2019 17:59,23/08/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15563,29/08/2019 17:52,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15570,29/08/2019 17:43,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9357,29/08/2019 17:31,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13348,29/08/2019 17:25,28/08/2019 16:15,4.0,255, Credentials Management,nan
CVE-2019-13189,29/08/2019 17:21,28/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9930,29/08/2019 17:18,28/08/2019 22:15,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-15092,29/08/2019 17:16,23/08/2019 21:15,6.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9150,29/08/2019 17:15,9/07/2019 21:15,5.0,320, Key Management Errors,nan
CVE-2019-9149,29/08/2019 17:15,9/07/2019 21:15,6.4,320, Key Management Errors,nan
CVE-2019-9148,29/08/2019 17:15,9/07/2019 21:15,4.3,320, Key Management Errors,nan
CVE-2019-9147,29/08/2019 17:15,9/07/2019 21:15,4.3,20, Improper Input Validation,nan
CVE-2018-16254,29/08/2019 17:15,12/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10057,29/08/2019 17:14,28/08/2019 22:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12746,29/08/2019 17:09,21/08/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-15536,29/08/2019 16:59,23/08/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15546,29/08/2019 16:45,26/08/2019 18:15,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2015-9348,29/08/2019 16:31,27/08/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-7362,29/08/2019 16:17,23/08/2019 20:15,6.8,426, Untrusted Search Path,nan
CVE-2019-15547,29/08/2019 16:17,26/08/2019 18:15,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2018-14668,29/08/2019 16:17,15/08/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15650,29/08/2019 16:08,27/08/2019 13:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18592,29/08/2019 15:54,27/08/2019 13:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-15548,29/08/2019 15:46,26/08/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3006,29/08/2019 15:42,19/06/2012 18:55,7.1,310, Cryptographic Issues,nan
CVE-2019-10058,29/08/2019 15:41,28/08/2019 16:15,6.4,284, Improper Access Control,nan
CVE-2019-15648,29/08/2019 15:26,27/08/2019 12:15,5.5,284, Improper Access Control,nan
CVE-2019-9934,29/08/2019 15:24,28/08/2019 16:15,5.0,284, Improper Access Control,nan
CVE-2019-9935,29/08/2019 15:22,28/08/2019 16:15,5.0,284, Improper Access Control,nan
CVE-2019-15132,29/08/2019 14:52,17/08/2019 18:15,5.0,200, Information Exposure,nan
CVE-2017-18591,29/08/2019 14:37,27/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15133,29/08/2019 14:28,17/08/2019 18:15,4.3,369, Divide By Zero,nan
CVE-2019-15135,29/08/2019 13:38,18/08/2019 16:15,5.0,200, Information Exposure,nan
CVE-2015-9343,29/08/2019 13:38,27/08/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18668,29/08/2019 13:36,26/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15136,29/08/2019 13:27,18/08/2019 16:15,5.0,275, Permission Issues,nan
CVE-2019-15647,29/08/2019 13:24,27/08/2019 12:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15137,29/08/2019 13:22,18/08/2019 16:15,5.0,284, Improper Access Control,nan
CVE-2018-18572,29/08/2019 13:22,22/08/2019 15:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9354,29/08/2019 12:58,28/08/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18579,29/08/2019 12:57,22/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10928,29/08/2019 12:57,22/08/2019 20:15,5.0,798, Use of Hard-coded Credentials,nan
CVE-2016-10934,29/08/2019 12:55,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9340,29/08/2019 12:55,22/08/2019 20:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9339,29/08/2019 12:55,22/08/2019 20:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9338,29/08/2019 12:55,22/08/2019 20:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9334,29/08/2019 12:54,22/08/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10386,29/08/2019 12:54,22/08/2019 20:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-10382,29/08/2019 12:54,22/08/2019 20:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15331,29/08/2019 12:53,22/08/2019 19:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15330,29/08/2019 12:53,22/08/2019 19:15,5.0,200, Information Exposure,nan
CVE-2018-20988,29/08/2019 12:53,22/08/2019 19:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18586,29/08/2019 12:53,22/08/2019 19:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7483,29/08/2019 12:53,22/08/2019 20:15,7.5,20, Improper Input Validation,nan
CVE-2016-10930,29/08/2019 12:50,22/08/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2015-9341,29/08/2019 12:49,22/08/2019 19:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-10394,29/08/2019 12:47,22/08/2019 19:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-10391,29/08/2019 12:46,22/08/2019 19:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-10390,29/08/2019 12:46,22/08/2019 19:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-10389,29/08/2019 12:43,22/08/2019 19:15,7.5,287, Improper Authentication,nan
CVE-2014-10388,29/08/2019 12:42,22/08/2019 19:15,5.0,200, Information Exposure,nan
CVE-2018-1129,29/08/2019 3:15,10/07/2018 14:29,3.3,287, Improper Authentication,nan
CVE-2019-6956,28/08/2019 22:15,25/01/2019 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-20360,28/08/2019 22:15,22/12/2018 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20199,28/08/2019 22:15,18/12/2018 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20196,28/08/2019 22:15,18/12/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19502,28/08/2019 22:15,23/11/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-21002,28/08/2019 22:11,27/08/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6719,28/08/2019 22:02,28/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6718,28/08/2019 22:02,28/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14062,28/08/2019 21:22,15/08/2019 21:15,9.4,310, Cryptographic Issues,nan
CVE-2019-14743,28/08/2019 21:15,7/08/2019 15:15,7.2,20, Improper Input Validation,nan
CVE-2019-11521,28/08/2019 20:45,20/08/2019 13:15,5.8,20, Improper Input Validation,nan
CVE-2019-15568,28/08/2019 20:18,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18573,28/08/2019 20:15,22/08/2019 15:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-10395,28/08/2019 20:12,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9342,28/08/2019 20:10,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15659,28/08/2019 20:08,27/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14314,28/08/2019 20:04,27/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9349,28/08/2019 19:59,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15660,28/08/2019 19:56,27/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9351,28/08/2019 19:53,27/08/2019 13:15,7.5,20, Improper Input Validation,nan
CVE-2015-9350,28/08/2019 19:46,27/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10936,28/08/2019 19:40,27/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9352,28/08/2019 19:39,27/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15646,28/08/2019 19:38,27/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-21004,28/08/2019 19:37,27/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15537,28/08/2019 19:35,23/08/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9347,28/08/2019 19:32,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9346,28/08/2019 19:14,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11187,28/08/2019 19:10,15/08/2019 17:15,7.5,284, Improper Access Control,nan
CVE-2019-15565,28/08/2019 19:09,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15314,28/08/2019 19:05,22/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12854,28/08/2019 18:56,15/08/2019 17:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14422,28/08/2019 18:37,15/08/2019 17:15,6.8,254, 7PK – Security Features,nan
CVE-2019-15501,28/08/2019 18:31,26/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15567,28/08/2019 18:18,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13274,28/08/2019 18:09,27/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13485,28/08/2019 18:08,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13484,28/08/2019 18:08,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13455,28/08/2019 18:08,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13452,28/08/2019 18:08,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13451,28/08/2019 18:08,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13486,28/08/2019 18:07,27/08/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10935,28/08/2019 17:57,27/08/2019 12:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-9345,28/08/2019 17:57,27/08/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2018-21006,28/08/2019 17:56,27/08/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-21005,28/08/2019 17:56,27/08/2019 12:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18590,28/08/2019 17:15,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14670,28/08/2019 17:14,15/08/2019 18:15,7.5,285, Improper Authorization,nan
CVE-2016-10932,28/08/2019 17:14,26/08/2019 13:15,5.8,254, 7PK – Security Features,nan
CVE-2019-14685,28/08/2019 17:06,21/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12791,28/08/2019 16:50,15/08/2019 21:15,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1581,28/08/2019 16:42,23/08/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2019-15645,28/08/2019 16:40,27/08/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-21003,28/08/2019 16:39,27/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14669,28/08/2019 16:37,15/08/2019 18:15,5.0,200, Information Exposure,nan
CVE-2018-14008,28/08/2019 16:14,15/08/2019 17:15,3.3,287, Improper Authentication,nan
CVE-2019-15644,28/08/2019 16:02,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20990,28/08/2019 15:58,26/08/2019 13:15,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-15295,28/08/2019 15:54,21/08/2019 18:15,9.3,426, Untrusted Search Path,nan
CVE-2018-20993,28/08/2019 15:35,26/08/2019 13:15,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-20992,28/08/2019 15:30,26/08/2019 13:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3145,28/08/2019 15:14,22/04/2016 0:59,2.1,200, Information Exposure,nan
CVE-2019-12792,28/08/2019 14:53,15/08/2019 21:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12386,28/08/2019 14:35,22/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-21001,28/08/2019 14:31,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15521,28/08/2019 14:29,26/08/2019 13:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-15556,28/08/2019 14:24,26/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7969,28/08/2019 14:23,26/08/2019 18:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7970,28/08/2019 14:22,26/08/2019 18:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-15561,28/08/2019 14:22,26/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7971,28/08/2019 14:18,26/08/2019 18:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7972,28/08/2019 14:14,26/08/2019 18:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-15479,28/08/2019 14:14,26/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7973,28/08/2019 14:12,26/08/2019 18:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7974,28/08/2019 14:08,26/08/2019 18:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-15227,28/08/2019 14:07,20/08/2019 5:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13176,28/08/2019 13:57,8/08/2019 14:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-13030,28/08/2019 13:56,14/08/2019 21:15,6.4,284, Improper Access Control,nan
CVE-2019-7977,28/08/2019 13:49,26/08/2019 18:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-7975,28/08/2019 13:48,26/08/2019 19:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-5408,28/08/2019 13:47,9/08/2019 18:15,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-7978,28/08/2019 13:46,26/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15062,28/08/2019 13:24,14/08/2019 23:15,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7979,28/08/2019 13:21,26/08/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-7980,28/08/2019 13:15,26/08/2019 19:15,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-14271,28/08/2019 13:15,29/07/2019 18:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-14234,28/08/2019 13:15,9/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0333,28/08/2019 13:11,14/08/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-15643,28/08/2019 12:49,27/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9506,28/08/2019 11:15,14/08/2019 17:15,4.8,310, Cryptographic Issues,nan
CVE-2017-18540,28/08/2019 9:15,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6944,28/08/2019 5:15,16/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6943,28/08/2019 5:15,16/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15106,27/08/2019 22:15,16/08/2019 3:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-10189,27/08/2019 22:15,31/07/2019 22:15,4.0,284, Improper Access Control,nan
CVE-2019-10188,27/08/2019 22:15,31/07/2019 22:15,4.0,284, Improper Access Control,nan
CVE-2019-10187,27/08/2019 22:15,31/07/2019 22:15,4.0,284, Improper Access Control,nan
CVE-2019-10186,27/08/2019 22:15,31/07/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7981,27/08/2019 21:01,26/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-7982,27/08/2019 20:59,26/08/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-15516,27/08/2019 20:45,23/08/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7983,27/08/2019 20:39,26/08/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-15566,27/08/2019 20:37,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7984,27/08/2019 20:35,26/08/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-7985,27/08/2019 20:33,26/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15564,27/08/2019 20:25,26/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15562,27/08/2019 19:52,26/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7986,27/08/2019 19:50,26/08/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-7987,27/08/2019 19:45,26/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-7988,27/08/2019 19:35,26/08/2019 19:15,6.8,787, Out-of-bounds Write,nan
CVE-2018-14672,27/08/2019 19:35,15/08/2019 18:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7989,27/08/2019 19:34,26/08/2019 19:15,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15517,27/08/2019 19:27,23/08/2019 15:15,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7991,27/08/2019 19:26,26/08/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-15498,27/08/2019 19:19,23/08/2019 4:15,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12357,27/08/2019 19:11,15/08/2019 17:15,4.0,275, Permission Issues,nan
CVE-2019-7994,27/08/2019 19:03,26/08/2019 19:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-7995,27/08/2019 19:02,26/08/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-9585,27/08/2019 18:59,14/08/2019 21:15,7.5,284, Improper Access Control,nan
CVE-2019-7996,27/08/2019 18:55,26/08/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-7990,27/08/2019 18:54,26/08/2019 19:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9584,27/08/2019 18:53,14/08/2019 21:15,7.5,284, Improper Access Control,nan
CVE-2019-5036,27/08/2019 18:33,20/08/2019 22:15,7.8,284, Improper Access Control,nan
CVE-2019-5280,27/08/2019 18:21,13/08/2019 21:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-9583,27/08/2019 18:20,14/08/2019 20:15,6.4,400, Uncontrolled Resource Consumption,nan
CVE-2014-10375,27/08/2019 18:16,14/08/2019 5:15,5.0,189, Numeric Errors,nan
CVE-2019-9582,27/08/2019 18:02,14/08/2019 20:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-14935,27/08/2019 17:49,12/08/2019 0:15,4.6,275, Permission Issues,nan
CVE-2019-15027,27/08/2019 17:48,14/08/2019 13:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8000,27/08/2019 17:42,26/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-7999,27/08/2019 17:42,26/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14526,27/08/2019 17:40,14/08/2019 21:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14527,27/08/2019 17:35,14/08/2019 21:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-7993,27/08/2019 17:28,26/08/2019 19:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7992,27/08/2019 17:28,26/08/2019 19:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-7968,27/08/2019 17:27,26/08/2019 18:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7976,27/08/2019 17:25,26/08/2019 18:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-7997,27/08/2019 17:24,26/08/2019 19:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-3974,27/08/2019 17:16,15/08/2019 19:15,8.5,284, Improper Access Control,nan
CVE-2019-13509,27/08/2019 17:15,18/07/2019 16:15,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-15028,27/08/2019 17:06,14/08/2019 4:15,5.0,284, Improper Access Control,nan
CVE-2018-19386,27/08/2019 16:59,14/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14257,27/08/2019 16:54,21/08/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-15084,27/08/2019 16:39,16/08/2019 0:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6858,27/08/2019 16:26,31/12/2016 7:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11013,27/08/2019 16:19,22/08/2019 15:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0887,27/08/2019 16:19,12/04/2016 23:59,2.6,200, Information Exposure,nan
CVE-2014-8871,27/08/2019 16:12,28/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8001,27/08/2019 16:03,26/08/2019 19:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-7998,27/08/2019 16:03,26/08/2019 19:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-13477,27/08/2019 15:55,21/08/2019 19:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11585,27/08/2019 15:52,23/08/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-10687,27/08/2019 15:51,21/08/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11587,27/08/2019 15:47,23/08/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11586,27/08/2019 15:47,23/08/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11588,27/08/2019 15:46,23/08/2019 14:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15507,27/08/2019 15:33,23/08/2019 6:15,3.5,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-15091,27/08/2019 15:29,16/08/2019 13:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-3967,27/08/2019 15:03,20/08/2019 18:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3968,27/08/2019 14:57,20/08/2019 19:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15508,27/08/2019 14:55,23/08/2019 6:15,3.5,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-14221,27/08/2019 14:50,8/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15520,27/08/2019 14:44,23/08/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13482,27/08/2019 14:30,10/07/2019 20:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11148,27/08/2019 14:30,19/08/2019 17:15,4.6,275, Permission Issues,nan
CVE-2019-14923,27/08/2019 14:27,16/08/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15526,27/08/2019 14:21,23/08/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15527,27/08/2019 14:17,23/08/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15528,27/08/2019 14:16,23/08/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7736,27/08/2019 14:15,11/02/2019 17:29,7.5,287, Improper Authentication,nan
CVE-2019-15529,27/08/2019 14:09,23/08/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-15530,27/08/2019 14:06,23/08/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-14687,27/08/2019 14:00,20/08/2019 14:15,6.8,426, Untrusted Search Path,nan
CVE-2019-14684,27/08/2019 14:00,20/08/2019 14:15,9.3,426, Untrusted Search Path,nan
CVE-2019-15225,27/08/2019 13:55,19/08/2019 23:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-14937,27/08/2019 13:48,17/08/2019 17:15,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11143,27/08/2019 13:47,19/08/2019 17:15,4.6,275, Permission Issues,nan
CVE-2019-11140,27/08/2019 13:37,19/08/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2019-0173,27/08/2019 13:32,19/08/2019 17:15,5.8,287, Improper Authentication,nan
CVE-2019-15518,27/08/2019 13:14,23/08/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13476,27/08/2019 12:56,21/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20986,27/08/2019 12:15,22/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20961,27/08/2019 9:15,7/08/2019 15:15,10.0,415, Double Free,nan
CVE-2014-10377,27/08/2019 9:15,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5038,26/08/2019 21:17,20/08/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15488,26/08/2019 21:02,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13069,26/08/2019 20:52,17/08/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14430,26/08/2019 20:42,20/08/2019 14:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15476,26/08/2019 20:38,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7964,26/08/2019 20:31,16/08/2019 17:15,10.0,287, Improper Authentication,nan
CVE-2019-15482,26/08/2019 20:28,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3966,26/08/2019 20:20,20/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15485,26/08/2019 20:17,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15483,26/08/2019 20:13,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15484,26/08/2019 20:11,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11806,26/08/2019 19:45,20/08/2019 13:15,2.1,275, Permission Issues,nan
CVE-2019-11584,26/08/2019 19:43,23/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15233,26/08/2019 19:41,20/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15104,26/08/2019 19:34,16/08/2019 3:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12101,26/08/2019 19:21,15/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0331,26/08/2019 19:11,14/08/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-14427,26/08/2019 19:05,14/08/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15494,26/08/2019 19:00,23/08/2019 13:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-15493,26/08/2019 18:57,23/08/2019 13:15,6.4,284, Improper Access Control,nan
CVE-2019-15490,26/08/2019 18:57,23/08/2019 13:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15491,26/08/2019 18:56,23/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15487,26/08/2019 18:54,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15492,26/08/2019 18:53,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15535,26/08/2019 18:52,23/08/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6695,26/08/2019 18:49,23/08/2019 21:15,10.0,20, Improper Input Validation,nan
CVE-2019-15489,26/08/2019 18:42,26/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15481,26/08/2019 18:41,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15477,26/08/2019 18:39,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15506,26/08/2019 18:35,26/08/2019 12:15,7.8,200, Information Exposure,nan
CVE-2019-2136,26/08/2019 18:28,20/08/2019 20:15,4.9,125, Out-of-bounds Read,nan
CVE-2019-2135,26/08/2019 18:25,20/08/2019 20:15,7.1,125, Out-of-bounds Read,nan
CVE-2019-2131,26/08/2019 18:01,20/08/2019 20:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5041,26/08/2019 18:00,21/08/2019 18:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5033,26/08/2019 18:00,21/08/2019 18:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-2132,26/08/2019 17:59,20/08/2019 20:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-15105,26/08/2019 17:59,16/08/2019 3:15,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2133,26/08/2019 17:58,20/08/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-5032,26/08/2019 17:56,21/08/2019 18:15,6.8,125, Out-of-bounds Read,nan
CVE-2016-10922,26/08/2019 17:51,22/08/2019 14:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-9337,26/08/2019 17:44,22/08/2019 14:15,5.0,284, Improper Access Control,nan
CVE-2019-15486,26/08/2019 17:39,23/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15480,26/08/2019 17:36,23/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10925,26/08/2019 17:33,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10384,26/08/2019 17:33,22/08/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2014-10385,26/08/2019 17:32,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10383,26/08/2019 17:32,22/08/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2013-7482,26/08/2019 17:30,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15318,26/08/2019 17:29,22/08/2019 13:15,7.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2134,26/08/2019 17:24,20/08/2019 20:15,9.3,190, Integer Overflow or Wraparound,nan
CVE-2019-15317,26/08/2019 17:20,22/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20982,26/08/2019 17:16,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10387,26/08/2019 17:14,22/08/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15324,26/08/2019 17:11,22/08/2019 14:15,6.5,20, Improper Input Validation,nan
CVE-2019-0344,26/08/2019 17:07,14/08/2019 14:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15095,26/08/2019 17:06,16/08/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15534,26/08/2019 17:03,26/08/2019 12:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6154,26/08/2019 16:59,23/08/2019 22:15,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15532,26/08/2019 16:44,26/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20981,26/08/2019 16:44,22/08/2019 13:15,6.4,20, Improper Input Validation,nan
CVE-2018-20980,26/08/2019 16:41,22/08/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2018-20979,26/08/2019 16:40,22/08/2019 13:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0340,26/08/2019 16:38,14/08/2019 14:15,5.5,20, Improper Input Validation,nan
CVE-2017-18575,26/08/2019 16:38,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18574,26/08/2019 16:36,22/08/2019 13:15,4.3,20, Improper Input Validation,nan
CVE-2017-18573,26/08/2019 16:34,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18572,26/08/2019 16:33,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18571,26/08/2019 16:32,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2130,26/08/2019 16:25,20/08/2019 20:15,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-2120,26/08/2019 16:19,20/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-15060,26/08/2019 16:14,22/08/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2019-15322,26/08/2019 15:55,22/08/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-15321,26/08/2019 15:55,22/08/2019 14:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-15478,26/08/2019 15:53,26/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10921,26/08/2019 15:39,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15320,26/08/2019 15:34,22/08/2019 14:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10920,26/08/2019 15:34,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15319,26/08/2019 15:33,22/08/2019 14:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20985,26/08/2019 15:33,22/08/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2018-20984,26/08/2019 15:32,22/08/2019 14:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10919,26/08/2019 15:32,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20983,26/08/2019 15:31,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18584,26/08/2019 15:31,22/08/2019 14:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18583,26/08/2019 15:30,22/08/2019 14:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18582,26/08/2019 15:28,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0341,26/08/2019 15:15,14/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2016-10927,26/08/2019 14:30,22/08/2019 14:15,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-10926,26/08/2019 14:30,22/08/2019 14:15,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-5037,26/08/2019 14:28,20/08/2019 21:15,7.8,190, Integer Overflow or Wraparound,nan
CVE-2019-13031,26/08/2019 14:15,28/06/2019 23:15,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10918,26/08/2019 14:14,22/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10916,26/08/2019 14:13,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5594,26/08/2019 14:12,23/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0338,26/08/2019 14:04,14/08/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-0337,26/08/2019 13:59,14/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0335,26/08/2019 13:56,14/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20975,26/08/2019 13:53,20/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9336,26/08/2019 13:48,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15229,26/08/2019 13:47,20/08/2019 0:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15228,26/08/2019 13:46,20/08/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9335,26/08/2019 13:46,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7481,26/08/2019 13:44,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5158,26/08/2019 13:42,22/08/2019 13:15,4.3,20, Improper Input Validation,nan
CVE-2018-13367,26/08/2019 13:37,23/08/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-14469,26/08/2019 13:30,22/08/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14975,26/08/2019 13:29,14/08/2019 13:15,5.8,125, Out-of-bounds Read,nan
CVE-2016-10917,26/08/2019 13:23,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7479,26/08/2019 12:52,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7480,26/08/2019 12:51,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7478,26/08/2019 12:49,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7477,26/08/2019 12:47,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6716,26/08/2019 12:46,22/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13164,26/08/2019 8:15,3/07/2019 14:15,4.6,254, 7PK – Security Features,nan
CVE-2019-9649,26/08/2019 7:15,22/03/2019 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9648,26/08/2019 7:15,22/03/2019 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15150,26/08/2019 7:15,19/08/2019 4:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9324,26/08/2019 5:15,16/08/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14973,25/08/2019 23:15,14/08/2019 6:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2015-9320,25/08/2019 17:15,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010083,25/08/2019 16:15,17/07/2019 14:15,5.0,399, Resource Management Errors,nan
CVE-2018-1000656,25/08/2019 16:15,20/08/2018 19:31,5.0,20, Improper Input Validation,nan
CVE-2017-18508,25/08/2019 5:15,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14463,25/08/2019 3:15,31/07/2019 23:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-14462,25/08/2019 3:15,31/07/2019 23:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-13640,25/08/2019 0:15,17/07/2019 22:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-1000227,24/08/2019 19:15,17/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14809,24/08/2019 18:15,13/08/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2019-14459,24/08/2019 3:15,31/07/2019 21:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-1010057,24/08/2019 3:15,16/07/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1972,24/08/2019 0:15,22/08/2015 23:59,7.8,399, Resource Management Errors,nan
CVE-2019-1010305,23/08/2019 23:15,15/07/2019 15:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010247,23/08/2019 23:15,19/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9518,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9517,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9516,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9515,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9514,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9513,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9512,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9511,23/08/2019 21:15,13/08/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-1552,23/08/2019 21:15,30/07/2019 17:15,1.9,295, Improper Certificate Validation,nan
CVE-2019-14524,23/08/2019 21:15,2/08/2019 12:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14523,23/08/2019 21:15,2/08/2019 12:15,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-15119,23/08/2019 21:02,16/08/2019 15:15,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-11522,23/08/2019 20:57,20/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18577,23/08/2019 20:08,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18576,23/08/2019 20:07,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18581,23/08/2019 20:05,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10924,23/08/2019 19:53,22/08/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10923,23/08/2019 19:46,22/08/2019 14:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7321,23/08/2019 19:44,22/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18580,23/08/2019 19:43,22/08/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2017-18564,23/08/2019 19:40,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18563,23/08/2019 19:39,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9327,23/08/2019 19:38,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10929,23/08/2019 18:52,22/08/2019 20:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18570,23/08/2019 18:51,22/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10392,23/08/2019 18:51,22/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18578,23/08/2019 18:49,22/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10393,23/08/2019 18:49,22/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18585,23/08/2019 18:48,22/08/2019 20:15,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20987,23/08/2019 18:47,22/08/2019 20:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-15328,23/08/2019 18:46,22/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15326,23/08/2019 18:45,22/08/2019 20:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-15329,23/08/2019 18:44,22/08/2019 20:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15327,23/08/2019 18:44,22/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14216,23/08/2019 18:43,14/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18534,23/08/2019 18:43,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18521,23/08/2019 18:43,21/08/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10903,23/08/2019 18:43,21/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12426,23/08/2019 18:15,2/07/2018 17:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11652,23/08/2019 17:09,14/08/2019 16:15,7.5,285, Improper Authorization,nan
CVE-2019-0351,23/08/2019 17:03,14/08/2019 14:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0346,23/08/2019 16:58,14/08/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-0345,23/08/2019 16:57,14/08/2019 14:15,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-0343,23/08/2019 16:46,14/08/2019 14:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-15127,23/08/2019 16:22,21/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0785,23/08/2019 15:50,12/04/2016 16:59,9.0,20, Improper Input Validation,nan
CVE-2019-15160,23/08/2019 15:42,19/08/2019 6:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-18550,23/08/2019 14:13,19/08/2019 2:15,2.1,200, Information Exposure,nan
CVE-2017-18549,23/08/2019 14:10,19/08/2019 2:15,2.1,200, Information Exposure,nan
CVE-2018-13137,23/08/2019 11:15,12/04/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1170,23/08/2019 4:15,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9618,23/08/2019 2:15,13/05/2019 22:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5924,23/08/2019 2:15,12/03/2019 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15116,23/08/2019 2:15,16/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15112,23/08/2019 2:15,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14799,23/08/2019 2:15,9/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14786,23/08/2019 2:15,15/08/2019 16:15,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-12240,23/08/2019 2:15,20/05/2019 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-11807,23/08/2019 2:15,6/05/2019 18:29,6.4,284, Improper Access Control,nan
CVE-2019-11591,23/08/2019 2:15,29/04/2019 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11557,23/08/2019 2:15,26/04/2019 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15141,23/08/2019 0:54,18/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-1161,22/08/2019 20:20,14/08/2019 21:15,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1162,22/08/2019 20:05,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0348,22/08/2019 19:55,14/08/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-0334,22/08/2019 19:47,14/08/2019 14:15,4.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2121,22/08/2019 19:39,20/08/2019 20:15,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-2129,22/08/2019 19:31,20/08/2019 20:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-2127,22/08/2019 19:23,20/08/2019 20:15,7.2,416, Use After Free,nan
CVE-2019-2126,22/08/2019 19:16,20/08/2019 20:15,9.3,415, Double Free,nan
CVE-2019-13588,22/08/2019 19:15,26/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12797,22/08/2019 19:15,31/07/2019 19:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-2125,22/08/2019 18:59,20/08/2019 20:15,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-2122,22/08/2019 18:52,20/08/2019 20:15,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-10911,22/08/2019 18:48,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10910,22/08/2019 18:48,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10899,22/08/2019 18:48,21/08/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2016-10898,22/08/2019 18:48,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9328,22/08/2019 18:48,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10380,22/08/2019 18:48,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6715,22/08/2019 18:48,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6714,22/08/2019 18:48,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10912,22/08/2019 18:47,21/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10902,22/08/2019 18:47,21/08/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2128,22/08/2019 18:41,20/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10891,22/08/2019 18:30,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10890,22/08/2019 18:30,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2137,22/08/2019 18:27,20/08/2019 20:15,4.9,20, Improper Input Validation,nan
CVE-2017-18516,22/08/2019 18:27,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18522,22/08/2019 18:19,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15219,22/08/2019 18:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2019-15218,22/08/2019 18:15,19/08/2019 22:15,4.9,476, NULL Pointer Dereference,nan
CVE-2017-18524,22/08/2019 17:53,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18529,22/08/2019 17:45,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3965,22/08/2019 17:31,20/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18519,22/08/2019 17:27,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15115,22/08/2019 17:22,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20970,22/08/2019 17:22,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18562,22/08/2019 17:22,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18561,22/08/2019 17:22,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10379,22/08/2019 17:22,21/08/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10378,22/08/2019 17:21,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18535,22/08/2019 17:20,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18525,22/08/2019 17:20,21/08/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10897,22/08/2019 17:20,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10896,22/08/2019 17:19,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14939,22/08/2019 17:18,12/08/2019 1:15,2.1,200, Information Exposure,nan
CVE-2017-18531,22/08/2019 17:18,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18530,22/08/2019 17:16,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18528,22/08/2019 17:15,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18527,22/08/2019 17:13,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18569,22/08/2019 17:12,20/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18526,22/08/2019 17:12,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18523,22/08/2019 17:11,20/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10914,22/08/2019 17:11,20/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18520,22/08/2019 17:09,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15238,22/08/2019 17:08,20/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9319,22/08/2019 17:08,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15148,22/08/2019 17:06,18/08/2019 19:15,4.3,787, Out-of-bounds Write,nan
CVE-2019-1223,22/08/2019 17:03,14/08/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-15147,22/08/2019 17:00,18/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-15146,22/08/2019 17:00,18/08/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-1163,22/08/2019 16:59,14/08/2019 21:15,4.3,254, 7PK – Security Features,nan
CVE-2016-10895,22/08/2019 16:57,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18518,22/08/2019 16:56,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1225,22/08/2019 16:39,14/08/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-1224,22/08/2019 16:31,14/08/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-1258,22/08/2019 16:29,14/08/2019 21:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-18568,22/08/2019 16:09,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14682,22/08/2019 16:02,8/08/2019 20:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1229,22/08/2019 15:55,14/08/2019 21:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-18517,22/08/2019 15:37,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10885,22/08/2019 15:33,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3963,22/08/2019 15:30,20/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18567,22/08/2019 15:14,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9331,22/08/2019 15:14,20/08/2019 15:15,5.0,254, 7PK – Security Features,nan
CVE-2015-9329,22/08/2019 15:14,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3964,22/08/2019 15:12,20/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10913,22/08/2019 15:09,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9330,22/08/2019 15:07,20/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8026,22/08/2019 15:06,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2015-9318,22/08/2019 15:04,20/08/2019 15:15,5.0,254, 7PK – Security Features,nan
CVE-2019-7965,22/08/2019 14:51,20/08/2019 20:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8027,22/08/2019 14:49,20/08/2019 20:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-8003,22/08/2019 14:47,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8002,22/08/2019 14:47,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8004,22/08/2019 14:45,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2015-9332,22/08/2019 14:41,20/08/2019 15:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10893,22/08/2019 14:40,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8005,22/08/2019 14:37,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8028,22/08/2019 14:36,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8029,22/08/2019 14:30,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8006,22/08/2019 14:26,20/08/2019 20:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-8008,22/08/2019 14:25,20/08/2019 20:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-8009,22/08/2019 14:24,20/08/2019 20:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8010,22/08/2019 14:22,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8053,22/08/2019 14:20,20/08/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-8013,22/08/2019 14:17,20/08/2019 20:15,6.8,416, Use After Free,nan
CVE-2019-14788,22/08/2019 14:15,15/08/2019 16:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14787,22/08/2019 14:15,9/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13578,22/08/2019 14:15,15/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8014,22/08/2019 14:13,20/08/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8015,22/08/2019 14:11,20/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8016,22/08/2019 14:08,20/08/2019 20:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8054,22/08/2019 14:07,20/08/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-8017,22/08/2019 14:05,20/08/2019 20:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-8018,22/08/2019 14:00,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8021,22/08/2019 13:59,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8020,22/08/2019 13:50,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8057,22/08/2019 13:45,20/08/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-8019,22/08/2019 13:42,20/08/2019 20:15,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-8022,22/08/2019 13:41,20/08/2019 20:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8055,22/08/2019 13:39,20/08/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8023,22/08/2019 13:38,20/08/2019 20:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8024,22/08/2019 13:36,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8025,22/08/2019 13:35,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8039,22/08/2019 13:33,20/08/2019 20:15,6.8,416, Use After Free,nan
CVE-2019-8033,22/08/2019 13:26,20/08/2019 20:15,6.8,416, Use After Free,nan
CVE-2019-8040,22/08/2019 13:18,20/08/2019 20:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14683,22/08/2019 13:15,8/08/2019 20:15,4.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8056,22/08/2019 13:07,20/08/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-8096,22/08/2019 12:58,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8097,22/08/2019 12:57,20/08/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-8099,22/08/2019 12:52,20/08/2019 21:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-8100,22/08/2019 12:50,20/08/2019 21:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8050,22/08/2019 12:49,20/08/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8058,22/08/2019 12:42,20/08/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-8012,22/08/2019 12:32,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8011,22/08/2019 12:28,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8007,22/08/2019 12:18,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14444,22/08/2019 7:15,30/07/2019 13:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-14250,22/08/2019 7:15,24/07/2019 4:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-1010204,22/08/2019 7:15,23/07/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2019-2822,22/08/2019 3:15,23/07/2019 23:15,5.1,20, Improper Input Validation,nan
CVE-2019-2791,22/08/2019 3:15,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2747,22/08/2019 3:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2746,22/08/2019 3:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2743,22/08/2019 3:15,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2741,22/08/2019 3:15,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-8041,21/08/2019 20:58,20/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8042,21/08/2019 20:57,20/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8043,21/08/2019 20:54,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8044,21/08/2019 20:51,20/08/2019 20:15,7.5,415, Double Free,nan
CVE-2019-8046,21/08/2019 20:41,20/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8045,21/08/2019 20:41,20/08/2019 20:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-8038,21/08/2019 20:37,20/08/2019 20:15,6.8,416, Use After Free,nan
CVE-2019-8037,21/08/2019 20:31,20/08/2019 20:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8047,21/08/2019 20:30,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8048,21/08/2019 20:21,20/08/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8051,21/08/2019 20:20,20/08/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-8052,21/08/2019 20:19,20/08/2019 21:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-6616,21/08/2019 20:15,4/02/2018 22:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-5785,21/08/2019 20:15,19/01/2018 8:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-18088,21/08/2019 20:15,9/10/2018 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-14423,21/08/2019 20:15,19/07/2018 19:29,5.0,369, Divide By Zero,nan
CVE-2017-17480,21/08/2019 20:15,8/12/2017 19:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-8036,21/08/2019 20:14,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8035,21/08/2019 20:13,20/08/2019 20:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-8034,21/08/2019 20:12,20/08/2019 20:15,6.8,416, Use After Free,nan
CVE-2019-8032,21/08/2019 20:11,20/08/2019 20:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8031,21/08/2019 20:05,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8030,21/08/2019 20:05,20/08/2019 20:15,7.5,416, Use After Free,nan
CVE-2019-8060,21/08/2019 20:03,20/08/2019 21:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8101,21/08/2019 19:56,20/08/2019 21:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-8095,21/08/2019 19:51,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8094,21/08/2019 19:50,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8077,21/08/2019 19:47,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2017-18566,21/08/2019 19:44,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18533,21/08/2019 19:44,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18532,21/08/2019 19:44,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9322,21/08/2019 19:43,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14357,21/08/2019 19:41,10/08/2019 16:15,1.9,200, Information Exposure,nan
CVE-2019-14355,21/08/2019 19:41,10/08/2019 16:15,1.9,200, Information Exposure,nan
CVE-2019-8103,21/08/2019 19:40,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14354,21/08/2019 19:38,10/08/2019 16:15,1.9,200, Information Exposure,nan
CVE-2019-8061,21/08/2019 19:34,20/08/2019 21:15,7.5,416, Use After Free,nan
CVE-2019-8059,21/08/2019 19:33,20/08/2019 21:15,4.3,416, Use After Free,nan
CVE-2019-14969,21/08/2019 19:33,12/08/2019 19:15,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-8102,21/08/2019 19:28,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-8105,21/08/2019 19:24,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14359,21/08/2019 19:22,12/08/2019 23:15,2.1,200, Information Exposure,nan
CVE-2019-8098,21/08/2019 19:21,20/08/2019 21:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-8104,21/08/2019 19:18,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14984,21/08/2019 19:16,13/08/2019 20:15,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8106,21/08/2019 19:15,20/08/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14986,21/08/2019 19:10,13/08/2019 20:15,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-14985,21/08/2019 19:09,13/08/2019 20:15,7.5,20, Improper Input Validation,nan
CVE-2018-20978,21/08/2019 18:54,20/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7959,21/08/2019 18:53,16/08/2019 17:15,10.0,20, Improper Input Validation,nan
CVE-2019-7958,21/08/2019 18:51,16/08/2019 17:15,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-14951,21/08/2019 18:45,12/08/2019 16:15,5.0,254, 7PK – Security Features,nan
CVE-2019-7957,21/08/2019 18:41,16/08/2019 17:15,5.0,254, 7PK – Security Features,nan
CVE-2019-12479,21/08/2019 18:40,13/08/2019 21:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8063,21/08/2019 18:36,16/08/2019 17:15,5.0,200, Information Exposure,nan
CVE-2016-10915,21/08/2019 18:25,20/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14948,21/08/2019 18:15,12/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010034,21/08/2019 18:15,15/07/2019 13:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5328,21/08/2019 18:14,20/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10381,21/08/2019 18:08,20/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14790,21/08/2019 18:06,15/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14795,21/08/2019 18:05,15/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14518,21/08/2019 18:03,15/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9317,21/08/2019 18:03,20/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9325,21/08/2019 18:02,16/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10904,21/08/2019 18:01,16/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-15082,21/08/2019 17:43,20/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9323,21/08/2019 17:38,16/08/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8049,21/08/2019 17:35,20/08/2019 20:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9326,21/08/2019 17:26,16/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10901,21/08/2019 17:22,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18547,21/08/2019 17:21,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9321,21/08/2019 17:17,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18536,21/08/2019 17:16,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14680,21/08/2019 17:15,8/08/2019 20:15,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18554,21/08/2019 17:14,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10909,21/08/2019 17:14,21/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10908,21/08/2019 17:14,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18537,21/08/2019 17:13,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18541,21/08/2019 17:05,16/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15053,21/08/2019 17:03,14/08/2019 17:15,6.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20971,21/08/2019 16:59,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10376,21/08/2019 16:58,16/08/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18538,21/08/2019 16:52,21/08/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10900,21/08/2019 16:50,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18555,21/08/2019 16:49,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18556,21/08/2019 16:36,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18557,21/08/2019 16:35,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18558,21/08/2019 16:32,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18560,21/08/2019 16:31,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7841,21/08/2019 16:20,22/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7836,21/08/2019 16:20,22/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7835,21/08/2019 16:20,22/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7834,21/08/2019 16:20,22/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7833,21/08/2019 16:20,22/05/2019 18:29,10.0,416, Use After Free,nan
CVE-2019-7832,21/08/2019 16:20,22/05/2019 18:29,10.0,416, Use After Free,nan
CVE-2019-7831,21/08/2019 16:20,22/05/2019 18:29,9.3,416, Use After Free,nan
CVE-2019-7830,21/08/2019 16:20,22/05/2019 18:29,9.3,416, Use After Free,nan
CVE-2019-7829,21/08/2019 16:20,22/05/2019 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7828,21/08/2019 16:20,22/05/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7827,21/08/2019 16:20,22/05/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7826,21/08/2019 16:20,22/05/2019 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7825,21/08/2019 16:20,22/05/2019 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7824,21/08/2019 16:20,22/05/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7823,21/08/2019 16:20,22/05/2019 18:29,7.1,416, Use After Free,nan
CVE-2019-7822,21/08/2019 16:20,22/05/2019 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7821,21/08/2019 16:20,22/05/2019 18:29,7.1,416, Use After Free,nan
CVE-2019-7820,21/08/2019 16:20,22/05/2019 16:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7818,21/08/2019 16:20,22/05/2019 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7817,21/08/2019 16:20,22/05/2019 16:29,9.3,416, Use After Free,nan
CVE-2019-7815,21/08/2019 16:20,24/05/2019 18:29,7.8,200, Information Exposure,nan
CVE-2019-7814,21/08/2019 16:20,22/05/2019 16:29,9.3,416, Use After Free,nan
CVE-2019-7813,21/08/2019 16:20,22/05/2019 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7812,21/08/2019 16:20,22/05/2019 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7811,21/08/2019 16:20,22/05/2019 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7810,21/08/2019 16:20,22/05/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7809,21/08/2019 16:20,22/05/2019 16:29,7.1,416, Use After Free,nan
CVE-2019-7808,21/08/2019 16:20,22/05/2019 16:29,10.0,416, Use After Free,nan
CVE-2019-7807,21/08/2019 16:20,22/05/2019 16:29,10.0,416, Use After Free,nan
CVE-2019-7806,21/08/2019 16:20,22/05/2019 16:29,10.0,416, Use After Free,nan
CVE-2019-7805,21/08/2019 16:20,22/05/2019 16:29,10.0,416, Use After Free,nan
CVE-2019-7804,21/08/2019 16:20,22/05/2019 15:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7803,21/08/2019 16:20,22/05/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7802,21/08/2019 16:20,22/05/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7801,21/08/2019 16:20,22/05/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7800,21/08/2019 16:20,22/05/2019 15:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7799,21/08/2019 16:20,22/05/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7798,21/08/2019 16:20,22/05/2019 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7797,21/08/2019 16:20,22/05/2019 15:29,9.3,416, Use After Free,nan
CVE-2019-7796,21/08/2019 16:20,22/05/2019 15:29,9.3,416, Use After Free,nan
CVE-2019-7795,21/08/2019 16:20,22/05/2019 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7794,21/08/2019 16:20,22/05/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7793,21/08/2019 16:20,22/05/2019 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7792,21/08/2019 16:20,22/05/2019 15:29,10.0,416, Use After Free,nan
CVE-2019-7791,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7790,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7789,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7788,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7787,21/08/2019 16:20,22/05/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7786,21/08/2019 16:20,22/05/2019 14:29,9.3,416, Use After Free,nan
CVE-2019-7785,21/08/2019 16:20,22/05/2019 14:29,4.3,416, Use After Free,nan
CVE-2019-7784,21/08/2019 16:20,22/05/2019 14:29,10.0,415, Double Free,nan
CVE-2019-7783,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7782,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7781,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7780,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7779,21/08/2019 16:20,22/05/2019 14:29,10.0,254, 7PK – Security Features,nan
CVE-2019-7778,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7777,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7776,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7775,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7774,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7773,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7772,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7771,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7770,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7769,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7768,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7767,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7766,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7765,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7764,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7763,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7762,21/08/2019 16:20,22/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-7761,21/08/2019 16:20,22/05/2019 14:29,9.3,416, Use After Free,nan
CVE-2019-7760,21/08/2019 16:20,22/05/2019 14:29,9.3,416, Use After Free,nan
CVE-2019-7759,21/08/2019 16:20,22/05/2019 14:29,9.3,416, Use After Free,nan
CVE-2019-7758,21/08/2019 16:20,22/05/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7145,21/08/2019 16:20,22/05/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7144,21/08/2019 16:20,22/05/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7143,21/08/2019 16:20,22/05/2019 14:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7142,21/08/2019 16:20,22/05/2019 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7141,21/08/2019 16:20,22/05/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7140,21/08/2019 16:20,22/05/2019 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7128,21/08/2019 16:20,23/05/2019 18:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7127,21/08/2019 16:20,23/05/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7125,21/08/2019 16:20,23/05/2019 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7124,21/08/2019 16:20,23/05/2019 18:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7123,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7122,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7121,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7120,21/08/2019 16:20,23/05/2019 18:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7119,21/08/2019 16:20,23/05/2019 18:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7118,21/08/2019 16:20,23/05/2019 18:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7117,21/08/2019 16:20,23/05/2019 18:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7116,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7115,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7114,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7113,21/08/2019 16:20,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7112,21/08/2019 16:20,23/05/2019 17:29,10.0,416, Use After Free,nan
CVE-2019-7111,21/08/2019 16:20,23/05/2019 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7110,21/08/2019 16:20,23/05/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7109,21/08/2019 16:20,23/05/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7089,21/08/2019 16:20,24/05/2019 19:29,7.8,200, Information Exposure,nan
CVE-2019-7088,21/08/2019 16:20,23/05/2019 17:29,10.0,416, Use After Free,nan
CVE-2019-7087,21/08/2019 16:20,24/05/2019 19:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7086,21/08/2019 16:20,24/05/2019 19:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7085,21/08/2019 16:20,24/05/2019 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7084,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7083,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7082,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7081,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7080,21/08/2019 16:20,24/05/2019 19:29,10.0,415, Double Free,nan
CVE-2019-7079,21/08/2019 16:20,24/05/2019 19:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7078,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7077,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7076,21/08/2019 16:20,24/05/2019 19:29,10.0,476, NULL Pointer Dereference,nan
CVE-2019-7075,21/08/2019 16:20,24/05/2019 19:29,7.1,416, Use After Free,nan
CVE-2019-7074,21/08/2019 16:20,24/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7073,21/08/2019 16:20,24/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7072,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7071,21/08/2019 16:20,24/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7070,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7069,21/08/2019 16:20,24/05/2019 19:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2019-7068,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7067,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7066,21/08/2019 16:20,24/05/2019 19:29,10.0,476, NULL Pointer Dereference,nan
CVE-2019-7065,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7064,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7063,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7062,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7061,21/08/2019 16:20,23/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7060,21/08/2019 16:20,24/05/2019 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7059,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7058,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7057,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7056,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7055,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7054,21/08/2019 16:20,24/05/2019 19:29,10.0,476, NULL Pointer Dereference,nan
CVE-2019-7053,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7052,21/08/2019 16:20,24/05/2019 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7051,21/08/2019 16:20,24/05/2019 19:29,10.0,476, NULL Pointer Dereference,nan
CVE-2019-7050,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7049,21/08/2019 16:20,24/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7048,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7047,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7046,21/08/2019 16:20,24/05/2019 19:29,10.0,476, NULL Pointer Dereference,nan
CVE-2019-7045,21/08/2019 16:20,24/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7044,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7043,21/08/2019 16:20,24/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2019-7042,21/08/2019 16:20,24/05/2019 19:29,9.3,476, NULL Pointer Dereference,nan
CVE-2019-7041,21/08/2019 16:20,24/05/2019 19:29,6.8,254, 7PK – Security Features,nan
CVE-2019-7040,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7039,21/08/2019 16:20,24/05/2019 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7038,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7037,21/08/2019 16:20,24/05/2019 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7036,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7035,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7034,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7033,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7032,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7031,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7030,21/08/2019 16:20,24/05/2019 19:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-7029,21/08/2019 16:20,24/05/2019 19:29,10.0,416, Use After Free,nan
CVE-2019-7028,21/08/2019 16:20,24/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7027,21/08/2019 16:20,24/05/2019 18:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7026,21/08/2019 16:20,24/05/2019 18:29,10.0,416, Use After Free,nan
CVE-2019-7025,21/08/2019 16:20,24/05/2019 18:29,10.0,416, Use After Free,nan
CVE-2019-7024,21/08/2019 16:20,24/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7023,21/08/2019 16:20,24/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7022,21/08/2019 16:20,24/05/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7021,21/08/2019 16:20,24/05/2019 18:29,5.0,416, Use After Free,nan
CVE-2019-7020,21/08/2019 16:20,24/05/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7019,21/08/2019 16:20,24/05/2019 18:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-7018,21/08/2019 16:20,24/05/2019 18:29,10.0,416, Use After Free,nan
CVE-2018-5070,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-5069,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-5068,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5067,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5066,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5065,21/08/2019 16:20,20/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-5064,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-5063,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5062,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5061,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5060,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5059,21/08/2019 16:20,20/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-5058,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5057,21/08/2019 16:20,20/07/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-5056,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5055,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5054,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5053,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5052,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5051,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5050,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5049,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5048,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5047,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5046,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5045,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5044,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5043,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5042,21/08/2019 16:20,20/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-5041,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5040,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5039,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5038,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5037,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5036,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5035,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5034,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5033,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5032,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5031,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5030,21/08/2019 16:20,20/07/2018 19:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-5029,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5028,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5027,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5026,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5025,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5024,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5023,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5022,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5021,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-5020,21/08/2019 16:20,20/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-5019,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5018,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5017,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5016,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5015,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5014,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5012,21/08/2019 16:20,20/07/2018 19:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-5011,21/08/2019 16:20,20/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-5010,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5009,21/08/2019 16:20,20/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4996,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4993,21/08/2019 16:20,9/07/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-4990,21/08/2019 16:20,9/07/2018 19:29,6.8,415, Double Free,nan
CVE-2018-4989,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4988,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4987,21/08/2019 16:20,9/07/2018 19:29,10.0,476, NULL Pointer Dereference,nan
CVE-2018-4986,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4985,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4984,21/08/2019 16:20,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4983,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4982,21/08/2019 16:20,9/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4981,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4980,21/08/2019 16:20,9/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-4979,21/08/2019 16:20,9/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4978,21/08/2019 16:20,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4977,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4976,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4975,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4974,21/08/2019 16:20,9/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-4973,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4972,21/08/2019 16:20,9/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4971,21/08/2019 16:20,9/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-4970,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4969,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4968,21/08/2019 16:20,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4967,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4966,21/08/2019 16:20,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4964,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4963,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4962,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4961,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4960,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4959,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4958,21/08/2019 16:20,9/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-4957,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4956,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4955,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4954,21/08/2019 16:20,9/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-4953,21/08/2019 16:20,9/07/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4952,21/08/2019 16:20,9/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-4951,21/08/2019 16:20,9/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4950,21/08/2019 16:20,9/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-4949,21/08/2019 16:20,9/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-4948,21/08/2019 16:20,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4947,21/08/2019 16:20,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19728,21/08/2019 16:20,28/01/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19723,21/08/2019 16:20,28/01/2019 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-19722,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-19721,21/08/2019 16:20,28/01/2019 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19720,21/08/2019 16:20,18/01/2019 17:29,9.3,476, NULL Pointer Dereference,nan
CVE-2018-19719,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19717,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19716,21/08/2019 16:20,18/01/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19715,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-19714,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19713,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-19712,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19711,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19710,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19709,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19708,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-19707,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-19706,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-19705,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19704,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19703,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19702,21/08/2019 16:20,18/01/2019 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-19701,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-19700,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-19699,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-19698,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-16047,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16046,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16043,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16042,21/08/2019 16:20,18/01/2019 17:29,5.0,200, Information Exposure,nan
CVE-2018-16041,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16040,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-16039,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-16038,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16037,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-16036,21/08/2019 16:20,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-16035,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16034,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16033,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16032,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16031,21/08/2019 16:20,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16030,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16029,21/08/2019 16:20,18/01/2019 17:29,6.8,416, Use After Free,nan
CVE-2018-16028,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16027,21/08/2019 16:20,18/01/2019 17:29,6.8,416, Use After Free,nan
CVE-2018-16026,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16025,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16024,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16023,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16022,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16021,21/08/2019 16:20,18/01/2019 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16020,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16019,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16017,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16016,21/08/2019 16:20,18/01/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-16015,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16014,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16013,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16012,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16011,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16010,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16009,21/08/2019 16:20,18/01/2019 17:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-16008,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16007,21/08/2019 16:20,18/01/2019 17:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-16006,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16005,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16004,21/08/2019 16:20,18/01/2019 17:29,9.3,476, NULL Pointer Dereference,nan
CVE-2018-16003,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-16002,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16001,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16000,21/08/2019 16:20,18/01/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15999,21/08/2019 16:20,18/01/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15998,21/08/2019 16:20,18/01/2019 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15997,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15996,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15995,21/08/2019 16:20,18/01/2019 17:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-15994,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-15993,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-15992,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-15991,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-15990,21/08/2019 16:20,18/01/2019 17:29,9.3,416, Use After Free,nan
CVE-2018-15989,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15988,21/08/2019 16:20,18/01/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15987,21/08/2019 16:20,18/01/2019 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15986,21/08/2019 16:20,18/01/2019 17:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-15985,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15984,21/08/2019 16:20,18/01/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15979,21/08/2019 16:20,29/11/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-15968,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15956,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15955,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15954,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15953,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15952,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15951,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15950,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15949,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15948,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15947,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15946,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15945,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15944,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15943,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15942,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15941,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15940,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15939,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15938,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15937,21/08/2019 16:20,12/10/2018 18:29,9.3,476, NULL Pointer Dereference,nan
CVE-2018-15936,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15935,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15934,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15933,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15932,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15931,21/08/2019 16:20,12/10/2018 18:29,9.3,476, NULL Pointer Dereference,nan
CVE-2018-15930,21/08/2019 16:20,12/10/2018 18:29,9.3,476, NULL Pointer Dereference,nan
CVE-2018-15929,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15928,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-15927,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15926,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15925,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15924,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-15923,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15922,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15920,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-12881,21/08/2019 16:20,12/10/2018 18:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-12880,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12879,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12878,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12877,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-12876,21/08/2019 16:20,12/10/2018 18:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12875,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12874,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12873,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12872,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12871,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12870,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12869,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12868,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12867,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12866,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12865,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12864,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12863,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-12862,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12861,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12860,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12859,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12858,21/08/2019 16:20,12/10/2018 18:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12857,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12856,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12855,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12853,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12852,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-12851,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12850,21/08/2019 16:20,25/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12849,21/08/2019 16:20,25/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12848,21/08/2019 16:20,25/09/2018 13:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-12847,21/08/2019 16:20,12/10/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12846,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12845,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12844,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12843,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12842,21/08/2019 16:20,12/10/2018 18:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-12841,21/08/2019 16:20,12/10/2018 18:29,9.3,415, Double Free,nan
CVE-2018-12840,21/08/2019 16:20,25/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12839,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12837,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12836,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12835,21/08/2019 16:20,12/10/2018 18:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12834,21/08/2019 16:20,12/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12833,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12832,21/08/2019 16:20,12/10/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12831,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-12830,21/08/2019 16:20,18/01/2019 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12815,21/08/2019 16:20,20/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-12812,21/08/2019 16:20,20/07/2018 19:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12808,21/08/2019 16:20,29/08/2018 13:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-12803,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12801,21/08/2019 16:20,25/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12799,21/08/2019 16:20,29/08/2018 13:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-12798,21/08/2019 16:20,20/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12797,21/08/2019 16:20,20/07/2018 19:29,9.3,416, Use After Free,nan
CVE-2018-12796,21/08/2019 16:20,20/07/2018 19:29,9.3,416, Use After Free,nan
CVE-2018-12795,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12794,21/08/2019 16:20,20/07/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12793,21/08/2019 16:20,20/07/2018 19:29,4.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12792,21/08/2019 16:20,20/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-12791,21/08/2019 16:20,20/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-12790,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12789,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12788,21/08/2019 16:20,20/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12787,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-12786,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12785,21/08/2019 16:20,20/07/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12784,21/08/2019 16:20,20/07/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12783,21/08/2019 16:20,20/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-12782,21/08/2019 16:20,20/07/2018 19:29,10.0,415, Double Free,nan
CVE-2018-12781,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12780,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12779,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12778,21/08/2019 16:20,25/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12777,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12776,21/08/2019 16:20,20/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-12775,21/08/2019 16:20,25/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12774,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12773,21/08/2019 16:20,20/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-12772,21/08/2019 16:20,20/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-12771,21/08/2019 16:20,20/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-12770,21/08/2019 16:20,20/07/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-12769,21/08/2019 16:20,12/10/2018 18:29,9.3,416, Use After Free,nan
CVE-2018-12768,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12767,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12766,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12765,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12764,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12763,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12762,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12761,21/08/2019 16:20,20/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12760,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-12759,21/08/2019 16:20,12/10/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-12758,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-12757,21/08/2019 16:20,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12756,21/08/2019 16:20,20/07/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-12755,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-12754,21/08/2019 16:20,20/07/2018 19:29,10.0,787, Out-of-bounds Write,nan
CVE-2017-3124,21/08/2019 16:19,11/08/2017 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3123,21/08/2019 16:19,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3121,21/08/2019 16:19,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3120,21/08/2019 16:19,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-3119,21/08/2019 16:19,11/08/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3118,21/08/2019 16:19,11/08/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-3117,21/08/2019 16:19,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3116,21/08/2019 16:19,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3115,21/08/2019 16:19,11/08/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-3113,21/08/2019 16:19,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-3016,21/08/2019 16:19,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18546,21/08/2019 16:16,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14949,21/08/2019 16:15,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18542,21/08/2019 15:58,16/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18553,21/08/2019 15:45,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-15111,21/08/2019 15:39,21/08/2019 13:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-18544,21/08/2019 15:26,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18543,21/08/2019 15:23,16/08/2019 21:15,7.5,284, Improper Access Control,nan
CVE-2017-18565,21/08/2019 15:21,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13454,21/08/2019 15:15,9/07/2019 17:15,4.3,369, Divide By Zero,nan
CVE-2019-13391,21/08/2019 15:15,7/07/2019 22:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13311,21/08/2019 15:15,5/07/2019 1:15,4.3,399, Resource Management Errors,nan
CVE-2019-13310,21/08/2019 15:15,5/07/2019 1:15,4.3,399, Resource Management Errors,nan
CVE-2019-13309,21/08/2019 15:15,5/07/2019 1:15,4.3,399, Resource Management Errors,nan
CVE-2019-13308,21/08/2019 15:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13307,21/08/2019 15:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13303,21/08/2019 15:15,5/07/2019 1:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13302,21/08/2019 15:15,5/07/2019 1:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13301,21/08/2019 15:15,5/07/2019 1:15,4.3,399, Resource Management Errors,nan
CVE-2019-13300,21/08/2019 15:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13299,21/08/2019 15:15,5/07/2019 1:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13298,21/08/2019 15:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13296,21/08/2019 15:15,5/07/2019 1:15,4.3,399, Resource Management Errors,nan
CVE-2019-13137,21/08/2019 15:15,1/07/2019 20:15,4.3,399, Resource Management Errors,nan
CVE-2019-13136,21/08/2019 15:15,1/07/2019 20:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-13134,21/08/2019 15:15,1/07/2019 20:15,4.3,399, Resource Management Errors,nan
CVE-2019-13133,21/08/2019 15:15,1/07/2019 20:15,4.3,399, Resource Management Errors,nan
CVE-2017-18545,21/08/2019 15:15,16/08/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-15110,21/08/2019 15:10,21/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20973,21/08/2019 15:07,16/08/2019 21:15,7.5,20, Improper Input Validation,nan
CVE-2018-20972,21/08/2019 15:07,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20974,21/08/2019 15:04,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15113,21/08/2019 15:03,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-15114,21/08/2019 15:02,16/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1172,21/08/2019 14:50,14/08/2019 21:15,4.3,200, Information Exposure,nan
CVE-2019-1169,21/08/2019 14:35,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1185,21/08/2019 14:27,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-14932,21/08/2019 14:20,12/08/2019 13:15,5.0,200, Information Exposure,nan
CVE-2019-15046,21/08/2019 14:15,14/08/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-1164,21/08/2019 14:07,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14940,21/08/2019 13:55,12/08/2019 2:15,4.0,20, Improper Input Validation,nan
CVE-2019-1176,21/08/2019 13:45,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14800,21/08/2019 13:39,15/08/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-1168,21/08/2019 13:26,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1183,21/08/2019 13:17,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1171,21/08/2019 12:48,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-1187,21/08/2019 12:41,14/08/2019 21:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2013-7338,21/08/2019 12:41,22/04/2014 14:23,7.1,20, Improper Input Validation,nan
CVE-2019-1188,21/08/2019 12:24,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2019-2731,21/08/2019 10:15,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2730,21/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2018-3634,21/08/2019 8:15,15/05/2018 14:29,4.9,20, Improper Input Validation,nan
CVE-2018-12536,21/08/2019 1:16,27/06/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-7657,21/08/2019 1:16,26/06/2018 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-13221,20/08/2019 19:45,15/08/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13220,20/08/2019 19:45,15/08/2019 17:15,5.8,20, Improper Input Validation,nan
CVE-2019-14681,20/08/2019 19:43,8/08/2019 20:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13219,20/08/2019 19:43,15/08/2019 17:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-13218,20/08/2019 19:35,15/08/2019 17:15,4.3,369, Divide By Zero,nan
CVE-2019-14796,20/08/2019 19:15,9/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11270,20/08/2019 19:15,5/08/2019 17:15,5.0,254, 7PK – Security Features,nan
CVE-2018-11490,20/08/2019 19:15,26/05/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13222,20/08/2019 19:09,15/08/2019 17:15,5.8,125, Out-of-bounds Read,nan
CVE-2019-13217,20/08/2019 19:08,15/08/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8062,20/08/2019 18:58,14/08/2019 15:15,6.8,426, Untrusted Search Path,nan
CVE-2019-7961,20/08/2019 18:57,14/08/2019 15:15,6.8,426, Untrusted Search Path,nan
CVE-2019-7931,20/08/2019 18:57,14/08/2019 15:15,6.8,426, Untrusted Search Path,nan
CVE-2019-14755,20/08/2019 18:50,15/08/2019 15:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13223,20/08/2019 18:50,15/08/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2019-14789,20/08/2019 18:45,15/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14784,20/08/2019 18:25,15/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14318,20/08/2019 18:15,30/07/2019 17:15,4.3,417, Channel and Path Errors,nan
CVE-2019-13619,20/08/2019 18:15,17/07/2019 20:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010220,20/08/2019 18:15,22/07/2019 18:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-1213,20/08/2019 18:13,14/08/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1212,20/08/2019 18:06,14/08/2019 21:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7870,20/08/2019 18:01,14/08/2019 15:15,6.8,426, Untrusted Search Path,nan
CVE-2019-1198,20/08/2019 17:55,14/08/2019 21:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-1190,20/08/2019 17:25,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1192,20/08/2019 17:24,14/08/2019 21:15,4.3,254, 7PK – Security Features,nan
CVE-2019-0720,20/08/2019 17:23,14/08/2019 21:15,7.7,20, Improper Input Validation,nan
CVE-2019-1193,20/08/2019 17:21,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1194,20/08/2019 17:10,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1211,20/08/2019 17:03,14/08/2019 21:15,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2019-1206,20/08/2019 16:59,14/08/2019 21:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1199,20/08/2019 16:54,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1200,20/08/2019 16:24,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1218,20/08/2019 16:07,14/08/2019 21:15,3.5,20, Improper Input Validation,nan
CVE-2018-9107,20/08/2019 16:01,28/03/2018 4:29,6.8,20, Improper Input Validation,nan
CVE-2013-7476,20/08/2019 15:46,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10883,20/08/2019 15:41,14/08/2019 16:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5299,20/08/2019 15:36,13/08/2019 21:15,6.8,254, 7PK – Security Features,nan
CVE-2016-10886,20/08/2019 15:35,14/08/2019 16:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-15025,20/08/2019 15:11,14/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0714,20/08/2019 15:08,14/08/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2017-18513,20/08/2019 15:07,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0715,20/08/2019 15:00,14/08/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2017-18512,20/08/2019 14:57,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18511,20/08/2019 14:51,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18510,20/08/2019 14:47,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0717,20/08/2019 14:42,14/08/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2019-0723,20/08/2019 14:35,14/08/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2019-0718,20/08/2019 14:29,14/08/2019 21:15,5.5,20, Improper Input Validation,nan
CVE-2019-1204,20/08/2019 14:15,14/08/2019 21:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-1202,20/08/2019 13:52,14/08/2019 21:15,3.6,200, Information Exposure,nan
CVE-2019-1203,20/08/2019 13:16,14/08/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1201,20/08/2019 12:49,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1205,20/08/2019 12:39,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14433,20/08/2019 1:15,9/08/2019 19:15,4.0,200, Information Exposure,nan
CVE-2018-9422,19/08/2019 20:15,6/11/2018 17:29,7.2,416, Use After Free,nan
CVE-2019-14530,19/08/2019 19:56,13/08/2019 14:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11581,19/08/2019 19:49,9/08/2019 20:15,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-14924,19/08/2019 19:39,10/08/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-1227,19/08/2019 19:30,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-1228,19/08/2019 19:29,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2018-20968,19/08/2019 19:21,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0736,19/08/2019 19:17,14/08/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1020014,19/08/2019 19:15,29/07/2019 13:15,2.1,415, Double Free,nan
CVE-2018-20967,19/08/2019 19:06,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10864,19/08/2019 19:00,8/08/2019 13:15,2.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14974,19/08/2019 18:38,14/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14353,19/08/2019 18:30,8/08/2019 19:15,1.9,200, Information Exposure,nan
CVE-2015-9310,19/08/2019 18:14,14/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10888,19/08/2019 18:10,14/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10887,19/08/2019 18:08,14/08/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14771,19/08/2019 18:07,8/08/2019 2:15,9.3,20, Improper Input Validation,nan
CVE-2019-12104,19/08/2019 18:05,14/08/2019 21:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-3972,19/08/2019 18:05,26/09/2018 12:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12103,19/08/2019 18:04,14/08/2019 21:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1186,19/08/2019 18:04,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-15661,19/08/2019 18:04,21/08/2018 17:29,2.6,200, Information Exposure,nan
CVE-2019-1146,19/08/2019 17:58,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000416,19/08/2019 17:57,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10880,19/08/2019 17:53,14/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14679,19/08/2019 17:52,8/08/2019 20:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10882,19/08/2019 17:52,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0965,19/08/2019 17:36,14/08/2019 21:15,7.7,20, Improper Input Validation,nan
CVE-2018-13043,19/08/2019 17:29,1/07/2018 22:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10881,19/08/2019 17:26,14/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1147,19/08/2019 17:24,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1178,19/08/2019 17:19,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1173,19/08/2019 17:16,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1148,19/08/2019 17:15,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-1153,19/08/2019 17:14,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-1143,19/08/2019 17:14,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-15050,19/08/2019 17:02,14/08/2019 16:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-1174,19/08/2019 17:01,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0716,19/08/2019 16:55,14/08/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1175,19/08/2019 16:47,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1177,19/08/2019 16:45,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1133,19/08/2019 16:44,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7217,19/08/2019 16:40,13/05/2019 19:29,5.0,200, Information Exposure,nan
CVE-2019-1154,19/08/2019 16:35,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-5681,19/08/2019 16:30,13/08/2019 15:15,7.2,20, Improper Input Validation,nan
CVE-2019-8448,19/08/2019 16:27,13/08/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-1180,19/08/2019 16:24,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1184,19/08/2019 16:22,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4273,19/08/2019 16:19,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1078,19/08/2019 16:11,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-1057,19/08/2019 16:04,14/08/2019 21:15,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1179,19/08/2019 15:53,14/08/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1030,19/08/2019 15:42,14/08/2019 21:15,4.3,200, Information Exposure,nan
CVE-2019-14312,19/08/2019 15:32,9/08/2019 13:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18486,19/08/2019 15:27,9/08/2019 17:15,6.5,332, Insufficient Entropy in PRNG,nan
CVE-2015-9308,19/08/2019 14:27,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9307,19/08/2019 14:27,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9309,19/08/2019 14:25,14/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1197,19/08/2019 14:22,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14516,19/08/2019 14:17,13/08/2019 14:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-1196,19/08/2019 14:12,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1195,19/08/2019 14:11,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1149,19/08/2019 14:05,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2019-0332,19/08/2019 13:58,14/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1145,19/08/2019 13:57,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2019-1155,19/08/2019 13:56,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1156,19/08/2019 13:55,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1157,19/08/2019 13:52,14/08/2019 21:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1141,19/08/2019 13:40,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1158,19/08/2019 13:39,14/08/2019 21:15,2.1,200, Information Exposure,nan
CVE-2019-1140,19/08/2019 13:39,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1159,19/08/2019 13:36,14/08/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14432,19/08/2019 13:33,7/08/2019 15:15,6.8,287, Improper Authentication,nan
CVE-2019-1139,19/08/2019 13:32,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1131,19/08/2019 13:31,14/08/2019 21:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9316,19/08/2019 12:45,14/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7584,19/08/2019 11:15,1/03/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5712,19/08/2019 11:15,16/01/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17082,19/08/2019 11:15,16/09/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14884,19/08/2019 11:15,3/08/2018 13:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-14851,19/08/2019 11:15,2/08/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10549,19/08/2019 11:15,29/04/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-10548,19/08/2019 11:15,29/04/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-10547,19/08/2019 11:15,29/04/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10545,19/08/2019 11:15,29/04/2018 21:29,1.9,200, Information Exposure,nan
CVE-2017-9120,19/08/2019 11:15,2/08/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9118,19/08/2019 11:15,2/08/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-16642,19/08/2019 11:15,7/11/2017 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-1010189,19/08/2019 4:15,24/07/2019 14:15,4.3,399, Resource Management Errors,nan
CVE-2019-13057,19/08/2019 1:15,26/07/2019 13:15,3.5,287, Improper Authentication,nan
CVE-2019-7108,18/08/2019 5:15,23/05/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7096,18/08/2019 5:15,23/05/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-20852,17/08/2019 21:15,13/07/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2018-18359,17/08/2019 21:15,11/12/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18358,17/08/2019 21:15,11/12/2018 16:29,2.9,20, Improper Input Validation,nan
CVE-2018-18357,17/08/2019 21:15,11/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-18355,17/08/2019 21:15,11/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-18354,17/08/2019 21:15,11/12/2018 16:29,6.8,20, Improper Input Validation,nan
CVE-2018-18351,17/08/2019 21:15,11/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-18348,17/08/2019 21:15,11/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-18347,17/08/2019 21:15,11/12/2018 16:29,6.8,20, Improper Input Validation,nan
CVE-2018-18346,17/08/2019 21:15,11/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-18344,17/08/2019 21:15,11/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-18343,17/08/2019 21:15,11/12/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-18342,17/08/2019 21:15,11/12/2018 16:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-18341,17/08/2019 21:15,11/12/2018 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-18340,17/08/2019 21:15,11/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18339,17/08/2019 21:15,11/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18338,17/08/2019 21:15,11/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18337,17/08/2019 21:15,11/12/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-18336,17/08/2019 21:15,11/12/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-18335,17/08/2019 21:15,11/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17481,17/08/2019 21:15,11/12/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-17480,17/08/2019 21:15,11/12/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9997,16/08/2019 23:15,5/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12264,16/08/2019 21:15,5/08/2019 18:15,4.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2019-12257,16/08/2019 21:15,9/08/2019 18:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-15049,16/08/2019 21:12,14/08/2019 16:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-15047,16/08/2019 21:12,14/08/2019 16:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-15048,16/08/2019 21:10,14/08/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5237,16/08/2019 20:29,8/08/2019 17:15,6.8,284, Improper Access Control,nan
CVE-2019-1150,16/08/2019 20:18,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2019-11706,16/08/2019 20:15,23/07/2019 14:15,5.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-11705,16/08/2019 20:15,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11704,16/08/2019 20:15,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11703,16/08/2019 20:15,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1151,16/08/2019 20:13,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2019-1144,16/08/2019 20:11,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2017-18515,16/08/2019 20:08,14/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18548,16/08/2019 20:07,16/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9306,16/08/2019 20:06,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9303,16/08/2019 20:01,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10878,16/08/2019 19:56,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1152,16/08/2019 19:54,14/08/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2017-18506,16/08/2019 19:51,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5223,16/08/2019 19:37,13/08/2019 21:15,6.8,287, Improper Authentication,nan
CVE-2016-10889,16/08/2019 19:08,14/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18500,16/08/2019 18:58,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6001,16/08/2019 18:49,6/08/2019 19:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6000,16/08/2019 18:46,6/08/2019 19:15,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5999,16/08/2019 18:45,6/08/2019 19:15,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5998,16/08/2019 18:41,6/08/2019 19:15,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5995,16/08/2019 18:39,6/08/2019 19:15,4.8,285, Improper Authorization,nan
CVE-2019-5994,16/08/2019 18:30,6/08/2019 19:15,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5399,16/08/2019 18:30,9/08/2019 18:15,9.7,285, Improper Authorization,nan
CVE-2017-18514,16/08/2019 18:21,14/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20855,16/08/2019 18:15,26/07/2019 5:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10863,16/08/2019 18:13,8/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20955,16/08/2019 18:11,8/08/2019 21:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-20956,16/08/2019 18:10,8/08/2019 21:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-9313,16/08/2019 18:07,14/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9315,16/08/2019 18:05,14/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9314,16/08/2019 18:02,14/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20957,16/08/2019 18:01,8/08/2019 21:15,5.8,284, Improper Access Control,nan
CVE-2015-9312,16/08/2019 18:01,14/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5406,16/08/2019 17:34,9/08/2019 18:15,9.0,384, Session Fixation,nan
CVE-2019-5407,16/08/2019 17:30,9/08/2019 18:15,6.5,200, Information Exposure,nan
CVE-2015-9311,16/08/2019 16:48,14/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12959,16/08/2019 16:47,8/08/2019 18:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-12994,16/08/2019 16:42,8/08/2019 18:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-14965,16/08/2019 16:40,12/08/2019 18:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-14966,16/08/2019 16:26,12/08/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18504,16/08/2019 16:19,12/08/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13306,16/08/2019 16:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13305,16/08/2019 16:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13304,16/08/2019 16:15,5/07/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13297,16/08/2019 16:15,5/07/2019 1:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13295,16/08/2019 16:15,5/07/2019 1:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-13135,16/08/2019 16:15,1/07/2019 20:15,6.8,20, Improper Input Validation,nan
CVE-2017-18502,16/08/2019 16:14,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18503,16/08/2019 15:58,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5400,16/08/2019 15:55,9/08/2019 18:15,6.5,384, Session Fixation,nan
CVE-2019-5402,16/08/2019 15:52,9/08/2019 18:15,10.0,285, Improper Authorization,nan
CVE-2017-18501,16/08/2019 15:52,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5403,16/08/2019 15:42,9/08/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5405,16/08/2019 15:37,9/08/2019 18:15,5.0,285, Improper Authorization,nan
CVE-2019-5404,16/08/2019 15:37,9/08/2019 18:15,8.7,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12618,16/08/2019 15:13,12/08/2019 17:15,10.0,284, Improper Access Control,nan
CVE-2019-5238,16/08/2019 15:07,8/08/2019 17:15,6.8,284, Improper Access Control,nan
CVE-2019-5239,16/08/2019 15:06,8/08/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-14980,16/08/2019 14:41,12/08/2019 23:15,4.3,416, Use After Free,nan
CVE-2017-18505,16/08/2019 14:32,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14993,16/08/2019 14:28,13/08/2019 18:15,5.0,185, Incorrect Regular Expression,nan
CVE-2018-20954,16/08/2019 14:20,8/08/2019 21:15,5.0,310, Cryptographic Issues,nan
CVE-2019-14982,16/08/2019 14:16,12/08/2019 23:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-14770,16/08/2019 14:07,8/08/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5395,16/08/2019 14:05,9/08/2019 17:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-5396,16/08/2019 13:50,9/08/2019 17:15,9.7,287, Improper Authentication,nan
CVE-2019-5397,16/08/2019 13:27,9/08/2019 18:15,9.7,254, 7PK – Security Features,nan
CVE-2019-5398,16/08/2019 13:23,9/08/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18493,16/08/2019 12:57,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6713,16/08/2019 12:43,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9296,16/08/2019 12:41,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18492,16/08/2019 12:34,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13638,16/08/2019 12:15,26/07/2019 13:15,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0988,16/08/2019 10:15,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9302,16/08/2019 2:11,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9293,16/08/2019 2:06,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7475,16/08/2019 2:06,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9294,16/08/2019 2:05,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9295,16/08/2019 1:59,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9297,16/08/2019 1:58,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9298,16/08/2019 1:55,13/08/2019 17:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-9300,16/08/2019 1:53,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9299,16/08/2019 1:53,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10868,16/08/2019 1:51,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10870,16/08/2019 1:49,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10869,16/08/2019 1:49,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18489,16/08/2019 1:43,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10871,16/08/2019 1:43,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18490,16/08/2019 1:41,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18491,16/08/2019 1:40,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14474,16/08/2019 1:39,7/08/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2018-1000812,16/08/2019 0:15,20/12/2018 15:29,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2015-9290,15/08/2019 23:15,30/07/2019 13:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-14987,15/08/2019 20:57,13/08/2019 4:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20962,15/08/2019 20:46,8/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13462,15/08/2019 20:43,12/08/2019 17:15,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20966,15/08/2019 20:33,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8741,15/08/2019 20:15,17/03/2018 14:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14955,15/08/2019 20:15,5/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14954,15/08/2019 20:15,5/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14953,15/08/2019 20:15,5/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14952,15/08/2019 20:15,5/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14951,15/08/2019 20:15,5/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14950,15/08/2019 20:15,5/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14976,15/08/2019 20:14,12/08/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9305,15/08/2019 20:07,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14950,15/08/2019 20:02,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10879,15/08/2019 19:59,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14968,15/08/2019 19:56,12/08/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20958,15/08/2019 19:48,7/08/2019 13:15,3.3,200, Information Exposure,nan
CVE-2016-10877,15/08/2019 19:37,12/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14967,15/08/2019 18:42,12/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18495,15/08/2019 18:31,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9849,15/08/2019 18:15,17/07/2019 12:15,4.0,200, Information Exposure,nan
CVE-2019-9848,15/08/2019 18:15,17/07/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2019-2699,15/08/2019 18:15,23/04/2019 19:32,6.8,284, Improper Access Control,nan
CVE-2019-11730,15/08/2019 18:15,23/07/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-11728,15/08/2019 18:15,23/07/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2019-11725,15/08/2019 18:15,23/07/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2019-11724,15/08/2019 18:15,23/07/2019 14:15,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-11723,15/08/2019 18:15,23/07/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-11721,15/08/2019 18:15,23/07/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2019-11720,15/08/2019 18:15,23/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11718,15/08/2019 18:15,23/07/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-11716,15/08/2019 18:15,23/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-11714,15/08/2019 18:15,23/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-11710,15/08/2019 18:15,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11708,15/08/2019 18:15,23/07/2019 14:15,10.0,20, Improper Input Validation,nan
CVE-2019-11707,15/08/2019 18:15,23/07/2019 14:15,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2018-13785,15/08/2019 18:15,9/07/2018 13:29,4.3,369, Divide By Zero,nan
CVE-2017-14166,15/08/2019 18:15,6/09/2017 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-8985,15/08/2019 18:15,20/03/2017 16:59,4.3,19, Data Processing Errors,nan
CVE-2019-5236,15/08/2019 18:08,8/08/2019 17:15,6.8,415, Double Free,nan
CVE-2019-5301,15/08/2019 18:02,8/08/2019 17:15,4.3,200, Information Exposure,nan
CVE-2017-18497,15/08/2019 17:38,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18496,15/08/2019 17:36,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18494,15/08/2019 17:35,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18487,15/08/2019 17:21,13/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11038,15/08/2019 17:15,19/06/2019 0:15,5.0,20, Improper Input Validation,nan
CVE-2019-10141,15/08/2019 17:15,30/07/2019 17:15,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10867,15/08/2019 17:14,13/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10866,15/08/2019 17:12,13/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18507,15/08/2019 16:51,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20858,15/08/2019 16:48,9/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20964,15/08/2019 16:37,13/08/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20963,15/08/2019 16:36,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18498,15/08/2019 16:25,13/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18488,15/08/2019 16:19,13/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10352,15/08/2019 16:15,17/07/2019 16:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10194,15/08/2019 16:15,11/07/2019 19:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-18485,15/08/2019 15:34,8/08/2019 21:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19855,15/08/2019 15:31,8/08/2019 13:15,4.3,20, Improper Input Validation,nan
CVE-2019-2766,15/08/2019 15:15,23/07/2019 23:15,2.6,284, Improper Access Control,nan
CVE-2019-14744,15/08/2019 15:15,7/08/2019 15:15,5.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10185,15/08/2019 15:15,31/07/2019 23:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10182,15/08/2019 15:15,31/07/2019 22:15,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10181,15/08/2019 15:15,31/07/2019 23:15,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-10163,15/08/2019 15:15,30/07/2019 23:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-10162,15/08/2019 15:15,30/07/2019 23:15,5.0,285, Improper Authorization,nan
CVE-2019-13101,15/08/2019 15:13,8/08/2019 13:15,7.5,287, Improper Authentication,nan
CVE-2017-18484,15/08/2019 15:10,8/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10862,15/08/2019 14:47,8/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-9292,15/08/2019 14:44,8/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14769,15/08/2019 14:08,8/08/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14731,15/08/2019 13:50,7/08/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10865,15/08/2019 13:26,9/08/2019 13:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14785,15/08/2019 13:13,9/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11775,15/08/2019 12:15,30/07/2019 14:15,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-8011,15/08/2019 9:15,18/07/2018 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-1303,15/08/2019 9:15,26/03/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-1302,15/08/2019 9:15,26/03/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1301,15/08/2019 9:15,26/03/2018 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1283,15/08/2019 9:15,26/03/2018 15:29,3.5,20, Improper Input Validation,nan
CVE-2017-9788,15/08/2019 9:15,13/07/2017 16:29,6.4,200, Information Exposure,nan
CVE-2017-15715,15/08/2019 9:15,26/03/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2017-15710,15/08/2019 9:15,26/03/2018 15:29,5.0,787, Out-of-bounds Write,nan
CVE-2014-0117,15/08/2019 9:15,20/07/2014 11:12,4.3,20, Improper Input Validation,nan
CVE-2008-0456,15/08/2019 9:15,25/01/2008 1:00,2.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-14537,14/08/2019 21:36,7/08/2019 17:15,7.5,287, Improper Authentication,nan
CVE-2019-14792,14/08/2019 20:40,9/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10876,14/08/2019 20:27,12/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14946,14/08/2019 20:03,12/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9304,14/08/2019 20:01,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14945,14/08/2019 19:58,12/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20965,14/08/2019 19:58,12/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14947,14/08/2019 19:54,12/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10861,14/08/2019 19:35,7/08/2019 13:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14793,14/08/2019 18:37,9/08/2019 13:15,5.5,284, Improper Access Control,nan
CVE-2019-14791,14/08/2019 18:26,9/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5607,14/08/2019 18:15,26/07/2019 1:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5606,14/08/2019 18:15,26/07/2019 1:15,7.2,416, Use After Free,nan
CVE-2019-5605,14/08/2019 18:15,26/07/2019 1:15,6.8,200, Information Exposure,nan
CVE-2019-5604,14/08/2019 18:15,26/07/2019 1:15,8.5,125, Out-of-bounds Read,nan
CVE-2019-5603,14/08/2019 18:15,26/07/2019 1:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14794,14/08/2019 17:46,9/08/2019 14:15,5.0,19, Data Processing Errors,nan
CVE-2019-14347,14/08/2019 17:37,6/08/2019 17:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-14697,14/08/2019 17:28,6/08/2019 16:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-14705,14/08/2019 17:17,6/08/2019 23:15,6.5,284, Improper Access Control,nan
CVE-2019-14704,14/08/2019 17:03,6/08/2019 23:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-14706,14/08/2019 16:55,6/08/2019 23:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14707,14/08/2019 16:45,6/08/2019 23:15,6.5,254, 7PK – Security Features,nan
CVE-2019-14708,14/08/2019 16:36,6/08/2019 23:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18452,14/08/2019 16:27,2/08/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2019-14709,14/08/2019 16:23,6/08/2019 23:15,5.0,255, Credentials Management,nan
CVE-2018-14383,14/08/2019 16:17,7/08/2019 15:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-18483,14/08/2019 16:09,7/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12397,14/08/2019 15:42,8/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14335,14/08/2019 15:39,8/08/2019 14:15,4.9,287, Improper Authentication,nan
CVE-2019-14754,14/08/2019 15:30,8/08/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14748,14/08/2019 15:29,7/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14749,14/08/2019 15:28,7/08/2019 17:15,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18446,14/08/2019 15:26,2/08/2019 17:15,6.5,787, Out-of-bounds Write,nan
CVE-2019-3948,14/08/2019 15:15,29/07/2019 22:15,5.0,287, Improper Authentication,nan
CVE-2019-14750,14/08/2019 15:15,7/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14805,14/08/2019 15:14,9/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14804,14/08/2019 15:13,9/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13143,14/08/2019 14:49,6/08/2019 18:15,9.0,254, 7PK – Security Features,nan
CVE-2019-12950,14/08/2019 14:46,6/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14473,14/08/2019 14:45,6/08/2019 19:15,6.5,285, Improper Authorization,nan
CVE-2019-14798,14/08/2019 14:33,9/08/2019 14:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14797,14/08/2019 14:33,9/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20960,14/08/2019 14:25,8/08/2019 21:15,4.8,254, 7PK – Security Features,nan
CVE-2019-14801,14/08/2019 14:24,9/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20959,14/08/2019 14:17,7/08/2019 13:15,4.8,254, 7PK – Security Features,nan
CVE-2018-11563,14/08/2019 14:15,8/07/2019 13:15,4.9,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-14773,14/08/2019 13:38,8/08/2019 20:15,6.4,254, 7PK – Security Features,nan
CVE-2019-14746,14/08/2019 13:38,7/08/2019 16:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-5498,14/08/2019 13:20,9/08/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-14933,14/08/2019 13:06,11/08/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16860,14/08/2019 12:15,31/07/2019 15:15,6.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2019-14546,14/08/2019 11:31,5/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12143,14/08/2019 11:30,11/06/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1269,14/08/2019 11:29,6/06/2018 20:29,4.0,388, 7PK – Errors,nan
CVE-2008-1331,14/08/2019 11:29,2/04/2008 20:44,10.0,20, Improper Input Validation,nan
CVE-2007-2764,14/08/2019 11:29,18/05/2007 22:30,7.8,20, Improper Input Validation,nan
CVE-2014-8361,14/08/2019 11:28,1/05/2015 15:59,10.0,20, Improper Input Validation,nan
CVE-2016-2211,14/08/2019 11:27,30/06/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2210,14/08/2019 11:27,30/06/2016 23:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2209,14/08/2019 11:27,30/06/2016 23:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9834,14/08/2019 11:26,15/03/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2207,14/08/2019 11:26,30/06/2016 23:59,10.0,20, Improper Input Validation,nan
CVE-2019-13229,14/08/2019 11:25,4/07/2019 12:15,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-14362,14/08/2019 11:21,28/07/2019 18:15,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-2879,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2834,14/08/2019 10:15,23/07/2019 23:15,6.8,20, Improper Input Validation,nan
CVE-2019-2830,14/08/2019 10:15,23/07/2019 23:15,6.8,20, Improper Input Validation,nan
CVE-2019-2826,14/08/2019 10:15,23/07/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2019-2819,14/08/2019 10:15,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2815,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2814,14/08/2019 10:15,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2812,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2811,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2810,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2808,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2803,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2802,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2801,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2800,14/08/2019 10:15,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2798,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2797,14/08/2019 10:15,23/07/2019 23:15,2.3,284, Improper Access Control,nan
CVE-2019-2796,14/08/2019 10:15,23/07/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2019-2795,14/08/2019 10:15,23/07/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2019-2789,14/08/2019 10:15,23/07/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2019-2785,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2784,14/08/2019 10:15,23/07/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2019-2780,14/08/2019 10:15,23/07/2019 23:15,4.0,20, Improper Input Validation,nan
CVE-2019-2778,14/08/2019 10:15,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2774,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2757,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2755,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2752,14/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2738,14/08/2019 10:15,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2695,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2694,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2693,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2691,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2689,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2688,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2687,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2686,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2685,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2683,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2681,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2644,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2636,14/08/2019 10:15,23/04/2019 19:32,3.5,20, Improper Input Validation,nan
CVE-2019-2635,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2634,14/08/2019 10:15,23/04/2019 19:32,1.9,20, Improper Input Validation,nan
CVE-2019-2631,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2630,14/08/2019 10:15,23/04/2019 19:32,3.5,20, Improper Input Validation,nan
CVE-2019-2626,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2625,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2624,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2623,14/08/2019 10:15,23/04/2019 19:32,3.5,20, Improper Input Validation,nan
CVE-2019-2620,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2617,14/08/2019 10:15,23/04/2019 19:32,3.5,20, Improper Input Validation,nan
CVE-2019-2607,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2606,14/08/2019 10:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2596,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2593,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2592,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2589,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2587,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2585,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2584,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2581,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2580,14/08/2019 10:15,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2539,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2536,14/08/2019 10:15,16/01/2019 19:30,1.2,284, Improper Access Control,nan
CVE-2019-2535,14/08/2019 10:15,16/01/2019 19:30,1.9,284, Improper Access Control,nan
CVE-2019-2534,14/08/2019 10:15,16/01/2019 19:30,5.5,284, Improper Access Control,nan
CVE-2019-2533,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2532,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2531,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2530,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2481,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2436,14/08/2019 10:15,16/01/2019 19:30,5.5,284, Improper Access Control,nan
CVE-2019-2434,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2420,14/08/2019 10:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-12855,14/08/2019 3:15,16/06/2019 12:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-1010302,14/08/2019 3:15,15/07/2019 18:15,4.3,284, Improper Access Control,nan
CVE-2018-20349,14/08/2019 3:15,22/12/2018 0:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8553,13/08/2019 23:15,13/04/2016 15:59,2.1,200, Information Exposure,nan
CVE-2016-5388,13/08/2019 22:15,19/07/2016 2:00,5.1,284, Improper Access Control,nan
CVE-2019-3568,13/08/2019 21:15,14/05/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14255,13/08/2019 21:03,8/08/2019 13:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-14703,13/08/2019 20:45,6/08/2019 23:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20827,13/08/2019 20:35,9/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18400,13/08/2019 20:26,2/08/2019 14:15,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-18399,13/08/2019 20:25,2/08/2019 14:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-18398,13/08/2019 20:22,2/08/2019 14:15,5.5,20, Improper Input Validation,nan
CVE-2017-18397,13/08/2019 20:19,2/08/2019 14:15,2.1,275, Permission Issues,nan
CVE-2019-10933,13/08/2019 20:15,11/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10814,13/08/2019 20:05,1/08/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2019-13105,13/08/2019 19:40,6/08/2019 20:15,6.8,415, Double Free,nan
CVE-2019-2024,13/08/2019 19:15,19/06/2019 21:15,7.2,416, Use After Free,nan
CVE-2018-20856,13/08/2019 19:15,26/07/2019 5:15,4.6,416, Use After Free,nan
CVE-2018-20169,13/08/2019 19:15,17/12/2018 7:29,7.2,400, Uncontrolled Resource Consumption,nan
CVE-2018-14617,13/08/2019 19:15,27/07/2018 4:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-14615,13/08/2019 19:15,27/07/2018 4:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14609,13/08/2019 19:15,27/07/2018 4:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-13098,13/08/2019 19:15,3/07/2018 10:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-13096,13/08/2019 19:15,3/07/2018 10:29,4.3,787, Out-of-bounds Write,nan
CVE-2019-14346,13/08/2019 19:07,6/08/2019 15:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18401,13/08/2019 19:02,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2019-14702,13/08/2019 18:49,6/08/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14701,13/08/2019 18:46,6/08/2019 23:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14700,13/08/2019 18:43,6/08/2019 23:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14699,13/08/2019 18:42,6/08/2019 23:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-14698,13/08/2019 18:26,6/08/2019 23:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010259,13/08/2019 18:15,18/07/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5683,13/08/2019 18:03,6/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5686,13/08/2019 18:02,6/08/2019 20:15,4.9,20, Improper Input Validation,nan
CVE-2019-5685,13/08/2019 18:02,6/08/2019 20:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-5684,13/08/2019 18:02,6/08/2019 20:15,10.0,787, Out-of-bounds Write,nan
CVE-2019-5687,13/08/2019 18:01,6/08/2019 20:15,3.6,275, Permission Issues,nan
CVE-2019-5682,13/08/2019 17:28,6/08/2019 20:15,7.2,284, Improper Access Control,nan
CVE-2019-5679,13/08/2019 17:25,6/08/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14313,13/08/2019 17:15,30/07/2019 18:15,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13572,13/08/2019 17:15,1/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14442,13/08/2019 16:15,30/07/2019 13:15,7.1,399, Resource Management Errors,nan
CVE-2019-10099,13/08/2019 15:49,7/08/2019 17:15,4.3,310, Cryptographic Issues,nan
CVE-2019-14696,13/08/2019 15:39,6/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14664,13/08/2019 15:27,5/08/2019 20:15,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-10794,13/08/2019 15:24,6/08/2019 14:15,4.0,200, Information Exposure,nan
CVE-2016-10792,13/08/2019 15:19,6/08/2019 14:15,6.5,284, Improper Access Control,nan
CVE-2016-10791,13/08/2019 15:17,6/08/2019 14:15,5.0,255, Credentials Management,nan
CVE-2019-14544,13/08/2019 15:06,2/08/2019 22:15,7.5,275, Permission Issues,nan
CVE-2019-14475,13/08/2019 15:00,5/08/2019 20:15,5.0,285, Improper Authorization,nan
CVE-2017-18431,13/08/2019 14:44,2/08/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2008-0590,13/08/2019 14:40,5/02/2008 12:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1848,13/08/2019 14:39,31/12/2004 5:00,5.0,399, Resource Management Errors,nan
CVE-2017-18402,13/08/2019 14:36,2/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18404,13/08/2019 14:33,2/08/2019 14:15,4.9,284, Improper Access Control,nan
CVE-2017-18403,13/08/2019 14:25,2/08/2019 14:15,6.5,284, Improper Access Control,nan
CVE-2017-18396,13/08/2019 14:18,2/08/2019 14:15,4.9,200, Information Exposure,nan
CVE-2019-2758,13/08/2019 14:15,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2628,13/08/2019 14:15,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-14529,13/08/2019 14:15,2/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10159,13/08/2019 14:15,14/06/2019 14:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-18395,13/08/2019 14:10,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2017-18394,13/08/2019 13:58,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2019-11198,13/08/2019 13:56,5/08/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14521,13/08/2019 13:46,5/08/2019 12:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18393,13/08/2019 13:42,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2017-18392,13/08/2019 13:40,2/08/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2018-20945,13/08/2019 13:31,1/08/2019 17:15,7.9,285, Improper Authorization,nan
CVE-2019-14732,13/08/2019 13:25,7/08/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10796,13/08/2019 13:20,6/08/2019 14:15,2.1,275, Permission Issues,nan
CVE-2016-10798,13/08/2019 13:15,7/08/2019 13:15,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10797,13/08/2019 13:15,6/08/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-14772,13/08/2019 12:51,8/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10799,13/08/2019 12:46,7/08/2019 13:15,2.1,284, Improper Access Control,nan
CVE-2019-14734,13/08/2019 12:19,7/08/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14733,13/08/2019 12:19,7/08/2019 1:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14692,13/08/2019 12:19,6/08/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14691,13/08/2019 12:19,6/08/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14690,13/08/2019 12:19,6/08/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17825,13/08/2019 12:19,1/10/2018 8:29,7.5,415, Double Free,nan
CVE-2019-14528,13/08/2019 11:43,2/08/2019 14:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14486,13/08/2019 11:41,1/08/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10839,13/08/2019 11:29,1/08/2019 16:15,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10838,13/08/2019 11:28,1/08/2019 16:15,6.8,284, Improper Access Control,nan
CVE-2016-10836,13/08/2019 11:27,1/08/2019 16:15,4.0,287, Improper Authentication,nan
CVE-2019-14364,13/08/2019 10:15,28/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13635,13/08/2019 10:15,30/07/2019 13:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14695,13/08/2019 9:15,6/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9959,13/08/2019 3:15,22/07/2019 15:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-13179,13/08/2019 3:15,2/07/2019 23:15,5.0,275, Permission Issues,nan
CVE-2019-13178,13/08/2019 3:15,2/07/2019 23:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-13173,13/08/2019 0:15,2/07/2019 20:15,6.4,20, Improper Input Validation,nan
CVE-2019-11922,12/08/2019 21:15,25/07/2019 21:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9805,12/08/2019 21:15,15/09/2017 19:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-9793,12/08/2019 21:15,20/09/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-9791,12/08/2019 21:15,10/07/2017 16:29,7.5,20, Improper Input Validation,nan
CVE-2017-12611,12/08/2019 21:15,20/09/2017 17:29,7.5,20, Improper Input Validation,nan
CVE-2016-6795,12/08/2019 21:15,20/09/2017 17:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4438,12/08/2019 21:15,4/07/2016 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-3087,12/08/2019 21:15,7/06/2016 18:59,7.5,20, Improper Input Validation,nan
CVE-2016-3081,12/08/2019 21:15,26/04/2016 14:59,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-4035,12/08/2019 21:15,11/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0116,12/08/2019 21:15,8/05/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0113,12/08/2019 21:15,29/04/2014 10:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0112,12/08/2019 21:15,29/04/2014 10:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1966,12/08/2019 21:15,10/07/2013 19:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1965,12/08/2019 21:15,10/07/2013 19:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-5057,12/08/2019 21:15,8/01/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18405,12/08/2019 20:23,2/08/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2016-10793,12/08/2019 20:22,6/08/2019 14:15,6.5,20, Improper Input Validation,nan
CVE-2017-18432,12/08/2019 20:20,2/08/2019 16:15,2.1,200, Information Exposure,nan
CVE-2016-10795,12/08/2019 20:12,6/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10800,12/08/2019 20:10,7/08/2019 13:15,6.8,20, Improper Input Validation,nan
CVE-2016-10801,12/08/2019 20:07,7/08/2019 13:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10803,12/08/2019 20:03,7/08/2019 13:15,5.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2018-20932,12/08/2019 19:43,1/08/2019 16:15,4.0,538, File and Directory Information Exposure,nan
CVE-2018-20931,12/08/2019 19:42,1/08/2019 16:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10790,12/08/2019 19:41,6/08/2019 13:15,5.0,200, Information Exposure,nan
CVE-2016-10808,12/08/2019 19:36,7/08/2019 13:15,9.0,20, Improper Input Validation,nan
CVE-2016-10812,12/08/2019 19:32,7/08/2019 13:15,9.0,20, Improper Input Validation,nan
CVE-2018-20930,12/08/2019 19:24,1/08/2019 16:15,6.4,284, Improper Access Control,nan
CVE-2019-13623,12/08/2019 19:15,17/07/2019 3:15,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10094,12/08/2019 19:15,2/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10093,12/08/2019 19:15,2/08/2019 19:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-10088,12/08/2019 19:15,2/08/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0296,12/08/2019 19:15,7/06/2018 12:29,5.0,20, Improper Input Validation,nan
CVE-2018-20927,12/08/2019 18:58,1/08/2019 16:15,2.1,285, Improper Authorization,nan
CVE-2018-20925,12/08/2019 18:41,1/08/2019 16:15,4.6,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20898,12/08/2019 18:41,1/08/2019 14:15,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10842,12/08/2019 18:35,1/08/2019 16:15,4.0,20, Improper Input Validation,nan
CVE-2016-10840,12/08/2019 18:31,1/08/2019 16:15,9.0,668, Exposure of Resource to Wrong Sphere,nan
CVE-2017-18406,12/08/2019 18:30,2/08/2019 14:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18407,12/08/2019 18:26,2/08/2019 14:15,5.8,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-18408,12/08/2019 18:15,2/08/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18409,12/08/2019 18:11,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2017-18410,12/08/2019 18:01,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2017-18462,12/08/2019 17:47,5/08/2019 12:15,5.0,254, 7PK – Security Features,nan
CVE-2017-18476,12/08/2019 17:41,5/08/2019 13:15,5.0,254, 7PK – Security Features,nan
CVE-2017-18464,12/08/2019 17:41,5/08/2019 12:15,5.5,20, Improper Input Validation,nan
CVE-2017-18465,12/08/2019 17:37,5/08/2019 12:15,2.1,20, Improper Input Validation,nan
CVE-2017-18475,12/08/2019 17:36,5/08/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2017-18474,12/08/2019 17:33,5/08/2019 13:15,6.8,200, Information Exposure,nan
CVE-2016-10775,12/08/2019 17:31,5/08/2019 13:15,6.8,20, Improper Input Validation,nan
CVE-2017-18466,12/08/2019 17:26,5/08/2019 12:15,4.0,20, Improper Input Validation,nan
CVE-2017-18416,12/08/2019 17:26,2/08/2019 14:15,3.6,284, Improper Access Control,nan
CVE-2017-18467,12/08/2019 17:11,5/08/2019 12:15,4.0,254, 7PK – Security Features,nan
CVE-2017-18427,12/08/2019 17:06,2/08/2019 16:15,2.1,275, Permission Issues,nan
CVE-2017-18482,12/08/2019 17:03,5/08/2019 13:15,4.0,20, Improper Input Validation,nan
CVE-2017-18479,12/08/2019 16:57,5/08/2019 13:15,4.0,295, Improper Certificate Validation,nan
CVE-2017-18428,12/08/2019 16:52,2/08/2019 16:15,1.9,200, Information Exposure,nan
CVE-2017-18480,12/08/2019 16:49,5/08/2019 13:15,4.0,254, 7PK – Security Features,nan
CVE-2017-18468,12/08/2019 16:48,5/08/2019 12:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-18478,12/08/2019 16:45,5/08/2019 13:15,4.0,200, Information Exposure,nan
CVE-2017-18477,12/08/2019 16:40,5/08/2019 13:15,4.0,254, 7PK – Security Features,nan
CVE-2017-18470,12/08/2019 16:33,5/08/2019 13:15,4.0,255, Credentials Management,nan
CVE-2017-18415,12/08/2019 16:30,2/08/2019 14:15,4.6,20, Improper Input Validation,nan
CVE-2017-18411,12/08/2019 16:28,2/08/2019 14:15,4.0,20, Improper Input Validation,nan
CVE-2017-18414,12/08/2019 16:26,2/08/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10860,12/08/2019 16:24,1/08/2019 15:15,5.5,284, Improper Access Control,nan
CVE-2016-10832,12/08/2019 16:19,1/08/2019 17:15,4.0,287, Improper Authentication,nan
CVE-2016-10833,12/08/2019 16:18,1/08/2019 17:15,5.0,287, Improper Authentication,nan
CVE-2016-10834,12/08/2019 16:17,1/08/2019 17:15,6.5,358, Improperly Implemented Security Check for Standard,nan
CVE-2016-10835,12/08/2019 16:16,1/08/2019 17:15,4.0,287, Improper Authentication,nan
CVE-2019-14235,12/08/2019 16:15,2/08/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-14233,12/08/2019 16:15,2/08/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-14232,12/08/2019 16:15,2/08/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2018-20936,12/08/2019 16:15,1/08/2019 17:15,2.1,320, Key Management Errors,nan
CVE-2018-20937,12/08/2019 16:14,1/08/2019 17:15,4.0,287, Improper Authentication,nan
CVE-2017-18412,12/08/2019 16:12,2/08/2019 14:15,1.9,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-10829,12/08/2019 16:12,1/08/2019 17:15,6.8,552, Files or Directories Accessible to External Parties,nan
CVE-2016-10831,12/08/2019 16:11,1/08/2019 17:15,6.5,287, Improper Authentication,nan
CVE-2016-10830,12/08/2019 16:10,1/08/2019 17:15,5.5,284, Improper Access Control,nan
CVE-2017-18413,12/08/2019 16:08,2/08/2019 14:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-18387,12/08/2019 16:05,2/08/2019 13:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10825,12/08/2019 16:05,1/08/2019 17:15,5.5,358, Improperly Implemented Security Check for Standard,nan
CVE-2018-20934,12/08/2019 16:03,1/08/2019 16:15,6.4,358, Improperly Implemented Security Check for Standard,nan
CVE-2019-14747,12/08/2019 16:00,7/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20926,12/08/2019 15:47,1/08/2019 16:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5502,12/08/2019 15:16,5/08/2019 19:15,6.4,310, Cryptographic Issues,nan
CVE-2019-14494,12/08/2019 15:15,1/08/2019 17:15,4.3,369, Divide By Zero,nan
CVE-2019-7163,12/08/2019 15:07,2/08/2019 21:15,7.5,287, Improper Authentication,nan
CVE-2019-14551,12/08/2019 15:02,3/08/2019 2:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-1010301,12/08/2019 14:15,15/07/2019 18:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5501,12/08/2019 13:35,2/08/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-14532,12/08/2019 13:32,2/08/2019 15:15,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-14531,12/08/2019 13:32,2/08/2019 15:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-5493,12/08/2019 13:29,2/08/2019 15:15,4.3,200, Information Exposure,nan
CVE-2019-11202,12/08/2019 12:24,30/07/2019 17:15,7.5,255, Credentials Management,nan
CVE-2007-6763,12/08/2019 2:35,31/07/2019 18:15,6.5,20, Improper Input Validation,nan
CVE-2019-14284,11/08/2019 23:15,26/07/2019 13:15,2.1,369, Divide By Zero,nan
CVE-2019-14283,11/08/2019 23:15,26/07/2019 13:15,4.6,190, Integer Overflow or Wraparound,nan
CVE-2016-4055,11/08/2019 18:15,23/01/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2019-14378,11/08/2019 3:15,29/07/2019 11:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14296,11/08/2019 3:15,27/07/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14295,11/08/2019 3:15,27/07/2019 19:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-13383,9/08/2019 23:15,16/07/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-13382,9/08/2019 23:15,26/07/2019 13:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-13380,9/08/2019 23:15,9/07/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13379,9/08/2019 23:15,7/07/2019 16:15,9.0,287, Improper Authentication,nan
CVE-2019-11542,9/08/2019 23:15,26/04/2019 2:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11540,9/08/2019 23:15,26/04/2019 2:29,7.5,254, 7PK – Security Features,nan
CVE-2019-11539,9/08/2019 23:15,26/04/2019 2:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11538,9/08/2019 23:15,26/04/2019 2:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-11508,9/08/2019 23:15,8/05/2019 17:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9154,9/08/2019 23:15,4/05/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-7226,9/08/2019 23:15,19/02/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-7225,9/08/2019 23:15,19/02/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-20584,9/08/2019 23:15,30/12/2018 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20024,9/08/2019 23:15,19/12/2018 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-20023,9/08/2019 23:15,19/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-20022,9/08/2019 23:15,19/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-20020,9/08/2019 23:15,19/12/2018 16:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-20019,9/08/2019 23:15,19/12/2018 16:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-18873,9/08/2019 23:15,31/10/2018 16:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-6852,9/08/2019 23:15,15/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6851,9/08/2019 23:15,15/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-14132,9/08/2019 23:15,4/09/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20943,9/08/2019 20:27,1/08/2019 17:15,1.9,200, Information Exposure,nan
CVE-2019-14668,9/08/2019 20:16,5/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14669,9/08/2019 20:12,5/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14670,9/08/2019 20:11,5/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14548,9/08/2019 19:59,5/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14549,9/08/2019 19:57,5/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14547,9/08/2019 19:56,5/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14550,9/08/2019 19:54,5/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12279,9/08/2019 19:15,22/05/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10858,9/08/2019 19:13,1/08/2019 15:15,9.3,20, Improper Input Validation,nan
CVE-2017-18388,9/08/2019 19:02,2/08/2019 13:15,7.2,20, Improper Input Validation,nan
CVE-2017-18391,9/08/2019 18:51,2/08/2019 13:15,1.9,200, Information Exposure,nan
CVE-2017-18425,9/08/2019 18:40,2/08/2019 16:15,1.9,275, Permission Issues,nan
CVE-2017-18426,9/08/2019 18:39,2/08/2019 16:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-10771,9/08/2019 18:32,5/08/2019 13:15,5.5,20, Improper Input Validation,nan
CVE-2016-10772,9/08/2019 18:29,5/08/2019 13:15,2.1,254, 7PK – Security Features,nan
CVE-2016-10857,9/08/2019 18:17,1/08/2019 15:15,4.0,284, Improper Access Control,nan
CVE-2016-10773,9/08/2019 18:15,5/08/2019 13:15,6.5,134, Use of Externally-Controlled Format String,nan
CVE-2016-10786,9/08/2019 18:13,6/08/2019 13:15,4.0,200, Information Exposure,nan
CVE-2016-10787,9/08/2019 18:05,6/08/2019 13:15,5.5,20, Improper Input Validation,nan
CVE-2016-10767,9/08/2019 18:05,5/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10788,9/08/2019 17:56,6/08/2019 13:15,9.0,20, Improper Input Validation,nan
CVE-2016-10774,9/08/2019 17:52,5/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10779,9/08/2019 17:45,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10789,9/08/2019 17:41,6/08/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2016-10770,9/08/2019 17:02,5/08/2019 13:15,5.5,20, Improper Input Validation,nan
CVE-2017-18457,9/08/2019 16:38,2/08/2019 17:15,4.9,284, Improper Access Control,nan
CVE-2019-14491,9/08/2019 16:34,1/08/2019 17:15,6.4,125, Out-of-bounds Read,nan
CVE-2016-10804,9/08/2019 16:34,7/08/2019 13:15,8.7,20, Improper Input Validation,nan
CVE-2019-14492,9/08/2019 16:33,1/08/2019 17:15,6.4,787, Out-of-bounds Write,nan
CVE-2019-1009,9/08/2019 16:15,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-14654,9/08/2019 16:02,5/08/2019 1:15,6.5,20, Improper Input Validation,nan
CVE-2019-14337,9/08/2019 15:59,1/08/2019 13:15,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-10802,9/08/2019 15:41,7/08/2019 13:15,6.5,284, Improper Access Control,nan
CVE-2019-14667,9/08/2019 15:32,5/08/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10811,9/08/2019 15:15,7/08/2019 13:15,9.0,200, Information Exposure,nan
CVE-2016-10810,9/08/2019 14:55,7/08/2019 13:15,9.0,200, Information Exposure,nan
CVE-2019-14336,9/08/2019 14:53,1/08/2019 13:15,2.1,20, Improper Input Validation,nan
CVE-2019-14525,9/08/2019 14:41,5/08/2019 12:15,4.0,200, Information Exposure,nan
CVE-2016-10809,9/08/2019 14:39,7/08/2019 13:15,9.0,200, Information Exposure,nan
CVE-2016-10807,9/08/2019 14:30,7/08/2019 13:15,4.0,20, Improper Input Validation,nan
CVE-2018-20942,9/08/2019 14:28,1/08/2019 17:15,1.9,200, Information Exposure,nan
CVE-2016-10805,9/08/2019 14:22,7/08/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2019-14348,9/08/2019 14:11,5/08/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18437,9/08/2019 13:59,2/08/2019 17:15,3.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20938,9/08/2019 13:52,1/08/2019 17:15,4.0,284, Improper Access Control,nan
CVE-2017-18433,9/08/2019 13:45,2/08/2019 16:15,9.0,20, Improper Input Validation,nan
CVE-2016-10849,9/08/2019 13:39,1/08/2019 16:15,4.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-14665,9/08/2019 13:35,5/08/2019 19:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14671,9/08/2019 13:34,5/08/2019 20:15,2.1,200, Information Exposure,nan
CVE-2017-18439,9/08/2019 13:29,2/08/2019 17:15,6.5,20, Improper Input Validation,nan
CVE-2017-18438,9/08/2019 13:23,2/08/2019 17:15,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-14672,9/08/2019 13:20,5/08/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10806,9/08/2019 13:16,7/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14663,9/08/2019 13:13,5/08/2019 12:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14662,9/08/2019 13:13,5/08/2019 12:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18434,9/08/2019 12:54,2/08/2019 16:15,7.2,20, Improper Input Validation,nan
CVE-2017-18435,9/08/2019 12:46,2/08/2019 16:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-18436,9/08/2019 12:34,2/08/2019 17:15,2.7,200, Information Exposure,nan
CVE-2018-15746,9/08/2019 4:15,29/08/2018 19:29,2.1,358, Improperly Implemented Security Check for Standard,nan
CVE-2019-7889,9/08/2019 3:17,2/08/2019 22:15,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13111,9/08/2019 3:15,30/06/2019 23:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-13109,9/08/2019 3:15,30/06/2019 23:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-13108,9/08/2019 3:15,30/06/2019 23:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-7890,9/08/2019 3:08,2/08/2019 22:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-7897,9/08/2019 3:07,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7899,9/08/2019 3:06,2/08/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-7898,9/08/2019 3:06,2/08/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-7903,9/08/2019 3:05,2/08/2019 22:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7904,9/08/2019 3:04,2/08/2019 22:15,5.5,284, Improper Access Control,nan
CVE-2019-7909,9/08/2019 2:42,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7911,9/08/2019 2:41,2/08/2019 22:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7912,9/08/2019 2:31,2/08/2019 22:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7932,9/08/2019 2:26,2/08/2019 22:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7947,9/08/2019 2:21,2/08/2019 22:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5460,8/08/2019 21:15,30/07/2019 21:15,4.3,415, Double Free,nan
CVE-2019-5459,8/08/2019 21:15,30/07/2019 21:15,5.8,125, Out-of-bounds Read,nan
CVE-2019-13962,8/08/2019 21:15,18/07/2019 20:15,7.5,125, Out-of-bounds Read,nan
CVE-2017-18469,8/08/2019 20:32,5/08/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2016-10785,8/08/2019 20:28,6/08/2019 13:15,4.0,200, Information Exposure,nan
CVE-2017-18456,8/08/2019 20:25,2/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20947,8/08/2019 19:54,1/08/2019 17:15,2.1,668, Exposure of Resource to Wrong Sphere,nan
CVE-2018-20952,8/08/2019 19:51,1/08/2019 17:15,4.0,200, Information Exposure,nan
CVE-2016-10845,8/08/2019 19:46,1/08/2019 16:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20953,8/08/2019 19:42,1/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14259,8/08/2019 19:38,1/08/2019 15:15,7.7,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7950,8/08/2019 19:34,2/08/2019 22:15,5.0,284, Improper Access Control,nan
CVE-2016-10846,8/08/2019 19:29,1/08/2019 16:15,8.5,275, Permission Issues,nan
CVE-2016-10843,8/08/2019 19:24,1/08/2019 16:15,5.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-14242,8/08/2019 19:05,30/07/2019 18:15,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10768,8/08/2019 18:50,5/08/2019 13:15,5.5,20, Improper Input Validation,nan
CVE-2016-10769,8/08/2019 18:30,5/08/2019 13:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10776,8/08/2019 18:25,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10777,8/08/2019 18:11,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10780,8/08/2019 18:04,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10778,8/08/2019 17:54,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10781,8/08/2019 17:51,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10782,8/08/2019 17:40,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10784,8/08/2019 17:38,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10783,8/08/2019 17:38,6/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20941,8/08/2019 17:35,1/08/2019 17:15,4.7,200, Information Exposure,nan
CVE-2018-20929,8/08/2019 17:26,1/08/2019 16:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-20928,8/08/2019 17:22,1/08/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0887,8/08/2019 17:15,15/07/2019 19:15,8.5,20, Improper Input Validation,nan
CVE-2016-10837,8/08/2019 17:08,1/08/2019 16:15,8.5,426, Untrusted Search Path,nan
CVE-2018-20924,8/08/2019 16:57,1/08/2019 16:15,7.5,287, Improper Authentication,nan
CVE-2018-20890,8/08/2019 16:56,1/08/2019 14:15,4.0,284, Improper Access Control,nan
CVE-2013-2157,8/08/2019 16:55,20/08/2013 22:55,4.3,287, Improper Authentication,nan
CVE-2016-10844,8/08/2019 16:44,1/08/2019 16:15,4.0,200, Information Exposure,nan
CVE-2018-20882,8/08/2019 16:39,1/08/2019 13:15,6.6,20, Improper Input Validation,nan
CVE-2016-10848,8/08/2019 16:34,1/08/2019 16:15,9.0,285, Improper Authorization,nan
CVE-2016-10847,8/08/2019 16:21,1/08/2019 16:15,5.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-6451,8/08/2019 16:15,6/06/2019 19:29,5.0,287, Improper Authentication,nan
CVE-2018-20892,8/08/2019 16:10,1/08/2019 14:15,4.0,19, Data Processing Errors,nan
CVE-2016-10841,8/08/2019 16:04,1/08/2019 16:15,2.1,199, Information Management Errors,nan
CVE-2018-20897,8/08/2019 15:57,1/08/2019 14:15,3.3,20, Improper Input Validation,nan
CVE-2018-20899,8/08/2019 15:55,1/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18389,8/08/2019 15:46,2/08/2019 13:15,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-6316,8/08/2019 15:43,7/09/2016 19:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2098,8/08/2019 15:43,7/04/2016 23:59,7.5,20, Improper Input Validation,nan
CVE-2016-2097,8/08/2019 15:43,7/04/2016 23:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0753,8/08/2019 15:43,16/02/2016 2:59,5.0,20, Improper Input Validation,nan
CVE-2016-0752,8/08/2019 15:43,16/02/2016 2:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0751,8/08/2019 15:43,16/02/2016 2:59,5.0,399, Resource Management Errors,nan
CVE-2015-7581,8/08/2019 15:43,16/02/2016 2:59,5.0,399, Resource Management Errors,nan
CVE-2015-7577,8/08/2019 15:43,16/02/2016 2:59,5.0,284, Improper Access Control,nan
CVE-2015-7576,8/08/2019 15:43,16/02/2016 2:59,4.3,254, 7PK – Security Features,nan
CVE-2015-3226,8/08/2019 15:43,26/07/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7829,8/08/2019 15:43,18/11/2014 23:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-7818,8/08/2019 15:43,8/11/2014 11:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3514,8/08/2019 15:43,20/08/2014 11:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3483,8/08/2019 15:43,7/07/2014 11:01,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0130,8/08/2019 15:43,7/05/2014 10:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3482,8/08/2019 15:42,7/07/2014 11:01,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0082,8/08/2019 15:42,20/02/2014 15:27,5.0,20, Improper Input Validation,nan
CVE-2014-0081,8/08/2019 15:42,20/02/2014 15:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6417,8/08/2019 15:42,7/12/2013 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-6415,8/08/2019 15:42,7/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6414,8/08/2019 15:42,7/12/2013 0:55,5.0,20, Improper Input Validation,nan
CVE-2013-4491,8/08/2019 15:42,7/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4389,8/08/2019 15:42,17/10/2013 0:55,4.3,134, Use of Externally-Controlled Format String,nan
CVE-2013-3221,8/08/2019 15:42,22/04/2013 3:27,6.4,20, Improper Input Validation,nan
CVE-2013-1857,8/08/2019 15:42,19/03/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1856,8/08/2019 15:42,19/03/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-1855,8/08/2019 15:42,19/03/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1854,8/08/2019 15:42,19/03/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-0276,8/08/2019 15:42,13/02/2013 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0156,8/08/2019 15:42,13/01/2013 22:55,7.5,20, Improper Input Validation,nan
CVE-2013-0155,8/08/2019 15:42,13/01/2013 22:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6497,8/08/2019 15:42,4/01/2013 4:46,5.0,200, Information Exposure,nan
CVE-2012-6496,8/08/2019 15:42,4/01/2013 4:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3465,8/08/2019 15:42,10/08/2012 10:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3464,8/08/2019 15:42,10/08/2012 10:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3463,8/08/2019 15:42,10/08/2012 10:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3424,8/08/2019 15:42,8/08/2012 10:26,5.0,287, Improper Authentication,nan
CVE-2012-2695,8/08/2019 15:42,22/06/2012 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2694,8/08/2019 15:42,22/06/2012 14:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2661,8/08/2019 15:42,22/06/2012 14:55,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2660,8/08/2019 15:42,22/06/2012 14:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-1099,8/08/2019 15:42,13/03/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1098,8/08/2019 15:42,13/03/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4319,8/08/2019 15:42,28/11/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2932,8/08/2019 15:42,29/08/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2931,8/08/2019 15:42,29/08/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2930,8/08/2019 15:42,29/08/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2929,8/08/2019 15:42,29/08/2011 18:55,5.0,20, Improper Input Validation,nan
CVE-2011-2197,8/08/2019 15:42,30/06/2011 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6077,8/08/2019 15:42,21/11/2007 21:46,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-3187,8/08/2019 15:41,29/08/2011 18:55,4.3,20, Improper Input Validation,nan
CVE-2011-0449,8/08/2019 15:41,21/02/2011 18:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-0448,8/08/2019 15:41,21/02/2011 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0447,8/08/2019 15:41,14/02/2011 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0446,8/08/2019 15:41,14/02/2011 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18390,8/08/2019 15:28,2/08/2019 13:15,7.2,275, Permission Issues,nan
CVE-2014-0080,8/08/2019 15:26,20/02/2014 15:27,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6416,8/08/2019 15:26,7/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6317,8/08/2019 15:16,7/09/2016 19:28,5.0,476, NULL Pointer Dereference,nan
CVE-2015-7580,8/08/2019 15:16,16/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7579,8/08/2019 15:16,16/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7578,8/08/2019 15:16,16/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010155,8/08/2019 15:15,23/07/2019 14:15,6.4,287, Improper Authentication,nan
CVE-2017-7418,8/08/2019 15:15,4/04/2017 17:59,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-20873,8/08/2019 15:14,1/08/2019 13:15,2.1,20, Improper Input Validation,nan
CVE-2016-10859,8/08/2019 15:13,1/08/2019 15:15,5.5,285, Improper Authorization,nan
CVE-2017-18443,8/08/2019 15:03,2/08/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2016-10853,8/08/2019 14:56,1/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10852,8/08/2019 14:50,1/08/2019 15:15,4.0,284, Improper Access Control,nan
CVE-2010-3933,8/08/2019 14:49,28/10/2010 0:00,6.4,20, Improper Input Validation,nan
CVE-2017-18447,8/08/2019 14:48,2/08/2019 17:15,6.5,20, Improper Input Validation,nan
CVE-2019-14260,8/08/2019 14:47,1/08/2019 20:15,7.7,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-3916,8/08/2019 14:43,16/11/2014 17:59,5.0,19, Data Processing Errors,nan
CVE-2009-4214,8/08/2019 14:43,7/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3009,8/08/2019 14:43,8/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5189,8/08/2019 14:43,21/11/2008 12:00,5.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4094,8/08/2019 14:43,30/09/2008 17:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3186,8/08/2019 14:38,29/08/2011 18:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3086,8/08/2019 14:38,8/09/2009 18:30,5.0,200, Information Exposure,nan
CVE-2008-7248,8/08/2019 14:38,16/12/2009 1:30,6.8,20, Improper Input Validation,nan
CVE-2006-4111,8/08/2019 14:38,14/08/2006 21:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-18448,8/08/2019 14:34,2/08/2019 17:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3227,8/08/2019 14:33,14/06/2007 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5401,8/08/2019 14:31,1/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18449,8/08/2019 14:31,2/08/2019 17:15,2.1,20, Improper Input Validation,nan
CVE-2019-12750,8/08/2019 14:12,31/07/2019 18:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-7849,8/08/2019 13:34,2/08/2019 22:15,5.0,384, Session Fixation,nan
CVE-2017-18450,8/08/2019 13:32,2/08/2019 17:15,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2018-8088,8/08/2019 13:15,20/03/2018 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-10750,8/08/2019 13:15,22/05/2019 14:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-18461,8/08/2019 12:58,2/08/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2017-18455,8/08/2019 12:33,2/08/2019 17:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18430,8/08/2019 12:32,2/08/2019 16:15,4.6,20, Improper Input Validation,nan
CVE-2017-18445,8/08/2019 12:22,2/08/2019 17:15,4.0,254, 7PK – Security Features,nan
CVE-2017-18444,8/08/2019 12:20,2/08/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-7895,8/08/2019 12:19,2/08/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2017-18460,7/08/2019 20:26,2/08/2019 17:15,7.2,20, Improper Input Validation,nan
CVE-2019-7913,7/08/2019 20:21,2/08/2019 22:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7915,7/08/2019 20:16,2/08/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2017-18459,7/08/2019 20:08,2/08/2019 17:15,7.2,20, Improper Input Validation,nan
CVE-2017-18442,7/08/2019 20:06,2/08/2019 17:15,5.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-18441,7/08/2019 19:58,2/08/2019 17:15,4.0,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-7896,7/08/2019 19:54,2/08/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2019-7892,7/08/2019 19:45,2/08/2019 22:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-14456,7/08/2019 19:40,31/07/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13568,7/08/2019 19:34,31/07/2019 15:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7882,7/08/2019 19:31,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7888,7/08/2019 19:12,2/08/2019 22:15,4.0,200, Information Exposure,nan
CVE-2019-7874,7/08/2019 19:02,2/08/2019 22:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7934,7/08/2019 19:00,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7875,7/08/2019 18:59,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7885,7/08/2019 18:47,2/08/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2019-7886,7/08/2019 18:34,2/08/2019 22:15,5.0,310, Cryptographic Issues,nan
CVE-2019-7876,7/08/2019 18:32,2/08/2019 22:15,6.5,20, Improper Input Validation,nan
CVE-2019-7881,7/08/2019 18:23,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7872,7/08/2019 18:21,2/08/2019 22:15,5.5,285, Improper Authorization,nan
CVE-2019-6969,7/08/2019 18:19,2/08/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-6968,7/08/2019 18:10,2/08/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20951,7/08/2019 17:58,1/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7935,7/08/2019 17:57,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20950,7/08/2019 17:56,1/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20949,7/08/2019 17:53,1/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7887,7/08/2019 17:51,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7938,7/08/2019 17:50,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7871,7/08/2019 17:44,2/08/2019 22:15,6.5,254, 7PK – Security Features,nan
CVE-2019-7944,7/08/2019 17:43,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7940,7/08/2019 17:43,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7951,7/08/2019 17:39,2/08/2019 22:15,5.0,200, Information Exposure,nan
CVE-2019-7945,7/08/2019 17:38,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7873,7/08/2019 17:34,2/08/2019 22:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20948,7/08/2019 17:34,1/08/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18381,7/08/2019 17:31,30/07/2019 19:15,6.5,254, 7PK – Security Features,nan
CVE-2018-20946,7/08/2019 17:30,1/08/2019 17:15,2.1,200, Information Exposure,nan
CVE-2018-20944,7/08/2019 17:23,1/08/2019 17:15,2.1,200, Information Exposure,nan
CVE-2018-20940,7/08/2019 17:12,1/08/2019 17:15,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-11774,7/08/2019 17:12,29/07/2019 19:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11773,7/08/2019 17:01,29/07/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2018-20939,7/08/2019 16:55,1/08/2019 17:15,2.1,200, Information Exposure,nan
CVE-2016-10828,7/08/2019 16:42,1/08/2019 17:15,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-14465,7/08/2019 16:41,31/07/2019 23:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11772,7/08/2019 16:41,29/07/2019 19:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10824,7/08/2019 16:35,1/08/2019 17:15,9.3,20, Improper Input Validation,nan
CVE-2016-10765,7/08/2019 16:34,29/07/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2018-20886,7/08/2019 16:33,1/08/2019 14:15,4.6,254, 7PK – Security Features,nan
CVE-2018-20888,7/08/2019 16:27,1/08/2019 14:15,4.9,287, Improper Authentication,nan
CVE-2016-10823,7/08/2019 16:27,1/08/2019 17:15,9.0,20, Improper Input Validation,nan
CVE-2018-20933,7/08/2019 16:19,1/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20889,7/08/2019 16:00,1/08/2019 14:15,3.6,200, Information Exposure,nan
CVE-2018-20894,7/08/2019 15:52,1/08/2019 14:15,2.1,200, Information Exposure,nan
CVE-2018-20895,7/08/2019 15:44,1/08/2019 14:15,6.5,20, Improper Input Validation,nan
CVE-2018-20896,7/08/2019 15:35,1/08/2019 14:15,3.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-9291,7/08/2019 15:26,1/08/2019 15:15,5.0,284, Improper Access Control,nan
CVE-2019-14441,7/08/2019 15:20,30/07/2019 13:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13026,7/08/2019 15:10,30/07/2019 20:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13955,7/08/2019 14:52,26/07/2019 13:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-13954,7/08/2019 14:47,26/07/2019 13:15,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-10827,7/08/2019 14:35,1/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14248,7/08/2019 14:33,24/07/2019 4:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-14468,7/08/2019 14:31,1/08/2019 13:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20871,7/08/2019 14:27,30/07/2019 19:15,6.8,275, Permission Issues,nan
CVE-2019-7923,7/08/2019 14:16,2/08/2019 22:15,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7925,7/08/2019 14:15,2/08/2019 22:15,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-16865,7/08/2019 14:15,11/01/2019 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16864,7/08/2019 14:15,11/01/2019 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13655,7/08/2019 14:00,29/07/2019 19:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-7928,7/08/2019 13:58,2/08/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-2316,7/08/2019 13:58,25/07/2019 17:15,7.2,416, Use After Free,nan
CVE-2019-7929,7/08/2019 13:54,2/08/2019 22:15,4.0,200, Information Exposure,nan
CVE-2019-7930,7/08/2019 13:52,2/08/2019 22:15,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7942,7/08/2019 13:50,2/08/2019 22:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10822,7/08/2019 13:48,1/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20935,7/08/2019 13:44,1/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20907,7/08/2019 13:30,1/08/2019 15:15,4.0,254, 7PK – Security Features,nan
CVE-2018-20905,7/08/2019 13:28,1/08/2019 15:15,5.5,254, 7PK – Security Features,nan
CVE-2017-18473,7/08/2019 12:48,5/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20909,7/08/2019 12:47,1/08/2019 15:15,3.6,254, 7PK – Security Features,nan
CVE-2018-20908,7/08/2019 12:45,1/08/2019 15:15,2.1,254, 7PK – Security Features,nan
CVE-2017-18471,7/08/2019 12:44,5/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20904,7/08/2019 12:43,1/08/2019 15:15,4.0,254, 7PK – Security Features,nan
CVE-2018-20906,7/08/2019 12:41,1/08/2019 15:15,4.0,254, 7PK – Security Features,nan
CVE-2017-18472,7/08/2019 12:40,5/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18481,7/08/2019 12:36,5/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13571,6/08/2019 21:15,29/07/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11781,6/08/2019 21:15,17/09/2018 14:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-11780,6/08/2019 21:15,17/09/2018 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10856,6/08/2019 20:42,1/08/2019 15:15,4.0,284, Improper Access Control,nan
CVE-2017-18463,6/08/2019 20:30,2/08/2019 17:15,7.2,20, Improper Input Validation,nan
CVE-2017-18458,6/08/2019 20:29,2/08/2019 17:15,3.6,20, Improper Input Validation,nan
CVE-2017-18454,6/08/2019 20:27,2/08/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20874,6/08/2019 20:20,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20891,6/08/2019 20:16,1/08/2019 14:15,4.9,20, Improper Input Validation,nan
CVE-2019-10269,6/08/2019 20:15,29/03/2019 5:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20893,6/08/2019 20:13,1/08/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2019-14228,6/08/2019 20:07,26/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12743,6/08/2019 19:56,29/07/2019 16:15,5.0,200, Information Exposure,nan
CVE-2017-18380,6/08/2019 19:54,30/07/2019 13:15,5.0,284, Improper Access Control,nan
CVE-2016-10813,6/08/2019 19:20,1/08/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7861,6/08/2019 19:18,2/08/2019 22:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-3902,6/08/2019 19:15,22/04/2019 16:29,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-13103,6/08/2019 19:15,29/07/2019 15:15,6.4,399, Resource Management Errors,nan
CVE-2019-7862,6/08/2019 19:05,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18382,6/08/2019 19:03,2/08/2019 13:15,4.0,20, Improper Input Validation,nan
CVE-2017-18383,6/08/2019 19:01,2/08/2019 13:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-18384,6/08/2019 18:59,2/08/2019 13:15,2.1,284, Improper Access Control,nan
CVE-2019-7853,6/08/2019 18:56,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18385,6/08/2019 18:54,2/08/2019 13:15,2.1,284, Improper Access Control,nan
CVE-2017-18386,6/08/2019 18:46,2/08/2019 13:15,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-7863,6/08/2019 18:44,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7851,6/08/2019 18:43,2/08/2019 22:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7852,6/08/2019 18:39,2/08/2019 22:15,5.0,200, Information Exposure,nan
CVE-2019-7854,6/08/2019 18:38,2/08/2019 22:15,5.0,200, Information Exposure,nan
CVE-2019-7855,6/08/2019 18:37,2/08/2019 22:15,5.0,310, Cryptographic Issues,nan
CVE-2019-7857,6/08/2019 18:36,2/08/2019 22:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7858,6/08/2019 18:31,2/08/2019 22:15,5.0,310, Cryptographic Issues,nan
CVE-2019-7859,6/08/2019 18:30,2/08/2019 22:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7864,6/08/2019 18:29,2/08/2019 22:15,5.0,284, Improper Access Control,nan
CVE-2019-7860,6/08/2019 18:28,2/08/2019 22:15,5.0,310, Cryptographic Issues,nan
CVE-2019-7865,6/08/2019 18:14,2/08/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7866,6/08/2019 18:00,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7867,6/08/2019 17:59,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7868,6/08/2019 17:56,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7877,6/08/2019 17:50,2/08/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7880,6/08/2019 17:48,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7908,6/08/2019 17:47,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7921,6/08/2019 17:45,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7926,6/08/2019 17:43,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7937,6/08/2019 17:42,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7936,6/08/2019 17:42,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7927,6/08/2019 17:42,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7939,6/08/2019 17:41,2/08/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9755,6/08/2019 17:15,5/06/2019 15:29,4.4,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-7664,6/08/2019 17:15,9/02/2019 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7310,6/08/2019 17:15,3/02/2019 3:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-7222,6/08/2019 17:15,21/03/2019 16:01,2.1,200, Information Exposure,nan
CVE-2019-6501,6/08/2019 17:15,21/03/2019 16:01,2.1,787, Out-of-bounds Write,nan
CVE-2019-3811,6/08/2019 17:15,15/01/2019 15:29,2.7,20, Improper Input Validation,nan
CVE-2019-2529,6/08/2019 17:15,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-0160,6/08/2019 17:15,27/03/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9516,6/08/2019 17:15,6/11/2018 17:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-9363,6/08/2019 17:15,6/11/2018 17:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-9305,6/08/2019 17:15,4/04/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-8977,6/08/2019 17:15,25/03/2018 3:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8976,6/08/2019 17:15,25/03/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8905,6/08/2019 17:15,22/03/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7730,6/08/2019 17:15,6/03/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7456,6/08/2019 17:15,24/02/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-6790,6/08/2019 17:15,7/02/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-20650,6/08/2019 17:15,1/01/2019 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-20533,6/08/2019 17:15,28/12/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20532,6/08/2019 17:15,28/12/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20481,6/08/2019 17:15,26/12/2018 4:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19788,6/08/2019 17:15,3/12/2018 6:29,9.0,20, Improper Input Validation,nan
CVE-2018-19607,6/08/2019 17:15,27/11/2018 7:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19208,6/08/2019 17:15,12/11/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19199,6/08/2019 17:15,12/11/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-19198,6/08/2019 17:15,12/11/2018 15:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-19149,6/08/2019 17:15,10/11/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19060,6/08/2019 17:15,7/11/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19059,6/08/2019 17:15,7/11/2018 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19058,6/08/2019 17:15,7/11/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-19044,6/08/2019 17:15,8/11/2018 20:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-18661,6/08/2019 17:15,26/10/2018 14:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18585,6/08/2019 17:15,23/10/2018 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18584,6/08/2019 17:15,23/10/2018 2:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-17963,6/08/2019 17:15,9/10/2018 22:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-17581,6/08/2019 17:15,28/09/2018 9:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-17336,6/08/2019 17:15,22/09/2018 16:29,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2018-17282,6/08/2019 17:15,20/09/2018 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-16885,6/08/2019 17:15,3/01/2019 16:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-16881,6/08/2019 17:15,25/01/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-16858,6/08/2019 17:15,25/03/2019 18:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16842,6/08/2019 17:15,31/10/2018 19:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-16658,6/08/2019 17:15,7/09/2018 14:29,3.6,200, Information Exposure,nan
CVE-2018-16427,6/08/2019 17:15,4/09/2018 0:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-16423,6/08/2019 17:15,4/09/2018 0:29,4.6,415, Double Free,nan
CVE-2018-16422,6/08/2019 17:15,4/09/2018 0:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16421,6/08/2019 17:15,4/09/2018 0:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16420,6/08/2019 17:15,4/09/2018 0:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16419,6/08/2019 17:15,4/09/2018 0:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16418,6/08/2019 17:15,4/09/2018 0:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16393,6/08/2019 17:15,3/09/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16392,6/08/2019 17:15,3/09/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16391,6/08/2019 17:15,3/09/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15864,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15863,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15862,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15861,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15859,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15857,6/08/2019 17:15,25/08/2018 21:29,4.6,416, Use After Free,nan
CVE-2018-15855,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15854,6/08/2019 17:15,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15853,6/08/2019 17:15,25/08/2018 21:29,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-15686,6/08/2019 17:15,26/10/2018 14:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-15473,6/08/2019 17:15,17/08/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-14625,6/08/2019 17:15,10/09/2018 13:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-14600,6/08/2019 17:15,24/08/2018 19:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-14599,6/08/2019 17:15,24/08/2018 19:29,7.5,682, Incorrect Calculation,nan
CVE-2018-14598,6/08/2019 17:15,24/08/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-14348,6/08/2019 17:15,14/08/2018 18:29,5.5,200, Information Exposure,nan
CVE-2018-13347,6/08/2019 17:15,6/07/2018 0:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-13346,6/08/2019 17:15,6/07/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-13259,6/08/2019 17:15,5/09/2018 8:29,7.5,20, Improper Input Validation,nan
CVE-2018-13093,6/08/2019 17:15,3/07/2018 10:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-12265,6/08/2019 17:15,13/06/2018 11:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-12264,6/08/2019 17:15,13/06/2018 11:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-12015,6/08/2019 17:15,7/06/2018 13:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11037,6/08/2019 17:15,14/05/2018 3:29,4.3,200, Information Exposure,nan
CVE-2018-10998,6/08/2019 17:15,12/05/2018 4:29,4.3,388, 7PK – Errors,nan
CVE-2018-10958,6/08/2019 17:15,10/05/2018 2:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10893,6/08/2019 17:15,11/09/2018 15:29,6.5,190, Integer Overflow or Wraparound,nan
CVE-2018-10772,6/08/2019 17:15,7/05/2018 2:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10689,6/08/2019 17:15,3/05/2018 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6059,6/08/2019 17:15,12/04/2017 20:59,5.0,20, Improper Input Validation,nan
CVE-2017-18234,6/08/2019 17:15,15/03/2018 19:29,6.8,416, Use After Free,nan
CVE-2017-18189,6/08/2019 17:15,15/02/2018 10:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15112,6/08/2019 17:15,20/01/2018 0:29,2.1,200, Information Exposure,nan
CVE-2017-15111,6/08/2019 17:15,20/01/2018 0:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-3616,6/08/2019 17:15,13/02/2017 18:59,6.8,476, NULL Pointer Dereference,nan
CVE-2016-10739,6/08/2019 17:15,21/01/2019 19:29,4.6,20, Improper Input Validation,nan
CVE-2019-12948,6/08/2019 17:11,29/07/2019 16:15,6.5,749, Exposed Dangerous Method or Function,nan
CVE-2019-5020,6/08/2019 17:07,31/07/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2019-3960,6/08/2019 17:06,31/07/2019 18:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-14270,6/08/2019 16:52,25/07/2019 17:15,4.6,254, 7PK – Security Features,nan
CVE-2019-7869,6/08/2019 16:12,2/08/2019 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8341,6/08/2019 15:15,15/02/2019 7:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-7485,6/08/2019 15:15,26/02/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7409,6/08/2019 15:15,22/02/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7159,6/08/2019 15:15,17/05/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-1000876,6/08/2019 15:15,20/12/2018 17:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-7139,6/08/2019 14:15,10/04/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9492,6/08/2019 13:50,26/07/2019 14:15,4.6,254, 7PK – Security Features,nan
CVE-2019-14322,6/08/2019 13:34,28/07/2019 13:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7474,6/08/2019 12:19,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7473,6/08/2019 12:19,1/08/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12984,6/08/2019 8:15,26/06/2019 18:15,4.3,476, NULL Pointer Dereference,nan
CVE-2017-18424,6/08/2019 2:52,2/08/2019 16:15,2.1,200, Information Exposure,nan
CVE-2017-18422,6/08/2019 2:52,2/08/2019 16:15,2.1,275, Permission Issues,nan
CVE-2017-18423,6/08/2019 2:51,2/08/2019 16:15,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-18421,6/08/2019 2:50,2/08/2019 16:15,2.1,284, Improper Access Control,nan
CVE-2018-20900,6/08/2019 2:49,1/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10855,6/08/2019 2:49,1/08/2019 15:15,10.0,20, Improper Input Validation,nan
CVE-2016-10854,6/08/2019 2:49,1/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10851,6/08/2019 2:49,1/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10850,6/08/2019 2:49,1/08/2019 15:15,9.0,20, Improper Input Validation,nan
CVE-2016-10820,6/08/2019 1:59,1/08/2019 19:15,9.0,284, Improper Access Control,nan
CVE-2016-10819,6/08/2019 1:59,1/08/2019 19:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-10818,6/08/2019 1:59,1/08/2019 19:15,4.0,275, Permission Issues,nan
CVE-2016-10817,6/08/2019 1:59,1/08/2019 19:15,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10816,6/08/2019 1:59,1/08/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2016-10815,6/08/2019 1:59,1/08/2019 19:15,4.0,200, Information Exposure,nan
CVE-2016-10821,6/08/2019 1:58,1/08/2019 19:15,4.0,255, Credentials Management,nan
CVE-2017-18440,6/08/2019 1:57,2/08/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2016-10826,6/08/2019 1:57,1/08/2019 19:15,6.5,287, Improper Authentication,nan
CVE-2017-18453,6/08/2019 1:56,2/08/2019 17:15,4.0,20, Improper Input Validation,nan
CVE-2017-18451,6/08/2019 1:56,2/08/2019 17:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-13387,5/08/2019 23:15,26/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13386,5/08/2019 23:15,26/07/2019 13:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13385,5/08/2019 23:15,26/07/2019 13:15,4.0,200, Information Exposure,nan
CVE-2019-12170,5/08/2019 23:15,17/05/2019 22:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12169,5/08/2019 23:15,3/06/2019 20:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-14452,5/08/2019 22:15,31/07/2019 2:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1010025,5/08/2019 22:15,15/07/2019 4:15,5.0,200, Information Exposure,nan
CVE-2019-14653,5/08/2019 20:28,3/08/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14493,5/08/2019 20:25,1/08/2019 17:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-14541,5/08/2019 19:58,2/08/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14333,5/08/2019 19:52,1/08/2019 13:15,4.9,20, Improper Input Validation,nan
CVE-2019-14332,5/08/2019 19:50,1/08/2019 13:15,4.6,326, Inadequate Encryption Strength,nan
CVE-2019-14334,5/08/2019 19:45,1/08/2019 13:15,2.1,295, Improper Certificate Validation,nan
CVE-2019-14338,5/08/2019 19:31,1/08/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20872,5/08/2019 19:00,31/07/2019 18:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14517,5/08/2019 18:45,1/08/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12475,5/08/2019 18:15,17/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14323,5/08/2019 18:10,28/07/2019 13:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14472,5/08/2019 18:07,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11199,5/08/2019 18:04,29/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11200,5/08/2019 18:03,29/07/2019 16:15,6.5,20, Improper Input Validation,nan
CVE-2019-11201,5/08/2019 18:00,29/07/2019 16:15,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-14328,5/08/2019 17:55,28/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14352,5/08/2019 17:53,28/07/2019 17:15,6.8,20, Improper Input Validation,nan
CVE-2019-14363,5/08/2019 17:39,28/07/2019 18:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2330,5/08/2019 17:19,25/07/2019 17:15,4.9,20, Improper Input Validation,nan
CVE-2019-1020015,5/08/2019 17:11,29/07/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-2322,5/08/2019 17:08,25/07/2019 17:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2328,5/08/2019 17:04,25/07/2019 17:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2327,5/08/2019 16:57,25/07/2019 17:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2326,5/08/2019 16:51,25/07/2019 17:15,7.2,129, Improper Validation of Array Index,nan
CVE-2018-20859,5/08/2019 16:11,30/07/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-2314,5/08/2019 16:09,25/07/2019 17:15,4.4,416, Use After Free,nan
CVE-2017-18417,5/08/2019 15:43,2/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010208,5/08/2019 15:38,23/07/2019 14:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13897,5/08/2019 15:33,25/07/2019 17:15,5.0,200, Information Exposure,nan
CVE-2017-18418,5/08/2019 15:28,2/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010182,5/08/2019 15:24,25/07/2019 14:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-18419,5/08/2019 15:17,2/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13498,5/08/2019 15:15,29/07/2019 17:15,5.8,254, 7PK – Security Features,nan
CVE-2019-14249,5/08/2019 14:26,24/07/2019 4:15,4.3,369, Divide By Zero,nan
CVE-2017-18420,5/08/2019 14:25,2/08/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17211,5/08/2019 14:12,29/07/2019 18:15,5.0,200, Information Exposure,nan
CVE-2018-17213,5/08/2019 14:08,29/07/2019 18:15,4.0,287, Improper Authentication,nan
CVE-2016-10766,5/08/2019 14:01,29/07/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1010202,5/08/2019 13:57,23/07/2019 14:15,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-18570,5/08/2019 13:57,29/07/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14381,5/08/2019 13:33,30/07/2019 13:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-1010147,5/08/2019 13:26,26/07/2019 0:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010176,5/08/2019 13:19,25/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12453,5/08/2019 13:12,19/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12345,3/08/2019 21:15,27/05/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12239,3/08/2019 21:15,20/05/2019 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10866,3/08/2019 21:15,23/05/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1010257,3/08/2019 21:15,27/03/2019 19:30,7.5,200, Information Exposure,nan
CVE-2019-1000031,3/08/2019 21:15,27/03/2019 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-20651,3/08/2019 13:15,1/01/2019 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19932,3/08/2019 13:15,7/12/2018 7:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-19931,3/08/2019 13:15,7/12/2018 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14550,3/08/2019 13:15,10/07/2019 12:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12699,3/08/2019 13:15,23/06/2018 23:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-12697,3/08/2019 13:15,23/06/2018 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-10535,3/08/2019 13:15,29/04/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-10534,3/08/2019 13:15,29/04/2018 15:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-10373,3/08/2019 13:15,25/04/2018 9:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-10372,3/08/2019 13:15,25/04/2018 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17087,3/08/2019 13:15,1/12/2017 8:29,2.1,200, Information Exposure,nan
CVE-2017-11109,3/08/2019 13:15,8/07/2017 17:29,6.8,416, Use After Free,nan
CVE-2017-6275,2/08/2019 22:15,14/11/2017 16:29,5.0,200, Information Exposure,nan
CVE-2019-3958,2/08/2019 21:03,31/07/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3959,2/08/2019 20:53,31/07/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11921,2/08/2019 20:43,25/07/2019 21:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-14471,2/08/2019 20:30,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1020012,2/08/2019 20:25,29/07/2019 13:15,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2019-14268,2/08/2019 20:22,25/07/2019 16:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-17196,2/08/2019 20:15,11/07/2019 21:15,6.5,20, Improper Input Validation,nan
CVE-2018-1288,2/08/2019 20:15,26/07/2018 14:29,5.5,200, Information Exposure,nan
CVE-2019-14380,2/08/2019 19:13,30/07/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14192,2/08/2019 19:10,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14193,2/08/2019 19:09,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14194,2/08/2019 19:08,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14195,2/08/2019 18:55,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14196,2/08/2019 18:44,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14198,2/08/2019 18:43,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14199,2/08/2019 18:42,31/07/2019 13:15,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-1010221,2/08/2019 18:38,23/07/2019 14:15,4.4,284, Improper Access Control,nan
CVE-2018-6911,2/08/2019 18:35,13/02/2018 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10950,2/08/2019 18:35,10/05/2018 1:29,5.0,200, Information Exposure,nan
CVE-2017-16807,2/08/2019 18:35,13/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13494,2/08/2019 18:33,12/07/2019 4:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010004,2/08/2019 18:31,15/07/2019 2:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-12821,2/08/2019 18:30,19/07/2019 18:15,5.8,284, Improper Access Control,nan
CVE-2019-12820,2/08/2019 18:30,19/07/2019 18:15,4.3,255, Credentials Management,nan
CVE-2019-14200,2/08/2019 17:08,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14204,2/08/2019 16:48,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13991,2/08/2019 16:29,19/07/2019 21:15,3.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16943,2/08/2019 15:53,25/11/2017 17:29,7.5,416, Use After Free,nan
CVE-2019-5926,2/08/2019 15:40,27/03/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10905,2/08/2019 15:39,6/04/2019 20:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9970,2/08/2019 15:38,24/03/2019 2:29,4.3,20, Improper Input Validation,nan
CVE-2019-14202,2/08/2019 15:35,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6134,2/08/2019 15:33,9/04/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14203,2/08/2019 15:31,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14201,2/08/2019 15:30,31/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14197,2/08/2019 15:29,31/07/2019 13:15,6.4,125, Out-of-bounds Read,nan
CVE-2018-20880,2/08/2019 15:15,1/08/2019 13:15,2.1,19, Data Processing Errors,nan
CVE-2018-20883,2/08/2019 14:58,1/08/2019 13:15,4.0,20, Improper Input Validation,nan
CVE-2018-20901,2/08/2019 14:17,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20902,2/08/2019 14:15,1/08/2019 15:15,2.1,200, Information Exposure,nan
CVE-2018-20903,2/08/2019 14:13,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010161,2/08/2019 14:01,25/07/2019 14:15,7.5,284, Improper Access Control,nan
CVE-2018-20911,2/08/2019 14:00,1/08/2019 15:15,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20912,2/08/2019 13:45,1/08/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2018-20913,2/08/2019 13:40,1/08/2019 15:15,3.5,200, Information Exposure,nan
CVE-2019-11872,2/08/2019 13:15,29/05/2019 19:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20914,2/08/2019 12:54,1/08/2019 15:15,4.9,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-2805,2/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2740,2/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2739,2/08/2019 10:15,23/07/2019 23:15,3.6,284, Improper Access Control,nan
CVE-2019-2737,2/08/2019 10:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2018-20881,1/08/2019 20:25,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11223,1/08/2019 20:15,18/04/2019 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20879,1/08/2019 20:14,1/08/2019 13:15,6.5,20, Improper Input Validation,nan
CVE-2018-20878,1/08/2019 20:12,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20877,1/08/2019 20:11,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20876,1/08/2019 20:06,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20875,1/08/2019 20:00,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20884,1/08/2019 19:55,1/08/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20885,1/08/2019 19:53,1/08/2019 13:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20887,1/08/2019 19:51,1/08/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13613,1/08/2019 19:46,17/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20910,1/08/2019 19:21,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20915,1/08/2019 19:20,1/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20916,1/08/2019 19:17,1/08/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20917,1/08/2019 19:15,1/08/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2018-20918,1/08/2019 19:09,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20919,1/08/2019 19:08,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20920,1/08/2019 19:07,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20921,1/08/2019 19:05,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20922,1/08/2019 19:04,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20923,1/08/2019 18:49,1/08/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010163,1/08/2019 18:44,24/07/2019 12:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010183,1/08/2019 18:26,25/07/2019 13:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-14274,1/08/2019 17:47,26/07/2019 4:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14275,1/08/2019 17:41,26/07/2019 4:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7317,1/08/2019 17:15,4/02/2019 8:29,2.6,416, Use After Free,nan
CVE-2019-1010206,1/08/2019 17:00,23/07/2019 14:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-1020005,1/08/2019 16:59,29/07/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20857,1/08/2019 16:59,26/07/2019 12:15,5.0,20, Improper Input Validation,nan
CVE-2019-14243,1/08/2019 16:54,23/07/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-13607,1/08/2019 16:54,18/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010232,1/08/2019 16:43,22/07/2019 16:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1020003,1/08/2019 16:29,29/07/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1020006,1/08/2019 16:12,29/07/2019 15:15,5.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-14262,1/08/2019 15:58,25/07/2019 5:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-1010177,1/08/2019 15:45,24/07/2019 12:15,7.5,416, Use After Free,nan
CVE-2019-1010179,1/08/2019 15:19,24/07/2019 14:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1105,1/08/2019 15:05,29/07/2019 14:15,3.5,20, Improper Input Validation,nan
CVE-2019-1010172,1/08/2019 14:54,25/07/2019 14:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1020004,1/08/2019 14:42,29/07/2019 15:15,5.0,320, Key Management Errors,nan
CVE-2019-14373,1/08/2019 14:26,28/07/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-14368,1/08/2019 14:25,28/07/2019 19:15,6.8,125, Out-of-bounds Read,nan
CVE-2012-6712,1/08/2019 14:03,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1020001,1/08/2019 13:33,29/07/2019 13:15,5.0,21, Pathname Traversal and Equivalence Errors,nan
CVE-2019-1020016,1/08/2019 13:31,29/07/2019 13:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-1020013,1/08/2019 13:22,29/07/2019 13:15,5.0,287, Improper Authentication,nan
CVE-2015-9288,1/08/2019 13:21,29/07/2019 16:15,4.0,200, Information Exposure,nan
CVE-2019-13585,1/08/2019 13:15,17/07/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13584,1/08/2019 13:15,17/07/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10979,1/08/2019 13:15,1/07/2019 21:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2007-5023,1/08/2019 12:21,21/09/2007 19:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-4497,1/08/2019 12:21,21/09/2007 19:17,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-4496,1/08/2019 12:21,21/09/2007 19:17,6.5,399, Resource Management Errors,nan
CVE-2007-2789,1/08/2019 12:21,22/05/2007 0:30,4.3,399, Resource Management Errors,nan
CVE-2007-2788,1/08/2019 12:21,22/05/2007 0:30,6.8,189, Numeric Errors,nan
CVE-2018-10949,1/08/2019 12:19,10/05/2018 1:29,5.0,388, 7PK – Errors,nan
CVE-2019-1010279,1/08/2019 12:14,18/07/2019 19:15,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-14732,1/08/2019 12:14,21/09/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-14037,1/08/2019 12:14,28/09/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17831,1/08/2019 12:14,21/12/2017 6:29,6.8,20, Improper Input Validation,nan
CVE-2016-6443,1/08/2019 12:14,27/10/2016 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1981,1/08/2019 12:13,27/04/2008 20:05,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1977,1/08/2019 12:13,27/04/2008 20:05,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1976,1/08/2019 12:13,27/04/2008 20:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1748,1/08/2019 12:13,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-0768,1/08/2019 12:12,13/02/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0122,1/08/2019 12:12,16/01/2008 2:00,10.0,189, Numeric Errors,nan
CVE-2007-5571,1/08/2019 12:12,18/10/2007 21:17,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-5570,1/08/2019 12:12,18/10/2007 21:17,7.8,20, Improper Input Validation,nan
CVE-2019-2861,31/07/2019 22:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-13126,31/07/2019 21:31,29/07/2019 17:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-6726,31/07/2019 21:28,29/07/2019 16:15,5.8,20, Improper Input Validation,nan
CVE-2015-9289,31/07/2019 21:16,27/07/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2821,31/07/2019 21:15,23/07/2019 23:15,2.6,284, Improper Access Control,nan
CVE-2019-2818,31/07/2019 21:15,23/07/2019 23:15,2.6,284, Improper Access Control,nan
CVE-2018-16429,31/07/2019 21:15,4/09/2018 0:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-16428,31/07/2019 21:15,4/09/2018 0:29,7.5,476, NULL Pointer Dereference,nan
CVE-2019-14443,31/07/2019 20:44,30/07/2019 13:15,4.3,369, Divide By Zero,nan
CVE-2019-14315,31/07/2019 20:26,28/07/2019 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1020002,31/07/2019 20:19,29/07/2019 15:15,5.0,200, Information Exposure,nan
CVE-2019-1010238,31/07/2019 20:15,19/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1020009,31/07/2019 19:53,29/07/2019 15:15,5.0,255, Credentials Management,nan
CVE-2019-1020019,31/07/2019 19:44,29/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5601,31/07/2019 19:37,29/07/2019 16:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-6253,31/07/2019 19:32,29/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6960,31/07/2019 19:11,29/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14327,31/07/2019 18:45,30/07/2019 13:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1020008,31/07/2019 18:42,29/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13161,31/07/2019 18:08,12/07/2019 20:15,3.5,476, NULL Pointer Dereference,nan
CVE-2019-13956,31/07/2019 17:17,18/07/2019 18:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13960,31/07/2019 17:02,18/07/2019 19:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-13483,31/07/2019 16:23,25/07/2019 20:15,7.5,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-14286,31/07/2019 16:16,27/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9189,31/07/2019 16:15,5/06/2019 18:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7672,31/07/2019 16:15,5/06/2019 19:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-7666,31/07/2019 16:15,1/07/2019 19:15,6.5,287, Improper Authentication,nan
CVE-2019-7280,31/07/2019 16:15,1/07/2019 19:15,4.0,613, Insufficient Session Expiration,nan
CVE-2019-14399,31/07/2019 16:05,30/07/2019 15:15,6.1,200, Information Exposure,nan
CVE-2018-20870,31/07/2019 15:57,30/07/2019 15:15,2.1,200, Information Exposure,nan
CVE-2018-20869,31/07/2019 15:56,30/07/2019 15:15,7.2,20, Improper Input Validation,nan
CVE-2018-20864,31/07/2019 15:46,30/07/2019 15:15,6.4,20, Improper Input Validation,nan
CVE-2018-20862,31/07/2019 15:44,30/07/2019 15:15,2.1,255, Credentials Management,nan
CVE-2005-4850,31/07/2019 15:28,31/12/2005 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2005-4851,31/07/2019 15:26,31/12/2005 5:00,4.0,287, Improper Authentication,nan
CVE-2018-20863,31/07/2019 15:21,30/07/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-7670,31/07/2019 15:15,1/07/2019 19:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7667,31/07/2019 15:15,1/07/2019 19:15,6.4,287, Improper Authentication,nan
CVE-2019-7281,31/07/2019 15:15,1/07/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-14393,31/07/2019 15:03,30/07/2019 15:15,4.6,20, Improper Input Validation,nan
CVE-2019-14394,31/07/2019 14:50,30/07/2019 15:15,2.1,200, Information Exposure,nan
CVE-2019-14395,31/07/2019 14:41,30/07/2019 15:15,2.1,200, Information Exposure,nan
CVE-2019-14396,31/07/2019 14:34,30/07/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2019-14397,31/07/2019 14:29,30/07/2019 15:15,5.0,284, Improper Access Control,nan
CVE-2019-14398,31/07/2019 14:28,30/07/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2019-10263,31/07/2019 13:43,26/07/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10264,31/07/2019 13:39,26/07/2019 21:15,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10265,31/07/2019 13:05,26/07/2019 21:15,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2062,31/07/2019 12:55,26/06/2008 17:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1747,31/07/2019 12:53,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2017-1002026,31/07/2019 12:52,14/09/2017 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3905,31/07/2019 12:51,3/01/2019 19:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-10266,31/07/2019 12:47,26/07/2019 21:15,7.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2008-3108,31/07/2019 12:47,9/07/2008 23:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1189,31/07/2019 12:47,6/03/2008 21:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10267,31/07/2019 12:46,26/07/2019 21:15,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2008-1188,31/07/2019 12:45,6/03/2008 21:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1196,31/07/2019 12:43,6/03/2008 21:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5346,31/07/2019 12:42,5/12/2008 11:30,7.1,200, Information Exposure,nan
CVE-2008-1193,31/07/2019 12:41,6/03/2008 21:44,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1190,31/07/2019 12:40,6/03/2008 21:44,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1195,31/07/2019 12:38,6/03/2008 21:44,9.3,254, 7PK – Security Features,nan
CVE-2008-1192,31/07/2019 12:36,6/03/2008 21:44,6.8,254, 7PK – Security Features,nan
CVE-2008-1186,31/07/2019 12:35,6/03/2008 21:44,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1185,31/07/2019 12:35,6/03/2008 21:44,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5980,31/07/2019 8:15,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5979,31/07/2019 8:15,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5973,31/07/2019 8:15,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5972,31/07/2019 8:15,5/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5963,31/07/2019 8:15,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5962,31/07/2019 8:15,5/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14206,31/07/2019 8:15,21/07/2019 18:15,6.4,20, Improper Input Validation,nan
CVE-2019-14205,31/07/2019 8:15,21/07/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-13573,31/07/2019 8:15,17/07/2019 16:15,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13570,31/07/2019 8:15,23/07/2019 17:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13569,31/07/2019 8:15,19/07/2019 23:15,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13478,31/07/2019 8:15,9/07/2019 23:15,7.5,20, Improper Input Validation,nan
CVE-2019-13414,31/07/2019 8:15,8/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13413,31/07/2019 8:15,8/07/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13344,31/07/2019 8:15,5/07/2019 16:15,5.0,287, Improper Authentication,nan
CVE-2019-12826,31/07/2019 8:15,1/07/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6002,31/07/2019 5:15,26/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13225,31/07/2019 3:15,10/07/2019 14:15,5.0,476, NULL Pointer Dereference,nan
CVE-2018-1000169,31/07/2019 3:15,16/04/2018 9:58,5.0,200, Information Exposure,nan
CVE-2019-2842,31/07/2019 2:15,23/07/2019 23:15,4.3,284, Improper Access Control,nan
CVE-2019-2816,31/07/2019 2:15,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2786,31/07/2019 2:15,23/07/2019 23:15,2.6,284, Improper Access Control,nan
CVE-2019-2769,31/07/2019 2:15,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2762,31/07/2019 2:15,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2745,31/07/2019 2:15,23/07/2019 23:15,1.9,284, Improper Access Control,nan
CVE-2019-11727,30/07/2019 23:15,23/07/2019 14:15,5.0,295, Improper Certificate Validation,nan
CVE-2019-7610,30/07/2019 22:15,25/03/2019 19:29,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20867,30/07/2019 21:33,30/07/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-14392,30/07/2019 21:22,30/07/2019 14:15,6.5,20, Improper Input Validation,nan
CVE-2019-14401,30/07/2019 21:11,30/07/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2019-14400,30/07/2019 21:11,30/07/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-14402,30/07/2019 21:10,30/07/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2019-14403,30/07/2019 20:58,30/07/2019 15:15,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-14404,30/07/2019 20:55,30/07/2019 15:15,4.9,200, Information Exposure,nan
CVE-2019-14405,30/07/2019 20:47,30/07/2019 15:15,6.5,20, Improper Input Validation,nan
CVE-2019-14388,30/07/2019 20:38,30/07/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2018-20866,30/07/2019 20:37,30/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20868,30/07/2019 20:23,30/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14408,30/07/2019 20:20,30/07/2019 15:15,4.0,20, Improper Input Validation,nan
CVE-2019-14409,30/07/2019 20:17,30/07/2019 15:15,2.1,200, Information Exposure,nan
CVE-2015-1561,30/07/2019 20:15,14/07/2015 16:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1560,30/07/2019 20:15,14/07/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3829,30/07/2019 20:15,23/10/2014 1:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3828,30/07/2019 20:15,23/10/2014 1:55,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14410,30/07/2019 20:02,30/07/2019 15:15,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2019-14412,30/07/2019 19:56,30/07/2019 15:15,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2019-14411,30/07/2019 19:54,30/07/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-14413,30/07/2019 19:28,30/07/2019 15:15,4.0,20, Improper Input Validation,nan
CVE-2019-14414,30/07/2019 19:24,30/07/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2018-19312,30/07/2019 19:15,16/11/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19311,30/07/2019 19:15,16/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19281,30/07/2019 19:15,14/11/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19280,30/07/2019 19:15,14/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19271,30/07/2019 19:15,14/11/2018 11:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7672,30/07/2019 19:15,7/09/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14407,30/07/2019 19:10,30/07/2019 15:15,4.0,200, Information Exposure,nan
CVE-2019-14406,30/07/2019 19:00,30/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2346,30/07/2019 18:52,25/07/2019 17:15,7.2,129, Improper Validation of Array Index,nan
CVE-2018-20865,30/07/2019 18:24,30/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2877,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2876,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2875,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2874,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2873,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2867,30/07/2019 18:15,23/07/2019 23:15,4.6,284, Improper Access Control,nan
CVE-2019-2866,30/07/2019 18:15,23/07/2019 23:15,4.6,284, Improper Access Control,nan
CVE-2019-2865,30/07/2019 18:15,23/07/2019 23:15,4.4,284, Improper Access Control,nan
CVE-2019-2864,30/07/2019 18:15,23/07/2019 23:15,4.4,284, Improper Access Control,nan
CVE-2019-2863,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2859,30/07/2019 18:15,23/07/2019 23:15,4.6,284, Improper Access Control,nan
CVE-2019-2850,30/07/2019 18:15,23/07/2019 23:15,1.9,284, Improper Access Control,nan
CVE-2019-2848,30/07/2019 18:15,23/07/2019 23:15,2.1,284, Improper Access Control,nan
CVE-2019-2723,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2722,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2721,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2703,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2696,30/07/2019 18:15,23/04/2019 19:32,4.6,284, Improper Access Control,nan
CVE-2019-2690,30/07/2019 18:15,23/04/2019 19:32,4.4,284, Improper Access Control,nan
CVE-2019-2680,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2679,30/07/2019 18:15,23/04/2019 19:32,3.6,20, Improper Input Validation,nan
CVE-2019-2678,30/07/2019 18:15,23/04/2019 19:32,2.1,284, Improper Access Control,nan
CVE-2019-2657,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2656,30/07/2019 18:15,23/04/2019 19:32,4.6,20, Improper Input Validation,nan
CVE-2019-2574,30/07/2019 18:15,23/04/2019 19:32,2.1,284, Improper Access Control,nan
CVE-2018-20073,30/07/2019 18:15,27/06/2019 17:15,2.1,200, Information Exposure,nan
CVE-2014-8680,30/07/2019 18:15,11/12/2014 2:59,5.4,284, Improper Access Control,nan
CVE-2019-14387,30/07/2019 18:12,30/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14386,30/07/2019 18:03,30/07/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14389,30/07/2019 17:57,30/07/2019 13:15,2.1,255, Credentials Management,nan
CVE-2019-14390,30/07/2019 17:54,30/07/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14391,30/07/2019 17:53,30/07/2019 13:15,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-13589,30/07/2019 17:37,14/07/2019 16:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13590,30/07/2019 17:36,14/07/2019 16:15,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-13597,30/07/2019 17:34,14/07/2019 18:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1010009,30/07/2019 17:34,15/07/2019 3:15,7.5,275, Permission Issues,nan
CVE-2019-1010038,30/07/2019 17:17,15/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010304,30/07/2019 17:15,15/07/2019 15:15,5.0,284, Improper Access Control,nan
CVE-2019-1010306,30/07/2019 17:14,15/07/2019 15:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-4963,30/07/2019 17:13,13/06/2017 6:29,6.8,384, Session Fixation,nan
CVE-2012-4053,30/07/2019 15:51,25/07/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2817,30/07/2019 15:28,23/07/2019 23:15,3.6,284, Improper Access Control,nan
CVE-2019-14351,30/07/2019 14:56,28/07/2019 16:15,4.0,255, Credentials Management,nan
CVE-2019-2334,30/07/2019 14:32,25/07/2019 17:15,7.8,476, NULL Pointer Dereference,nan
CVE-2019-2343,30/07/2019 14:22,25/07/2019 17:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2345,30/07/2019 14:16,25/07/2019 17:15,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-1010127,30/07/2019 14:15,25/07/2019 19:15,6.8,416, Use After Free,nan
CVE-2019-14329,30/07/2019 14:03,28/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14330,30/07/2019 14:00,28/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14331,30/07/2019 13:51,28/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14349,30/07/2019 13:49,28/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14350,30/07/2019 13:48,28/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20784,30/07/2019 13:15,22/02/2019 15:29,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2018-1126,30/07/2019 13:15,23/05/2018 13:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-1124,30/07/2019 13:15,23/05/2018 13:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-14371,30/07/2019 12:32,28/07/2019 19:15,4.3,399, Resource Management Errors,nan
CVE-2019-13648,30/07/2019 12:15,19/07/2019 13:15,4.9,399, Resource Management Errors,nan
CVE-2019-1020007,30/07/2019 12:11,29/07/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000156,30/07/2019 10:15,6/04/2018 13:29,6.8,20, Improper Input Validation,nan
CVE-2019-12970,30/07/2019 9:15,1/07/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12865,30/07/2019 3:15,17/06/2019 23:15,4.3,415, Double Free,nan
CVE-2019-14370,29/07/2019 20:53,28/07/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14369,29/07/2019 20:52,28/07/2019 19:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14298,29/07/2019 20:41,27/07/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14297,29/07/2019 20:38,27/07/2019 23:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3461,29/07/2019 20:15,4/02/2019 18:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-1010191,29/07/2019 20:10,24/07/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-14266,29/07/2019 20:05,25/07/2019 16:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2312,29/07/2019 19:57,25/07/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2309,29/07/2019 19:55,25/07/2019 17:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-13604,29/07/2019 19:51,15/07/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-2308,29/07/2019 19:50,25/07/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-2307,29/07/2019 19:43,25/07/2019 17:15,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-2775,29/07/2019 19:35,23/07/2019 23:15,6.4,284, Improper Access Control,nan
CVE-2019-2278,29/07/2019 19:26,25/07/2019 17:15,7.2,287, Improper Authentication,nan
CVE-2019-2293,29/07/2019 19:15,25/07/2019 17:15,4.6,416, Use After Free,nan
CVE-2018-1312,29/07/2019 19:15,26/03/2018 15:29,6.8,287, Improper Authentication,nan
CVE-2019-1010207,29/07/2019 18:55,23/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2261,29/07/2019 18:09,22/07/2019 14:15,4.9,16, Configuration,nan
CVE-2017-6662,29/07/2019 17:47,26/06/2017 7:29,6.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-1408,29/07/2019 17:47,2/07/2016 14:59,6.5,20, Improper Input Validation,nan
CVE-2016-1406,29/07/2019 17:47,25/05/2016 1:59,6.5,284, Improper Access Control,nan
CVE-2016-1291,29/07/2019 17:47,6/04/2016 23:59,9.3,20, Improper Input Validation,nan
CVE-2016-1290,29/07/2019 17:47,6/04/2016 23:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1289,29/07/2019 17:47,2/07/2016 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6262,29/07/2019 17:47,25/08/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0679,29/07/2019 17:47,27/02/2014 20:55,9.0,20, Improper Input Validation,nan
CVE-2017-6699,29/07/2019 17:46,4/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3884,29/07/2019 17:46,7/04/2017 17:59,4.0,200, Information Exposure,nan
CVE-2017-3848,29/07/2019 17:46,7/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1442,29/07/2019 17:46,7/07/2016 14:59,9.0,20, Improper Input Validation,nan
CVE-2016-1359,29/07/2019 17:46,3/03/2016 22:59,6.5,20, Improper Input Validation,nan
CVE-2016-1358,29/07/2019 17:46,3/03/2016 22:59,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010246,29/07/2019 17:39,18/07/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-2777,29/07/2019 17:25,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2779,29/07/2019 17:19,23/07/2019 23:15,4.9,284, Improper Access Control,nan
CVE-2013-0267,29/07/2019 17:15,21/02/2018 15:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13100,29/07/2019 16:58,22/07/2019 16:15,4.0,255, Credentials Management,nan
CVE-2019-9811,29/07/2019 16:15,23/07/2019 14:15,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-11729,29/07/2019 16:15,23/07/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-11719,29/07/2019 16:15,23/07/2019 14:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-11717,29/07/2019 16:15,23/07/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-11715,29/07/2019 16:15,23/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11713,29/07/2019 16:15,23/07/2019 14:15,7.5,416, Use After Free,nan
CVE-2019-11712,29/07/2019 16:15,23/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11711,29/07/2019 16:15,23/07/2019 14:15,6.8,20, Improper Input Validation,nan
CVE-2019-11709,29/07/2019 16:15,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2253,29/07/2019 15:36,25/07/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2019-2254,29/07/2019 15:29,25/07/2019 17:15,7.5,200, Information Exposure,nan
CVE-2019-7659,29/07/2019 15:15,9/02/2019 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5967,29/07/2019 15:15,19/12/2012 11:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2839,29/07/2019 15:10,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-1010190,29/07/2019 14:55,24/07/2019 13:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-1010151,29/07/2019 14:52,19/07/2019 14:15,7.5,284, Improper Access Control,nan
CVE-2019-2840,29/07/2019 14:36,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2813,29/07/2019 14:30,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2833,29/07/2019 14:29,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2011-4073,29/07/2019 14:24,17/11/2011 19:55,4.0,399, Resource Management Errors,nan
CVE-2009-2185,29/07/2019 14:24,25/06/2009 2:00,5.0,20, Improper Input Validation,nan
CVE-2009-0790,29/07/2019 14:24,1/04/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2008-4190,29/07/2019 14:24,24/09/2008 11:42,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-2841,29/07/2019 14:23,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2235,29/07/2019 14:14,25/07/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14294,29/07/2019 14:09,27/07/2019 19:15,4.3,416, Use After Free,nan
CVE-2019-14293,29/07/2019 14:08,27/07/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14292,29/07/2019 14:08,27/07/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14291,29/07/2019 14:07,27/07/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-14290,29/07/2019 14:07,27/07/2019 19:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-1010100,29/07/2019 14:07,19/07/2019 16:15,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-14289,29/07/2019 14:05,27/07/2019 19:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-1010101,29/07/2019 14:05,19/07/2019 16:15,7.5,275, Permission Issues,nan
CVE-2019-14288,29/07/2019 14:04,27/07/2019 19:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-2878,29/07/2019 14:01,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-9815,29/07/2019 14:00,23/07/2019 14:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-11697,29/07/2019 13:51,23/07/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2019-12193,29/07/2019 13:46,19/07/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1010239,29/07/2019 13:45,19/07/2019 17:15,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-7954,29/07/2019 13:34,18/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010252,29/07/2019 13:28,18/07/2019 18:15,5.5,20, Improper Input Validation,nan
CVE-2019-10155,29/07/2019 13:26,12/06/2019 14:29,3.5,20, Improper Input Validation,nan
CVE-2014-2037,29/07/2019 13:26,26/11/2014 15:59,5.0,20, Improper Input Validation,nan
CVE-2013-2053,29/07/2019 13:26,9/07/2013 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3753,29/07/2019 13:26,5/10/2010 22:00,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-3752,29/07/2019 13:26,5/10/2010 22:00,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-3308,29/07/2019 13:26,5/10/2010 22:00,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3302,29/07/2019 13:26,5/10/2010 22:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9230,29/07/2019 13:22,18/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13603,29/07/2019 13:16,16/07/2019 17:15,4.3,310, Cryptographic Issues,nan
CVE-2019-1010043,29/07/2019 13:12,16/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2799,29/07/2019 12:57,23/07/2019 23:15,6.0,284, Improper Access Control,nan
CVE-2019-2857,29/07/2019 12:52,23/07/2019 23:15,4.9,284, Improper Access Control,nan
CVE-2019-13012,29/07/2019 11:15,28/06/2019 15:15,5.0,275, Permission Issues,nan
CVE-2019-13232,29/07/2019 1:15,4/07/2019 13:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-2263,29/07/2019 1:02,25/07/2019 17:15,4.6,416, Use After Free,nan
CVE-2019-2272,29/07/2019 0:57,25/07/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2273,29/07/2019 0:56,25/07/2019 17:15,7.8,125, Out-of-bounds Read,nan
CVE-2019-2276,29/07/2019 0:51,25/07/2019 17:15,10.0,125, Out-of-bounds Read,nan
CVE-2019-2281,29/07/2019 0:49,25/07/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2290,29/07/2019 0:44,25/07/2019 17:15,4.6,416, Use After Free,nan
CVE-2019-2298,29/07/2019 0:42,25/07/2019 17:15,4.6,416, Use After Free,nan
CVE-2019-2824,29/07/2019 0:39,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2299,29/07/2019 0:34,25/07/2019 17:15,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-2305,29/07/2019 0:32,25/07/2019 17:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-2301,29/07/2019 0:31,25/07/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2306,29/07/2019 0:27,25/07/2019 17:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11702,29/07/2019 0:14,23/07/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-11698,29/07/2019 0:06,23/07/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-11699,28/07/2019 23:54,23/07/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2019-11696,28/07/2019 23:49,23/07/2019 14:15,6.8,20, Improper Input Validation,nan
CVE-2019-1010263,28/07/2019 23:46,17/07/2019 21:15,7.5,284, Improper Access Control,nan
CVE-2019-13228,28/07/2019 3:15,4/07/2019 12:15,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-13227,28/07/2019 3:15,4/07/2019 12:15,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-13226,28/07/2019 3:15,4/07/2019 12:15,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-5051,27/07/2019 22:15,3/07/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6814,27/07/2019 20:15,22/05/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2018-1042,27/07/2019 19:15,22/01/2018 8:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-13978,27/07/2019 17:15,19/07/2019 7:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13977,27/07/2019 17:15,19/07/2019 7:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5741,26/07/2019 22:15,16/01/2019 20:29,4.0,254, 7PK – Security Features,nan
CVE-2019-1010193,26/07/2019 20:46,24/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2856,26/07/2019 20:36,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2843,26/07/2019 20:35,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2845,26/07/2019 20:34,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2858,26/07/2019 20:31,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2829,26/07/2019 20:30,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2736,26/07/2019 20:28,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2744,26/07/2019 20:20,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2754,26/07/2019 20:19,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2790,26/07/2019 20:18,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2793,26/07/2019 20:11,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2794,26/07/2019 20:06,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2827,26/07/2019 20:05,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2828,26/07/2019 20:04,23/07/2019 23:15,6.8,284, Improper Access Control,nan
CVE-2018-2883,26/07/2019 19:50,23/07/2019 23:15,6.0,284, Improper Access Control,nan
CVE-2019-2770,26/07/2019 19:48,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2823,26/07/2019 19:41,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2750,26/07/2019 19:37,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2781,26/07/2019 19:19,23/07/2019 23:15,4.0,200, Information Exposure,nan
CVE-2019-2792,26/07/2019 19:13,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2825,26/07/2019 18:56,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2783,26/07/2019 18:49,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2782,26/07/2019 18:46,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-11701,26/07/2019 18:38,23/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2733,26/07/2019 18:30,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2735,26/07/2019 18:21,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2728,26/07/2019 18:08,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2732,26/07/2019 17:54,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-11695,26/07/2019 17:49,23/07/2019 14:15,4.3,20, Improper Input Validation,nan
CVE-2019-2236,26/07/2019 17:44,25/07/2019 17:15,2.1,476, NULL Pointer Dereference,nan
CVE-2019-2668,26/07/2019 17:38,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2666,26/07/2019 17:35,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-11989,26/07/2019 17:33,19/07/2019 22:15,7.1,20, Improper Input Validation,nan
CVE-2019-9814,26/07/2019 17:30,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010205,26/07/2019 17:12,23/07/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-2237,26/07/2019 17:09,25/07/2019 17:15,2.1,388, 7PK – Errors,nan
CVE-2019-9800,26/07/2019 17:00,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11694,26/07/2019 16:38,23/07/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-2238,26/07/2019 16:33,25/07/2019 17:15,4.6,125, Out-of-bounds Read,nan
CVE-2019-2239,26/07/2019 16:26,25/07/2019 17:15,2.1,20, Improper Input Validation,nan
CVE-2019-11691,26/07/2019 16:23,23/07/2019 14:15,7.5,416, Use After Free,nan
CVE-2019-9816,26/07/2019 16:20,23/07/2019 14:15,4.3,704, Incorrect Type Conversion or Cast,nan
CVE-2019-9818,26/07/2019 16:19,23/07/2019 14:15,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-9817,26/07/2019 16:19,23/07/2019 14:15,5.0,346, Origin Validation Error,nan
CVE-2019-9819,26/07/2019 16:17,23/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-2240,26/07/2019 16:16,25/07/2019 17:15,2.1,388, 7PK – Errors,nan
CVE-2019-9820,26/07/2019 16:15,23/07/2019 14:15,7.5,416, Use After Free,nan
CVE-2019-9821,26/07/2019 16:11,23/07/2019 14:15,6.8,416, Use After Free,nan
CVE-2019-2241,26/07/2019 16:06,25/07/2019 17:15,2.1,20, Improper Input Validation,nan
CVE-2019-9231,26/07/2019 15:51,18/07/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9228,26/07/2019 15:17,19/07/2019 23:15,5.0,399, Resource Management Errors,nan
CVE-2018-17210,26/07/2019 15:12,20/07/2019 0:15,6.5,285, Improper Authorization,nan
CVE-2015-7666,26/07/2019 15:02,27/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9229,26/07/2019 14:46,20/07/2019 0:15,5.8,255, Credentials Management,nan
CVE-2019-8286,26/07/2019 14:42,18/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-13097,26/07/2019 14:25,22/07/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2019-13024,26/07/2019 14:15,1/07/2019 19:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2009-1432,26/07/2019 14:02,30/04/2009 20:30,5.0,20, Improper Input Validation,nan
CVE-2019-13099,26/07/2019 13:59,22/07/2019 16:15,4.0,255, Credentials Management,nan
CVE-2019-13096,26/07/2019 13:46,22/07/2019 17:15,5.0,255, Credentials Management,nan
CVE-2019-1010149,26/07/2019 13:35,23/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-1010150,26/07/2019 13:33,23/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-2742,26/07/2019 13:26,23/07/2019 23:15,6.4,284, Improper Access Control,nan
CVE-2019-2787,26/07/2019 13:23,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-2788,26/07/2019 13:21,23/07/2019 23:15,2.6,284, Improper Access Control,nan
CVE-2019-2804,26/07/2019 13:20,23/07/2019 23:15,6.9,284, Improper Access Control,nan
CVE-2019-2807,26/07/2019 13:19,23/07/2019 23:15,3.3,284, Improper Access Control,nan
CVE-2018-19802,26/07/2019 13:15,7/06/2019 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-19801,26/07/2019 13:15,7/06/2019 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-19800,26/07/2019 13:15,7/06/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2753,26/07/2019 13:05,23/07/2019 23:15,4.9,284, Improper Access Control,nan
CVE-2019-2776,26/07/2019 12:56,23/07/2019 23:15,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-14247,26/07/2019 12:47,24/07/2019 4:15,4.3,787, Out-of-bounds Write,nan
CVE-2019-2809,26/07/2019 12:29,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2836,26/07/2019 12:25,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2831,26/07/2019 12:24,23/07/2019 23:15,5.5,284, Improper Access Control,nan
CVE-2019-2837,26/07/2019 12:18,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2860,26/07/2019 12:17,23/07/2019 23:15,6.8,284, Improper Access Control,nan
CVE-2019-2862,26/07/2019 12:15,23/07/2019 23:15,4.0,284, Improper Access Control,nan
CVE-2019-5285,26/07/2019 11:15,4/06/2019 19:29,7.8,20, Improper Input Validation,nan
CVE-2019-5284,26/07/2019 11:15,4/06/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2019-3591,26/07/2019 11:15,24/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10354,26/07/2019 7:15,17/07/2019 16:15,4.0,200, Information Exposure,nan
CVE-2019-10353,26/07/2019 7:15,17/07/2019 16:15,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13631,26/07/2019 3:15,17/07/2019 19:15,4.6,787, Out-of-bounds Write,nan
CVE-2019-11133,26/07/2019 3:15,11/07/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-18095,26/07/2019 3:15,11/07/2019 21:15,4.6,287, Improper Authentication,nan
CVE-2019-2054,26/07/2019 0:15,8/05/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1579,26/07/2019 0:15,19/07/2019 22:15,6.8,20, Improper Input Validation,nan
CVE-2019-3859,25/07/2019 21:15,21/03/2019 16:01,6.4,125, Out-of-bounds Read,nan
CVE-2019-13115,25/07/2019 21:15,16/07/2019 18:15,5.8,190, Integer Overflow or Wraparound,nan
CVE-2019-2835,25/07/2019 20:47,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2846,25/07/2019 20:38,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-14241,25/07/2019 20:38,23/07/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-2847,25/07/2019 20:35,23/07/2019 23:15,3.5,284, Improper Access Control,nan
CVE-2019-2820,25/07/2019 20:33,23/07/2019 23:15,4.4,284, Improper Access Control,nan
CVE-2019-2852,25/07/2019 20:30,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2838,25/07/2019 20:30,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2844,25/07/2019 20:28,23/07/2019 23:15,4.6,284, Improper Access Control,nan
CVE-2019-12162,25/07/2019 20:28,23/07/2019 15:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-2853,25/07/2019 20:17,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2855,25/07/2019 20:11,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2854,25/07/2019 20:11,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2672,25/07/2019 20:08,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2727,25/07/2019 20:04,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-11693,25/07/2019 20:02,23/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2760,25/07/2019 19:50,23/07/2019 23:15,3.7,284, Improper Access Control,nan
CVE-2019-1167,25/07/2019 19:46,19/07/2019 15:15,1.9,254, 7PK – Security Features,nan
CVE-2019-2761,25/07/2019 19:38,23/07/2019 23:15,4.3,284, Improper Access Control,nan
CVE-2019-12934,25/07/2019 19:38,20/07/2019 0:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2763,25/07/2019 19:31,23/07/2019 23:15,6.4,284, Improper Access Control,nan
CVE-2019-2771,25/07/2019 19:30,23/07/2019 23:15,6.0,284, Improper Access Control,nan
CVE-2019-1010199,25/07/2019 19:19,23/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010113,25/07/2019 19:19,19/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13272,25/07/2019 19:15,17/07/2019 13:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11219,25/07/2019 19:15,17/06/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-11218,25/07/2019 19:15,17/06/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11692,25/07/2019 18:55,23/07/2019 14:15,7.5,416, Use After Free,nan
CVE-2019-14240,25/07/2019 18:18,23/07/2019 12:15,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3622,25/07/2019 18:15,24/07/2019 16:15,4.6,284, Improper Access Control,nan
CVE-2019-12164,25/07/2019 17:46,23/07/2019 23:15,7.5,20, Improper Input Validation,nan
CVE-2019-11700,25/07/2019 17:39,23/07/2019 14:15,4.3,200, Information Exposure,nan
CVE-2019-13615,25/07/2019 17:15,16/07/2019 17:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13602,25/07/2019 17:15,14/07/2019 21:15,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-19857,25/07/2019 17:15,5/12/2018 11:29,6.4,824, Access of Uninitialized Pointer,nan
CVE-2019-2749,25/07/2019 16:57,23/07/2019 23:15,4.9,284, Improper Access Control,nan
CVE-2019-1010234,25/07/2019 16:52,22/07/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-2773,25/07/2019 16:49,23/07/2019 23:15,5.0,284, Improper Access Control,nan
CVE-2019-2772,25/07/2019 16:39,23/07/2019 23:15,5.8,284, Improper Access Control,nan
CVE-2019-2768,25/07/2019 16:37,23/07/2019 23:15,5.0,200, Information Exposure,nan
CVE-2019-2767,25/07/2019 16:35,23/07/2019 23:15,6.4,284, Improper Access Control,nan
CVE-2019-2751,25/07/2019 16:33,23/07/2019 23:15,4.3,284, Improper Access Control,nan
CVE-2019-2764,25/07/2019 16:31,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2748,25/07/2019 16:27,23/07/2019 23:15,4.9,284, Improper Access Control,nan
CVE-2019-1010245,25/07/2019 16:19,19/07/2019 15:15,7.5,20, Improper Input Validation,nan
CVE-2019-2759,25/07/2019 15:48,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-2756,25/07/2019 15:48,23/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-13982,25/07/2019 15:43,19/07/2019 15:15,5.0,200, Information Exposure,nan
CVE-2018-18675,25/07/2019 15:38,23/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18673,25/07/2019 15:38,23/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18672,25/07/2019 15:38,23/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18671,25/07/2019 15:38,23/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18670,25/07/2019 15:38,23/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18669,25/07/2019 15:38,23/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18676,25/07/2019 15:36,23/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2868,25/07/2019 15:28,23/07/2019 23:15,3.7,284, Improper Access Control,nan
CVE-2019-3414,25/07/2019 15:18,22/07/2019 19:15,2.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2869,25/07/2019 15:14,23/07/2019 23:15,3.7,284, Improper Access Control,nan
CVE-2019-2870,25/07/2019 15:10,23/07/2019 23:15,3.7,284, Improper Access Control,nan
CVE-2019-2871,25/07/2019 15:08,23/07/2019 23:15,3.7,284, Improper Access Control,nan
CVE-2019-13915,25/07/2019 15:06,18/07/2019 15:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13637,25/07/2019 14:53,17/07/2019 21:15,9.3,20, Improper Input Validation,nan
CVE-2019-1010250,25/07/2019 14:49,18/07/2019 18:15,5.5,20, Improper Input Validation,nan
CVE-2018-3111,25/07/2019 14:19,23/07/2019 23:15,6.8,284, Improper Access Control,nan
CVE-2018-3316,25/07/2019 14:01,23/07/2019 23:15,6.5,284, Improper Access Control,nan
CVE-2019-2484,25/07/2019 13:59,23/07/2019 23:15,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-2561,25/07/2019 13:53,23/07/2019 23:15,6.4,284, Improper Access Control,nan
CVE-2019-2569,25/07/2019 13:51,23/07/2019 23:15,1.2,284, Improper Access Control,nan
CVE-2019-2599,25/07/2019 13:48,23/07/2019 23:15,4.0,200, Information Exposure,nan
CVE-2019-1010066,25/07/2019 13:26,18/07/2019 14:15,5.0,284, Improper Access Control,nan
CVE-2018-13896,25/07/2019 12:55,22/07/2019 14:15,7.2,284, Improper Access Control,nan
CVE-2018-3315,25/07/2019 12:40,23/07/2019 23:15,4.9,284, Improper Access Control,nan
CVE-2019-14213,25/07/2019 12:15,21/07/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-12597,25/07/2019 10:15,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12596,25/07/2019 10:15,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12595,25/07/2019 10:15,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12537,25/07/2019 10:15,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-14211,25/07/2019 8:15,21/07/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-5839,25/07/2019 4:15,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2019-5838,25/07/2019 4:15,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2019-5837,25/07/2019 4:15,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-5836,25/07/2019 4:15,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5835,25/07/2019 4:15,27/06/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-5834,25/07/2019 4:15,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2019-5833,25/07/2019 4:15,27/06/2019 17:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5832,25/07/2019 4:15,27/06/2019 17:15,4.3,284, Improper Access Control,nan
CVE-2019-5831,25/07/2019 4:15,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5830,25/07/2019 4:15,27/06/2019 17:15,4.3,284, Improper Access Control,nan
CVE-2019-5829,25/07/2019 4:15,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2019-5828,25/07/2019 4:15,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2019-5827,25/07/2019 4:15,27/06/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5824,25/07/2019 4:15,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5823,25/07/2019 4:15,27/06/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-5822,25/07/2019 4:15,27/06/2019 17:15,6.8,284, Improper Access Control,nan
CVE-2019-5821,25/07/2019 4:15,27/06/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5820,25/07/2019 4:15,27/06/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5819,25/07/2019 4:15,27/06/2019 17:15,4.4,20, Improper Input Validation,nan
CVE-2019-5818,25/07/2019 4:15,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-5817,25/07/2019 4:15,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5816,25/07/2019 4:15,27/06/2019 17:15,6.8,664, Improper Control of a Resource Through its Lifetime,nan
CVE-2019-5814,25/07/2019 4:15,27/06/2019 17:15,4.3,285, Improper Authorization,nan
CVE-2019-5812,25/07/2019 4:15,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2019-5811,25/07/2019 4:15,27/06/2019 17:15,6.8,19, Data Processing Errors,nan
CVE-2019-5807,25/07/2019 4:15,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5806,25/07/2019 4:15,27/06/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5805,25/07/2019 4:15,27/06/2019 17:15,4.3,416, Use After Free,nan
CVE-2018-10875,25/07/2019 2:15,13/07/2018 22:29,7.5,426, Untrusted Search Path,nan
CVE-2018-10874,25/07/2019 2:15,2/07/2018 13:29,4.6,20, Improper Input Validation,nan
CVE-2018-10855,25/07/2019 2:15,3/07/2018 1:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-7481,25/07/2019 2:15,19/07/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2019-3876,25/07/2019 0:15,1/04/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11990,24/07/2019 21:15,19/07/2019 22:15,9.0,284, Improper Access Control,nan
CVE-2019-1010136,24/07/2019 20:35,19/07/2019 16:15,7.8,284, Improper Access Control,nan
CVE-2018-13924,24/07/2019 20:27,22/07/2019 14:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13927,24/07/2019 20:14,22/07/2019 14:15,7.2,287, Improper Authentication,nan
CVE-2019-5222,24/07/2019 19:42,17/07/2019 22:15,4.3,200, Information Exposure,nan
CVE-2018-0511,24/07/2019 18:25,1/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13029,24/07/2019 18:16,11/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2243,24/07/2019 17:44,22/07/2019 14:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010268,24/07/2019 17:39,18/07/2019 17:15,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-13636,24/07/2019 17:15,17/07/2019 21:15,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-10194,24/07/2019 16:21,18/04/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13989,24/07/2019 15:57,19/07/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010249,24/07/2019 15:51,18/07/2019 18:15,5.5,190, Integer Overflow or Wraparound,nan
CVE-2019-11230,24/07/2019 15:33,18/07/2019 17:15,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-1010201,24/07/2019 15:17,23/07/2019 18:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13098,24/07/2019 15:03,22/07/2019 16:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2014-10374,24/07/2019 13:42,15/07/2019 13:15,3.3,200, Information Exposure,nan
CVE-2019-2260,24/07/2019 13:22,22/07/2019 14:15,6.9,416, Use After Free,nan
CVE-2019-2264,24/07/2019 13:21,22/07/2019 14:15,4.6,476, NULL Pointer Dereference,nan
CVE-2019-1010152,24/07/2019 12:56,23/07/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-1010153,24/07/2019 12:51,23/07/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1010148,24/07/2019 12:48,23/07/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13577,24/07/2019 12:30,17/07/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11535,24/07/2019 12:25,17/07/2019 20:15,10.0,20, Improper Input Validation,nan
CVE-2018-1320,24/07/2019 9:15,7/01/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-0595,24/07/2019 8:15,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5680,24/07/2019 7:15,19/07/2019 20:15,4.6,20, Improper Input Validation,nan
CVE-2019-12838,24/07/2019 3:15,11/07/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11331,24/07/2019 0:15,18/04/2019 22:29,6.8,254, 7PK – Security Features,nan
CVE-2019-6129,23/07/2019 23:15,11/01/2019 5:29,4.3,399, Resource Management Errors,nan
CVE-2019-3823,23/07/2019 23:15,6/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-2729,23/07/2019 23:15,19/06/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2019-0222,23/07/2019 23:15,28/03/2019 22:29,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-0192,23/07/2019 23:15,7/03/2019 21:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-0190,23/07/2019 23:15,30/01/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-8013,23/07/2019 23:15,24/05/2018 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-5407,23/07/2019 23:15,15/11/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-17199,23/07/2019 23:15,30/01/2019 22:29,5.0,384, Session Fixation,nan
CVE-2018-17189,23/07/2019 23:15,30/01/2019 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-16890,23/07/2019 23:15,6/02/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-15769,23/07/2019 23:15,16/11/2018 21:29,5.0,320, Key Management Errors,nan
CVE-2018-1271,23/07/2019 23:15,6/04/2018 13:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1257,23/07/2019 23:15,11/05/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-11056,23/07/2019 23:15,31/08/2018 18:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-11055,23/07/2019 23:15,31/08/2018 18:29,2.1,404, Improper Resource Shutdown or Release,nan
CVE-2018-11054,23/07/2019 23:15,31/08/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000121,23/07/2019 23:15,14/03/2018 18:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-0735,23/07/2019 23:15,29/10/2018 13:29,4.3,320, Key Management Errors,nan
CVE-2016-8610,23/07/2019 23:15,13/11/2017 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-6497,23/07/2019 23:15,18/01/2017 22:59,5.0,254, 7PK – Security Features,nan
CVE-2015-0226,23/07/2019 23:15,30/10/2017 14:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-2101,23/07/2019 20:15,7/06/2019 20:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-1158,23/07/2019 20:15,23/08/2018 19:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-1157,23/07/2019 20:15,23/08/2018 19:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000190,23/07/2019 20:15,17/11/2017 21:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-0279,23/07/2019 20:15,26/03/2015 14:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-1010248,23/07/2019 19:29,18/07/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1010170,23/07/2019 19:25,23/07/2019 14:15,5.0,416, Use After Free,nan
CVE-2019-1010169,23/07/2019 19:24,23/07/2019 14:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-14231,23/07/2019 19:20,21/07/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1010171,23/07/2019 19:19,23/07/2019 14:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-1010173,23/07/2019 19:01,23/07/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-14230,23/07/2019 18:55,21/07/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3969,23/07/2019 18:35,17/07/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12731,23/07/2019 18:35,12/07/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-3970,23/07/2019 18:29,17/07/2019 21:15,2.1,20, Improper Input Validation,nan
CVE-2019-3971,23/07/2019 18:28,17/07/2019 21:15,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010251,23/07/2019 18:23,18/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-3972,23/07/2019 18:21,17/07/2019 21:15,2.1,125, Out-of-bounds Read,nan
CVE-2019-3973,23/07/2019 18:19,17/07/2019 21:15,4.9,787, Out-of-bounds Write,nan
CVE-2019-6286,23/07/2019 18:15,14/01/2019 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-6284,23/07/2019 18:15,14/01/2019 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6283,23/07/2019 18:15,14/01/2019 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12904,23/07/2019 18:15,20/06/2019 0:15,4.3,310, Cryptographic Issues,nan
CVE-2019-12815,23/07/2019 18:15,19/07/2019 23:15,7.5,284, Improper Access Control,nan
CVE-2018-20822,23/07/2019 18:15,23/04/2019 14:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-20821,23/07/2019 18:15,23/04/2019 14:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-20743,23/07/2019 18:15,25/01/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-20190,23/07/2019 18:15,17/12/2018 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19839,23/07/2019 18:15,4/12/2018 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19838,23/07/2019 18:15,4/12/2018 9:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-19837,23/07/2019 18:15,4/12/2018 9:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-19827,23/07/2019 18:15,3/12/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-19797,23/07/2019 18:15,3/12/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18541,23/07/2019 18:15,20/10/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-17024,23/07/2019 18:15,13/09/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11499,23/07/2019 18:15,26/05/2018 20:29,7.5,416, Use After Free,nan
CVE-2019-12551,23/07/2019 18:14,22/07/2019 20:15,5.8,20, Improper Input Validation,nan
CVE-2019-12927,23/07/2019 17:51,8/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010084,23/07/2019 17:22,17/07/2019 14:15,4.0,284, Improper Access Control,nan
CVE-2019-11553,23/07/2019 17:15,19/07/2019 17:15,6.5,284, Improper Access Control,nan
CVE-2019-13614,23/07/2019 17:06,17/07/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010104,23/07/2019 16:47,18/07/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13643,23/07/2019 16:43,18/07/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15011,23/07/2019 14:56,4/10/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3872,23/07/2019 14:42,6/10/2008 18:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-2287,23/07/2019 13:24,22/07/2019 14:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-2279,23/07/2019 13:18,22/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12552,23/07/2019 12:47,22/07/2019 20:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-1010235,23/07/2019 12:04,22/07/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10247,23/07/2019 11:15,22/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-10241,23/07/2019 11:15,22/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010142,23/07/2019 10:15,19/07/2019 16:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-14645,23/07/2019 8:15,21/09/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7635,22/07/2019 22:15,8/02/2019 11:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-5737,22/07/2019 22:15,28/03/2019 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-5052,22/07/2019 22:15,3/07/2019 19:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-12222,22/07/2019 22:15,20/05/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-12221,22/07/2019 22:15,20/05/2019 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12220,22/07/2019 22:15,20/05/2019 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-12219,22/07/2019 22:15,20/05/2019 17:29,6.8,415, Double Free,nan
CVE-2019-12218,22/07/2019 22:15,20/05/2019 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-12217,22/07/2019 22:15,20/05/2019 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-12216,22/07/2019 22:15,20/05/2019 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3977,22/07/2019 22:15,1/11/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2277,22/07/2019 20:28,22/07/2019 14:15,4.6,125, Out-of-bounds Read,nan
CVE-2019-2292,22/07/2019 20:19,22/07/2019 14:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6822,22/07/2019 20:15,15/07/2019 21:15,6.8,416, Use After Free,nan
CVE-2019-2269,22/07/2019 20:11,22/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010300,22/07/2019 19:38,15/07/2019 18:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14214,22/07/2019 19:18,21/07/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-14212,22/07/2019 19:17,21/07/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-14210,22/07/2019 19:16,21/07/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-6827,22/07/2019 19:15,15/07/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-13118,22/07/2019 19:15,1/07/2019 2:15,5.0,20, Improper Input Validation,nan
CVE-2019-13117,22/07/2019 19:15,1/07/2019 2:15,5.0,20, Improper Input Validation,nan
CVE-2018-19860,22/07/2019 19:15,7/06/2019 17:29,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-14209,22/07/2019 19:14,21/07/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-14208,22/07/2019 19:14,21/07/2019 19:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-14207,22/07/2019 19:07,21/07/2019 19:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-14215,22/07/2019 19:02,21/07/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2019-1010287,22/07/2019 18:52,17/07/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010292,22/07/2019 18:46,16/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13612,22/07/2019 18:31,16/07/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2019-12725,22/07/2019 18:31,19/07/2019 23:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1010308,22/07/2019 18:25,15/07/2019 18:15,5.0,284, Improper Access Control,nan
CVE-2019-13611,22/07/2019 18:12,16/07/2019 0:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1010112,22/07/2019 18:11,18/07/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1126,22/07/2019 18:02,15/07/2019 19:15,5.0,254, 7PK – Security Features,nan
CVE-2019-1010060,22/07/2019 18:00,16/07/2019 13:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13971,22/07/2019 17:41,19/07/2019 7:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1084,22/07/2019 17:36,15/07/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-0975,22/07/2019 17:32,15/07/2019 19:15,6.8,254, 7PK – Security Features,nan
CVE-2019-0865,22/07/2019 17:27,15/07/2019 19:15,5.0,20, Improper Input Validation,nan
CVE-2018-11307,22/07/2019 17:15,9/07/2019 16:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12905,22/07/2019 16:15,20/06/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12459,22/07/2019 16:15,30/05/2019 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12458,22/07/2019 16:15,30/05/2019 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12457,22/07/2019 16:15,30/05/2019 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12123,22/07/2019 16:15,28/11/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-12122,22/07/2019 16:15,28/11/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-12121,22/07/2019 16:15,28/11/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-12116,22/07/2019 16:15,28/11/2018 17:29,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2019-12175,22/07/2019 14:20,17/07/2019 17:15,5.0,476, NULL Pointer Dereference,nan
CVE-2019-13983,22/07/2019 14:05,19/07/2019 15:15,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-13981,22/07/2019 14:02,19/07/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-13980,22/07/2019 14:02,19/07/2019 15:15,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13979,22/07/2019 14:00,19/07/2019 15:15,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13984,22/07/2019 13:59,19/07/2019 15:15,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12914,22/07/2019 13:25,17/07/2019 21:15,5.0,287, Improper Authentication,nan
CVE-2019-12911,22/07/2019 13:25,17/07/2019 21:15,5.0,287, Improper Authentication,nan
CVE-2019-8931,22/07/2019 13:24,17/07/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-8932,22/07/2019 13:23,17/07/2019 21:15,5.0,287, Improper Authentication,nan
CVE-2019-13970,22/07/2019 12:42,19/07/2019 6:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12946,22/07/2019 12:34,19/07/2019 14:15,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7963,22/07/2019 11:53,18/07/2019 22:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-7843,22/07/2019 0:03,18/07/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-7846,21/07/2019 23:57,18/07/2019 22:15,5.0,388, 7PK – Errors,nan
CVE-2019-7847,21/07/2019 23:55,18/07/2019 22:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9836,21/07/2019 12:15,25/06/2019 21:15,5.0,310, Cryptographic Issues,nan
CVE-2019-8325,21/07/2019 12:15,17/06/2019 19:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8324,21/07/2019 12:15,17/06/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-8323,21/07/2019 12:15,17/06/2019 20:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-8322,21/07/2019 12:15,17/06/2019 20:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-8321,21/07/2019 12:15,17/06/2019 20:15,5.0,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2019-12387,21/07/2019 12:15,10/06/2019 12:29,4.3,20, Improper Input Validation,nan
CVE-2019-10164,21/07/2019 12:15,26/06/2019 16:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8780,21/07/2019 12:15,3/04/2018 22:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8779,21/07/2019 12:15,3/04/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-8777,21/07/2019 12:15,3/04/2018 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-6914,21/07/2019 12:15,3/04/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14332,21/07/2019 12:15,19/07/2018 15:29,1.9,476, NULL Pointer Dereference,nan
CVE-2017-2808,21/07/2019 12:15,5/09/2017 18:29,6.8,416, Use After Free,nan
CVE-2017-2807,21/07/2019 12:15,5/09/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12482,21/07/2019 12:15,4/08/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12481,21/07/2019 12:15,4/08/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10101,20/07/2019 18:15,3/07/2019 20:15,6.8,310, Cryptographic Issues,nan
CVE-2019-13233,20/07/2019 12:15,4/07/2019 13:15,4.4,416, Use After Free,nan
CVE-2018-12404,20/07/2019 12:15,2/05/2019 17:29,4.3,310, Cryptographic Issues,nan
CVE-2019-13575,19/07/2019 23:15,18/07/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7953,19/07/2019 20:41,18/07/2019 22:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7941,19/07/2019 20:41,18/07/2019 22:15,5.0,200, Information Exposure,nan
CVE-2019-7850,19/07/2019 20:41,18/07/2019 22:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7848,19/07/2019 20:41,18/07/2019 22:15,5.0,284, Improper Access Control,nan
CVE-2019-7955,19/07/2019 20:40,18/07/2019 22:15,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7956,19/07/2019 20:23,18/07/2019 22:15,6.8,426, Untrusted Search Path,nan
CVE-2019-12913,19/07/2019 20:12,17/07/2019 21:15,2.1,254, 7PK – Security Features,nan
CVE-2019-12912,19/07/2019 20:11,17/07/2019 21:15,2.1,426, Untrusted Search Path,nan
CVE-2019-1010069,19/07/2019 19:54,18/07/2019 14:15,4.3,284, Improper Access Control,nan
CVE-2019-1010261,19/07/2019 19:42,18/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010290,19/07/2019 19:34,16/07/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-12480,19/07/2019 19:15,30/05/2019 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-13959,19/07/2019 18:54,18/07/2019 19:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-13961,19/07/2019 18:34,18/07/2019 20:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1575,19/07/2019 18:21,16/07/2019 14:15,6.5,200, Information Exposure,nan
CVE-2019-13624,19/07/2019 18:11,17/07/2019 3:15,10.0,19, Data Processing Errors,nan
CVE-2019-13969,19/07/2019 17:59,19/07/2019 6:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1137,19/07/2019 17:35,15/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13625,19/07/2019 17:33,17/07/2019 3:15,9.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-12876,19/07/2019 17:20,17/07/2019 20:15,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-19629,19/07/2019 17:16,16/07/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-13952,19/07/2019 17:15,18/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13951,19/07/2019 17:15,18/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1089,19/07/2019 16:46,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1072,19/07/2019 16:40,15/07/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-1102,19/07/2019 16:27,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1134,19/07/2019 16:20,15/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1109,19/07/2019 16:07,15/07/2019 19:15,6.4,20, Improper Input Validation,nan
CVE-2019-1132,19/07/2019 16:00,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0962,19/07/2019 15:59,15/07/2019 19:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-0785,19/07/2019 15:54,15/07/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1006,19/07/2019 15:52,15/07/2019 19:15,5.0,287, Improper Authentication,nan
CVE-2019-1136,19/07/2019 15:47,15/07/2019 19:15,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-1075,19/07/2019 15:34,15/07/2019 19:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-1082,19/07/2019 15:15,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1113,19/07/2019 14:27,15/07/2019 19:15,6.8,20, Improper Input Validation,nan
CVE-2019-9734,19/07/2019 14:15,24/04/2019 15:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-16763,19/07/2019 14:15,9/09/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2019-13973,19/07/2019 14:13,19/07/2019 7:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13972,19/07/2019 14:12,19/07/2019 7:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13974,19/07/2019 14:10,19/07/2019 7:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0811,19/07/2019 13:55,15/07/2019 19:15,5.0,19, Data Processing Errors,nan
CVE-2019-1077,19/07/2019 13:39,15/07/2019 19:15,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-12782,19/07/2019 13:24,9/07/2019 16:15,5.5,285, Improper Authorization,nan
CVE-2019-0321,19/07/2019 12:42,10/07/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5957,19/07/2019 12:22,14/03/2017 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1019,19/07/2019 12:17,12/06/2019 14:29,6.0,254, 7PK – Security Features,nan
CVE-2019-12779,19/07/2019 12:15,7/06/2019 20:29,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-12210,19/07/2019 12:15,4/06/2019 21:29,5.5,200, Information Exposure,nan
CVE-2019-10639,19/07/2019 12:15,5/07/2019 23:15,5.0,200, Information Exposure,nan
CVE-2019-10638,19/07/2019 12:15,5/07/2019 23:15,4.3,200, Information Exposure,nan
CVE-2019-10193,19/07/2019 10:15,11/07/2019 19:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10192,19/07/2019 10:15,11/07/2019 19:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3822,19/07/2019 9:15,6/02/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5130,19/07/2019 9:15,7/02/2018 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-1010094,19/07/2019 3:31,18/07/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13949,19/07/2019 3:20,18/07/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13948,19/07/2019 3:20,18/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13313,19/07/2019 3:15,5/07/2019 14:15,2.1,255, Credentials Management,nan
CVE-2019-13950,19/07/2019 3:11,18/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010054,19/07/2019 2:25,18/07/2019 13:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13617,19/07/2019 2:23,16/07/2019 17:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13107,18/07/2019 21:15,30/06/2019 22:15,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-12529,18/07/2019 21:15,11/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-12527,18/07/2019 21:15,11/07/2019 19:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12525,18/07/2019 21:15,11/07/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13314,18/07/2019 20:15,5/07/2019 14:15,2.1,255, Credentials Management,nan
CVE-2019-13453,18/07/2019 19:55,17/07/2019 15:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-13403,18/07/2019 19:30,17/07/2019 17:15,5.0,284, Improper Access Control,nan
CVE-2019-12751,18/07/2019 19:01,11/07/2019 21:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5221,18/07/2019 18:53,10/07/2019 18:15,3.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13442,18/07/2019 18:48,16/07/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0319,18/07/2019 18:39,10/07/2019 19:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10763,18/07/2019 18:38,18/07/2019 12:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10762,18/07/2019 18:35,18/07/2019 12:15,5.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5528,18/07/2019 18:15,11/07/2019 21:15,5.0,749, Exposed Dangerous Method or Function,nan
CVE-2019-5220,18/07/2019 18:03,10/07/2019 18:15,2.1,275, Permission Issues,nan
CVE-2013-7285,18/07/2019 17:15,15/05/2019 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0325,18/07/2019 17:09,10/07/2019 20:15,4.9,285, Improper Authorization,nan
CVE-2019-10651,18/07/2019 17:07,11/07/2019 18:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-19588,18/07/2019 16:53,11/07/2019 19:15,9.0,284, Improper Access Control,nan
CVE-2019-10017,18/07/2019 16:27,24/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9700,18/07/2019 16:23,16/07/2019 19:15,1.7,200, Information Exposure,nan
CVE-2019-13644,18/07/2019 15:59,18/07/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13646,18/07/2019 15:58,18/07/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13647,18/07/2019 15:57,18/07/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13645,18/07/2019 15:57,18/07/2019 3:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010310,18/07/2019 15:55,12/07/2019 18:15,3.5,255, Credentials Management,nan
CVE-2019-1010022,18/07/2019 15:44,15/07/2019 4:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13447,18/07/2019 15:16,17/07/2019 20:15,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9657,18/07/2019 14:56,11/07/2019 19:15,4.6,284, Improper Access Control,nan
CVE-2019-0966,18/07/2019 14:49,15/07/2019 19:15,5.5,20, Improper Input Validation,nan
CVE-2019-0322,18/07/2019 14:46,10/07/2019 19:15,5.0,284, Improper Access Control,nan
CVE-2019-13359,18/07/2019 14:17,16/07/2019 18:15,8.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13360,18/07/2019 14:16,16/07/2019 17:15,7.5,287, Improper Authentication,nan
CVE-2019-13605,18/07/2019 14:15,16/07/2019 17:15,6.5,287, Improper Authentication,nan
CVE-2019-13132,18/07/2019 14:15,10/07/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11744,18/07/2019 14:07,11/07/2019 14:15,6.8,284, Improper Access Control,nan
CVE-2019-0328,18/07/2019 13:37,10/07/2019 20:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0327,18/07/2019 13:36,10/07/2019 20:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13493,18/07/2019 13:34,17/07/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13448,18/07/2019 13:34,17/07/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0234,18/07/2019 13:25,15/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1076,18/07/2019 13:23,15/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010307,18/07/2019 13:22,15/07/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9861,18/07/2019 13:15,19/04/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010008,18/07/2019 13:08,15/07/2019 2:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0281,18/07/2019 12:59,10/07/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13346,18/07/2019 12:54,17/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13506,18/07/2019 12:51,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1300,18/07/2019 12:28,15/04/2011 19:55,10.0,189, Numeric Errors,nan
CVE-2014-1223,18/07/2019 12:27,27/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0362,18/07/2019 12:27,8/05/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4306,18/07/2019 12:27,11/10/2013 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2752,18/07/2019 12:27,12/12/2013 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2751,18/07/2019 12:27,12/12/2013 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1064,18/07/2019 12:27,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-3059,18/07/2019 12:19,8/08/2016 1:59,2.1,200, Information Exposure,nan
CVE-2019-9187,17/07/2019 20:15,5/06/2019 18:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-0318,17/07/2019 19:19,10/07/2019 19:15,3.5,200, Information Exposure,nan
CVE-2016-10725,17/07/2019 19:15,5/07/2018 22:29,5.0,310, Cryptographic Issues,nan
CVE-2016-10724,17/07/2019 19:15,5/07/2018 22:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-13594,17/07/2019 18:58,14/07/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1010017,17/07/2019 18:55,15/07/2019 3:15,5.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2016-4800,17/07/2019 18:51,13/04/2017 14:59,7.5,284, Improper Access Control,nan
CVE-2019-0326,17/07/2019 18:47,10/07/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12827,17/07/2019 18:43,12/07/2019 20:15,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11242,17/07/2019 18:39,12/07/2019 20:15,4.3,295, Improper Certificate Validation,nan
CVE-2019-1010044,17/07/2019 18:22,15/07/2019 16:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3415,17/07/2019 18:18,11/07/2019 21:15,2.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-13224,17/07/2019 18:15,10/07/2019 14:15,7.5,416, Use After Free,nan
CVE-2019-13618,17/07/2019 18:09,16/07/2019 17:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-12363,17/07/2019 17:29,11/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10531,17/07/2019 17:02,10/07/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-1116,17/07/2019 16:47,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2017-7189,17/07/2019 16:39,10/07/2019 15:15,5.0,20, Improper Input Validation,nan
CVE-2019-13396,17/07/2019 16:36,10/07/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10122,17/07/2019 16:32,10/07/2019 12:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14831,17/07/2019 16:31,10/07/2019 15:15,4.0,200, Information Exposure,nan
CVE-2019-10121,17/07/2019 16:27,10/07/2019 12:15,7.5,285, Improper Authorization,nan
CVE-2019-10120,17/07/2019 16:21,10/07/2019 12:15,6.5,384, Session Fixation,nan
CVE-2019-10119,17/07/2019 16:19,10/07/2019 12:15,7.5,285, Improper Authorization,nan
CVE-2018-1000027,17/07/2019 16:15,9/02/2018 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-1063,17/07/2019 16:10,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12468,17/07/2019 15:25,10/07/2019 15:15,7.5,284, Improper Access Control,nan
CVE-2019-12472,17/07/2019 15:22,10/07/2019 16:15,5.0,284, Improper Access Control,nan
CVE-2018-11734,17/07/2019 15:19,10/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1037,17/07/2019 15:15,15/07/2019 19:15,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2017-13719,17/07/2019 15:09,3/07/2019 20:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15123,17/07/2019 14:15,12/06/2019 14:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-13240,17/07/2019 14:12,10/07/2019 14:15,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-1101,17/07/2019 14:03,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-12990,17/07/2019 13:31,16/07/2019 18:15,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12989,17/07/2019 13:29,16/07/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12988,17/07/2019 13:22,16/07/2019 18:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12987,17/07/2019 13:20,16/07/2019 18:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12986,17/07/2019 13:19,16/07/2019 18:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12985,17/07/2019 13:17,16/07/2019 18:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12991,17/07/2019 13:14,16/07/2019 18:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12992,17/07/2019 13:11,16/07/2019 18:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-11058,17/07/2019 10:15,14/09/2018 20:29,7.5,125, Out-of-bounds Read,nan
CVE-2016-9572,17/07/2019 8:15,1/08/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-17960,17/07/2019 6:15,14/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1118,17/07/2019 2:18,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1117,17/07/2019 2:18,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1083,17/07/2019 2:15,15/07/2019 19:15,5.0,19, Data Processing Errors,nan
CVE-2019-1079,17/07/2019 2:10,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1091,17/07/2019 2:09,15/07/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1104,17/07/2019 2:08,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1108,17/07/2019 2:07,15/07/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-1110,17/07/2019 2:06,15/07/2019 19:15,9.3,20, Improper Input Validation,nan
CVE-2019-1111,17/07/2019 2:04,15/07/2019 19:15,9.3,20, Improper Input Validation,nan
CVE-2019-1112,17/07/2019 2:03,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-12732,17/07/2019 2:01,6/06/2019 15:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1090,17/07/2019 1:59,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1074,17/07/2019 1:51,15/07/2019 19:15,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-1130,17/07/2019 1:49,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1129,17/07/2019 1:49,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1067,17/07/2019 1:41,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1068,17/07/2019 1:39,15/07/2019 19:15,6.5,20, Improper Input Validation,nan
CVE-2019-1096,17/07/2019 1:38,15/07/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-0880,17/07/2019 1:36,15/07/2019 19:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1088,17/07/2019 1:34,15/07/2019 19:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1087,17/07/2019 1:34,15/07/2019 19:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1086,17/07/2019 1:34,15/07/2019 19:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1103,17/07/2019 1:13,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1106,17/07/2019 1:12,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1092,17/07/2019 1:12,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1062,17/07/2019 1:10,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1059,17/07/2019 1:10,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1056,17/07/2019 1:09,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1004,17/07/2019 1:09,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1001,17/07/2019 1:09,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1107,17/07/2019 1:08,15/07/2019 19:15,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1100,17/07/2019 0:55,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1099,17/07/2019 0:55,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1098,17/07/2019 0:55,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1095,17/07/2019 0:54,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-1094,17/07/2019 0:54,15/07/2019 19:15,4.3,200, Information Exposure,nan
CVE-2019-13449,17/07/2019 0:46,9/07/2019 6:15,4.3,20, Improper Input Validation,nan
CVE-2019-1010006,16/07/2019 22:15,15/07/2019 2:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12897,16/07/2019 22:15,7/09/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010319,16/07/2019 21:15,11/07/2019 20:15,4.3,665, Improper Initialization,nan
CVE-2019-1010317,16/07/2019 21:15,11/07/2019 20:15,4.3,665, Improper Initialization,nan
CVE-2019-1010315,16/07/2019 21:15,11/07/2019 20:15,4.3,369, Divide By Zero,nan
CVE-2019-1010005,16/07/2019 19:55,15/07/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8998,16/07/2019 19:49,12/07/2019 16:15,4.6,200, Information Exposure,nan
CVE-2005-3979,16/07/2019 19:37,3/12/2005 19:03,5.0,287, Improper Authentication,nan
CVE-2019-1085,16/07/2019 19:35,15/07/2019 19:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0999,16/07/2019 19:21,15/07/2019 19:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-13450,16/07/2019 19:04,9/07/2019 6:15,4.3,284, Improper Access Control,nan
CVE-2019-11019,16/07/2019 18:19,9/07/2019 16:15,5.0,200, Information Exposure,nan
CVE-2018-19577,16/07/2019 18:15,10/07/2019 15:15,5.0,284, Improper Access Control,nan
CVE-2019-11020,16/07/2019 18:14,9/07/2019 17:15,5.0,200, Information Exposure,nan
CVE-2019-13475,16/07/2019 18:08,9/07/2019 22:15,6.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2019-13279,16/07/2019 17:15,10/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18311,16/07/2019 17:15,7/12/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13278,16/07/2019 16:58,10/07/2019 17:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13276,16/07/2019 16:53,10/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13122,16/07/2019 16:48,10/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12926,16/07/2019 16:45,8/07/2019 22:15,6.5,284, Improper Access Control,nan
CVE-2019-1010298,16/07/2019 16:15,15/07/2019 18:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010297,16/07/2019 16:15,15/07/2019 18:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010296,16/07/2019 16:15,15/07/2019 18:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010295,16/07/2019 16:15,15/07/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010293,16/07/2019 16:14,15/07/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2019-1010294,16/07/2019 16:13,15/07/2019 18:15,5.0,189, Numeric Errors,nan
CVE-2019-12925,16/07/2019 15:54,8/07/2019 22:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12924,16/07/2019 15:46,8/07/2019 21:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-12923,16/07/2019 15:33,8/07/2019 21:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1097,16/07/2019 15:06,15/07/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1093,16/07/2019 15:05,15/07/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-0996,16/07/2019 14:42,12/06/2019 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0979,16/07/2019 14:42,16/05/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0971,16/07/2019 14:42,16/05/2019 19:29,9.0,200, Information Exposure,nan
CVE-2019-0875,16/07/2019 14:42,9/04/2019 21:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-0874,16/07/2019 14:42,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0872,16/07/2019 14:42,16/05/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0871,16/07/2019 14:42,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0870,16/07/2019 14:42,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0869,16/07/2019 14:42,9/04/2019 21:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-0868,16/07/2019 14:42,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0867,16/07/2019 14:42,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0866,16/07/2019 14:42,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1073,16/07/2019 14:36,15/07/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1071,16/07/2019 14:36,15/07/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-1127,16/07/2019 14:31,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1124,16/07/2019 14:30,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1123,16/07/2019 14:28,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1128,16/07/2019 14:27,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1122,16/07/2019 14:27,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1121,16/07/2019 14:27,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1120,16/07/2019 14:27,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1119,16/07/2019 14:27,15/07/2019 19:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010039,16/07/2019 14:12,15/07/2019 14:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13338,16/07/2019 13:57,9/07/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-13337,16/07/2019 13:54,9/07/2019 20:15,5.0,287, Improper Authentication,nan
CVE-2019-11991,16/07/2019 13:43,9/07/2019 19:15,9.7,200, Information Exposure,nan
CVE-2018-14833,16/07/2019 13:43,9/07/2019 13:15,4.3,284, Improper Access Control,nan
CVE-2019-13461,16/07/2019 13:37,9/07/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-13470,16/07/2019 13:36,9/07/2019 21:15,7.5,125, Out-of-bounds Read,nan
CVE-2019-12470,16/07/2019 13:35,10/07/2019 17:15,4.0,284, Improper Access Control,nan
CVE-2019-12469,16/07/2019 13:35,10/07/2019 17:15,4.0,284, Improper Access Control,nan
CVE-2019-13146,16/07/2019 13:32,9/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-12473,16/07/2019 13:30,10/07/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-12471,16/07/2019 13:29,10/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12467,16/07/2019 13:28,10/07/2019 15:15,5.0,284, Improper Access Control,nan
CVE-2019-12574,16/07/2019 12:36,11/07/2019 20:15,9.3,426, Untrusted Search Path,nan
CVE-2019-12571,16/07/2019 12:36,11/07/2019 20:15,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-12573,16/07/2019 12:35,11/07/2019 20:15,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-12579,16/07/2019 12:32,11/07/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12578,16/07/2019 12:32,11/07/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12577,16/07/2019 12:31,11/07/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12575,16/07/2019 12:31,11/07/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12576,16/07/2019 12:30,11/07/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-18898,16/07/2019 12:24,21/03/2019 16:00,5.0,20, Improper Input Validation,nan
CVE-2014-5220,16/07/2019 12:24,8/06/2018 17:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-3646,16/07/2019 12:23,30/06/2016 23:59,10.0,20, Improper Input Validation,nan
CVE-2016-3645,16/07/2019 12:23,30/06/2016 23:59,10.0,189, Numeric Errors,nan
CVE-2016-3644,16/07/2019 12:23,30/06/2016 23:59,10.0,20, Improper Input Validation,nan
CVE-2014-8418,16/07/2019 12:23,24/11/2014 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3997,16/07/2019 12:23,5/12/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8498,16/07/2019 12:22,17/11/2014 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8417,16/07/2019 12:22,24/11/2014 15:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8416,16/07/2019 12:22,24/11/2014 15:59,5.0,20, Improper Input Validation,nan
CVE-2014-8415,16/07/2019 12:22,24/11/2014 15:59,5.0,20, Improper Input Validation,nan
CVE-2014-8413,16/07/2019 12:22,24/11/2014 15:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8412,16/07/2019 12:22,24/11/2014 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4452,16/07/2019 12:22,18/11/2014 11:59,5.4,399, Resource Management Errors,nan
CVE-2014-3248,16/07/2019 12:22,16/11/2014 17:59,6.2,17, DEPRECATED: Code,nan
CVE-2014-8770,16/07/2019 12:21,13/11/2014 21:32,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8735,16/07/2019 12:21,12/11/2014 16:55,4.0,200, Information Exposure,nan
CVE-2014-2683,16/07/2019 12:21,16/11/2014 0:59,5.0,17, DEPRECATED: Code,nan
CVE-2014-2682,16/07/2019 12:21,16/11/2014 0:59,6.8,19, Data Processing Errors,nan
CVE-2014-2681,16/07/2019 12:21,16/11/2014 0:59,6.4,19, Data Processing Errors,nan
CVE-2013-0334,16/07/2019 12:21,31/10/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-7205,16/07/2019 12:20,8/10/2014 17:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4363,16/07/2019 12:20,18/09/2014 10:55,5.0,255, Credentials Management,nan
CVE-2014-1984,16/07/2019 12:20,19/04/2014 19:55,6.8,287, Improper Authentication,nan
CVE-2007-0063,16/07/2019 12:20,21/09/2007 19:17,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2007-0061,16/07/2019 12:20,21/09/2007 19:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-1028,16/07/2019 12:20,2/05/2005 4:00,5.0,200, Information Exposure,nan
CVE-2019-12730,16/07/2019 12:15,4/06/2019 14:29,7.5,665, Improper Initialization,nan
CVE-2018-19573,16/07/2019 12:15,10/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19570,16/07/2019 12:15,10/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19583,16/07/2019 11:15,10/07/2019 17:15,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-19574,16/07/2019 10:15,10/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13505,16/07/2019 9:15,11/07/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12802,16/07/2019 5:15,13/06/2019 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12790,16/07/2019 5:15,10/06/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-13277,15/07/2019 20:49,9/07/2019 21:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12540,15/07/2019 19:43,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13280,15/07/2019 19:41,9/07/2019 19:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3798,15/07/2019 19:33,11/07/2019 20:15,6.1,20, Improper Input Validation,nan
CVE-2019-13464,15/07/2019 19:20,9/07/2019 19:15,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-0330,15/07/2019 19:17,10/07/2019 20:15,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13142,15/07/2019 19:04,9/07/2019 18:15,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-15738,15/07/2019 18:51,9/07/2019 13:15,2.1,20, Improper Input Validation,nan
CVE-2017-6900,15/07/2019 18:25,3/07/2019 17:15,10.0,255, Credentials Management,nan
CVE-2019-13345,15/07/2019 18:15,5/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5602,15/07/2019 18:08,3/07/2019 19:15,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-5601,15/07/2019 17:50,3/07/2019 19:15,4.0,200, Information Exposure,nan
CVE-2014-7868,15/07/2019 17:45,4/12/2014 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7867,15/07/2019 17:45,4/12/2014 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7866,15/07/2019 17:45,10/12/2014 18:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6036,15/07/2019 17:45,4/12/2014 17:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5446,15/07/2019 17:45,4/12/2014 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5445,15/07/2019 17:45,4/12/2014 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5600,15/07/2019 17:44,3/07/2019 19:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5599,15/07/2019 17:42,2/07/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-2107,15/07/2019 17:15,8/07/2019 18:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-13114,15/07/2019 17:15,30/06/2019 23:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-13113,15/07/2019 17:15,30/06/2019 23:15,4.3,20, Improper Input Validation,nan
CVE-2019-13112,15/07/2019 17:15,30/06/2019 23:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-13110,15/07/2019 17:15,30/06/2019 23:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-0708,15/07/2019 17:15,16/05/2019 19:29,10.0,20, Improper Input Validation,nan
CVE-2018-19535,15/07/2019 17:15,26/11/2018 2:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19107,15/07/2019 17:15,8/11/2018 8:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-15133,15/07/2019 17:15,9/08/2018 19:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2019-11890,15/07/2019 16:56,9/07/2019 13:15,7.8,399, Resource Management Errors,nan
CVE-2019-11889,15/07/2019 16:40,9/07/2019 13:15,7.8,20, Improper Input Validation,nan
CVE-2019-12971,15/07/2019 16:27,5/07/2019 20:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13352,15/07/2019 16:03,5/07/2019 20:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-5974,15/07/2019 16:01,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16386,15/07/2019 15:59,5/07/2019 20:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9630,15/07/2019 15:49,8/07/2019 19:15,5.0,275, Permission Issues,nan
CVE-2019-9629,15/07/2019 15:49,8/07/2019 19:15,7.5,255, Credentials Management,nan
CVE-2019-13598,15/07/2019 15:45,14/07/2019 18:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-13404,15/07/2019 15:20,8/07/2019 1:15,9.3,284, Improper Access Control,nan
CVE-2019-13241,15/07/2019 15:15,4/07/2019 15:15,6.8,20, Improper Input Validation,nan
CVE-2019-13032,15/07/2019 15:15,28/06/2019 23:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-1010028,15/07/2019 14:26,15/07/2019 4:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010016,15/07/2019 14:07,15/07/2019 3:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1252,15/07/2019 13:59,5/06/2018 12:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14528,15/07/2019 13:50,5/07/2019 20:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-11580,15/07/2019 13:30,2/07/2019 21:15,6.1,399, Resource Management Errors,nan
CVE-2017-11579,15/07/2019 13:29,2/07/2019 21:15,4.8,254, 7PK – Security Features,nan
CVE-2018-20034,15/07/2019 13:15,21/03/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-20033,15/07/2019 13:15,25/02/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20032,15/07/2019 13:15,21/03/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-20031,15/07/2019 13:15,21/03/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-11578,15/07/2019 13:10,2/07/2019 21:15,4.3,200, Information Exposure,nan
CVE-2019-13027,15/07/2019 12:42,12/07/2019 15:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11360,15/07/2019 12:33,12/07/2019 14:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20801,15/07/2019 11:15,14/03/2019 16:29,5.0,185, Incorrect Regular Expression,nan
CVE-2019-4118,15/07/2019 9:15,11/07/2019 20:15,2.1,200, Information Exposure,nan
CVE-2019-4193,15/07/2019 8:15,11/07/2019 20:15,5.0,200, Information Exposure,nan
CVE-2018-11501,15/07/2019 4:15,26/05/2018 21:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11650,14/07/2019 22:44,10/07/2019 19:15,4.3,254, 7PK – Security Features,nan
CVE-2019-0329,14/07/2019 22:44,10/07/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13489,14/07/2019 22:42,10/07/2019 22:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13488,14/07/2019 22:42,10/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13507,14/07/2019 22:18,11/07/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1010316,14/07/2019 21:42,11/07/2019 20:15,4.6,284, Improper Access Control,nan
CVE-2017-2626,14/07/2019 21:15,27/07/2018 19:29,2.1,331, Insufficient Entropy,nan
CVE-2015-5211,14/07/2019 0:15,25/05/2017 17:29,9.3,20, Improper Input Validation,nan
CVE-2014-3625,14/07/2019 0:15,20/11/2014 17:50,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3578,14/07/2019 0:15,19/02/2015 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12781,13/07/2019 3:15,1/07/2019 14:15,5.0,20, Improper Input Validation,nan
CVE-2019-11503,13/07/2019 3:15,24/04/2019 21:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-17152,12/07/2019 19:09,11/07/2019 19:15,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17151,12/07/2019 19:08,11/07/2019 19:15,5.5,284, Improper Access Control,nan
CVE-2018-17150,12/07/2019 19:02,11/07/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010003,12/07/2019 18:16,11/07/2019 13:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1010314,12/07/2019 17:03,11/07/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11391,12/07/2019 16:15,21/04/2019 2:29,5.0,185, Incorrect Regular Expression,nan
CVE-2019-11390,12/07/2019 16:15,21/04/2019 2:29,5.0,185, Incorrect Regular Expression,nan
CVE-2019-11389,12/07/2019 16:15,21/04/2019 2:29,5.0,185, Incorrect Regular Expression,nan
CVE-2019-11388,12/07/2019 16:15,21/04/2019 2:29,5.0,185, Incorrect Regular Expression,nan
CVE-2019-13372,12/07/2019 15:57,6/07/2019 23:15,7.5,287, Improper Authentication,nan
CVE-2019-13481,12/07/2019 15:33,10/07/2019 20:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-2004,12/07/2019 15:15,21/04/2016 11:00,9.3,306, Missing Authentication for Critical Function,nan
CVE-2019-13560,12/07/2019 15:12,11/07/2019 15:15,5.0,255, Credentials Management,nan
CVE-2019-13561,12/07/2019 15:08,11/07/2019 15:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13562,12/07/2019 15:04,11/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13563,12/07/2019 15:01,11/07/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13504,12/07/2019 14:15,11/07/2019 2:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-13503,12/07/2019 14:15,11/07/2019 2:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-12748,12/07/2019 14:15,9/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12747,12/07/2019 14:15,9/07/2019 15:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10912,12/07/2019 14:15,16/05/2019 22:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10103,12/07/2019 13:57,3/07/2019 20:15,6.8,20, Improper Input Validation,nan
CVE-2019-13177,12/07/2019 13:52,2/07/2019 22:15,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-10102,12/07/2019 13:40,3/07/2019 20:15,6.8,20, Improper Input Validation,nan
CVE-2019-12539,12/07/2019 13:29,11/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10691,12/07/2019 8:15,24/04/2019 17:29,5.0,287, Improper Authentication,nan
CVE-2019-6575,11/07/2019 22:15,17/04/2019 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-13810,11/07/2019 22:15,17/04/2019 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13809,11/07/2019 22:15,17/04/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13808,11/07/2019 22:15,17/04/2019 14:29,6.4,200, Information Exposure,nan
CVE-2019-12466,11/07/2019 20:40,10/07/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12474,11/07/2019 20:28,10/07/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-11387,11/07/2019 20:15,21/04/2019 2:29,5.0,185, Incorrect Regular Expression,nan
CVE-2018-19576,11/07/2019 19:51,10/07/2019 16:15,6.4,284, Improper Access Control,nan
CVE-2018-19575,11/07/2019 19:44,10/07/2019 16:15,4.0,285, Improper Authorization,nan
CVE-2018-19572,11/07/2019 19:37,10/07/2019 16:15,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-11774,11/07/2019 19:15,13/10/2017 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19569,11/07/2019 18:57,10/07/2019 16:15,6.5,285, Improper Authorization,nan
CVE-2018-14529,11/07/2019 18:57,5/07/2019 20:15,5.0,200, Information Exposure,nan
CVE-2017-9327,11/07/2019 18:39,3/07/2019 17:15,4.0,275, Permission Issues,nan
CVE-2018-19584,11/07/2019 18:27,10/07/2019 17:15,5.0,285, Improper Authorization,nan
CVE-2019-12171,11/07/2019 18:25,8/07/2019 13:15,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-19582,11/07/2019 18:24,10/07/2019 17:15,4.0,200, Information Exposure,nan
CVE-2019-13351,11/07/2019 18:15,5/07/2019 20:15,6.8,415, Double Free,nan
CVE-2018-19581,11/07/2019 18:10,10/07/2019 17:15,5.0,285, Improper Authorization,nan
CVE-2018-19580,11/07/2019 18:07,10/07/2019 17:15,5.0,20, Improper Input Validation,nan
CVE-2018-19579,11/07/2019 17:55,10/07/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19578,11/07/2019 17:42,10/07/2019 17:15,4.0,285, Improper Authorization,nan
CVE-2018-19571,11/07/2019 17:39,10/07/2019 17:15,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-9326,11/07/2019 17:28,3/07/2019 17:15,3.5,255, Credentials Management,nan
CVE-2018-19496,11/07/2019 17:15,10/07/2019 15:15,4.0,284, Improper Access Control,nan
CVE-2018-19495,11/07/2019 16:59,10/07/2019 15:15,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-9325,11/07/2019 16:55,3/07/2019 17:15,6.4,285, Improper Authorization,nan
CVE-2018-19494,11/07/2019 16:40,10/07/2019 15:15,4.0,284, Improper Access Control,nan
CVE-2018-19493,11/07/2019 16:36,10/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3949,11/07/2019 16:13,9/07/2019 18:15,7.5,16, Configuration,nan
CVE-2019-3950,11/07/2019 16:09,9/07/2019 18:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-6636,11/07/2019 16:07,3/07/2019 19:15,8.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12628,11/07/2019 16:00,10/07/2019 12:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12723,11/07/2019 15:56,10/07/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6632,11/07/2019 15:44,3/07/2019 19:15,2.1,310, Cryptographic Issues,nan
CVE-2012-1989,11/07/2019 15:09,27/06/2012 18:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1988,11/07/2019 15:09,29/05/2012 20:55,6.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2012-1986,11/07/2019 15:09,29/05/2012 20:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-1906,11/07/2019 15:09,29/05/2012 20:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1054,11/07/2019 15:09,29/05/2012 20:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-1053,11/07/2019 15:09,29/05/2012 20:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-3872,11/07/2019 15:09,27/10/2011 20:55,2.6,20, Improper Input Validation,nan
CVE-2019-6637,11/07/2019 14:49,3/07/2019 19:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2014-9568,11/07/2019 14:35,3/02/2015 16:59,2.1,200, Information Exposure,nan
CVE-2019-6634,11/07/2019 14:29,3/07/2019 19:15,4.0,20, Improper Input Validation,nan
CVE-2016-2460,11/07/2019 14:15,9/05/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-7170,11/07/2019 14:03,17/12/2014 19:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1029,11/07/2019 13:44,16/01/2015 16:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-20851,11/07/2019 13:39,10/07/2019 14:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3907,11/07/2019 13:39,3/07/2019 21:15,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-2788,11/07/2019 13:36,13/02/2017 18:59,7.5,284, Improper Access Control,nan
CVE-2019-12724,11/07/2019 13:30,10/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17147,11/07/2019 13:24,10/07/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13358,11/07/2019 13:19,5/07/2019 21:15,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-8920,11/07/2019 13:15,9/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6633,11/07/2019 13:15,3/07/2019 18:15,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-6631,11/07/2019 13:15,3/07/2019 18:15,4.3,20, Improper Input Validation,nan
CVE-2015-1426,11/07/2019 13:00,23/02/2015 17:59,2.1,200, Information Exposure,nan
CVE-2016-10073,11/07/2019 12:45,23/05/2017 4:29,5.0,200, Information Exposure,nan
CVE-2012-0891,11/07/2019 11:43,14/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6217,11/07/2019 11:34,10/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7165,11/07/2019 3:15,3/07/2019 18:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18364,11/07/2019 3:15,27/03/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10653,11/07/2019 2:58,10/07/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8230,11/07/2019 2:31,3/07/2019 20:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-8229,11/07/2019 2:29,3/07/2019 20:15,5.0,255, Credentials Management,nan
CVE-2017-8228,11/07/2019 2:28,3/07/2019 20:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2017-8227,11/07/2019 1:58,3/07/2019 20:15,5.0,254, 7PK – Security Features,nan
CVE-2017-8226,11/07/2019 1:49,3/07/2019 20:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-11422,10/07/2019 19:53,3/07/2019 16:15,7.5,284, Improper Access Control,nan
CVE-2019-13290,10/07/2019 19:52,4/07/2019 22:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5967,10/07/2019 19:39,5/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11512,10/07/2019 19:29,9/07/2019 21:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7267,10/07/2019 19:01,2/07/2019 17:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14859,10/07/2019 18:53,3/07/2019 20:15,5.5,284, Improper Access Control,nan
CVE-2019-13472,10/07/2019 18:45,9/07/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14860,10/07/2019 18:29,3/07/2019 20:15,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-6630,10/07/2019 18:16,3/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2019-6627,10/07/2019 18:11,3/07/2019 18:15,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3251,10/07/2019 18:10,12/08/2014 23:55,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3249,10/07/2019 18:10,17/06/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-4971,10/07/2019 18:10,9/03/2014 13:16,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4967,10/07/2019 18:10,20/08/2013 22:55,5.0,255, Credentials Management,nan
CVE-2013-4966,10/07/2019 18:10,9/03/2014 13:16,6.4,287, Improper Authentication,nan
CVE-2013-4965,10/07/2019 18:10,25/10/2013 23:55,5.0,287, Improper Authentication,nan
CVE-2013-4964,10/07/2019 18:10,20/08/2013 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4963,10/07/2019 18:10,14/03/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4962,10/07/2019 18:10,20/08/2013 22:55,5.8,255, Credentials Management,nan
CVE-2013-4961,10/07/2019 18:10,20/08/2013 22:55,5.0,200, Information Exposure,nan
CVE-2013-4959,10/07/2019 18:10,20/08/2013 22:55,2.1,200, Information Exposure,nan
CVE-2013-4958,10/07/2019 18:10,20/08/2013 22:55,6.9,287, Improper Authentication,nan
CVE-2013-4957,10/07/2019 18:10,25/10/2013 23:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4956,10/07/2019 18:10,20/08/2013 22:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4955,10/07/2019 18:10,20/08/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-4762,10/07/2019 18:10,20/08/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-3567,10/07/2019 18:10,19/08/2013 23:55,7.5,20, Improper Input Validation,nan
CVE-2019-13186,10/07/2019 18:05,3/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9355,10/07/2019 18:03,19/12/2014 15:59,4.0,200, Information Exposure,nan
CVE-2013-4969,10/07/2019 18:02,7/01/2014 18:55,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-2716,10/07/2019 18:02,10/04/2013 15:55,5.0,310, Cryptographic Issues,nan
CVE-2013-1652,10/07/2019 18:02,20/03/2013 16:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1399,10/07/2019 18:02,14/03/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1398,10/07/2019 18:02,14/03/2014 16:55,8.5,310, Cryptographic Issues,nan
CVE-2012-5158,10/07/2019 18:02,14/03/2014 16:55,4.0,287, Improper Authentication,nan
CVE-2012-3867,10/07/2019 18:02,6/08/2012 16:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3866,10/07/2019 18:02,6/08/2012 16:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3865,10/07/2019 18:02,6/08/2012 16:55,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3864,10/07/2019 18:02,6/08/2012 16:55,4.0,200, Information Exposure,nan
CVE-2012-3408,10/07/2019 18:02,6/08/2012 16:55,2.6,287, Improper Authentication,nan
CVE-2013-1655,10/07/2019 17:47,20/03/2013 16:55,7.5,20, Improper Input Validation,nan
CVE-2019-10717,10/07/2019 17:42,3/07/2019 16:15,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9827,10/07/2019 17:17,3/07/2019 21:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6640,10/07/2019 17:15,3/07/2019 19:15,5.0,200, Information Exposure,nan
CVE-2019-6638,10/07/2019 17:15,3/07/2019 19:15,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-8416,10/07/2019 17:08,2/07/2019 21:15,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8415,10/07/2019 17:07,2/07/2019 21:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-8413,10/07/2019 17:05,2/07/2019 21:15,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10721,10/07/2019 16:55,3/07/2019 16:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8412,10/07/2019 16:43,2/07/2019 21:15,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12623,10/07/2019 16:38,10/07/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13294,10/07/2019 16:08,4/07/2019 23:15,10.0,284, Improper Access Control,nan
CVE-2018-12626,10/07/2019 15:49,10/07/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12625,10/07/2019 15:49,10/07/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12627,10/07/2019 15:48,10/07/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12622,10/07/2019 15:48,10/07/2019 12:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9686,10/07/2019 15:40,8/02/2017 22:59,5.0,20, Improper Input Validation,nan
CVE-2016-5716,10/07/2019 15:40,9/08/2017 14:29,6.5,134, Use of Externally-Controlled Format String,nan
CVE-2016-5714,10/07/2019 15:40,18/10/2017 18:29,6.5,284, Improper Access Control,nan
CVE-2016-2787,10/07/2019 15:40,13/02/2017 18:59,5.0,284, Improper Access Control,nan
CVE-2016-2786,10/07/2019 15:40,10/06/2016 15:59,7.5,20, Improper Input Validation,nan
CVE-2015-7328,10/07/2019 15:40,8/01/2016 19:59,1.9,200, Information Exposure,nan
CVE-2019-12866,10/07/2019 15:34,3/07/2019 19:15,7.5,285, Improper Authorization,nan
CVE-2019-12867,10/07/2019 15:29,3/07/2019 19:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-10104,10/07/2019 15:26,3/07/2019 19:15,7.5,284, Improper Access Control,nan
CVE-2019-13074,10/07/2019 15:24,3/07/2019 21:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-13125,10/07/2019 15:10,1/07/2019 14:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-11421,10/07/2019 14:50,3/07/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-9823,10/07/2019 14:35,3/07/2019 19:15,5.0,255, Credentials Management,nan
CVE-2018-11426,10/07/2019 14:33,3/07/2019 15:15,7.5,287, Improper Authentication,nan
CVE-2019-9186,10/07/2019 14:32,3/07/2019 19:15,7.5,20, Improper Input Validation,nan
CVE-2019-9873,10/07/2019 14:28,3/07/2019 19:15,5.0,255, Credentials Management,nan
CVE-2018-11424,10/07/2019 14:27,3/07/2019 16:15,7.8,476, NULL Pointer Dereference,nan
CVE-2018-11425,10/07/2019 14:18,3/07/2019 16:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3871,10/07/2019 14:13,27/10/2011 20:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-3870,10/07/2019 14:13,27/10/2011 20:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-3869,10/07/2019 14:13,27/10/2011 20:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-3848,10/07/2019 14:13,27/10/2011 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0528,10/07/2019 14:13,17/02/2014 16:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-12843,10/07/2019 14:12,3/07/2019 20:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13238,10/07/2019 14:08,4/07/2019 14:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-12844,10/07/2019 14:02,3/07/2019 20:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13275,10/07/2019 13:50,4/07/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12852,10/07/2019 13:49,3/07/2019 20:15,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-12850,10/07/2019 13:48,3/07/2019 19:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9872,10/07/2019 13:41,3/07/2019 19:15,4.3,255, Credentials Management,nan
CVE-2019-12851,10/07/2019 13:38,3/07/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5961,10/07/2019 13:33,5/07/2019 14:15,5.8,295, Improper Certificate Validation,nan
CVE-2019-5964,10/07/2019 13:32,5/07/2019 14:15,5.8,287, Improper Authentication,nan
CVE-2019-13292,10/07/2019 13:21,4/07/2019 22:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6635,10/07/2019 13:15,3/07/2019 19:15,3.6,284, Improper Access Control,nan
CVE-2019-13354,10/07/2019 13:10,8/07/2019 14:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-13397,10/07/2019 12:35,9/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13070,10/07/2019 12:26,9/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11423,10/07/2019 12:22,3/07/2019 16:15,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11420,10/07/2019 12:20,3/07/2019 16:15,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2018-11427,10/07/2019 12:19,3/07/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13068,10/07/2019 12:15,30/06/2019 0:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12615,10/07/2019 12:15,3/06/2019 22:29,7.8,476, NULL Pointer Dereference,nan
CVE-2019-0948,10/07/2019 12:15,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-13402,9/07/2019 20:31,8/07/2019 1:15,6.5,254, 7PK – Security Features,nan
CVE-2019-13374,9/07/2019 20:16,6/07/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13050,9/07/2019 20:15,29/06/2019 17:15,5.0,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2019-13398,9/07/2019 20:07,8/07/2019 1:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13399,9/07/2019 20:06,8/07/2019 1:15,4.3,798, Use of Hard-coded Credentials,nan
CVE-2019-13400,9/07/2019 19:56,8/07/2019 1:15,5.0,255, Credentials Management,nan
CVE-2019-13401,9/07/2019 19:54,8/07/2019 1:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11647,9/07/2019 19:44,24/06/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13375,9/07/2019 19:35,6/07/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13373,9/07/2019 19:33,6/07/2019 23:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13072,9/07/2019 19:15,30/06/2019 2:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10100,9/07/2019 19:13,3/07/2019 19:15,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12847,9/07/2019 19:10,3/07/2019 19:15,4.0,255, Credentials Management,nan
CVE-2019-13287,9/07/2019 19:07,4/07/2019 22:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-12841,9/07/2019 19:00,3/07/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-13370,9/07/2019 18:32,6/07/2019 22:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-13362,9/07/2019 18:15,6/07/2019 21:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0688,9/07/2019 18:15,9/04/2019 21:29,5.0,200, Information Exposure,nan
CVE-2017-8411,9/07/2019 18:12,2/07/2019 19:15,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13289,9/07/2019 17:59,4/07/2019 22:15,6.8,416, Use After Free,nan
CVE-2017-8405,9/07/2019 17:47,2/07/2019 20:15,5.0,287, Improper Authentication,nan
CVE-2017-8406,9/07/2019 17:42,2/07/2019 20:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8409,9/07/2019 17:39,2/07/2019 20:15,5.0,285, Improper Authorization,nan
CVE-2017-8410,9/07/2019 17:37,2/07/2019 20:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8414,9/07/2019 17:35,2/07/2019 20:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13288,9/07/2019 17:34,4/07/2019 22:15,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-14733,9/07/2019 17:23,5/07/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-12174,9/07/2019 17:21,8/07/2019 14:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-10143,9/07/2019 17:15,24/05/2019 17:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-2106,9/07/2019 17:08,8/07/2019 18:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2104,9/07/2019 17:01,8/07/2019 18:15,2.1,200, Information Exposure,nan
CVE-2019-2109,9/07/2019 16:42,8/07/2019 18:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2111,9/07/2019 16:39,8/07/2019 18:15,7.5,416, Use After Free,nan
CVE-2019-7107,9/07/2019 16:15,23/05/2019 16:29,10.0,20, Improper Input Validation,nan
CVE-2019-3619,9/07/2019 16:15,3/07/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-13183,9/07/2019 16:11,7/07/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2112,9/07/2019 16:08,8/07/2019 18:15,7.2,416, Use After Free,nan
CVE-2019-2113,9/07/2019 16:06,8/07/2019 18:15,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-2116,9/07/2019 15:58,8/07/2019 18:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-13208,9/07/2019 15:54,3/07/2019 23:15,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-2117,9/07/2019 15:38,8/07/2019 18:15,2.1,200, Information Exposure,nan
CVE-2019-2118,9/07/2019 15:34,8/07/2019 18:15,2.1,200, Information Exposure,nan
CVE-2019-2119,9/07/2019 15:31,8/07/2019 18:15,2.1,200, Information Exposure,nan
CVE-2019-2105,9/07/2019 15:28,8/07/2019 18:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7218,9/07/2019 15:15,13/05/2019 19:29,4.3,287, Improper Authentication,nan
CVE-2019-6639,9/07/2019 15:15,3/07/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12930,9/07/2019 15:12,8/07/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5971,9/07/2019 15:01,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5968,9/07/2019 14:52,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8407,9/07/2019 14:49,2/07/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5982,9/07/2019 14:19,5/07/2019 14:15,5.4,284, Improper Access Control,nan
CVE-2019-5981,9/07/2019 13:18,5/07/2019 14:15,6.8,285, Improper Authorization,nan
CVE-2016-6329,9/07/2019 13:15,31/01/2017 22:59,4.3,310, Cryptographic Issues,nan
CVE-2018-14866,9/07/2019 12:45,3/07/2019 18:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8567,9/07/2019 12:29,14/11/2014 15:59,9.4,399, Resource Management Errors,nan
CVE-2015-5599,9/07/2019 12:15,18/08/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5984,9/07/2019 10:15,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5983,9/07/2019 10:15,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5970,9/07/2019 10:15,5/07/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13291,8/07/2019 21:34,4/07/2019 22:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14027,8/07/2019 21:15,5/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13312,8/07/2019 20:45,5/07/2019 1:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-5969,8/07/2019 20:17,5/07/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-11227,8/07/2019 20:15,3/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6256,8/07/2019 20:00,26/05/2017 1:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12621,8/07/2019 19:58,5/07/2019 17:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8404,8/07/2019 19:46,2/07/2019 19:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8417,8/07/2019 19:28,2/07/2019 21:15,3.3,255, Credentials Management,nan
CVE-2019-13127,8/07/2019 19:18,1/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000874,8/07/2019 19:15,20/12/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3675,8/07/2019 18:49,22/10/2014 14:55,5.0,125, Out-of-bounds Read,nan
CVE-2019-13242,8/07/2019 18:17,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13243,8/07/2019 18:16,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13245,8/07/2019 18:15,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13244,8/07/2019 18:14,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13246,8/07/2019 18:13,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11215,8/07/2019 17:18,3/07/2019 16:15,7.5,16, Configuration,nan
CVE-2018-12715,8/07/2019 16:55,3/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6628,8/07/2019 16:25,3/07/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2017-12977,8/07/2019 16:24,21/08/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2324,8/07/2019 16:23,19/02/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1393,8/07/2019 16:23,2/02/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1055,8/07/2019 16:23,16/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9312,8/07/2019 16:23,28/08/2017 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-6626,8/07/2019 16:21,3/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6625,8/07/2019 16:20,3/07/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8408,8/07/2019 16:17,2/07/2019 16:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20850,8/07/2019 16:10,4/07/2019 14:15,7.2,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13075,8/07/2019 16:03,30/06/2019 14:15,5.0,200, Information Exposure,nan
CVE-2019-5966,8/07/2019 15:58,5/07/2019 14:15,5.8,285, Improper Authorization,nan
CVE-2019-5965,8/07/2019 15:46,5/07/2019 14:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-5960,8/07/2019 15:17,5/07/2019 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1622,8/07/2019 15:15,27/06/2019 3:15,5.0,284, Improper Access Control,nan
CVE-2019-1621,8/07/2019 15:15,27/06/2019 3:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1620,8/07/2019 15:15,27/06/2019 3:15,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1619,8/07/2019 15:15,27/06/2019 3:15,7.5,284, Improper Access Control,nan
CVE-2019-11350,8/07/2019 15:15,19/04/2019 21:29,5.0,255, Credentials Management,nan
CVE-2019-13055,8/07/2019 14:58,29/06/2019 20:15,3.3,200, Information Exposure,nan
CVE-2019-13239,8/07/2019 14:56,4/07/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13054,8/07/2019 14:54,29/06/2019 20:15,3.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13053,8/07/2019 14:52,29/06/2019 20:15,3.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-13052,8/07/2019 14:50,29/06/2019 20:15,3.3,200, Information Exposure,nan
CVE-2016-10761,8/07/2019 14:47,29/06/2019 20:15,3.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20807,8/07/2019 14:46,28/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13131,8/07/2019 14:34,1/07/2019 16:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-13128,8/07/2019 14:17,1/07/2019 15:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13129,8/07/2019 14:15,1/07/2019 15:15,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-7268,8/07/2019 13:59,2/07/2019 17:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10177,8/07/2019 13:15,27/06/2019 21:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0228,8/07/2019 11:15,17/04/2019 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1577,8/07/2019 7:15,1/07/2019 19:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-12448,8/07/2019 0:15,29/05/2019 17:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-13339,7/07/2019 22:21,5/07/2019 15:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13341,7/07/2019 22:20,5/07/2019 15:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13340,7/07/2019 22:20,5/07/2019 15:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9702,7/07/2019 22:06,1/07/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-9703,7/07/2019 22:03,1/07/2019 21:15,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-17972,7/07/2019 21:52,3/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13247,7/07/2019 21:50,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13250,7/07/2019 21:49,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13249,7/07/2019 21:49,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13248,7/07/2019 21:49,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13252,7/07/2019 21:48,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13251,7/07/2019 21:48,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13255,7/07/2019 21:47,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13254,7/07/2019 21:47,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13253,7/07/2019 21:47,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13259,7/07/2019 21:46,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13258,7/07/2019 21:46,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13257,7/07/2019 21:46,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13256,7/07/2019 21:46,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13260,7/07/2019 21:45,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13261,7/07/2019 21:43,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13262,7/07/2019 21:42,4/07/2019 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12594,7/07/2019 20:15,2/07/2019 17:15,7.5,284, Improper Access Control,nan
CVE-2019-3873,6/07/2019 19:15,12/06/2019 14:29,6.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6975,6/07/2019 11:15,11/02/2019 13:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-7269,5/07/2019 19:51,2/07/2019 17:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12845,5/07/2019 19:36,3/07/2019 20:15,5.0,20, Improper Input Validation,nan
CVE-2019-12846,5/07/2019 19:08,3/07/2019 20:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18346,5/07/2019 18:49,3/07/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-13028,5/07/2019 18:33,28/06/2019 22:15,6.8,284, Improper Access Control,nan
CVE-2019-12842,5/07/2019 18:29,3/07/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14861,5/07/2019 18:27,3/07/2019 19:15,4.0,255, Credentials Management,nan
CVE-2018-14862,5/07/2019 18:23,3/07/2019 19:15,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-12250,5/07/2019 18:21,3/07/2019 17:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3888,5/07/2019 18:15,12/06/2019 14:29,5.0,255, Credentials Management,nan
CVE-2018-14863,5/07/2019 18:15,3/07/2019 19:15,5.5,284, Improper Access Control,nan
CVE-2019-7271,5/07/2019 18:10,1/07/2019 21:15,5.0,255, Credentials Management,nan
CVE-2018-14864,5/07/2019 18:09,3/07/2019 19:15,4.0,284, Improper Access Control,nan
CVE-2018-14865,5/07/2019 18:07,3/07/2019 19:15,4.0,200, Information Exposure,nan
CVE-2019-13067,5/07/2019 17:46,30/06/2019 0:15,7.5,125, Out-of-bounds Read,nan
CVE-2017-6216,5/07/2019 17:34,3/07/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3962,5/07/2019 17:29,1/07/2019 20:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-11686,5/07/2019 17:17,3/07/2019 17:15,7.5,20, Improper Input Validation,nan
CVE-2019-7260,5/07/2019 16:49,2/07/2019 18:15,5.0,255, Credentials Management,nan
CVE-2019-7259,5/07/2019 16:40,2/07/2019 18:15,4.0,285, Improper Authorization,nan
CVE-2019-7266,5/07/2019 16:22,2/07/2019 17:15,7.5,287, Improper Authentication,nan
CVE-2019-7270,5/07/2019 15:57,2/07/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15520,5/07/2019 15:47,28/06/2019 16:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7257,5/07/2019 15:46,2/07/2019 19:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9846,5/07/2019 15:37,28/06/2019 16:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6623,5/07/2019 14:15,2/07/2019 22:15,5.0,20, Improper Input Validation,nan
CVE-2019-12570,5/07/2019 14:01,3/07/2019 18:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9843,5/07/2019 13:55,28/06/2019 18:15,5.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10986,5/07/2019 13:50,3/07/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17560,5/07/2019 13:47,28/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17170,5/07/2019 13:46,28/06/2019 18:15,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14887,5/07/2019 13:44,28/06/2019 18:15,5.8,20, Improper Input Validation,nan
CVE-2018-14886,5/07/2019 13:38,28/06/2019 18:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-14885,5/07/2019 13:36,28/06/2019 18:15,7.5,284, Improper Access Control,nan
CVE-2018-14868,5/07/2019 13:32,28/06/2019 18:15,4.0,284, Improper Access Control,nan
CVE-2018-14867,5/07/2019 13:24,28/06/2019 18:15,5.0,284, Improper Access Control,nan
CVE-2018-15519,5/07/2019 13:18,28/06/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11317,5/07/2019 12:51,3/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7254,5/07/2019 12:41,2/07/2019 19:15,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-12760,5/07/2019 11:15,6/06/2019 19:29,6.0,502, Deserialization of Untrusted Data,nan
CVE-2018-7054,4/07/2019 21:15,15/02/2018 20:29,7.5,416, Use After Free,nan
CVE-2019-0920,4/07/2019 18:15,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20814,4/07/2019 16:15,28/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4101,4/07/2019 15:15,1/07/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2019-4154,4/07/2019 14:15,1/07/2019 15:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4102,4/07/2019 14:15,1/07/2019 15:15,4.3,326, Inadequate Encryption Strength,nan
CVE-2019-4386,4/07/2019 11:15,1/07/2019 15:15,4.0,749, Exposed Dangerous Method or Function,nan
CVE-2019-9701,3/07/2019 20:15,19/06/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20809,3/07/2019 19:58,28/06/2019 18:15,5.0,20, Improper Input Validation,nan
CVE-2018-16077,3/07/2019 19:55,27/06/2019 17:15,4.3,285, Improper Authorization,nan
CVE-2018-20810,3/07/2019 19:54,28/06/2019 18:15,7.5,326, Inadequate Encryption Strength,nan
CVE-2018-20812,3/07/2019 19:50,28/06/2019 18:15,5.0,200, Information Exposure,nan
CVE-2018-18326,3/07/2019 19:40,3/07/2019 17:15,5.0,310, Cryptographic Issues,nan
CVE-2018-18325,3/07/2019 19:40,3/07/2019 17:15,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-15812,3/07/2019 19:39,3/07/2019 17:15,5.0,310, Cryptographic Issues,nan
CVE-2018-15811,3/07/2019 19:39,3/07/2019 17:15,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1275,3/07/2019 19:15,11/04/2018 13:29,7.5,358, Improperly Implemented Security Check for Standard,nan
CVE-2018-1270,3/07/2019 19:15,6/04/2018 13:29,7.5,358, Improperly Implemented Security Check for Standard,nan
CVE-2018-1199,3/07/2019 19:15,16/03/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-7261,3/07/2019 19:14,2/07/2019 18:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-20811,3/07/2019 18:48,28/06/2019 18:15,5.0,200, Information Exposure,nan
CVE-2019-7263,3/07/2019 18:45,2/07/2019 17:15,10.0,18, DEPRECATED: Source Code,nan
CVE-2019-5497,3/07/2019 18:45,1/07/2019 21:15,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5065,3/07/2019 18:37,24/06/2015 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4033,3/07/2019 18:37,6/07/2015 14:59,3.3,200, Information Exposure,nan
CVE-2019-6620,3/07/2019 18:36,2/07/2019 21:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6622,3/07/2019 18:32,2/07/2019 21:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6624,3/07/2019 18:29,2/07/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2019-7264,3/07/2019 18:18,2/07/2019 17:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-13035,3/07/2019 18:11,29/06/2019 13:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-7265,3/07/2019 18:07,2/07/2019 17:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-13082,3/07/2019 18:01,30/06/2019 16:15,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13086,3/07/2019 17:57,30/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7256,3/07/2019 17:55,2/07/2019 19:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7252,3/07/2019 17:37,2/07/2019 19:15,5.0,255, Credentials Management,nan
CVE-2019-13147,3/07/2019 17:26,2/07/2019 0:15,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7269,3/07/2019 17:25,27/03/2017 2:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2531,3/07/2019 17:25,14/11/2012 0:55,2.1,200, Information Exposure,nan
CVE-2011-5279,3/07/2019 17:25,23/04/2014 20:55,6.4,20, Improper Input Validation,nan
CVE-2010-3972,3/07/2019 17:25,23/12/2010 18:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2731,3/07/2019 17:25,15/09/2010 19:00,6.8,287, Improper Authentication,nan
CVE-2010-2730,3/07/2019 17:25,15/09/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1899,3/07/2019 17:25,15/09/2010 19:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1256,3/07/2019 17:25,8/06/2010 20:30,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4444,3/07/2019 17:25,29/12/2009 21:00,6.0,20, Improper Input Validation,nan
CVE-2009-3555,3/07/2019 17:25,9/11/2009 17:30,5.8,310, Cryptographic Issues,nan
CVE-2009-3023,3/07/2019 17:25,31/08/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2521,3/07/2019 17:25,4/09/2009 10:30,2.6,399, Resource Management Errors,nan
CVE-2009-1535,3/07/2019 17:25,10/06/2009 14:30,7.6,287, Improper Authentication,nan
CVE-2008-1446,3/07/2019 17:25,15/10/2008 0:12,9.0,189, Numeric Errors,nan
CVE-2003-1582,3/07/2019 17:25,5/02/2010 22:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7253,3/07/2019 17:19,2/07/2019 19:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4322,3/07/2019 17:15,1/07/2019 15:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20813,3/07/2019 17:11,28/06/2019 18:15,7.5,20, Improper Input Validation,nan
CVE-2019-12932,3/07/2019 17:09,28/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7255,3/07/2019 17:08,2/07/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13175,3/07/2019 16:58,2/07/2019 20:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-13085,3/07/2019 16:57,30/06/2019 16:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-13084,3/07/2019 16:57,30/06/2019 16:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-13083,3/07/2019 16:56,30/06/2019 16:15,6.8,787, Out-of-bounds Write,nan
CVE-2018-20808,3/07/2019 16:56,28/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13038,3/07/2019 16:51,29/06/2019 14:15,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-10978,3/07/2019 16:49,17/07/2017 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12997,3/07/2019 16:18,28/06/2019 14:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12966,3/07/2019 16:03,26/06/2019 12:15,7.5,20, Improper Input Validation,nan
CVE-2018-14919,3/07/2019 15:27,28/06/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4292,3/07/2019 15:15,2/07/2019 15:15,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-13045,3/07/2019 15:15,29/06/2019 14:15,6.8,416, Use After Free,nan
CVE-2018-14916,3/07/2019 15:09,28/06/2019 18:15,9.4,19, Data Processing Errors,nan
CVE-2018-14918,3/07/2019 15:00,28/06/2019 18:15,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7262,3/07/2019 14:47,2/07/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7258,3/07/2019 14:44,2/07/2019 19:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-6819,3/07/2019 14:15,22/05/2019 20:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-7668,3/07/2019 13:59,1/07/2019 19:15,5.0,255, Credentials Management,nan
CVE-2014-9699,3/07/2019 13:59,24/06/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-9958,3/07/2019 13:48,24/06/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17945,3/07/2019 13:28,24/06/2019 19:15,6.4,295, Improper Certificate Validation,nan
CVE-2019-4410,3/07/2019 12:15,1/07/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-13056,3/07/2019 11:59,2/07/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5953,2/07/2019 23:15,17/05/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3895,2/07/2019 23:15,3/06/2019 19:29,6.8,284, Improper Access Control,nan
CVE-2018-20815,2/07/2019 23:15,31/05/2019 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9795,2/07/2019 22:15,10/01/2018 3:29,6.0,200, Information Exposure,nan
CVE-2019-0906,2/07/2019 21:15,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12778,2/07/2019 20:15,9/05/2019 17:29,3.6,287, Improper Authentication,nan
CVE-2019-12379,2/07/2019 19:15,28/05/2019 3:29,4.9,399, Resource Management Errors,nan
CVE-2019-12968,2/07/2019 17:45,26/06/2019 13:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12995,2/07/2019 17:37,28/06/2019 10:15,5.0,20, Improper Input Validation,nan
CVE-2019-7278,2/07/2019 17:29,1/07/2019 20:15,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-7277,2/07/2019 17:17,1/07/2019 20:15,5.0,200, Information Exposure,nan
CVE-2019-6550,2/07/2019 17:15,5/04/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10993,2/07/2019 17:15,28/06/2019 21:15,7.5,476, NULL Pointer Dereference,nan
CVE-2019-10991,2/07/2019 17:15,28/06/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10989,2/07/2019 17:15,28/06/2019 21:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10987,2/07/2019 17:15,28/06/2019 21:15,6.8,787, Out-of-bounds Write,nan
CVE-2019-10985,2/07/2019 17:15,28/06/2019 21:15,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10983,2/07/2019 17:15,28/06/2019 21:15,5.0,125, Out-of-bounds Read,nan
CVE-2019-13153,2/07/2019 16:56,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13152,2/07/2019 16:56,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13151,2/07/2019 16:56,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13150,2/07/2019 16:56,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13149,2/07/2019 16:56,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13148,2/07/2019 16:56,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13154,2/07/2019 16:51,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-13155,2/07/2019 16:46,2/07/2019 13:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7276,2/07/2019 16:36,1/07/2019 20:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12929,2/07/2019 16:15,24/06/2019 11:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12928,2/07/2019 16:15,24/06/2019 11:15,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-5235,2/07/2019 16:11,1/07/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12981,2/07/2019 15:29,26/06/2019 18:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12980,2/07/2019 15:28,26/06/2019 18:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-7274,2/07/2019 15:17,1/07/2019 21:15,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9824,2/07/2019 15:15,3/06/2019 21:29,2.1,200, Information Exposure,nan
CVE-2016-7055,2/07/2019 15:12,4/05/2017 20:29,2.6,320, Key Management Errors,nan
CVE-2016-7954,2/07/2019 14:55,22/12/2016 22:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7279,2/07/2019 14:44,1/07/2019 19:15,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-7272,2/07/2019 14:31,1/07/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-7273,2/07/2019 14:20,1/07/2019 21:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5236,2/07/2019 14:08,1/07/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6145,2/07/2019 14:05,27/06/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6148,2/07/2019 13:57,27/06/2019 17:15,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-7275,2/07/2019 13:55,1/07/2019 20:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-6149,2/07/2019 13:30,27/06/2019 17:15,6.8,787, Out-of-bounds Write,nan
CVE-2018-20848,2/07/2019 12:30,30/06/2019 19:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20849,1/07/2019 20:36,30/06/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3896,1/07/2019 20:15,19/06/2019 0:15,7.2,415, Double Free,nan
CVE-2018-16086,1/07/2019 19:24,27/06/2019 17:15,5.8,285, Improper Authorization,nan
CVE-2018-6155,1/07/2019 19:23,27/06/2019 17:15,4.3,416, Use After Free,nan
CVE-2018-6157,1/07/2019 19:21,27/06/2019 17:15,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-16070,1/07/2019 19:16,27/06/2019 17:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-6159,1/07/2019 19:15,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2018-16073,1/07/2019 19:05,27/06/2019 17:15,4.3,285, Improper Authorization,nan
CVE-2018-6171,1/07/2019 18:58,27/06/2019 17:15,2.9,416, Use After Free,nan
CVE-2019-5784,1/07/2019 18:54,27/06/2019 17:15,4.3,19, Data Processing Errors,nan
CVE-2018-16074,1/07/2019 18:52,27/06/2019 17:15,4.3,285, Improper Authorization,nan
CVE-2018-16075,1/07/2019 18:39,27/06/2019 17:15,2.6,254, 7PK – Security Features,nan
CVE-2019-5785,1/07/2019 18:32,27/06/2019 17:15,4.3,787, Out-of-bounds Write,nan
CVE-2019-5786,1/07/2019 18:26,27/06/2019 17:15,4.3,416, Use After Free,nan
CVE-2019-0285,1/07/2019 18:15,10/04/2019 21:29,5.0,200, Information Exposure,nan
CVE-2017-17871,1/07/2019 17:25,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6961,1/07/2019 17:22,20/06/2019 14:15,4.0,284, Improper Access Control,nan
CVE-2019-12982,1/07/2019 17:10,26/06/2019 18:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12887,1/07/2019 16:53,27/06/2019 14:15,6.8,284, Improper Access Control,nan
CVE-2008-7226,1/07/2019 16:48,14/09/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6865,1/07/2019 16:48,14/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5039,1/07/2019 16:48,12/11/2008 21:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4804,1/07/2019 16:48,31/10/2008 18:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4767,1/07/2019 16:48,28/10/2008 10:30,9.0,20, Improper Input Validation,nan
CVE-2008-1314,1/07/2019 16:48,12/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1308,1/07/2019 16:48,12/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5083,1/07/2019 16:42,14/02/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6150,1/07/2019 15:07,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-12323,1/07/2019 14:48,24/06/2019 16:15,5.0,20, Improper Input Validation,nan
CVE-2019-13046,1/07/2019 14:43,29/06/2019 15:15,7.2,388, 7PK – Errors,nan
CVE-2019-13047,1/07/2019 14:42,29/06/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-13048,1/07/2019 14:14,29/06/2019 15:15,4.9,20, Improper Input Validation,nan
CVE-2019-13049,1/07/2019 14:03,29/06/2019 15:15,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-6121,1/07/2019 14:03,27/06/2019 17:15,6.8,20, Improper Input Validation,nan
CVE-2018-6128,1/07/2019 13:52,27/06/2019 17:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6129,1/07/2019 13:37,27/06/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-6130,1/07/2019 13:27,27/06/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-9087,1/07/2019 12:52,7/06/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9086,1/07/2019 12:52,7/06/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9084,1/07/2019 12:52,7/06/2019 21:29,4.0,369, Divide By Zero,nan
CVE-2018-1000844,1/07/2019 12:44,20/12/2018 15:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5810,1/07/2019 6:15,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-5809,1/07/2019 6:15,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2019-12483,30/06/2019 23:15,30/05/2019 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12482,30/06/2019 23:15,30/05/2019 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12481,30/06/2019 23:15,30/05/2019 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-11840,30/06/2019 21:15,9/05/2019 16:29,4.3,330, Use of Insufficiently Random Values,nan
CVE-2018-6799,30/06/2019 3:15,7/02/2018 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17503,30/06/2019 3:15,11/12/2017 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17502,30/06/2019 3:15,11/12/2017 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17501,30/06/2019 3:15,11/12/2017 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17500,30/06/2019 3:15,11/12/2017 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-15930,30/06/2019 3:15,27/10/2017 18:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-15238,30/06/2019 3:15,11/10/2017 3:29,6.8,416, Use After Free,nan
CVE-2017-14997,30/06/2019 3:15,4/10/2017 1:29,7.1,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-14994,30/06/2019 3:15,4/10/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14504,30/06/2019 3:15,17/09/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-13737,30/06/2019 3:15,29/08/2017 6:29,4.3,416, Use After Free,nan
CVE-2017-13065,30/06/2019 3:15,22/08/2017 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-13064,30/06/2019 3:15,22/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13063,30/06/2019 3:15,22/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12936,30/06/2019 3:15,18/08/2017 12:29,6.8,416, Use After Free,nan
CVE-2017-12935,30/06/2019 3:15,18/08/2017 12:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-5390,28/06/2019 21:15,6/08/2018 20:29,7.8,20, Improper Input Validation,nan
CVE-2018-1002105,28/06/2019 21:15,5/12/2018 21:29,7.5,388, 7PK – Errors,nan
CVE-2019-12817,28/06/2019 19:15,25/06/2019 12:15,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5840,28/06/2019 18:15,27/06/2019 17:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5813,28/06/2019 18:15,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2019-5808,28/06/2019 18:15,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2019-5804,28/06/2019 18:15,23/05/2019 20:29,2.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5803,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5802,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5801,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5800,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5799,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5796,28/06/2019 18:15,23/05/2019 20:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-5795,28/06/2019 18:15,23/05/2019 20:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5794,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5793,28/06/2019 18:15,23/05/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-5792,28/06/2019 18:15,23/05/2019 20:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5791,28/06/2019 18:15,23/05/2019 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-5790,28/06/2019 18:15,23/05/2019 20:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-5789,28/06/2019 18:15,23/05/2019 20:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2019-5788,28/06/2019 18:15,23/05/2019 20:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2019-5787,28/06/2019 18:15,23/05/2019 20:29,9.3,416, Use After Free,nan
CVE-2018-6118,28/06/2019 17:45,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2019-12583,28/06/2019 17:34,27/06/2019 14:15,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-12581,28/06/2019 17:28,27/06/2019 15:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16064,28/06/2019 16:49,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2018-16069,28/06/2019 16:34,27/06/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-17460,28/06/2019 16:27,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2018-17478,28/06/2019 16:25,27/06/2019 17:15,6.8,129, Improper Validation of Array Index,nan
CVE-2018-17479,28/06/2019 16:19,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2017-5028,28/06/2019 15:57,27/06/2019 17:15,4.3,20, Improper Input Validation,nan
CVE-2018-6154,28/06/2019 15:37,27/06/2019 17:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6176,28/06/2019 15:36,27/06/2019 17:15,4.6,20, Improper Input Validation,nan
CVE-2018-6168,28/06/2019 15:36,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2018-6161,28/06/2019 15:36,27/06/2019 17:15,6.8,20, Improper Input Validation,nan
CVE-2018-6177,28/06/2019 15:35,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2018-6192,28/06/2019 15:15,24/01/2018 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20847,28/06/2019 15:15,26/06/2019 18:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20846,28/06/2019 15:15,26/06/2019 18:15,4.3,20, Improper Input Validation,nan
CVE-2018-20845,28/06/2019 15:15,26/06/2019 18:15,4.3,369, Divide By Zero,nan
CVE-2019-6964,28/06/2019 14:16,20/06/2019 14:15,6.5,125, Out-of-bounds Read,nan
CVE-2018-6138,28/06/2019 14:07,27/06/2019 17:15,5.8,20, Improper Input Validation,nan
CVE-2018-6142,28/06/2019 14:00,27/06/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-6962,28/06/2019 13:57,20/06/2019 14:15,8.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6963,28/06/2019 13:48,20/06/2019 14:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6136,28/06/2019 13:36,27/06/2019 17:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-6131,28/06/2019 12:30,27/06/2019 17:15,6.8,416, Use After Free,nan
CVE-2018-6132,28/06/2019 12:18,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-4377,28/06/2019 9:15,25/06/2019 16:15,4.0,200, Information Exposure,nan
CVE-2017-1107,28/06/2019 9:15,19/06/2019 14:15,4.0,200, Information Exposure,nan
CVE-2019-12979,28/06/2019 7:15,26/06/2019 18:15,6.8,665, Improper Initialization,nan
CVE-2019-12978,28/06/2019 7:15,26/06/2019 18:15,6.8,665, Improper Initialization,nan
CVE-2019-12977,28/06/2019 7:15,26/06/2019 18:15,6.8,665, Improper Initialization,nan
CVE-2019-12976,28/06/2019 7:15,26/06/2019 18:15,4.3,399, Resource Management Errors,nan
CVE-2019-12975,28/06/2019 7:15,26/06/2019 18:15,4.3,399, Resource Management Errors,nan
CVE-2019-12974,28/06/2019 7:15,26/06/2019 18:15,4.3,476, NULL Pointer Dereference,nan
CVE-2019-11272,27/06/2019 21:15,26/06/2019 14:15,7.5,255, Credentials Management,nan
CVE-2018-6134,27/06/2019 19:14,27/06/2019 17:15,4.3,200, Information Exposure,nan
CVE-2019-12572,27/06/2019 18:59,21/06/2019 18:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11682,27/06/2019 18:15,2/06/2018 13:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-11681,27/06/2019 18:15,2/06/2018 13:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-11629,27/06/2019 18:15,2/06/2018 13:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-12938,27/06/2019 17:35,24/06/2019 14:15,4.0,693, Protection Mechanism Failure,nan
CVE-2019-12919,27/06/2019 17:35,20/06/2019 19:15,2.1,200, Information Exposure,nan
CVE-2019-12920,27/06/2019 17:34,20/06/2019 19:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-10689,27/06/2019 17:26,24/06/2019 22:15,3.3,287, Improper Authentication,nan
CVE-2018-15891,27/06/2019 17:08,20/06/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12871,27/06/2019 16:33,24/06/2019 15:15,6.8,416, Use After Free,nan
CVE-2019-12869,27/06/2019 16:27,24/06/2019 16:15,6.8,125, Out-of-bounds Read,nan
CVE-2019-12870,27/06/2019 16:26,24/06/2019 16:15,6.8,824, Access of Uninitialized Pointer,nan
CVE-2019-9631,27/06/2019 16:15,8/03/2019 5:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-10023,27/06/2019 16:15,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-10021,27/06/2019 16:15,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-10019,27/06/2019 16:15,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-10018,27/06/2019 16:15,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2018-20662,27/06/2019 16:15,3/01/2019 13:29,4.3,20, Improper Input Validation,nan
CVE-2019-9957,27/06/2019 16:06,24/06/2019 19:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9085,27/06/2019 15:31,24/06/2019 18:15,4.0,20, Improper Input Validation,nan
CVE-2018-15747,27/06/2019 15:23,21/06/2019 14:15,7.5,20, Improper Input Validation,nan
CVE-2019-4303,27/06/2019 14:15,19/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11583,27/06/2019 14:06,26/06/2019 16:15,4.0,284, Improper Access Control,nan
CVE-2019-12972,27/06/2019 14:03,26/06/2019 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2019-4364,27/06/2019 13:15,19/06/2019 14:15,8.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12292,27/06/2019 12:57,24/06/2019 16:15,7.5,284, Improper Access Control,nan
CVE-2019-9928,27/06/2019 12:15,24/04/2019 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7637,27/06/2019 12:15,8/02/2019 11:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16876,27/06/2019 12:15,3/01/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-12648,27/06/2019 12:15,22/06/2018 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-12346,27/06/2019 11:15,24/06/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2013,27/06/2019 11:15,25/06/2019 16:15,5.0,200, Information Exposure,nan
CVE-2018-2011,27/06/2019 11:15,25/06/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-4385,27/06/2019 8:15,19/06/2019 14:15,2.1,200, Information Exposure,nan
CVE-2019-4384,27/06/2019 8:15,19/06/2019 14:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1858,27/06/2019 8:15,25/06/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7589,26/06/2019 23:15,1/03/2018 22:29,6.8,415, Double Free,nan
CVE-2018-7587,26/06/2019 23:15,1/03/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20843,26/06/2019 21:15,24/06/2019 17:15,7.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-6828,26/06/2019 19:51,16/09/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2016-7404,26/06/2019 19:22,21/06/2019 14:15,7.5,200, Information Exposure,nan
CVE-2015-6946,26/06/2019 19:19,15/09/2015 18:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1899,26/06/2019 19:15,20/06/2019 3:15,5.0,285, Improper Authorization,nan
CVE-2019-1898,26/06/2019 19:15,20/06/2019 3:15,5.0,285, Improper Authorization,nan
CVE-2019-1897,26/06/2019 19:15,20/06/2019 3:15,5.0,285, Improper Authorization,nan
CVE-2016-1276,26/06/2019 19:10,5/08/2016 15:59,7.1,399, Resource Management Errors,nan
CVE-2018-10301,26/06/2019 18:15,23/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10300,26/06/2019 18:15,23/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9346,26/06/2019 17:43,8/12/2014 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12280,26/06/2019 17:27,25/06/2019 21:15,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-6328,26/06/2019 16:28,25/06/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12375,26/06/2019 16:06,3/06/2019 20:29,4.1,20, Improper Input Validation,nan
CVE-2019-12373,26/06/2019 15:45,3/06/2019 20:29,2.7,255, Credentials Management,nan
CVE-2019-12376,26/06/2019 15:41,3/06/2019 20:29,2.7,798, Use of Hard-coded Credentials,nan
CVE-2019-9796,26/06/2019 15:31,26/04/2019 17:29,7.5,416, Use After Free,nan
CVE-2015-3281,26/06/2019 13:49,6/07/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7839,26/06/2019 13:15,12/06/2019 16:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5243,26/06/2019 12:48,20/08/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-3961,26/06/2019 12:02,25/06/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4382,26/06/2019 10:15,25/06/2019 16:15,5.0,200, Information Exposure,nan
CVE-2019-12939,26/06/2019 10:15,24/06/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18258,26/06/2019 8:15,11/10/2018 21:01,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10858,26/06/2019 8:15,22/08/2018 17:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10708,26/06/2019 8:15,21/01/2018 22:29,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9896,25/06/2019 19:38,11/06/2018 21:29,6.8,416, Use After Free,nan
CVE-2019-12836,25/06/2019 19:31,21/06/2019 15:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10828,25/06/2019 18:15,9/05/2018 18:29,2.1,20, Improper Input Validation,nan
CVE-2019-12949,25/06/2019 17:36,25/06/2019 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12951,25/06/2019 17:30,24/06/2019 23:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4413,25/06/2019 17:18,24/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12964,25/06/2019 16:30,25/06/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12962,25/06/2019 16:17,25/06/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3904,25/06/2019 15:56,29/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12963,25/06/2019 15:47,25/06/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12960,25/06/2019 15:26,25/06/2019 13:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5460,25/06/2019 15:21,8/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9735,25/06/2019 15:15,13/03/2019 2:29,4.0,254, 7PK – Security Features,nan
CVE-2019-7396,25/06/2019 15:15,5/02/2019 0:29,5.0,399, Resource Management Errors,nan
CVE-2019-3821,25/06/2019 15:15,27/03/2019 13:29,5.0,399, Resource Management Errors,nan
CVE-2019-10649,25/06/2019 15:15,30/03/2019 14:29,4.3,399, Resource Management Errors,nan
CVE-2018-18025,25/06/2019 15:15,7/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18023,25/06/2019 15:15,7/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16846,25/06/2019 15:15,15/01/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-16323,25/06/2019 15:15,1/09/2018 18:29,4.3,200, Information Exposure,nan
CVE-2018-15607,25/06/2019 15:15,21/08/2018 15:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-12806,25/06/2019 15:15,9/05/2019 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-12805,25/06/2019 15:15,9/05/2019 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-12961,25/06/2019 15:04,25/06/2019 13:15,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16118,25/06/2019 13:49,20/06/2019 17:15,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-10271,25/06/2019 12:55,24/06/2019 19:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2203,25/06/2019 12:22,22/04/2016 18:59,2.1,255, Credentials Management,nan
CVE-2019-12874,25/06/2019 12:15,18/06/2019 18:15,7.5,415, Double Free,nan
CVE-2018-15664,25/06/2019 12:15,23/05/2019 14:29,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-12875,25/06/2019 10:15,18/06/2019 19:15,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-0220,25/06/2019 10:15,11/06/2019 21:29,5.0,399, Resource Management Errors,nan
CVE-2019-10072,25/06/2019 7:15,21/06/2019 18:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-12935,25/06/2019 5:15,23/06/2019 23:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12880,25/06/2019 1:15,24/06/2019 19:15,4.3,20, Improper Input Validation,nan
CVE-2019-0755,25/06/2019 1:15,9/04/2019 0:29,2.1,200, Information Exposure,nan
CVE-2019-12900,24/06/2019 23:15,19/06/2019 23:15,7.5,787, Out-of-bounds Write,nan
CVE-2019-12828,24/06/2019 23:15,14/06/2019 20:29,6.8,19, Data Processing Errors,nan
CVE-2019-12801,24/06/2019 23:15,17/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12745,24/06/2019 23:15,20/06/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12744,24/06/2019 23:15,20/06/2019 17:15,6.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12276,24/06/2019 23:15,5/06/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11354,24/06/2019 23:15,19/04/2019 22:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10672,24/06/2019 23:15,31/03/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2018-12056,24/06/2019 21:15,15/08/2018 17:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-18376,24/06/2019 21:15,2/06/2019 20:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3637,24/06/2019 21:15,22/09/2014 15:55,2.1,17, DEPRECATED: Code,nan
CVE-2018-15892,24/06/2019 20:30,20/06/2019 17:15,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15694,24/06/2019 19:34,21/06/2019 16:15,4.0,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2017-18342,24/06/2019 19:15,27/06/2018 12:29,7.5,20, Improper Input Validation,nan
CVE-2018-16117,24/06/2019 19:05,20/06/2019 17:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-11648,24/06/2019 18:44,24/06/2019 16:15,5.0,200, Information Exposure,nan
CVE-2015-6808,24/06/2019 18:36,4/09/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12269,24/06/2019 18:15,21/05/2019 20:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2015-6811,24/06/2019 17:58,4/09/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12940,24/06/2019 17:38,24/06/2019 16:15,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-16595,24/06/2019 17:34,19/06/2019 19:15,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15913,24/06/2019 17:31,20/06/2019 19:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5853,24/06/2019 17:30,8/01/2015 1:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16593,24/06/2019 17:28,19/06/2019 19:15,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-16594,24/06/2019 17:23,19/06/2019 19:15,4.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10028,24/06/2019 17:07,21/06/2019 21:15,5.0,20, Improper Input Validation,nan
CVE-2015-4031,24/06/2019 16:55,29/05/2015 15:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12881,24/06/2019 16:15,18/06/2019 23:15,4.6,476, NULL Pointer Dereference,nan
CVE-2019-11128,24/06/2019 16:15,13/06/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2019-11127,24/06/2019 16:15,13/06/2019 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11126,24/06/2019 16:15,13/06/2019 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11125,24/06/2019 16:15,13/06/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2019-11124,24/06/2019 16:15,13/06/2019 16:29,4.6,787, Out-of-bounds Write,nan
CVE-2019-11123,24/06/2019 16:15,13/06/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2019-11119,24/06/2019 16:15,13/06/2019 16:29,7.5,20, Improper Input Validation,nan
CVE-2019-0183,24/06/2019 16:15,13/06/2019 16:29,2.1,200, Information Exposure,nan
CVE-2019-0182,24/06/2019 16:15,13/06/2019 16:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0181,24/06/2019 16:15,13/06/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2019-0180,24/06/2019 16:15,13/06/2019 16:29,3.6,254, 7PK – Security Features,nan
CVE-2019-0179,24/06/2019 16:15,13/06/2019 16:29,3.6,254, 7PK – Security Features,nan
CVE-2019-0178,24/06/2019 16:15,13/06/2019 16:29,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-0177,24/06/2019 16:15,13/06/2019 16:29,3.6,20, Improper Input Validation,nan
CVE-2019-0175,24/06/2019 16:15,13/06/2019 16:29,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0157,24/06/2019 16:15,13/06/2019 16:29,2.1,20, Improper Input Validation,nan
CVE-2019-0136,24/06/2019 16:15,13/06/2019 16:29,3.3,284, Improper Access Control,nan
CVE-2019-11472,24/06/2019 15:15,23/04/2019 14:29,4.3,369, Divide By Zero,nan
CVE-2019-11470,24/06/2019 15:15,23/04/2019 14:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-2580,24/06/2019 15:15,27/07/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-2579,24/06/2019 15:15,27/07/2018 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2016-0363,24/06/2019 14:25,3/06/2016 14:59,6.8,20, Improper Input Validation,nan
CVE-2016-0264,24/06/2019 14:07,24/05/2016 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15868,24/06/2019 13:59,21/06/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12937,24/06/2019 13:58,23/06/2019 23:15,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16119,24/06/2019 13:52,20/06/2019 16:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18425,24/06/2019 13:22,19/06/2019 16:15,4.0,330, Use of Insufficiently Random Values,nan
CVE-2019-10270,24/06/2019 13:14,21/06/2019 18:15,4.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-16116,24/06/2019 12:53,20/06/2019 17:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12890,24/06/2019 12:52,19/06/2019 18:15,7.5,287, Improper Authentication,nan
CVE-2018-18406,24/06/2019 12:29,19/06/2019 16:15,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-18471,24/06/2019 12:02,19/06/2019 16:15,10.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1874,24/06/2019 6:15,20/06/2019 3:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18472,24/06/2019 1:34,19/06/2019 16:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12902,24/06/2019 1:19,20/06/2019 0:15,4.0,200, Information Exposure,nan
CVE-2019-11392,23/06/2019 19:33,21/06/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10720,23/06/2019 19:33,21/06/2019 19:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10719,23/06/2019 19:32,21/06/2019 19:15,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10718,23/06/2019 19:27,21/06/2019 19:15,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17146,23/06/2019 19:20,19/06/2019 18:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11011,23/06/2019 19:17,21/06/2019 18:15,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-3957,21/06/2019 22:15,6/02/2018 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-3954,21/06/2019 22:15,6/02/2018 18:29,2.1,200, Information Exposure,nan
CVE-2016-3953,21/06/2019 22:15,6/02/2018 18:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-3952,21/06/2019 22:15,6/02/2018 18:29,2.1,255, Credentials Management,nan
CVE-2016-10321,21/06/2019 22:15,10/04/2017 14:59,5.0,254, 7PK – Security Features,nan
CVE-2018-17148,21/06/2019 21:11,19/06/2019 18:15,5.0,284, Improper Access Control,nan
CVE-2019-12903,21/06/2019 20:45,20/06/2019 0:15,4.0,200, Information Exposure,nan
CVE-2019-12901,21/06/2019 20:43,20/06/2019 0:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-15665,21/06/2019 20:28,21/06/2019 15:15,5.0,200, Information Exposure,nan
CVE-2018-16251,21/06/2019 19:59,20/06/2019 14:15,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18519,21/06/2019 19:15,19/11/2018 8:29,6.8,426, Untrusted Search Path,nan
CVE-2018-16249,21/06/2019 18:55,20/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16250,21/06/2019 18:41,20/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17386,21/06/2019 18:26,19/06/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15734,21/06/2019 18:26,21/06/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2018-15729,21/06/2019 18:26,21/06/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2018-15732,21/06/2019 18:16,21/06/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2019-11271,21/06/2019 18:15,19/06/2019 0:15,2.1,200, Information Exposure,nan
CVE-2018-15733,21/06/2019 18:13,21/06/2019 15:15,2.1,476, NULL Pointer Dereference,nan
CVE-2018-15731,21/06/2019 18:08,21/06/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2017-17944,21/06/2019 18:05,20/06/2019 15:15,6.4,295, Improper Certificate Validation,nan
CVE-2018-15730,21/06/2019 18:01,21/06/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2018-15735,21/06/2019 17:59,21/06/2019 15:15,2.1,20, Improper Input Validation,nan
CVE-2018-15737,21/06/2019 17:45,21/06/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2018-15736,21/06/2019 17:44,21/06/2019 14:15,2.1,20, Improper Input Validation,nan
CVE-2018-17387,21/06/2019 17:08,19/06/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19878,21/06/2019 16:36,19/06/2019 16:15,6.8,416, Use After Free,nan
CVE-2019-12491,21/06/2019 16:30,19/06/2019 16:15,8.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-15506,21/06/2019 16:14,19/06/2019 17:15,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-16514,21/06/2019 16:12,20/06/2019 14:15,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16553,21/06/2019 15:49,20/06/2019 14:15,6.5,284, Improper Access Control,nan
CVE-2018-16618,21/06/2019 15:24,19/06/2019 18:15,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11232,21/06/2019 15:22,19/06/2019 17:15,5.0,255, Credentials Management,nan
CVE-2019-11233,21/06/2019 15:17,19/06/2019 17:15,5.0,200, Information Exposure,nan
CVE-2017-8337,21/06/2019 15:17,18/06/2019 21:15,6.8,200, Information Exposure,nan
CVE-2017-8330,21/06/2019 15:07,18/06/2019 21:15,3.3,20, Improper Input Validation,nan
CVE-2019-2025,21/06/2019 15:05,19/06/2019 21:15,7.2,416, Use After Free,nan
CVE-2017-8332,21/06/2019 14:55,18/06/2019 21:15,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8331,21/06/2019 14:50,18/06/2019 20:15,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8333,21/06/2019 14:46,18/06/2019 20:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12895,21/06/2019 14:35,19/06/2019 22:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12894,21/06/2019 14:34,19/06/2019 22:15,5.0,284, Improper Access Control,nan
CVE-2019-12893,21/06/2019 14:29,19/06/2019 22:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12899,21/06/2019 14:21,19/06/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12898,21/06/2019 14:21,19/06/2019 22:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14395,21/06/2019 13:59,19/06/2019 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14394,21/06/2019 13:49,19/06/2019 22:15,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-9386,21/06/2019 13:43,17/06/2019 20:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8328,21/06/2019 13:37,18/06/2019 21:15,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8336,21/06/2019 13:16,18/06/2019 19:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16248,21/06/2019 12:27,20/06/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12897,21/06/2019 12:26,19/06/2019 22:15,5.0,284, Improper Access Control,nan
CVE-2019-12896,21/06/2019 12:26,19/06/2019 22:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2019,21/06/2019 12:04,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2018-2008,21/06/2019 8:15,7/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2019-5017,21/06/2019 3:15,17/06/2019 21:15,5.0,200, Information Exposure,nan
CVE-2019-0090,21/06/2019 3:15,17/05/2019 16:29,4.4,284, Improper Access Control,nan
CVE-2019-1985,21/06/2019 3:08,19/06/2019 20:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1989,21/06/2019 3:01,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2004,21/06/2019 2:56,19/06/2019 20:15,4.9,200, Information Exposure,nan
CVE-2019-2005,21/06/2019 2:52,19/06/2019 20:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-1990,21/06/2019 2:31,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2006,21/06/2019 2:30,19/06/2019 20:15,10.0,416, Use After Free,nan
CVE-2019-2007,21/06/2019 2:26,19/06/2019 20:15,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-2008,21/06/2019 2:20,19/06/2019 20:15,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-2009,21/06/2019 2:16,19/06/2019 20:15,8.3,787, Out-of-bounds Write,nan
CVE-2019-10997,21/06/2019 2:00,17/06/2019 18:15,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8334,21/06/2019 1:46,18/06/2019 21:15,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12816,20/06/2019 23:15,15/06/2019 16:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-11129,20/06/2019 23:15,13/06/2019 16:29,4.6,787, Out-of-bounds Write,nan
CVE-2019-11040,20/06/2019 22:15,19/06/2019 0:15,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11039,20/06/2019 22:15,19/06/2019 0:15,6.4,125, Out-of-bounds Read,nan
CVE-2017-8335,20/06/2019 20:55,18/06/2019 19:15,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8329,20/06/2019 20:43,18/06/2019 20:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5016,20/06/2019 20:41,17/06/2019 21:15,6.4,200, Information Exposure,nan
CVE-2019-12789,20/06/2019 20:25,17/06/2019 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-12813,20/06/2019 20:22,13/06/2019 23:29,4.3,310, Cryptographic Issues,nan
CVE-2019-11479,20/06/2019 20:15,19/06/2019 0:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-11478,20/06/2019 20:15,19/06/2019 0:15,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-11477,20/06/2019 20:15,19/06/2019 0:15,7.8,190, Integer Overflow or Wraparound,nan
CVE-2019-10998,20/06/2019 20:15,18/06/2019 13:15,4.6,287, Improper Authentication,nan
CVE-2018-20092,20/06/2019 20:15,17/12/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-2010,20/06/2019 20:09,19/06/2019 20:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-2011,20/06/2019 20:03,19/06/2019 20:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-12133,20/06/2019 20:01,18/06/2019 22:15,7.2,275, Permission Issues,nan
CVE-2018-9561,20/06/2019 19:53,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2019-2012,20/06/2019 19:50,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2015,20/06/2019 19:45,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2014,20/06/2019 19:45,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2013,20/06/2019 19:43,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2019-2016,20/06/2019 19:33,19/06/2019 20:15,9.3,787, Out-of-bounds Write,nan
CVE-2017-10721,20/06/2019 19:32,17/06/2019 22:15,4.0,284, Improper Access Control,nan
CVE-2019-2021,20/06/2019 19:29,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2018-9563,20/06/2019 19:29,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2019-2018,20/06/2019 19:23,19/06/2019 21:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-9564,20/06/2019 19:17,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2017-7653,20/06/2019 19:15,5/06/2018 20:29,3.5,20, Improper Input Validation,nan
CVE-2019-2020,20/06/2019 19:12,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2019-2003,20/06/2019 19:11,19/06/2019 21:15,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-10723,20/06/2019 19:10,17/06/2019 22:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16247,20/06/2019 19:06,20/06/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10722,20/06/2019 19:03,17/06/2019 22:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10720,20/06/2019 18:53,17/06/2019 22:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10724,20/06/2019 18:50,17/06/2019 22:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2022,20/06/2019 18:38,19/06/2019 21:15,7.1,125, Out-of-bounds Read,nan
CVE-2018-15890,20/06/2019 18:34,20/06/2019 17:15,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-16613,20/06/2019 18:33,19/06/2019 18:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-2017,20/06/2019 18:28,19/06/2019 21:15,7.2,787, Out-of-bounds Write,nan
CVE-2019-2023,20/06/2019 18:27,19/06/2019 21:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-3804,20/06/2019 18:15,26/03/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2017-10719,20/06/2019 18:12,17/06/2019 22:15,4.0,200, Information Exposure,nan
CVE-2017-10718,20/06/2019 18:08,17/06/2019 22:15,4.0,255, Credentials Management,nan
CVE-2018-10239,20/06/2019 17:17,17/06/2019 15:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0170,20/06/2019 17:15,17/05/2019 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0099,20/06/2019 17:15,17/05/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0086,20/06/2019 17:15,17/05/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-17388,20/06/2019 17:15,19/06/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9390,20/06/2019 17:09,17/06/2019 20:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10257,20/06/2019 16:53,19/06/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9385,20/06/2019 16:44,17/06/2019 20:15,5.0,255, Credentials Management,nan
CVE-2017-9382,20/06/2019 16:44,17/06/2019 20:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9384,20/06/2019 16:41,17/06/2019 18:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-17374,20/06/2019 16:36,19/06/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9383,20/06/2019 16:36,17/06/2019 20:15,6.5,287, Improper Authentication,nan
CVE-2018-17381,20/06/2019 16:31,19/06/2019 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18758,20/06/2019 16:20,19/06/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0097,20/06/2019 16:15,17/05/2019 16:29,4.0,20, Improper Input Validation,nan
CVE-2019-0096,20/06/2019 16:15,17/05/2019 16:29,5.2,787, Out-of-bounds Write,nan
CVE-2019-0094,20/06/2019 16:15,17/05/2019 16:29,3.3,20, Improper Input Validation,nan
CVE-2019-0092,20/06/2019 16:15,17/05/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2017-8533,20/06/2019 16:15,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2018-18757,20/06/2019 16:10,19/06/2019 16:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9381,20/06/2019 15:45,17/06/2019 18:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17393,20/06/2019 15:08,19/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9388,20/06/2019 14:51,17/06/2019 17:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-17389,20/06/2019 14:45,19/06/2019 17:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9387,20/06/2019 14:27,17/06/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8677,20/06/2019 14:26,14/04/2016 15:59,6.8,399, Resource Management Errors,nan
CVE-2018-17398,20/06/2019 14:24,19/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6972,20/06/2019 14:19,19/06/2019 15:15,5.0,255, Credentials Management,nan
CVE-2017-9389,20/06/2019 14:19,17/06/2019 20:15,9.0,287, Improper Authentication,nan
CVE-2019-6971,20/06/2019 14:18,19/06/2019 15:15,10.0,287, Improper Authentication,nan
CVE-2019-7315,20/06/2019 14:00,17/06/2019 19:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8676,20/06/2019 13:54,14/04/2016 15:59,7.8,399, Resource Management Errors,nan
CVE-2017-9391,20/06/2019 13:42,17/06/2019 21:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9392,20/06/2019 13:29,17/06/2019 21:15,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17079,20/06/2019 13:19,19/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17423,20/06/2019 13:17,19/06/2019 17:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17399,20/06/2019 13:16,19/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17840,20/06/2019 13:14,19/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17842,20/06/2019 12:49,19/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12830,20/06/2019 12:46,15/06/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17841,20/06/2019 12:33,19/06/2019 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12456,20/06/2019 11:15,30/05/2019 14:29,7.2,20, Improper Input Validation,nan
CVE-2019-12381,20/06/2019 11:15,28/05/2019 3:29,4.9,476, NULL Pointer Dereference,nan
CVE-2019-12436,20/06/2019 9:15,19/06/2019 12:15,4.0,476, NULL Pointer Dereference,nan
CVE-2012-6711,20/06/2019 9:15,18/06/2019 18:15,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7613,20/06/2019 3:15,9/04/2017 14:59,4.3,20, Improper Input Validation,nan
CVE-2019-12209,20/06/2019 1:15,4/06/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-0098,20/06/2019 1:15,17/05/2019 16:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0091,20/06/2019 1:15,17/05/2019 16:29,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-11688,20/06/2019 0:15,13/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000164,19/06/2019 22:15,18/04/2018 19:29,5.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-1821,19/06/2019 20:15,16/05/2019 1:29,10.0,20, Improper Input Validation,nan
CVE-2019-10085,19/06/2019 20:03,19/06/2019 0:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3954,19/06/2019 19:37,19/06/2019 0:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3953,19/06/2019 19:37,18/06/2019 23:15,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18863,19/06/2019 19:35,19/06/2019 16:15,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7579,19/06/2019 19:28,17/06/2019 19:15,5.0,255, Credentials Management,nan
CVE-2019-3886,19/06/2019 19:15,4/04/2019 16:29,4.8,200, Information Exposure,nan
CVE-2019-12454,19/06/2019 19:15,30/05/2019 4:29,7.2,20, Improper Input Validation,nan
CVE-2019-12382,19/06/2019 19:15,28/05/2019 3:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-20506,19/06/2019 19:15,3/04/2019 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20505,19/06/2019 19:15,3/04/2019 18:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20346,19/06/2019 19:15,21/12/2018 21:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-12592,19/06/2019 19:09,18/06/2019 21:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6114,19/06/2019 18:49,19/06/2019 16:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9842,19/06/2019 18:16,14/06/2019 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18958,19/06/2019 18:00,17/06/2019 21:15,4.0,284, Improper Access Control,nan
CVE-2019-12549,19/06/2019 17:51,17/06/2019 17:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-12550,19/06/2019 17:11,17/06/2019 17:15,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-7987,19/06/2019 16:27,26/06/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19146,19/06/2019 16:23,17/06/2019 20:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5041,19/06/2019 16:16,6/06/2016 17:59,6.4,200, Information Exposure,nan
CVE-2015-5295,19/06/2019 15:53,20/01/2016 16:59,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5006,19/06/2019 15:35,7/12/2015 20:59,2.1,200, Information Exposure,nan
CVE-2019-12435,19/06/2019 15:15,19/06/2019 12:15,4.0,476, NULL Pointer Dereference,nan
CVE-2015-7984,19/06/2019 14:58,19/11/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8036,19/06/2019 13:59,2/11/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18837,19/06/2019 13:54,18/06/2019 16:15,5.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2015-5291,19/06/2019 13:38,2/11/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20013,19/06/2019 12:56,18/06/2019 13:15,5.0,20, Improper Input Validation,nan
CVE-2015-6932,19/06/2019 12:21,18/09/2015 22:59,5.8,310, Cryptographic Issues,nan
CVE-2015-5494,19/06/2019 11:47,18/08/2015 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3844,19/06/2019 10:15,26/04/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-3843,19/06/2019 10:15,26/04/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-12476,19/06/2019 8:15,17/06/2019 18:15,7.2,287, Improper Authentication,nan
CVE-2019-0093,19/06/2019 8:15,17/05/2019 16:29,2.1,200, Information Exposure,nan
CVE-2019-0089,19/06/2019 8:15,17/05/2019 16:29,4.6,19, Data Processing Errors,nan
CVE-2019-5678,19/06/2019 4:15,31/05/2019 22:29,4.6,20, Improper Input Validation,nan
CVE-2019-0174,19/06/2019 4:15,13/06/2019 16:29,2.1,200, Information Exposure,nan
CVE-2019-0128,19/06/2019 4:15,13/06/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-6445,19/06/2019 4:15,22/01/2019 17:29,5.0,255, Credentials Management,nan
CVE-2018-6444,19/06/2019 4:15,22/01/2019 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9948,19/06/2019 2:15,23/03/2019 18:29,6.4,254, 7PK – Security Features,nan
CVE-2018-11798,19/06/2019 0:15,7/01/2019 17:29,4.0,538, File and Directory Information Exposure,nan
CVE-2017-5645,19/06/2019 0:15,17/04/2017 21:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-15691,19/06/2019 0:15,26/04/2018 17:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000120,18/06/2019 22:15,14/03/2018 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-1000007,18/06/2019 22:15,24/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-1000005,18/06/2019 22:15,24/01/2018 22:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-3827,18/06/2019 21:15,25/03/2019 18:29,3.3,275, Permission Issues,nan
CVE-2019-12395,18/06/2019 21:15,28/05/2019 13:29,5.0,284, Improper Access Control,nan
CVE-2019-0804,18/06/2019 21:15,9/04/2019 3:29,4.0,200, Information Exposure,nan
CVE-2018-18852,18/06/2019 21:02,18/06/2019 15:15,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18838,18/06/2019 20:58,18/06/2019 16:15,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-18802,18/06/2019 20:53,18/06/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18839,18/06/2019 20:47,18/06/2019 16:15,5.0,200, Information Exposure,nan
CVE-2018-18836,18/06/2019 20:46,18/06/2019 16:15,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12497,18/06/2019 20:37,17/06/2019 17:15,5.0,200, Information Exposure,nan
CVE-2015-4384,18/06/2019 20:24,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6690,18/06/2019 20:15,21/03/2019 16:01,5.0,20, Improper Input Validation,nan
CVE-2019-12250,18/06/2019 20:15,21/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11410,18/06/2019 20:15,17/06/2019 19:15,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11409,18/06/2019 20:15,17/06/2019 19:15,6.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11407,18/06/2019 20:15,17/06/2019 18:15,4.0,200, Information Exposure,nan
CVE-2019-10873,18/06/2019 20:15,5/04/2019 4:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-10871,18/06/2019 20:15,5/04/2019 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2016-4738,18/06/2019 20:15,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4610,18/06/2019 20:15,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4609,18/06/2019 20:15,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4608,18/06/2019 20:15,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4607,18/06/2019 20:15,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1841,18/06/2019 20:15,20/05/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12868,18/06/2019 20:12,18/06/2019 0:15,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-18944,18/06/2019 19:58,18/06/2019 14:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18879,18/06/2019 19:39,18/06/2019 14:15,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18880,18/06/2019 19:37,18/06/2019 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12248,18/06/2019 19:32,17/06/2019 18:15,4.3,20, Improper Input Validation,nan
CVE-2018-18876,18/06/2019 19:27,18/06/2019 15:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18877,18/06/2019 19:18,18/06/2019 15:15,6.5,287, Improper Authentication,nan
CVE-2019-4381,18/06/2019 19:15,14/06/2019 15:29,2.1,255, Credentials Management,nan
CVE-2017-8834,18/06/2019 19:15,12/06/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7961,18/06/2019 19:15,19/04/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18878,18/06/2019 19:03,18/06/2019 15:15,7.8,20, Improper Input Validation,nan
CVE-2019-0303,18/06/2019 18:53,14/06/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18875,18/06/2019 18:44,18/06/2019 15:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6965,18/06/2019 18:22,18/06/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9641,18/06/2019 18:15,9/03/2019 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9024,18/06/2019 18:15,22/02/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-9023,18/06/2019 18:15,22/02/2019 23:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-9022,18/06/2019 18:15,22/02/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-9021,18/06/2019 18:15,22/02/2019 23:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-9020,18/06/2019 18:15,22/02/2019 23:29,7.5,416, Use After Free,nan
CVE-2019-6325,18/06/2019 18:15,17/06/2019 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-12181,18/06/2019 18:15,17/06/2019 16:15,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-6349,18/06/2019 18:15,14/06/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20655,18/06/2019 18:15,14/06/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20472,18/06/2019 18:15,17/06/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20470,18/06/2019 18:15,17/06/2019 14:15,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20469,18/06/2019 18:15,17/06/2019 14:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19935,18/06/2019 18:15,7/12/2018 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-6324,18/06/2019 18:06,17/06/2019 16:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6323,18/06/2019 17:50,17/06/2019 16:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7158,18/06/2019 17:44,17/06/2019 20:15,7.5,284, Improper Access Control,nan
CVE-2019-6326,18/06/2019 17:41,17/06/2019 16:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12823,18/06/2019 17:26,18/06/2019 13:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7159,18/06/2019 17:20,18/06/2019 13:15,5.0,200, Information Exposure,nan
CVE-2018-6350,18/06/2019 17:15,14/06/2019 17:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-18886,18/06/2019 17:05,18/06/2019 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12872,18/06/2019 16:58,18/06/2019 14:15,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4778,18/06/2019 16:44,4/04/2011 12:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3695,18/06/2019 16:44,31/03/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3693,18/06/2019 16:44,4/04/2011 12:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4363,18/06/2019 16:44,21/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3701,18/06/2019 16:44,21/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3237,18/06/2019 16:44,17/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11408,18/06/2019 16:35,17/06/2019 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2228,18/06/2019 16:29,13/04/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8807,18/06/2019 16:29,13/04/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19446,18/06/2019 16:21,17/06/2019 20:15,6.8,275, Permission Issues,nan
CVE-2018-19448,18/06/2019 16:17,17/06/2019 20:15,6.8,787, Out-of-bounds Write,nan
CVE-2018-19447,18/06/2019 16:02,17/06/2019 20:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19449,18/06/2019 15:56,17/06/2019 20:15,6.8,787, Out-of-bounds Write,nan
CVE-2018-13906,18/06/2019 15:55,14/06/2019 17:29,6.4,417, Channel and Path Errors,nan
CVE-2018-19444,18/06/2019 15:40,17/06/2019 20:15,6.8,416, Use After Free,nan
CVE-2018-19445,18/06/2019 15:37,17/06/2019 20:15,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19450,18/06/2019 15:32,17/06/2019 20:15,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12819,18/06/2019 15:15,14/06/2019 2:29,2.1,416, Use After Free,nan
CVE-2019-12818,18/06/2019 15:15,14/06/2019 2:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-13907,18/06/2019 15:08,14/06/2019 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13898,18/06/2019 15:01,14/06/2019 17:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-11955,18/06/2019 14:54,14/06/2019 17:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11947,18/06/2019 14:39,14/06/2019 17:29,2.1,415, Double Free,nan
CVE-2018-13910,18/06/2019 14:25,14/06/2019 17:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-13911,18/06/2019 14:20,14/06/2019 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2019-2259,18/06/2019 14:15,14/06/2019 17:29,10.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-5911,18/06/2019 13:57,14/06/2019 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12505,18/06/2019 13:55,7/06/2019 21:29,8.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-11942,18/06/2019 12:18,14/06/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-12840,18/06/2019 12:15,15/06/2019 20:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-6031,18/06/2019 12:13,2/11/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6714,18/06/2019 10:15,21/03/2019 16:01,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10126,17/06/2019 23:15,14/06/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7566,17/06/2019 22:15,30/03/2018 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9213,17/06/2019 21:15,5/03/2019 22:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-13908,17/06/2019 21:10,14/06/2019 17:29,4.6,285, Improper Authorization,nan
CVE-2018-13909,17/06/2019 21:05,14/06/2019 17:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-2257,17/06/2019 21:04,14/06/2019 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-20468,17/06/2019 20:54,17/06/2019 14:15,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-6821,17/06/2019 20:15,22/05/2019 20:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2018-5913,17/06/2019 19:41,14/06/2019 17:29,7.2,310, Cryptographic Issues,nan
CVE-2015-1781,17/06/2019 19:36,28/09/2015 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13919,17/06/2019 19:23,14/06/2019 17:29,7.2,416, Use After Free,nan
CVE-2018-5903,17/06/2019 19:21,14/06/2019 17:29,7.2,129, Improper Validation of Array Index,nan
CVE-2019-12504,17/06/2019 19:17,7/06/2019 21:29,8.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-3778,17/06/2019 19:15,7/03/2019 18:29,6.4,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-11269,17/06/2019 19:15,12/06/2019 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-0197,17/06/2019 19:15,11/06/2019 22:29,4.9,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2019-0196,17/06/2019 19:15,11/06/2019 22:29,5.0,416, Use After Free,nan
CVE-2019-9676,17/06/2019 19:13,12/06/2019 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12831,17/06/2019 19:01,15/06/2019 18:29,6.5,20, Improper Input Validation,nan
CVE-2018-3583,17/06/2019 18:53,14/06/2019 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5883,17/06/2019 18:51,14/06/2019 17:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-10947,17/06/2019 18:48,13/06/2019 19:29,2.9,20, Improper Input Validation,nan
CVE-2019-2255,17/06/2019 18:44,14/06/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10946,17/06/2019 18:38,13/06/2019 19:29,2.7,255, Credentials Management,nan
CVE-2019-2256,17/06/2019 18:13,14/06/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14728,17/06/2019 18:08,3/08/2018 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-18440,17/06/2019 17:57,20/11/2018 19:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2312,17/06/2019 17:29,26/03/2018 18:29,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-2173,17/06/2019 17:18,21/04/2017 20:59,7.5,20, Improper Input Validation,nan
CVE-2019-12835,17/06/2019 17:15,15/06/2019 19:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-11871,17/06/2019 17:15,10/05/2019 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11117,17/06/2019 17:15,13/06/2019 16:29,4.6,275, Permission Issues,nan
CVE-2018-3702,17/06/2019 17:15,13/06/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-12822,17/06/2019 16:19,14/06/2019 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12839,17/06/2019 16:15,15/06/2019 20:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11191,17/06/2019 16:15,12/04/2019 0:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-10688,17/06/2019 16:15,23/04/2019 21:29,4.6,798, Use of Hard-coded Credentials,nan
CVE-2019-12829,17/06/2019 16:13,15/06/2019 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13902,17/06/2019 15:51,14/06/2019 17:29,5.0,129, Improper Validation of Array Index,nan
CVE-2016-1000222,17/06/2019 15:48,16/06/2017 21:29,5.0,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2016-1000221,17/06/2019 15:48,16/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2015-5619,17/06/2019 15:48,9/08/2017 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-5378,17/06/2019 15:48,27/06/2017 20:29,5.0,200, Information Exposure,nan
CVE-2015-4152,17/06/2019 15:48,15/06/2015 15:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4326,17/06/2019 15:48,22/07/2014 14:55,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-7472,17/06/2019 15:43,15/06/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11582,17/06/2019 15:25,14/06/2019 14:29,9.3,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2019-5243,17/06/2019 15:15,10/06/2019 15:29,4.3,20, Improper Input Validation,nan
CVE-2019-1013,17/06/2019 15:15,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2018-13901,17/06/2019 15:14,14/06/2019 17:29,2.1,284, Improper Access Control,nan
CVE-2017-8252,17/06/2019 14:25,14/06/2019 17:29,4.9,285, Improper Authorization,nan
CVE-2018-11934,17/06/2019 14:15,14/06/2019 17:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-11929,17/06/2019 13:57,14/06/2019 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4324,17/06/2019 13:55,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-11819,17/06/2019 13:53,14/06/2019 17:29,4.6,416, Use After Free,nan
CVE-2019-12153,17/06/2019 13:49,11/06/2019 21:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-12194,17/06/2019 13:49,14/03/2018 21:29,10.0,20, Improper Input Validation,nan
CVE-2016-3066,17/06/2019 13:49,6/06/2017 18:29,4.0,200, Information Exposure,nan
CVE-2018-11939,17/06/2019 13:34,14/06/2019 17:29,4.6,416, Use After Free,nan
CVE-2009-5157,17/06/2019 13:26,11/06/2019 21:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12780,17/06/2019 13:24,10/06/2019 16:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12165,17/06/2019 13:16,29/05/2019 17:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7845,17/06/2019 11:16,12/06/2019 16:29,6.8,416, Use After Free,nan
CVE-2019-0130,17/06/2019 11:16,13/06/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5439,17/06/2019 8:29,13/06/2019 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12798,17/06/2019 7:29,13/06/2019 17:29,7.5,185, Incorrect Regular Expression,nan
CVE-2019-0164,17/06/2019 7:29,13/06/2019 16:29,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-9858,17/06/2019 0:29,29/05/2019 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-12761,16/06/2019 13:29,6/06/2019 19:29,5.1,91, XML Injection (aka Blind XPath Injection),nan
CVE-2014-0114,15/06/2019 17:29,30/04/2014 10:49,7.5,20, Improper Input Validation,nan
CVE-2019-9946,15/06/2019 3:29,2/04/2019 18:30,5.0,254, 7PK – Security Features,nan
CVE-2019-9917,15/06/2019 3:29,27/03/2019 6:29,4.0,20, Improper Input Validation,nan
CVE-2019-9162,15/06/2019 1:29,25/02/2019 23:29,4.6,129, Improper Validation of Array Index,nan
CVE-2019-8956,15/06/2019 1:29,1/04/2019 19:29,7.2,416, Use After Free,nan
CVE-2019-7221,15/06/2019 1:29,21/03/2019 16:01,4.6,416, Use After Free,nan
CVE-2019-11683,15/06/2019 1:29,2/05/2019 17:29,10.0,399, Resource Management Errors,nan
CVE-2019-11486,15/06/2019 1:29,23/04/2019 22:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-10125,15/06/2019 1:29,27/03/2019 6:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20669,15/06/2019 1:29,21/03/2019 16:00,7.2,20, Improper Input Validation,nan
CVE-2013-7470,15/06/2019 1:29,23/04/2019 3:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-11092,14/06/2019 20:29,13/06/2019 16:29,3.6,254, 7PK – Security Features,nan
CVE-2019-11334,14/06/2019 18:29,11/06/2019 18:29,4.3,287, Improper Authentication,nan
CVE-2018-5912,14/06/2019 17:29,28/11/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3195,14/06/2019 14:44,6/12/2015 20:59,5.0,200, Information Exposure,nan
CVE-2019-3946,14/06/2019 14:30,12/06/2019 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-12749,14/06/2019 14:29,11/06/2019 17:29,3.6,287, Improper Authentication,nan
CVE-2019-1069,14/06/2019 14:09,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0305,14/06/2019 14:05,12/06/2019 15:29,4.3,502, Deserialization of Untrusted Data,nan
CVE-2019-5286,14/06/2019 14:02,13/06/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0304,14/06/2019 13:59,12/06/2019 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-0312,14/06/2019 13:49,12/06/2019 17:29,5.0,200, Information Exposure,nan
CVE-2015-2165,14/06/2019 13:39,6/04/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2101,14/06/2019 13:30,27/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5245,14/06/2019 13:27,13/06/2019 16:29,4.6,426, Untrusted Search Path,nan
CVE-2019-0315,14/06/2019 13:25,12/06/2019 17:29,5.0,200, Information Exposure,nan
CVE-2010-5330,14/06/2019 13:25,11/06/2019 21:29,5.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7840,14/06/2019 13:19,12/06/2019 16:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2019-0306,14/06/2019 12:54,12/06/2019 15:29,4.0,200, Information Exposure,nan
CVE-2019-0311,14/06/2019 12:52,12/06/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1053,14/06/2019 12:39,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1064,14/06/2019 12:38,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1065,14/06/2019 12:29,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1035,14/06/2019 12:29,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12616,14/06/2019 4:29,5/06/2019 5:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11768,14/06/2019 4:29,5/06/2019 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7524,14/06/2019 3:29,28/03/2019 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3814,14/06/2019 3:29,27/03/2019 13:29,4.9,295, Improper Certificate Validation,nan
CVE-2019-11499,14/06/2019 3:29,8/05/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-11494,14/06/2019 3:29,8/05/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2019-11459,14/06/2019 3:29,22/04/2019 22:29,4.3,824, Access of Uninitialized Pointer,nan
CVE-2019-11068,14/06/2019 3:29,10/04/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2019-12735,13/06/2019 21:29,5/06/2019 14:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-11080,13/06/2019 21:29,6/06/2019 14:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2018-16471,13/06/2019 21:29,13/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6301,13/06/2019 21:29,9/12/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-2148,13/06/2019 21:29,9/02/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2147,13/06/2019 21:29,9/02/2017 15:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9261,13/06/2019 21:29,26/07/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-1472,13/06/2019 21:29,8/04/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0235,13/06/2019 21:29,28/01/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9984,13/06/2019 21:29,12/06/2017 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9761,13/06/2019 21:29,19/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9402,13/06/2019 21:29,24/02/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2014-4043,13/06/2019 21:29,6/10/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1813,13/06/2019 21:29,23/11/2013 11:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-4412,13/06/2019 21:29,9/10/2013 22:55,7.5,189, Numeric Errors,nan
CVE-2011-5325,13/06/2019 21:29,7/08/2017 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2716,13/06/2019 21:29,3/07/2012 16:40,6.8,20, Improper Input Validation,nan
CVE-2010-3856,13/06/2019 21:29,7/01/2011 19:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-0296,13/06/2019 21:29,1/06/2010 20:30,7.2,20, Improper Input Validation,nan
CVE-2019-7321,13/06/2019 20:02,13/06/2019 18:29,7.5,476, NULL Pointer Dereference,nan
CVE-2019-1017,13/06/2019 19:55,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0998,13/06/2019 19:50,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0943,13/06/2019 19:50,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1046,13/06/2019 19:41,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-0986,13/06/2019 19:06,12/06/2019 14:29,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1045,13/06/2019 18:59,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1043,13/06/2019 18:50,12/06/2019 14:29,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1044,13/06/2019 18:45,12/06/2019 14:29,7.2,254, 7PK – Security Features,nan
CVE-2019-0983,13/06/2019 18:33,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-6532,13/06/2019 18:29,7/06/2019 14:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-6530,13/06/2019 18:29,7/06/2019 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1040,13/06/2019 18:23,12/06/2019 14:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0959,13/06/2019 18:21,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3196,13/06/2019 18:15,6/12/2015 20:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-1022,13/06/2019 18:02,12/06/2019 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0973,13/06/2019 17:58,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1023,13/06/2019 17:56,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-1050,13/06/2019 17:48,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-1024,13/06/2019 17:47,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1025,13/06/2019 17:46,12/06/2019 14:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1049,13/06/2019 17:42,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-1048,13/06/2019 17:37,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-7838,13/06/2019 17:36,12/06/2019 16:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-1047,13/06/2019 17:31,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-12137,13/06/2019 17:29,16/05/2019 14:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1010,13/06/2019 17:19,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-1039,13/06/2019 17:08,12/06/2019 14:29,2.1,200, Information Exposure,nan
CVE-2015-3625,13/06/2019 16:51,18/07/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1041,13/06/2019 16:39,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9636,13/06/2019 16:29,8/03/2019 21:29,5.0,255, Credentials Management,nan
CVE-2019-0135,13/06/2019 16:29,14/03/2019 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1018,13/06/2019 16:25,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0984,13/06/2019 16:24,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1014,13/06/2019 16:15,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0960,13/06/2019 16:07,12/06/2019 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1038,13/06/2019 15:58,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1055,13/06/2019 15:48,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0972,13/06/2019 15:35,12/06/2019 14:29,6.8,254, 7PK – Security Features,nan
CVE-2019-5522,13/06/2019 15:29,6/06/2019 19:29,3.6,125, Out-of-bounds Read,nan
CVE-2019-1005,13/06/2019 15:18,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1029,13/06/2019 15:17,12/06/2019 14:29,7.1,20, Improper Input Validation,nan
CVE-2019-1026,13/06/2019 15:09,12/06/2019 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1011,13/06/2019 15:04,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-1012,13/06/2019 15:03,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-0990,13/06/2019 15:02,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-0961,13/06/2019 14:54,16/05/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-1015,13/06/2019 14:53,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-0985,13/06/2019 14:42,12/06/2019 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1988,13/06/2019 14:35,4/10/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1034,13/06/2019 14:30,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16544,13/06/2019 14:29,20/11/2017 15:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-1054,13/06/2019 14:19,12/06/2019 14:29,5.1,254, 7PK – Security Features,nan
CVE-2019-1080,13/06/2019 14:18,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1051,13/06/2019 14:08,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1081,13/06/2019 14:02,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-1027,13/06/2019 13:55,12/06/2019 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-1914,13/06/2019 13:52,2/07/2015 21:59,5.0,200, Information Exposure,nan
CVE-2019-12154,13/06/2019 13:45,11/06/2019 21:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1032,13/06/2019 13:41,12/06/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1031,13/06/2019 13:39,12/06/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1033,13/06/2019 13:33,12/06/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1052,13/06/2019 13:31,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10339,13/06/2019 13:29,11/06/2019 14:29,4.0,255, Credentials Management,nan
CVE-2019-10338,13/06/2019 13:29,11/06/2019 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10337,13/06/2019 13:29,11/06/2019 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10336,13/06/2019 13:29,11/06/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10335,13/06/2019 13:29,11/06/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10334,13/06/2019 13:29,11/06/2019 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-10333,13/06/2019 13:29,11/06/2019 14:29,4.0,200, Information Exposure,nan
CVE-2019-10332,13/06/2019 13:29,11/06/2019 14:29,4.3,275, Permission Issues,nan
CVE-2019-10331,13/06/2019 13:29,11/06/2019 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1007,13/06/2019 13:26,12/06/2019 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1021,13/06/2019 13:24,12/06/2019 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1028,13/06/2019 13:21,12/06/2019 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1002,13/06/2019 13:18,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0993,13/06/2019 13:08,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1036,13/06/2019 13:07,12/06/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0992,13/06/2019 12:54,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0991,13/06/2019 12:52,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0989,13/06/2019 12:46,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0509,13/06/2019 12:42,20/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1003,13/06/2019 12:37,12/06/2019 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3947,13/06/2019 12:29,12/06/2019 15:29,5.0,255, Credentials Management,nan
CVE-2019-1016,13/06/2019 12:27,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-0977,13/06/2019 12:24,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-0968,13/06/2019 12:21,12/06/2019 14:29,4.3,200, Information Exposure,nan
CVE-2019-12795,13/06/2019 9:29,11/06/2019 22:29,4.6,285, Improper Authorization,nan
CVE-2019-12614,13/06/2019 4:29,3/06/2019 22:29,7.8,476, NULL Pointer Dereference,nan
CVE-2019-11236,13/06/2019 4:29,15/04/2019 15:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-0314,13/06/2019 3:01,12/06/2019 17:29,4.3,284, Improper Access Control,nan
CVE-2019-0307,13/06/2019 2:39,12/06/2019 15:29,2.7,255, Credentials Management,nan
CVE-2019-0308,13/06/2019 2:07,12/06/2019 15:29,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9658,12/06/2019 23:29,11/03/2019 5:29,5.0,254, 7PK – Security Features,nan
CVE-2019-0941,12/06/2019 20:49,12/06/2019 14:29,5.0,19, Data Processing Errors,nan
CVE-2019-6588,12/06/2019 20:29,3/06/2019 20:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12788,12/06/2019 20:29,10/06/2019 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0722,12/06/2019 20:26,12/06/2019 14:29,9.0,20, Improper Input Validation,nan
CVE-2019-0713,12/06/2019 20:22,12/06/2019 14:29,5.5,20, Improper Input Validation,nan
CVE-2019-0711,12/06/2019 20:12,12/06/2019 14:29,5.5,20, Improper Input Validation,nan
CVE-2019-0710,12/06/2019 20:06,12/06/2019 14:29,5.5,20, Improper Input Validation,nan
CVE-2019-0709,12/06/2019 19:58,12/06/2019 14:29,7.7,20, Improper Input Validation,nan
CVE-2019-0620,12/06/2019 19:49,12/06/2019 14:29,7.7,20, Improper Input Validation,nan
CVE-2019-0888,12/06/2019 18:49,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0974,12/06/2019 18:26,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0909,12/06/2019 18:18,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0908,12/06/2019 18:11,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0907,12/06/2019 18:08,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0905,12/06/2019 18:03,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0904,12/06/2019 17:58,12/06/2019 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7471,12/06/2019 17:42,11/06/2019 21:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12308,12/06/2019 17:29,3/06/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11358,12/06/2019 17:29,20/04/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10237,12/06/2019 17:29,26/04/2018 21:29,4.3,502, Deserialization of Untrusted Data,nan
CVE-2017-7675,12/06/2019 17:29,11/08/2017 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15010,12/06/2019 17:29,4/10/2017 1:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-12149,12/06/2019 17:19,11/06/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18377,12/06/2019 17:10,11/06/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-3630,12/06/2019 17:05,29/12/2017 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10760,12/06/2019 16:38,11/06/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12765,12/06/2019 16:29,11/06/2019 19:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12146,12/06/2019 16:28,11/06/2019 21:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12144,12/06/2019 16:28,11/06/2019 21:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12145,12/06/2019 16:26,11/06/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12766,12/06/2019 15:29,11/06/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12764,12/06/2019 15:29,11/06/2019 19:29,4.0,284, Improper Access Control,nan
CVE-2018-20841,12/06/2019 14:37,11/06/2019 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1325,12/06/2019 14:37,18/04/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15719,12/06/2019 14:37,12/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3526,12/06/2019 14:34,30/10/2017 14:29,5.0,200, Information Exposure,nan
CVE-2019-6569,12/06/2019 14:29,26/03/2019 22:29,6.4,20, Improper Input Validation,nan
CVE-2019-11687,12/06/2019 14:29,2/05/2019 22:29,9.3,20, Improper Input Validation,nan
CVE-2009-5156,12/06/2019 13:25,11/06/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-5787,12/06/2019 13:17,5/02/2018 4:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9628,11/06/2019 23:29,11/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-5598,11/06/2019 23:29,15/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-5597,11/06/2019 23:29,15/05/2019 16:29,6.4,20, Improper Input Validation,nan
CVE-2018-10934,11/06/2019 23:29,27/03/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2556,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2555,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2554,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2553,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2552,11/06/2019 22:29,16/01/2019 19:30,4.6,284, Improper Access Control,nan
CVE-2019-2548,11/06/2019 22:29,16/01/2019 19:30,4.6,284, Improper Access Control,nan
CVE-2019-2527,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2526,11/06/2019 22:29,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2525,11/06/2019 22:29,16/01/2019 19:30,1.9,284, Improper Access Control,nan
CVE-2019-2524,11/06/2019 22:29,16/01/2019 19:30,4.6,284, Improper Access Control,nan
CVE-2019-2523,11/06/2019 22:29,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2522,11/06/2019 22:29,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2521,11/06/2019 22:29,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2520,11/06/2019 22:29,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2511,11/06/2019 22:29,16/01/2019 19:30,7.8,284, Improper Access Control,nan
CVE-2019-2509,11/06/2019 22:29,16/01/2019 19:30,4.9,284, Improper Access Control,nan
CVE-2019-2508,11/06/2019 22:29,16/01/2019 19:30,4.9,284, Improper Access Control,nan
CVE-2019-2506,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2505,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2504,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2501,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2500,11/06/2019 22:29,16/01/2019 19:30,4.6,284, Improper Access Control,nan
CVE-2019-2451,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2450,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2448,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-2446,11/06/2019 22:29,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-0211,11/06/2019 22:29,8/04/2019 22:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11784,11/06/2019 22:29,4/10/2018 13:29,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-11763,11/06/2019 22:29,25/09/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-0734,11/06/2019 22:29,30/10/2018 12:29,4.3,320, Key Management Errors,nan
CVE-2012-5786,11/06/2019 22:29,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2019-7167,11/06/2019 21:29,27/03/2019 2:29,5.0,20, Improper Input Validation,nan
CVE-2019-10320,11/06/2019 21:29,21/05/2019 13:29,4.0,538, File and Directory Information Exposure,nan
CVE-2019-12506,11/06/2019 20:29,7/06/2019 21:29,8.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-10149,11/06/2019 20:29,5/06/2019 14:29,7.5,20, Improper Input Validation,nan
CVE-2017-5953,11/06/2019 20:29,10/02/2017 7:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-1000113,11/06/2019 20:19,5/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-1000386,11/06/2019 20:18,26/01/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9282,11/06/2019 20:15,6/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17198,11/06/2019 20:03,28/05/2019 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-12794,11/06/2019 19:43,11/06/2019 17:29,6.0,255, Credentials Management,nan
CVE-2017-18206,11/06/2019 19:31,27/02/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10714,11/06/2019 19:30,27/02/2018 22:29,7.5,189, Numeric Errors,nan
CVE-2018-7856,11/06/2019 19:29,22/05/2019 21:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2014-10071,11/06/2019 19:27,27/02/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9723,11/06/2019 19:06,30/05/2019 18:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0653,11/06/2019 19:03,13/03/2015 1:59,10.0,287, Improper Authentication,nan
CVE-2018-11801,11/06/2019 18:44,11/06/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11800,11/06/2019 18:40,11/06/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8331,11/06/2019 18:29,20/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20677,11/06/2019 18:29,9/01/2019 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20676,11/06/2019 18:29,9/01/2019 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14041,11/06/2019 18:29,13/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10735,11/06/2019 18:29,9/01/2019 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13717,11/06/2019 17:55,10/06/2019 22:29,4.3,255, Credentials Management,nan
CVE-2019-11881,11/06/2019 17:54,10/06/2019 20:29,4.3,20, Improper Input Validation,nan
CVE-2019-6241,11/06/2019 17:48,10/06/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-7850,11/06/2019 17:29,22/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-13382,11/06/2019 17:29,4/06/2019 21:29,5.0,285, Improper Authorization,nan
CVE-2018-6185,11/06/2019 17:28,7/06/2019 15:29,5.5,310, Cryptographic Issues,nan
CVE-2019-9881,11/06/2019 17:27,10/06/2019 18:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2019-6452,11/06/2019 16:42,6/06/2019 19:29,4.0,255, Credentials Management,nan
CVE-2017-13718,11/06/2019 16:34,10/06/2019 22:29,6.0,254, 7PK – Security Features,nan
CVE-2019-11091,11/06/2019 16:29,30/05/2019 16:29,4.7,200, Information Exposure,nan
CVE-2019-10132,11/06/2019 16:29,22/05/2019 18:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-12130,11/06/2019 16:29,30/05/2019 16:29,4.7,200, Information Exposure,nan
CVE-2018-12127,11/06/2019 16:29,30/05/2019 16:29,4.7,200, Information Exposure,nan
CVE-2018-12126,11/06/2019 16:29,30/05/2019 16:29,4.7,200, Information Exposure,nan
CVE-2019-9879,11/06/2019 16:27,10/06/2019 18:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2019-11517,11/06/2019 16:06,10/06/2019 18:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20523,11/06/2019 15:40,7/06/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-3955,11/06/2019 15:19,7/06/2019 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10226,11/06/2019 15:15,10/06/2019 23:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-2093,11/06/2019 15:13,7/06/2019 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-20135,11/06/2019 15:09,7/06/2019 16:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-10695,11/06/2019 14:49,7/06/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9880,11/06/2019 14:45,10/06/2019 18:29,6.4,306, Missing Authentication for Critical Function,nan
CVE-2018-10696,11/06/2019 14:39,7/06/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2095,11/06/2019 14:35,7/06/2019 20:29,7.6,416, Use After Free,nan
CVE-2019-12477,11/06/2019 14:33,7/06/2019 15:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12450,11/06/2019 14:29,29/05/2019 17:29,7.5,275, Permission Issues,nan
CVE-2018-20102,11/06/2019 14:29,12/12/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-11469,11/06/2019 14:29,25/05/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-10699,11/06/2019 14:18,7/06/2019 20:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11877,11/06/2019 14:02,10/06/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12134,11/06/2019 13:59,6/06/2019 14:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20355,11/06/2019 13:47,10/06/2019 17:29,7.5,416, Use After Free,nan
CVE-2018-5264,11/06/2019 13:44,7/06/2019 16:29,4.3,284, Improper Access Control,nan
CVE-2018-20356,11/06/2019 13:43,10/06/2019 17:29,7.5,416, Use After Free,nan
CVE-2018-10701,11/06/2019 13:43,7/06/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12786,11/06/2019 13:25,10/06/2019 18:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12787,11/06/2019 13:23,10/06/2019 18:29,6.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-2091,11/06/2019 13:15,7/06/2019 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-20352,11/06/2019 13:06,10/06/2019 17:29,6.8,416, Use After Free,nan
CVE-2012-1297,11/06/2019 13:02,19/03/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4335,11/06/2019 13:02,28/11/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2092,11/06/2019 12:57,7/06/2019 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-20354,11/06/2019 12:51,10/06/2019 17:29,7.5,416, Use After Free,nan
CVE-2019-2094,11/06/2019 12:50,7/06/2019 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-2099,11/06/2019 12:49,7/06/2019 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-2098,11/06/2019 12:45,7/06/2019 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-2096,11/06/2019 12:45,7/06/2019 20:29,7.2,415, Double Free,nan
CVE-2018-20353,11/06/2019 12:34,10/06/2019 17:29,7.5,416, Use After Free,nan
CVE-2019-2097,11/06/2019 12:31,7/06/2019 20:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2019-8320,11/06/2019 9:29,6/06/2019 15:29,8.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11398,10/06/2019 23:29,8/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10703,10/06/2019 23:29,7/06/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10702,10/06/2019 23:29,7/06/2019 20:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-10700,10/06/2019 23:29,7/06/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10698,10/06/2019 23:29,7/06/2019 20:29,10.0,255, Credentials Management,nan
CVE-2018-10697,10/06/2019 23:29,7/06/2019 20:29,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-10694,10/06/2019 23:29,7/06/2019 20:29,4.3,255, Credentials Management,nan
CVE-2018-10693,10/06/2019 23:29,7/06/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10692,10/06/2019 23:29,7/06/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10691,10/06/2019 23:29,7/06/2019 20:29,5.0,284, Improper Access Control,nan
CVE-2018-10690,10/06/2019 23:29,7/06/2019 20:29,4.3,255, Credentials Management,nan
CVE-2015-9251,10/06/2019 23:29,18/01/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6708,10/06/2019 23:29,18/01/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12763,10/06/2019 20:31,7/06/2019 12:29,5.0,200, Information Exposure,nan
CVE-2018-1000632,10/06/2019 20:29,20/08/2018 19:31,6.4,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-6989,10/06/2019 20:18,6/06/2019 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2090,10/06/2019 19:54,7/06/2019 20:29,4.6,275, Permission Issues,nan
CVE-2019-12492,10/06/2019 19:52,6/06/2019 20:29,5.8,200, Information Exposure,nan
CVE-2018-20091,10/06/2019 19:50,7/06/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1003042,10/06/2019 19:29,28/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1003041,10/06/2019 19:29,28/03/2019 18:29,7.5,254, 7PK – Security Features,nan
CVE-2019-1003040,10/06/2019 19:29,28/03/2019 18:29,7.5,254, 7PK – Security Features,nan
CVE-2019-0542,10/06/2019 19:29,9/01/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2019-7215,10/06/2019 19:13,6/06/2019 17:29,6.4,613, Insufficient Session Expiration,nan
CVE-2018-20014,10/06/2019 19:08,7/06/2019 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-19452,10/06/2019 19:03,7/06/2019 17:29,6.8,416, Use After Free,nan
CVE-2018-7653,10/06/2019 19:02,4/03/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19451,10/06/2019 18:59,7/06/2019 17:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12274,10/06/2019 18:57,6/06/2019 16:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-12777,10/06/2019 18:51,7/06/2019 16:29,7.2,275, Permission Issues,nan
CVE-2019-12776,10/06/2019 18:50,7/06/2019 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-12775,10/06/2019 18:48,7/06/2019 16:29,9.0,284, Improper Access Control,nan
CVE-2019-12774,10/06/2019 18:45,7/06/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2227,10/06/2019 18:34,25/07/2014 19:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2226,10/06/2019 18:34,29/07/2014 14:55,2.6,255, Credentials Management,nan
CVE-2013-3572,10/06/2019 18:34,31/12/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1606,10/06/2019 18:34,18/07/2013 16:51,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6808,10/06/2019 18:29,22/05/2019 21:29,7.5,284, Improper Access Control,nan
CVE-2019-6807,10/06/2019 18:29,22/05/2019 21:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-6806,10/06/2019 18:29,22/05/2019 21:29,5.0,200, Information Exposure,nan
CVE-2018-7857,10/06/2019 18:29,22/05/2019 21:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-7855,10/06/2019 18:29,22/05/2019 21:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-7854,10/06/2019 18:29,22/05/2019 21:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-7853,10/06/2019 18:29,22/05/2019 21:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-12303,10/06/2019 18:27,6/06/2019 16:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19465,10/06/2019 18:14,7/06/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5265,10/06/2019 17:56,7/06/2019 15:29,6.5,20, Improper Input Validation,nan
CVE-2019-7220,10/06/2019 17:49,6/06/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9673,10/06/2019 17:36,5/06/2019 16:29,6.8,19, Data Processing Errors,nan
CVE-2019-7665,10/06/2019 17:29,9/02/2019 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7150,10/06/2019 17:29,29/01/2019 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7149,10/06/2019 17:29,29/01/2019 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-3832,10/06/2019 17:29,21/03/2019 16:01,1.9,125, Out-of-bounds Read,nan
CVE-2019-12771,10/06/2019 17:29,7/06/2019 14:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-7852,10/06/2019 17:29,22/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7849,10/06/2019 17:29,22/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7848,10/06/2019 17:29,22/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2018-7847,10/06/2019 17:29,22/05/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2018-7846,10/06/2019 17:29,22/05/2019 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7845,10/06/2019 17:29,22/05/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-7844,10/06/2019 17:29,22/05/2019 21:29,5.0,200, Information Exposure,nan
CVE-2018-7843,10/06/2019 17:29,22/05/2019 20:29,5.0,399, Resource Management Errors,nan
CVE-2018-7842,10/06/2019 17:29,22/05/2019 20:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-19758,10/06/2019 17:29,30/11/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19432,10/06/2019 17:29,22/11/2018 5:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18521,10/06/2019 17:29,19/10/2018 17:29,4.3,369, Divide By Zero,nan
CVE-2018-18520,10/06/2019 17:29,19/10/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18310,10/06/2019 17:29,15/10/2018 2:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16402,10/06/2019 17:29,3/09/2018 19:29,7.5,415, Double Free,nan
CVE-2018-13139,10/06/2019 17:29,4/07/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6892,10/06/2019 17:29,12/06/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16942,10/06/2019 17:29,25/11/2017 17:29,4.3,369, Divide By Zero,nan
CVE-2017-14634,10/06/2019 17:29,21/09/2017 7:29,4.3,369, Divide By Zero,nan
CVE-2017-14246,10/06/2019 17:29,21/09/2017 13:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-14245,10/06/2019 17:29,21/09/2017 13:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-5798,10/06/2019 17:25,7/06/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12599,10/06/2019 17:23,7/06/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12600,10/06/2019 17:22,7/06/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12601,10/06/2019 17:21,7/06/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12598,10/06/2019 17:17,7/06/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19999,10/06/2019 16:53,7/06/2019 17:29,7.2,287, Improper Authentication,nan
CVE-2019-3477,10/06/2019 16:47,7/06/2019 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-9548,10/06/2019 16:38,5/06/2019 17:29,7.5,284, Improper Access Control,nan
CVE-2019-11523,10/06/2019 16:21,6/06/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2019-12762,10/06/2019 16:11,6/06/2019 20:29,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-7554,10/06/2019 16:04,6/06/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5525,10/06/2019 15:46,6/06/2019 19:29,7.2,416, Use After Free,nan
CVE-2019-9797,10/06/2019 15:29,26/04/2019 17:29,5.0,346, Origin Validation Error,nan
CVE-2019-5798,10/06/2019 15:29,23/05/2019 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-12439,10/06/2019 15:29,29/05/2019 15:29,4.6,20, Improper Input Validation,nan
CVE-2018-18511,10/06/2019 15:29,26/04/2019 17:29,4.3,200, Information Exposure,nan
CVE-2019-12135,10/06/2019 15:21,6/06/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2019-5219,10/06/2019 14:23,6/06/2019 15:29,4.3,415, Double Free,nan
CVE-2019-0952,10/06/2019 14:04,16/05/2019 19:29,6.5,254, 7PK – Security Features,nan
CVE-2019-5216,10/06/2019 14:02,6/06/2019 15:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-5214,10/06/2019 13:56,6/06/2019 15:29,7.1,416, Use After Free,nan
CVE-2019-0594,10/06/2019 13:46,5/03/2019 23:29,6.5,20, Improper Input Validation,nan
CVE-2019-0604,10/06/2019 13:45,5/03/2019 23:29,6.5,20, Improper Input Validation,nan
CVE-2018-8300,10/06/2019 13:45,11/07/2018 0:29,6.5,20, Improper Input Validation,nan
CVE-2019-12291,10/06/2019 13:34,6/06/2019 17:29,6.4,284, Improper Access Control,nan
CVE-2019-5305,10/06/2019 13:24,6/06/2019 15:29,7.1,415, Double Free,nan
CVE-2019-5295,10/06/2019 13:22,6/06/2019 15:29,4.4,285, Improper Authorization,nan
CVE-2019-5242,10/06/2019 13:20,6/06/2019 15:29,9.3,20, Improper Input Validation,nan
CVE-2019-5241,10/06/2019 13:15,6/06/2019 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-8817,10/06/2019 11:29,25/03/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7559,10/06/2019 11:29,13/06/2018 18:29,3.5,320, Key Management Errors,nan
CVE-2019-1842,10/06/2019 8:29,5/06/2019 17:29,5.5,285, Improper Authorization,nan
CVE-2019-11356,10/06/2019 7:29,3/06/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15587,10/06/2019 7:29,11/02/2019 17:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-3846,10/06/2019 3:29,3/06/2019 19:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12378,10/06/2019 3:29,28/05/2019 3:29,4.9,476, NULL Pointer Dereference,nan
CVE-2019-3956,9/06/2019 20:27,7/06/2019 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-7553,9/06/2019 19:50,6/06/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7552,9/06/2019 19:34,6/06/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19462,9/06/2019 19:32,7/06/2019 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19461,9/06/2019 19:28,7/06/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9839,9/06/2019 18:57,6/06/2019 19:29,4.0,20, Improper Input Validation,nan
CVE-2019-7311,9/06/2019 18:47,6/06/2019 16:29,7.2,310, Cryptographic Issues,nan
CVE-2019-5436,9/06/2019 5:29,28/05/2019 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5435,9/06/2019 5:29,28/05/2019 19:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-6738,7/06/2019 21:29,3/06/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2019-6737,7/06/2019 21:29,3/06/2019 18:29,6.8,19, Data Processing Errors,nan
CVE-2019-6736,7/06/2019 21:29,3/06/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2019-5419,7/06/2019 21:29,27/03/2019 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-3820,7/06/2019 21:29,6/02/2019 20:29,4.6,285, Improper Authorization,nan
CVE-2019-0221,7/06/2019 21:29,28/05/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5784,7/06/2019 21:29,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2019-11983,7/06/2019 18:53,5/06/2019 17:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11982,7/06/2019 18:51,5/06/2019 17:29,7.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8047,7/06/2019 18:39,6/06/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12300,7/06/2019 18:29,23/05/2019 15:30,5.0,287, Improper Authentication,nan
CVE-2019-0841,7/06/2019 17:29,9/04/2019 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-6261,7/06/2019 17:29,5/06/2019 14:29,4.6,20, Improper Input Validation,nan
CVE-2018-7839,7/06/2019 16:29,6/02/2019 23:29,2.1,310, Cryptographic Issues,nan
CVE-2019-11978,7/06/2019 15:56,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11971,7/06/2019 15:49,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11972,7/06/2019 15:45,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11977,7/06/2019 15:43,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11976,7/06/2019 15:41,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11975,7/06/2019 15:40,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11974,7/06/2019 15:38,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11973,7/06/2019 15:36,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11970,7/06/2019 15:34,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13380,7/06/2019 15:29,4/06/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11969,7/06/2019 15:15,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9929,7/06/2019 15:07,6/06/2019 17:29,9.0,275, Permission Issues,nan
CVE-2019-11979,7/06/2019 14:51,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11968,7/06/2019 14:39,5/06/2019 16:29,9.0,20, Improper Input Validation,nan
CVE-2019-11966,7/06/2019 14:35,5/06/2019 16:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-3579,7/06/2019 14:34,6/06/2019 19:29,5.0,200, Information Exposure,nan
CVE-2019-9730,7/06/2019 14:30,5/06/2019 16:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-11967,7/06/2019 14:27,5/06/2019 16:29,9.0,20, Improper Input Validation,nan
CVE-2019-3578,7/06/2019 14:26,6/06/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11963,7/06/2019 14:21,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11956,7/06/2019 14:17,5/06/2019 16:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2019-11955,7/06/2019 14:15,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5384,7/06/2019 14:08,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10171,7/06/2019 13:54,5/06/2019 22:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-5393,7/06/2019 13:27,5/06/2019 15:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11964,7/06/2019 13:24,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11965,7/06/2019 13:17,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11984,7/06/2019 13:15,5/06/2019 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12196,7/06/2019 9:29,5/06/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11580,7/06/2019 9:29,3/06/2019 14:29,7.5,20, Improper Input Validation,nan
CVE-2019-0188,7/06/2019 9:29,28/05/2019 19:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11815,7/06/2019 7:29,8/05/2019 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-11810,7/06/2019 7:29,7/05/2019 14:29,7.8,476, NULL Pointer Dereference,nan
CVE-2019-11190,7/06/2019 7:29,12/04/2019 0:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-11555,7/06/2019 3:29,26/04/2019 22:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-0126,7/06/2019 1:29,17/05/2019 16:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-11962,7/06/2019 1:07,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11961,7/06/2019 1:05,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11957,7/06/2019 1:05,5/06/2019 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5391,7/06/2019 1:04,5/06/2019 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5390,7/06/2019 1:04,5/06/2019 15:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5386,7/06/2019 0:56,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5387,7/06/2019 0:54,5/06/2019 15:29,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5388,7/06/2019 0:49,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5389,7/06/2019 0:46,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11960,7/06/2019 0:42,5/06/2019 16:29,9.0,20, Improper Input Validation,nan
CVE-2019-11958,7/06/2019 0:42,5/06/2019 16:29,9.0,20, Improper Input Validation,nan
CVE-2019-5385,7/06/2019 0:39,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11953,7/06/2019 0:21,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11954,7/06/2019 0:19,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11980,7/06/2019 0:16,5/06/2019 16:29,9.0,20, Improper Input Validation,nan
CVE-2019-11985,7/06/2019 0:10,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11986,7/06/2019 0:06,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11952,6/06/2019 23:54,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8385,6/06/2019 23:33,5/06/2019 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6800,6/06/2019 23:29,5/06/2019 19:29,8.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-12739,6/06/2019 23:29,5/06/2019 14:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9621,6/06/2019 20:29,30/04/2019 18:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-10009,6/06/2019 20:29,3/06/2019 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0223,6/06/2019 20:29,23/04/2019 16:29,4.0,295, Improper Certificate Validation,nan
CVE-2019-0119,6/06/2019 20:29,17/05/2019 16:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8035,6/06/2019 20:29,1/05/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11951,6/06/2019 20:23,5/06/2019 16:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11949,6/06/2019 20:21,5/06/2019 16:29,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11959,6/06/2019 20:17,5/06/2019 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5360,6/06/2019 20:07,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11950,6/06/2019 19:59,5/06/2019 16:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2019-5359,6/06/2019 19:58,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5358,6/06/2019 19:56,5/06/2019 15:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5357,6/06/2019 19:53,5/06/2019 15:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-5356,6/06/2019 19:50,5/06/2019 15:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12312,6/06/2019 19:29,24/05/2019 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-5361,6/06/2019 19:28,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5383,6/06/2019 19:25,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5382,6/06/2019 19:23,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5381,6/06/2019 19:22,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5375,6/06/2019 19:17,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5374,6/06/2019 19:06,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5373,6/06/2019 19:01,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5372,6/06/2019 18:59,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10323,6/06/2019 18:29,31/05/2019 15:29,4.0,275, Permission Issues,nan
CVE-2019-5380,6/06/2019 18:21,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5394,6/06/2019 18:18,5/06/2019 18:29,4.9,200, Information Exposure,nan
CVE-2019-5379,6/06/2019 17:43,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5366,6/06/2019 17:32,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5365,6/06/2019 17:28,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5364,6/06/2019 17:20,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5363,6/06/2019 17:18,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5371,6/06/2019 17:12,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5362,6/06/2019 17:09,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5378,6/06/2019 17:01,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5377,6/06/2019 16:59,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5369,6/06/2019 16:59,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5370,6/06/2019 16:57,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5354,6/06/2019 16:54,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5368,6/06/2019 16:50,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5376,6/06/2019 16:36,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5346,6/06/2019 16:34,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5345,6/06/2019 16:33,5/06/2019 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-5353,6/06/2019 16:29,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-10906,6/06/2019 16:29,7/04/2019 0:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10745,6/06/2019 16:29,8/04/2019 13:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2019-5352,6/06/2019 16:21,5/06/2019 15:29,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5367,6/06/2019 16:18,5/06/2019 15:29,10.0,287, Improper Authentication,nan
CVE-2019-5351,6/06/2019 16:18,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5344,6/06/2019 16:12,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5343,6/06/2019 16:07,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5342,6/06/2019 16:01,5/06/2019 15:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-5350,6/06/2019 15:57,5/06/2019 15:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2019-11942,6/06/2019 15:56,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5355,6/06/2019 15:47,5/06/2019 15:29,7.8,20, Improper Input Validation,nan
CVE-2019-11948,6/06/2019 15:45,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-11947,6/06/2019 15:37,5/06/2019 15:29,9.0,798, Use of Hard-coded Credentials,nan
CVE-2019-11946,6/06/2019 15:36,5/06/2019 15:29,6.8,310, Cryptographic Issues,nan
CVE-2019-11945,6/06/2019 15:35,5/06/2019 15:29,10.0,20, Improper Input Validation,nan
CVE-2019-11944,6/06/2019 15:33,5/06/2019 15:29,10.0,20, Improper Input Validation,nan
CVE-2019-11943,6/06/2019 15:27,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5349,6/06/2019 15:19,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5348,6/06/2019 15:15,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-6608,6/06/2019 15:11,28/03/2019 21:29,7.1,399, Resource Management Errors,nan
CVE-2019-6604,6/06/2019 15:11,28/03/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-9252,6/06/2019 15:11,27/03/2017 18:59,5.0,19, Data Processing Errors,nan
CVE-2016-9250,6/06/2019 15:11,10/05/2017 14:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9244,6/06/2019 15:11,9/02/2017 15:59,5.0,200, Information Exposure,nan
CVE-2016-7476,6/06/2019 15:11,11/05/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2016-7474,6/06/2019 15:11,27/03/2017 15:59,2.1,200, Information Exposure,nan
CVE-2016-7469,6/06/2019 15:11,9/06/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7468,6/06/2019 15:11,23/03/2017 14:59,4.3,284, Improper Access Control,nan
CVE-2016-6876,6/06/2019 15:11,7/09/2016 19:28,5.0,399, Resource Management Errors,nan
CVE-2016-5736,6/06/2019 15:11,19/08/2016 21:59,5.0,284, Improper Access Control,nan
CVE-2016-5023,6/06/2019 15:11,26/08/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2016-5022,6/06/2019 15:11,7/09/2016 19:28,7.5,284, Improper Access Control,nan
CVE-2016-5020,6/06/2019 15:11,30/06/2016 17:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1497,6/06/2019 15:11,26/08/2016 14:59,4.0,200, Information Exposure,nan
CVE-2015-8099,6/06/2019 15:11,13/05/2016 16:59,4.3,20, Improper Input Validation,nan
CVE-2015-8022,6/06/2019 15:11,19/08/2016 21:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7394,6/06/2019 15:11,6/11/2015 18:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-6546,6/06/2019 15:11,6/11/2015 18:59,6.1,20, Improper Input Validation,nan
CVE-2015-5516,6/06/2019 15:11,20/01/2016 16:59,7.8,399, Resource Management Errors,nan
CVE-2015-3628,6/06/2019 15:11,7/12/2015 20:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6031,6/06/2019 15:11,8/06/2017 16:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4024,6/06/2019 15:11,19/03/2018 21:29,4.3,200, Information Exposure,nan
CVE-2009-4420,6/06/2019 15:11,24/12/2009 17:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5347,6/06/2019 15:10,5/06/2019 15:29,10.0,20, Improper Input Validation,nan
CVE-2019-11941,6/06/2019 15:09,5/06/2019 15:29,9.0,287, Improper Authentication,nan
CVE-2018-7125,6/06/2019 15:09,5/06/2019 15:29,6.5,20, Improper Input Validation,nan
CVE-2018-7124,6/06/2019 15:06,5/06/2019 15:29,10.0,20, Improper Input Validation,nan
CVE-2018-7123,6/06/2019 14:53,5/06/2019 15:29,7.8,287, Improper Authentication,nan
CVE-2018-7122,6/06/2019 14:50,5/06/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-7121,6/06/2019 14:40,5/06/2019 15:29,10.0,287, Improper Authentication,nan
CVE-2019-12542,6/06/2019 14:34,5/06/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5341,6/06/2019 14:29,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-12360,6/06/2019 14:29,27/05/2019 23:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-12293,6/06/2019 14:29,23/05/2019 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-10872,6/06/2019 14:29,5/04/2019 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-5340,6/06/2019 14:27,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5339,6/06/2019 14:13,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-5338,6/06/2019 14:11,5/06/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2019-9156,6/06/2019 14:08,5/06/2019 19:29,5.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12541,6/06/2019 14:06,5/06/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12538,6/06/2019 14:05,5/06/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9158,6/06/2019 13:55,5/06/2019 19:29,2.7,287, Improper Authentication,nan
CVE-2019-9157,6/06/2019 13:52,5/06/2019 19:29,2.7,200, Information Exposure,nan
CVE-2019-12741,6/06/2019 12:50,5/06/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12742,6/06/2019 12:32,5/06/2019 16:29,6.5,287, Improper Authentication,nan
CVE-2019-5587,6/06/2019 12:29,4/06/2019 22:29,4.0,20, Improper Input Validation,nan
CVE-2019-12543,6/06/2019 12:22,5/06/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9647,6/06/2019 12:17,5/06/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12555,6/06/2019 12:07,5/06/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-12554,6/06/2019 12:01,5/06/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-12553,6/06/2019 12:00,5/06/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2019-8457,6/06/2019 8:29,30/05/2019 16:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-5588,6/06/2019 8:29,4/06/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0120,6/06/2019 8:29,17/05/2019 16:29,2.1,284, Improper Access Control,nan
CVE-2015-6748,5/06/2019 21:10,25/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11226,5/06/2019 20:47,5/06/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11988,5/06/2019 20:31,5/06/2019 18:29,7.5,284, Improper Access Control,nan
CVE-2019-11987,5/06/2019 20:30,5/06/2019 18:29,4.6,254, 7PK – Security Features,nan
CVE-2019-2627,5/06/2019 20:29,23/04/2019 19:32,4.0,20, Improper Input Validation,nan
CVE-2019-2614,5/06/2019 20:29,23/04/2019 19:32,3.5,284, Improper Access Control,nan
CVE-2019-9642,5/06/2019 20:21,5/06/2019 17:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10636,5/06/2019 19:52,4/06/2019 21:29,4.9,254, 7PK – Security Features,nan
CVE-2019-10637,5/06/2019 19:51,5/06/2019 16:29,2.1,254, 7PK – Security Features,nan
CVE-2019-12243,5/06/2019 19:32,5/06/2019 15:29,5.4,284, Improper Access Control,nan
CVE-2019-5307,5/06/2019 19:19,4/06/2019 19:29,4.3,284, Improper Access Control,nan
CVE-2019-5300,5/06/2019 18:49,4/06/2019 19:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-12097,5/06/2019 18:29,3/06/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-11036,5/06/2019 18:29,3/05/2019 20:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5298,5/06/2019 18:21,4/06/2019 19:29,4.6,287, Improper Authentication,nan
CVE-2019-5297,5/06/2019 18:17,4/06/2019 19:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-6429,5/06/2019 18:10,26/01/2014 16:58,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5215,5/06/2019 17:50,4/06/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2019-5217,5/06/2019 17:44,4/06/2019 19:29,2.1,200, Information Exposure,nan
CVE-2019-11368,5/06/2019 17:32,3/06/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5283,5/06/2019 17:03,4/06/2019 19:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-5296,5/06/2019 16:21,4/06/2019 18:29,1.7,125, Out-of-bounds Read,nan
CVE-2019-5244,5/06/2019 16:09,4/06/2019 18:29,4.3,200, Information Exposure,nan
CVE-2019-11367,5/06/2019 16:08,3/06/2019 21:29,7.5,287, Improper Authentication,nan
CVE-2019-10321,5/06/2019 15:29,31/05/2019 15:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6891,5/06/2019 15:29,22/05/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5306,5/06/2019 15:28,4/06/2019 18:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2018-13384,5/06/2019 14:26,4/06/2019 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-5281,5/06/2019 13:38,4/06/2019 18:29,2.1,200, Information Exposure,nan
CVE-2014-9094,5/06/2019 11:29,26/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9744,5/06/2019 10:29,26/03/2019 20:29,6.8,384, Session Fixation,nan
CVE-2019-8352,4/06/2019 23:29,20/05/2019 19:29,7.5,310, Cryptographic Issues,nan
CVE-2019-1663,4/06/2019 23:29,28/02/2019 18:29,10.0,20, Improper Input Validation,nan
CVE-2019-12593,4/06/2019 23:29,3/06/2019 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20434,4/06/2019 23:29,24/04/2019 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19864,4/06/2019 23:29,5/12/2018 11:29,10.0,20, Improper Input Validation,nan
CVE-2019-12548,4/06/2019 20:42,3/06/2019 21:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11185,4/06/2019 20:42,3/06/2019 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12585,4/06/2019 20:29,3/06/2019 3:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12584,4/06/2019 20:29,3/06/2019 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13095,4/06/2019 20:29,3/07/2018 10:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-9838,4/06/2019 20:22,3/06/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9839,4/06/2019 19:59,3/06/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14851,4/06/2019 19:48,3/06/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14850,4/06/2019 19:47,3/06/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14728,4/06/2019 19:46,3/06/2019 19:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-14853,4/06/2019 19:17,3/06/2019 19:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14852,4/06/2019 19:16,3/06/2019 19:29,5.0,310, Cryptographic Issues,nan
CVE-2019-12310,4/06/2019 19:08,3/06/2019 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12727,4/06/2019 18:55,4/06/2019 13:29,7.8,20, Improper Input Validation,nan
CVE-2019-12177,4/06/2019 17:40,3/06/2019 20:29,9.3,426, Untrusted Search Path,nan
CVE-2019-6454,4/06/2019 17:29,21/03/2019 16:01,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2698,4/06/2019 17:29,23/04/2019 19:32,6.8,284, Improper Access Control,nan
CVE-2019-2697,4/06/2019 17:29,23/04/2019 19:32,6.8,284, Improper Access Control,nan
CVE-2019-2684,4/06/2019 17:29,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2602,4/06/2019 17:29,23/04/2019 19:32,5.0,284, Improper Access Control,nan
CVE-2019-10245,4/06/2019 17:29,19/04/2019 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-15089,4/06/2019 17:29,15/02/2018 17:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-12176,4/06/2019 16:53,3/06/2019 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-14854,4/06/2019 16:37,3/06/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12377,4/06/2019 16:31,3/06/2019 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11370,4/06/2019 16:01,3/06/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12374,4/06/2019 15:40,3/06/2019 20:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11646,4/06/2019 15:36,3/06/2019 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12098,4/06/2019 15:29,15/05/2019 23:29,5.8,320, Key Management Errors,nan
CVE-2019-10322,4/06/2019 15:29,31/05/2019 15:29,4.0,275, Permission Issues,nan
CVE-2019-10883,4/06/2019 15:27,3/06/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9891,4/06/2019 13:38,31/05/2019 21:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-8029,4/06/2019 5:29,30/05/2019 16:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-9937,4/06/2019 4:29,22/03/2019 8:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9936,4/06/2019 4:29,22/03/2019 8:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-11833,4/06/2019 4:29,15/05/2019 13:29,2.1,200, Information Exposure,nan
CVE-2019-11498,4/06/2019 4:29,24/04/2019 5:29,4.3,824, Access of Uninitialized Pointer,nan
CVE-2019-7181,3/06/2019 20:29,9/05/2019 15:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1543,3/06/2019 20:29,6/03/2019 21:29,5.8,310, Cryptographic Issues,nan
CVE-2019-11511,3/06/2019 20:29,25/04/2019 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18509,3/06/2019 19:29,26/04/2019 17:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-18356,3/06/2019 19:29,11/12/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-1000206,3/06/2019 18:52,13/07/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9874,3/06/2019 18:47,31/05/2019 21:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-6486,3/06/2019 18:29,24/01/2019 5:29,6.4,400, Uncontrolled Resource Consumption,nan
CVE-2019-5736,3/06/2019 18:29,11/02/2019 19:29,9.3,216, Containment Errors (Container Errors),nan
CVE-2018-19873,3/06/2019 18:29,26/12/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19870,3/06/2019 18:29,26/12/2018 21:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-16875,3/06/2019 18:29,14/12/2018 14:29,7.8,295, Improper Certificate Validation,nan
CVE-2018-16874,3/06/2019 18:29,14/12/2018 14:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16873,3/06/2019 18:29,14/12/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-15518,3/06/2019 18:29,26/12/2018 21:29,6.8,415, Double Free,nan
CVE-2016-6662,3/06/2019 17:41,20/09/2016 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-9875,3/06/2019 16:32,31/05/2019 21:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-8789,3/06/2019 16:29,29/11/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-8788,3/06/2019 16:29,29/11/2018 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-8787,3/06/2019 16:29,29/11/2018 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-8786,3/06/2019 16:29,29/11/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9871,3/06/2019 15:57,31/05/2019 20:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-9190,3/06/2019 15:53,8/02/2019 19:29,4.9,476, NULL Pointer Dereference,nan
CVE-2019-3397,3/06/2019 15:52,3/06/2019 14:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10069,3/06/2019 15:37,31/05/2019 22:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-10038,3/06/2019 15:31,31/05/2019 22:29,4.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10049,3/06/2019 15:30,31/05/2019 22:29,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-9675,3/06/2019 15:29,11/03/2019 11:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9640,3/06/2019 15:29,9/03/2019 0:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9639,3/06/2019 15:29,9/03/2019 0:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9638,3/06/2019 15:29,9/03/2019 0:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9637,3/06/2019 15:29,9/03/2019 0:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-2426,3/06/2019 15:29,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-2422,3/06/2019 15:29,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-11035,3/06/2019 15:29,18/04/2019 17:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11034,3/06/2019 15:29,18/04/2019 17:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11212,3/06/2019 15:29,16/05/2018 17:29,4.3,369, Divide By Zero,nan
CVE-2016-10245,3/06/2019 15:29,24/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10123,3/06/2019 15:20,31/05/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12589,3/06/2019 14:49,3/06/2019 3:29,4.6,284, Improper Access Control,nan
CVE-2018-1000181,3/06/2019 14:44,5/06/2018 13:29,5.0,200, Information Exposure,nan
CVE-2019-6725,3/06/2019 14:43,31/05/2019 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-9106,3/06/2019 14:32,31/05/2019 22:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9105,3/06/2019 14:26,31/05/2019 22:29,5.0,200, Information Exposure,nan
CVE-2019-10047,3/06/2019 14:06,31/05/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10048,3/06/2019 14:04,31/05/2019 22:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-12569,3/06/2019 14:02,3/06/2019 1:29,9.3,426, Untrusted Search Path,nan
CVE-2019-9653,3/06/2019 13:56,31/05/2019 22:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12530,3/06/2019 13:39,2/06/2019 17:29,7.5,284, Improper Access Control,nan
CVE-2019-10046,3/06/2019 13:37,31/05/2019 22:29,5.0,200, Information Exposure,nan
CVE-2019-12564,3/06/2019 13:32,3/06/2019 0:29,5.0,284, Improper Access Control,nan
CVE-2019-10330,3/06/2019 13:29,31/05/2019 15:29,5.0,284, Improper Access Control,nan
CVE-2019-10329,3/06/2019 13:29,31/05/2019 15:29,4.0,255, Credentials Management,nan
CVE-2019-10328,3/06/2019 13:29,31/05/2019 15:29,6.5,693, Protection Mechanism Failure,nan
CVE-2019-10327,3/06/2019 13:29,31/05/2019 15:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10326,3/06/2019 13:29,31/05/2019 15:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10325,3/06/2019 13:29,31/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10324,3/06/2019 13:29,31/05/2019 15:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10045,3/06/2019 13:14,31/05/2019 22:29,6.4,384, Session Fixation,nan
CVE-2019-12566,3/06/2019 12:50,3/06/2019 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5021,3/06/2019 12:29,8/05/2019 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-13383,3/06/2019 12:29,29/05/2019 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000135,3/06/2019 12:29,20/03/2018 13:29,5.0,200, Information Exposure,nan
CVE-2019-12495,3/06/2019 11:29,31/05/2019 11:29,4.3,787, Out-of-bounds Write,nan
CVE-2019-4264,3/06/2019 8:29,29/05/2019 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2019-4138,3/06/2019 7:29,29/05/2019 15:29,4.3,200, Information Exposure,nan
CVE-2019-4137,3/06/2019 7:29,29/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6806,2/06/2019 18:29,28/09/2015 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4233,2/06/2019 17:29,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13861,2/06/2019 17:29,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19497,2/06/2019 8:29,29/11/2018 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-0232,1/06/2019 9:29,15/04/2019 15:29,9.3,20, Improper Input Validation,nan
CVE-2017-9434,1/06/2019 6:29,5/06/2017 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2016-9939,1/06/2019 6:29,30/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2016-0032,1/06/2019 0:29,13/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0031,1/06/2019 0:29,13/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0030,1/06/2019 0:29,13/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0029,1/06/2019 0:29,13/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5072,1/06/2019 0:29,11/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4791,1/06/2019 0:29,12/12/2012 0:55,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3937,1/06/2019 0:29,16/12/2010 19:33,4.0,399, Resource Management Errors,nan
CVE-2008-2248,1/06/2019 0:29,8/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6556,31/05/2019 21:29,10/08/2018 15:29,2.1,417, Channel and Path Errors,nan
CVE-2015-1335,31/05/2019 21:29,1/10/2015 20:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-1334,31/05/2019 21:29,12/08/2015 14:59,4.6,17, DEPRECATED: Code,nan
CVE-2015-1331,31/05/2019 21:29,12/08/2015 14:59,4.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-12500,31/05/2019 18:36,31/05/2019 12:29,3.3,285, Improper Authorization,nan
CVE-2019-8936,31/05/2019 18:29,15/05/2019 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12499,31/05/2019 18:26,31/05/2019 12:29,9.3,20, Improper Input Validation,nan
CVE-2016-1234,31/05/2019 18:16,1/06/2016 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6322,31/05/2019 17:36,29/05/2019 20:29,9.0,254, 7PK – Security Features,nan
CVE-2019-6321,31/05/2019 17:36,29/05/2019 20:29,9.0,254, 7PK – Security Features,nan
CVE-2016-1494,31/05/2019 17:27,13/01/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2018-16217,31/05/2019 16:40,29/05/2019 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-20840,31/05/2019 16:04,30/05/2019 16:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-12507,31/05/2019 16:02,31/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16218,31/05/2019 15:48,29/05/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7609,31/05/2019 15:08,30/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12502,31/05/2019 14:43,31/05/2019 13:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2230,31/05/2019 14:32,30/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6778,31/05/2019 14:29,21/03/2019 16:01,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-4256,31/05/2019 14:29,29/05/2019 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-4184,31/05/2019 14:29,29/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3812,31/05/2019 14:29,19/02/2019 14:29,2.1,125, Out-of-bounds Read,nan
CVE-2019-12496,31/05/2019 14:29,31/05/2019 11:29,5.0,295, Improper Certificate Validation,nan
CVE-2019-12155,31/05/2019 14:29,24/05/2019 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-19489,31/05/2019 14:29,13/12/2018 19:29,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-19364,31/05/2019 14:29,13/12/2018 19:29,2.1,416, Use After Free,nan
CVE-2018-18954,31/05/2019 14:29,15/11/2018 20:29,2.1,787, Out-of-bounds Write,nan
CVE-2018-18849,31/05/2019 14:29,21/03/2019 16:00,2.1,125, Out-of-bounds Read,nan
CVE-2018-17958,31/05/2019 14:29,9/10/2018 22:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-16872,31/05/2019 14:29,13/12/2018 21:29,3.5,20, Improper Input Validation,nan
CVE-2018-12617,31/05/2019 14:29,21/06/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-11806,31/05/2019 14:29,13/06/2018 16:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10948,31/05/2019 14:28,30/05/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5489,31/05/2019 12:29,7/01/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-3882,31/05/2019 12:29,24/04/2019 16:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2019-11884,31/05/2019 12:29,10/05/2019 22:29,2.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11811,31/05/2019 12:29,7/05/2019 14:29,10.0,416, Use After Free,nan
CVE-2019-11085,31/05/2019 12:29,17/05/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2018-7191,31/05/2019 12:29,17/05/2019 5:29,4.9,476, NULL Pointer Dereference,nan
CVE-2013-4343,31/05/2019 12:29,25/09/2013 10:31,6.9,399, Resource Management Errors,nan
CVE-2018-14425,31/05/2019 12:20,30/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9893,31/05/2019 1:29,21/03/2019 16:01,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5676,30/05/2019 23:29,10/05/2019 21:29,7.2,426, Untrusted Search Path,nan
CVE-2019-2632,30/05/2019 20:59,23/04/2019 19:32,5.0,20, Improper Input Validation,nan
CVE-2019-12111,30/05/2019 20:29,15/05/2019 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12110,30/05/2019 20:29,15/05/2019 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12109,30/05/2019 20:29,15/05/2019 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12108,30/05/2019 20:29,15/05/2019 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12107,30/05/2019 20:29,15/05/2019 23:29,5.0,200, Information Exposure,nan
CVE-2017-1000494,30/05/2019 20:29,3/01/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15131,30/05/2019 19:08,30/05/2019 16:29,5.0,200, Information Exposure,nan
CVE-2018-4048,30/05/2019 18:45,30/05/2019 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9741,30/05/2019 18:29,13/03/2019 8:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-3839,30/05/2019 18:29,16/05/2019 19:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-0732,30/05/2019 18:29,12/06/2018 13:29,5.0,320, Key Management Errors,nan
CVE-2018-0495,30/05/2019 18:29,13/06/2018 23:29,1.9,200, Information Exposure,nan
CVE-2018-9193,30/05/2019 18:24,30/05/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-9191,30/05/2019 18:21,30/05/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-13368,30/05/2019 18:20,30/05/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-20160,30/05/2019 18:02,29/05/2019 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9670,30/05/2019 17:46,29/05/2019 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-6981,30/05/2019 17:44,29/05/2019 22:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6980,30/05/2019 17:40,29/05/2019 22:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-13365,30/05/2019 17:31,29/05/2019 21:29,5.0,200, Information Exposure,nan
CVE-2018-19977,30/05/2019 17:29,29/05/2019 18:29,7.7,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19978,30/05/2019 17:12,29/05/2019 18:29,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12452,30/05/2019 17:11,29/05/2019 19:29,3.5,255, Credentials Management,nan
CVE-2018-18631,30/05/2019 16:47,29/05/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3836,30/05/2019 16:29,1/04/2019 15:29,5.0,824, Access of Uninitialized Pointer,nan
CVE-2019-3829,30/05/2019 16:29,27/03/2019 18:29,5.0,416, Use After Free,nan
CVE-2018-14013,30/05/2019 16:25,29/05/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12460,30/05/2019 16:24,30/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12461,30/05/2019 16:23,30/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12247,30/05/2019 15:29,22/05/2019 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13375,30/05/2019 15:19,28/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12347,30/05/2019 15:09,29/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5760,30/05/2019 15:08,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5647,30/05/2019 15:08,13/12/2016 18:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-1000479,30/05/2019 14:57,3/01/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6511,30/05/2019 14:57,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6510,30/05/2019 14:57,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6509,30/05/2019 14:57,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6508,30/05/2019 14:57,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4029,30/05/2019 14:57,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2295,30/05/2019 14:57,10/04/2015 15:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2294,30/05/2019 14:57,1/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4694,30/05/2019 14:57,2/07/2014 10:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4693,30/05/2019 14:57,2/07/2014 10:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4692,30/05/2019 14:57,2/07/2014 10:35,4.3,200, Information Exposure,nan
CVE-2014-4690,30/05/2019 14:57,2/07/2014 10:35,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4689,30/05/2019 14:57,2/07/2014 10:35,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4687,30/05/2019 14:57,2/07/2014 10:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12440,30/05/2019 14:56,29/05/2019 16:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-6179,30/05/2019 14:31,7/09/2016 20:59,6.9,284, Improper Access Control,nan
CVE-2016-5025,30/05/2019 14:30,8/11/2016 20:59,6.1,20, Improper Input Validation,nan
CVE-2018-16868,30/05/2019 14:29,3/12/2018 14:29,3.3,310, Cryptographic Issues,nan
CVE-2016-9917,30/05/2019 14:29,8/12/2016 8:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9802,30/05/2019 14:29,3/12/2016 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9798,30/05/2019 14:29,3/12/2016 6:59,5.0,416, Use After Free,nan
CVE-2016-9797,30/05/2019 14:29,3/12/2016 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5761,30/05/2019 14:28,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16221,30/05/2019 14:25,29/05/2019 18:29,7.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5762,30/05/2019 14:24,20/04/2017 17:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-4959,30/05/2019 14:23,8/11/2016 20:59,7.8,476, NULL Pointer Dereference,nan
CVE-2017-0400,30/05/2019 14:21,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-8757,30/05/2019 14:21,2/04/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-6710,30/05/2019 14:19,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2019-12150,30/05/2019 14:09,24/05/2019 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20839,30/05/2019 8:29,17/05/2019 4:29,5.0,255, Credentials Management,nan
CVE-2018-14718,30/05/2019 8:29,2/01/2019 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-7324,30/05/2019 4:29,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10921,30/05/2019 4:29,14/05/2019 20:29,5.0,255, Credentials Management,nan
CVE-2019-10920,30/05/2019 4:29,14/05/2019 20:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2019-10919,30/05/2019 4:29,14/05/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2016-10759,30/05/2019 0:41,24/05/2019 18:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18375,30/05/2019 0:28,24/05/2019 18:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-17843,29/05/2019 23:58,24/05/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11604,29/05/2019 23:54,24/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4978,29/05/2019 22:29,27/09/2016 15:59,6.0,502, Deserialization of Untrusted Data,nan
CVE-2018-20239,29/05/2019 21:29,30/04/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9221,29/05/2019 19:45,29/05/2019 17:29,2.1,20, Improper Input Validation,nan
CVE-2019-9218,29/05/2019 19:44,29/05/2019 16:29,7.5,284, Improper Access Control,nan
CVE-2018-13920,29/05/2019 19:39,24/05/2019 17:29,7.2,416, Use After Free,nan
CVE-2019-9485,29/05/2019 19:38,29/05/2019 17:29,7.5,275, Permission Issues,nan
CVE-2018-13899,29/05/2019 19:33,24/05/2019 17:29,7.2,416, Use After Free,nan
CVE-2018-13895,29/05/2019 19:32,24/05/2019 17:29,7.2,284, Improper Access Control,nan
CVE-2018-11967,29/05/2019 19:32,24/05/2019 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9732,29/05/2019 19:29,29/05/2019 17:29,7.5,284, Improper Access Control,nan
CVE-2017-1000368,29/05/2019 19:29,5/06/2017 16:29,7.2,20, Improper Input Validation,nan
CVE-2019-9865,29/05/2019 19:20,29/05/2019 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-11953,29/05/2019 19:20,24/05/2019 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-13886,29/05/2019 19:12,24/05/2019 17:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-7129,29/05/2019 19:04,29/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13885,29/05/2019 18:54,24/05/2019 17:29,4.9,200, Information Exposure,nan
CVE-2016-10751,29/05/2019 18:52,24/05/2019 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-12005,29/05/2019 18:42,24/05/2019 17:29,4.9,416, Use After Free,nan
CVE-2018-11976,29/05/2019 18:41,24/05/2019 17:29,4.9,310, Cryptographic Issues,nan
CVE-2016-10753,29/05/2019 18:38,24/05/2019 18:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-11930,29/05/2019 18:35,24/05/2019 17:29,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-11271,29/05/2019 18:34,24/05/2019 17:29,7.5,287, Improper Authentication,nan
CVE-2018-13918,29/05/2019 18:31,4/04/2019 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5515,29/05/2019 18:29,2/04/2019 15:29,9.0,787, Out-of-bounds Write,nan
CVE-2017-14186,29/05/2019 18:29,29/11/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2244,29/05/2019 18:04,24/05/2019 17:29,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-13925,29/05/2019 18:02,24/05/2019 17:29,10.0,416, Use After Free,nan
CVE-2019-8346,29/05/2019 17:57,24/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2726,29/05/2019 17:56,24/05/2019 17:29,6.3,284, Improper Access Control,nan
CVE-2019-2247,29/05/2019 17:51,24/05/2019 17:29,4.6,415, Double Free,nan
CVE-2019-2245,29/05/2019 17:51,24/05/2019 17:29,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-13887,29/05/2019 17:43,24/05/2019 17:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-2248,29/05/2019 17:36,24/05/2019 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2250,29/05/2019 17:15,24/05/2019 17:29,7.2,20, Improper Input Validation,nan
CVE-2016-10754,29/05/2019 16:43,24/05/2019 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18058,29/05/2019 16:39,24/05/2019 17:29,2.6,369, Divide By Zero,nan
CVE-2018-18059,29/05/2019 16:37,24/05/2019 17:29,2.6,125, Out-of-bounds Read,nan
CVE-2018-20008,29/05/2019 16:32,28/05/2019 21:29,2.1,255, Credentials Management,nan
CVE-2018-18060,29/05/2019 16:28,24/05/2019 17:29,2.6,125, Out-of-bounds Read,nan
CVE-2019-11875,29/05/2019 16:22,24/05/2019 16:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5589,29/05/2019 16:07,28/05/2019 22:29,9.3,426, Untrusted Search Path,nan
CVE-2019-12372,29/05/2019 15:38,28/05/2019 1:29,4.6,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11937,29/05/2019 15:27,24/05/2019 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-11968,29/05/2019 15:21,24/05/2019 17:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-10755,29/05/2019 14:58,24/05/2019 18:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10752,29/05/2019 14:33,24/05/2019 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11928,29/05/2019 14:09,24/05/2019 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10758,29/05/2019 13:50,24/05/2019 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12195,29/05/2019 13:36,24/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7095,29/05/2019 13:30,24/05/2019 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10967,29/05/2019 13:29,28/05/2019 22:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10965,29/05/2019 13:29,28/05/2019 22:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7090,29/05/2019 12:36,24/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-11338,29/05/2019 10:29,19/04/2019 0:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-12383,29/05/2019 9:29,28/05/2019 3:29,4.3,200, Information Exposure,nan
CVE-2019-5427,29/05/2019 5:29,22/04/2019 21:29,5.0,399, Resource Management Errors,nan
CVE-2018-20433,29/05/2019 5:29,24/12/2018 13:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-12289,29/05/2019 3:26,23/05/2019 18:29,10.0,287, Improper Authentication,nan
CVE-2019-12288,29/05/2019 3:11,23/05/2019 18:29,7.5,287, Improper Authentication,nan
CVE-2019-9949,29/05/2019 1:08,23/05/2019 14:29,9.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-3874,29/05/2019 0:29,25/03/2019 19:29,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16884,29/05/2019 0:29,18/12/2018 22:29,6.7,416, Use After Free,nan
CVE-2019-0153,28/05/2019 22:29,17/05/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0199,28/05/2019 21:29,10/04/2019 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-11936,28/05/2019 20:08,24/05/2019 17:29,10.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-11927,28/05/2019 20:02,24/05/2019 17:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-11949,28/05/2019 19:55,24/05/2019 17:29,10.0,665, Improper Initialization,nan
CVE-2018-11940,28/05/2019 19:48,24/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7094,28/05/2019 19:38,24/05/2019 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9947,28/05/2019 19:29,23/03/2019 18:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-6133,28/05/2019 19:29,11/01/2019 14:29,4.4,284, Improper Access Control,nan
CVE-2019-3901,28/05/2019 19:29,22/04/2019 16:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-3460,28/05/2019 19:29,11/04/2019 16:29,3.3,200, Information Exposure,nan
CVE-2019-3459,28/05/2019 19:29,11/04/2019 16:29,3.3,200, Information Exposure,nan
CVE-2019-11599,28/05/2019 19:29,29/04/2019 18:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-5995,28/05/2019 19:29,7/08/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-19115,28/05/2019 19:29,8/11/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11925,28/05/2019 19:02,24/05/2019 17:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2019-12361,28/05/2019 18:52,27/05/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12362,28/05/2019 18:43,27/05/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9951,28/05/2019 18:29,24/04/2019 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9950,28/05/2019 18:29,24/04/2019 18:29,7.5,287, Improper Authentication,nan
CVE-2019-9792,28/05/2019 18:29,26/04/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9740,28/05/2019 18:29,13/03/2019 3:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2018-7832,28/05/2019 18:29,24/12/2018 16:29,6.5,20, Improper Input Validation,nan
CVE-2019-12315,28/05/2019 18:25,24/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1795,28/05/2019 17:29,15/05/2019 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0752,28/05/2019 17:29,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8339,28/05/2019 17:16,17/05/2019 20:29,2.1,416, Use After Free,nan
CVE-2018-12013,28/05/2019 17:13,24/05/2019 17:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-12012,28/05/2019 17:04,24/05/2019 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12004,28/05/2019 16:30,24/05/2019 17:29,4.9,200, Information Exposure,nan
CVE-2019-10712,28/05/2019 16:29,7/05/2019 22:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2019-7093,28/05/2019 16:14,24/05/2019 19:29,6.8,426, Untrusted Search Path,nan
CVE-2017-13667,28/05/2019 16:11,23/05/2019 18:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-8898,28/05/2019 16:07,24/05/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12042,28/05/2019 16:06,23/05/2019 14:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8900,28/05/2019 16:01,24/05/2019 17:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-19612,28/05/2019 15:56,24/05/2019 17:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-8901,28/05/2019 15:49,23/05/2019 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-19613,28/05/2019 15:43,24/05/2019 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9969,28/05/2019 15:43,23/05/2019 18:29,5.1,415, Double Free,nan
CVE-2018-10815,28/05/2019 15:19,24/05/2019 17:29,4.0,200, Information Exposure,nan
CVE-2017-17560,28/05/2019 15:08,12/12/2017 18:29,10.0,287, Improper Authentication,nan
CVE-2018-9148,28/05/2019 15:07,30/03/2018 19:29,5.0,287, Improper Authentication,nan
CVE-2019-12313,28/05/2019 15:05,24/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11876,28/05/2019 14:59,24/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10757,28/05/2019 14:41,24/05/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7816,28/05/2019 14:13,24/05/2019 18:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1151,28/05/2019 14:13,12/06/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7091,28/05/2019 14:07,24/05/2019 19:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2019-7092,28/05/2019 13:59,24/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12624,28/05/2019 13:48,24/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10847,28/05/2019 13:43,24/05/2019 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11923,28/05/2019 13:34,24/05/2019 17:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-7816,28/05/2019 13:25,22/05/2019 20:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-11924,28/05/2019 13:19,24/05/2019 17:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-10848,28/05/2019 13:06,24/05/2019 17:29,5.0,200, Information Exposure,nan
CVE-2018-7825,28/05/2019 13:00,22/05/2019 20:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-7826,28/05/2019 12:59,22/05/2019 20:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10853,28/05/2019 12:51,23/05/2019 19:29,8.3,287, Improper Authentication,nan
CVE-2019-10685,28/05/2019 12:42,24/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7828,28/05/2019 12:37,22/05/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10756,28/05/2019 12:36,24/05/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7102,28/05/2019 12:29,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7101,28/05/2019 12:29,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11023,28/05/2019 12:29,8/04/2019 23:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-7100,28/05/2019 12:26,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7099,28/05/2019 12:23,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7103,28/05/2019 12:19,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7098,28/05/2019 12:18,23/05/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8357,28/05/2019 10:29,15/02/2019 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-8356,28/05/2019 10:29,15/02/2019 23:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8355,28/05/2019 10:29,15/02/2019 23:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-8354,28/05/2019 10:29,15/02/2019 23:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-3842,28/05/2019 0:29,9/04/2019 21:29,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2018-11130,27/05/2019 23:29,17/05/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-11129,27/05/2019 23:29,17/05/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-11099,27/05/2019 23:29,17/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-3885,27/05/2019 18:29,18/04/2019 18:29,5.0,416, Use After Free,nan
CVE-2018-16878,27/05/2019 18:29,18/04/2019 18:29,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-11460,27/05/2019 17:29,22/04/2019 22:29,6.8,20, Improper Input Validation,nan
CVE-2017-11738,27/05/2019 13:29,23/05/2019 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11739,27/05/2019 12:29,23/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11873,27/05/2019 11:29,23/05/2019 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12295,27/05/2019 10:29,23/05/2019 12:29,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-12241,27/05/2019 10:29,20/05/2019 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2011-1473,27/05/2019 10:29,16/06/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-12167,27/05/2019 9:29,22/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15652,27/05/2019 9:29,23/05/2019 15:29,4.3,200, Information Exposure,nan
CVE-2019-8442,27/05/2019 8:29,22/05/2019 18:29,5.0,284, Improper Access Control,nan
CVE-2019-3880,27/05/2019 8:29,9/04/2019 16:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3870,27/05/2019 8:29,9/04/2019 16:29,3.6,275, Permission Issues,nan
CVE-2019-12252,27/05/2019 8:29,21/05/2019 18:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-6514,27/05/2019 8:29,22/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2019-8443,27/05/2019 7:29,22/05/2019 18:29,6.8,284, Improper Access Control,nan
CVE-2019-12106,27/05/2019 0:29,15/05/2019 23:29,5.0,416, Use After Free,nan
CVE-2019-10903,25/05/2019 8:29,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2019-10901,25/05/2019 8:29,9/04/2019 4:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-10899,25/05/2019 8:29,9/04/2019 4:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10895,25/05/2019 8:29,9/04/2019 4:29,5.0,20, Improper Input Validation,nan
CVE-2019-10894,25/05/2019 8:29,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2019-6131,25/05/2019 6:29,11/01/2019 5:29,4.3,399, Resource Management Errors,nan
CVE-2019-6130,25/05/2019 6:29,11/01/2019 5:29,4.3,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2019-11831,25/05/2019 6:29,9/05/2019 4:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-11373,25/05/2019 6:29,20/04/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-11372,25/05/2019 6:29,20/04/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19882,25/05/2019 6:29,6/12/2018 0:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19881,25/05/2019 6:29,6/12/2018 0:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-12083,25/05/2019 5:29,13/05/2019 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11328,25/05/2019 0:29,14/05/2019 21:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8899,24/05/2019 20:25,23/05/2019 19:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-8897,24/05/2019 20:20,23/05/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12044,24/05/2019 19:55,22/05/2019 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11365,24/05/2019 19:35,23/05/2019 18:29,7.5,284, Improper Access Control,nan
CVE-2019-9070,24/05/2019 19:29,24/02/2019 0:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-10855,24/05/2019 19:23,23/05/2019 19:29,5.0,200, Information Exposure,nan
CVE-2018-7780,24/05/2019 19:21,3/07/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10854,24/05/2019 19:06,23/05/2019 19:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10852,24/05/2019 19:02,23/05/2019 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10846,24/05/2019 18:53,23/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10849,24/05/2019 18:51,23/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-10851,24/05/2019 18:33,23/05/2019 19:29,4.0,320, Key Management Errors,nan
CVE-2019-10850,24/05/2019 18:33,23/05/2019 20:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-6617,24/05/2019 18:29,3/05/2019 20:29,5.5,275, Permission Issues,nan
CVE-2018-7829,24/05/2019 18:15,22/05/2019 20:29,9.0,943, Improper Neutralization of Special Elements in Data Query Logic,nan
CVE-2019-9077,24/05/2019 17:29,24/02/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000031,24/05/2019 17:29,25/10/2016 14:29,7.5,284, Improper Access Control,nan
CVE-2016-7550,24/05/2019 17:12,23/05/2019 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-12272,24/05/2019 17:10,23/05/2019 15:30,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-12301,24/05/2019 16:57,23/05/2019 16:29,10.0,287, Improper Authentication,nan
CVE-2019-12309,24/05/2019 16:51,23/05/2019 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-4293,24/05/2019 16:29,20/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2019-4279,24/05/2019 16:29,17/05/2019 16:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2019-0863,24/05/2019 16:29,16/05/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-11559,24/05/2019 16:26,23/05/2019 18:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19614,24/05/2019 14:40,23/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11560,24/05/2019 14:38,23/05/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7097,24/05/2019 14:20,23/05/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-7104,24/05/2019 13:58,23/05/2019 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11557,24/05/2019 13:54,23/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2019-7132,24/05/2019 13:52,23/05/2019 16:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-7133,24/05/2019 13:46,23/05/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11561,24/05/2019 13:30,23/05/2019 16:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7134,24/05/2019 13:28,23/05/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-11536,24/05/2019 13:28,22/05/2019 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-12297,24/05/2019 13:24,23/05/2019 14:29,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2019-7135,24/05/2019 13:05,23/05/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-5519,24/05/2019 12:29,1/04/2019 21:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7138,24/05/2019 12:03,23/05/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7137,24/05/2019 11:50,23/05/2019 16:29,4.3,200, Information Exposure,nan
CVE-2019-7136,24/05/2019 11:41,23/05/2019 16:29,4.3,416, Use After Free,nan
CVE-2019-12046,24/05/2019 11:38,22/05/2019 16:29,7.5,284, Improper Access Control,nan
CVE-2019-7130,24/05/2019 11:29,23/05/2019 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0194,24/05/2019 11:29,30/04/2019 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8041,24/05/2019 11:29,17/09/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8027,24/05/2019 11:29,31/07/2018 13:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5643,24/05/2019 11:29,16/03/2017 15:59,5.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-3159,24/05/2019 11:29,7/03/2017 15:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-12634,24/05/2019 11:29,15/11/2017 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-12633,24/05/2019 11:29,15/11/2017 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-8749,24/05/2019 11:29,28/03/2017 18:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2015-5348,24/05/2019 11:29,15/04/2016 15:59,6.8,19, Data Processing Errors,nan
CVE-2015-5344,24/05/2019 11:29,3/02/2016 18:59,7.5,19, Data Processing Errors,nan
CVE-2014-0003,24/05/2019 11:29,21/03/2014 4:38,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0002,24/05/2019 11:29,21/03/2014 4:38,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4330,24/05/2019 11:29,4/10/2013 17:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7106,24/05/2019 11:09,23/05/2019 16:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7105,24/05/2019 11:00,23/05/2019 16:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9075,23/05/2019 23:29,24/02/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9074,23/05/2019 23:29,24/02/2019 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-9071,23/05/2019 21:29,24/02/2019 0:29,4.3,399, Resource Management Errors,nan
CVE-2018-7803,23/05/2019 20:52,22/05/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-12298,23/05/2019 20:43,23/05/2019 14:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-17060,23/05/2019 20:41,23/05/2019 15:29,7.5,275, Permission Issues,nan
CVE-2017-15029,23/05/2019 20:40,23/05/2019 15:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-9076,23/05/2019 20:29,24/02/2019 0:29,4.3,399, Resource Management Errors,nan
CVE-2019-9073,23/05/2019 20:29,24/02/2019 0:29,4.3,399, Resource Management Errors,nan
CVE-2019-9072,23/05/2019 20:29,24/02/2019 0:29,4.3,399, Resource Management Errors,nan
CVE-2018-7823,23/05/2019 20:26,22/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7201,23/05/2019 20:05,22/05/2019 21:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-11740,23/05/2019 20:01,23/05/2019 16:29,6.8,20, Improper Input Validation,nan
CVE-2018-7840,23/05/2019 19:25,22/05/2019 20:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2019-6513,23/05/2019 19:05,21/05/2019 22:29,5.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-6815,23/05/2019 18:54,22/05/2019 20:29,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2017-5211,23/05/2019 18:49,23/05/2019 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-13668,23/05/2019 18:47,23/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5210,23/05/2019 18:44,23/05/2019 15:29,5.0,200, Information Exposure,nan
CVE-2017-15030,23/05/2019 18:44,23/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17061,23/05/2019 18:38,23/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12189,23/05/2019 18:29,21/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0803,23/05/2019 18:29,9/04/2019 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-6443,23/05/2019 18:29,22/01/2019 17:29,4.3,255, Credentials Management,nan
CVE-2018-19550,23/05/2019 18:29,26/11/2018 7:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-5212,23/05/2019 18:08,23/05/2019 15:29,7.5,284, Improper Access Control,nan
CVE-2018-7822,23/05/2019 18:01,22/05/2019 20:29,2.1,275, Permission Issues,nan
CVE-2017-5213,23/05/2019 17:57,23/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7821,23/05/2019 17:54,22/05/2019 20:29,5.0,399, Resource Management Errors,nan
CVE-2019-11231,23/05/2019 17:25,22/05/2019 18:29,5.0,255, Credentials Management,nan
CVE-2007-1088,23/05/2019 17:06,23/02/2007 22:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1087,23/05/2019 17:02,23/02/2007 22:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6816,23/05/2019 16:53,22/05/2019 20:29,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10078,23/05/2019 16:29,20/05/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10077,23/05/2019 16:29,20/05/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10076,23/05/2019 16:29,20/05/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3402,23/05/2019 16:16,22/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1072,23/05/2019 16:16,22/02/2007 22:28,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-1063,23/05/2019 16:15,22/02/2007 1:28,10.0,798, Use of Hard-coded Credentials,nan
CVE-2007-1062,23/05/2019 16:13,22/02/2007 1:28,10.0,287, Improper Authentication,nan
CVE-2017-9809,23/05/2019 16:05,22/05/2019 19:29,5.0,200, Information Exposure,nan
CVE-2017-5871,23/05/2019 15:44,22/05/2019 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-7842,23/05/2019 15:42,22/05/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-7844,23/05/2019 15:36,22/05/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-8777,23/05/2019 15:31,22/05/2019 20:29,6.5,285, Improper Authorization,nan
CVE-2018-3639,23/05/2019 15:29,22/05/2018 12:29,4.9,200, Information Exposure,nan
CVE-2017-5984,23/05/2019 15:28,22/05/2019 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7841,23/05/2019 15:02,22/05/2019 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12277,23/05/2019 15:01,22/05/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2019-11634,23/05/2019 14:35,22/05/2019 17:29,7.5,284, Improper Access Control,nan
CVE-2018-14729,23/05/2019 14:31,22/05/2019 18:29,9.0,20, Improper Input Validation,nan
CVE-2018-7202,23/05/2019 14:22,22/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-0367,23/05/2019 14:04,2/07/2003 4:00,2.1,20, Improper Input Validation,nan
CVE-2018-12886,23/05/2019 13:50,22/05/2019 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7837,23/05/2019 13:48,22/05/2019 19:29,9.3,416, Use After Free,nan
CVE-2017-6912,23/05/2019 13:12,22/05/2019 20:29,6.5,284, Improper Access Control,nan
CVE-2017-5864,23/05/2019 13:12,22/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5863,23/05/2019 13:12,22/05/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2017-9808,23/05/2019 13:11,22/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8341,23/05/2019 13:11,22/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-8340,23/05/2019 13:11,22/05/2019 20:29,6.5,284, Improper Access Control,nan
CVE-2019-11880,23/05/2019 12:23,22/05/2019 16:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9718,23/05/2019 11:29,12/03/2019 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1999011,23/05/2019 11:29,23/07/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1810,23/05/2019 10:29,15/05/2019 23:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-1813,23/05/2019 9:29,15/05/2019 23:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-1812,23/05/2019 9:29,15/05/2019 23:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-1811,23/05/2019 9:29,15/05/2019 23:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2013-2017,23/05/2019 3:29,3/05/2013 11:57,7.8,399, Resource Management Errors,nan
CVE-2019-11506,23/05/2019 0:29,24/04/2019 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11505,23/05/2019 0:29,24/04/2019 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11474,23/05/2019 0:29,23/04/2019 14:29,4.3,20, Improper Input Validation,nan
CVE-2019-11473,23/05/2019 0:29,23/04/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-11009,23/05/2019 0:29,8/04/2019 19:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-11008,23/05/2019 0:29,8/04/2019 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12270,22/05/2019 21:24,21/05/2019 21:29,6.8,275, Permission Issues,nan
CVE-2019-8404,22/05/2019 20:17,14/05/2019 16:29,5.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-2708,22/05/2019 18:55,23/04/2019 19:32,2.1,284, Improper Access Control,nan
CVE-2007-1864,22/05/2019 18:44,9/05/2007 0:19,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3724,22/05/2019 18:29,15/05/2019 16:29,4.0,255, Credentials Management,nan
CVE-2019-12163,22/05/2019 18:29,17/05/2019 21:29,5.0,200, Information Exposure,nan
CVE-2017-1000244,22/05/2019 17:52,1/11/2017 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6577,22/05/2019 16:29,14/05/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6576,22/05/2019 16:29,14/05/2019 20:29,5.0,310, Cryptographic Issues,nan
CVE-2019-6572,22/05/2019 16:29,14/05/2019 20:29,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-10953,22/05/2019 16:29,17/04/2019 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-11362,22/05/2019 16:29,17/07/2017 13:18,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10712,22/05/2019 16:29,9/02/2018 6:29,5.0,20, Improper Input Validation,nan
CVE-2018-20783,22/05/2019 15:29,21/02/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-3258,22/05/2019 15:06,27/01/2017 22:59,4.0,20, Improper Input Validation,nan
CVE-2016-9299,22/05/2019 15:06,12/01/2017 23:59,7.5,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2016-6909,22/05/2019 15:06,24/08/2016 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3273,22/05/2019 15:01,27/01/2017 22:59,4.0,20, Improper Input Validation,nan
CVE-2017-3313,22/05/2019 14:51,27/01/2017 22:59,1.5,200, Information Exposure,nan
CVE-2017-3010,22/05/2019 14:36,31/03/2017 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1782,22/05/2019 14:29,15/05/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1781,22/05/2019 14:29,15/05/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1726,22/05/2019 14:29,15/05/2019 17:29,4.6,20, Improper Input Validation,nan
CVE-2019-10067,22/05/2019 13:51,22/05/2019 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10066,22/05/2019 13:51,22/05/2019 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0981,22/05/2019 13:29,16/05/2019 19:29,5.0,19, Data Processing Errors,nan
CVE-2019-0980,22/05/2019 13:29,16/05/2019 19:29,5.0,19, Data Processing Errors,nan
CVE-2019-0820,22/05/2019 13:29,16/05/2019 19:29,5.0,20, Improper Input Validation,nan
CVE-2019-0757,22/05/2019 13:29,9/04/2019 2:29,4.0,284, Improper Access Control,nan
CVE-2013-1591,22/05/2019 13:29,31/01/2013 23:55,10.0,189, Numeric Errors,nan
CVE-2019-3586,22/05/2019 12:29,15/05/2019 16:29,5.1,254, 7PK – Security Features,nan
CVE-2019-9892,22/05/2019 12:02,22/05/2019 0:29,4.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-3727,22/05/2019 9:29,15/05/2019 16:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-11206,22/05/2019 8:29,14/05/2019 20:29,5.0,284, Improper Access Control,nan
CVE-2019-10131,22/05/2019 3:29,30/04/2019 19:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8740,22/05/2019 3:29,17/03/2018 0:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-18357,22/05/2019 3:29,15/01/2019 16:29,4.0,610, Externally Controlled Reference to a Resource in Another Sphere,nan
CVE-2009-4147,22/05/2019 3:29,2/12/2009 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4146,22/05/2019 3:29,2/12/2009 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0881,22/05/2019 2:29,16/05/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-1559,22/05/2019 0:29,27/02/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0161,22/05/2019 0:29,27/03/2019 20:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2537,21/05/2019 22:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2510,21/05/2019 22:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2503,21/05/2019 22:29,16/01/2019 19:30,3.8,284, Improper Access Control,nan
CVE-2019-2455,21/05/2019 22:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2018-2813,21/05/2019 22:29,19/04/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-10268,21/05/2019 22:29,19/10/2017 17:29,1.5,200, Information Exposure,nan
CVE-2019-5018,21/05/2019 19:29,10/05/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-12190,21/05/2019 18:59,21/05/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7119,21/05/2019 18:51,10/05/2019 19:29,1.9,255, Credentials Management,nan
CVE-2018-7064,21/05/2019 18:48,10/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-12253,21/05/2019 18:38,21/05/2019 17:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1779,21/05/2019 18:29,15/05/2019 20:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10922,21/05/2019 18:29,14/05/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2019-12198,21/05/2019 18:27,20/05/2019 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-12251,21/05/2019 18:09,21/05/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12161,21/05/2019 18:03,17/05/2019 19:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-12168,21/05/2019 17:18,17/05/2019 22:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11644,21/05/2019 17:12,17/05/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-16156,21/05/2019 17:11,17/05/2019 18:29,7.2,426, Untrusted Search Path,nan
CVE-2018-12270,21/05/2019 17:03,20/05/2019 14:29,5.8,20, Improper Input Validation,nan
CVE-2019-11114,21/05/2019 16:45,17/05/2019 16:29,2.1,20, Improper Input Validation,nan
CVE-2019-3887,21/05/2019 16:29,9/04/2019 16:29,4.7,20, Improper Input Validation,nan
CVE-2019-10139,21/05/2019 16:29,17/05/2019 16:29,2.1,255, Credentials Management,nan
CVE-2018-5819,21/05/2019 16:29,20/02/2019 18:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-5818,21/05/2019 16:29,20/02/2019 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-5817,21/05/2019 16:29,20/02/2019 18:29,5.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-20365,21/05/2019 16:29,22/12/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20364,21/05/2019 16:29,22/12/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20363,21/05/2019 16:29,22/12/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20337,21/05/2019 16:29,21/12/2018 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11095,21/05/2019 16:21,17/05/2019 16:29,2.1,284, Improper Access Control,nan
CVE-2019-0171,21/05/2019 15:59,17/05/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-12215,21/05/2019 15:56,20/05/2019 16:29,4.0,200, Information Exposure,nan
CVE-2019-3602,21/05/2019 15:29,15/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0113,21/05/2019 15:13,17/05/2019 16:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0114,21/05/2019 15:12,17/05/2019 16:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-0115,21/05/2019 14:58,17/05/2019 16:29,2.1,20, Improper Input Validation,nan
CVE-2019-11093,21/05/2019 14:55,17/05/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0116,21/05/2019 14:49,17/05/2019 16:29,2.1,125, Out-of-bounds Read,nan
CVE-2019-11094,21/05/2019 14:35,17/05/2019 16:29,4.6,20, Improper Input Validation,nan
CVE-2019-12172,21/05/2019 14:32,17/05/2019 23:29,6.8,20, Improper Input Validation,nan
CVE-2019-1730,21/05/2019 14:29,15/05/2019 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-8338,21/05/2019 14:07,16/05/2019 17:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-0707,21/05/2019 14:06,16/05/2019 19:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-12556,21/05/2019 14:03,16/05/2019 17:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-0733,21/05/2019 13:56,16/05/2019 19:29,4.6,254, 7PK – Security Features,nan
CVE-2019-12212,21/05/2019 13:46,20/05/2019 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-1728,21/05/2019 13:29,15/05/2019 17:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-12214,21/05/2019 13:14,20/05/2019 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-5957,21/05/2019 13:11,17/05/2019 16:29,6.8,426, Untrusted Search Path,nan
CVE-2019-5958,21/05/2019 12:58,17/05/2019 16:29,6.8,426, Untrusted Search Path,nan
CVE-2019-11336,21/05/2019 11:56,14/05/2019 14:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-1791,21/05/2019 10:29,15/05/2019 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1780,21/05/2019 10:29,16/05/2019 17:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1769,21/05/2019 10:29,15/05/2019 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0132,21/05/2019 10:29,17/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-11065,21/05/2019 4:29,10/04/2019 0:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0976,20/05/2019 21:29,16/05/2019 19:29,2.1,284, Improper Access Control,nan
CVE-2018-14324,20/05/2019 21:29,16/07/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-12211,20/05/2019 20:31,20/05/2019 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11057,20/05/2019 20:29,17/05/2019 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-12213,20/05/2019 19:53,20/05/2019 16:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-6787,20/05/2019 19:26,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-12185,20/05/2019 19:25,20/05/2019 0:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0921,20/05/2019 19:01,16/05/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2019-0929,20/05/2019 18:36,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0727,20/05/2019 18:35,16/05/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0938,20/05/2019 18:29,16/05/2019 19:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-5955,20/05/2019 18:26,17/05/2019 16:29,5.8,284, Improper Access Control,nan
CVE-2019-5954,20/05/2019 18:24,17/05/2019 16:29,6.4,284, Improper Access Control,nan
CVE-2019-5883,20/05/2019 18:24,17/05/2019 16:29,6.4,284, Improper Access Control,nan
CVE-2019-0172,20/05/2019 18:21,17/05/2019 16:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-12208,20/05/2019 18:20,20/05/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0926,20/05/2019 18:16,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12207,20/05/2019 18:13,20/05/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12173,20/05/2019 18:09,18/05/2019 0:29,6.8,20, Improper Input Validation,nan
CVE-2019-12206,20/05/2019 18:08,20/05/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1854,20/05/2019 17:29,3/05/2019 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9418,20/05/2019 17:29,24/12/2014 18:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9417,20/05/2019 17:29,24/12/2014 18:59,2.1,20, Improper Input Validation,nan
CVE-2014-9415,20/05/2019 17:29,24/12/2014 18:59,1.9,20, Improper Input Validation,nan
CVE-2014-1817,20/05/2019 17:27,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0138,20/05/2019 17:23,17/05/2019 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-12184,20/05/2019 17:12,19/05/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20500,20/05/2019 16:53,17/05/2019 16:29,5.0,275, Permission Issues,nan
CVE-2018-19585,20/05/2019 16:48,17/05/2019 16:29,5.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-1768,20/05/2019 16:29,16/05/2019 2:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1767,20/05/2019 16:29,15/05/2019 19:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11205,20/05/2019 16:29,14/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7083,20/05/2019 16:29,10/05/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-0734,20/05/2019 16:14,16/05/2019 19:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-0864,20/05/2019 16:08,16/05/2019 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5930,20/05/2019 15:50,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-5934,20/05/2019 15:49,17/05/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5935,20/05/2019 15:46,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-11846,20/05/2019 15:43,14/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5942,20/05/2019 15:39,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-5931,20/05/2019 15:36,17/05/2019 16:29,5.5,20, Improper Input Validation,nan
CVE-2019-5941,20/05/2019 15:35,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-0995,20/05/2019 15:35,16/05/2019 19:29,6.8,254, 7PK – Security Features,nan
CVE-2019-11809,20/05/2019 15:32,20/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1809,20/05/2019 15:29,15/05/2019 23:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-1776,20/05/2019 15:29,15/05/2019 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1729,20/05/2019 15:29,15/05/2019 17:29,6.6,20, Improper Input Validation,nan
CVE-2018-5814,20/05/2019 15:29,12/06/2018 16:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-5943,20/05/2019 15:27,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-5933,20/05/2019 15:26,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-0758,20/05/2019 15:23,16/05/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-0819,20/05/2019 15:21,16/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2019-5936,20/05/2019 15:15,17/05/2019 16:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3237,20/05/2019 15:09,9/08/2016 21:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0950,20/05/2019 15:07,16/05/2019 19:29,3.5,20, Improper Input Validation,nan
CVE-2019-11887,20/05/2019 14:51,17/05/2019 17:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-12160,20/05/2019 14:43,17/05/2019 19:29,7.5,416, Use After Free,nan
CVE-2019-12159,20/05/2019 14:42,17/05/2019 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-12158,20/05/2019 14:38,17/05/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6797,20/05/2019 14:37,17/05/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-0949,20/05/2019 14:28,16/05/2019 19:29,3.5,20, Improper Input Validation,nan
CVE-2019-0942,20/05/2019 14:28,16/05/2019 19:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-5944,20/05/2019 14:27,17/05/2019 16:29,4.0,284, Improper Access Control,nan
CVE-2019-5946,20/05/2019 14:18,17/05/2019 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-17181,20/05/2019 14:11,17/05/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17179,20/05/2019 14:04,17/05/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17180,20/05/2019 14:03,17/05/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0940,20/05/2019 14:01,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5945,20/05/2019 13:58,17/05/2019 16:29,5.0,255, Credentials Management,nan
CVE-2019-0936,20/05/2019 13:48,16/05/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-10909,20/05/2019 13:40,16/05/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0932,20/05/2019 13:36,16/05/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-0931,20/05/2019 13:29,16/05/2019 19:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-1000078,20/05/2019 13:29,13/03/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000077,20/05/2019 13:29,13/03/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-1000076,20/05/2019 13:29,13/03/2018 15:29,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-1000074,20/05/2019 13:29,13/03/2018 15:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2015-9287,20/05/2019 13:25,13/05/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0930,20/05/2019 13:19,16/05/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-1008,20/05/2019 12:59,16/05/2019 19:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0982,20/05/2019 12:38,16/05/2019 19:29,5.0,19, Data Processing Errors,nan
CVE-2019-3795,20/05/2019 6:29,9/04/2019 16:29,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2019-11579,19/05/2019 21:29,28/04/2019 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0225,19/05/2019 18:29,28/03/2019 22:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0224,19/05/2019 18:29,28/03/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20242,19/05/2019 18:29,11/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20362,19/05/2019 16:29,22/12/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20198,19/05/2019 16:29,18/12/2018 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-9578,19/05/2019 12:29,5/03/2019 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9470,18/05/2019 3:29,7/06/2017 5:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9146,18/05/2019 3:29,22/05/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6802,18/05/2019 3:29,10/03/2017 10:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-6801,18/05/2019 3:29,10/03/2017 10:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-6800,18/05/2019 3:29,10/03/2017 10:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-6306,18/05/2019 3:29,24/02/2017 4:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6305,18/05/2019 3:29,24/02/2017 4:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-6304,18/05/2019 3:29,24/02/2017 4:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-6303,18/05/2019 3:29,24/02/2017 4:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-6302,18/05/2019 3:29,24/02/2017 4:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-6301,18/05/2019 3:29,24/02/2017 4:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-6300,18/05/2019 3:29,24/02/2017 4:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6298,18/05/2019 3:29,24/02/2017 4:59,6.8,476, NULL Pointer Dereference,nan
CVE-2017-12142,18/05/2019 3:29,2/08/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12141,18/05/2019 3:29,2/08/2017 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7117,17/05/2019 22:29,9/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11419,17/05/2019 20:29,14/05/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-19277,17/05/2019 20:29,14/11/2018 11:29,6.8,91, XML Injection (aka Blind XPath Injection),nan
CVE-2014-1818,17/05/2019 20:27,11/06/2014 4:56,9.3,20, Improper Input Validation,nan
CVE-2016-0007,17/05/2019 20:17,13/01/2016 5:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-0006,17/05/2019 20:08,13/01/2016 5:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-6104,17/05/2019 20:01,11/11/2015 12:59,9.3,20, Improper Input Validation,nan
CVE-2019-0951,17/05/2019 19:49,16/05/2019 19:29,3.5,20, Improper Input Validation,nan
CVE-2018-19939,17/05/2019 19:29,7/12/2018 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-10910,17/05/2019 19:20,16/05/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6103,17/05/2019 19:19,11/11/2015 12:59,9.3,20, Improper Input Validation,nan
CVE-2016-0015,17/05/2019 19:13,13/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0882,17/05/2019 19:09,16/05/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-0918,17/05/2019 18:51,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5932,17/05/2019 18:44,17/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5940,17/05/2019 18:29,17/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5938,17/05/2019 18:25,17/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5939,17/05/2019 18:23,17/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5937,17/05/2019 18:22,17/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5947,17/05/2019 18:20,17/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0946,17/05/2019 18:16,16/05/2019 19:29,9.3,19, Data Processing Errors,nan
CVE-2019-0945,17/05/2019 18:16,16/05/2019 19:29,9.3,19, Data Processing Errors,nan
CVE-2019-0947,17/05/2019 18:13,16/05/2019 19:29,9.3,19, Data Processing Errors,nan
CVE-2019-5929,17/05/2019 18:07,17/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5928,17/05/2019 18:01,17/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0885,17/05/2019 18:00,16/05/2019 19:29,9.3,20, Improper Input Validation,nan
CVE-2019-0886,17/05/2019 17:53,16/05/2019 19:29,2.7,200, Information Exposure,nan
CVE-2019-8926,17/05/2019 17:51,17/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0892,17/05/2019 17:51,16/05/2019 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-8937,17/05/2019 17:44,17/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8928,17/05/2019 17:34,17/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8927,17/05/2019 17:25,17/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8929,17/05/2019 17:15,17/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0916,17/05/2019 17:09,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0889,17/05/2019 17:09,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0890,17/05/2019 17:08,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0915,17/05/2019 16:57,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9196,17/05/2019 16:53,15/05/2019 20:29,5.0,287, Improper Authentication,nan
CVE-2019-0891,17/05/2019 16:53,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0922,17/05/2019 16:52,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0917,17/05/2019 16:52,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0893,17/05/2019 16:51,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0924,17/05/2019 16:48,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0923,17/05/2019 16:46,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0925,17/05/2019 16:45,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0933,17/05/2019 16:43,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0927,17/05/2019 16:43,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0894,17/05/2019 16:41,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8925,17/05/2019 16:37,17/05/2019 2:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0895,17/05/2019 16:35,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1003000,17/05/2019 16:29,22/01/2019 14:29,6.5,254, 7PK – Security Features,nan
CVE-2019-0896,17/05/2019 16:24,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0937,17/05/2019 16:21,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0897,17/05/2019 16:21,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0898,17/05/2019 16:20,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0899,17/05/2019 16:19,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0901,17/05/2019 16:18,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0900,17/05/2019 16:18,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10911,17/05/2019 16:05,16/05/2019 22:29,6.0,287, Improper Authentication,nan
CVE-2019-0902,17/05/2019 16:03,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0912,17/05/2019 15:59,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0913,17/05/2019 15:53,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10913,17/05/2019 15:45,16/05/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0914,17/05/2019 15:45,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0956,17/05/2019 15:29,16/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2017-7376,17/05/2019 15:15,19/02/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0957,17/05/2019 15:02,16/05/2019 19:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0958,17/05/2019 14:57,16/05/2019 19:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0963,17/05/2019 14:36,16/05/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8924,17/05/2019 14:31,17/05/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17048,17/05/2019 14:27,16/05/2019 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5526,17/05/2019 13:39,15/05/2019 16:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-6885,17/05/2019 13:39,14/05/2019 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1735,17/05/2019 13:29,15/05/2019 19:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2459,17/05/2019 13:10,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2019-9861,17/05/2019 12:58,14/05/2019 17:29,4.8,310, Cryptographic Issues,nan
CVE-2015-2460,17/05/2019 12:53,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2465,17/05/2019 12:35,15/08/2015 0:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-8934,17/05/2019 12:29,21/03/2019 16:01,2.1,19, Data Processing Errors,nan
CVE-2015-2476,17/05/2019 12:19,15/08/2015 0:59,2.6,310, Cryptographic Issues,nan
CVE-2019-12139,17/05/2019 12:12,16/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6095,17/05/2019 12:11,11/11/2015 12:59,4.9,255, Credentials Management,nan
CVE-2019-11033,17/05/2019 11:58,16/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10924,17/05/2019 11:29,14/05/2019 20:29,6.8,284, Improper Access Control,nan
CVE-2019-3900,17/05/2019 10:29,25/04/2019 15:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-3894,17/05/2019 10:29,3/05/2019 20:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-3805,17/05/2019 10:29,3/05/2019 20:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-11487,17/05/2019 10:29,23/04/2019 22:29,7.2,416, Use After Free,nan
CVE-2018-20509,17/05/2019 10:29,30/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2019-3725,17/05/2019 8:29,15/05/2019 16:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1731,17/05/2019 7:29,15/05/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-1860,17/05/2019 6:29,16/05/2019 2:29,4.0,99, Improper Control of Resource Identifiers (‘Resource Injection’),nan
CVE-2019-11830,17/05/2019 5:29,9/05/2019 4:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-10608,17/05/2019 1:29,24/07/2018 13:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-0911,16/05/2019 22:01,16/05/2019 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0953,16/05/2019 22:00,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0725,16/05/2019 21:49,16/05/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0903,16/05/2019 21:45,16/05/2019 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6102,16/05/2019 19:38,11/11/2015 12:59,2.1,200, Information Exposure,nan
CVE-2019-10115,16/05/2019 19:28,16/05/2019 15:29,4.0,275, Permission Issues,nan
CVE-2019-12138,16/05/2019 19:26,16/05/2019 14:29,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-10113,16/05/2019 19:25,16/05/2019 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-10114,16/05/2019 19:14,16/05/2019 15:29,5.0,200, Information Exposure,nan
CVE-2015-6112,16/05/2019 19:11,11/11/2015 12:59,5.8,310, Cryptographic Issues,nan
CVE-2015-6126,16/05/2019 19:06,9/12/2015 11:59,7.2,416, Use After Free,nan
CVE-2019-10117,16/05/2019 18:57,16/05/2019 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-10112,16/05/2019 18:53,16/05/2019 16:29,5.0,320, Key Management Errors,nan
CVE-2014-1811,16/05/2019 18:50,11/06/2014 4:56,5.0,399, Resource Management Errors,nan
CVE-2015-6113,16/05/2019 18:48,11/11/2015 12:59,2.1,254, 7PK – Security Features,nan
CVE-2019-1010258,16/05/2019 18:41,15/05/2019 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9214,16/05/2019 18:29,28/02/2019 4:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9209,16/05/2019 18:29,28/02/2019 4:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9208,16/05/2019 18:29,28/02/2019 4:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-10896,16/05/2019 18:29,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2018-15586,16/05/2019 18:29,11/02/2019 17:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-12356,16/05/2019 18:29,15/06/2018 2:29,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-12019,16/05/2019 18:29,13/06/2018 23:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2016-0014,16/05/2019 18:24,13/01/2016 5:59,7.2,426, Untrusted Search Path,nan
CVE-2019-10116,16/05/2019 18:23,16/05/2019 15:29,4.0,275, Permission Issues,nan
CVE-2019-12136,16/05/2019 17:51,16/05/2019 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11204,16/05/2019 17:29,14/05/2019 20:29,4.0,255, Credentials Management,nan
CVE-2017-17848,16/05/2019 17:29,27/12/2017 17:08,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-4028,16/05/2019 17:28,13/05/2019 16:29,7.8,275, Permission Issues,nan
CVE-2018-16136,16/05/2019 17:25,13/05/2019 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4286,16/05/2019 17:17,13/10/2016 19:59,9.3,284, Improper Access Control,nan
CVE-2016-7855,16/05/2019 17:14,1/11/2016 22:59,9.3,416, Use After Free,nan
CVE-2018-4029,16/05/2019 17:12,13/05/2019 16:29,7.5,787, Out-of-bounds Write,nan
CVE-2016-7857,16/05/2019 17:12,8/11/2016 17:59,9.3,416, Use After Free,nan
CVE-2016-7859,16/05/2019 17:08,8/11/2016 17:59,9.3,416, Use After Free,nan
CVE-2015-2515,16/05/2019 17:00,14/10/2015 1:59,9.3,416, Use After Free,nan
CVE-2018-4018,16/05/2019 16:59,13/05/2019 16:29,10.0,20, Improper Input Validation,nan
CVE-2017-11815,16/05/2019 16:47,13/10/2017 13:29,3.5,200, Information Exposure,nan
CVE-2018-4023,16/05/2019 16:31,13/05/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11818,16/05/2019 16:30,13/10/2017 13:29,4.4,254, 7PK – Security Features,nan
CVE-2015-1696,16/05/2019 16:30,13/05/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-2449,16/05/2019 16:29,16/01/2019 19:30,2.6,284, Improper Access Control,nan
CVE-2018-12549,16/05/2019 16:29,11/02/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2018-12547,16/05/2019 16:29,11/02/2019 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3302,16/05/2019 16:23,14/09/2016 10:59,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-11822,16/05/2019 16:20,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4026,16/05/2019 16:18,13/05/2019 16:29,7.8,20, Improper Input Validation,nan
CVE-2018-4027,16/05/2019 16:17,13/05/2019 16:29,7.8,254, 7PK – Security Features,nan
CVE-2018-4024,16/05/2019 16:11,13/05/2019 16:29,7.8,476, NULL Pointer Dereference,nan
CVE-2019-10109,16/05/2019 16:10,15/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-10108,16/05/2019 16:04,15/05/2019 20:29,5.5,284, Improper Access Control,nan
CVE-2019-0293,16/05/2019 15:58,14/05/2019 21:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-10640,16/05/2019 15:57,15/05/2019 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-11817,16/05/2019 15:54,13/10/2017 13:29,1.9,200, Information Exposure,nan
CVE-2019-10110,16/05/2019 15:49,15/05/2019 20:29,4.0,275, Permission Issues,nan
CVE-2019-0298,16/05/2019 15:31,14/05/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9003,16/05/2019 15:29,22/02/2019 15:29,7.8,416, Use After Free,nan
CVE-2018-16880,16/05/2019 15:29,29/01/2019 16:29,6.9,787, Out-of-bounds Write,nan
CVE-2019-11397,16/05/2019 15:10,14/05/2019 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8978,16/05/2019 15:04,14/05/2019 19:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-3702,16/05/2019 14:49,13/05/2019 17:29,6.5,20, Improper Input Validation,nan
CVE-2019-8951,16/05/2019 14:42,13/05/2019 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-0301,16/05/2019 14:42,14/05/2019 21:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-8952,16/05/2019 14:31,13/05/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12087,16/05/2019 14:27,14/05/2019 3:29,4.9,399, Resource Management Errors,nan
CVE-2018-16656,16/05/2019 14:05,14/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2016-7151,16/05/2019 14:04,15/05/2019 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-8923,16/05/2019 13:47,14/05/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10719,16/05/2019 13:45,15/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11885,16/05/2019 13:32,12/05/2019 14:29,2.1,255, Credentials Management,nan
CVE-2019-12099,16/05/2019 13:11,14/05/2019 21:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-0280,16/05/2019 12:37,14/05/2019 21:29,6.5,285, Improper Authorization,nan
CVE-2018-12021,16/05/2019 12:29,5/07/2018 18:29,6.8,200, Information Exposure,nan
CVE-2019-12101,16/05/2019 12:27,15/05/2019 5:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-11596,16/05/2019 5:29,29/04/2019 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-11037,16/05/2019 5:29,3/05/2019 20:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-6341,16/05/2019 2:29,26/03/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10111,16/05/2019 1:40,15/05/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11844,16/05/2019 1:23,14/05/2019 18:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-7865,16/05/2019 1:22,8/11/2016 17:59,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2016-7863,16/05/2019 1:19,8/11/2016 17:59,9.3,416, Use After Free,nan
CVE-2016-7858,16/05/2019 1:16,8/11/2016 17:59,9.3,416, Use After Free,nan
CVE-2019-11224,16/05/2019 1:13,15/05/2019 18:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0287,16/05/2019 0:29,14/05/2019 21:29,6.8,200, Information Exposure,nan
CVE-2019-0289,16/05/2019 0:27,14/05/2019 21:29,5.8,200, Information Exposure,nan
CVE-2019-0291,16/05/2019 0:20,14/05/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-9499,15/05/2019 22:29,17/04/2019 14:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-9498,15/05/2019 22:29,17/04/2019 14:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-9497,15/05/2019 22:29,17/04/2019 14:29,6.8,287, Improper Authentication,nan
CVE-2019-9496,15/05/2019 22:29,17/04/2019 14:29,5.0,287, Improper Authentication,nan
CVE-2019-9495,15/05/2019 22:29,17/04/2019 14:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-9494,15/05/2019 22:29,17/04/2019 14:29,4.3,200, Information Exposure,nan
CVE-2018-14624,15/05/2019 21:29,6/09/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-10850,15/05/2019 21:29,13/06/2018 20:29,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15135,15/05/2019 21:29,24/01/2018 15:29,4.3,287, Improper Authentication,nan
CVE-2017-15134,15/05/2019 21:29,1/03/2018 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11816,15/05/2019 19:33,13/10/2017 13:29,2.1,200, Information Exposure,nan
CVE-2016-0008,15/05/2019 19:28,13/01/2016 5:59,4.3,200, Information Exposure,nan
CVE-2015-6132,15/05/2019 19:24,9/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-16137,15/05/2019 19:18,13/05/2019 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0018,15/05/2019 18:59,13/01/2016 5:59,6.9,426, Untrusted Search Path,nan
CVE-2015-2553,15/05/2019 18:59,14/10/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2554,15/05/2019 18:58,14/10/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2552,15/05/2019 18:56,14/10/2015 1:59,7.2,254, 7PK – Security Features,nan
CVE-2015-2550,15/05/2019 18:46,14/10/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2549,15/05/2019 18:45,14/10/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0036,15/05/2019 18:42,10/02/2016 11:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2509,15/05/2019 18:40,9/09/2015 0:59,9.3,284, Improper Access Control,nan
CVE-2016-0058,15/05/2019 18:36,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16138,15/05/2019 18:31,13/05/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2429,15/05/2019 18:25,15/08/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1698,15/05/2019 18:17,13/05/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1697,15/05/2019 18:13,13/05/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7860,15/05/2019 18:03,8/11/2016 17:59,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2019-11845,15/05/2019 17:59,14/05/2019 18:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-7861,15/05/2019 17:59,8/11/2016 17:59,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2016-7862,15/05/2019 17:58,8/11/2016 17:59,9.3,416, Use After Free,nan
CVE-2016-3215,15/05/2019 17:48,16/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-7864,15/05/2019 17:45,8/11/2016 17:59,9.3,416, Use After Free,nan
CVE-2016-3320,15/05/2019 17:37,9/08/2016 21:59,4.0,254, 7PK – Security Features,nan
CVE-2014-0318,15/05/2019 17:29,12/08/2014 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0044,15/05/2019 17:27,10/02/2016 11:59,5.0,20, Improper Input Validation,nan
CVE-2014-2780,15/05/2019 17:17,8/07/2014 22:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-1807,15/05/2019 17:11,14/05/2014 11:13,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0010,15/05/2019 17:04,11/02/2015 3:00,1.9,310, Cryptographic Issues,nan
CVE-2015-1680,15/05/2019 17:01,13/05/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-1702,15/05/2019 16:56,13/05/2015 10:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-9917,15/05/2019 16:46,15/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9919,15/05/2019 16:34,15/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3306,15/05/2019 16:30,14/09/2016 10:59,4.6,19, Data Processing Errors,nan
CVE-2019-3566,15/05/2019 16:29,10/05/2019 21:29,4.3,200, Information Exposure,nan
CVE-2014-9918,15/05/2019 16:17,15/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3305,15/05/2019 16:15,14/09/2016 10:59,4.6,19, Data Processing Errors,nan
CVE-2018-18800,15/05/2019 16:13,14/05/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11429,15/05/2019 16:06,13/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1716,15/05/2019 16:02,13/05/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-1725,15/05/2019 15:52,10/06/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8390,15/05/2019 15:49,14/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1726,15/05/2019 15:37,10/06/2015 1:59,7.2,416, Use After Free,nan
CVE-2015-1756,15/05/2019 15:33,10/06/2015 1:59,9.3,416, Use After Free,nan
CVE-2015-6174,15/05/2019 15:31,9/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2426,15/05/2019 15:23,20/07/2015 18:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8391,15/05/2019 15:20,14/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2428,15/05/2019 15:20,15/08/2015 0:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-2430,15/05/2019 15:10,15/08/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-1862,15/05/2019 15:09,13/05/2019 20:29,9.0,20, Improper Input Validation,nan
CVE-2015-6173,15/05/2019 15:09,9/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0038,15/05/2019 15:08,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6171,15/05/2019 15:07,9/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2432,15/05/2019 15:05,15/08/2015 0:59,9.3,19, Data Processing Errors,nan
CVE-2015-2433,15/05/2019 15:01,15/08/2015 0:59,2.1,200, Information Exposure,nan
CVE-2018-17612,15/05/2019 15:00,9/11/2018 21:29,5.0,295, Improper Certificate Validation,nan
CVE-2016-0046,15/05/2019 14:58,10/02/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-3300,15/05/2019 14:55,9/08/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2453,15/05/2019 14:54,15/08/2015 0:59,4.7,200, Information Exposure,nan
CVE-2015-2506,15/05/2019 14:51,9/09/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-6109,15/05/2019 14:48,11/11/2015 12:59,2.1,200, Information Exposure,nan
CVE-2019-7690,15/05/2019 14:46,13/05/2019 16:29,5.0,255, Credentials Management,nan
CVE-2015-6108,15/05/2019 14:43,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6107,15/05/2019 14:39,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0016,15/05/2019 14:36,13/01/2016 5:59,7.2,426, Untrusted Search Path,nan
CVE-2015-2512,15/05/2019 14:31,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-18696,15/05/2019 14:30,28/12/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7404,15/05/2019 14:26,13/05/2019 14:29,5.0,200, Information Exposure,nan
CVE-2018-4014,15/05/2019 14:25,13/05/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2781,15/05/2019 14:21,8/07/2014 22:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-4016,15/05/2019 14:15,13/05/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4017,15/05/2019 14:11,13/05/2019 16:29,8.3,798, Use of Hard-coded Credentials,nan
CVE-2014-0296,15/05/2019 14:11,11/06/2014 4:56,5.1,310, Cryptographic Issues,nan
CVE-2015-6127,15/05/2019 14:04,9/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-6131,15/05/2019 14:00,9/12/2015 11:59,9.3,20, Improper Input Validation,nan
CVE-2015-6133,15/05/2019 13:59,9/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2514,15/05/2019 13:58,9/09/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2464,15/05/2019 13:52,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2507,15/05/2019 13:51,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-8940,15/05/2019 13:48,14/05/2019 19:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-2513,15/05/2019 13:47,9/09/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-6111,15/05/2019 13:42,11/11/2015 12:59,6.8,399, Resource Management Errors,nan
CVE-2015-2463,15/05/2019 13:41,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2462,15/05/2019 13:37,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-6101,15/05/2019 13:32,11/11/2015 12:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-6332,15/05/2019 13:30,11/11/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6322,15/05/2019 13:22,11/11/2014 22:55,4.3,20, Improper Input Validation,nan
CVE-2015-2456,15/05/2019 13:21,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6317,15/05/2019 13:17,11/11/2014 22:55,7.1,129, Improper Validation of Array Index,nan
CVE-2015-2478,15/05/2019 13:04,11/11/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2455,15/05/2019 12:55,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-6100,15/05/2019 12:42,11/11/2015 12:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2472,15/05/2019 12:39,15/08/2015 0:59,4.3,20, Improper Input Validation,nan
CVE-2018-16139,15/05/2019 12:35,13/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-4204,15/05/2019 12:29,10/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2435,15/05/2019 11:59,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2423,15/05/2019 11:53,15/08/2015 0:59,4.3,200, Information Exposure,nan
CVE-2018-1990,15/05/2019 10:29,10/05/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-11886,15/05/2019 3:29,13/05/2019 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1999,14/05/2019 23:29,28/02/2019 17:29,7.2,415, Double Free,nan
CVE-2018-3665,14/05/2019 23:29,21/06/2018 20:29,4.7,200, Information Exposure,nan
CVE-2018-18559,14/05/2019 23:29,22/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-1068,14/05/2019 23:29,16/03/2018 16:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-17558,14/05/2019 23:29,12/12/2017 15:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-11600,14/05/2019 23:29,24/07/2017 7:29,6.9,125, Out-of-bounds Read,nan
CVE-2016-8633,14/05/2019 23:29,28/11/2016 3:59,6.2,284, Improper Access Control,nan
CVE-2016-7913,14/05/2019 23:29,16/11/2016 5:59,9.3,416, Use After Free,nan
CVE-2017-1000407,14/05/2019 22:29,11/12/2017 21:29,6.1,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-3863,14/05/2019 21:29,25/03/2019 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-3857,14/05/2019 21:29,25/03/2019 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-3856,14/05/2019 21:29,25/03/2019 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-3855,14/05/2019 21:29,21/03/2019 21:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-20838,14/05/2019 21:29,13/05/2019 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14712,14/05/2019 20:59,13/05/2019 13:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2454,14/05/2019 20:54,15/08/2015 0:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-2528,14/05/2019 20:52,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1699,14/05/2019 20:51,13/05/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-2527,14/05/2019 20:48,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1695,14/05/2019 20:45,13/05/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-2360,14/05/2019 20:39,10/06/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2519,14/05/2019 20:33,9/09/2015 0:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2015-2518,14/05/2019 20:32,9/09/2015 0:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2546,14/05/2019 20:30,9/09/2015 0:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1674,14/05/2019 20:30,13/05/2015 10:59,4.6,254, 7PK – Security Features,nan
CVE-2019-5008,14/05/2019 20:29,19/04/2019 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-7765,14/05/2019 20:29,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16557,14/05/2019 20:29,13/12/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2018-16556,14/05/2019 20:29,13/12/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2015-2517,14/05/2019 20:26,9/09/2015 0:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2511,14/05/2019 20:26,9/09/2015 0:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1727,14/05/2019 20:26,10/06/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2461,14/05/2019 20:23,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-1644,14/05/2019 20:10,14/04/2015 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1643,14/05/2019 19:59,14/04/2015 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2458,14/05/2019 19:57,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-1635,14/05/2019 19:53,14/04/2015 20:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0095,14/05/2019 19:53,11/03/2015 10:59,5.6,476, NULL Pointer Dereference,nan
CVE-2015-0096,14/05/2019 19:47,11/03/2015 10:59,9.3,426, Untrusted Search Path,nan
CVE-2015-2524,14/05/2019 19:44,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0003,14/05/2019 19:39,11/02/2015 3:00,6.9,476, NULL Pointer Dereference,nan
CVE-2015-1769,14/05/2019 19:38,15/08/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2525,14/05/2019 19:35,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2530,14/05/2019 19:30,9/09/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-0094,14/05/2019 19:26,11/03/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-0087,14/05/2019 19:25,11/03/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-0084,14/05/2019 19:23,11/03/2015 10:59,2.1,254, 7PK – Security Features,nan
CVE-2015-0074,14/05/2019 19:21,11/03/2015 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2516,14/05/2019 19:18,9/09/2015 0:59,4.3,20, Improper Input Validation,nan
CVE-2015-0089,14/05/2019 19:10,11/03/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-0061,14/05/2019 19:10,11/02/2015 3:01,4.3,200, Information Exposure,nan
CVE-2015-0092,14/05/2019 19:09,11/03/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0091,14/05/2019 19:08,11/03/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0090,14/05/2019 19:07,11/03/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1724,14/05/2019 19:06,10/06/2015 1:59,7.2,416, Use After Free,nan
CVE-2015-0093,14/05/2019 19:06,11/03/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0088,14/05/2019 19:06,11/03/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0078,14/05/2019 19:01,11/03/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0060,14/05/2019 19:01,11/02/2015 3:01,4.7,19, Data Processing Errors,nan
CVE-2015-0077,14/05/2019 18:58,11/03/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-0059,14/05/2019 18:58,11/02/2015 3:01,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-14711,14/05/2019 18:56,13/05/2019 13:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0079,14/05/2019 18:53,11/03/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-0080,14/05/2019 18:52,11/03/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-1647,14/05/2019 18:51,14/04/2015 20:59,2.1,20, Improper Input Validation,nan
CVE-2015-0081,14/05/2019 18:51,11/03/2015 10:59,9.3,19, Data Processing Errors,nan
CVE-2015-0058,14/05/2019 18:51,11/02/2015 3:01,7.2,415, Double Free,nan
CVE-2015-0057,14/05/2019 18:50,11/02/2015 3:01,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1721,14/05/2019 18:47,10/06/2015 1:59,7.2,476, NULL Pointer Dereference,nan
CVE-2015-2534,14/05/2019 18:44,9/09/2015 0:59,1.9,284, Improper Access Control,nan
CVE-2015-0076,14/05/2019 18:38,11/03/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-0073,14/05/2019 18:36,11/03/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0062,14/05/2019 18:34,11/02/2015 3:01,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2529,14/05/2019 18:24,9/09/2015 0:59,2.1,254, 7PK – Security Features,nan
CVE-2013-7332,14/05/2019 18:14,26/02/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2018-19037,14/05/2019 17:58,13/05/2019 13:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-18912,14/05/2019 17:55,13/05/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18558,14/05/2019 17:55,13/05/2019 13:29,6.9,20, Improper Input Validation,nan
CVE-2019-6515,14/05/2019 17:41,14/05/2019 15:29,5.0,284, Improper Access Control,nan
CVE-2019-6514,14/05/2019 17:39,14/05/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6512,14/05/2019 17:36,14/05/2019 15:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6516,14/05/2019 17:35,14/05/2019 15:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-3891,14/05/2019 17:29,15/04/2019 12:31,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-3845,14/05/2019 17:29,11/04/2019 15:29,5.2,284, Improper Access Control,nan
CVE-2018-8034,14/05/2019 17:29,1/08/2018 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-16887,14/05/2019 17:29,13/01/2019 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16861,14/05/2019 17:29,7/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14664,14/05/2019 17:29,12/10/2018 22:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14713,14/05/2019 17:24,13/05/2019 13:29,5.5,134, Use of Externally-Controlled Format String,nan
CVE-2019-5495,14/05/2019 17:15,10/05/2019 20:29,5.0,254, 7PK – Security Features,nan
CVE-2018-14710,14/05/2019 17:09,13/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4060,14/05/2019 17:03,12/08/2014 21:55,6.8,416, Use After Free,nan
CVE-2018-15128,14/05/2019 16:54,13/05/2019 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1723,14/05/2019 16:52,10/06/2015 1:59,7.2,416, Use After Free,nan
CVE-2019-10053,14/05/2019 16:34,13/05/2019 21:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2019-9727,14/05/2019 16:33,13/05/2019 17:29,5.0,255, Credentials Management,nan
CVE-2019-9726,14/05/2019 16:31,13/05/2019 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-4456,14/05/2019 16:29,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20580,14/05/2019 16:29,3/05/2019 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-6975,14/05/2019 16:29,5/04/2017 14:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14315,14/05/2019 16:29,12/09/2017 15:29,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1720,14/05/2019 14:25,10/06/2015 1:59,7.2,416, Use After Free,nan
CVE-2013-3918,14/05/2019 14:24,12/11/2013 14:35,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11680,14/05/2019 14:23,13/05/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2013-3869,14/05/2019 14:22,13/11/2013 0:55,5.0,20, Improper Input Validation,nan
CVE-2013-3940,14/05/2019 14:19,13/11/2013 0:55,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-15530,14/05/2019 14:18,13/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3876,14/05/2019 14:17,18/11/2013 3:55,7.1,20, Improper Input Validation,nan
CVE-2013-3900,14/05/2019 14:15,11/12/2013 0:55,7.6,20, Improper Input Validation,nan
CVE-2014-6318,14/05/2019 14:11,11/11/2014 22:55,4.3,287, Improper Authentication,nan
CVE-2013-5056,14/05/2019 14:11,11/12/2013 0:55,9.3,416, Use After Free,nan
CVE-2014-0263,14/05/2019 14:10,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4118,14/05/2019 14:04,11/11/2014 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11600,14/05/2019 13:44,13/05/2019 20:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9956,14/05/2019 13:29,24/03/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11598,14/05/2019 13:29,29/04/2019 16:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-11597,14/05/2019 13:29,29/04/2019 16:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-10650,14/05/2019 13:29,30/03/2019 14:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-3991,14/05/2019 13:29,5/02/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3990,14/05/2019 13:29,5/02/2019 23:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3989,14/05/2019 13:29,5/02/2019 23:29,2.1,200, Information Exposure,nan
CVE-2017-17682,14/05/2019 13:29,14/12/2017 6:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-15281,14/05/2019 13:29,12/10/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15017,14/05/2019 13:29,5/10/2017 1:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-15015,14/05/2019 13:29,5/10/2017 1:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-14739,14/05/2019 13:29,26/09/2017 2:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-14626,14/05/2019 13:29,21/09/2017 5:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-14625,14/05/2019 13:29,21/09/2017 5:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-14624,14/05/2019 13:29,21/09/2017 5:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-14532,14/05/2019 13:29,18/09/2017 1:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-14505,14/05/2019 13:29,17/09/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14400,14/05/2019 13:29,12/09/2017 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14341,14/05/2019 13:29,12/09/2017 17:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-14249,14/05/2019 13:29,11/09/2017 9:29,4.3,369, Divide By Zero,nan
CVE-2017-14060,14/05/2019 13:29,31/08/2017 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-13768,14/05/2019 13:29,30/08/2017 9:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-13145,14/05/2019 13:29,23/08/2017 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-13142,14/05/2019 13:29,23/08/2017 6:29,4.3,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-1000476,14/05/2019 13:29,3/01/2018 18:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000445,14/05/2019 13:29,2/01/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2013-7331,14/05/2019 13:24,26/02/2014 14:55,4.3,200, Information Exposure,nan
CVE-2015-1637,14/05/2019 13:22,6/03/2015 17:59,4.3,310, Cryptographic Issues,nan
CVE-2015-1681,14/05/2019 13:21,13/05/2015 10:59,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1719,14/05/2019 13:12,10/06/2015 1:59,2.1,200, Information Exposure,nan
CVE-2019-7411,14/05/2019 11:29,13/05/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19871,14/05/2019 9:29,26/12/2018 21:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-19869,14/05/2019 9:29,26/12/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-0217,14/05/2019 3:29,8/04/2019 21:29,6.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-0215,14/05/2019 3:29,8/04/2019 20:29,6.0,284, Improper Access Control,nan
CVE-2019-8342,14/05/2019 3:12,13/05/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-1679,13/05/2019 20:30,13/05/2015 10:59,2.1,200, Information Exposure,nan
CVE-2018-16866,13/05/2019 20:29,11/01/2019 19:29,2.1,125, Out-of-bounds Read,nan
CVE-2015-1678,13/05/2019 20:24,13/05/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-1675,13/05/2019 20:21,13/05/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1677,13/05/2019 20:17,13/05/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-1676,13/05/2019 19:55,13/05/2015 10:59,2.1,200, Information Exposure,nan
CVE-2014-1812,13/05/2019 19:40,14/05/2014 11:13,9.0,255, Credentials Management,nan
CVE-2018-8007,13/05/2019 19:29,11/07/2018 13:29,9.0,20, Improper Input Validation,nan
CVE-2017-12636,13/05/2019 19:29,14/11/2017 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0315,13/05/2019 19:29,8/04/2014 23:55,6.9,426, Untrusted Search Path,nan
CVE-2015-1722,13/05/2019 19:26,10/06/2015 1:59,7.2,416, Use After Free,nan
CVE-2014-0301,13/05/2019 19:22,12/03/2014 5:15,9.3,415, Double Free,nan
CVE-2014-0266,13/05/2019 19:19,12/02/2014 4:50,7.1,200, Information Exposure,nan
CVE-2014-4064,13/05/2019 19:09,12/08/2014 21:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1819,13/05/2019 19:06,12/08/2014 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-4074,13/05/2019 19:02,10/09/2014 1:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-12872,13/05/2019 18:53,1/09/2017 21:29,4.3,200, Information Exposure,nan
CVE-2014-1814,13/05/2019 18:52,12/08/2014 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-14064,13/05/2019 18:48,31/08/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-12041,13/05/2019 18:42,13/05/2019 13:29,5.0,399, Resource Management Errors,nan
CVE-2014-0316,13/05/2019 18:35,12/08/2014 21:55,7.5,399, Resource Management Errors,nan
CVE-2018-11229,13/05/2019 18:31,8/06/2018 1:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0323,13/05/2019 18:31,12/03/2014 5:15,6.6,200, Information Exposure,nan
CVE-2019-11869,13/05/2019 18:29,9/05/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11627,13/05/2019 18:29,30/04/2019 23:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11235,13/05/2019 18:29,22/04/2019 11:29,7.5,345, Insufficient Verification of Data Authenticity,nan
CVE-2019-11234,13/05/2019 18:29,22/04/2019 11:29,7.5,287, Improper Authentication,nan
CVE-2019-11070,13/05/2019 18:29,10/04/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2014-0300,13/05/2019 18:21,12/03/2014 5:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-5058,13/05/2019 18:13,11/12/2013 0:55,6.9,190, Integer Overflow or Wraparound,nan
CVE-2017-5641,13/05/2019 18:06,28/12/2017 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2014-0131,13/05/2019 18:03,24/03/2014 16:40,2.9,416, Use After Free,nan
CVE-2017-8685,13/05/2019 17:43,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2019-10886,13/05/2019 17:41,19/04/2019 18:29,4.3,200, Information Exposure,nan
CVE-2017-18122,13/05/2019 17:40,2/02/2018 15:29,6.8,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-7360,13/05/2019 17:29,9/04/2019 20:30,6.8,416, Use After Free,nan
CVE-2019-7359,13/05/2019 17:29,9/04/2019 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11832,13/05/2019 17:29,9/05/2019 5:29,9.3,20, Improper Input Validation,nan
CVE-2019-11000,13/05/2019 17:29,10/05/2019 20:29,4.0,200, Information Exposure,nan
CVE-2012-6652,13/05/2019 17:28,13/05/2019 14:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14956,13/05/2019 17:16,18/10/2017 18:29,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19048,13/05/2019 17:12,13/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16624,13/05/2019 17:12,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12301,13/05/2019 17:10,13/05/2019 13:29,5.0,200, Information Exposure,nan
CVE-2018-16623,13/05/2019 17:07,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12302,13/05/2019 16:57,13/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11066,13/05/2019 16:48,10/05/2019 20:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-18524,13/05/2019 16:44,13/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12303,13/05/2019 16:38,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12300,13/05/2019 16:32,13/05/2019 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-12043,13/05/2019 16:31,13/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18872,13/05/2019 16:31,13/05/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7409,13/05/2019 16:27,13/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12298,13/05/2019 16:26,13/05/2019 13:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-12047,13/05/2019 16:24,13/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12295,13/05/2019 16:24,13/05/2019 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12299,13/05/2019 16:23,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12297,13/05/2019 16:10,13/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6065,13/05/2019 16:05,14/11/2018 15:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-11879,13/05/2019 16:04,10/05/2019 16:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18409,13/05/2019 15:46,17/10/2018 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18121,13/05/2019 15:41,2/02/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19525,13/05/2019 15:34,21/03/2019 16:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12304,13/05/2019 15:29,13/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16626,13/05/2019 15:12,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16625,13/05/2019 15:11,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16639,13/05/2019 15:10,13/05/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11888,13/05/2019 15:04,13/05/2019 5:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-0900,13/05/2019 14:31,31/08/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-7413,13/05/2019 14:29,5/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4360,13/05/2019 14:29,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20782,13/05/2019 14:29,17/02/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-18466,13/05/2019 14:29,21/03/2019 16:00,1.9,255, Credentials Management,nan
CVE-2018-20664,13/05/2019 14:18,3/01/2019 19:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11878,13/05/2019 14:06,10/05/2019 15:29,3.3,190, Integer Overflow or Wraparound,nan
CVE-2019-5675,13/05/2019 14:01,10/05/2019 21:29,7.2,19, Data Processing Errors,nan
CVE-2019-5677,13/05/2019 13:51,10/05/2019 21:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5494,13/05/2019 13:42,10/05/2019 19:29,5.0,200, Information Exposure,nan
CVE-2019-3398,13/05/2019 13:42,18/04/2019 18:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7652,13/05/2019 13:40,9/05/2019 21:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-5496,13/05/2019 13:32,10/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2018-16210,13/05/2019 13:29,12/10/2018 22:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12789,13/05/2019 13:26,10/05/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12759,13/05/2019 12:30,9/05/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6616,13/05/2019 12:29,3/05/2019 20:29,6.5,284, Improper Access Control,nan
CVE-2019-11059,13/05/2019 12:20,10/05/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9813,13/05/2019 10:29,26/04/2019 17:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-9810,13/05/2019 10:29,26/04/2019 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9795,13/05/2019 10:29,26/04/2019 17:29,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2019-9793,13/05/2019 10:29,26/04/2019 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9791,13/05/2019 10:29,26/04/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2019-9790,13/05/2019 10:29,26/04/2019 17:29,7.5,416, Use After Free,nan
CVE-2019-9788,13/05/2019 10:29,26/04/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6614,13/05/2019 10:29,3/05/2019 20:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-6612,13/05/2019 10:29,3/05/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2019-10063,13/05/2019 10:29,26/03/2019 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-18506,13/05/2019 10:29,5/02/2019 21:29,4.3,254, 7PK – Security Features,nan
CVE-2019-11366,12/05/2019 23:29,20/04/2019 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-11365,12/05/2019 23:29,20/04/2019 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19865,10/05/2019 20:47,5/12/2018 11:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-10876,10/05/2019 20:30,5/04/2019 5:29,4.0,254, 7PK – Security Features,nan
CVE-2018-1000026,10/05/2019 20:14,9/02/2018 23:29,6.8,20, Improper Input Validation,nan
CVE-2017-11793,10/05/2019 20:10,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8682,10/05/2019 19:58,13/09/2017 1:29,9.3,20, Improper Input Validation,nan
CVE-2017-8680,10/05/2019 19:43,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-11501,10/05/2019 19:41,20/07/2017 23:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-11764,10/05/2019 19:39,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7442,10/05/2019 19:29,8/05/2019 21:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-14042,10/05/2019 19:29,13/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14040,10/05/2019 19:29,13/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8751,10/05/2019 19:29,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7064,10/05/2019 19:19,20/07/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-12795,10/05/2019 19:16,10/05/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2017-12884,10/05/2019 19:07,10/05/2019 16:29,5.0,200, Information Exposure,nan
CVE-2017-12869,10/05/2019 19:00,1/09/2017 13:29,5.0,20, Improper Input Validation,nan
CVE-2017-17932,10/05/2019 18:55,28/12/2017 6:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11222,10/05/2019 18:36,15/04/2019 12:31,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20485,10/05/2019 18:29,26/12/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20484,10/05/2019 18:29,26/12/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11221,10/05/2019 18:19,15/04/2019 12:31,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11810,10/05/2019 18:07,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14322,10/05/2019 17:49,18/10/2017 18:29,10.0,287, Improper Authentication,nan
CVE-2019-11082,10/05/2019 17:43,10/05/2019 16:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12760,10/05/2019 17:31,9/05/2019 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9505,10/05/2019 17:29,8/05/2019 15:30,10.0,20, Improper Input Validation,nan
CVE-2018-5409,10/05/2019 17:29,8/05/2019 15:30,10.0,346, Origin Validation Error,nan
CVE-2018-5408,10/05/2019 17:29,8/05/2019 15:30,5.8,295, Improper Certificate Validation,nan
CVE-2017-1274,10/05/2019 17:29,25/04/2017 18:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6256,10/05/2019 17:21,14/01/2019 8:29,7.5,20, Improper Input Validation,nan
CVE-2017-12885,10/05/2019 17:13,10/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11415,10/05/2019 17:08,22/04/2019 11:29,7.8,20, Improper Input Validation,nan
CVE-2017-7011,10/05/2019 17:02,20/07/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2019-11378,10/05/2019 16:56,20/04/2019 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-5739,10/05/2019 16:45,18/10/2017 20:29,7.5,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2015-4643,10/05/2019 16:42,16/05/2016 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19790,10/05/2019 16:29,18/12/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-19789,10/05/2019 16:29,18/12/2018 22:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-12757,10/05/2019 15:53,9/05/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12761,10/05/2019 15:43,9/05/2019 18:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-3110,10/05/2019 15:34,26/09/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2017-12904,10/05/2019 15:30,23/08/2017 14:29,9.3,943, Improper Neutralization of Special Elements in Data Query Logic,nan
CVE-2017-9506,10/05/2019 15:22,23/08/2017 19:29,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-17108,10/05/2019 15:17,3/02/2018 15:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9847,10/05/2019 15:11,9/05/2019 14:29,6.8,20, Improper Input Validation,nan
CVE-2017-1000115,10/05/2019 14:58,5/10/2017 1:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-11323,10/05/2019 14:52,9/05/2019 14:29,4.3,310, Cryptographic Issues,nan
CVE-2019-11839,10/05/2019 14:49,9/05/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1608,10/05/2019 14:29,1/05/2019 16:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-12839,10/05/2019 14:14,9/05/2019 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-2304,10/05/2019 14:11,30/05/2017 14:29,5.0,200, Information Exposure,nan
CVE-2016-1600,10/05/2019 14:04,9/05/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-7443,10/05/2019 14:00,7/05/2019 19:29,9.3,20, Improper Input Validation,nan
CVE-2019-11842,10/05/2019 13:57,9/05/2019 18:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-3005,10/05/2019 13:55,12/04/2017 14:59,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-3004,10/05/2019 13:55,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2568,10/05/2019 13:53,24/03/2014 16:40,2.9,416, Use After Free,nan
CVE-2019-5014,10/05/2019 13:39,8/05/2019 17:29,3.3,284, Improper Access Control,nan
CVE-2019-11870,10/05/2019 13:23,9/05/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11353,10/05/2019 13:22,9/05/2019 14:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20837,10/05/2019 13:19,9/05/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0226,10/05/2019 12:26,9/05/2019 14:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1568,10/05/2019 12:08,9/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10869,10/05/2019 9:29,7/05/2019 18:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8285,10/05/2019 8:29,8/05/2019 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5518,10/05/2019 7:29,1/04/2019 21:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5666,9/05/2019 21:29,27/02/2019 23:29,7.2,129, Improper Validation of Array Index,nan
CVE-2019-11636,9/05/2019 21:29,1/05/2019 17:29,5.0,254, 7PK – Security Features,nan
CVE-2018-18557,9/05/2019 21:29,22/10/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14642,9/05/2019 21:29,18/09/2018 13:29,5.0,200, Information Exposure,nan
CVE-2019-11444,9/05/2019 20:29,22/04/2019 11:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-8375,9/05/2019 20:26,24/02/2019 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5740,9/05/2019 20:13,18/10/2017 20:29,7.5,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-12758,9/05/2019 19:45,9/05/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9698,9/05/2019 19:41,8/05/2019 19:29,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-11836,9/05/2019 19:19,9/05/2019 13:29,2.1,200, Information Exposure,nan
CVE-2019-11819,9/05/2019 18:48,8/05/2019 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11561,9/05/2019 18:38,8/05/2019 16:29,4.3,284, Improper Access Control,nan
CVE-2019-2049,9/05/2019 18:36,8/05/2019 17:29,7.2,416, Use After Free,nan
CVE-2019-2050,9/05/2019 18:35,8/05/2019 17:29,7.2,416, Use After Free,nan
CVE-2019-2051,9/05/2019 18:29,8/05/2019 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2019-11642,9/05/2019 18:25,8/05/2019 16:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11837,9/05/2019 18:24,9/05/2019 14:29,5.0,189, Numeric Errors,nan
CVE-2019-11838,9/05/2019 18:17,9/05/2019 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12790,9/05/2019 18:08,9/05/2019 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12788,9/05/2019 18:01,9/05/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12804,9/05/2019 17:54,9/05/2019 16:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-8383,9/05/2019 17:29,17/02/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8379,9/05/2019 17:29,17/02/2019 2:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-20162,9/05/2019 17:29,21/03/2019 16:00,9.0,20, Improper Input Validation,nan
CVE-2019-3565,9/05/2019 16:29,6/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-3552,9/05/2019 16:29,6/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-20556,9/05/2019 16:29,21/03/2019 16:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11458,9/05/2019 16:19,8/05/2019 18:29,6.4,20, Improper Input Validation,nan
CVE-2018-18976,9/05/2019 15:54,6/05/2019 20:29,5.0,310, Cryptographic Issues,nan
CVE-2018-18978,9/05/2019 15:43,6/05/2019 20:29,5.8,320, Key Management Errors,nan
CVE-2019-11550,9/05/2019 15:34,8/05/2019 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-18979,9/05/2019 15:08,6/05/2019 20:29,5.8,310, Cryptographic Issues,nan
CVE-2019-11834,9/05/2019 13:09,9/05/2019 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11835,9/05/2019 12:42,9/05/2019 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2045,9/05/2019 12:39,8/05/2019 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-11406,9/05/2019 12:25,8/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2044,9/05/2019 12:21,8/05/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-2046,9/05/2019 12:03,8/05/2019 17:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2019-2047,9/05/2019 12:02,8/05/2019 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-2043,9/05/2019 11:49,8/05/2019 17:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-4178,9/05/2019 11:29,15/04/2019 15:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3558,9/05/2019 11:29,6/05/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2019-11244,9/05/2019 11:29,22/04/2019 15:29,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-11243,9/05/2019 11:29,22/04/2019 15:29,4.3,255, Credentials Management,nan
CVE-2019-5429,9/05/2019 5:29,29/04/2019 15:29,6.8,426, Untrusted Search Path,nan
CVE-2019-11455,8/05/2019 22:29,22/04/2019 16:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11454,8/05/2019 22:29,22/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000504,8/05/2019 22:24,24/01/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000401,8/05/2019 22:24,26/01/2018 2:29,1.2,20, Improper Input Validation,nan
CVE-2017-1000399,8/05/2019 22:24,26/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-1000398,8/05/2019 22:24,26/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-1000396,8/05/2019 22:24,26/01/2018 2:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-1000395,8/05/2019 22:24,26/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-1000394,8/05/2019 22:24,26/01/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2017-1000393,8/05/2019 22:24,26/01/2018 2:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000392,8/05/2019 22:24,26/01/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000391,8/05/2019 22:24,26/01/2018 2:29,4.9,20, Improper Input Validation,nan
CVE-2018-1999046,8/05/2019 22:23,23/08/2018 18:29,4.0,200, Information Exposure,nan
CVE-2018-1999045,8/05/2019 22:23,23/08/2018 18:29,5.5,287, Improper Authentication,nan
CVE-2018-1000997,8/05/2019 22:23,23/01/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000862,8/05/2019 22:23,10/12/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-1000861,8/05/2019 22:23,10/12/2018 14:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-1000410,8/05/2019 22:23,9/01/2019 23:29,2.1,200, Information Exposure,nan
CVE-2018-1000409,8/05/2019 22:23,9/01/2019 23:29,5.8,384, Session Fixation,nan
CVE-2018-1000407,8/05/2019 22:23,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000406,8/05/2019 22:23,9/01/2019 23:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000170,8/05/2019 22:23,16/04/2018 9:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1999042,8/05/2019 22:22,23/08/2018 18:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2019-0838,8/05/2019 22:11,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0836,8/05/2019 22:11,9/04/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0805,8/05/2019 22:11,9/04/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0796,8/05/2019 22:11,9/04/2019 21:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-0731,8/05/2019 22:11,9/04/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0730,8/05/2019 22:11,9/04/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-8653,8/05/2019 22:11,20/12/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8643,8/05/2019 22:11,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8631,8/05/2019 22:11,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8625,8/05/2019 22:11,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8619,8/05/2019 22:11,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8596,8/05/2019 22:11,12/12/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8595,8/05/2019 22:11,12/12/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8540,8/05/2019 22:11,12/12/2018 0:29,10.0,20, Improper Input Validation,nan
CVE-2018-8517,8/05/2019 22:11,12/12/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-16098,8/05/2019 22:11,24/01/2019 22:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2019-0879,8/05/2019 22:03,9/04/2019 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0877,8/05/2019 22:03,9/04/2019 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0845,8/05/2019 22:03,9/04/2019 21:29,9.3,20, Improper Input Validation,nan
CVE-2019-0839,8/05/2019 22:03,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0797,8/05/2019 22:03,9/04/2019 3:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0754,8/05/2019 22:03,9/04/2019 0:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0746,8/05/2019 22:03,9/04/2019 0:29,4.3,200, Information Exposure,nan
CVE-2019-0703,8/05/2019 22:03,9/04/2019 0:29,4.0,200, Information Exposure,nan
CVE-2019-0702,8/05/2019 22:03,9/04/2019 0:29,2.1,200, Information Exposure,nan
CVE-2019-0690,8/05/2019 22:03,9/04/2019 0:29,5.5,20, Improper Input Validation,nan
CVE-2019-0603,8/05/2019 22:03,8/04/2019 23:29,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0599,8/05/2019 22:03,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0598,8/05/2019 22:03,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0597,8/05/2019 22:03,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0596,8/05/2019 22:03,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0569,8/05/2019 22:03,8/01/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0554,8/05/2019 22:03,8/01/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0549,8/05/2019 22:03,8/01/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0536,8/05/2019 22:03,8/01/2019 21:29,2.1,200, Information Exposure,nan
CVE-2018-8626,8/05/2019 22:03,12/12/2018 0:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8622,8/05/2019 22:03,12/12/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-8563,8/05/2019 22:03,14/11/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-8514,8/05/2019 22:03,12/12/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-8486,8/05/2019 22:03,10/10/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-8477,8/05/2019 22:03,12/12/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-8476,8/05/2019 22:03,14/11/2018 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8423,8/05/2019 22:03,10/10/2018 13:29,9.3,20, Improper Input Validation,nan
CVE-2018-0878,8/05/2019 22:03,14/03/2018 17:29,2.6,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-0290,8/05/2019 22:03,9/05/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7295,8/05/2019 22:03,20/12/2016 6:59,2.1,200, Information Exposure,nan
CVE-2016-7292,8/05/2019 22:03,20/12/2016 6:59,7.2,19, Data Processing Errors,nan
CVE-2016-3232,8/05/2019 22:03,16/06/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-3228,8/05/2019 22:03,16/06/2016 1:59,9.0,20, Improper Input Validation,nan
CVE-2016-3226,8/05/2019 22:03,16/06/2016 1:59,4.0,284, Improper Access Control,nan
CVE-2016-0050,8/05/2019 22:03,10/02/2016 11:59,5.0,20, Improper Input Validation,nan
CVE-2016-0037,8/05/2019 22:03,10/02/2016 11:59,5.0,20, Improper Input Validation,nan
CVE-2015-2535,8/05/2019 22:03,9/09/2015 0:59,4.0,17, DEPRECATED: Code,nan
CVE-2015-2417,8/05/2019 22:03,14/07/2015 22:59,5.0,20, Improper Input Validation,nan
CVE-2015-2416,8/05/2019 22:03,14/07/2015 22:59,5.0,20, Improper Input Validation,nan
CVE-2015-2387,8/05/2019 22:03,14/07/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2382,8/05/2019 22:03,14/07/2015 22:59,2.1,200, Information Exposure,nan
CVE-2015-2381,8/05/2019 22:03,14/07/2015 22:59,2.1,200, Information Exposure,nan
CVE-2015-2374,8/05/2019 22:03,14/07/2015 21:59,3.3,200, Information Exposure,nan
CVE-2015-2371,8/05/2019 22:03,14/07/2015 22:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2370,8/05/2019 22:03,14/07/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2367,8/05/2019 22:03,14/07/2015 22:59,2.1,200, Information Exposure,nan
CVE-2015-2366,8/05/2019 22:03,14/07/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2365,8/05/2019 22:03,14/07/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2364,8/05/2019 22:03,14/07/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2362,8/05/2019 22:03,14/07/2015 21:59,7.2,254, 7PK – Security Features,nan
CVE-2015-2361,8/05/2019 22:03,14/07/2015 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1638,8/05/2019 22:03,14/04/2015 20:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-0005,8/05/2019 22:03,11/03/2015 10:59,4.3,254, 7PK – Security Features,nan
CVE-2014-0317,8/05/2019 22:03,12/03/2014 5:15,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-0255,8/05/2019 22:03,14/05/2014 11:13,5.0,20, Improper Input Validation,nan
CVE-2013-3903,8/05/2019 22:03,11/12/2013 0:55,4.7,20, Improper Input Validation,nan
CVE-2019-7387,8/05/2019 21:29,4/02/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7384,8/05/2019 21:29,21/03/2019 16:01,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19640,8/05/2019 21:29,5/03/2019 16:29,2.1,20, Improper Input Validation,nan
CVE-2018-19638,8/05/2019 21:29,5/03/2019 16:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-19637,8/05/2019 21:29,5/03/2019 16:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-19636,8/05/2019 21:29,5/03/2019 16:29,7.2,20, Improper Input Validation,nan
CVE-2019-7383,8/05/2019 20:29,21/03/2019 16:01,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-2052,8/05/2019 20:29,8/05/2019 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-19524,8/05/2019 20:29,21/03/2019 16:00,10.0,20, Improper Input Validation,nan
CVE-2019-2053,8/05/2019 20:18,8/05/2019 17:29,4.9,125, Out-of-bounds Read,nan
CVE-2019-11643,8/05/2019 20:15,8/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8349,8/05/2019 19:49,8/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8387,8/05/2019 19:25,8/05/2019 14:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-14485,8/05/2019 19:10,7/05/2019 18:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-16664,8/05/2019 18:57,21/11/2017 14:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-3157,8/05/2019 18:51,20/11/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-12608,8/05/2019 18:48,20/11/2017 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12607,8/05/2019 18:45,20/11/2017 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-15115,8/05/2019 18:28,15/11/2017 21:29,7.2,416, Use After Free,nan
CVE-2017-16872,8/05/2019 18:25,17/11/2017 9:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12910,8/05/2019 18:21,5/07/2018 18:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-11564,8/05/2019 18:20,8/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15102,8/05/2019 18:14,15/11/2017 21:29,6.9,476, NULL Pointer Dereference,nan
CVE-2019-7746,8/05/2019 18:05,7/05/2019 19:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11818,8/05/2019 18:02,8/05/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7745,8/05/2019 17:31,7/05/2019 19:29,5.0,255, Credentials Management,nan
CVE-2018-1999006,8/05/2019 17:16,23/07/2018 19:29,4.0,200, Information Exposure,nan
CVE-2018-4062,8/05/2019 17:03,6/05/2019 19:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2017-18279,8/05/2019 16:46,6/05/2019 23:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2019-7564,8/05/2019 16:35,7/05/2019 19:29,7.5,255, Credentials Management,nan
CVE-2019-6619,8/05/2019 16:29,3/05/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-6615,8/05/2019 16:29,3/05/2019 20:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-4258,8/05/2019 16:29,1/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20836,8/05/2019 16:29,7/05/2019 14:29,9.3,416, Use After Free,nan
CVE-2019-11808,8/05/2019 16:14,7/05/2019 7:29,4.3,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2019-10742,8/05/2019 16:04,7/05/2019 19:29,5.0,20, Improper Input Validation,nan
CVE-2019-7687,8/05/2019 15:52,7/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11814,8/05/2019 15:31,8/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1933,8/05/2019 15:29,1/05/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14498,8/05/2019 15:29,7/03/2019 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1152,8/05/2019 15:29,18/06/2018 14:29,4.3,369, Divide By Zero,nan
CVE-2017-3762,8/05/2019 15:29,26/01/2018 1:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2019-11813,8/05/2019 15:27,8/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11812,8/05/2019 15:04,8/05/2019 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11560,8/05/2019 14:46,7/05/2019 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18977,8/05/2019 14:25,6/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2018-5123,8/05/2019 14:18,29/04/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19456,8/05/2019 13:55,7/05/2019 19:29,5.0,200, Information Exposure,nan
CVE-2018-4071,8/05/2019 13:28,6/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2019-7426,8/05/2019 12:52,7/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7427,8/05/2019 12:31,7/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7541,8/05/2019 12:12,7/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20503,8/05/2019 12:01,7/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6613,8/05/2019 9:29,3/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2019-6611,8/05/2019 9:29,3/05/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2019-1714,8/05/2019 9:29,3/05/2019 17:29,5.0,255, Credentials Management,nan
CVE-2018-4069,7/05/2019 20:29,6/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-4067,7/05/2019 20:29,6/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2018-4066,7/05/2019 20:29,6/05/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-4065,7/05/2019 20:29,6/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4063,7/05/2019 20:29,6/05/2019 19:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-4061,7/05/2019 20:29,6/05/2019 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-1341,7/05/2019 20:29,22/04/2019 16:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-10879,7/05/2019 19:29,5/04/2019 5:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-10878,7/05/2019 19:29,5/04/2019 5:29,7.5,787, Out-of-bounds Write,nan
CVE-2019-10877,7/05/2019 19:29,5/04/2019 6:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-18274,7/05/2019 19:23,6/05/2019 23:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-14478,7/05/2019 19:16,7/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11629,7/05/2019 19:01,7/05/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11537,7/05/2019 18:57,25/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9546,7/05/2019 18:56,1/03/2019 22:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-9978,7/05/2019 18:43,24/03/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18131,7/05/2019 18:37,6/05/2019 23:29,7.2,665, Improper Initialization,nan
CVE-2019-2725,7/05/2019 18:29,26/04/2019 19:29,7.5,284, Improper Access Control,nan
CVE-2019-1697,7/05/2019 18:29,3/05/2019 16:29,7.8,20, Improper Input Validation,nan
CVE-2019-9708,7/05/2019 18:27,7/05/2019 17:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18278,7/05/2019 18:27,6/05/2019 23:29,7.2,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-16908,7/05/2019 18:17,20/11/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16907,7/05/2019 18:16,20/11/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4068,7/05/2019 18:08,6/05/2019 18:29,5.0,200, Information Exposure,nan
CVE-2017-18156,7/05/2019 17:57,6/05/2019 23:29,7.2,416, Use After Free,nan
CVE-2019-9709,7/05/2019 17:53,7/05/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18173,7/05/2019 17:44,6/05/2019 23:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2019-10999,7/05/2019 17:37,6/05/2019 20:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18975,7/05/2019 16:51,6/05/2019 20:29,5.0,200, Information Exposure,nan
CVE-2018-17201,7/05/2019 16:26,6/05/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2017-18157,7/05/2019 15:58,6/05/2019 23:29,7.2,416, Use After Free,nan
CVE-2018-4070,7/05/2019 15:49,6/05/2019 19:29,4.0,200, Information Exposure,nan
CVE-2017-14972,7/05/2019 15:39,9/10/2017 5:29,5.0,287, Improper Authentication,nan
CVE-2019-1695,7/05/2019 15:29,3/05/2019 15:29,6.1,284, Improper Access Control,nan
CVE-2019-1687,7/05/2019 15:29,3/05/2019 15:29,7.8,20, Improper Input Validation,nan
CVE-2019-1838,7/05/2019 14:29,3/05/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1696,7/05/2019 14:29,3/05/2019 15:29,3.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-11766,7/05/2019 14:29,5/05/2019 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2015-7669,7/05/2019 14:10,27/12/2017 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1703,7/05/2019 12:29,3/05/2019 16:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-13983,7/05/2019 12:24,6/05/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11569,7/05/2019 12:02,6/05/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3400,7/05/2019 10:29,3/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3878,7/05/2019 9:29,26/03/2019 18:29,6.8,287, Improper Authentication,nan
CVE-2019-0162,7/05/2019 8:29,17/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2019-9903,7/05/2019 7:29,21/03/2019 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-7548,7/05/2019 7:29,6/02/2019 21:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7164,7/05/2019 7:29,20/02/2019 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-3838,7/05/2019 7:29,25/03/2019 19:29,4.3,284, Improper Access Control,nan
CVE-2019-3835,7/05/2019 7:29,25/03/2019 19:29,4.3,284, Improper Access Control,nan
CVE-2019-3816,7/05/2019 7:29,14/03/2019 22:29,5.0,200, Information Exposure,nan
CVE-2019-11026,7/05/2019 7:29,8/04/2019 23:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-3883,6/05/2019 23:29,17/04/2019 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9721,6/05/2019 21:29,12/03/2019 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-11339,6/05/2019 21:29,19/04/2019 0:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-17173,6/05/2019 21:29,21/09/2018 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7076,6/05/2019 21:29,29/05/2018 13:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-0030,6/05/2019 20:38,10/10/2017 1:30,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-6609,6/05/2019 20:29,15/04/2019 15:29,5.0,255, Credentials Management,nan
CVE-2019-0213,6/05/2019 20:29,30/04/2019 22:29,5.5,20, Improper Input Validation,nan
CVE-2017-12965,6/05/2019 19:33,23/08/2017 16:29,7.5,384, Session Fixation,nan
CVE-2017-11811,6/05/2019 19:31,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000229,6/05/2019 19:29,17/11/2017 5:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-8980,6/05/2019 19:24,21/02/2019 5:29,7.8,399, Resource Management Errors,nan
CVE-2016-6793,6/05/2019 19:15,17/07/2017 13:18,6.4,502, Deserialization of Untrusted Data,nan
CVE-2017-15672,6/05/2019 19:13,6/11/2017 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-3500,6/05/2019 18:29,2/01/2019 7:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-4996,6/05/2019 18:06,17/07/2017 13:18,1.9,255, Credentials Management,nan
CVE-2019-11448,6/05/2019 17:44,22/04/2019 11:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1457,6/05/2019 17:30,5/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1458,6/05/2019 17:28,5/09/2017 21:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10261,6/05/2019 17:03,3/04/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11504,6/05/2019 17:02,24/04/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10242,6/05/2019 17:00,4/04/2019 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-3941,6/05/2019 16:34,9/04/2019 16:29,6.4,284, Improper Access Control,nan
CVE-2019-10310,6/05/2019 16:29,30/04/2019 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10309,6/05/2019 16:29,30/04/2019 13:29,4.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10300,6/05/2019 16:29,18/04/2019 17:29,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10273,6/05/2019 15:58,4/04/2019 16:29,4.0,200, Information Exposure,nan
CVE-2019-11767,6/05/2019 15:57,5/05/2019 6:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-14938,6/05/2019 15:28,5/08/2018 3:29,6.4,190, Integer Overflow or Wraparound,nan
CVE-2017-11113,6/05/2019 15:00,8/07/2017 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-14137,6/05/2019 14:54,4/09/2017 23:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-12874,6/05/2019 14:46,1/09/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-6618,6/05/2019 14:41,3/05/2019 20:29,4.0,284, Improper Access Control,nan
CVE-2014-5002,6/05/2019 14:24,10/01/2018 18:29,2.1,255, Credentials Management,nan
CVE-2019-11690,6/05/2019 14:06,3/05/2019 13:29,4.3,330, Use of Insufficiently Random Values,nan
CVE-2017-13194,6/05/2019 13:49,12/01/2018 23:29,7.8,20, Improper Input Validation,nan
CVE-2019-1857,6/05/2019 13:29,3/05/2019 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-3490,6/05/2019 13:20,2/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10864,6/05/2019 13:14,23/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12136,6/05/2019 12:46,24/08/2017 14:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-8964,6/05/2019 12:38,13/07/2017 15:29,5.0,254, 7PK – Security Features,nan
CVE-2019-10318,6/05/2019 12:29,30/04/2019 13:29,4.0,255, Credentials Management,nan
CVE-2019-10317,6/05/2019 12:29,30/04/2019 13:29,4.3,295, Improper Certificate Validation,nan
CVE-2019-10316,6/05/2019 12:29,30/04/2019 13:29,4.0,255, Credentials Management,nan
CVE-2019-10315,6/05/2019 12:29,30/04/2019 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10314,6/05/2019 12:29,30/04/2019 13:29,4.3,295, Improper Certificate Validation,nan
CVE-2019-10313,6/05/2019 12:29,30/04/2019 13:29,4.0,255, Credentials Management,nan
CVE-2019-10311,6/05/2019 12:29,30/04/2019 13:29,4.0,255, Credentials Management,nan
CVE-2019-10308,6/05/2019 12:29,30/04/2019 13:29,4.0,275, Permission Issues,nan
CVE-2019-10307,6/05/2019 12:29,30/04/2019 13:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0191,6/05/2019 9:29,21/03/2019 16:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1856,6/05/2019 8:29,3/05/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2015,6/05/2019 8:29,2/05/2019 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-1099,6/05/2019 6:29,3/04/2018 16:29,2.1,20, Improper Input Validation,nan
CVE-2018-1098,6/05/2019 6:29,3/04/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11416,6/05/2019 2:20,22/04/2019 11:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7043,6/05/2019 1:39,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7040,6/05/2019 1:39,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7012,6/05/2019 1:39,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7051,6/05/2019 1:37,20/07/2017 16:29,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7050,6/05/2019 1:37,20/07/2017 16:29,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7054,6/05/2019 1:36,20/07/2017 16:29,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20824,6/05/2019 0:32,3/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19105,6/05/2019 0:29,8/11/2018 8:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-3840,5/05/2019 5:29,27/03/2019 13:29,3.5,476, NULL Pointer Dereference,nan
CVE-2019-11007,4/05/2019 15:29,8/04/2019 19:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9826,4/05/2019 14:29,2/05/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-6111,4/05/2019 2:29,31/01/2019 18:29,5.8,20, Improper Input Validation,nan
CVE-2019-6109,4/05/2019 2:29,31/01/2019 18:29,4.0,284, Improper Access Control,nan
CVE-2019-9017,4/05/2019 1:29,2/05/2019 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3929,4/05/2019 1:29,30/04/2019 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7398,3/05/2019 21:29,5/02/2019 0:29,5.0,399, Resource Management Errors,nan
CVE-2019-7397,3/05/2019 21:29,5/02/2019 0:29,5.0,399, Resource Management Errors,nan
CVE-2019-7395,3/05/2019 21:29,5/02/2019 0:29,5.0,399, Resource Management Errors,nan
CVE-2019-7175,3/05/2019 21:29,7/03/2019 23:29,5.0,399, Resource Management Errors,nan
CVE-2018-16644,3/05/2019 21:29,6/09/2018 22:29,4.3,20, Improper Input Validation,nan
CVE-2019-2638,3/05/2019 20:29,23/04/2019 19:32,6.5,284, Improper Access Control,nan
CVE-2019-2633,3/05/2019 20:29,23/04/2019 19:32,6.5,284, Improper Access Control,nan
CVE-2019-2546,3/05/2019 20:29,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2017-1000501,3/05/2019 20:27,3/01/2018 15:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14975,3/05/2019 20:15,2/10/2017 1:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-14976,3/05/2019 20:14,2/10/2017 1:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14977,3/05/2019 20:05,2/10/2017 1:29,5.0,476, NULL Pointer Dereference,nan
CVE-2015-8352,3/05/2019 19:47,24/08/2017 21:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11163,3/05/2019 19:46,10/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0214,3/05/2019 19:44,30/04/2019 22:29,5.5,20, Improper Input Validation,nan
CVE-2017-11139,3/05/2019 19:36,10/07/2017 3:29,7.5,415, Double Free,nan
CVE-2018-16988,3/05/2019 19:33,2/05/2019 20:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-18374,3/05/2019 19:29,2/05/2019 17:29,9.0,798, Use of Hard-coded Credentials,nan
CVE-2018-16960,3/05/2019 19:21,2/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18371,3/05/2019 19:20,2/05/2019 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-16716,3/05/2019 19:07,2/05/2019 20:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18373,3/05/2019 18:53,2/05/2019 17:29,9.0,798, Use of Hard-coded Credentials,nan
CVE-2019-11028,3/05/2019 18:52,9/04/2019 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16717,3/05/2019 18:48,2/05/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10867,3/05/2019 18:40,4/04/2019 18:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2017-1380,3/05/2019 18:36,24/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1381,3/05/2019 18:31,21/07/2017 20:29,2.1,200, Information Exposure,nan
CVE-2018-16718,3/05/2019 18:29,2/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6024,3/05/2019 18:29,10/02/2014 18:15,4.4,200, Information Exposure,nan
CVE-2017-1000028,3/05/2019 18:27,17/07/2017 13:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19442,3/05/2019 18:23,25/04/2019 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11675,3/05/2019 18:22,2/05/2019 6:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1267,3/05/2019 18:21,21/07/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-12971,3/05/2019 18:02,23/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6576,3/05/2019 17:33,3/10/2017 1:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11677,3/05/2019 17:31,2/05/2019 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11682,3/05/2019 17:26,2/05/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12970,3/05/2019 17:22,23/08/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11503,3/05/2019 17:14,20/07/2017 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14848,3/05/2019 17:03,3/10/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11678,3/05/2019 16:44,2/05/2019 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11676,3/05/2019 16:34,2/05/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10383,3/05/2019 16:27,2/05/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11633,3/05/2019 15:52,1/05/2019 14:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-11632,3/05/2019 15:46,1/05/2019 14:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-14930,3/05/2019 15:22,30/04/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14875,3/05/2019 15:19,30/04/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9486,3/05/2019 15:15,30/04/2019 19:29,9.0,284, Improper Access Control,nan
CVE-2019-11641,3/05/2019 15:14,1/05/2019 18:29,5.0,254, 7PK – Security Features,nan
CVE-2018-14931,3/05/2019 15:03,30/04/2019 19:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-11193,3/05/2019 14:57,30/04/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6494,3/05/2019 14:52,30/04/2019 15:29,5.5,284, Improper Access Control,nan
CVE-2018-20835,3/05/2019 14:49,30/04/2019 19:29,6.4,20, Improper Input Validation,nan
CVE-2018-14874,3/05/2019 14:19,30/04/2019 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10678,3/05/2019 13:59,31/03/2019 21:29,5.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-10272,3/05/2019 13:56,30/04/2019 18:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2019-11590,3/05/2019 13:50,29/04/2019 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16961,3/05/2019 13:50,2/05/2019 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20510,3/05/2019 13:49,30/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2019-11488,3/05/2019 13:29,25/04/2019 21:29,6.8,284, Improper Access Control,nan
CVE-2019-11489,3/05/2019 13:24,25/04/2019 21:29,9.0,284, Improper Access Control,nan
CVE-2018-18367,3/05/2019 13:18,25/04/2019 20:29,6.8,426, Untrusted Search Path,nan
CVE-2017-16906,3/05/2019 13:10,20/11/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18366,3/05/2019 13:08,25/04/2019 20:29,2.1,200, Information Exposure,nan
CVE-2018-19542,3/05/2019 12:54,26/11/2018 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-8684,3/05/2019 12:51,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-8683,3/05/2019 12:44,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-8729,3/05/2019 12:29,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8740,3/05/2019 12:27,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8731,3/05/2019 12:24,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8734,3/05/2019 12:22,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8755,3/05/2019 12:11,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0728,3/05/2019 12:06,5/03/2019 23:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10664,3/05/2019 11:51,31/03/2019 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11071,2/05/2019 20:24,10/04/2019 21:29,6.5,20, Improper Input Validation,nan
CVE-2018-1356,2/05/2019 20:17,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11220,2/05/2019 20:05,26/04/2019 19:29,4.3,287, Improper Authentication,nan
CVE-2019-11219,2/05/2019 20:00,26/04/2019 19:29,6.4,310, Cryptographic Issues,nan
CVE-2018-12493,2/05/2019 19:47,15/06/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19039,2/05/2019 19:43,13/12/2018 19:29,4.0,200, Information Exposure,nan
CVE-2017-14042,2/05/2019 19:29,30/08/2017 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12495,2/05/2019 19:25,15/06/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20449,2/05/2019 18:53,4/04/2019 16:29,2.1,200, Information Exposure,nan
CVE-2018-15003,2/05/2019 18:52,25/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-11882,2/05/2019 18:32,15/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10510,2/05/2019 18:30,31/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7711,2/05/2019 18:22,31/08/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14999,2/05/2019 18:16,25/04/2019 20:29,9.4,275, Permission Issues,nan
CVE-2018-14994,2/05/2019 17:50,25/04/2019 20:29,9.4,20, Improper Input Validation,nan
CVE-2018-14991,2/05/2019 17:28,25/04/2019 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-14990,2/05/2019 16:39,25/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-1000422,2/05/2019 16:35,2/01/2018 20:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-14989,2/05/2019 16:29,25/04/2019 20:29,9.4,20, Improper Input Validation,nan
CVE-2018-14983,2/05/2019 16:26,25/04/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-5848,2/05/2019 15:54,12/06/2018 20:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-6064,2/05/2019 15:50,14/11/2018 15:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-6689,2/05/2019 15:43,26/04/2019 19:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-18251,2/05/2019 15:03,24/04/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11228,2/05/2019 14:48,8/06/2018 1:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10893,2/05/2019 14:42,18/04/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10360,2/05/2019 14:40,11/06/2018 10:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18367,2/05/2019 14:38,24/04/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-11514,2/05/2019 14:25,25/04/2019 3:29,5.0,20, Improper Input Validation,nan
CVE-2018-14559,2/05/2019 14:23,25/04/2019 20:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14557,2/05/2019 14:17,25/04/2019 20:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12244,2/05/2019 14:10,25/04/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-18369,2/05/2019 13:59,25/04/2019 17:29,6.8,426, Untrusted Search Path,nan
CVE-2019-11502,2/05/2019 13:35,24/04/2019 21:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-10710,2/05/2019 13:29,23/04/2019 20:32,4.0,275, Permission Issues,nan
CVE-2019-11640,2/05/2019 13:07,1/05/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7668,2/05/2019 12:13,27/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11639,1/05/2019 21:00,1/05/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11608,1/05/2019 20:45,30/04/2019 20:29,6.4,200, Information Exposure,nan
CVE-2018-12190,1/05/2019 20:23,14/03/2019 20:29,4.6,20, Improper Input Validation,nan
CVE-2016-8748,1/05/2019 20:20,19/10/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4461,1/05/2019 20:17,16/10/2017 16:29,9.0,20, Improper Input Validation,nan
CVE-2017-13283,1/05/2019 20:14,4/04/2018 16:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-11611,1/05/2019 20:09,30/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2017-1000493,1/05/2019 20:06,3/01/2018 1:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11614,1/05/2019 20:04,30/04/2019 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11005,1/05/2019 19:54,8/04/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11006,1/05/2019 19:50,8/04/2019 19:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11615,1/05/2019 19:48,30/04/2019 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-10746,1/05/2019 19:47,18/04/2019 16:29,5.0,254, 7PK – Security Features,nan
CVE-2019-11616,1/05/2019 19:41,30/04/2019 20:29,5.0,255, Credentials Management,nan
CVE-2019-11617,1/05/2019 19:38,30/04/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-11010,1/05/2019 19:35,8/04/2019 19:29,4.3,399, Resource Management Errors,nan
CVE-2019-11637,1/05/2019 19:32,1/05/2019 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-11638,1/05/2019 19:29,1/05/2019 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-11618,1/05/2019 19:29,30/04/2019 20:29,7.5,255, Credentials Management,nan
CVE-2019-11620,1/05/2019 19:25,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11621,1/05/2019 19:20,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11622,1/05/2019 19:14,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20823,1/05/2019 19:12,25/04/2019 14:29,5.0,20, Improper Input Validation,nan
CVE-2019-11623,1/05/2019 19:10,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11519,1/05/2019 19:03,25/04/2019 13:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11218,1/05/2019 18:59,24/04/2019 20:29,6.5,19, Data Processing Errors,nan
CVE-2019-11624,1/05/2019 18:51,30/04/2019 20:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-11625,1/05/2019 18:46,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11626,1/05/2019 18:41,30/04/2019 20:29,5.0,21, Pathname Traversal and Equivalence Errors,nan
CVE-2016-0611,1/05/2019 18:11,21/01/2016 3:02,4.0,284, Improper Access Control,nan
CVE-2019-11411,1/05/2019 17:14,22/04/2019 11:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11606,1/05/2019 16:21,30/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-11612,1/05/2019 16:20,30/04/2019 20:29,6.4,284, Improper Access Control,nan
CVE-2019-11610,1/05/2019 16:20,30/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-11609,1/05/2019 16:20,30/04/2019 20:29,6.4,200, Information Exposure,nan
CVE-2019-11607,1/05/2019 16:20,30/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2019-11619,1/05/2019 16:19,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11613,1/05/2019 16:19,30/04/2019 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11565,1/05/2019 15:47,27/04/2019 14:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-3493,1/05/2019 15:28,29/04/2019 16:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11309,1/05/2019 15:15,10/11/2017 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000140,1/05/2019 14:23,23/03/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9286,1/05/2019 14:22,30/04/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15206,1/05/2019 14:11,30/04/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15208,1/05/2019 13:52,30/04/2019 19:29,5.1,384, Session Fixation,nan
CVE-2019-11533,1/05/2019 12:58,26/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9802,1/05/2019 0:01,26/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-9804,30/04/2019 23:51,26/04/2019 17:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9803,30/04/2019 23:51,26/04/2019 17:29,5.8,346, Origin Validation Error,nan
CVE-2019-11576,30/04/2019 23:30,28/04/2019 2:29,7.5,255, Credentials Management,nan
CVE-2016-10749,30/04/2019 23:29,29/04/2019 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-5492,30/04/2019 23:22,29/04/2019 14:29,5.0,200, Information Exposure,nan
CVE-2019-11492,30/04/2019 20:06,26/04/2019 21:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1000421,30/04/2019 19:22,2/01/2018 19:29,7.5,416, Use After Free,nan
CVE-2015-9285,30/04/2019 18:54,29/04/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9794,30/04/2019 18:42,26/04/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2017-1000499,30/04/2019 18:36,3/01/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10055,30/04/2019 18:34,24/04/2019 17:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2566,30/04/2019 18:28,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2018-7577,30/04/2019 18:26,24/04/2019 17:29,5.8,20, Improper Input Validation,nan
CVE-2017-1000456,30/04/2019 17:54,2/01/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11595,30/04/2019 17:30,29/04/2019 15:29,6.8,20, Improper Input Validation,nan
CVE-2019-11594,30/04/2019 17:29,29/04/2019 15:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11593,30/04/2019 17:27,29/04/2019 15:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-11412,30/04/2019 17:21,22/04/2019 11:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11413,30/04/2019 17:12,22/04/2019 11:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-11081,30/04/2019 17:07,24/04/2019 15:29,10.0,255, Credentials Management,nan
CVE-2019-10711,30/04/2019 17:04,23/04/2019 20:32,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-7213,30/04/2019 16:52,24/04/2019 15:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7214,30/04/2019 16:46,24/04/2019 15:29,10.0,824, Access of Uninitialized Pointer,nan
CVE-2019-11463,30/04/2019 16:29,23/04/2019 3:29,4.3,399, Resource Management Errors,nan
CVE-2017-16667,30/04/2019 16:07,8/11/2017 18:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16804,30/04/2019 15:56,13/11/2017 20:29,4.0,200, Information Exposure,nan
CVE-2010-1735,30/04/2019 15:00,6/05/2010 12:47,4.9,20, Improper Input Validation,nan
CVE-2010-1734,30/04/2019 15:00,6/05/2010 12:47,4.9,20, Improper Input Validation,nan
CVE-2018-0490,30/04/2019 14:58,5/03/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-12619,30/04/2019 14:54,23/04/2019 15:29,5.8,384, Session Fixation,nan
CVE-2018-1317,30/04/2019 14:48,23/04/2019 15:29,6.5,287, Improper Authentication,nan
CVE-2017-9096,30/04/2019 14:39,8/11/2017 16:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9955,30/04/2019 14:34,22/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11393,30/04/2019 14:29,22/04/2019 11:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2010-0478,30/04/2019 14:27,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2717,30/04/2019 14:27,10/08/2009 20:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-2523,30/04/2019 14:27,11/11/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1928,30/04/2019 14:27,11/11/2009 19:30,7.8,399, Resource Management Errors,nan
CVE-2009-1924,30/04/2019 14:27,12/08/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-1923,30/04/2019 14:27,12/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1139,30/04/2019 14:27,10/06/2009 18:00,7.8,399, Resource Management Errors,nan
CVE-2009-1138,30/04/2019 14:27,10/06/2009 18:00,10.0,399, Resource Management Errors,nan
CVE-2008-0088,30/04/2019 14:27,12/02/2008 21:00,6.8,20, Improper Input Validation,nan
CVE-2007-3901,30/04/2019 14:27,12/12/2007 0:46,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1748,30/04/2019 14:27,13/04/2007 18:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6696,30/04/2019 14:27,22/12/2006 2:28,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6296,30/04/2019 14:27,5/12/2006 11:28,6.1,399, Resource Management Errors,nan
CVE-2006-4868,30/04/2019 14:27,19/09/2006 19:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3443,30/04/2019 14:27,9/08/2006 1:04,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-2380,30/04/2019 14:27,13/06/2006 19:06,4.3,287, Improper Authentication,nan
CVE-2006-2379,30/04/2019 14:27,13/06/2006 19:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0143,30/04/2019 14:27,9/01/2006 20:03,7.5,399, Resource Management Errors,nan
CVE-2006-0034,30/04/2019 14:27,10/05/2006 2:14,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0032,30/04/2019 14:27,12/09/2006 23:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0010,30/04/2019 14:27,10/01/2006 22:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0005,30/04/2019 14:27,14/02/2006 19:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3644,30/04/2019 14:27,17/11/2005 11:02,7.8,399, Resource Management Errors,nan
CVE-2005-0803,30/04/2019 14:27,2/05/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2005-0050,30/04/2019 14:27,2/05/2005 4:00,10.0,20, Improper Input Validation,nan
CVE-2003-1448,30/04/2019 14:27,31/12/2003 5:00,7.8,399, Resource Management Errors,nan
CVE-2003-0825,30/04/2019 14:27,3/03/2004 5:00,9.3,20, Improper Input Validation,nan
CVE-2003-0662,30/04/2019 14:27,17/11/2003 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0001,30/04/2019 14:27,17/01/2003 5:00,5.0,200, Information Exposure,nan
CVE-2002-2401,30/04/2019 14:27,31/12/2002 5:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2002-2328,30/04/2019 14:27,31/12/2002 5:00,7.1,20, Improper Input Validation,nan
CVE-2019-10239,30/04/2019 14:19,24/04/2019 15:29,2.1,255, Credentials Management,nan
CVE-2018-7574,30/04/2019 14:12,24/04/2019 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-18041,30/04/2019 14:07,2/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7575,30/04/2019 14:01,24/04/2019 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-20819,30/04/2019 13:52,23/04/2019 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17169,30/04/2019 13:48,23/04/2019 14:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-3898,30/04/2019 12:48,28/02/2018 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2007-5133,30/04/2019 12:34,27/09/2007 19:17,7.1,399, Resource Management Errors,nan
CVE-2017-14523,30/04/2019 12:05,26/01/2018 20:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7447,30/04/2019 12:04,24/02/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5079,29/04/2019 21:19,28/02/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-2628,29/04/2019 21:01,19/04/2018 2:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-9801,29/04/2019 20:19,26/04/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-9798,29/04/2019 20:05,26/04/2019 17:29,5.8,254, 7PK – Security Features,nan
CVE-2017-18039,29/04/2019 20:00,2/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18042,29/04/2019 19:53,2/02/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5280,29/04/2019 19:52,6/02/2018 16:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9805,29/04/2019 19:29,26/04/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9807,29/04/2019 19:17,26/04/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-9808,29/04/2019 19:13,26/04/2019 17:29,5.0,346, Origin Validation Error,nan
CVE-2019-9809,29/04/2019 19:04,26/04/2019 17:29,5.0,399, Resource Management Errors,nan
CVE-2019-9806,29/04/2019 18:46,26/04/2019 17:29,5.0,399, Resource Management Errors,nan
CVE-2019-11076,29/04/2019 18:43,23/04/2019 18:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11568,29/04/2019 18:35,27/04/2019 14:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11567,29/04/2019 18:35,27/04/2019 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11855,29/04/2019 18:34,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7211,29/04/2019 18:04,24/04/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9724,29/04/2019 17:29,24/04/2019 14:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1665,29/04/2019 17:15,4/01/2018 17:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2014-5279,29/04/2019 17:14,6/02/2018 16:29,9.0,284, Improper Access Control,nan
CVE-2014-5282,29/04/2019 17:11,6/02/2018 16:29,5.5,20, Improper Input Validation,nan
CVE-2017-15869,29/04/2019 17:07,18/01/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11577,29/04/2019 16:59,28/04/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11578,29/04/2019 16:58,28/04/2019 16:29,4.3,310, Cryptographic Issues,nan
CVE-2019-11592,29/04/2019 16:48,29/04/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2845,29/04/2019 16:32,15/11/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-13833,29/04/2019 16:31,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13844,29/04/2019 16:30,13/11/2017 3:29,2.1,200, Information Exposure,nan
CVE-2019-11490,29/04/2019 16:28,24/04/2019 3:29,7.2,415, Double Free,nan
CVE-2017-11043,29/04/2019 16:25,5/12/2017 19:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-1000217,29/04/2019 16:16,17/11/2017 22:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16854,29/04/2019 16:09,8/12/2017 17:29,4.0,200, Information Exposure,nan
CVE-2019-9799,29/04/2019 16:04,26/04/2019 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16669,29/04/2019 14:29,9/11/2017 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11689,29/04/2019 13:56,14/06/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12099,29/04/2019 13:31,11/06/2018 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16660,29/04/2019 13:22,25/04/2019 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0186,29/04/2019 13:12,26/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18513,29/04/2019 13:08,26/04/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-5124,29/04/2019 13:07,26/04/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2629,27/04/2019 21:32,23/04/2019 19:32,5.5,284, Improper Access Control,nan
CVE-2018-18276,27/04/2019 20:55,26/04/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15584,27/04/2019 20:19,26/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15582,27/04/2019 20:18,26/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15581,27/04/2019 20:11,26/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15580,27/04/2019 20:09,26/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1413,27/04/2019 18:52,7/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11518,27/04/2019 1:15,25/04/2019 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11515,27/04/2019 1:09,25/04/2019 4:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11513,27/04/2019 0:49,25/04/2019 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18510,26/04/2019 20:33,26/04/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-18512,26/04/2019 20:23,26/04/2019 17:29,7.5,416, Use After Free,nan
CVE-2017-18187,26/04/2019 20:20,14/02/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-14521,26/04/2019 19:58,26/01/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16219,26/04/2019 19:56,25/04/2019 20:29,3.3,287, Improper Authentication,nan
CVE-2019-9789,26/04/2019 19:51,26/04/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18286,26/04/2019 18:41,25/04/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16220,26/04/2019 18:34,25/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18285,26/04/2019 18:28,25/04/2019 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11456,26/04/2019 18:16,22/04/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18643,26/04/2019 18:15,25/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18086,26/04/2019 18:06,2/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18085,26/04/2019 18:05,2/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18084,26/04/2019 18:05,2/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18081,26/04/2019 18:05,2/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1567,26/04/2019 17:58,26/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11493,26/04/2019 17:54,26/04/2019 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9669,26/04/2019 17:39,25/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0218,26/04/2019 17:07,22/04/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11383,26/04/2019 16:58,22/04/2019 22:29,5.0,255, Credentials Management,nan
CVE-2019-11469,26/04/2019 16:45,23/04/2019 4:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0361,26/04/2019 16:41,16/07/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-0360,26/04/2019 16:41,16/07/2018 17:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-12613,26/04/2019 16:40,21/06/2018 20:29,6.5,287, Improper Authentication,nan
CVE-2018-17057,26/04/2019 16:38,14/09/2018 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-11761,26/04/2019 16:38,19/09/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11447,26/04/2019 16:29,22/04/2019 11:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-13443,26/04/2019 16:23,24/04/2019 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6260,26/04/2019 16:19,22/01/2019 20:29,7.5,284, Improper Access Control,nan
CVE-2019-6976,26/04/2019 16:16,26/01/2019 23:29,5.0,200, Information Exposure,nan
CVE-2017-16558,26/04/2019 16:01,25/04/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9635,26/04/2019 15:51,24/04/2019 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-9894,26/04/2019 15:43,21/03/2019 16:01,6.4,320, Key Management Errors,nan
CVE-2019-9897,26/04/2019 15:42,21/03/2019 16:01,5.0,20, Improper Input Validation,nan
CVE-2019-11395,26/04/2019 15:42,22/04/2019 11:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11446,26/04/2019 15:41,22/04/2019 11:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7219,26/04/2019 15:29,11/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17092,26/04/2019 15:19,2/12/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15707,26/04/2019 15:19,1/12/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-15357,26/04/2019 15:19,1/12/2017 17:29,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-17094,26/04/2019 15:18,2/12/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17093,26/04/2019 15:18,2/12/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11885,26/04/2019 15:18,12/12/2017 21:29,8.5,20, Improper Input Validation,nan
CVE-2017-17612,26/04/2019 15:15,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17511,26/04/2019 15:15,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17670,26/04/2019 15:11,15/12/2017 9:29,6.8,416, Use After Free,nan
CVE-2017-1494,26/04/2019 15:10,20/12/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9722,26/04/2019 15:09,10/01/2018 17:29,4.9,284, Improper Access Control,nan
CVE-2016-6810,26/04/2019 15:09,10/01/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10862,26/04/2019 15:08,27/07/2018 14:29,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1632,26/04/2019 15:06,31/01/2018 18:29,9.3,275, Permission Issues,nan
CVE-2014-1631,26/04/2019 15:06,31/01/2018 18:29,5.0,275, Permission Issues,nan
CVE-2018-5782,26/04/2019 15:05,14/03/2018 16:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11509,26/04/2019 15:04,28/03/2018 17:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11375,26/04/2019 14:53,20/04/2019 15:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1889,26/04/2019 14:53,10/04/2018 15:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-11374,26/04/2019 14:50,20/04/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1946,26/04/2019 14:40,10/04/2018 15:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2078,26/04/2019 14:38,10/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2019-6438,26/04/2019 14:37,31/01/2019 9:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-7439,26/04/2019 14:25,21/03/2019 16:01,6.1,400, Uncontrolled Resource Consumption,nan
CVE-2019-7438,26/04/2019 14:24,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17567,26/04/2019 14:21,28/09/2018 0:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-11351,26/04/2019 14:18,19/04/2019 21:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-9898,26/04/2019 14:11,21/03/2019 16:01,7.5,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2019-1003010,26/04/2019 14:01,6/02/2019 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18823,26/04/2019 14:01,25/04/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18824,26/04/2019 14:00,25/04/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5730,26/04/2019 13:23,6/03/2018 20:29,5.5,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2018-5729,26/04/2019 13:23,6/03/2018 20:29,6.5,476, NULL Pointer Dereference,nan
CVE-2017-18217,26/04/2019 13:23,5/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9253,26/04/2019 13:22,19/02/2018 19:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-2572,26/04/2019 13:17,23/04/2019 19:32,5.0,284, Improper Access Control,nan
CVE-2016-8750,26/04/2019 13:16,19/02/2018 15:29,4.0,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2019-2577,26/04/2019 13:13,23/04/2019 19:32,2.1,284, Improper Access Control,nan
CVE-2019-2578,26/04/2019 13:04,23/04/2019 19:32,5.0,284, Improper Access Control,nan
CVE-2019-2579,26/04/2019 12:55,23/04/2019 19:32,4.0,200, Information Exposure,nan
CVE-2018-6485,26/04/2019 12:42,1/02/2018 14:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-6359,26/04/2019 12:42,27/01/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-6358,26/04/2019 12:42,27/01/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6315,26/04/2019 12:41,25/01/2018 22:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-5294,26/04/2019 12:41,8/01/2018 7:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-16997,26/04/2019 12:41,18/12/2017 1:29,9.3,426, Untrusted Search Path,nan
CVE-2017-11733,26/04/2019 12:38,29/07/2017 5:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11732,26/04/2019 12:38,29/07/2017 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11731,26/04/2019 12:38,29/07/2017 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9989,26/04/2019 12:30,28/06/2017 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9988,26/04/2019 12:30,28/06/2017 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-1000376,26/04/2019 12:29,19/06/2017 16:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2637,25/04/2019 20:13,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2595,25/04/2019 20:13,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2645,25/04/2019 20:11,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2019-2573,25/04/2019 20:09,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2646,25/04/2019 20:01,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2019-2659,25/04/2019 19:39,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2661,25/04/2019 19:38,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2017-11907,25/04/2019 19:13,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11903,25/04/2019 19:09,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11909,25/04/2019 19:06,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11911,25/04/2019 19:05,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11918,25/04/2019 19:01,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2582,25/04/2019 19:00,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2017-11914,25/04/2019 19:00,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11893,25/04/2019 18:55,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2702,25/04/2019 18:52,23/04/2019 19:32,6.4,20, Improper Input Validation,nan
CVE-2019-2700,25/04/2019 18:52,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2665,25/04/2019 18:49,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2018-11237,25/04/2019 18:44,18/05/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11236,25/04/2019 18:43,18/05/2018 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-2658,25/04/2019 18:39,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2018-10768,25/04/2019 18:38,6/05/2018 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2014-3990,25/04/2019 18:37,20/03/2018 21:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-2651,25/04/2019 18:25,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2622,25/04/2019 18:12,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2621,25/04/2019 18:07,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2018-1321,25/04/2019 18:07,20/03/2018 17:29,6.5,20, Improper Input Validation,nan
CVE-2019-2616,25/04/2019 18:03,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-2601,25/04/2019 18:02,23/04/2019 19:32,4.9,284, Improper Access Control,nan
CVE-2019-2649,25/04/2019 17:57,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2019-2650,25/04/2019 17:56,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2019-2648,25/04/2019 17:44,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2019-2705,25/04/2019 17:42,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-2704,25/04/2019 17:42,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2019-2701,25/04/2019 17:42,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2647,25/04/2019 17:36,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2019-2588,25/04/2019 17:34,23/04/2019 19:32,4.0,200, Information Exposure,nan
CVE-2019-2707,25/04/2019 17:30,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-8277,25/04/2019 17:29,8/03/2019 23:29,5.0,399, Resource Management Errors,nan
CVE-2019-2712,25/04/2019 17:14,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2709,25/04/2019 17:14,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2619,25/04/2019 17:08,23/04/2019 19:32,4.6,284, Improper Access Control,nan
CVE-2019-2713,25/04/2019 17:00,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-2706,25/04/2019 16:50,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2618,25/04/2019 16:46,23/04/2019 19:32,5.5,284, Improper Access Control,nan
CVE-2019-2615,25/04/2019 16:43,23/04/2019 19:32,4.0,200, Information Exposure,nan
CVE-2019-10008,25/04/2019 16:33,24/04/2019 19:29,6.5,384, Session Fixation,nan
CVE-2019-11217,25/04/2019 16:26,24/04/2019 20:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-2613,25/04/2019 16:15,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-2612,25/04/2019 16:14,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-2611,25/04/2019 16:10,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-7727,25/04/2019 15:49,23/04/2019 20:32,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-2610,25/04/2019 15:36,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2019-2720,25/04/2019 15:25,23/04/2019 19:32,3.5,200, Information Exposure,nan
CVE-2019-2605,25/04/2019 15:23,23/04/2019 19:32,2.6,200, Information Exposure,nan
CVE-2019-2719,25/04/2019 15:21,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2609,25/04/2019 15:21,23/04/2019 19:32,6.4,284, Improper Access Control,nan
CVE-2018-8825,25/04/2019 15:05,23/04/2019 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2608,25/04/2019 14:57,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2018-7576,25/04/2019 14:56,23/04/2019 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-16540,25/04/2019 14:28,5/09/2018 18:29,6.8,416, Use After Free,nan
CVE-2019-2598,25/04/2019 14:21,23/04/2019 19:32,5.5,284, Improper Access Control,nan
CVE-2019-2597,25/04/2019 14:18,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2018-13988,25/04/2019 14:16,25/07/2018 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-2591,25/04/2019 14:15,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2594,25/04/2019 14:12,23/04/2019 19:32,4.9,284, Improper Access Control,nan
CVE-2019-2586,25/04/2019 14:11,23/04/2019 19:32,4.0,200, Information Exposure,nan
CVE-2016-7443,25/04/2019 14:06,7/03/2018 2:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-8780,25/04/2019 14:06,7/03/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3730,25/04/2019 13:59,4/05/2017 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-2590,25/04/2019 13:57,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2017-5226,25/04/2019 13:49,29/03/2017 20:59,7.5,20, Improper Input Validation,nan
CVE-2018-11867,25/04/2019 13:47,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11828,25/04/2019 13:46,26/10/2018 13:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-11822,25/04/2019 13:46,26/10/2018 13:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-11821,25/04/2019 13:46,26/10/2018 13:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-16235,25/04/2019 13:43,23/10/2018 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19841,25/04/2019 13:10,4/12/2018 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19477,25/04/2019 13:07,23/11/2018 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-19476,25/04/2019 13:07,23/11/2018 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-11862,25/04/2019 13:06,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11861,25/04/2019 13:05,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11859,25/04/2019 13:05,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11856,25/04/2019 13:05,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11854,25/04/2019 13:04,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11853,25/04/2019 13:04,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11849,25/04/2019 13:03,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11850,25/04/2019 13:01,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8943,25/04/2019 12:57,20/02/2019 3:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8942,25/04/2019 12:57,20/02/2019 3:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20615,25/04/2019 12:57,21/03/2019 16:00,5.0,125, Out-of-bounds Read,nan
CVE-2019-5673,25/04/2019 12:45,11/04/2019 17:29,3.6,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2019-5672,25/04/2019 12:44,11/04/2019 17:29,6.4,320, Key Management Errors,nan
CVE-2019-9211,25/04/2019 12:23,27/02/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-9210,25/04/2019 12:23,27/02/2019 14:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-9184,25/04/2019 12:22,26/02/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11401,24/04/2019 20:36,22/04/2019 11:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6239,24/04/2019 20:29,12/04/2019 17:29,2.1,200, Information Exposure,nan
CVE-2018-20820,24/04/2019 20:16,23/04/2019 14:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-2571,24/04/2019 20:09,23/04/2019 19:32,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-2575,24/04/2019 20:06,23/04/2019 19:32,5.0,200, Information Exposure,nan
CVE-2019-2576,24/04/2019 19:52,23/04/2019 19:32,5.0,284, Improper Access Control,nan
CVE-2019-2570,24/04/2019 19:40,23/04/2019 19:32,6.5,284, Improper Access Control,nan
CVE-2019-2567,24/04/2019 19:35,23/04/2019 19:32,5.0,284, Improper Access Control,nan
CVE-2019-2565,24/04/2019 19:34,23/04/2019 19:32,5.0,284, Improper Access Control,nan
CVE-2019-2564,24/04/2019 19:30,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2583,24/04/2019 19:11,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2600,24/04/2019 19:10,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2640,24/04/2019 19:05,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2018-19917,24/04/2019 19:05,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19872,24/04/2019 19:05,21/03/2019 16:00,4.3,369, Divide By Zero,nan
CVE-2019-9923,24/04/2019 19:02,22/03/2019 8:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-2641,24/04/2019 19:00,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2652,24/04/2019 18:59,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-9053,24/04/2019 18:58,26/03/2019 17:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-1572,24/04/2019 18:56,26/03/2019 22:29,5.0,287, Improper Authentication,nan
CVE-2018-20341,24/04/2019 18:53,8/04/2019 15:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2019-2662,24/04/2019 18:45,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2558,24/04/2019 18:36,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2019-2642,24/04/2019 18:34,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2643,24/04/2019 18:33,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2551,24/04/2019 18:29,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-6610,24/04/2019 18:28,11/04/2019 18:29,9.0,20, Improper Input Validation,nan
CVE-2019-11213,24/04/2019 18:24,12/04/2019 15:29,6.8,384, Session Fixation,nan
CVE-2018-10959,24/04/2019 18:22,17/04/2019 15:29,5.0,426, Untrusted Search Path,nan
CVE-2019-11402,24/04/2019 18:02,22/04/2019 11:29,5.0,255, Credentials Management,nan
CVE-2019-11403,24/04/2019 18:01,22/04/2019 11:29,5.0,255, Credentials Management,nan
CVE-2019-2516,24/04/2019 17:44,23/04/2019 19:32,4.6,284, Improper Access Control,nan
CVE-2019-2517,24/04/2019 17:41,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2019-2518,24/04/2019 17:37,23/04/2019 19:32,6.0,284, Improper Access Control,nan
CVE-2019-2655,24/04/2019 17:06,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2660,24/04/2019 17:05,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2424,24/04/2019 17:03,23/04/2019 19:32,7.5,284, Improper Access Control,nan
CVE-2019-2568,24/04/2019 17:00,23/04/2019 19:32,4.0,284, Improper Access Control,nan
CVE-2019-2603,24/04/2019 16:54,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2639,24/04/2019 16:52,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2653,24/04/2019 16:44,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2654,24/04/2019 16:40,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2669,24/04/2019 16:31,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2557,24/04/2019 16:27,23/04/2019 19:32,6.5,284, Improper Access Control,nan
CVE-2019-2604,24/04/2019 16:20,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2663,24/04/2019 16:04,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2664,24/04/2019 15:46,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2670,24/04/2019 15:45,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2671,24/04/2019 15:33,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2673,24/04/2019 15:31,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2674,24/04/2019 15:29,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2675,24/04/2019 15:28,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2676,24/04/2019 15:21,23/04/2019 19:32,4.3,284, Improper Access Control,nan
CVE-2019-2682,24/04/2019 15:19,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-2677,24/04/2019 15:19,23/04/2019 19:32,5.8,284, Improper Access Control,nan
CVE-2019-11471,24/04/2019 14:27,23/04/2019 14:29,6.8,416, Use After Free,nan
CVE-2018-1328,24/04/2019 13:49,23/04/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11072,23/04/2019 20:32,10/04/2019 22:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-3646,23/04/2019 19:32,14/08/2018 19:29,4.7,200, Information Exposure,nan
CVE-2018-3620,23/04/2019 19:32,14/08/2018 19:29,4.7,200, Information Exposure,nan
CVE-2018-1000613,23/04/2019 19:31,9/07/2018 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1000004,23/04/2019 19:31,16/01/2018 20:29,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-0739,23/04/2019 19:31,27/03/2018 21:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-0733,23/04/2019 19:31,27/03/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-9798,23/04/2019 19:31,18/09/2017 15:29,5.0,416, Use After Free,nan
CVE-2017-8287,23/04/2019 19:31,27/04/2017 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8105,23/04/2019 19:31,24/04/2017 18:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7868,23/04/2019 19:31,14/04/2017 4:59,5.0,787, Out-of-bounds Write,nan
CVE-2017-7867,23/04/2019 19:31,14/04/2017 4:59,5.0,787, Out-of-bounds Write,nan
CVE-2017-5754,23/04/2019 19:30,4/01/2018 13:29,4.7,200, Information Exposure,nan
CVE-2017-5753,23/04/2019 19:30,4/01/2018 13:29,4.7,200, Information Exposure,nan
CVE-2017-3738,23/04/2019 19:30,7/12/2017 16:29,4.3,200, Information Exposure,nan
CVE-2017-3736,23/04/2019 19:30,2/11/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-3735,23/04/2019 19:30,28/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3733,23/04/2019 19:30,4/05/2017 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-3732,23/04/2019 19:29,4/05/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-3731,23/04/2019 19:29,4/05/2017 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17484,23/04/2019 19:29,10/12/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15265,23/04/2019 19:29,16/10/2017 18:29,6.9,416, Use After Free,nan
CVE-2017-14952,23/04/2019 19:29,16/10/2017 16:29,7.5,415, Double Free,nan
CVE-2017-12617,23/04/2019 19:29,4/10/2017 1:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-8735,23/04/2019 19:29,6/04/2017 21:59,7.5,284, Improper Access Control,nan
CVE-2016-7415,23/04/2019 19:29,17/09/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7103,23/04/2019 19:29,15/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6293,23/04/2019 19:29,25/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4000,23/04/2019 19:29,6/07/2017 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-3092,23/04/2019 19:29,4/07/2016 22:59,7.8,20, Improper Input Validation,nan
CVE-2016-2141,23/04/2019 19:29,30/06/2016 16:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1182,23/04/2019 19:29,4/07/2016 22:59,6.4,20, Improper Input Validation,nan
CVE-2015-3253,23/04/2019 19:29,13/08/2015 14:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-1832,23/04/2019 19:29,3/10/2016 21:59,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-9911,23/04/2019 19:29,4/01/2017 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9654,23/04/2019 19:29,24/04/2017 6:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8147,23/04/2019 19:29,25/05/2015 22:59,7.5,189, Numeric Errors,nan
CVE-2014-8146,23/04/2019 19:29,25/05/2015 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7940,23/04/2019 19:29,22/01/2015 22:59,7.5,399, Resource Management Errors,nan
CVE-2014-7926,23/04/2019 19:29,22/01/2015 22:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-7923,23/04/2019 19:29,22/01/2015 22:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-0107,23/04/2019 19:29,15/04/2014 23:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-20200,23/04/2019 17:29,18/04/2019 19:29,4.3,254, 7PK – Security Features,nan
CVE-2018-18386,23/04/2019 17:29,17/10/2018 20:29,2.1,704, Incorrect Type Conversion or Cast,nan
CVE-2018-18281,23/04/2019 17:29,30/10/2018 18:29,4.6,20, Improper Input Validation,nan
CVE-2018-14734,23/04/2019 17:29,29/07/2018 23:29,6.1,416, Use After Free,nan
CVE-2018-13094,23/04/2019 17:29,3/07/2018 10:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-13053,23/04/2019 17:29,2/07/2018 12:29,2.1,190, Integer Overflow or Wraparound,nan
CVE-2019-8453,23/04/2019 16:29,17/04/2019 15:29,2.1,426, Untrusted Search Path,nan
CVE-2018-20818,23/04/2019 14:55,22/04/2019 11:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10902,23/04/2019 14:46,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2019-11417,23/04/2019 14:38,22/04/2019 11:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11418,23/04/2019 14:33,22/04/2019 11:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10900,23/04/2019 14:31,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2019-10898,23/04/2019 14:26,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2019-11445,23/04/2019 14:25,22/04/2019 11:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-10897,23/04/2019 14:25,9/04/2019 4:29,5.0,399, Resource Management Errors,nan
CVE-2018-12199,23/04/2019 14:22,14/03/2019 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12196,23/04/2019 14:21,14/03/2019 20:29,4.6,20, Improper Input Validation,nan
CVE-2019-7663,23/04/2019 14:20,9/02/2019 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12187,23/04/2019 14:00,14/03/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-11384,23/04/2019 13:58,22/04/2019 21:29,5.0,255, Credentials Management,nan
CVE-2018-1066,23/04/2019 13:37,2/03/2018 8:29,7.1,476, NULL Pointer Dereference,nan
CVE-2016-5758,23/04/2019 13:32,23/03/2017 6:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10863,23/04/2019 13:16,4/04/2019 18:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19211,23/04/2019 13:15,12/11/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-3498,23/04/2019 13:11,9/01/2019 23:29,4.3,20, Improper Input Validation,nan
CVE-2017-9963,23/04/2019 12:41,12/02/2018 23:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19968,23/04/2019 12:36,11/12/2018 17:29,4.0,200, Information Exposure,nan
CVE-2019-11449,23/04/2019 12:29,22/04/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4467,23/04/2019 12:29,2/05/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-2166,23/04/2019 12:29,12/04/2016 14:59,5.8,200, Information Exposure,nan
CVE-2019-11414,22/04/2019 20:17,22/04/2019 11:29,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-11377,22/04/2019 20:12,20/04/2019 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-11371,22/04/2019 20:08,20/04/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11362,22/04/2019 19:06,20/04/2019 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11332,22/04/2019 18:53,18/04/2019 23:29,6.8,287, Improper Authentication,nan
CVE-2017-6533,22/04/2019 18:44,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3872,22/04/2019 18:39,17/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11376,22/04/2019 18:34,20/04/2019 15:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-11427,22/04/2019 18:33,22/04/2019 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11426,22/04/2019 18:33,22/04/2019 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9186,22/04/2019 18:32,31/05/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11428,22/04/2019 18:29,22/04/2019 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11452,22/04/2019 18:10,22/04/2019 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11451,22/04/2019 18:10,22/04/2019 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11450,22/04/2019 18:05,22/04/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0618,22/04/2019 17:57,26/07/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11340,22/04/2019 17:52,19/04/2019 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-19214,22/04/2019 17:48,12/11/2018 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18438,22/04/2019 17:48,19/10/2018 22:29,2.1,190, Integer Overflow or Wraparound,nan
CVE-2018-17456,22/04/2019 17:48,6/10/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2018-14618,22/04/2019 17:48,5/09/2018 19:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14362,22/04/2019 17:48,17/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7980,22/04/2019 17:48,25/07/2017 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8657,22/04/2019 17:48,31/07/2018 19:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5766,22/04/2019 17:48,7/08/2016 10:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5244,22/04/2019 17:48,27/06/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-5195,22/04/2019 17:48,10/11/2016 21:59,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-4984,22/04/2019 17:48,17/07/2017 13:18,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-4805,22/04/2019 17:48,23/05/2016 10:59,7.2,416, Use After Free,nan
CVE-2016-4459,22/04/2019 17:48,12/04/2017 20:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3072,22/04/2019 17:48,7/06/2016 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2150,22/04/2019 17:48,9/06/2016 16:59,3.6,284, Improper Access Control,nan
CVE-2016-2047,22/04/2019 17:48,27/01/2016 20:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0749,22/04/2019 17:48,9/06/2016 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5160,22/04/2019 17:48,20/08/2018 21:29,2.1,200, Information Exposure,nan
CVE-2015-4605,22/04/2019 17:48,16/05/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-4604,22/04/2019 17:48,16/05/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-4598,22/04/2019 17:48,16/05/2016 10:59,7.5,20, Improper Input Validation,nan
CVE-2015-4035,22/04/2019 17:48,25/07/2017 18:29,4.6,20, Improper Input Validation,nan
CVE-2015-4026,22/04/2019 17:48,9/06/2015 18:59,7.5,19, Data Processing Errors,nan
CVE-2015-4025,22/04/2019 17:48,9/06/2015 18:59,7.5,19, Data Processing Errors,nan
CVE-2015-4024,22/04/2019 17:48,9/06/2015 18:59,5.0,399, Resource Management Errors,nan
CVE-2015-4022,22/04/2019 17:48,9/06/2015 18:59,7.5,189, Numeric Errors,nan
CVE-2015-4021,22/04/2019 17:48,9/06/2015 18:59,5.0,189, Numeric Errors,nan
CVE-2015-3900,22/04/2019 17:48,24/06/2015 14:59,5.0,254, 7PK – Security Features,nan
CVE-2015-3456,22/04/2019 17:48,13/05/2015 18:59,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3412,22/04/2019 17:48,16/05/2016 10:59,5.0,254, 7PK – Security Features,nan
CVE-2015-3411,22/04/2019 17:48,16/05/2016 10:59,6.4,20, Improper Input Validation,nan
CVE-2015-3330,22/04/2019 17:48,9/06/2015 18:59,6.8,20, Improper Input Validation,nan
CVE-2015-3329,22/04/2019 17:48,9/06/2015 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3307,22/04/2019 17:48,9/06/2015 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3247,22/04/2019 17:48,8/09/2015 15:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-2783,22/04/2019 17:48,9/06/2015 18:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1795,22/04/2019 17:48,27/06/2017 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1777,22/04/2019 17:48,12/04/2018 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-0240,22/04/2019 17:48,24/02/2015 1:59,10.0,17, DEPRECATED: Code,nan
CVE-2014-8333,22/04/2019 17:48,31/10/2014 14:55,4.0,399, Resource Management Errors,nan
CVE-2014-8177,22/04/2019 17:48,7/06/2016 14:06,4.0,284, Improper Access Control,nan
CVE-2014-8171,22/04/2019 17:48,9/02/2018 22:29,4.9,399, Resource Management Errors,nan
CVE-2014-8159,22/04/2019 17:48,16/03/2015 10:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-8124,22/04/2019 17:48,12/12/2014 15:59,4.3,399, Resource Management Errors,nan
CVE-2014-8119,22/04/2019 17:48,29/12/2017 22:29,5.0,20, Improper Input Validation,nan
CVE-2014-5177,22/04/2019 17:48,3/08/2014 18:55,1.2,20, Improper Input Validation,nan
CVE-2014-3940,22/04/2019 17:48,5/06/2014 17:55,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3917,22/04/2019 17:48,5/06/2014 17:55,3.3,200, Information Exposure,nan
CVE-2014-3562,22/04/2019 17:48,21/08/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-3560,22/04/2019 17:48,6/08/2014 18:55,7.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3470,22/04/2019 17:48,5/06/2014 21:55,4.3,310, Cryptographic Issues,nan
CVE-2014-3468,22/04/2019 17:48,5/06/2014 20:55,6.8,189, Numeric Errors,nan
CVE-2014-3153,22/04/2019 17:48,7/06/2014 14:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-1859,22/04/2019 17:48,8/01/2018 19:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-0249,22/04/2019 17:48,11/06/2014 14:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0221,22/04/2019 17:48,5/06/2014 21:55,4.3,399, Resource Management Errors,nan
CVE-2014-0195,22/04/2019 17:48,5/06/2014 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0179,22/04/2019 17:48,3/08/2014 18:55,1.9,20, Improper Input Validation,nan
CVE-2014-0150,22/04/2019 17:48,18/04/2014 14:55,4.9,189, Numeric Errors,nan
CVE-2014-0143,22/04/2019 17:48,10/08/2017 15:29,4.4,190, Integer Overflow or Wraparound,nan
CVE-2014-0001,22/04/2019 17:48,31/01/2014 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6368,22/04/2019 17:48,14/12/2013 18:08,6.2,20, Improper Input Validation,nan
CVE-2013-4566,22/04/2019 17:48,12/12/2013 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4485,22/04/2019 17:48,23/11/2013 11:55,4.0,20, Improper Input Validation,nan
CVE-2013-4481,22/04/2019 17:48,23/11/2013 11:55,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-4397,22/04/2019 17:48,17/10/2013 23:55,6.8,189, Numeric Errors,nan
CVE-2013-4345,22/04/2019 17:48,10/10/2013 10:55,5.8,189, Numeric Errors,nan
CVE-2013-4342,22/04/2019 17:48,10/10/2013 0:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4326,22/04/2019 17:48,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4311,22/04/2019 17:48,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4299,22/04/2019 17:48,24/10/2013 10:53,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4296,22/04/2019 17:48,30/09/2013 21:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4288,22/04/2019 17:48,3/10/2013 21:55,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-4287,22/04/2019 17:48,17/10/2013 23:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4282,22/04/2019 17:48,2/11/2013 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2561,22/04/2019 17:48,23/11/2013 18:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-2555,22/04/2019 17:48,11/03/2013 10:55,10.0,189, Numeric Errors,nan
CVE-2013-2231,22/04/2019 17:48,1/10/2013 17:55,7.2,399, Resource Management Errors,nan
CVE-2013-2217,22/04/2019 17:48,23/09/2013 20:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-2188,22/04/2019 17:48,16/07/2013 14:08,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-2174,22/04/2019 17:48,31/07/2013 13:20,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2164,22/04/2019 17:48,4/07/2013 21:55,2.1,200, Information Exposure,nan
CVE-2013-2133,22/04/2019 17:48,6/12/2013 17:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2051,22/04/2019 17:48,9/07/2013 17:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-2015,22/04/2019 17:48,29/04/2013 14:55,4.7,399, Resource Management Errors,nan
CVE-2013-1978,22/04/2019 17:48,12/12/2013 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1976,22/04/2019 17:48,9/07/2013 17:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1943,22/04/2019 17:48,16/07/2013 14:08,6.9,20, Improper Input Validation,nan
CVE-2013-1935,22/04/2019 17:48,16/07/2013 14:08,5.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1928,22/04/2019 17:48,29/04/2013 14:55,4.7,200, Information Exposure,nan
CVE-2013-1913,22/04/2019 17:48,12/12/2013 18:55,6.8,189, Numeric Errors,nan
CVE-2013-1872,22/04/2019 17:48,19/08/2013 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1861,22/04/2019 17:48,28/03/2013 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1824,22/04/2019 17:48,16/09/2013 13:02,4.3,200, Information Exposure,nan
CVE-2013-1774,22/04/2019 17:48,28/02/2013 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1773,22/04/2019 17:48,28/02/2013 19:55,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0310,22/04/2019 17:48,22/02/2013 0:55,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0309,22/04/2019 17:48,22/02/2013 0:55,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0281,22/04/2019 17:48,23/11/2013 11:55,4.3,399, Resource Management Errors,nan
CVE-2013-0223,22/04/2019 17:48,23/11/2013 18:55,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0222,22/04/2019 17:48,23/11/2013 18:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0221,22/04/2019 17:48,23/11/2013 18:55,4.3,20, Improper Input Validation,nan
CVE-2013-0219,22/04/2019 17:48,24/02/2013 19:55,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-0200,22/04/2019 17:48,6/03/2013 20:55,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-0170,22/04/2019 17:48,8/02/2013 20:55,9.3,399, Resource Management Errors,nan
CVE-2012-6548,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6546,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6545,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6544,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6542,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6538,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6537,22/04/2019 17:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-5536,22/04/2019 17:48,22/02/2013 0:55,6.2,20, Improper Input Validation,nan
CVE-2012-4546,22/04/2019 17:48,3/04/2013 0:55,4.3,16, Configuration,nan
CVE-2012-4453,22/04/2019 17:48,9/10/2012 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3406,22/04/2019 17:48,10/02/2014 18:15,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3405,22/04/2019 17:48,10/02/2014 18:15,5.0,189, Numeric Errors,nan
CVE-2012-3404,22/04/2019 17:48,10/02/2014 18:15,5.0,189, Numeric Errors,nan
CVE-2011-4749,22/04/2019 17:48,16/12/2011 11:55,10.0,255, Credentials Management,nan
CVE-2011-4748,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4747,22/04/2019 17:48,16/12/2011 11:55,5.0,310, Cryptographic Issues,nan
CVE-2011-4746,22/04/2019 17:48,16/12/2011 11:55,5.0,310, Cryptographic Issues,nan
CVE-2011-4745,22/04/2019 17:48,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4742,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4741,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4740,22/04/2019 17:48,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4739,22/04/2019 17:48,16/12/2011 11:55,10.0,255, Credentials Management,nan
CVE-2011-4738,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4737,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4736,22/04/2019 17:48,16/12/2011 11:55,5.0,310, Cryptographic Issues,nan
CVE-2011-4735,22/04/2019 17:48,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4734,22/04/2019 17:48,16/12/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4731,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4730,22/04/2019 17:48,16/12/2011 11:55,10.0,255, Credentials Management,nan
CVE-2011-4728,22/04/2019 17:48,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4727,22/04/2019 17:48,16/12/2011 11:55,10.0,20, Improper Input Validation,nan
CVE-2011-4726,22/04/2019 17:48,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4725,22/04/2019 17:48,16/12/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4111,22/04/2019 17:48,26/02/2014 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3593,22/04/2019 17:48,8/06/2013 13:05,5.7,399, Resource Management Errors,nan
CVE-2011-1773,22/04/2019 17:48,8/02/2014 0:55,4.4,255, Credentials Management,nan
CVE-2011-1576,22/04/2019 17:48,31/08/2011 23:55,5.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1011,22/04/2019 17:48,24/02/2011 21:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-0714,22/04/2019 17:48,4/05/2011 22:55,5.7,399, Resource Management Errors,nan
CVE-2010-5325,22/04/2019 17:48,15/04/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0727,22/04/2019 17:48,16/03/2010 19:30,4.7,399, Resource Management Errors,nan
CVE-2008-3277,22/04/2019 17:48,15/04/2014 23:55,4.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11344,22/04/2019 17:28,19/04/2019 19:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16517,22/04/2019 17:19,6/09/2018 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20817,22/04/2019 17:10,19/04/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11069,22/04/2019 17:03,10/04/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-9781,22/04/2019 16:55,21/06/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2027,22/04/2019 16:34,19/04/2019 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-2026,22/04/2019 16:33,19/04/2019 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-2028,22/04/2019 16:32,19/04/2019 20:29,9.3,20, Improper Input Validation,nan
CVE-2019-2029,22/04/2019 16:30,19/04/2019 20:29,6.8,416, Use After Free,nan
CVE-2019-2030,22/04/2019 16:29,19/04/2019 20:29,7.5,416, Use After Free,nan
CVE-2019-2031,22/04/2019 16:28,19/04/2019 20:29,4.6,787, Out-of-bounds Write,nan
CVE-2019-2033,22/04/2019 16:26,19/04/2019 20:29,4.6,416, Use After Free,nan
CVE-2019-2032,22/04/2019 16:26,19/04/2019 20:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-5360,22/04/2019 16:25,14/01/2018 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-2034,22/04/2019 16:24,19/04/2019 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-2035,22/04/2019 16:23,19/04/2019 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-2037,22/04/2019 16:22,19/04/2019 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-2038,22/04/2019 16:21,19/04/2019 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5784,22/04/2019 16:19,19/01/2018 8:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-3396,22/04/2019 16:10,25/03/2019 19:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-11359,22/04/2019 14:44,20/04/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19970,22/04/2019 14:10,11/12/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19969,22/04/2019 14:10,11/12/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11683,22/04/2019 14:09,4/06/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11440,22/04/2019 14:09,25/05/2018 11:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17833,22/04/2019 14:08,23/04/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2039,22/04/2019 13:27,19/04/2019 20:29,4.7,125, Out-of-bounds Read,nan
CVE-2019-2040,22/04/2019 13:18,19/04/2019 20:29,4.7,125, Out-of-bounds Read,nan
CVE-2019-9841,22/04/2019 13:10,19/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2041,22/04/2019 12:46,19/04/2019 20:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-11684,19/04/2019 20:28,4/06/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17289,19/04/2019 19:42,18/04/2019 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17288,19/04/2019 19:19,18/04/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9161,19/04/2019 18:53,18/04/2019 23:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-11685,19/04/2019 18:36,4/06/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11017,19/04/2019 18:32,18/04/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10641,19/04/2019 18:01,17/04/2019 19:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-11015,19/04/2019 17:54,18/04/2019 22:29,2.1,255, Credentials Management,nan
CVE-2018-17168,19/04/2019 17:32,18/04/2019 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4170,19/04/2019 16:29,7/12/2010 22:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9160,19/04/2019 16:27,18/04/2019 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-9005,19/04/2019 16:15,18/04/2019 18:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8999,19/04/2019 15:55,18/04/2019 17:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-17836,19/04/2019 15:06,23/01/2019 17:29,5.0,255, Credentials Management,nan
CVE-2019-11322,19/04/2019 14:46,18/04/2019 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11319,19/04/2019 14:46,18/04/2019 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-11321,19/04/2019 14:36,18/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-11320,19/04/2019 14:34,18/04/2019 17:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-11084,19/04/2019 14:09,18/04/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10643,18/04/2019 20:04,17/04/2019 19:29,7.5,320, Key Management Errors,nan
CVE-2019-5674,18/04/2019 19:29,28/03/2019 15:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-5671,18/04/2019 19:29,27/02/2019 23:29,4.9,399, Resource Management Errors,nan
CVE-2019-5670,18/04/2019 19:29,27/02/2019 23:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5669,18/04/2019 19:29,27/02/2019 23:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5668,18/04/2019 19:29,27/02/2019 23:29,7.2,476, NULL Pointer Dereference,nan
CVE-2019-5667,18/04/2019 19:29,27/02/2019 23:29,7.2,476, NULL Pointer Dereference,nan
CVE-2019-5665,18/04/2019 19:29,27/02/2019 23:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-5490,18/04/2019 19:29,21/03/2019 19:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-0121,18/04/2019 19:29,14/03/2019 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-6260,18/04/2019 19:29,13/11/2018 17:29,2.1,200, Information Exposure,nan
CVE-2017-5695,18/04/2019 19:29,9/08/2017 14:29,2.1,20, Improper Input Validation,nan
CVE-2019-0163,18/04/2019 18:50,17/04/2019 18:29,4.6,20, Improper Input Validation,nan
CVE-2019-9223,18/04/2019 17:41,17/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2017-9833,18/04/2019 17:29,24/06/2017 2:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19217,18/04/2019 16:29,12/11/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9619,18/04/2019 16:29,26/07/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9618,18/04/2019 16:29,26/07/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5769,18/04/2019 16:25,19/02/2019 17:29,6.8,20, Improper Input Validation,nan
CVE-2018-17294,18/04/2019 16:09,21/09/2018 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19490,18/04/2019 16:05,23/11/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5770,18/04/2019 15:57,19/02/2019 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19492,18/04/2019 15:54,23/11/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19491,18/04/2019 15:54,23/11/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6110,18/04/2019 15:27,31/01/2019 18:29,4.0,284, Improper Access Control,nan
CVE-2016-10741,18/04/2019 15:20,1/02/2019 16:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-16558,18/04/2019 15:12,17/04/2019 14:29,7.8,20, Improper Input Validation,nan
CVE-2019-5774,18/04/2019 15:11,19/02/2019 17:29,6.8,20, Improper Input Validation,nan
CVE-2019-5773,18/04/2019 15:11,19/02/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-5771,18/04/2019 15:11,19/02/2019 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5757,18/04/2019 15:06,19/02/2019 17:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2019-5758,18/04/2019 15:01,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-5775,18/04/2019 15:00,19/02/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-5778,18/04/2019 14:58,19/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5760,18/04/2019 14:55,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-5762,18/04/2019 14:53,19/02/2019 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16559,18/04/2019 14:53,17/04/2019 14:29,7.8,20, Improper Input Validation,nan
CVE-2019-5761,18/04/2019 14:52,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-5763,18/04/2019 14:49,19/02/2019 17:29,6.8,20, Improper Input Validation,nan
CVE-2019-5764,18/04/2019 14:47,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-5768,18/04/2019 14:37,19/02/2019 17:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0158,18/04/2019 14:28,17/04/2019 18:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-5766,18/04/2019 14:23,19/02/2019 17:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5772,18/04/2019 14:20,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-5779,18/04/2019 14:02,19/02/2019 17:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-10642,18/04/2019 13:43,17/04/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-5776,18/04/2019 13:35,19/02/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-5923,18/04/2019 13:35,27/03/2019 16:29,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-6318,18/04/2019 13:33,11/04/2019 15:29,7.5,20, Improper Input Validation,nan
CVE-2019-5780,18/04/2019 13:29,19/02/2019 17:29,4.6,20, Improper Input Validation,nan
CVE-2019-5781,18/04/2019 13:15,19/02/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-5777,18/04/2019 13:13,19/02/2019 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-11851,18/04/2019 13:01,18/09/2018 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-11891,18/04/2019 13:00,19/09/2018 14:29,8.3,129, Improper Validation of Array Index,nan
CVE-2018-11889,18/04/2019 13:00,19/09/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11878,18/04/2019 13:00,19/09/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11869,18/04/2019 13:00,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11868,18/04/2019 13:00,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11860,18/04/2019 13:00,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11897,18/04/2019 12:59,19/09/2018 14:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-11895,18/04/2019 12:59,19/09/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11894,18/04/2019 12:59,19/09/2018 14:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2019-5767,18/04/2019 12:58,19/02/2019 17:29,4.3,275, Permission Issues,nan
CVE-2018-11904,18/04/2019 12:58,19/09/2018 14:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-11902,18/04/2019 12:58,19/09/2018 14:29,7.2,129, Improper Validation of Array Index,nan
CVE-2019-5765,18/04/2019 12:57,19/02/2019 17:29,4.3,200, Information Exposure,nan
CVE-2019-5759,18/04/2019 12:57,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-6506,17/04/2019 21:29,2/04/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19967,17/04/2019 21:29,8/12/2018 4:29,4.9,20, Improper Input Validation,nan
CVE-2018-19665,17/04/2019 21:29,6/12/2018 23:29,2.7,190, Integer Overflow or Wraparound,nan
CVE-2018-19595,17/04/2019 21:29,27/11/2018 7:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14522,17/04/2019 21:29,23/07/2018 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13042,17/04/2019 21:29,5/10/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-9217,17/04/2019 20:40,17/04/2019 17:29,7.5,254, 7PK – Security Features,nan
CVE-2019-9174,17/04/2019 20:33,17/04/2019 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-6952,17/04/2019 20:29,13/02/2018 19:29,5.0,415, Double Free,nan
CVE-2018-6951,17/04/2019 20:29,13/02/2018 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9756,17/04/2019 20:20,17/04/2019 17:29,7.5,284, Improper Access Control,nan
CVE-2019-9176,17/04/2019 20:08,17/04/2019 17:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9222,17/04/2019 20:00,17/04/2019 17:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9179,17/04/2019 19:48,17/04/2019 17:29,4.3,200, Information Exposure,nan
CVE-2019-9178,17/04/2019 19:47,17/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2017-11714,17/04/2019 19:43,28/07/2017 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-9175,17/04/2019 19:42,17/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-9172,17/04/2019 19:39,17/04/2019 17:29,4.3,200, Information Exposure,nan
CVE-2019-9171,17/04/2019 19:35,17/04/2019 17:29,4.3,200, Information Exposure,nan
CVE-2019-1573,17/04/2019 19:29,9/04/2019 22:29,7.5,287, Improper Authentication,nan
CVE-2018-19498,17/04/2019 19:29,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9225,17/04/2019 19:26,17/04/2019 17:29,5.0,284, Improper Access Control,nan
CVE-2019-9224,17/04/2019 19:18,17/04/2019 17:29,5.0,284, Improper Access Control,nan
CVE-2019-9219,17/04/2019 19:16,17/04/2019 17:29,4.3,284, Improper Access Control,nan
CVE-2019-9170,17/04/2019 19:12,17/04/2019 17:29,5.0,284, Improper Access Control,nan
CVE-2019-9220,17/04/2019 18:38,17/04/2019 17:29,5.0,399, Resource Management Errors,nan
CVE-2019-9890,17/04/2019 18:25,17/04/2019 17:29,6.4,275, Permission Issues,nan
CVE-2018-13378,17/04/2019 18:06,17/04/2019 15:29,4.0,200, Information Exposure,nan
CVE-2017-18360,17/04/2019 17:41,31/01/2019 9:29,4.9,369, Divide By Zero,nan
CVE-2019-0732,17/04/2019 17:31,9/04/2019 21:29,4.6,254, 7PK – Security Features,nan
CVE-2019-5756,17/04/2019 17:20,19/02/2019 17:29,6.8,416, Use After Free,nan
CVE-2019-0735,17/04/2019 17:19,9/04/2019 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-10945,17/04/2019 17:18,10/04/2019 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5520,17/04/2019 16:29,15/04/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2016-8201,17/04/2019 15:29,14/01/2017 19:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14607,17/04/2019 15:10,20/09/2017 17:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-5754,17/04/2019 15:08,19/02/2019 17:29,4.3,310, Cryptographic Issues,nan
CVE-2019-5755,17/04/2019 15:03,19/02/2019 17:29,5.8,189, Numeric Errors,nan
CVE-2017-15294,17/04/2019 14:33,16/10/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5782,17/04/2019 14:20,19/02/2019 17:29,6.8,20, Improper Input Validation,nan
CVE-2019-9025,17/04/2019 13:57,22/02/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14342,17/04/2019 13:49,12/09/2017 17:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-18489,17/04/2019 13:41,16/04/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2019-9845,17/04/2019 13:40,16/04/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-10680,17/04/2019 13:27,2/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17058,17/04/2019 13:16,29/11/2017 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9515,17/04/2019 11:29,29/12/2017 22:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-16871,16/04/2019 20:48,17/11/2017 9:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16870,16/04/2019 20:42,17/11/2017 9:29,6.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-5416,16/04/2019 20:30,8/06/2017 19:29,5.0,200, Information Exposure,nan
CVE-2018-19556,16/04/2019 20:13,26/11/2018 7:29,4.3,20, Improper Input Validation,nan
CVE-2015-1854,16/04/2019 20:11,19/09/2017 15:29,5.0,284, Improper Access Control,nan
CVE-2017-11770,16/04/2019 20:01,15/11/2017 3:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-15016,16/04/2019 19:18,5/10/2017 1:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-6393,16/04/2019 19:08,29/01/2018 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9262,16/04/2019 19:08,1/08/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7736,16/04/2019 18:58,6/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16365,16/04/2019 18:40,2/09/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9042,16/04/2019 18:39,23/02/2019 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-3877,16/04/2019 18:29,27/03/2019 13:29,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1000873,16/04/2019 18:29,20/12/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2017-9735,16/04/2019 18:29,16/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-5657,16/04/2019 18:29,22/05/2017 18:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5005,16/04/2019 18:29,28/07/2016 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4469,16/04/2019 18:29,28/07/2016 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7398,16/04/2019 18:29,24/06/2015 16:59,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2013-7397,16/04/2019 18:29,24/06/2015 16:59,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2013-0253,16/04/2019 18:29,9/04/2013 20:55,5.8,16, Configuration,nan
CVE-2011-4969,16/04/2019 18:29,8/03/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12085,16/04/2019 18:27,9/06/2018 11:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7737,16/04/2019 18:07,6/03/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-11208,16/04/2019 18:07,16/05/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1555,16/04/2019 18:00,21/04/2017 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-16546,16/04/2019 17:50,5/11/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5516,16/04/2019 17:45,15/04/2019 17:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-5517,16/04/2019 17:44,15/04/2019 18:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-16366,16/04/2019 17:38,2/09/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17499,16/04/2019 17:30,11/12/2017 2:29,7.5,416, Use After Free,nan
CVE-2017-18231,16/04/2019 17:12,14/03/2018 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-18230,16/04/2019 17:12,14/03/2018 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-12653,16/04/2019 16:29,25/03/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10692,16/04/2019 16:12,2/04/2019 18:30,7.5,20, Improper Input Validation,nan
CVE-2018-1000191,16/04/2019 16:04,5/06/2018 20:29,4.0,200, Information Exposure,nan
CVE-2019-8906,16/04/2019 16:01,18/02/2019 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-11025,16/04/2019 15:35,8/04/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9022,16/04/2019 14:36,8/06/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-8917,16/04/2019 14:35,17/05/2017 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8924,16/04/2019 14:28,12/05/2017 21:29,2.1,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-8923,16/04/2019 14:27,12/05/2017 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-18018,16/04/2019 14:18,15/04/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-11228,16/04/2019 14:14,15/04/2019 12:31,5.0,20, Improper Input Validation,nan
CVE-2018-20555,16/04/2019 14:12,21/03/2019 16:00,7.5,200, Information Exposure,nan
CVE-2019-11229,16/04/2019 14:11,15/04/2019 12:31,7.5,20, Improper Input Validation,nan
CVE-2018-18017,16/04/2019 13:30,15/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18019,16/04/2019 13:21,15/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19291,16/04/2019 12:37,15/11/2018 6:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1999027,16/04/2019 12:05,1/08/2018 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10675,16/04/2019 11:46,2/05/2018 18:29,7.2,416, Use After Free,nan
CVE-2019-1002100,16/04/2019 6:29,1/04/2019 14:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-20406,16/04/2019 6:29,23/12/2018 23:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-18955,16/04/2019 6:29,16/11/2018 20:29,4.4,20, Improper Input Validation,nan
CVE-2010-5312,16/04/2019 6:29,24/11/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9169,16/04/2019 5:29,26/02/2019 2:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-7771,15/04/2019 19:58,15/04/2019 12:31,5.8,125, Out-of-bounds Read,nan
CVE-2017-7772,15/04/2019 19:57,12/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2565,15/04/2019 19:55,15/02/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18762,15/04/2019 19:47,21/03/2019 16:00,4.3,200, Information Exposure,nan
CVE-2018-7752,15/04/2019 19:13,7/03/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20760,15/04/2019 19:13,6/02/2019 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-20763,15/04/2019 18:59,6/02/2019 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-20762,15/04/2019 18:58,6/02/2019 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20761,15/04/2019 18:58,6/02/2019 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7776,15/04/2019 18:10,15/04/2019 12:31,5.8,125, Out-of-bounds Read,nan
CVE-2017-7774,15/04/2019 17:49,15/04/2019 12:31,6.4,125, Out-of-bounds Read,nan
CVE-2018-19275,15/04/2019 17:48,2/04/2019 18:29,10.0,255, Credentials Management,nan
CVE-2017-7777,15/04/2019 17:45,15/04/2019 12:31,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1574,15/04/2019 17:29,12/04/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7773,15/04/2019 17:23,15/04/2019 12:31,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18261,15/04/2019 16:40,15/04/2019 12:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8037,15/04/2019 16:31,2/08/2018 14:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-1323,15/04/2019 16:31,12/03/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11759,15/04/2019 16:31,31/10/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7674,15/04/2019 16:31,11/08/2017 2:29,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-5647,15/04/2019 16:31,17/04/2017 16:59,5.0,200, Information Exposure,nan
CVE-2017-15706,15/04/2019 16:31,31/01/2018 14:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-12616,15/04/2019 16:30,19/09/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-12615,15/04/2019 16:30,19/09/2017 13:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-8747,15/04/2019 16:30,14/03/2017 9:59,5.0,200, Information Exposure,nan
CVE-2016-8745,15/04/2019 16:30,10/08/2017 22:29,5.0,388, 7PK – Errors,nan
CVE-2016-6817,15/04/2019 16:30,10/08/2017 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6816,15/04/2019 16:30,20/03/2017 18:59,6.8,20, Improper Input Validation,nan
CVE-2016-6808,15/04/2019 16:30,12/04/2017 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6797,15/04/2019 16:30,10/08/2017 22:29,5.0,284, Improper Access Control,nan
CVE-2016-6796,15/04/2019 16:30,11/08/2017 2:29,5.0,254, 7PK – Security Features,nan
CVE-2016-6794,15/04/2019 16:30,10/08/2017 16:29,5.0,200, Information Exposure,nan
CVE-2016-5018,15/04/2019 16:30,10/08/2017 16:29,5.0,254, 7PK – Security Features,nan
CVE-2016-0762,15/04/2019 16:30,10/08/2017 16:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0714,15/04/2019 16:30,25/02/2016 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-0706,15/04/2019 16:30,25/02/2016 1:59,4.0,200, Information Exposure,nan
CVE-2015-5345,15/04/2019 16:30,25/02/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5174,15/04/2019 16:30,25/02/2016 1:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8111,15/04/2019 16:30,21/04/2015 17:59,5.0,200, Information Exposure,nan
CVE-2014-7810,15/04/2019 16:30,7/06/2015 23:59,5.0,284, Improper Access Control,nan
CVE-2014-0230,15/04/2019 16:30,7/06/2015 23:59,7.8,399, Resource Management Errors,nan
CVE-2014-0227,15/04/2019 16:29,16/02/2015 0:59,6.4,19, Data Processing Errors,nan
CVE-2014-0119,15/04/2019 16:29,31/05/2014 11:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0099,15/04/2019 16:29,31/05/2014 11:17,4.3,189, Numeric Errors,nan
CVE-2014-0096,15/04/2019 16:29,31/05/2014 11:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0075,15/04/2019 16:29,31/05/2014 11:17,5.0,189, Numeric Errors,nan
CVE-2014-0033,15/04/2019 16:29,26/02/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2013-4590,15/04/2019 16:29,26/02/2014 14:55,4.3,200, Information Exposure,nan
CVE-2013-4322,15/04/2019 16:29,26/02/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2013-4286,15/04/2019 16:29,26/02/2014 14:55,5.8,20, Improper Input Validation,nan
CVE-2013-2067,15/04/2019 16:29,1/06/2013 14:21,6.8,287, Improper Authentication,nan
CVE-2012-3544,15/04/2019 16:29,1/06/2013 14:21,5.0,20, Improper Input Validation,nan
CVE-2008-5519,15/04/2019 16:29,9/04/2009 15:08,2.6,200, Information Exposure,nan
CVE-2007-1860,15/04/2019 16:29,25/05/2007 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-0450,15/04/2019 16:29,16/03/2007 22:19,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18366,15/04/2019 14:56,15/04/2019 12:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-7447,15/04/2019 14:03,6/02/2017 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7446,15/04/2019 14:01,6/02/2017 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7386,15/04/2019 13:34,21/03/2019 16:01,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1003049,15/04/2019 13:29,10/04/2019 21:29,6.8,287, Improper Authentication,nan
CVE-2016-3714,15/04/2019 13:29,5/05/2016 18:59,10.0,20, Improper Input Validation,nan
CVE-2019-9844,15/04/2019 12:31,9/04/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9204,15/04/2019 12:31,28/03/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9203,15/04/2019 12:31,28/03/2019 19:29,7.5,285, Improper Authorization,nan
CVE-2019-9202,15/04/2019 12:31,28/03/2019 19:29,6.5,254, 7PK – Security Features,nan
CVE-2019-9167,15/04/2019 12:31,28/03/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9166,15/04/2019 12:31,28/03/2019 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9165,15/04/2019 12:31,28/03/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9164,15/04/2019 12:31,28/03/2019 17:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6556,15/04/2019 12:31,10/04/2019 20:29,6.8,416, Use After Free,nan
CVE-2019-3893,15/04/2019 12:31,9/04/2019 16:29,4.0,200, Information Exposure,nan
CVE-2019-3862,15/04/2019 12:31,21/03/2019 16:01,6.4,125, Out-of-bounds Read,nan
CVE-2019-3861,15/04/2019 12:31,25/03/2019 19:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-3860,15/04/2019 12:31,25/03/2019 19:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-3858,15/04/2019 12:31,21/03/2019 21:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-10875,15/04/2019 12:31,5/04/2019 13:29,4.3,20, Improper Input Validation,nan
CVE-2019-0853,15/04/2019 12:31,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0810,15/04/2019 12:31,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0801,15/04/2019 12:31,9/04/2019 21:29,6.8,19, Data Processing Errors,nan
CVE-2019-0039,15/04/2019 12:31,10/04/2019 20:29,4.3,255, Credentials Management,nan
CVE-2019-0008,15/04/2019 12:31,10/04/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20097,15/04/2019 12:31,12/12/2018 10:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0472,15/04/2019 12:31,5/10/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-0467,15/04/2019 12:31,5/10/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2017-10799,15/04/2019 12:30,3/07/2017 1:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2015-6415,15/04/2019 12:30,12/12/2015 16:59,7.1,399, Resource Management Errors,nan
CVE-2015-0633,15/04/2019 12:30,26/02/2015 1:59,6.8,20, Improper Input Validation,nan
CVE-2014-9458,15/04/2019 12:30,2/01/2015 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9456,15/04/2019 12:30,2/01/2015 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9198,15/04/2019 12:30,27/01/2015 19:59,10.0,255, Credentials Management,nan
CVE-2018-13796,15/04/2019 12:23,12/07/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-9634,12/04/2019 20:05,8/03/2019 15:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-18308,12/04/2019 19:56,16/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5241,12/04/2019 19:55,3/02/2017 15:59,4.3,189, Numeric Errors,nan
CVE-2019-8979,12/04/2019 19:51,21/02/2019 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8866,12/04/2019 19:47,15/02/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7449,12/04/2019 19:47,6/02/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-7800,12/04/2019 19:46,6/02/2017 17:59,5.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2016-7448,12/04/2019 19:44,6/02/2017 17:59,7.8,399, Resource Management Errors,nan
CVE-2014-8114,12/04/2019 19:29,20/02/2015 16:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-10065,12/04/2019 18:58,3/03/2017 17:59,6.8,284, Improper Access Control,nan
CVE-2018-20244,12/04/2019 18:42,27/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20237,12/04/2019 18:35,13/02/2019 18:29,4.0,200, Information Exposure,nan
CVE-2019-10662,12/04/2019 18:29,30/03/2019 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10661,12/04/2019 18:29,30/03/2019 17:29,10.0,255, Credentials Management,nan
CVE-2019-10660,12/04/2019 18:29,30/03/2019 17:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10659,12/04/2019 18:29,30/03/2019 17:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10658,12/04/2019 18:29,30/03/2019 17:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10657,12/04/2019 18:29,30/03/2019 17:29,4.0,200, Information Exposure,nan
CVE-2019-10656,12/04/2019 18:29,30/03/2019 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2013-7420,12/04/2019 18:29,12/01/2015 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19300,12/04/2019 18:23,11/04/2019 16:29,10.0,20, Improper Input Validation,nan
CVE-2017-14199,12/04/2019 18:15,12/04/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4187,12/04/2019 18:04,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-6713,12/04/2019 17:45,23/01/2019 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19201,12/04/2019 17:30,29/03/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7412,12/04/2019 17:22,5/02/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2019-7651,12/04/2019 16:34,8/02/2019 22:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-0033,12/04/2019 16:29,10/04/2019 20:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-6156,12/04/2019 16:24,10/04/2019 17:29,2.1,254, 7PK – Security Features,nan
CVE-2019-6525,12/04/2019 15:29,11/04/2019 21:29,4.0,255, Credentials Management,nan
CVE-2019-5024,12/04/2019 15:22,11/04/2019 18:29,7.2,20, Improper Input Validation,nan
CVE-2019-7644,12/04/2019 14:52,11/04/2019 20:29,7.5,287, Improper Authentication,nan
CVE-2019-1003050,12/04/2019 14:29,10/04/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-11196,12/04/2019 14:25,12/04/2019 3:29,10.0,287, Improper Authentication,nan
CVE-2019-6493,12/04/2019 14:19,11/04/2019 20:29,2.1,200, Information Exposure,nan
CVE-2018-20487,12/04/2019 14:14,11/04/2019 21:29,9.0,20, Improper Input Validation,nan
CVE-2018-0650,12/04/2019 13:49,7/09/2018 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2019-9694,12/04/2019 13:48,10/04/2019 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0032,12/04/2019 13:29,10/04/2019 20:29,2.1,255, Credentials Management,nan
CVE-2016-9918,12/04/2019 13:29,8/12/2016 8:59,5.0,125, Out-of-bounds Read,nan
CVE-2019-8912,12/04/2019 12:29,18/02/2019 18:29,7.2,416, Use After Free,nan
CVE-2019-8907,12/04/2019 12:29,18/02/2019 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8905,12/04/2019 12:29,18/02/2019 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-0279,12/04/2019 12:28,10/04/2019 21:29,6.5,285, Improper Authorization,nan
CVE-2019-9733,12/04/2019 12:25,11/04/2019 19:29,7.5,284, Improper Access Control,nan
CVE-2019-5715,12/04/2019 12:08,11/04/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9974,12/04/2019 11:59,11/04/2019 19:29,6.4,285, Improper Authorization,nan
CVE-2019-9975,12/04/2019 11:50,11/04/2019 19:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2019-9976,12/04/2019 11:41,11/04/2019 19:29,4.0,255, Credentials Management,nan
CVE-2018-19202,12/04/2019 11:35,11/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3915,12/04/2019 11:29,11/04/2019 14:29,5.4,287, Improper Authentication,nan
CVE-2019-9056,12/04/2019 11:20,11/04/2019 20:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-6139,12/04/2019 10:29,21/12/2017 17:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-0031,12/04/2019 8:29,10/04/2019 20:29,5.0,399, Resource Management Errors,nan
CVE-2019-0044,12/04/2019 6:29,10/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-9644,12/04/2019 3:29,12/03/2019 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10255,12/04/2019 3:29,28/03/2019 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-9924,11/04/2019 22:29,22/03/2019 8:29,7.2,20, Improper Input Validation,nan
CVE-2019-3464,11/04/2019 22:29,6/02/2019 19:29,7.5,20, Improper Input Validation,nan
CVE-2019-3463,11/04/2019 22:29,6/02/2019 19:29,7.5,20, Improper Input Validation,nan
CVE-2019-1000018,11/04/2019 22:29,4/02/2019 21:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0278,11/04/2019 20:48,10/04/2019 21:29,4.0,200, Information Exposure,nan
CVE-2019-0282,11/04/2019 20:29,10/04/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-0283,11/04/2019 20:10,10/04/2019 21:29,5.5,284, Improper Access Control,nan
CVE-2019-0284,11/04/2019 19:49,10/04/2019 21:29,3.6,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-11014,11/04/2019 19:26,8/04/2019 20:29,10.0,20, Improper Input Validation,nan
CVE-2019-10842,11/04/2019 18:39,4/04/2019 4:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3590,11/04/2019 18:29,10/04/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3916,11/04/2019 18:00,11/04/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-0229,11/04/2019 17:29,10/04/2019 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0216,11/04/2019 17:29,10/04/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3914,11/04/2019 17:05,11/04/2019 14:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0876,11/04/2019 16:23,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2018-19453,11/04/2019 16:06,10/04/2019 21:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19586,11/04/2019 15:55,9/04/2019 18:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6502,11/04/2019 15:51,22/01/2019 8:29,5.0,399, Resource Management Errors,nan
CVE-2019-0813,11/04/2019 15:33,9/04/2019 21:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5511,11/04/2019 15:29,9/04/2019 20:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-8383,11/04/2019 15:29,15/08/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-5512,11/04/2019 15:25,9/04/2019 20:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0759,11/04/2019 15:11,9/04/2019 2:29,2.1,200, Information Exposure,nan
CVE-2019-0814,11/04/2019 15:01,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0817,11/04/2019 14:42,9/04/2019 21:29,5.8,19, Data Processing Errors,nan
CVE-2018-16530,11/04/2019 14:32,9/04/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10946,11/04/2019 14:24,10/04/2019 19:29,5.0,284, Improper Access Control,nan
CVE-2019-6287,11/04/2019 14:09,10/04/2019 15:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0764,11/04/2019 14:09,9/04/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-5425,11/04/2019 14:05,10/04/2019 18:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0795,11/04/2019 14:02,9/04/2019 21:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-0794,11/04/2019 13:58,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7358,11/04/2019 13:56,9/04/2019 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0786,11/04/2019 13:56,9/04/2019 21:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-20698,11/04/2019 13:51,9/04/2019 18:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-7361,11/04/2019 13:45,9/04/2019 20:30,6.8,502, Deserialization of Untrusted Data,nan
CVE-2014-9496,11/04/2019 13:29,16/01/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11078,11/04/2019 13:08,11/04/2019 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0857,11/04/2019 11:55,9/04/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-9627,11/04/2019 7:29,8/03/2019 19:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1798,11/04/2019 3:29,8/04/2019 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-1786,11/04/2019 3:29,8/04/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-1785,11/04/2019 3:29,8/04/2019 19:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19486,11/04/2019 3:29,23/11/2018 8:29,7.5,426, Untrusted Search Path,nan
CVE-2006-7254,11/04/2019 1:59,10/04/2019 20:29,2.1,19, Data Processing Errors,nan
CVE-2018-14683,11/04/2019 1:58,10/04/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0858,11/04/2019 1:50,9/04/2019 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-0793,11/04/2019 1:31,9/04/2019 21:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-0792,11/04/2019 1:31,9/04/2019 21:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-0791,11/04/2019 1:31,9/04/2019 21:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-0790,11/04/2019 1:29,9/04/2019 21:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12182,11/04/2019 1:29,27/03/2019 20:29,4.6,441, Unintended Proxy or Intermediary (‘Confused Deputy’),nan
CVE-2018-12181,11/04/2019 1:29,27/03/2019 20:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12179,11/04/2019 1:29,27/03/2019 20:29,4.6,16, Configuration,nan
CVE-2018-12178,11/04/2019 1:29,27/03/2019 20:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1003034,10/04/2019 23:29,8/03/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003031,10/04/2019 23:29,8/03/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003030,10/04/2019 23:29,8/03/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003029,10/04/2019 23:29,8/03/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003005,10/04/2019 23:29,6/02/2019 16:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0802,10/04/2019 20:57,9/04/2019 21:29,4.3,200, Information Exposure,nan
CVE-2019-5585,10/04/2019 20:42,9/04/2019 21:29,3.6,284, Improper Access Control,nan
CVE-2019-7174,10/04/2019 20:25,9/04/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2019-9696,10/04/2019 19:59,9/04/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10743,10/04/2019 19:29,23/03/2019 19:29,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2019-0685,10/04/2019 19:16,9/04/2019 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0840,10/04/2019 18:44,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0844,10/04/2019 18:42,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-10884,10/04/2019 18:39,5/04/2019 17:29,4.3,255, Credentials Management,nan
CVE-2019-0842,10/04/2019 18:30,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6977,10/04/2019 18:29,27/01/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0859,10/04/2019 18:27,9/04/2019 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0816,10/04/2019 18:11,9/04/2019 3:29,1.9,254, 7PK – Security Features,nan
CVE-2019-0856,10/04/2019 18:07,9/04/2019 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0848,10/04/2019 18:00,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-11024,10/04/2019 17:51,8/04/2019 23:29,4.3,20, Improper Input Validation,nan
CVE-2019-0753,10/04/2019 17:49,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0739,10/04/2019 17:49,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0862,10/04/2019 17:48,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0765,10/04/2019 17:37,9/04/2019 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0847,10/04/2019 17:26,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0846,10/04/2019 17:23,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0851,10/04/2019 17:17,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0815,10/04/2019 17:11,9/04/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2019-6117,10/04/2019 17:03,9/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1567,10/04/2019 16:46,9/04/2019 20:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0849,10/04/2019 16:46,9/04/2019 21:29,4.3,200, Information Exposure,nan
CVE-2019-10632,10/04/2019 16:44,9/04/2019 5:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0806,10/04/2019 16:30,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9490,10/04/2019 16:29,5/04/2019 23:29,4.0,255, Credentials Management,nan
CVE-2019-6279,10/04/2019 16:29,21/03/2019 16:01,6.8,284, Improper Access Control,nan
CVE-2019-4143,10/04/2019 16:29,8/04/2019 15:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-4051,10/04/2019 16:29,8/04/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-10630,10/04/2019 16:24,9/04/2019 5:29,4.0,255, Credentials Management,nan
CVE-2019-0822,10/04/2019 16:17,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0812,10/04/2019 16:16,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0860,10/04/2019 16:14,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0861,10/04/2019 16:09,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9489,10/04/2019 16:07,5/04/2019 23:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0784,10/04/2019 15:54,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0829,10/04/2019 15:53,9/04/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10631,10/04/2019 15:42,9/04/2019 5:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0823,10/04/2019 15:31,9/04/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-0825,10/04/2019 15:30,9/04/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-0824,10/04/2019 15:30,9/04/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-7385,10/04/2019 15:29,21/03/2019 16:01,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-0827,10/04/2019 15:29,9/04/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-0826,10/04/2019 15:29,9/04/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-10633,10/04/2019 15:25,9/04/2019 5:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4213,10/04/2019 15:14,30/10/2011 19:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-18365,10/04/2019 14:52,9/04/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-0828,10/04/2019 14:48,9/04/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0830,10/04/2019 14:33,9/04/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10845,10/04/2019 14:28,8/04/2019 18:29,4.3,200, Information Exposure,nan
CVE-2019-10676,10/04/2019 14:23,8/04/2019 17:29,4.3,200, Information Exposure,nan
CVE-2019-0833,10/04/2019 14:23,9/04/2019 21:29,4.3,200, Information Exposure,nan
CVE-2019-0683,10/04/2019 14:22,9/04/2019 0:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-0831,10/04/2019 14:15,9/04/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0835,10/04/2019 14:01,9/04/2019 21:29,4.3,200, Information Exposure,nan
CVE-2019-0767,10/04/2019 13:58,9/04/2019 2:29,2.1,200, Information Exposure,nan
CVE-2018-13366,10/04/2019 13:53,9/04/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-0837,10/04/2019 13:49,9/04/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-0773,10/04/2019 13:46,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11018,10/04/2019 13:32,8/04/2019 21:29,5.0,255, Credentials Management,nan
CVE-2019-0726,10/04/2019 3:45,9/04/2019 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0756,10/04/2019 3:37,9/04/2019 2:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-0780,10/04/2019 3:24,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0809,10/04/2019 3:01,9/04/2019 3:29,6.8,426, Untrusted Search Path,nan
CVE-2019-10908,10/04/2019 2:37,7/04/2019 14:29,7.5,310, Cryptographic Issues,nan
CVE-2019-10907,10/04/2019 2:36,7/04/2019 14:29,5.0,255, Credentials Management,nan
CVE-2018-1050,9/04/2019 23:29,13/03/2018 16:29,2.9,20, Improper Input Validation,nan
CVE-2019-0808,9/04/2019 21:18,9/04/2019 3:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0695,9/04/2019 20:55,9/04/2019 0:29,5.5,20, Improper Input Validation,nan
CVE-2019-5019,9/04/2019 20:30,7/03/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17144,9/04/2019 20:29,19/09/2018 8:29,5.0,20, Improper Input Validation,nan
CVE-2019-10904,9/04/2019 20:20,6/04/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10479,9/04/2019 20:08,5/04/2019 19:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-0774,9/04/2019 20:07,9/04/2019 3:29,4.3,200, Information Exposure,nan
CVE-2019-0769,9/04/2019 19:57,9/04/2019 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10478,9/04/2019 19:53,5/04/2019 19:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-0779,9/04/2019 19:51,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0778,9/04/2019 19:33,9/04/2019 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0777,9/04/2019 19:23,9/04/2019 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0701,9/04/2019 19:15,9/04/2019 0:29,5.5,20, Improper Input Validation,nan
CVE-2019-0696,9/04/2019 19:08,9/04/2019 0:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0704,9/04/2019 18:55,9/04/2019 0:29,4.0,200, Information Exposure,nan
CVE-2019-0783,9/04/2019 18:49,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0782,9/04/2019 18:49,9/04/2019 3:29,2.1,200, Information Exposure,nan
CVE-2019-0768,9/04/2019 18:47,9/04/2019 2:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0821,9/04/2019 18:46,9/04/2019 3:29,4.0,200, Information Exposure,nan
CVE-2019-0761,9/04/2019 18:45,9/04/2019 2:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0762,9/04/2019 18:39,9/04/2019 2:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0763,9/04/2019 18:28,9/04/2019 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0798,9/04/2019 18:27,9/04/2019 3:29,4.3,20, Improper Input Validation,nan
CVE-2019-0770,9/04/2019 18:26,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10634,9/04/2019 18:19,9/04/2019 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0771,9/04/2019 18:18,9/04/2019 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0772,9/04/2019 18:16,9/04/2019 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10734,9/04/2019 18:14,7/04/2019 15:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2019-10741,9/04/2019 18:02,7/04/2019 15:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0698,9/04/2019 17:57,9/04/2019 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0697,9/04/2019 17:31,9/04/2019 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0766,9/04/2019 17:12,9/04/2019 2:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0689,9/04/2019 17:08,9/04/2019 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-0693,9/04/2019 17:06,9/04/2019 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-0692,9/04/2019 17:06,9/04/2019 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2014-9789,9/04/2019 17:06,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-0694,9/04/2019 17:05,9/04/2019 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-0775,9/04/2019 17:04,9/04/2019 3:29,1.9,200, Information Exposure,nan
CVE-2019-0776,9/04/2019 17:01,9/04/2019 3:29,2.1,200, Information Exposure,nan
CVE-2019-0612,9/04/2019 16:51,8/04/2019 23:29,2.6,254, 7PK – Security Features,nan
CVE-2019-0678,9/04/2019 16:40,9/04/2019 0:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-3792,9/04/2019 16:29,1/04/2019 21:30,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-4460,9/04/2019 16:29,3/04/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-20483,9/04/2019 16:29,26/12/2018 18:29,2.1,255, Credentials Management,nan
CVE-2019-0748,9/04/2019 16:23,9/04/2019 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0667,9/04/2019 15:44,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0682,9/04/2019 15:41,9/04/2019 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-0666,9/04/2019 15:37,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0665,9/04/2019 15:32,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0639,9/04/2019 15:32,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8344,9/04/2019 15:31,13/02/2017 21:59,4.3,20, Improper Input Validation,nan
CVE-2019-0614,9/04/2019 15:14,8/04/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0611,9/04/2019 15:03,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0680,9/04/2019 14:58,9/04/2019 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0609,9/04/2019 14:58,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0592,9/04/2019 14:54,8/04/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20816,9/04/2019 14:41,5/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19282,9/04/2019 14:35,4/04/2019 21:29,10.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-11016,9/04/2019 14:18,8/04/2019 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-11001,9/04/2019 14:11,8/04/2019 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0617,9/04/2019 14:00,8/04/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-11002,9/04/2019 13:44,8/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3979,9/04/2019 13:44,1/04/2019 21:30,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-11003,9/04/2019 13:40,8/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9857,9/04/2019 4:29,21/03/2019 16:01,4.9,399, Resource Management Errors,nan
CVE-2018-18445,9/04/2019 1:29,17/10/2018 19:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-10243,8/04/2019 23:29,4/04/2019 16:29,7.5,125, Out-of-bounds Read,nan
CVE-2014-8155,8/04/2019 22:29,14/08/2015 18:59,4.3,17, DEPRECATED: Code,nan
CVE-2019-10887,8/04/2019 21:29,5/04/2019 18:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9593,8/04/2019 20:29,6/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9592,8/04/2019 20:29,6/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9591,8/04/2019 20:29,6/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1653,8/04/2019 20:29,24/01/2019 16:29,5.0,284, Improper Access Control,nan
CVE-2019-10874,8/04/2019 20:29,5/04/2019 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000410,8/04/2019 20:29,7/12/2017 19:29,5.0,200, Information Exposure,nan
CVE-2015-4700,8/04/2019 20:29,31/08/2015 10:59,4.9,17, DEPRECATED: Code,nan
CVE-2015-3212,8/04/2019 20:29,31/08/2015 10:59,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1333,8/04/2019 20:29,31/08/2015 10:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0275,8/04/2019 20:29,19/10/2015 10:59,4.9,17, DEPRECATED: Code,nan
CVE-2014-8559,8/04/2019 20:29,10/11/2014 11:55,4.9,399, Resource Management Errors,nan
CVE-2019-11004,8/04/2019 20:27,8/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13226,8/04/2019 18:01,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-10885,8/04/2019 17:21,5/04/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-1723,8/04/2019 16:29,13/03/2019 21:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-20229,8/04/2019 16:29,4/04/2019 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9768,8/04/2019 15:29,14/03/2019 9:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-4353,8/04/2019 14:27,3/04/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-4412,8/04/2019 14:18,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4311,8/04/2019 14:07,3/04/2019 18:29,5.8,200, Information Exposure,nan
CVE-2018-4312,8/04/2019 14:03,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2018-4371,8/04/2019 13:51,3/04/2019 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-4395,8/04/2019 13:44,3/04/2019 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-4380,8/04/2019 13:37,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2014-3603,8/04/2019 13:22,4/04/2019 14:29,4.3,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2015-5462,8/04/2019 13:18,3/04/2019 21:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-5384,8/04/2019 13:15,3/04/2019 21:29,6.8,384, Session Fixation,nan
CVE-2019-10011,8/04/2019 12:11,25/03/2019 19:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-20222,8/04/2019 11:56,4/04/2019 16:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9977,8/04/2019 1:58,24/03/2019 14:29,6.8,20, Improper Input Validation,nan
CVE-2019-10044,8/04/2019 1:50,25/03/2019 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-4326,8/04/2019 1:46,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4329,8/04/2019 1:36,3/04/2019 18:29,5.0,19, Data Processing Errors,nan
CVE-2018-4352,8/04/2019 1:30,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-11830,7/04/2019 2:47,4/04/2019 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-11966,7/04/2019 2:21,4/04/2019 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-11971,7/04/2019 2:15,4/04/2019 15:29,4.9,200, Information Exposure,nan
CVE-2019-10888,7/04/2019 1:58,5/04/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10244,7/04/2019 1:24,4/04/2019 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2019-9200,6/04/2019 22:29,26/02/2019 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-19210,5/04/2019 21:29,12/11/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-17000,5/04/2019 21:29,13/09/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-11410,5/04/2019 21:29,24/05/2018 7:29,7.5,416, Use After Free,nan
CVE-2018-4401,5/04/2019 20:31,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4372,5/04/2019 20:25,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4373,5/04/2019 20:17,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10844,5/04/2019 20:09,4/04/2019 5:29,7.5,20, Improper Input Validation,nan
CVE-2018-4340,5/04/2019 20:06,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4382,5/04/2019 19:57,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4343,5/04/2019 19:52,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10856,5/04/2019 19:45,4/04/2019 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-4344,5/04/2019 19:43,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4327,5/04/2019 19:42,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4429,5/04/2019 19:36,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4333,5/04/2019 19:34,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4420,5/04/2019 19:29,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4425,5/04/2019 19:20,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4430,5/04/2019 19:19,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2019-6607,5/04/2019 19:16,28/03/2019 21:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-4383,5/04/2019 19:15,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4435,5/04/2019 19:06,3/04/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4354,5/04/2019 19:05,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4335,5/04/2019 19:03,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4319,5/04/2019 18:57,3/04/2019 18:29,5.8,254, 7PK – Security Features,nan
CVE-2018-4436,5/04/2019 18:54,3/04/2019 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-4280,5/04/2019 18:49,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4445,5/04/2019 18:44,3/04/2019 18:29,4.0,200, Information Exposure,nan
CVE-2017-7151,5/04/2019 18:32,3/04/2019 18:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4426,5/04/2019 18:22,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4446,5/04/2019 18:20,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4126,5/04/2019 18:18,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4427,5/04/2019 18:16,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4449,5/04/2019 18:14,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4461,5/04/2019 18:09,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4419,5/04/2019 18:00,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4462,5/04/2019 17:53,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4463,5/04/2019 17:37,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4195,5/04/2019 17:34,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-3824,5/04/2019 17:29,6/03/2019 15:29,4.0,275, Permission Issues,nan
CVE-2019-7432,5/04/2019 17:21,21/03/2019 16:01,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-4434,5/04/2019 17:14,3/04/2019 18:29,6.6,125, Out-of-bounds Read,nan
CVE-2018-4439,5/04/2019 17:11,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4440,5/04/2019 17:08,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4447,5/04/2019 17:03,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4416,5/04/2019 17:01,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4362,5/04/2019 16:54,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4409,5/04/2019 16:51,3/04/2019 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-4450,5/04/2019 16:50,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4465,5/04/2019 16:43,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4368,5/04/2019 16:42,3/04/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-4470,5/04/2019 16:37,3/04/2019 18:29,4.3,254, 7PK – Security Features,nan
CVE-2018-4413,5/04/2019 16:25,3/04/2019 18:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4411,5/04/2019 16:18,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4402,5/04/2019 16:15,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4403,5/04/2019 16:14,3/04/2019 18:29,4.3,200, Information Exposure,nan
CVE-2018-4399,5/04/2019 16:13,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4357,5/04/2019 16:13,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4392,5/04/2019 16:12,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4389,5/04/2019 16:11,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4431,5/04/2019 16:08,3/04/2019 18:29,4.9,200, Information Exposure,nan
CVE-2018-4437,5/04/2019 16:05,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4398,5/04/2019 16:05,3/04/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-4442,5/04/2019 15:58,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4359,5/04/2019 15:58,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4386,5/04/2019 15:56,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4441,5/04/2019 15:49,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4387,5/04/2019 15:49,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-4438,5/04/2019 15:48,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4388,5/04/2019 15:48,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-4414,5/04/2019 15:43,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4464,5/04/2019 15:40,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4394,5/04/2019 15:36,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4443,5/04/2019 15:33,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4358,5/04/2019 15:32,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4397,5/04/2019 15:30,3/04/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-4415,5/04/2019 15:27,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4356,5/04/2019 15:26,3/04/2019 18:29,5.0,275, Permission Issues,nan
CVE-2018-4421,5/04/2019 15:24,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4355,5/04/2019 15:22,3/04/2019 18:29,4.3,200, Information Exposure,nan
CVE-2018-4314,5/04/2019 15:18,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2019-9743,5/04/2019 15:16,26/03/2019 20:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-4410,5/04/2019 15:14,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4422,5/04/2019 15:12,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6605,5/04/2019 15:04,28/03/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-4363,5/04/2019 15:04,3/04/2019 18:29,7.1,20, Improper Input Validation,nan
CVE-2019-6606,5/04/2019 15:02,28/03/2019 21:29,4.0,399, Resource Management Errors,nan
CVE-2018-4423,5/04/2019 15:00,3/04/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4424,5/04/2019 14:57,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4336,5/04/2019 14:53,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4374,5/04/2019 14:50,3/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4369,5/04/2019 14:49,3/04/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-4375,5/04/2019 14:48,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4376,5/04/2019 14:45,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4293,5/04/2019 14:45,3/04/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-4261,5/04/2019 14:42,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4385,5/04/2019 14:35,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4377,5/04/2019 14:33,3/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4396,5/04/2019 14:32,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4393,5/04/2019 14:31,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4417,5/04/2019 14:29,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4418,5/04/2019 14:24,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4400,5/04/2019 14:14,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4379,5/04/2019 14:11,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-4317,5/04/2019 14:11,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2018-4406,5/04/2019 14:07,3/04/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-4346,5/04/2019 14:06,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4407,5/04/2019 14:04,3/04/2019 18:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4337,5/04/2019 14:04,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4408,5/04/2019 14:02,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4378,5/04/2019 13:52,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4345,5/04/2019 13:48,3/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4341,5/04/2019 13:42,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4384,5/04/2019 13:39,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4334,5/04/2019 13:31,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4338,5/04/2019 13:22,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4342,5/04/2019 12:54,3/04/2019 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-4347,5/04/2019 12:41,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2018-4318,5/04/2019 12:36,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2018-4350,5/04/2019 12:32,3/04/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4348,5/04/2019 12:26,3/04/2019 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-4315,5/04/2019 12:21,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2017-3164,5/04/2019 11:29,8/03/2019 21:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1731,5/04/2019 7:29,3/04/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11840,5/04/2019 7:29,18/09/2018 18:29,7.2,415, Double Free,nan
CVE-2018-11827,5/04/2019 7:29,18/09/2018 18:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-11299,5/04/2019 7:29,18/09/2018 18:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-11294,5/04/2019 7:29,18/09/2018 18:29,5.8,20, Improper Input Validation,nan
CVE-2019-9895,5/04/2019 5:29,21/03/2019 16:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3871,5/04/2019 5:29,21/03/2019 21:29,6.5,20, Improper Input Validation,nan
CVE-2019-6978,5/04/2019 0:29,28/01/2019 8:29,7.5,415, Double Free,nan
CVE-2018-6197,5/04/2019 0:29,25/01/2018 3:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-20549,5/04/2019 0:29,28/12/2018 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20548,5/04/2019 0:29,28/12/2018 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20547,5/04/2019 0:29,28/12/2018 16:29,5.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20546,5/04/2019 0:29,28/12/2018 16:29,5.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20545,5/04/2019 0:29,28/12/2018 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-20544,5/04/2019 0:29,28/12/2018 16:29,4.3,369, Divide By Zero,nan
CVE-2018-12208,4/04/2019 22:29,14/03/2019 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12198,4/04/2019 22:29,14/03/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-12192,4/04/2019 22:29,14/03/2019 20:29,7.2,287, Improper Authentication,nan
CVE-2018-4282,4/04/2019 21:00,3/04/2019 18:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-4308,4/04/2019 20:59,3/04/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4305,4/04/2019 20:14,3/04/2019 18:29,3.3,20, Improper Input Validation,nan
CVE-2018-4303,4/04/2019 20:14,3/04/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4306,4/04/2019 20:09,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2018-4191,4/04/2019 20:03,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4287,4/04/2019 19:57,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4307,4/04/2019 19:55,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4286,4/04/2019 19:54,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4197,4/04/2019 19:54,3/04/2019 18:29,6.8,416, Use After Free,nan
CVE-2018-4322,4/04/2019 19:49,3/04/2019 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-4313,4/04/2019 19:49,3/04/2019 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-4365,4/04/2019 19:48,3/04/2019 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4367,4/04/2019 19:47,3/04/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4321,4/04/2019 19:42,3/04/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-4284,4/04/2019 19:35,3/04/2019 18:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4275,4/04/2019 19:30,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6266,4/04/2019 19:29,27/11/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-18091,4/04/2019 19:29,14/03/2019 20:29,2.1,416, Use After Free,nan
CVE-2018-18090,4/04/2019 19:29,14/03/2019 20:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-18089,4/04/2019 19:29,14/03/2019 20:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-12224,4/04/2019 19:29,14/03/2019 20:29,2.1,200, Information Exposure,nan
CVE-2018-12222,4/04/2019 19:29,14/03/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-12221,4/04/2019 19:29,14/03/2019 20:29,4.6,20, Improper Input Validation,nan
CVE-2018-12219,4/04/2019 19:29,14/03/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-12216,4/04/2019 19:29,14/03/2019 20:29,7.2,20, Improper Input Validation,nan
CVE-2018-12215,4/04/2019 19:29,14/03/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-12214,4/04/2019 19:29,14/03/2019 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12213,4/04/2019 19:29,14/03/2019 20:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12212,4/04/2019 19:29,14/03/2019 20:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12211,4/04/2019 19:29,14/03/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-4325,4/04/2019 19:28,3/04/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-4285,4/04/2019 19:28,3/04/2019 18:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4331,4/04/2019 19:21,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4328,4/04/2019 19:17,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4269,4/04/2019 19:12,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4332,4/04/2019 19:10,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4316,4/04/2019 19:01,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4153,4/04/2019 19:01,3/04/2019 18:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-13911,4/04/2019 18:53,3/04/2019 18:29,9.3,20, Improper Input Validation,nan
CVE-2018-4323,4/04/2019 18:49,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4145,4/04/2019 18:47,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4178,4/04/2019 18:44,3/04/2019 18:29,2.1,275, Permission Issues,nan
CVE-2018-4289,4/04/2019 18:42,3/04/2019 18:29,7.1,200, Information Exposure,nan
CVE-2018-4299,4/04/2019 18:37,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4288,4/04/2019 18:34,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4304,4/04/2019 18:33,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4291,4/04/2019 18:23,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4309,4/04/2019 18:09,3/04/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5757,4/04/2019 17:42,1/04/2019 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-10686,4/04/2019 16:58,1/04/2019 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-4248,4/04/2019 16:53,3/04/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-5891,4/04/2019 16:51,1/04/2019 16:29,5.0,284, Improper Access Control,nan
CVE-2019-5890,4/04/2019 16:45,1/04/2019 16:29,9.0,287, Improper Authentication,nan
CVE-2018-4203,4/04/2019 16:40,3/04/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-10654,4/04/2019 16:39,30/03/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4263,4/04/2019 16:32,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4264,4/04/2019 16:26,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4266,4/04/2019 16:13,3/04/2019 18:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4295,4/04/2019 15:56,3/04/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-4216,4/04/2019 15:54,3/04/2019 18:29,4.3,275, Permission Issues,nan
CVE-2018-4265,4/04/2019 15:40,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3847,4/04/2019 15:29,27/03/2019 13:29,6.5,20, Improper Input Validation,nan
CVE-2018-4267,4/04/2019 15:20,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1010260,4/04/2019 15:09,2/04/2019 15:29,9.3,284, Improper Access Control,nan
CVE-2018-4272,4/04/2019 14:57,3/04/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4268,4/04/2019 14:31,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15180,4/04/2019 14:27,2/04/2019 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-4260,4/04/2019 14:23,3/04/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4259,4/04/2019 14:12,3/04/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4279,4/04/2019 14:10,3/04/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2019-5524,4/04/2019 13:32,2/04/2019 15:29,9.0,787, Out-of-bounds Write,nan
CVE-2019-5514,4/04/2019 13:30,1/04/2019 21:30,6.8,20, Improper Input Validation,nan
CVE-2018-4270,4/04/2019 13:17,3/04/2019 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4276,4/04/2019 13:05,3/04/2019 18:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-4274,4/04/2019 12:52,3/04/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-18035,4/04/2019 12:36,2/04/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5463,4/04/2019 12:21,3/04/2019 20:29,7.5,285, Improper Authorization,nan
CVE-2019-10723,4/04/2019 12:12,3/04/2019 18:29,4.3,399, Resource Management Errors,nan
CVE-2015-5606,4/04/2019 11:50,3/04/2019 19:29,5.0,20, Improper Input Validation,nan
CVE-2019-9896,4/04/2019 11:29,21/03/2019 16:01,4.6,20, Improper Input Validation,nan
CVE-2018-6551,4/04/2019 11:29,2/02/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000409,4/04/2019 11:29,1/02/2018 4:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8023,4/04/2019 7:29,1/04/2019 21:29,10.0,287, Improper Authentication,nan
CVE-2019-10655,4/04/2019 2:23,30/03/2019 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5523,4/04/2019 2:08,1/04/2019 18:29,7.5,384, Session Fixation,nan
CVE-2019-10673,4/04/2019 1:45,3/04/2019 5:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12201,3/04/2019 22:29,14/03/2019 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16748,3/04/2019 22:29,20/08/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2017-16744,3/04/2019 22:29,20/08/2018 21:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6603,3/04/2019 20:38,28/03/2019 21:29,5.0,20, Improper Input Validation,nan
CVE-2019-1652,3/04/2019 20:29,24/01/2019 15:29,9.0,20, Improper Input Validation,nan
CVE-2018-4053,3/04/2019 18:55,2/04/2019 16:29,2.1,20, Improper Input Validation,nan
CVE-2019-6602,3/04/2019 18:17,28/03/2019 21:29,5.0,254, 7PK – Security Features,nan
CVE-2018-4052,3/04/2019 17:14,2/04/2019 16:29,2.1,200, Information Exposure,nan
CVE-2019-10714,3/04/2019 16:55,2/04/2019 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1000517,3/04/2019 15:29,26/06/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15873,3/04/2019 15:29,24/10/2017 20:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9645,3/04/2019 15:29,12/03/2017 6:59,2.1,20, Improper Input Validation,nan
CVE-2019-7642,3/04/2019 15:27,25/03/2019 22:29,5.0,287, Improper Authentication,nan
CVE-2019-10707,3/04/2019 14:48,2/04/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5889,3/04/2019 13:45,1/04/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9624,3/04/2019 13:43,7/03/2019 5:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-9199,3/04/2019 13:42,26/02/2019 23:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-6250,3/04/2019 13:38,13/01/2019 15:29,9.0,190, Integer Overflow or Wraparound,nan
CVE-2018-20593,3/04/2019 13:37,30/12/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20592,3/04/2019 13:36,30/12/2018 18:29,4.3,416, Use After Free,nan
CVE-2019-5888,3/04/2019 13:34,1/04/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10684,3/04/2019 13:26,1/04/2019 16:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10708,3/04/2019 12:57,2/04/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20191,3/04/2019 12:48,20/12/2018 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18882,3/04/2019 12:48,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18881,3/04/2019 12:48,21/03/2019 16:00,6.8,254, 7PK – Security Features,nan
CVE-2018-20005,3/04/2019 12:45,10/12/2018 6:29,4.3,416, Use After Free,nan
CVE-2018-20004,3/04/2019 12:42,10/12/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5802,3/04/2019 12:41,7/12/2018 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18710,3/04/2019 12:39,29/10/2018 12:29,2.1,200, Information Exposure,nan
CVE-2018-18586,3/04/2019 12:32,23/10/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8020,3/04/2019 12:09,31/07/2018 13:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-8019,3/04/2019 12:08,31/07/2018 13:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-12896,3/04/2019 12:04,2/07/2018 17:29,2.1,190, Integer Overflow or Wraparound,nan
CVE-2018-9128,3/04/2019 11:41,1/04/2018 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000100,3/04/2019 11:41,6/03/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11884,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11882,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11880,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11879,3/04/2019 11:29,29/10/2018 18:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-11877,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11876,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11875,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11874,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11873,3/04/2019 11:29,29/10/2018 18:29,7.2,20, Improper Input Validation,nan
CVE-2018-11872,3/04/2019 11:29,29/10/2018 18:29,7.2,20, Improper Input Validation,nan
CVE-2018-11871,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11870,3/04/2019 11:29,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3828,3/04/2019 9:29,27/03/2019 13:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16859,3/04/2019 9:29,29/11/2018 18:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-9517,3/04/2019 1:29,7/12/2018 23:29,7.2,416, Use After Free,nan
CVE-2018-18021,3/04/2019 1:29,7/10/2018 6:29,3.6,20, Improper Input Validation,nan
CVE-2018-14616,3/04/2019 1:29,27/07/2018 4:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-14614,3/04/2019 1:29,27/07/2018 4:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-14613,3/04/2019 1:29,27/07/2018 4:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-14612,3/04/2019 1:29,27/07/2018 4:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-14611,3/04/2019 1:29,27/07/2018 4:29,7.1,416, Use After Free,nan
CVE-2018-14610,3/04/2019 1:29,27/07/2018 4:29,7.1,787, Out-of-bounds Write,nan
CVE-2018-13100,3/04/2019 1:29,3/07/2018 10:29,4.3,369, Divide By Zero,nan
CVE-2018-13099,3/04/2019 1:29,3/07/2018 10:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-13097,3/04/2019 1:29,3/07/2018 10:29,4.3,369, Divide By Zero,nan
CVE-2017-18249,3/04/2019 1:29,26/03/2018 20:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-10251,2/04/2019 23:25,28/03/2019 15:29,4.3,310, Cryptographic Issues,nan
CVE-2019-9960,2/04/2019 20:39,24/03/2019 1:29,7.5,284, Improper Access Control,nan
CVE-2018-17989,2/04/2019 19:24,1/04/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17990,2/04/2019 19:20,1/04/2019 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15840,2/04/2019 19:12,29/03/2019 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9692,2/04/2019 18:42,11/03/2019 18:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9759,2/04/2019 18:40,2/04/2019 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8955,2/04/2019 18:30,21/02/2019 23:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-6268,2/04/2019 18:30,13/02/2019 22:29,9.3,416, Use After Free,nan
CVE-2018-18384,2/04/2019 18:29,16/10/2018 16:50,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12558,2/04/2019 18:29,20/06/2018 14:29,5.0,407, Inefficient Algorithmic Complexity,nan
CVE-2018-10916,2/04/2019 18:29,1/08/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-1000808,2/04/2019 18:29,8/10/2018 15:29,4.3,404, Improper Resource Shutdown or Release,nan
CVE-2017-6284,2/04/2019 18:29,6/03/2018 16:29,2.1,326, Inadequate Encryption Strength,nan
CVE-2017-0330,2/04/2019 18:29,5/04/2017 14:59,2.6,200, Information Exposure,nan
CVE-2019-3489,2/04/2019 17:57,1/04/2019 20:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-6441,2/04/2019 17:49,21/03/2019 16:01,10.0,255, Credentials Management,nan
CVE-2019-7440,2/04/2019 17:29,21/03/2019 16:01,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6715,2/04/2019 17:27,1/04/2019 20:29,5.0,200, Information Exposure,nan
CVE-2018-13798,2/04/2019 16:34,21/03/2019 19:29,7.8,20, Improper Input Validation,nan
CVE-2019-6536,2/04/2019 16:29,27/03/2019 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-8997,2/04/2019 16:22,21/03/2019 18:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-20026,2/04/2019 15:29,19/02/2019 21:29,5.0,254, 7PK – Security Features,nan
CVE-2018-20025,2/04/2019 15:29,19/02/2019 21:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2019-6716,2/04/2019 15:27,21/03/2019 16:01,7.5,200, Information Exposure,nan
CVE-2019-6973,2/04/2019 14:30,21/03/2019 16:01,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9860,2/04/2019 14:03,27/03/2019 15:29,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2017-16231,2/04/2019 13:55,21/03/2019 15:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3968,2/04/2019 13:49,21/03/2019 17:29,4.4,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-6481,2/04/2019 13:16,29/03/2019 14:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-9362,2/04/2019 12:53,25/03/2019 16:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9132,2/04/2019 12:52,1/04/2019 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-9376,2/04/2019 12:40,25/03/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-18501,2/04/2019 7:29,5/02/2019 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18500,2/04/2019 7:29,5/02/2019 21:29,7.5,416, Use After Free,nan
CVE-2018-14661,2/04/2019 7:29,31/10/2018 20:29,4.0,134, Use of Externally-Controlled Format String,nan
CVE-2018-14654,2/04/2019 7:29,31/10/2018 19:29,8.5,20, Improper Input Validation,nan
CVE-2018-14653,2/04/2019 7:29,31/10/2018 19:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14652,2/04/2019 7:29,31/10/2018 19:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14651,2/04/2019 7:29,31/10/2018 22:29,6.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-11803,2/04/2019 7:29,5/02/2019 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-10929,2/04/2019 7:29,4/09/2018 16:29,6.5,20, Improper Input Validation,nan
CVE-2018-10928,2/04/2019 7:29,4/09/2018 15:29,6.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-10926,2/04/2019 7:29,4/09/2018 15:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10923,2/04/2019 7:29,4/09/2018 14:29,5.5,20, Improper Input Validation,nan
CVE-2018-10914,2/04/2019 7:29,4/09/2018 14:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-10913,2/04/2019 7:29,4/09/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-10911,2/04/2019 7:29,4/09/2018 14:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-10907,2/04/2019 7:29,4/09/2018 13:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10904,2/04/2019 7:29,4/09/2018 13:29,6.5,426, Untrusted Search Path,nan
CVE-2017-9814,2/04/2019 7:29,17/07/2017 13:18,5.0,125, Out-of-bounds Read,nan
CVE-2016-9082,2/04/2019 7:29,3/02/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-5824,2/04/2019 7:29,27/01/2017 22:59,4.3,416, Use After Free,nan
CVE-2016-5823,2/04/2019 7:29,27/01/2017 22:59,4.3,416, Use After Free,nan
CVE-2019-7400,1/04/2019 22:29,5/02/2019 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5953,1/04/2019 21:30,7/08/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-20511,1/04/2019 21:29,27/12/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-16862,1/04/2019 21:29,26/11/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-10880,1/04/2019 20:29,25/07/2018 13:29,7.1,787, Out-of-bounds Write,nan
CVE-2018-10877,1/04/2019 19:29,18/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-10876,1/04/2019 19:29,26/07/2018 18:29,4.9,416, Use After Free,nan
CVE-2018-20378,1/04/2019 19:28,29/03/2019 15:29,5.4,20, Improper Input Validation,nan
CVE-2019-10477,1/04/2019 19:25,29/03/2019 14:29,5.0,19, Data Processing Errors,nan
CVE-2019-10663,1/04/2019 18:56,30/03/2019 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10061,1/04/2019 18:54,26/03/2019 1:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6492,1/04/2019 18:49,21/03/2019 16:01,2.1,200, Information Exposure,nan
CVE-2017-18111,1/04/2019 18:41,29/03/2019 14:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-3985,1/04/2019 18:29,21/03/2019 16:29,7.5,415, Double Free,nan
CVE-2018-4003,1/04/2019 18:25,21/03/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4011,1/04/2019 18:23,21/03/2019 16:29,5.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-4030,1/04/2019 18:19,21/03/2019 16:29,5.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2019-10276,1/04/2019 18:15,29/03/2019 7:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7251,1/04/2019 18:14,28/03/2019 17:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2017-2752,1/04/2019 18:01,27/03/2019 17:29,2.1,254, 7PK – Security Features,nan
CVE-2017-16253,1/04/2019 17:47,21/03/2019 17:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16254,1/04/2019 17:35,21/03/2019 17:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16255,1/04/2019 17:24,21/03/2019 17:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1000012,1/04/2019 17:19,4/02/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-19488,1/04/2019 16:29,21/03/2019 16:00,7.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-19487,1/04/2019 16:29,21/03/2019 16:00,5.0,200, Information Exposure,nan
CVE-2019-7161,1/04/2019 15:18,21/03/2019 16:01,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-10646,1/04/2019 15:05,30/03/2019 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10647,1/04/2019 15:01,30/03/2019 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-7198,1/04/2019 14:59,1/04/2019 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0127,1/04/2019 14:57,18/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-10648,1/04/2019 14:52,30/03/2019 13:29,7.5,20, Improper Input Validation,nan
CVE-2019-10644,1/04/2019 14:40,30/03/2019 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10250,1/04/2019 14:17,28/03/2019 14:29,4.3,310, Cryptographic Issues,nan
CVE-2017-18105,1/04/2019 14:15,29/03/2019 14:29,6.8,384, Session Fixation,nan
CVE-2019-10652,1/04/2019 14:10,30/03/2019 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-18106,1/04/2019 14:06,29/03/2019 14:29,6.0,287, Improper Authentication,nan
CVE-2018-14745,1/04/2019 14:00,21/03/2019 16:00,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18108,1/04/2019 13:58,29/03/2019 14:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-10068,1/04/2019 13:52,26/03/2019 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-9695,1/04/2019 13:48,29/03/2019 14:29,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-18110,1/04/2019 13:12,29/03/2019 14:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-18109,1/04/2019 12:40,29/03/2019 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-9604,1/04/2019 12:15,29/03/2019 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9605,1/04/2019 12:01,29/03/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9942,1/04/2019 8:29,23/03/2019 15:29,4.3,200, Information Exposure,nan
CVE-2017-18269,1/04/2019 8:29,18/05/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1428,1/04/2019 8:29,29/08/2017 21:29,5.8,20, Improper Input Validation,nan
CVE-2017-1427,1/04/2019 8:29,29/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9787,31/03/2019 22:29,14/03/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6392,31/03/2019 2:29,29/01/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-1000460,31/03/2019 2:29,3/01/2018 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-1872,31/03/2019 2:29,26/07/2015 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17937,30/03/2019 17:29,13/03/2019 17:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5617,30/03/2019 2:29,16/03/2017 15:59,5.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-9687,30/03/2019 1:29,11/03/2019 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8381,30/03/2019 1:29,17/02/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8377,30/03/2019 1:29,17/02/2019 2:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-8376,30/03/2019 1:29,17/02/2019 2:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-0500,29/03/2019 19:01,11/07/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13006,29/03/2019 18:58,29/06/2018 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13005,29/03/2019 18:57,29/06/2018 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-8026,29/03/2019 18:44,5/07/2018 14:29,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-10262,29/03/2019 17:51,28/03/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9706,29/03/2019 17:41,12/03/2019 1:29,2.1,416, Use After Free,nan
CVE-2019-9705,29/03/2019 17:41,12/03/2019 1:29,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-19466,29/03/2019 17:38,27/03/2019 17:29,5.0,255, Credentials Management,nan
CVE-2019-9961,29/03/2019 17:09,26/03/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18408,29/03/2019 16:41,17/10/2018 4:29,7.5,416, Use After Free,nan
CVE-2017-2748,29/03/2019 16:39,27/03/2019 17:29,5.0,254, 7PK – Security Features,nan
CVE-2019-5719,29/03/2019 16:38,8/01/2019 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18407,29/03/2019 16:33,17/10/2018 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-5718,29/03/2019 16:24,8/01/2019 23:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12892,29/03/2019 16:24,2/07/2018 17:29,6.5,200, Information Exposure,nan
CVE-2018-12601,29/03/2019 16:23,20/06/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12227,29/03/2019 16:22,12/06/2018 4:29,5.0,200, Information Exposure,nan
CVE-2018-11406,29/03/2019 16:22,13/06/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11386,29/03/2019 16:22,13/06/2018 16:29,4.3,613, Insufficient Session Expiration,nan
CVE-2018-0225,29/03/2019 16:22,8/06/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5717,29/03/2019 16:17,8/01/2019 23:29,4.3,20, Improper Input Validation,nan
CVE-2019-5716,29/03/2019 16:15,8/01/2019 23:29,4.3,20, Improper Input Validation,nan
CVE-2019-7391,29/03/2019 15:13,21/03/2019 16:01,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18365,29/03/2019 15:03,28/03/2019 6:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-11233,29/03/2019 14:46,30/05/2018 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-1000300,29/03/2019 14:45,24/05/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11345,29/03/2019 14:35,22/05/2018 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11342,29/03/2019 14:34,22/05/2018 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5808,29/03/2019 14:29,7/12/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1259,29/03/2019 14:27,11/05/2018 20:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5801,29/03/2019 14:21,7/12/2018 22:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-5800,29/03/2019 14:20,7/12/2018 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10260,29/03/2019 13:48,28/03/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7858,29/03/2019 13:18,12/03/2018 21:29,2.1,125, Out-of-bounds Read,nan
CVE-2019-7148,29/03/2019 2:21,29/01/2019 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13672,29/03/2019 1:29,1/09/2017 13:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-3632,29/03/2019 1:25,10/07/2018 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8985,28/03/2019 20:29,21/02/2019 19:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5684,28/03/2019 20:29,6/01/2017 21:59,6.8,787, Out-of-bounds Write,nan
CVE-2018-19859,28/03/2019 20:04,5/12/2018 11:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4852,28/03/2019 19:29,18/11/2015 15:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9864,28/03/2019 19:23,28/03/2019 15:29,4.0,20, Improper Input Validation,nan
CVE-2018-17143,28/03/2019 19:18,17/09/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-17142,28/03/2019 19:11,17/09/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-17075,28/03/2019 18:54,16/09/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2019-9862,28/03/2019 18:37,27/03/2019 14:29,3.3,200, Information Exposure,nan
CVE-2018-20678,28/03/2019 18:28,28/03/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6330,28/03/2019 18:23,28/03/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17847,28/03/2019 18:13,1/10/2018 8:29,5.0,20, Improper Input Validation,nan
CVE-2019-10254,28/03/2019 18:12,28/03/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000222,28/03/2019 17:55,20/08/2018 20:29,6.8,415, Double Free,nan
CVE-2019-10231,28/03/2019 17:44,27/03/2019 17:29,7.5,287, Improper Authentication,nan
CVE-2018-18798,28/03/2019 17:35,21/03/2019 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-10232,28/03/2019 17:34,27/03/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3629,28/03/2019 17:24,10/07/2018 21:29,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13134,28/03/2019 16:50,4/07/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3628,28/03/2019 16:41,10/07/2018 21:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9764,28/03/2019 16:40,26/03/2019 14:29,5.8,254, 7PK – Security Features,nan
CVE-2019-10060,28/03/2019 16:20,26/03/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14682,28/03/2019 15:23,28/07/2018 23:29,6.8,682, Incorrect Calculation,nan
CVE-2018-14681,28/03/2019 15:22,28/07/2018 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-9863,28/03/2019 15:11,27/03/2019 14:29,10.0,326, Inadequate Encryption Strength,nan
CVE-2018-14680,28/03/2019 15:11,28/07/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2017-14448,28/03/2019 15:08,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14679,28/03/2019 15:07,28/07/2018 23:29,4.3,682, Incorrect Calculation,nan
CVE-2017-14449,28/03/2019 15:06,24/04/2018 19:29,6.8,415, Double Free,nan
CVE-2017-14442,28/03/2019 14:56,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14441,28/03/2019 14:52,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-14440,28/03/2019 14:51,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18344,28/03/2019 14:32,26/07/2018 19:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-14450,28/03/2019 14:22,24/04/2018 19:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9401,28/03/2019 13:59,23/01/2017 21:59,2.1,416, Use After Free,nan
CVE-2018-15585,28/03/2019 13:54,27/03/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0204,28/03/2019 13:45,25/03/2019 22:29,9.3,20, Improper Input Validation,nan
CVE-2018-3839,28/03/2019 13:29,10/04/2018 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3838,28/03/2019 13:29,10/04/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-3837,28/03/2019 13:29,10/04/2018 21:29,4.3,200, Information Exposure,nan
CVE-2019-10237,28/03/2019 12:21,27/03/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-10238,28/03/2019 12:18,27/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19856,28/03/2019 11:48,26/03/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14228,28/03/2019 5:29,9/09/2017 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12122,28/03/2019 5:29,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11111,28/03/2019 5:29,8/07/2017 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10686,28/03/2019 5:29,29/06/2017 23:29,6.8,416, Use After Free,nan
CVE-2018-20125,28/03/2019 2:05,20/12/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-20124,28/03/2019 1:48,20/12/2018 23:29,2.1,125, Out-of-bounds Read,nan
CVE-2016-3088,27/03/2019 20:29,1/06/2016 20:59,7.5,20, Improper Input Validation,nan
CVE-2016-0782,27/03/2019 20:29,5/08/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0734,27/03/2019 20:29,7/04/2016 19:59,4.3,254, 7PK – Security Features,nan
CVE-2015-5254,27/03/2019 20:29,8/01/2016 19:59,7.5,20, Improper Input Validation,nan
CVE-2015-1830,27/03/2019 20:29,19/08/2015 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8110,27/03/2019 20:29,12/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3612,27/03/2019 20:29,24/08/2015 14:59,7.5,287, Improper Authentication,nan
CVE-2014-3600,27/03/2019 20:29,27/10/2017 19:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-3579,27/03/2019 20:29,27/10/2017 19:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-3576,27/03/2019 20:29,14/08/2015 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9166,27/03/2019 19:57,21/03/2019 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-8981,27/03/2019 19:54,26/03/2019 2:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13440,27/03/2019 19:32,8/07/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-13406,27/03/2019 19:31,6/07/2018 14:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-9145,27/03/2019 19:23,30/03/2018 8:29,4.3,20, Improper Input Validation,nan
CVE-2017-9344,27/03/2019 19:12,2/06/2017 5:29,5.0,369, Divide By Zero,nan
CVE-2018-1999010,27/03/2019 19:11,23/07/2018 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2014-1904,27/03/2019 18:57,20/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7711,27/03/2019 18:27,26/03/2019 1:29,5.0,20, Improper Input Validation,nan
CVE-2019-10039,27/03/2019 18:24,25/03/2019 19:29,5.0,285, Improper Authorization,nan
CVE-2015-4047,27/03/2019 18:04,29/05/2015 15:59,7.8,476, NULL Pointer Dereference,nan
CVE-2018-15815,27/03/2019 17:59,26/03/2019 20:29,4.3,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-15814,27/03/2019 17:59,26/03/2019 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15813,27/03/2019 17:59,26/03/2019 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15532,27/03/2019 17:55,21/03/2019 16:00,2.1,200, Information Exposure,nan
CVE-2018-15816,27/03/2019 17:42,26/03/2019 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20642,27/03/2019 17:36,21/03/2019 16:00,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5927,27/03/2019 17:31,27/03/2019 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19783,27/03/2019 17:26,21/03/2019 16:00,7.5,287, Improper Authentication,nan
CVE-2018-4058,27/03/2019 16:57,21/03/2019 16:00,4.0,16, Configuration,nan
CVE-2018-15817,27/03/2019 16:55,26/03/2019 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-10118,27/03/2019 16:49,27/03/2019 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10042,27/03/2019 16:31,25/03/2019 19:29,7.8,285, Improper Authorization,nan
CVE-2019-10041,27/03/2019 16:31,25/03/2019 19:29,5.0,285, Improper Authorization,nan
CVE-2018-4059,27/03/2019 16:22,21/03/2019 16:00,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-5803,27/03/2019 16:17,12/06/2018 16:29,4.9,20, Improper Input Validation,nan
CVE-2018-12233,27/03/2019 16:11,12/06/2018 12:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11508,27/03/2019 16:11,28/05/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-11506,27/03/2019 16:10,28/05/2018 4:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20340,27/03/2019 16:09,21/03/2019 16:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10744,27/03/2019 16:09,27/03/2019 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7167,27/03/2019 15:28,13/06/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18845,27/03/2019 15:23,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2918,27/03/2019 14:41,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2908,27/03/2019 14:41,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2907,27/03/2019 14:41,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12103,27/03/2019 14:41,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12102,27/03/2019 14:41,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12101,27/03/2019 14:40,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12100,27/03/2019 14:39,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12099,27/03/2019 14:39,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12086,27/03/2019 14:39,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12082,27/03/2019 14:39,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2019-7712,27/03/2019 14:36,26/03/2019 1:29,5.0,20, Improper Input Validation,nan
CVE-2018-16789,27/03/2019 14:35,21/03/2019 16:00,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-7714,27/03/2019 14:31,26/03/2019 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7713,27/03/2019 14:31,26/03/2019 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13103,27/03/2019 14:29,21/03/2019 16:00,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7715,27/03/2019 14:28,26/03/2019 2:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-18214,27/03/2019 14:20,4/03/2018 21:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-3849,27/03/2019 14:06,16/04/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3848,27/03/2019 14:06,16/04/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3846,27/03/2019 14:05,16/04/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20323,27/03/2019 14:05,21/03/2019 16:00,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5729,27/03/2019 13:54,21/03/2019 16:01,6.8,295, Improper Certificate Validation,nan
CVE-2019-1571,27/03/2019 13:38,26/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1570,27/03/2019 13:36,26/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9055,27/03/2019 13:15,26/03/2019 17:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9837,27/03/2019 13:04,21/03/2019 16:01,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-7646,27/03/2019 12:47,26/03/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10105,27/03/2019 12:29,26/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10107,27/03/2019 12:27,26/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10106,27/03/2019 12:14,26/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1569,27/03/2019 12:05,26/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9057,27/03/2019 3:00,26/03/2019 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9059,27/03/2019 2:54,26/03/2019 17:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9058,27/03/2019 2:54,26/03/2019 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9061,27/03/2019 2:53,26/03/2019 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9185,27/03/2019 1:24,7/03/2019 23:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2011-1096,27/03/2019 0:29,23/11/2012 20:55,5.0,310, Cryptographic Issues,nan
CVE-2017-12081,26/03/2019 19:24,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2006-2373,26/03/2019 19:17,13/06/2006 19:06,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-10010,26/03/2019 19:03,24/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0491,26/03/2019 18:52,5/03/2018 15:29,5.0,416, Use After Free,nan
CVE-2018-7492,26/03/2019 18:46,26/02/2018 20:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-7205,26/03/2019 18:40,20/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-10040,26/03/2019 18:35,25/03/2019 19:29,10.0,285, Improper Authorization,nan
CVE-2018-0488,26/03/2019 18:27,13/02/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0487,26/03/2019 18:20,13/02/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14575,26/03/2019 18:06,21/03/2019 16:00,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13104,26/03/2019 18:00,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15580,26/03/2019 17:59,23/10/2017 8:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-8594,26/03/2019 17:57,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8557,26/03/2019 17:57,11/07/2017 21:29,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-9993,26/03/2019 17:56,28/06/2017 6:29,5.0,200, Information Exposure,nan
CVE-2019-8904,26/03/2019 17:46,18/02/2019 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-12652,26/03/2019 17:33,25/03/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6564,26/03/2019 17:29,24/08/2015 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-6563,26/03/2019 17:29,24/08/2015 1:59,1.9,20, Improper Input Validation,nan
CVE-2019-10027,26/03/2019 17:27,25/03/2019 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8553,26/03/2019 17:20,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-7957,26/03/2019 17:15,29/04/2017 19:59,5.0,20, Improper Input Validation,nan
CVE-2019-3395,26/03/2019 17:14,25/03/2019 19:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-5131,26/03/2019 17:14,23/07/2016 19:59,6.8,416, Use After Free,nan
CVE-2016-4447,26/03/2019 17:12,9/06/2016 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1762,26/03/2019 17:11,24/03/2016 1:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7342,26/03/2019 17:06,25/03/2019 22:29,7.5,20, Improper Input Validation,nan
CVE-2019-10016,26/03/2019 16:55,25/03/2019 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3476,26/03/2019 16:49,25/03/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2019-6240,26/03/2019 16:44,25/03/2019 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7340,26/03/2019 16:41,25/03/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15583,26/03/2019 16:35,25/03/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2634,26/03/2019 16:28,18/01/2018 2:29,4.3,200, Information Exposure,nan
CVE-2019-3497,26/03/2019 16:12,21/03/2019 16:01,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-2588,26/03/2019 16:09,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-2579,26/03/2019 16:09,18/01/2018 2:29,4.3,200, Information Exposure,nan
CVE-2019-3496,26/03/2019 16:04,21/03/2019 16:01,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-0202,26/03/2019 16:02,27/03/2018 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-3495,26/03/2019 15:56,21/03/2019 16:01,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7299,26/03/2019 15:47,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17820,26/03/2019 15:45,21/12/2017 3:29,4.3,416, Use After Free,nan
CVE-2017-17819,26/03/2019 15:45,21/12/2017 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17817,26/03/2019 15:45,21/12/2017 3:29,4.3,416, Use After Free,nan
CVE-2017-17816,26/03/2019 15:45,21/12/2017 3:29,4.3,416, Use After Free,nan
CVE-2017-17815,26/03/2019 15:44,21/12/2017 3:29,4.3,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-17814,26/03/2019 15:44,21/12/2017 3:29,4.3,416, Use After Free,nan
CVE-2017-17813,26/03/2019 15:44,21/12/2017 3:29,4.3,416, Use After Free,nan
CVE-2017-17811,26/03/2019 15:38,21/12/2017 3:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17810,26/03/2019 15:38,21/12/2017 3:29,4.3,20, Improper Input Validation,nan
CVE-2019-9870,26/03/2019 15:09,21/03/2019 16:01,7.5,19, Data Processing Errors,nan
CVE-2018-20640,26/03/2019 15:04,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9867,26/03/2019 14:58,21/03/2019 16:01,4.0,255, Credentials Management,nan
CVE-2018-14724,26/03/2019 14:57,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18941,26/03/2019 14:23,31/01/2019 19:29,5.0,255, Credentials Management,nan
CVE-2019-7537,26/03/2019 14:13,21/03/2019 20:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9889,26/03/2019 14:09,21/03/2019 16:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7238,26/03/2019 14:08,21/03/2019 17:29,7.5,284, Improper Access Control,nan
CVE-2019-9868,26/03/2019 13:49,21/03/2019 16:01,4.0,255, Credentials Management,nan
CVE-2019-10014,26/03/2019 13:41,24/03/2019 22:29,4.0,284, Improper Access Control,nan
CVE-2019-9945,26/03/2019 13:38,23/03/2019 16:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-12931,26/03/2019 13:35,28/06/2018 14:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-12930,26/03/2019 13:35,28/06/2018 14:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-12929,26/03/2019 13:35,28/06/2018 14:29,4.9,416, Use After Free,nan
CVE-2018-17167,26/03/2019 13:20,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9574,26/03/2019 13:04,5/03/2019 21:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-9650,26/03/2019 13:00,11/03/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8351,26/03/2019 12:03,21/03/2019 21:29,6.4,295, Improper Certificate Validation,nan
CVE-2019-10020,25/03/2019 20:27,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-6275,25/03/2019 20:26,21/03/2019 16:01,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-10022,25/03/2019 20:26,25/03/2019 0:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-10025,25/03/2019 20:21,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-10024,25/03/2019 20:21,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-10026,25/03/2019 20:20,25/03/2019 0:29,4.3,369, Divide By Zero,nan
CVE-2019-6491,25/03/2019 20:01,21/03/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20219,25/03/2019 19:53,21/03/2019 16:00,9.3,798, Use of Hard-coded Credentials,nan
CVE-2018-20220,25/03/2019 19:52,21/03/2019 16:00,5.0,287, Improper Authentication,nan
CVE-2019-9877,25/03/2019 19:44,21/03/2019 16:01,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7223,25/03/2019 19:43,21/03/2019 16:01,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18209,25/03/2019 19:20,1/03/2018 21:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-9878,25/03/2019 19:19,21/03/2019 16:01,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7550,25/03/2019 19:19,1/03/2018 17:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-1000017,25/03/2019 19:11,17/07/2017 13:18,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-3965,25/03/2019 19:06,23/03/2019 20:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-10091,25/03/2019 19:02,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4578,25/03/2019 18:58,23/05/2016 10:59,2.1,200, Information Exposure,nan
CVE-2019-5417,25/03/2019 18:47,21/03/2019 16:01,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3483,25/03/2019 18:45,25/03/2019 17:29,6.8,200, Information Exposure,nan
CVE-2019-3482,25/03/2019 18:45,25/03/2019 17:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-3481,25/03/2019 18:44,25/03/2019 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-3479,25/03/2019 18:44,25/03/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2019-3484,25/03/2019 18:43,25/03/2019 17:29,7.2,20, Improper Input Validation,nan
CVE-2019-10015,25/03/2019 18:40,24/03/2019 22:29,6.5,20, Improper Input Validation,nan
CVE-2019-3480,25/03/2019 18:33,25/03/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20645,25/03/2019 18:31,21/03/2019 16:00,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9093,25/03/2019 18:29,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8938,25/03/2019 18:29,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9969,25/03/2019 18:27,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9968,25/03/2019 18:27,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9967,25/03/2019 18:27,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9083,25/03/2019 18:26,21/03/2019 16:01,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9094,25/03/2019 18:24,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9966,25/03/2019 18:23,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20165,25/03/2019 18:21,22/03/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11789,25/03/2019 18:10,21/03/2019 16:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20627,25/03/2019 17:59,21/03/2019 16:00,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9964,25/03/2019 17:58,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20628,25/03/2019 17:58,21/03/2019 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9963,25/03/2019 17:57,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9962,25/03/2019 17:57,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9965,25/03/2019 17:54,24/03/2019 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1803,25/03/2019 17:54,20/05/2016 10:59,6.8,476, NULL Pointer Dereference,nan
CVE-2016-1802,25/03/2019 17:54,20/05/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-1740,25/03/2019 17:54,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1817,25/03/2019 17:53,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1814,25/03/2019 17:53,20/05/2016 10:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-1748,25/03/2019 17:52,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2015-7068,25/03/2019 17:52,11/12/2015 11:59,9.3,476, NULL Pointer Dereference,nan
CVE-2016-1811,25/03/2019 17:51,20/05/2016 10:59,4.3,476, NULL Pointer Dereference,nan
CVE-2019-6274,25/03/2019 17:49,21/03/2019 16:01,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1807,25/03/2019 17:49,20/05/2016 10:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1753,25/03/2019 17:49,24/03/2016 1:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-20629,25/03/2019 17:47,21/03/2019 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1801,25/03/2019 17:47,20/05/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-1808,25/03/2019 17:46,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1784,25/03/2019 17:46,24/03/2016 1:59,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-20630,25/03/2019 17:44,21/03/2019 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1823,25/03/2019 17:44,20/05/2016 10:59,9.3,125, Out-of-bounds Read,nan
CVE-2016-1813,25/03/2019 17:44,20/05/2016 10:59,9.3,476, NULL Pointer Dereference,nan
CVE-2016-1752,25/03/2019 17:43,24/03/2016 1:59,7.1,20, Improper Input Validation,nan
CVE-2016-1755,25/03/2019 17:41,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1754,25/03/2019 17:41,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1751,25/03/2019 17:40,24/03/2016 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1819,25/03/2019 17:39,20/05/2016 10:59,9.3,416, Use After Free,nan
CVE-2016-1775,25/03/2019 17:39,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1783,25/03/2019 17:38,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1750,25/03/2019 17:38,24/03/2016 1:59,9.3,416, Use After Free,nan
CVE-2016-1727,25/03/2019 17:38,1/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20631,25/03/2019 17:37,21/03/2019 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1724,25/03/2019 17:37,1/02/2016 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4586,25/03/2019 17:35,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4584,25/03/2019 17:35,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6273,25/03/2019 17:34,21/03/2019 16:01,4.0,284, Improper Access Control,nan
CVE-2018-20636,25/03/2019 17:34,21/03/2019 16:00,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-4582,25/03/2019 17:34,22/07/2016 2:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1859,25/03/2019 17:34,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1847,25/03/2019 17:34,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20637,25/03/2019 17:33,21/03/2019 16:00,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1830,25/03/2019 17:33,20/05/2016 10:59,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1829,25/03/2019 17:33,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1828,25/03/2019 17:33,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1827,25/03/2019 17:32,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1824,25/03/2019 17:32,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5155,25/03/2019 17:29,26/02/2019 2:29,5.0,19, Data Processing Errors,nan
CVE-2016-1840,25/03/2019 17:27,20/05/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1839,25/03/2019 17:27,20/05/2016 10:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-1838,25/03/2019 17:26,20/05/2016 10:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-1837,25/03/2019 17:26,20/05/2016 10:59,4.3,416, Use After Free,nan
CVE-2016-1836,25/03/2019 17:25,20/05/2016 10:59,4.3,416, Use After Free,nan
CVE-2018-19934,25/03/2019 17:24,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1834,25/03/2019 17:24,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20638,25/03/2019 17:22,21/03/2019 16:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1833,25/03/2019 17:22,20/05/2016 10:59,4.3,125, Out-of-bounds Read,nan
CVE-2019-9939,25/03/2019 17:21,22/03/2019 8:29,5.8,287, Improper Authentication,nan
CVE-2018-20639,25/03/2019 17:16,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2476,25/03/2019 17:15,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2475,25/03/2019 17:15,2/04/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6272,25/03/2019 17:14,21/03/2019 16:01,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-7579,25/03/2019 17:14,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2018-20641,25/03/2019 17:13,21/03/2019 16:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-7578,25/03/2019 17:13,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4680,25/03/2019 17:12,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-4677,25/03/2019 17:11,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4650,25/03/2019 17:10,20/04/2017 17:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1858,25/03/2019 17:09,20/05/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-1857,25/03/2019 17:09,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1856,25/03/2019 17:09,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1855,25/03/2019 17:08,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1854,25/03/2019 17:08,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4624,25/03/2019 17:04,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4623,25/03/2019 17:04,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4622,25/03/2019 17:04,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4591,25/03/2019 17:04,22/07/2016 2:59,7.8,284, Improper Access Control,nan
CVE-2016-4589,25/03/2019 17:04,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9938,25/03/2019 17:03,22/03/2019 8:29,2.9,200, Information Exposure,nan
CVE-2018-20643,25/03/2019 17:01,21/03/2019 16:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20644,25/03/2019 16:55,21/03/2019 16:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4653,25/03/2019 16:53,22/07/2016 3:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4637,25/03/2019 16:53,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4632,25/03/2019 16:52,22/07/2016 2:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4631,25/03/2019 16:52,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4626,25/03/2019 16:52,22/07/2016 2:59,7.2,476, NULL Pointer Dereference,nan
CVE-2016-4616,25/03/2019 16:52,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4615,25/03/2019 16:52,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9914,25/03/2019 16:43,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20626,25/03/2019 16:43,21/03/2019 16:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9911,25/03/2019 16:42,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9910,25/03/2019 16:41,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7060,25/03/2019 16:33,20/07/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-7047,25/03/2019 16:31,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7038,25/03/2019 16:31,20/07/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7029,25/03/2019 16:30,20/07/2017 16:29,4.3,200, Information Exposure,nan
CVE-2017-7028,25/03/2019 16:30,20/07/2017 16:29,4.3,200, Information Exposure,nan
CVE-2005-3483,25/03/2019 16:24,3/11/2005 22:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9909,25/03/2019 16:11,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9908,25/03/2019 14:28,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7421,25/03/2019 14:23,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7417,25/03/2019 14:23,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7419,25/03/2019 14:20,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7418,25/03/2019 14:20,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7420,25/03/2019 14:19,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7539,25/03/2019 14:12,21/03/2019 21:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9904,25/03/2019 14:11,21/03/2019 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-20647,25/03/2019 13:36,21/03/2019 16:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20646,25/03/2019 13:30,21/03/2019 16:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7437,25/03/2019 13:27,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7436,25/03/2019 13:26,21/03/2019 16:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7435,25/03/2019 13:25,21/03/2019 16:01,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20736,25/03/2019 13:00,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20737,25/03/2019 12:49,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19694,25/03/2019 12:33,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15698,25/03/2019 11:35,31/01/2018 14:29,4.3,295, Improper Certificate Validation,nan
CVE-2012-0022,25/03/2019 11:33,19/01/2012 4:01,5.0,189, Numeric Errors,nan
CVE-2011-5064,25/03/2019 11:33,14/01/2012 21:55,4.3,310, Cryptographic Issues,nan
CVE-2011-5063,25/03/2019 11:33,14/01/2012 21:55,4.3,287, Improper Authentication,nan
CVE-2011-5062,25/03/2019 11:33,14/01/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3190,25/03/2019 11:33,31/08/2011 23:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2729,25/03/2019 11:33,15/08/2011 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2526,25/03/2019 11:33,14/07/2011 23:55,4.4,20, Improper Input Validation,nan
CVE-2011-2204,25/03/2019 11:33,29/06/2011 17:55,1.9,200, Information Exposure,nan
CVE-2011-1184,25/03/2019 11:33,14/01/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0013,25/03/2019 11:33,19/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2227,25/03/2019 11:32,13/07/2010 17:30,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1157,25/03/2019 11:32,23/04/2010 14:30,2.6,200, Information Exposure,nan
CVE-2009-3548,25/03/2019 11:31,12/11/2009 23:30,7.5,255, Credentials Management,nan
CVE-2009-2902,25/03/2019 11:31,28/01/2010 20:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2901,25/03/2019 11:30,28/01/2010 20:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-2693,25/03/2019 11:30,28/01/2010 20:30,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0781,25/03/2019 11:30,9/03/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0580,25/03/2019 11:30,5/06/2009 16:00,4.3,200, Information Exposure,nan
CVE-2009-0033,25/03/2019 11:30,5/06/2009 16:00,5.0,20, Improper Input Validation,nan
CVE-2008-5515,25/03/2019 11:30,16/06/2009 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4308,25/03/2019 11:30,26/02/2009 23:30,2.6,200, Information Exposure,nan
CVE-2008-3271,25/03/2019 11:30,13/10/2008 20:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-2938,25/03/2019 11:30,13/08/2008 0:41,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2370,25/03/2019 11:30,4/08/2008 1:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1947,25/03/2019 11:30,4/06/2008 19:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1232,25/03/2019 11:30,4/08/2008 1:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0128,25/03/2019 11:30,23/01/2008 2:00,5.0,16, Configuration,nan
CVE-2007-5461,25/03/2019 11:29,15/10/2007 18:17,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5342,25/03/2019 11:29,27/12/2007 22:46,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-5333,25/03/2019 11:29,12/02/2008 1:00,5.0,200, Information Exposure,nan
CVE-2007-3385,25/03/2019 11:29,14/08/2007 22:17,4.3,200, Information Exposure,nan
CVE-2007-3382,25/03/2019 11:29,14/08/2007 22:17,4.3,200, Information Exposure,nan
CVE-2007-2450,25/03/2019 11:29,14/06/2007 23:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1358,25/03/2019 11:29,10/05/2007 0:19,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7196,25/03/2019 11:29,10/05/2007 0:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4838,25/03/2019 11:29,31/12/2005 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4836,25/03/2019 11:29,31/12/2005 5:00,7.8,200, Information Exposure,nan
CVE-2005-3164,25/03/2019 11:29,6/10/2005 10:02,2.6,200, Information Exposure,nan
CVE-2002-0493,25/03/2019 11:29,12/08/2002 4:00,7.5,254, 7PK – Security Features,nan
CVE-2016-9843,25/03/2019 0:29,23/05/2017 4:29,7.5,189, Numeric Errors,nan
CVE-2016-9842,25/03/2019 0:29,23/05/2017 4:29,6.8,189, Numeric Errors,nan
CVE-2016-9841,25/03/2019 0:29,23/05/2017 4:29,7.5,189, Numeric Errors,nan
CVE-2016-9840,25/03/2019 0:29,23/05/2017 4:29,6.8,189, Numeric Errors,nan
CVE-2019-9912,22/03/2019 20:32,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9913,22/03/2019 20:30,22/03/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9915,22/03/2019 20:29,22/03/2019 0:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-9925,22/03/2019 20:25,22/03/2019 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9927,22/03/2019 20:12,22/03/2019 8:29,7.5,20, Improper Input Validation,nan
CVE-2016-4688,22/03/2019 19:58,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4679,22/03/2019 19:56,20/02/2017 8:59,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-4675,22/03/2019 19:47,20/02/2017 8:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4673,22/03/2019 19:41,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7154,22/03/2019 19:37,27/12/2017 17:08,5.6,20, Improper Input Validation,nan
CVE-2017-13868,22/03/2019 19:36,25/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2016-1722,22/03/2019 19:34,1/02/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1721,22/03/2019 19:34,1/02/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1720,22/03/2019 19:34,1/02/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1717,22/03/2019 19:32,1/02/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7061,22/03/2019 19:29,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7052,22/03/2019 19:29,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7049,22/03/2019 19:29,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7048,22/03/2019 19:28,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7046,22/03/2019 19:27,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7042,22/03/2019 19:27,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7041,22/03/2019 19:27,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7039,22/03/2019 19:25,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7037,22/03/2019 19:25,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7034,22/03/2019 19:24,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7030,22/03/2019 19:24,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7020,22/03/2019 19:23,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7019,22/03/2019 19:23,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7018,22/03/2019 19:22,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7160,22/03/2019 19:20,27/12/2017 17:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7157,22/03/2019 19:20,27/12/2017 17:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7156,22/03/2019 19:20,27/12/2017 17:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13870,22/03/2019 19:20,25/12/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13866,22/03/2019 19:19,25/12/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13856,22/03/2019 19:19,25/12/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13803,22/03/2019 19:16,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13802,22/03/2019 19:16,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13798,22/03/2019 19:15,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13796,22/03/2019 19:15,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13795,22/03/2019 19:15,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13794,22/03/2019 19:14,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13793,22/03/2019 19:14,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13792,22/03/2019 19:13,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13791,22/03/2019 19:13,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13788,22/03/2019 19:13,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13785,22/03/2019 19:12,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13784,22/03/2019 19:11,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13783,22/03/2019 19:10,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7416,22/03/2019 18:32,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20221,22/03/2019 18:21,21/03/2019 16:00,6.5,502, Deserialization of Untrusted Data,nan
CVE-2019-7429,22/03/2019 18:18,21/03/2019 16:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15818,22/03/2019 18:11,21/03/2019 16:00,6.4,20, Improper Input Validation,nan
CVE-2019-5723,22/03/2019 18:01,21/03/2019 16:01,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-7430,22/03/2019 17:56,21/03/2019 16:01,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-7431,22/03/2019 17:54,21/03/2019 16:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7433,22/03/2019 17:50,21/03/2019 16:01,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4429,22/03/2019 17:32,10/06/2016 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11452,22/03/2019 17:29,23/07/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-11451,22/03/2019 17:29,23/07/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2019-7434,22/03/2019 17:28,21/03/2019 16:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5722,22/03/2019 17:13,21/03/2019 16:01,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6724,22/03/2019 16:54,21/03/2019 16:01,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11747,22/03/2019 16:53,21/03/2019 16:00,7.5,295, Improper Certificate Validation,nan
CVE-2019-5885,22/03/2019 16:47,21/03/2019 16:01,5.0,320, Key Management Errors,nan
CVE-2018-19513,22/03/2019 16:34,21/03/2019 16:00,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-19512,22/03/2019 16:27,21/03/2019 16:00,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20525,22/03/2019 16:25,21/03/2019 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20526,22/03/2019 16:24,21/03/2019 16:00,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20648,22/03/2019 15:52,21/03/2019 16:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14486,22/03/2019 15:28,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5011,22/03/2019 14:20,21/03/2019 16:01,6.6,20, Improper Input Validation,nan
CVE-2018-17996,22/03/2019 14:04,21/03/2019 16:00,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17997,22/03/2019 13:58,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7424,22/03/2019 13:39,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6702,22/03/2019 13:28,21/03/2019 16:01,4.3,295, Improper Certificate Validation,nan
CVE-2019-6967,22/03/2019 13:25,21/03/2019 16:01,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6970,22/03/2019 13:23,21/03/2019 16:01,6.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7423,22/03/2019 12:49,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12572,22/03/2019 12:42,21/03/2019 16:00,2.1,255, Credentials Management,nan
CVE-2019-7422,22/03/2019 12:15,21/03/2019 16:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8037,22/03/2019 9:29,21/08/2017 22:29,5.0,200, Information Exposure,nan
CVE-2019-9704,21/03/2019 23:29,12/03/2019 1:29,2.1,20, Improper Input Validation,nan
CVE-2017-9525,21/03/2019 23:29,9/06/2017 16:29,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-19322,21/03/2019 22:29,21/12/2018 23:29,4.6,749, Exposed Dangerous Method or Function,nan
CVE-2017-7059,21/03/2019 21:52,20/07/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2501,21/03/2019 21:47,22/05/2017 5:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2499,21/03/2019 21:47,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2505,21/03/2019 21:46,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2504,21/03/2019 21:46,22/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2507,21/03/2019 21:37,22/05/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-2521,21/03/2019 21:31,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2524,21/03/2019 21:30,22/05/2017 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2523,21/03/2019 21:30,22/05/2017 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2522,21/03/2019 21:30,22/05/2017 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7055,21/03/2019 21:03,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7056,21/03/2019 20:56,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19514,21/03/2019 20:49,21/03/2019 16:00,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19591,21/03/2019 20:29,4/12/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-17969,21/03/2019 20:29,30/01/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-2335,21/03/2019 20:29,7/06/2016 14:06,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11529,21/03/2019 20:10,11/07/2018 16:29,6.8,416, Use After Free,nan
CVE-2017-18211,21/03/2019 19:45,1/03/2018 21:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-19511,21/03/2019 19:43,21/03/2019 16:00,4.3,287, Improper Authentication,nan
CVE-2018-19365,21/03/2019 19:38,21/03/2019 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20141,21/03/2019 19:36,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20212,21/03/2019 19:30,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13805,21/03/2019 19:29,10/10/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-20634,21/03/2019 19:20,21/03/2019 16:00,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20140,21/03/2019 19:18,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20633,21/03/2019 19:13,21/03/2019 16:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20632,21/03/2019 19:10,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16519,21/03/2019 19:09,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20635,21/03/2019 19:04,21/03/2019 16:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20121,21/03/2019 19:01,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19510,21/03/2019 18:58,21/03/2019 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12638,21/03/2019 18:54,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19509,21/03/2019 18:44,21/03/2019 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1832,21/03/2019 17:32,20/05/2016 10:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2157,21/03/2019 17:04,27/03/2015 14:59,2.1,200, Information Exposure,nan
CVE-2013-4852,21/03/2019 17:04,19/08/2013 23:55,6.8,189, Numeric Errors,nan
CVE-2013-4208,21/03/2019 17:04,19/08/2013 23:55,2.1,200, Information Exposure,nan
CVE-2013-4207,21/03/2019 17:04,19/08/2013 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4206,21/03/2019 17:04,19/08/2013 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4607,21/03/2019 17:04,23/08/2013 16:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19191,21/03/2019 17:02,21/03/2019 16:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11344,21/03/2019 16:49,22/05/2018 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20234,21/03/2019 16:29,8/03/2019 18:29,9.0,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2017-6865,21/03/2019 16:29,11/05/2017 10:29,6.1,20, Improper Input Validation,nan
CVE-2019-9835,21/03/2019 16:01,15/03/2019 18:29,5.8,284, Improper Access Control,nan
CVE-2019-9779,21/03/2019 16:01,14/03/2019 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9778,21/03/2019 16:01,14/03/2019 9:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9777,21/03/2019 16:01,14/03/2019 9:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9776,21/03/2019 16:01,14/03/2019 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9775,21/03/2019 16:01,14/03/2019 9:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-9774,21/03/2019 16:01,14/03/2019 9:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-9773,21/03/2019 16:01,14/03/2019 9:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9772,21/03/2019 16:01,14/03/2019 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9771,21/03/2019 16:01,14/03/2019 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9770,21/03/2019 16:01,14/03/2019 9:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9752,21/03/2019 16:01,13/03/2019 22:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9573,21/03/2019 16:01,5/03/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2019-9215,21/03/2019 16:01,28/02/2019 4:29,7.5,20, Improper Input Validation,nan
CVE-2019-7653,21/03/2019 16:01,9/02/2019 3:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7314,21/03/2019 16:01,4/02/2019 2:29,7.5,416, Use After Free,nan
CVE-2019-6601,21/03/2019 16:01,13/03/2019 22:29,2.1,275, Permission Issues,nan
CVE-2019-6600,21/03/2019 16:01,13/03/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6149,21/03/2019 16:01,18/03/2019 1:32,7.2,428, Unquoted Search Path or Element,nan
CVE-2019-5015,21/03/2019 16:01,8/03/2019 20:29,7.2,19, Data Processing Errors,nan
CVE-2019-3780,21/03/2019 16:01,8/03/2019 16:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-3715,21/03/2019 16:01,13/03/2019 21:29,2.1,200, Information Exposure,nan
CVE-2019-1003038,21/03/2019 16:01,8/03/2019 21:29,2.1,255, Credentials Management,nan
CVE-2019-1003036,21/03/2019 16:01,8/03/2019 21:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-1003035,21/03/2019 16:01,8/03/2019 21:29,4.0,200, Information Exposure,nan
CVE-2019-1003033,21/03/2019 16:01,8/03/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2019-1003032,21/03/2019 16:01,8/03/2019 21:29,6.5,254, 7PK – Security Features,nan
CVE-2018-7213,21/03/2019 16:00,11/03/2018 5:29,5.0,287, Improper Authentication,nan
CVE-2018-5391,21/03/2019 16:00,6/09/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-20179,21/03/2019 16:00,15/03/2019 18:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-20177,21/03/2019 16:00,15/03/2019 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-20176,21/03/2019 16:00,15/03/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-20174,21/03/2019 16:00,15/03/2019 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-19407,21/03/2019 16:00,21/11/2018 0:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-18195,21/03/2019 16:00,9/10/2018 20:29,4.3,369, Divide By Zero,nan
CVE-2018-1764,21/03/2019 16:00,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1763,21/03/2019 16:00,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1759,21/03/2019 16:00,14/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17101,21/03/2019 16:00,16/09/2018 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17100,21/03/2019 16:00,16/09/2018 21:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-1710,21/03/2019 16:00,21/09/2018 13:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16059,21/03/2019 16:00,7/09/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15471,21/03/2019 16:00,17/08/2018 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-14634,21/03/2019 16:00,25/09/2018 21:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-12900,21/03/2019 16:00,26/06/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12327,21/03/2019 16:00,20/06/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12188,21/03/2019 16:00,14/03/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-12185,21/03/2019 16:00,14/03/2019 20:29,4.6,20, Improper Input Validation,nan
CVE-2017-17721,21/03/2019 15:59,18/12/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12447,21/03/2019 15:59,7/03/2019 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0763,21/03/2019 15:59,25/02/2016 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-11207,21/03/2019 15:47,16/05/2018 15:29,4.3,369, Divide By Zero,nan
CVE-2018-11206,21/03/2019 15:16,16/05/2018 15:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11531,21/03/2019 15:04,29/05/2018 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000115,21/03/2019 14:55,5/03/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-12104,21/03/2019 14:31,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12105,21/03/2019 14:30,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2899,21/03/2019 14:27,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2014-3558,21/03/2019 14:24,30/09/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0111,21/03/2019 14:23,17/04/2014 14:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-11340,21/03/2019 13:31,22/05/2018 1:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1000015,20/03/2019 20:44,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000801,20/03/2019 19:55,6/09/2018 18:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15209,20/03/2019 19:48,8/08/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000178,20/03/2019 19:36,8/05/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5607,20/03/2019 19:23,10/04/2017 15:59,3.5,200, Information Exposure,nan
CVE-2017-1000018,20/03/2019 19:17,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-12862,20/03/2019 19:06,15/08/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6412,20/03/2019 19:04,31/01/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-5950,20/03/2019 18:58,23/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8620,20/03/2019 18:55,8/08/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10087,20/03/2019 18:49,13/04/2018 13:29,2.1,20, Improper Input Validation,nan
CVE-2018-1000098,20/03/2019 18:47,13/03/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000099,20/03/2019 18:46,13/03/2018 1:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-10124,20/03/2019 18:40,16/04/2018 14:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8618,20/03/2019 18:38,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000085,20/03/2019 18:30,13/03/2018 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10322,20/03/2019 18:27,24/04/2018 6:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-11341,20/03/2019 18:20,22/05/2018 1:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9992,20/03/2019 18:18,28/06/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11343,20/03/2019 18:10,22/05/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10196,20/03/2019 17:07,30/05/2018 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1000179,20/03/2019 16:49,8/05/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-12634,20/03/2019 16:42,22/06/2018 0:29,5.0,200, Information Exposure,nan
CVE-2017-9994,20/03/2019 16:18,28/06/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10811,20/03/2019 16:03,19/06/2018 21:29,5.0,665, Improper Initialization,nan
CVE-2018-10001,20/03/2019 15:55,11/04/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-1000450,20/03/2019 15:37,2/01/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-6328,20/03/2019 15:35,14/03/2018 19:29,7.5,287, Improper Authentication,nan
CVE-2016-1863,20/03/2019 15:20,22/07/2016 2:59,7.2,416, Use After Free,nan
CVE-2017-12864,20/03/2019 15:19,15/08/2017 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-1865,20/03/2019 15:17,22/07/2016 2:59,4.9,476, NULL Pointer Dereference,nan
CVE-2018-4994,20/03/2019 14:44,19/05/2018 17:29,5.0,287, Improper Authentication,nan
CVE-2017-12863,20/03/2019 14:25,15/08/2017 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-4583,20/03/2019 14:24,22/07/2016 2:59,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-17760,20/03/2019 14:11,29/12/2017 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4592,20/03/2019 14:10,22/07/2016 2:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-14136,20/03/2019 13:58,4/09/2017 23:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-12606,20/03/2019 13:54,7/08/2017 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12605,20/03/2019 13:53,7/08/2017 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-9353,20/03/2019 13:50,2/06/2017 5:29,5.0,20, Improper Input Validation,nan
CVE-2017-12604,20/03/2019 13:50,7/08/2017 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12603,20/03/2019 13:49,7/08/2017 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-9354,20/03/2019 13:48,2/06/2017 5:29,5.0,20, Improper Input Validation,nan
CVE-2017-12601,20/03/2019 13:48,7/08/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12599,20/03/2019 13:45,7/08/2017 1:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12598,20/03/2019 13:44,7/08/2017 1:29,6.8,125, Out-of-bounds Read,nan
CVE-2016-4594,20/03/2019 13:41,22/07/2016 2:59,6.8,20, Improper Input Validation,nan
CVE-2017-12597,20/03/2019 13:38,7/08/2017 1:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-4614,20/03/2019 13:25,22/07/2016 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9351,20/03/2019 13:24,2/06/2017 5:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1516,20/03/2019 13:23,10/04/2017 3:59,6.8,415, Double Free,nan
CVE-2017-5208,20/03/2019 13:14,22/08/2017 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2015-1417,20/03/2019 13:14,25/07/2017 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-7487,20/03/2019 12:36,26/02/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9348,20/03/2019 12:29,2/06/2017 5:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8564,19/03/2019 20:30,11/07/2017 21:29,2.1,200, Information Exposure,nan
CVE-2017-8601,19/03/2019 20:28,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8532,19/03/2019 20:19,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8527,19/03/2019 20:15,15/06/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8524,19/03/2019 20:10,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8522,19/03/2019 20:07,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7948,19/03/2019 20:05,19/04/2017 14:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-8520,19/03/2019 19:58,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8496,19/03/2019 19:54,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8462,19/03/2019 19:48,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-9119,19/03/2019 19:40,21/05/2017 19:29,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2017-8634,19/03/2019 19:08,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8636,19/03/2019 19:06,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4627,19/03/2019 18:59,22/07/2016 2:59,7.2,476, NULL Pointer Dereference,nan
CVE-2018-0769,19/03/2019 18:51,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5204,19/03/2019 18:46,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8635,19/03/2019 18:39,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8548,19/03/2019 18:35,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000014,19/03/2019 18:35,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-1000013,19/03/2019 18:28,17/07/2017 13:18,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-9343,19/03/2019 18:27,2/06/2017 5:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-9347,19/03/2019 18:26,2/06/2017 5:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-8549,19/03/2019 18:15,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000094,19/03/2019 18:10,13/03/2018 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6187,19/03/2019 17:50,24/01/2018 10:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6596,19/03/2019 17:43,13/03/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-14063,19/03/2019 17:39,31/08/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-15858,19/03/2019 17:34,25/08/2018 21:29,2.1,476, NULL Pointer Dereference,nan
CVE-2019-0271,19/03/2019 17:09,12/03/2019 22:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8550,19/03/2019 17:08,15/06/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8481,19/03/2019 16:40,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-5185,19/03/2019 16:18,30/03/2017 17:59,5.0,20, Improper Input Validation,nan
CVE-2017-5184,19/03/2019 16:13,30/03/2017 17:59,5.0,200, Information Exposure,nan
CVE-2014-7859,19/03/2019 16:07,25/08/2017 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8339,19/03/2019 15:50,30/04/2017 17:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7985,19/03/2019 15:43,25/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8476,19/03/2019 15:37,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8073,19/03/2019 15:37,23/04/2017 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8104,19/03/2019 15:31,24/04/2017 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5202,19/03/2019 15:28,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8545,19/03/2019 15:26,15/06/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-5205,19/03/2019 15:22,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5609,19/03/2019 15:12,28/01/2017 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9182,19/03/2019 14:53,23/05/2017 4:29,5.0,416, Use After Free,nan
CVE-2017-5611,19/03/2019 14:50,30/01/2017 4:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9180,19/03/2019 14:43,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-5610,19/03/2019 14:37,30/01/2017 4:59,5.0,200, Information Exposure,nan
CVE-2017-9153,19/03/2019 14:35,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6562,19/03/2019 14:19,9/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6561,19/03/2019 14:18,9/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6559,19/03/2019 14:14,9/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9825,19/03/2019 14:11,14/03/2019 22:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-6229,19/03/2019 14:06,5/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9098,19/03/2019 14:05,19/05/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-8551,19/03/2019 14:05,15/06/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6227,19/03/2019 14:00,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9245,19/03/2019 13:59,19/07/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-8469,19/03/2019 13:53,15/06/2017 1:29,2.1,200, Information Exposure,nan
CVE-2019-6226,19/03/2019 13:51,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6217,19/03/2019 13:50,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6216,19/03/2019 13:49,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6215,19/03/2019 13:48,5/03/2019 16:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-8470,19/03/2019 13:48,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8484,19/03/2019 13:44,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2019-6212,19/03/2019 13:42,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5203,19/03/2019 13:41,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2479,19/03/2019 13:40,2/04/2017 1:59,4.3,20, Improper Input Validation,nan
CVE-2017-2463,19/03/2019 13:38,2/04/2017 1:59,6.8,416, Use After Free,nan
CVE-2017-8492,19/03/2019 13:37,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-2900,19/03/2019 13:32,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2901,19/03/2019 13:31,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2902,19/03/2019 13:25,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-6814,19/03/2019 13:24,12/03/2017 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2903,19/03/2019 13:24,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2904,19/03/2019 13:21,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2905,19/03/2019 13:15,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2906,19/03/2019 13:14,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-6578,19/03/2019 12:57,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6577,19/03/2019 12:55,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6576,19/03/2019 12:55,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6575,19/03/2019 12:55,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6574,19/03/2019 12:55,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6819,19/03/2019 12:54,12/03/2017 1:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6573,19/03/2019 12:51,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6815,19/03/2019 12:43,12/03/2017 1:59,5.8,20, Improper Input Validation,nan
CVE-2017-6572,19/03/2019 12:35,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6571,19/03/2019 12:33,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6570,19/03/2019 12:27,9/03/2017 9:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5612,19/03/2019 12:27,30/01/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6817,19/03/2019 12:26,12/03/2017 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6818,19/03/2019 12:20,12/03/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4587,19/03/2019 12:18,22/07/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6560,19/03/2019 12:14,9/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5197,19/03/2019 12:12,6/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4588,19/03/2019 1:09,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7499,19/03/2019 1:04,15/12/2015 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6799,19/03/2019 0:37,10/03/2017 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6797,19/03/2019 0:35,10/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5196,19/03/2019 0:32,3/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5195,19/03/2019 0:30,3/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5194,19/03/2019 0:28,3/03/2017 15:59,5.0,416, Use After Free,nan
CVE-2017-5193,19/03/2019 0:26,3/03/2017 15:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-5179,19/03/2019 0:25,5/01/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8482,18/03/2019 21:00,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8483,18/03/2019 20:48,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8471,18/03/2019 20:40,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8473,18/03/2019 20:35,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8485,18/03/2019 20:32,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8488,18/03/2019 20:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8489,18/03/2019 20:24,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8490,18/03/2019 20:14,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8491,18/03/2019 20:08,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8475,18/03/2019 20:00,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8477,18/03/2019 19:53,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8478,18/03/2019 19:48,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2016-4585,18/03/2019 19:44,22/07/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8479,18/03/2019 19:41,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8480,18/03/2019 19:38,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2018-1133,18/03/2019 19:34,25/05/2018 12:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7740,18/03/2019 19:31,7/03/2018 8:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6597,18/03/2019 18:53,13/03/2019 22:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9832,18/03/2019 18:52,15/03/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-9831,18/03/2019 18:41,15/03/2019 17:29,7.8,20, Improper Input Validation,nan
CVE-2018-11783,18/03/2019 18:31,7/03/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-20806,18/03/2019 17:38,17/03/2019 23:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6599,18/03/2019 17:20,13/03/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0122,18/03/2019 17:02,14/03/2019 20:29,3.6,415, Double Free,nan
CVE-2017-8472,18/03/2019 16:47,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8849,18/03/2019 16:41,17/05/2017 14:29,7.2,20, Improper Input Validation,nan
CVE-2019-6598,18/03/2019 16:38,13/03/2019 22:29,4.0,20, Improper Input Validation,nan
CVE-2018-18253,18/03/2019 16:35,15/03/2019 15:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-17882,18/03/2019 16:09,15/03/2019 20:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-7994,18/03/2019 15:44,21/04/2017 16:59,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18205,18/03/2019 15:37,15/03/2019 20:29,5.0,200, Information Exposure,nan
CVE-2014-3955,18/03/2019 15:35,27/10/2014 15:55,5.0,20, Improper Input Validation,nan
CVE-2014-3954,18/03/2019 15:35,27/10/2014 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3711,18/03/2019 15:35,27/10/2014 15:55,5.0,399, Resource Management Errors,nan
CVE-2014-1453,18/03/2019 15:35,16/04/2014 18:37,4.0,399, Resource Management Errors,nan
CVE-2014-1452,18/03/2019 15:35,21/01/2014 15:17,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5209,18/03/2019 15:35,29/08/2013 12:07,7.8,200, Information Exposure,nan
CVE-2013-4851,18/03/2019 15:35,29/07/2013 13:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-3077,18/03/2019 15:35,28/08/2013 13:13,7.2,189, Numeric Errors,nan
CVE-2013-2171,18/03/2019 15:35,2/07/2013 3:43,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-6233,18/03/2019 15:28,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20322,18/03/2019 15:25,21/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12494,18/03/2019 15:22,15/06/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12100,18/03/2019 15:21,11/06/2018 11:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18241,18/03/2019 15:20,21/03/2018 16:29,4.9,476, NULL Pointer Dereference,nan
CVE-2014-10079,18/03/2019 14:37,23/02/2019 14:29,5.0,200, Information Exposure,nan
CVE-2018-20800,18/03/2019 14:12,13/03/2019 22:29,5.5,20, Improper Input Validation,nan
CVE-2014-10078,18/03/2019 14:09,23/02/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9833,18/03/2019 12:48,15/03/2019 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-6234,16/03/2019 2:11,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20418,16/03/2019 1:52,24/12/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5877,15/03/2019 19:56,6/02/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5876,15/03/2019 19:55,6/02/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5875,15/03/2019 19:55,6/02/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5356,15/03/2019 19:32,3/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5346,15/03/2019 19:30,12/01/2017 6:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20231,15/03/2019 19:26,19/12/2018 11:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19392,15/03/2019 18:10,15/03/2019 16:29,5.0,255, Credentials Management,nan
CVE-2018-10517,15/03/2019 18:07,27/04/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9829,15/03/2019 18:05,15/03/2019 3:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19391,15/03/2019 17:40,15/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19394,15/03/2019 17:34,15/03/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8517,15/03/2019 17:10,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14343,15/03/2019 16:34,19/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14344,15/03/2019 16:27,19/07/2018 2:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-0270,15/03/2019 16:21,12/03/2019 22:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-10323,15/03/2019 16:16,24/04/2018 6:29,4.9,476, NULL Pointer Dereference,nan
CVE-2019-9711,15/03/2019 16:03,12/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9712,15/03/2019 16:00,12/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9713,15/03/2019 15:49,12/03/2019 18:29,5.0,284, Improper Access Control,nan
CVE-2019-9714,15/03/2019 15:44,12/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4660,15/03/2019 15:37,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0129,15/03/2019 15:32,14/03/2019 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-9760,15/03/2019 15:20,14/03/2019 2:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9751,15/03/2019 14:37,13/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0780,15/03/2019 14:26,4/01/2018 14:29,2.6,200, Information Exposure,nan
CVE-2018-0770,15/03/2019 14:25,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11412,15/03/2019 13:54,24/05/2018 18:29,4.3,416, Use After Free,nan
CVE-2017-8507,15/03/2019 13:43,15/06/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9748,15/03/2019 13:40,13/03/2019 19:29,9.4,125, Out-of-bounds Read,nan
CVE-2017-8499,15/03/2019 13:38,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0777,15/03/2019 13:15,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9061,15/03/2019 13:12,18/05/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9063,15/03/2019 13:05,18/05/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0776,15/03/2019 12:51,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8497,15/03/2019 12:48,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9080,15/03/2019 12:42,19/05/2017 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-9064,15/03/2019 12:35,18/05/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9065,15/03/2019 11:54,18/05/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-9066,15/03/2019 11:52,18/05/2017 14:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-0494,15/03/2019 1:22,6/05/2018 22:29,4.3,20, Improper Input Validation,nan
CVE-2017-8514,14/03/2019 20:01,15/06/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9469,14/03/2019 19:07,7/06/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9083,14/03/2019 19:00,19/05/2017 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9468,14/03/2019 18:45,7/06/2017 1:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-0492,14/03/2019 18:43,3/04/2018 7:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-9633,14/03/2019 18:16,8/03/2019 8:29,4.3,20, Improper Input Validation,nan
CVE-2018-20699,14/03/2019 18:13,12/01/2019 2:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-2416,14/03/2019 17:55,9/05/2018 20:29,5.5,20, Improper Input Validation,nan
CVE-2017-11268,14/03/2019 17:52,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8299,14/03/2019 17:51,29/08/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15565,14/03/2019 17:42,17/10/2017 22:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-1000039,14/03/2019 17:33,24/05/2018 13:29,6.8,416, Use After Free,nan
CVE-2018-1000038,14/03/2019 17:33,24/05/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000037,14/03/2019 17:33,24/05/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2018-1000069,14/03/2019 17:31,13/03/2018 15:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000051,14/03/2019 17:24,9/02/2018 23:29,6.8,416, Use After Free,nan
CVE-2018-1000040,14/03/2019 17:21,24/05/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2017-1000021,14/03/2019 17:19,17/07/2017 13:18,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-0541,14/03/2019 17:05,8/01/2019 21:29,9.3,20, Improper Input Validation,nan
CVE-2018-11690,14/03/2019 17:02,14/06/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16335,14/03/2019 17:00,2/09/2018 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9194,14/03/2019 16:53,26/02/2019 19:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-9785,14/03/2019 16:49,14/03/2019 14:29,6.8,20, Improper Input Validation,nan
CVE-2017-9140,14/03/2019 16:37,22/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15577,14/03/2019 16:37,18/10/2017 2:29,5.0,200, Information Exposure,nan
CVE-2017-11271,14/03/2019 16:35,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11355,14/03/2019 16:32,22/05/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11354,14/03/2019 16:32,22/05/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-11270,14/03/2019 16:28,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15722,14/03/2019 16:22,22/10/2017 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11269,14/03/2019 16:20,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15723,14/03/2019 16:19,22/10/2017 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-11267,14/03/2019 16:17,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11358,14/03/2019 16:16,22/05/2018 21:29,5.0,416, Use After Free,nan
CVE-2017-15721,14/03/2019 16:15,22/10/2017 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15576,14/03/2019 16:13,18/10/2017 2:29,5.0,200, Information Exposure,nan
CVE-2018-11361,14/03/2019 16:10,22/05/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11360,14/03/2019 16:04,22/05/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11263,14/03/2019 16:00,11/08/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11262,14/03/2019 15:58,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8953,14/03/2019 15:52,20/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11261,14/03/2019 15:52,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1418,14/03/2019 15:35,26/04/2018 14:29,6.5,287, Improper Authentication,nan
CVE-2018-14340,14/03/2019 15:27,19/07/2018 2:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-1000023,14/03/2019 15:25,17/07/2017 13:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9747,14/03/2019 15:22,13/03/2019 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-14369,14/03/2019 15:10,19/07/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2017-15572,14/03/2019 15:03,18/10/2017 2:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-15568,14/03/2019 15:00,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5920,14/03/2019 14:57,12/03/2019 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15569,14/03/2019 14:57,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15570,14/03/2019 14:54,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0274,14/03/2019 14:51,12/03/2019 22:29,5.0,399, Resource Management Errors,nan
CVE-2017-15571,14/03/2019 14:51,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15573,14/03/2019 14:43,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11260,14/03/2019 14:40,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11259,14/03/2019 14:40,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15574,14/03/2019 14:34,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11257,14/03/2019 14:32,11/08/2017 19:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-11256,14/03/2019 14:29,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-11254,14/03/2019 14:11,11/08/2017 19:29,6.8,416, Use After Free,nan
CVE-2019-9754,14/03/2019 14:09,13/03/2019 22:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-15730,14/03/2019 14:06,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15727,14/03/2019 14:03,22/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9149,14/03/2019 14:01,1/04/2018 18:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2017-11228,14/03/2019 13:59,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11227,14/03/2019 13:58,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11226,14/03/2019 13:57,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11224,14/03/2019 13:56,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-11223,14/03/2019 13:55,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-11222,14/03/2019 13:54,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9769,14/03/2019 13:53,14/03/2019 9:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11776,14/03/2019 13:50,22/08/2018 13:29,9.3,20, Improper Input Validation,nan
CVE-2017-11221,14/03/2019 13:50,11/08/2017 19:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-11251,14/03/2019 13:49,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11216,14/03/2019 13:46,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11214,14/03/2019 13:46,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11211,14/03/2019 13:46,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17458,14/03/2019 13:43,7/12/2017 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11218,14/03/2019 13:43,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2015-2254,14/03/2019 13:43,13/03/2019 16:29,6.4,200, Information Exposure,nan
CVE-2017-11219,14/03/2019 13:42,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-11220,14/03/2019 13:40,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9767,14/03/2019 13:27,14/03/2019 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1819,14/03/2019 13:23,14/08/2015 18:59,5.0,399, Resource Management Errors,nan
CVE-2019-9766,14/03/2019 13:21,14/03/2019 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9765,14/03/2019 12:23,14/03/2019 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9762,14/03/2019 12:21,14/03/2019 2:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9761,14/03/2019 12:15,14/03/2019 2:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-9750,14/03/2019 12:07,13/03/2019 19:29,6.4,20, Improper Input Validation,nan
CVE-2019-9746,14/03/2019 11:51,13/03/2019 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-17122,14/03/2019 2:32,4/12/2017 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-6081,14/03/2019 1:53,13/03/2017 6:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-0276,14/03/2019 1:18,12/03/2019 22:29,6.5,285, Improper Authorization,nan
CVE-2019-0275,14/03/2019 1:15,12/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1744,14/03/2019 1:13,1/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-1742,14/03/2019 1:12,1/08/2011 19:55,2.1,255, Credentials Management,nan
CVE-2015-4592,14/03/2019 1:02,10/01/2017 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4593,14/03/2019 0:57,10/01/2017 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6090,13/03/2019 20:01,3/10/2017 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-5354,13/03/2019 19:57,1/07/2015 16:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-4661,13/03/2019 19:48,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9276,13/03/2019 19:44,2/07/2018 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-17126,13/03/2019 19:31,4/12/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10742,13/03/2019 19:27,17/02/2019 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-6187,13/03/2019 19:11,22/02/2017 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6178,13/03/2019 18:59,20/03/2017 16:59,4.6,476, NULL Pointer Dereference,nan
CVE-2015-4594,13/03/2019 18:59,10/01/2017 15:59,7.5,384, Session Fixation,nan
CVE-2017-6097,13/03/2019 18:54,21/02/2017 7:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6088,13/03/2019 18:51,11/04/2017 18:59,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17786,13/03/2019 18:38,20/12/2017 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17785,13/03/2019 18:37,20/12/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19046,13/03/2019 18:36,8/11/2018 20:29,1.9,200, Information Exposure,nan
CVE-2017-17789,13/03/2019 18:36,20/12/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17787,13/03/2019 18:35,20/12/2017 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17788,13/03/2019 18:27,20/12/2017 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17784,13/03/2019 18:25,20/12/2017 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-6468,13/03/2019 18:21,4/03/2017 3:59,5.0,20, Improper Input Validation,nan
CVE-2017-6307,13/03/2019 18:21,24/02/2017 4:59,6.8,787, Out-of-bounds Write,nan
CVE-2019-0277,13/03/2019 18:16,12/03/2019 22:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-6473,13/03/2019 18:03,4/03/2017 3:59,5.0,20, Improper Input Validation,nan
CVE-2017-6098,13/03/2019 18:01,21/02/2017 7:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6309,13/03/2019 17:58,24/02/2017 4:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-6308,13/03/2019 17:58,24/02/2017 4:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-6310,13/03/2019 17:56,24/02/2017 4:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-16654,13/03/2019 17:56,6/08/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11408,13/03/2019 17:53,13/06/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-11232,13/03/2019 17:52,11/08/2017 19:29,4.3,416, Use After Free,nan
CVE-2017-11241,13/03/2019 17:51,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11237,13/03/2019 17:51,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11235,13/03/2019 17:51,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-11212,13/03/2019 17:51,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2826,13/03/2019 17:50,9/04/2018 20:29,4.3,200, Information Exposure,nan
CVE-2017-11231,13/03/2019 17:45,11/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-6471,13/03/2019 17:41,4/03/2017 3:59,5.0,20, Improper Input Validation,nan
CVE-2017-6095,13/03/2019 17:30,21/02/2017 7:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6099,13/03/2019 17:24,24/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11234,13/03/2019 17:21,11/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6469,13/03/2019 17:18,4/03/2017 3:59,5.0,20, Improper Input Validation,nan
CVE-2017-6096,13/03/2019 17:06,21/02/2017 7:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0265,13/03/2019 16:51,15/02/2019 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-6102,13/03/2019 16:47,2/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6067,13/03/2019 16:39,27/03/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1435,13/03/2019 16:14,16/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4689,13/03/2019 16:08,11/09/2017 20:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2015-4688,13/03/2019 16:07,11/09/2017 20:29,5.0,200, Information Exposure,nan
CVE-2015-4591,13/03/2019 16:00,10/01/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1434,13/03/2019 15:54,16/02/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1436,13/03/2019 15:52,16/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9565,13/03/2019 15:51,4/03/2019 8:29,6.4,284, Improper Access Control,nan
CVE-2019-9742,13/03/2019 15:48,13/03/2019 14:29,5.0,254, 7PK – Security Features,nan
CVE-2018-17944,13/03/2019 15:25,12/03/2019 16:29,4.0,200, Information Exposure,nan
CVE-2018-0833,13/03/2019 15:23,15/02/2018 2:29,6.3,476, NULL Pointer Dereference,nan
CVE-2017-16652,13/03/2019 15:23,13/06/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14522,13/03/2019 15:23,26/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11121,13/03/2019 15:22,28/09/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11120,13/03/2019 15:16,28/09/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5270,13/03/2019 15:15,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2016-4669,13/03/2019 15:15,20/02/2017 8:59,7.2,20, Improper Input Validation,nan
CVE-2016-4666,13/03/2019 15:14,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5272,13/03/2019 15:13,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2018-5271,13/03/2019 15:13,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2016-7626,13/03/2019 15:13,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5276,13/03/2019 15:12,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2018-5275,13/03/2019 15:12,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2018-5274,13/03/2019 15:12,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2018-5273,13/03/2019 15:12,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2016-4777,13/03/2019 15:11,25/09/2016 11:00,9.3,476, NULL Pointer Dereference,nan
CVE-2016-4772,13/03/2019 15:10,25/09/2016 11:00,5.0,399, Resource Management Errors,nan
CVE-2019-0268,13/03/2019 15:06,12/03/2019 22:29,5.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2016-4725,13/03/2019 15:06,25/09/2016 10:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4776,13/03/2019 15:05,25/09/2016 11:00,5.8,125, Out-of-bounds Read,nan
CVE-2016-4775,13/03/2019 15:04,25/09/2016 11:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9558,13/03/2019 14:58,12/03/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4774,13/03/2019 14:58,25/09/2016 11:00,5.8,125, Out-of-bounds Read,nan
CVE-2019-9729,13/03/2019 14:55,12/03/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9725,13/03/2019 14:55,12/03/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0269,13/03/2019 14:38,12/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4702,13/03/2019 14:34,25/09/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4708,13/03/2019 14:31,25/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-4718,13/03/2019 14:24,25/09/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5184,13/03/2019 14:23,11/06/2018 21:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-4753,13/03/2019 14:14,25/09/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2019-5917,13/03/2019 14:12,12/03/2019 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-4767,13/03/2019 14:10,25/09/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5925,13/03/2019 14:06,12/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4658,13/03/2019 14:05,25/09/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4773,13/03/2019 14:00,25/09/2016 11:00,5.8,125, Out-of-bounds Read,nan
CVE-2019-5919,13/03/2019 13:57,12/03/2019 22:29,6.4,310, Cryptographic Issues,nan
CVE-2016-4778,13/03/2019 13:57,25/09/2016 11:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-5918,13/03/2019 13:49,12/03/2019 22:29,8.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-6501,13/03/2019 13:48,6/03/2017 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6500,13/03/2019 13:48,6/03/2017 2:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-6498,13/03/2019 13:48,6/03/2017 2:59,4.3,20, Improper Input Validation,nan
CVE-2017-6497,13/03/2019 13:48,6/03/2017 2:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-6076,13/03/2019 13:48,24/02/2017 2:59,2.1,200, Information Exposure,nan
CVE-2018-0775,13/03/2019 13:47,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0774,13/03/2019 13:47,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6069,13/03/2019 13:47,27/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6068,13/03/2019 13:47,27/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6066,13/03/2019 13:47,27/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0886,13/03/2019 13:45,14/03/2018 17:29,7.6,287, Improper Authentication,nan
CVE-2018-5158,13/03/2019 13:44,11/06/2018 21:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5157,13/03/2019 13:44,11/06/2018 21:29,5.0,346, Origin Validation Error,nan
CVE-2018-5150,13/03/2019 13:44,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5145,13/03/2019 13:44,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1260,13/03/2019 13:44,11/05/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5170,13/03/2019 13:43,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-5161,13/03/2019 13:43,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-4733,13/03/2019 13:40,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4712,13/03/2019 13:39,25/09/2016 10:59,9.3,787, Out-of-bounds Write,nan
CVE-2018-1000544,13/03/2019 13:33,26/06/2018 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-2355,13/03/2019 13:31,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4735,13/03/2019 13:31,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4611,13/03/2019 13:27,25/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5922,13/03/2019 13:24,12/03/2019 22:29,6.8,426, Untrusted Search Path,nan
CVE-2018-5183,13/03/2019 13:24,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5168,13/03/2019 13:24,11/06/2018 21:29,5.0,275, Permission Issues,nan
CVE-2019-5921,13/03/2019 13:15,12/03/2019 22:29,6.8,426, Untrusted Search Path,nan
CVE-2019-5923,13/03/2019 13:12,12/03/2019 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7552,13/03/2019 12:38,28/02/2018 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7551,13/03/2019 12:34,28/02/2018 6:29,7.5,416, Use After Free,nan
CVE-2019-9557,13/03/2019 12:17,12/03/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9736,13/03/2019 12:00,13/03/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9737,13/03/2019 11:53,13/03/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9738,13/03/2019 11:38,13/03/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20187,12/03/2019 20:39,8/03/2019 19:29,4.3,320, Key Management Errors,nan
CVE-2018-0502,12/03/2019 20:34,5/09/2018 8:29,7.5,20, Improper Input Validation,nan
CVE-2019-0635,12/03/2019 20:24,5/03/2019 23:29,5.5,200, Information Exposure,nan
CVE-2019-0729,12/03/2019 19:57,5/03/2019 23:29,7.5,332, Insufficient Entropy in PRNG,nan
CVE-2017-6010,12/03/2019 19:52,16/02/2017 11:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6009,12/03/2019 19:52,16/02/2017 11:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6011,12/03/2019 19:43,16/02/2017 11:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-4737,12/03/2019 19:30,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4734,12/03/2019 19:30,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16556,12/03/2019 19:28,16/01/2018 19:29,2.1,20, Improper Input Validation,nan
CVE-2011-1743,12/03/2019 19:25,1/08/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7466,12/03/2019 18:54,7/03/2019 23:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6502,12/03/2019 18:37,6/03/2017 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6003,12/03/2019 18:28,27/03/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6013,12/03/2019 18:21,27/03/2017 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6205,12/03/2019 18:14,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0401,12/03/2019 18:07,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2017-0399,12/03/2019 18:07,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2017-15298,12/03/2019 18:03,14/10/2017 22:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2015-7568,12/03/2019 18:03,24/04/2017 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10051,12/03/2019 17:59,23/03/2017 17:59,6.8,416, Use After Free,nan
CVE-2016-10050,12/03/2019 17:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7419,12/03/2019 17:54,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7337,12/03/2019 17:54,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7335,12/03/2019 17:54,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-6188,12/03/2019 17:54,5/02/2018 3:29,5.0,200, Information Exposure,nan
CVE-2018-5334,12/03/2019 17:54,11/01/2018 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5335,12/03/2019 17:48,11/01/2018 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0933,12/03/2019 17:48,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0935,12/03/2019 17:47,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0934,12/03/2019 17:47,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9632,12/03/2019 17:39,8/03/2019 7:29,5.0,254, 7PK – Security Features,nan
CVE-2017-9776,12/03/2019 17:27,22/06/2017 21:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-9775,12/03/2019 17:25,22/06/2017 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6518,12/03/2019 17:21,18/08/2015 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0980,12/03/2019 17:14,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5962,12/03/2019 17:09,12/02/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0824,12/03/2019 16:55,9/05/2018 19:29,5.1,502, Deserialization of Untrusted Data,nan
CVE-2018-14551,12/03/2019 16:45,23/07/2018 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6517,12/03/2019 16:39,18/08/2015 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9937,12/03/2019 16:36,26/06/2017 12:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9868,12/03/2019 16:14,25/06/2017 14:29,2.1,200, Information Exposure,nan
CVE-2018-5336,12/03/2019 16:00,11/01/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7334,12/03/2019 15:42,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-5248,12/03/2019 15:35,5/01/2018 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-11385,12/03/2019 14:36,13/06/2018 16:29,6.8,384, Session Fixation,nan
CVE-2008-6594,12/03/2019 14:25,3/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2452,12/03/2019 14:21,27/05/2008 14:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2450,12/03/2019 14:21,27/05/2008 14:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9625,12/03/2019 14:18,7/03/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19045,12/03/2019 14:13,8/11/2018 20:29,5.0,200, Information Exposure,nan
CVE-2019-9646,12/03/2019 13:32,10/03/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0402,12/03/2019 13:27,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2019-9659,12/03/2019 13:22,11/03/2019 15:29,6.4,20, Improper Input Validation,nan
CVE-2019-9686,12/03/2019 13:18,11/03/2019 16:29,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9580,12/03/2019 13:18,9/03/2019 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9693,12/03/2019 13:16,11/03/2019 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9710,12/03/2019 13:09,12/03/2019 2:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-12405,12/03/2019 12:55,28/02/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14370,12/03/2019 12:41,19/07/2018 2:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10844,12/03/2019 12:34,29/08/2017 1:35,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-10842,12/03/2019 12:29,29/08/2017 1:35,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5206,12/03/2019 12:21,6/01/2018 16:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-5208,12/03/2019 12:20,6/01/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5207,12/03/2019 12:18,6/01/2018 16:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2018-20528,12/03/2019 12:16,28/12/2018 16:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5205,12/03/2019 12:09,6/01/2018 16:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2018-12882,12/03/2019 11:46,26/06/2018 3:29,7.5,416, Use After Free,nan
CVE-2019-9688,11/03/2019 20:07,11/03/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7390,11/03/2019 20:03,26/09/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7569,11/03/2019 20:02,24/04/2017 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9651,11/03/2019 19:59,11/03/2019 1:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-9652,11/03/2019 19:36,11/03/2019 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5129,11/03/2019 19:36,11/09/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5146,11/03/2019 19:33,11/06/2018 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2014-5131,11/03/2019 19:26,27/03/2018 21:29,4.0,200, Information Exposure,nan
CVE-2014-5132,11/03/2019 19:24,27/03/2018 21:29,4.0,200, Information Exposure,nan
CVE-2014-5130,11/03/2019 19:22,27/03/2018 21:29,4.0,200, Information Exposure,nan
CVE-2019-6210,11/03/2019 18:35,5/03/2019 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11695,11/03/2019 18:32,4/06/2018 6:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-11694,11/03/2019 18:29,4/06/2018 6:29,6.8,476, NULL Pointer Dereference,nan
CVE-2016-4768,11/03/2019 18:29,25/09/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4759,11/03/2019 18:28,25/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4765,11/03/2019 18:26,25/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11696,11/03/2019 18:25,4/06/2018 6:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-11693,11/03/2019 18:21,4/06/2018 6:29,5.8,125, Out-of-bounds Read,nan
CVE-2016-4730,11/03/2019 18:17,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4728,11/03/2019 17:56,25/09/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2018-11697,11/03/2019 17:53,4/06/2018 6:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11698,11/03/2019 17:44,4/06/2018 6:29,5.8,125, Out-of-bounds Read,nan
CVE-2016-4766,11/03/2019 17:38,25/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9656,11/03/2019 17:27,11/03/2019 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-18073,11/03/2019 17:10,15/10/2018 16:29,4.3,200, Information Exposure,nan
CVE-2018-17183,11/03/2019 17:05,19/09/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2019-6225,11/03/2019 17:02,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16511,11/03/2019 16:59,5/09/2018 6:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-5154,11/03/2019 16:51,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-16510,11/03/2019 16:45,5/09/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5155,11/03/2019 16:44,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5159,11/03/2019 16:06,11/06/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-4054,11/03/2019 15:44,8/03/2019 20:29,7.2,20, Improper Input Validation,nan
CVE-2018-18493,11/03/2019 15:38,28/02/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5178,11/03/2019 15:20,11/06/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18494,11/03/2019 15:09,28/02/2019 18:29,4.3,346, Origin Validation Error,nan
CVE-2019-9662,11/03/2019 15:04,11/03/2019 5:29,6.4,284, Improper Access Control,nan
CVE-2018-18492,11/03/2019 15:00,28/02/2019 18:29,7.5,416, Use After Free,nan
CVE-2018-18498,11/03/2019 14:59,28/02/2019 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-5828,11/03/2019 14:29,15/02/2018 22:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5827,11/03/2019 14:20,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4055,11/03/2019 14:12,8/03/2019 20:29,4.9,20, Improper Input Validation,nan
CVE-2019-9661,11/03/2019 14:03,11/03/2019 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9660,11/03/2019 14:03,11/03/2019 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2370,11/03/2019 13:44,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2363,11/03/2019 13:39,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2017-17866,11/03/2019 13:32,27/12/2017 17:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2360,11/03/2019 12:59,20/02/2017 8:59,9.3,416, Use After Free,nan
CVE-2017-2356,11/03/2019 12:51,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11107,11/03/2019 12:26,8/07/2017 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2451,9/03/2019 1:14,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2182,9/03/2019 1:11,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4726,9/03/2019 0:45,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2354,8/03/2019 21:33,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2350,8/03/2019 21:20,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2017-2369,8/03/2019 21:10,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2365,8/03/2019 21:04,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2017-2373,8/03/2019 20:58,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16353,8/03/2019 20:58,1/11/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-16352,8/03/2019 20:58,1/11/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9121,8/03/2019 20:41,7/03/2019 23:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8437,8/03/2019 20:23,7/03/2019 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9601,8/03/2019 20:16,6/03/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2019-6710,8/03/2019 20:16,7/03/2019 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6340,8/03/2019 20:04,21/02/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-0663,8/03/2019 19:56,5/03/2019 23:29,2.1,200, Information Exposure,nan
CVE-2017-5963,8/03/2019 19:50,12/02/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4660,8/03/2019 19:41,20/02/2017 8:59,5.8,200, Information Exposure,nan
CVE-2016-4664,8/03/2019 19:33,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-4665,8/03/2019 19:17,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2019-0669,8/03/2019 19:09,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2018-17418,8/03/2019 19:09,7/03/2019 23:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9119,8/03/2019 18:45,7/03/2019 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9118,8/03/2019 18:45,7/03/2019 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9120,8/03/2019 18:43,7/03/2019 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-3813,8/03/2019 18:42,4/02/2019 18:29,5.4,125, Out-of-bounds Read,nan
CVE-2019-9117,8/03/2019 18:41,7/03/2019 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12500,8/03/2019 18:29,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12557,8/03/2019 18:25,15/02/2018 22:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2013-7468,8/03/2019 18:10,7/03/2019 23:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14499,8/03/2019 17:54,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6223,8/03/2019 17:51,5/03/2019 16:29,5.0,200, Information Exposure,nan
CVE-2018-16804,8/03/2019 17:47,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0741,8/03/2019 17:40,5/03/2019 23:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-16276,8/03/2019 17:06,31/08/2018 16:29,7.2,20, Improper Input Validation,nan
CVE-2018-15469,8/03/2019 17:05,17/08/2018 18:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2018-14056,8/03/2019 17:04,15/07/2018 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5390,8/03/2019 17:02,19/08/2016 21:59,3.5,200, Information Exposure,nan
CVE-2017-9803,8/03/2019 16:56,18/09/2017 21:29,6.0,287, Improper Authentication,nan
CVE-2013-7467,8/03/2019 16:51,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9572,8/03/2019 16:48,5/03/2019 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-4278,8/03/2019 16:06,11/01/2019 18:29,4.3,254, 7PK – Security Features,nan
CVE-2018-4262,8/03/2019 16:06,11/01/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4213,8/03/2019 16:06,11/01/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4210,8/03/2019 16:06,11/01/2019 18:29,6.8,129, Improper Validation of Array Index,nan
CVE-2018-4209,8/03/2019 16:06,11/01/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4208,8/03/2019 16:06,11/01/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4207,8/03/2019 16:06,11/01/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2018-4185,8/03/2019 16:06,11/01/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-4165,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4163,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4162,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4161,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4150,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4146,8/03/2019 16:06,3/04/2018 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4144,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4143,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4142,8/03/2019 16:06,3/04/2018 6:29,5.0,20, Improper Input Validation,nan
CVE-2018-4130,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4129,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4128,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4127,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4125,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4124,8/03/2019 16:06,3/04/2018 6:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4122,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4121,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4120,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4119,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4118,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4114,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4104,8/03/2019 16:06,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2018-4101,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7172,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7171,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7165,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7164,8/03/2019 16:06,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-7162,8/03/2019 16:06,27/12/2017 17:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7153,8/03/2019 16:06,3/04/2018 6:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7130,8/03/2019 16:06,23/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7129,8/03/2019 16:06,23/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7128,8/03/2019 16:06,23/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7127,8/03/2019 16:06,23/10/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7120,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7117,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7116,8/03/2019 16:06,23/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-7115,8/03/2019 16:06,23/10/2017 1:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-7114,8/03/2019 16:06,23/10/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7112,8/03/2019 16:06,23/10/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7111,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7110,8/03/2019 16:06,23/10/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7109,8/03/2019 16:06,23/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7108,8/03/2019 16:06,23/10/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7107,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7105,8/03/2019 16:06,23/10/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7104,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7103,8/03/2019 16:06,23/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7102,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7100,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7099,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7098,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7096,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7095,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7094,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7093,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7092,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7091,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7090,8/03/2019 16:06,23/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-7089,8/03/2019 16:06,23/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7087,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7083,8/03/2019 16:06,23/10/2017 1:29,4.0,20, Improper Input Validation,nan
CVE-2017-7081,8/03/2019 16:06,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7080,8/03/2019 16:06,23/10/2017 1:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-7069,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7068,8/03/2019 16:06,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7066,8/03/2019 16:06,3/04/2018 6:29,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7065,8/03/2019 16:06,3/04/2018 6:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7062,8/03/2019 16:06,20/07/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7027,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7026,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7025,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7024,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7023,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7022,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7013,8/03/2019 16:06,20/07/2017 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-7010,8/03/2019 16:06,20/07/2017 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-7009,8/03/2019 16:06,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7008,8/03/2019 16:06,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7005,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7003,8/03/2019 16:06,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-6999,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6998,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6997,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6996,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6995,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6994,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6989,8/03/2019 16:06,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6987,8/03/2019 16:06,22/05/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-6984,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6980,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2549,8/03/2019 16:06,22/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2536,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2531,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2530,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2525,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2515,8/03/2019 16:06,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2513,8/03/2019 16:06,22/05/2017 5:29,7.5,416, Use After Free,nan
CVE-2017-2493,8/03/2019 16:06,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2017-2492,8/03/2019 16:06,3/04/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2490,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2487,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2485,8/03/2019 16:06,2/04/2017 1:59,9.3,416, Use After Free,nan
CVE-2017-2483,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2482,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2481,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2478,8/03/2019 16:06,2/04/2017 1:59,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2473,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2472,8/03/2019 16:06,2/04/2017 1:59,9.3,416, Use After Free,nan
CVE-2017-2470,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2469,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2468,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2467,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2466,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2465,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2464,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2462,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2460,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2459,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2458,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2456,8/03/2019 16:06,2/04/2017 1:59,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2455,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2454,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2451,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2450,8/03/2019 16:06,2/04/2017 1:59,5.8,125, Out-of-bounds Read,nan
CVE-2017-2448,8/03/2019 16:06,2/04/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-2447,8/03/2019 16:06,2/04/2017 1:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2445,8/03/2019 16:06,2/04/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2444,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2441,8/03/2019 16:06,2/04/2017 1:59,9.3,416, Use After Free,nan
CVE-2017-2440,8/03/2019 16:06,2/04/2017 1:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-2439,8/03/2019 16:06,2/04/2017 1:59,5.8,125, Out-of-bounds Read,nan
CVE-2017-2435,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2432,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2430,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2416,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2407,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2406,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2401,8/03/2019 16:06,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2396,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2395,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2394,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2379,8/03/2019 16:06,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13904,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13885,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13884,8/03/2019 16:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13876,8/03/2019 16:06,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13873,8/03/2019 16:06,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2017-13869,8/03/2019 16:06,25/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-13867,8/03/2019 16:06,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13865,8/03/2019 16:06,25/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-13862,8/03/2019 16:06,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13855,8/03/2019 16:06,25/12/2017 21:29,4.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-13854,8/03/2019 16:06,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13852,8/03/2019 16:06,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13849,8/03/2019 16:06,13/11/2017 3:29,4.3,20, Improper Input Validation,nan
CVE-2017-13804,8/03/2019 16:06,13/11/2017 3:29,4.3,20, Improper Input Validation,nan
CVE-2017-13799,8/03/2019 16:06,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13797,8/03/2019 16:06,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11122,8/03/2019 16:06,4/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2016-7584,8/03/2019 16:06,20/02/2017 8:59,6.8,254, 7PK – Security Features,nan
CVE-2016-4764,8/03/2019 16:06,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1950,8/03/2019 16:06,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1831,8/03/2019 16:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1818,8/03/2019 16:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1719,8/03/2019 16:06,1/02/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0802,8/03/2019 16:06,7/02/2016 1:59,8.3,20, Improper Input Validation,nan
CVE-2016-0801,8/03/2019 16:06,7/02/2016 1:59,8.3,20, Improper Input Validation,nan
CVE-2015-8659,8/03/2019 16:06,12/01/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8242,8/03/2019 16:06,15/12/2015 21:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8035,8/03/2019 16:06,18/11/2015 16:59,2.6,399, Resource Management Errors,nan
CVE-2015-7942,8/03/2019 16:06,18/11/2015 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7500,8/03/2019 16:06,15/12/2015 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7116,8/03/2019 16:06,10/01/2016 3:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7115,8/03/2019 16:06,10/01/2016 3:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7112,8/03/2019 16:06,11/12/2015 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7111,8/03/2019 16:06,11/12/2015 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7105,8/03/2019 16:06,11/12/2015 12:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7104,8/03/2019 16:06,11/12/2015 12:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7103,8/03/2019 16:06,11/12/2015 12:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7102,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7101,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7100,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7099,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7098,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7097,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7096,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7095,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7084,8/03/2019 16:06,11/12/2015 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7083,8/03/2019 16:06,11/12/2015 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7079,8/03/2019 16:06,11/12/2015 11:59,9.3,20, Improper Input Validation,nan
CVE-2015-7075,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7074,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7073,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7072,8/03/2019 16:06,11/12/2015 11:59,9.3,20, Improper Input Validation,nan
CVE-2015-7066,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7065,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7064,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7061,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7060,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7059,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7058,8/03/2019 16:06,11/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-7055,8/03/2019 16:06,11/12/2015 11:59,9.3,284, Improper Access Control,nan
CVE-2015-7054,8/03/2019 16:06,11/12/2015 11:59,6.8,19, Data Processing Errors,nan
CVE-2015-7053,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7051,8/03/2019 16:06,11/12/2015 11:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7048,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7047,8/03/2019 16:06,11/12/2015 11:59,7.2,20, Improper Input Validation,nan
CVE-2015-7046,8/03/2019 16:06,11/12/2015 11:59,2.6,200, Information Exposure,nan
CVE-2015-7045,8/03/2019 16:06,11/12/2015 11:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-7039,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7038,8/03/2019 16:06,11/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7001,8/03/2019 16:06,11/12/2015 11:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5312,8/03/2019 16:06,15/12/2015 21:59,7.1,399, Resource Management Errors,nan
CVE-2015-3807,8/03/2019 16:06,17/08/2015 0:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1117,8/03/2019 16:06,10/04/2015 14:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-1114,8/03/2019 16:06,10/04/2015 14:59,1.9,200, Information Exposure,nan
CVE-2015-1110,8/03/2019 16:06,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1105,8/03/2019 16:06,10/04/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-1104,8/03/2019 16:06,10/04/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-1103,8/03/2019 16:06,10/04/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-1102,8/03/2019 16:06,10/04/2015 14:59,7.1,20, Improper Input Validation,nan
CVE-2015-1100,8/03/2019 16:06,10/04/2015 14:59,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1099,8/03/2019 16:06,10/04/2015 14:59,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1097,8/03/2019 16:06,10/04/2015 14:59,1.9,200, Information Exposure,nan
CVE-2015-1096,8/03/2019 16:06,10/04/2015 14:59,1.9,200, Information Exposure,nan
CVE-2015-1094,8/03/2019 16:06,10/04/2015 14:59,1.9,200, Information Exposure,nan
CVE-2015-1086,8/03/2019 16:06,10/04/2015 14:59,6.9,20, Improper Input Validation,nan
CVE-2015-1083,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1082,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1081,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1080,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1079,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1078,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1077,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1076,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1074,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1073,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1072,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1071,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1070,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1069,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1068,8/03/2019 16:06,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-1067,8/03/2019 16:06,11/03/2015 1:59,4.3,310, Cryptographic Issues,nan
CVE-2015-1062,8/03/2019 16:06,12/03/2015 10:59,5.0,19, Data Processing Errors,nan
CVE-2015-1061,8/03/2019 16:06,12/03/2015 10:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4496,8/03/2019 16:06,30/01/2015 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4495,8/03/2019 16:06,30/01/2015 11:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4492,8/03/2019 16:06,30/01/2015 11:59,7.5,19, Data Processing Errors,nan
CVE-2014-4491,8/03/2019 16:06,30/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-4488,8/03/2019 16:06,30/01/2015 11:59,10.0,19, Data Processing Errors,nan
CVE-2014-4487,8/03/2019 16:06,30/01/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4485,8/03/2019 16:06,30/01/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4484,8/03/2019 16:06,30/01/2015 11:59,7.5,19, Data Processing Errors,nan
CVE-2014-4483,8/03/2019 16:06,30/01/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4481,8/03/2019 16:06,30/01/2015 11:59,6.8,189, Numeric Errors,nan
CVE-2014-4480,8/03/2019 16:06,30/01/2015 11:59,10.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4479,8/03/2019 16:06,30/01/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4477,8/03/2019 16:06,30/01/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4476,8/03/2019 16:06,30/01/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4475,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4474,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4473,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4472,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4471,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4470,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4469,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4468,8/03/2019 16:06,10/12/2014 21:59,6.8,399, Resource Management Errors,nan
CVE-2014-4466,8/03/2019 16:06,10/12/2014 21:59,7.5,399, Resource Management Errors,nan
CVE-2014-4465,8/03/2019 16:06,10/12/2014 21:59,5.0,20, Improper Input Validation,nan
CVE-2014-4462,8/03/2019 16:06,18/11/2014 11:59,5.8,399, Resource Management Errors,nan
CVE-2014-4461,8/03/2019 16:06,18/11/2014 11:59,9.3,20, Improper Input Validation,nan
CVE-2014-4455,8/03/2019 16:06,18/11/2014 11:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4422,8/03/2019 16:06,18/09/2014 10:55,6.8,310, Cryptographic Issues,nan
CVE-2014-4418,8/03/2019 16:06,18/09/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4415,8/03/2019 16:06,18/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4414,8/03/2019 16:06,18/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4413,8/03/2019 16:06,18/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4412,8/03/2019 16:06,18/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4411,8/03/2019 16:06,18/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4410,8/03/2019 16:06,18/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4408,8/03/2019 16:06,18/09/2014 10:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4407,8/03/2019 16:06,18/09/2014 10:55,4.3,200, Information Exposure,nan
CVE-2014-4404,8/03/2019 16:06,18/09/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4389,8/03/2019 16:06,18/09/2014 10:55,9.3,189, Numeric Errors,nan
CVE-2014-4388,8/03/2019 16:06,18/09/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4383,8/03/2019 16:06,18/09/2014 10:55,4.3,20, Improper Input Validation,nan
CVE-2014-4381,8/03/2019 16:06,18/09/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4380,8/03/2019 16:06,18/09/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4379,8/03/2019 16:06,18/09/2014 10:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4378,8/03/2019 16:06,18/09/2014 10:55,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4377,8/03/2019 16:06,18/09/2014 10:55,6.8,189, Numeric Errors,nan
CVE-2014-4372,8/03/2019 16:06,18/09/2014 10:55,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4371,8/03/2019 16:06,18/09/2014 10:55,1.9,665, Improper Initialization,nan
CVE-2014-4364,8/03/2019 16:06,18/09/2014 10:55,2.9,310, Cryptographic Issues,nan
CVE-2014-4357,8/03/2019 16:06,18/09/2014 10:55,2.1,200, Information Exposure,nan
CVE-2014-3192,8/03/2019 16:06,8/10/2014 10:55,7.5,416, Use After Free,nan
CVE-2014-1383,8/03/2019 16:06,1/07/2014 10:17,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1382,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1368,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1367,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1366,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1365,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1364,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1363,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1362,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1361,8/03/2019 16:06,1/07/2014 10:17,5.0,200, Information Exposure,nan
CVE-2014-1359,8/03/2019 16:06,1/07/2014 10:17,10.0,189, Numeric Errors,nan
CVE-2014-1358,8/03/2019 16:06,1/07/2014 10:17,10.0,189, Numeric Errors,nan
CVE-2014-1357,8/03/2019 16:06,1/07/2014 10:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1356,8/03/2019 16:06,1/07/2014 10:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1325,8/03/2019 16:06,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1320,8/03/2019 16:06,23/04/2014 11:52,4.9,200, Information Exposure,nan
CVE-2014-1296,8/03/2019 16:06,23/04/2014 11:52,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1295,8/03/2019 16:06,23/04/2014 11:52,6.8,287, Improper Authentication,nan
CVE-2014-1294,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1293,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1292,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1291,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1290,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1289,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1287,8/03/2019 16:06,14/03/2014 10:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1282,8/03/2019 16:06,14/03/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1279,8/03/2019 16:06,14/03/2014 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-1278,8/03/2019 16:06,14/03/2014 10:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1275,8/03/2019 16:06,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1273,8/03/2019 16:06,14/03/2014 10:55,5.8,20, Improper Input Validation,nan
CVE-2014-1272,8/03/2019 16:06,14/03/2014 10:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1271,8/03/2019 16:06,14/03/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-1267,8/03/2019 16:06,14/03/2014 10:55,5.8,20, Improper Input Validation,nan
CVE-2014-1266,8/03/2019 16:06,22/02/2014 17:05,5.8,20, Improper Input Validation,nan
CVE-2013-5228,8/03/2019 16:06,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5225,8/03/2019 16:06,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5199,8/03/2019 16:06,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5198,8/03/2019 16:06,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5197,8/03/2019 16:06,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5196,8/03/2019 16:06,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0964,8/03/2019 16:06,29/01/2013 5:58,3.6,20, Improper Input Validation,nan
CVE-2011-1418,8/03/2019 16:06,11/03/2011 22:55,5.0,200, Information Exposure,nan
CVE-2011-0162,8/03/2019 16:06,11/03/2011 22:55,7.8,20, Improper Input Validation,nan
CVE-2019-9598,8/03/2019 16:05,7/03/2019 23:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17422,8/03/2019 16:04,7/03/2019 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-8056,8/03/2019 15:50,11/03/2018 18:29,5.0,200, Information Exposure,nan
CVE-2019-0648,8/03/2019 15:47,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2018-17420,8/03/2019 15:27,7/03/2019 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17413,8/03/2019 15:27,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17425,8/03/2019 15:25,7/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16809,8/03/2019 15:20,7/03/2019 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5344,8/03/2019 15:17,12/01/2018 9:29,4.6,416, Use After Free,nan
CVE-2018-17416,8/03/2019 15:17,7/03/2019 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000130,8/03/2019 15:16,14/03/2018 13:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1327,8/03/2019 15:15,27/03/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-1322,8/03/2019 15:15,20/03/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-4225,8/03/2019 15:14,8/06/2018 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-4221,8/03/2019 15:14,8/06/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-10428,8/03/2019 15:14,23/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8602,8/03/2019 15:07,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17415,8/03/2019 15:04,7/03/2019 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17414,8/03/2019 15:01,7/03/2019 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17421,8/03/2019 14:59,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17426,8/03/2019 14:58,7/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2513,8/03/2019 14:55,16/01/2019 19:30,1.2,284, Improper Access Control,nan
CVE-2018-17429,8/03/2019 14:48,7/03/2019 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7660,8/03/2019 14:47,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7661,8/03/2019 14:37,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9195,8/03/2019 14:32,26/02/2019 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12088,8/03/2019 14:28,10/06/2018 23:29,5.0,20, Improper Input Validation,nan
CVE-2018-4214,8/03/2019 14:26,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0742,8/03/2019 14:23,5/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12090,8/03/2019 14:23,11/06/2018 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5129,8/03/2019 14:22,11/06/2018 21:29,5.0,787, Out-of-bounds Write,nan
CVE-2018-5127,8/03/2019 14:22,11/06/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5125,8/03/2019 14:22,11/06/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0743,8/03/2019 14:21,5/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5144,8/03/2019 14:21,11/06/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-5131,8/03/2019 14:21,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-5130,8/03/2019 14:21,11/06/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-12040,8/03/2019 14:17,13/06/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12026,8/03/2019 14:17,17/06/2018 20:29,7.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-12029,8/03/2019 14:12,17/06/2018 20:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-12533,8/03/2019 13:59,18/06/2018 12:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-4204,8/03/2019 13:50,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4201,8/03/2019 13:49,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1355,8/03/2019 13:46,27/06/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-13300,8/03/2019 13:46,5/07/2018 17:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-13818,8/03/2019 13:45,10/07/2018 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14351,8/03/2019 13:43,17/07/2018 17:29,7.5,20, Improper Input Validation,nan
CVE-2018-14350,8/03/2019 13:43,17/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14349,8/03/2019 13:43,17/07/2018 17:29,7.5,20, Improper Input Validation,nan
CVE-2018-14352,8/03/2019 13:42,17/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14355,8/03/2019 13:39,17/07/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14353,8/03/2019 13:39,17/07/2018 17:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-14359,8/03/2019 13:38,17/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14358,8/03/2019 13:38,17/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15132,8/03/2019 13:30,7/08/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-15120,8/03/2019 13:29,24/08/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16808,8/03/2019 13:11,7/03/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17412,8/03/2019 12:50,7/03/2019 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17988,8/03/2019 12:43,7/03/2019 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18449,8/03/2019 12:39,7/03/2019 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2080,8/03/2019 11:29,7/10/2016 14:59,5.0,200, Information Exposure,nan
CVE-2012-0217,8/03/2019 11:29,12/06/2012 22:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4461,8/03/2019 11:29,30/12/2011 1:55,5.0,310, Cryptographic Issues,nan
CVE-2019-9622,8/03/2019 1:57,7/03/2019 5:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8440,8/03/2019 1:53,7/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8438,8/03/2019 1:53,7/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8439,8/03/2019 1:52,7/03/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11358,8/03/2019 1:39,31/07/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11332,8/03/2019 1:39,31/07/2017 13:29,4.3,369, Divide By Zero,nan
CVE-2017-11359,8/03/2019 1:38,31/07/2017 13:29,4.3,369, Divide By Zero,nan
CVE-2018-4200,7/03/2019 21:11,8/06/2018 18:29,6.8,416, Use After Free,nan
CVE-2018-4199,7/03/2019 21:09,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4192,7/03/2019 21:07,8/06/2018 18:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4246,7/03/2019 20:56,8/06/2018 18:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-15515,7/03/2019 20:49,4/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9543,7/03/2019 20:48,1/03/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-5750,7/03/2019 20:46,26/01/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-8770,7/03/2019 20:38,18/03/2018 6:29,5.0,200, Information Exposure,nan
CVE-2019-9568,7/03/2019 20:31,4/03/2019 18:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9567,7/03/2019 20:29,4/03/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6230,7/03/2019 20:28,5/03/2019 16:29,6.8,399, Resource Management Errors,nan
CVE-2019-6231,7/03/2019 20:27,5/03/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-6220,7/03/2019 20:27,5/03/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-0659,7/03/2019 20:24,5/03/2019 23:29,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2018-4933,7/03/2019 20:19,19/05/2018 17:29,4.0,125, Out-of-bounds Read,nan
CVE-2018-4932,7/03/2019 20:19,19/05/2018 17:29,9.0,416, Use After Free,nan
CVE-2018-5001,7/03/2019 20:16,9/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5000,7/03/2019 20:16,9/07/2018 19:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-4945,7/03/2019 20:16,9/07/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4944,7/03/2019 20:16,19/05/2018 17:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4937,7/03/2019 20:15,19/05/2018 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-4935,7/03/2019 20:14,19/05/2018 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-0200,7/03/2019 20:13,6/03/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-4934,7/03/2019 20:12,19/05/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-1000129,7/03/2019 20:12,14/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0649,7/03/2019 20:10,5/03/2019 23:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-6219,7/03/2019 20:03,5/03/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2016-9151,7/03/2019 20:03,19/11/2016 6:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-9150,7/03/2019 20:03,19/11/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9149,7/03/2019 20:03,19/11/2016 6:59,4.0,19, Data Processing Errors,nan
CVE-2016-8811,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8810,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8809,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8808,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8807,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8806,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8805,7/03/2019 20:03,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8288,7/03/2019 20:03,25/10/2016 14:31,4.9,284, Improper Access Control,nan
CVE-2018-11793,7/03/2019 20:01,5/03/2019 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8027,7/03/2019 20:01,14/03/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7568,7/03/2019 20:00,28/09/2016 20:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-6992,7/03/2019 20:00,13/10/2016 20:00,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2016-6990,7/03/2019 19:59,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6989,7/03/2019 19:56,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6987,7/03/2019 19:56,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6986,7/03/2019 19:56,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6985,7/03/2019 19:55,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6984,7/03/2019 19:55,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6982,7/03/2019 19:55,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6981,7/03/2019 19:53,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2019-6218,7/03/2019 19:50,5/03/2019 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6857,7/03/2019 19:50,31/12/2016 7:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6724,7/03/2019 19:49,25/11/2016 16:59,7.1,284, Improper Access Control,nan
CVE-2016-6723,7/03/2019 19:49,25/11/2016 16:59,5.4,284, Improper Access Control,nan
CVE-2019-8278,7/03/2019 19:43,2/03/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6715,7/03/2019 19:42,25/11/2016 16:59,4.3,284, Improper Access Control,nan
CVE-2016-6717,7/03/2019 19:38,25/11/2016 16:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6721,7/03/2019 19:37,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6722,7/03/2019 19:36,13/12/2016 19:59,4.3,200, Information Exposure,nan
CVE-2016-6720,7/03/2019 19:28,13/12/2016 19:59,4.3,200, Information Exposure,nan
CVE-2016-6709,7/03/2019 19:25,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6707,7/03/2019 19:25,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-9526,7/03/2019 19:18,14/11/2018 18:29,5.0,200, Information Exposure,nan
CVE-2016-6719,7/03/2019 19:15,25/11/2016 16:59,4.3,284, Improper Access Control,nan
CVE-2018-10060,7/03/2019 19:14,12/04/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10059,7/03/2019 19:14,12/04/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10752,7/03/2019 19:08,5/05/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10718,7/03/2019 19:06,3/05/2018 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10061,7/03/2019 19:01,12/04/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10101,7/03/2019 18:56,16/04/2018 9:58,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-10118,7/03/2019 18:48,16/04/2018 9:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0637,7/03/2019 18:44,5/03/2019 23:29,5.0,254, 7PK – Security Features,nan
CVE-2017-15701,7/03/2019 18:19,1/12/2017 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-0540,7/03/2019 18:17,5/03/2019 23:29,4.3,254, 7PK – Security Features,nan
CVE-2019-9609,7/03/2019 18:16,6/03/2019 22:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-0634,7/03/2019 18:15,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4242,7/03/2019 18:13,8/06/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9626,7/03/2019 18:12,7/03/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0641,7/03/2019 18:07,5/03/2019 23:29,4.3,254, 7PK – Security Features,nan
CVE-2019-9610,7/03/2019 18:06,6/03/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0643,7/03/2019 18:03,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-9623,7/03/2019 17:56,7/03/2019 5:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9611,7/03/2019 17:52,6/03/2019 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8012,7/03/2019 17:51,14/03/2017 22:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0187,7/03/2019 17:37,6/03/2019 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-0658,7/03/2019 17:12,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2018-4222,7/03/2019 17:03,8/06/2018 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-0656,7/03/2019 17:01,5/03/2019 23:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2019-0657,7/03/2019 16:55,5/03/2019 23:29,4.3,20, Improper Input Validation,nan
CVE-2018-4240,7/03/2019 16:51,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-9616,7/03/2019 16:43,6/03/2019 22:29,6.5,284, Improper Access Control,nan
CVE-2019-9555,7/03/2019 16:43,5/03/2019 23:29,5.0,254, 7PK – Security Features,nan
CVE-2018-15919,7/03/2019 16:29,28/08/2018 8:29,5.0,200, Information Exposure,nan
CVE-2019-9590,7/03/2019 16:26,6/03/2019 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-16949,7/03/2019 16:15,12/09/2018 1:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-7891,7/03/2019 16:08,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16541,7/03/2019 16:06,5/09/2018 18:29,4.3,416, Use After Free,nan
CVE-2018-16542,7/03/2019 15:59,5/09/2018 18:29,4.3,388, 7PK – Errors,nan
CVE-2018-16539,7/03/2019 15:57,5/09/2018 18:29,4.3,200, Information Exposure,nan
CVE-2019-0630,7/03/2019 15:56,5/03/2019 23:29,9.0,19, Data Processing Errors,nan
CVE-2019-0633,7/03/2019 15:55,5/03/2019 23:29,9.0,19, Data Processing Errors,nan
CVE-2018-18450,7/03/2019 15:49,17/10/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000666,7/03/2019 15:36,6/09/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-9607,7/03/2019 15:34,6/03/2019 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9606,7/03/2019 15:29,6/03/2019 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4139,7/03/2019 15:27,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4226,7/03/2019 15:20,8/06/2018 18:29,2.1,200, Information Exposure,nan
CVE-2016-7383,7/03/2019 15:16,8/11/2016 20:59,6.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-7384,7/03/2019 15:12,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7381,7/03/2019 15:08,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-9600,7/03/2019 15:05,6/03/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2015-5327,7/03/2019 15:02,25/09/2017 21:29,4.0,125, Out-of-bounds Read,nan
CVE-2019-9594,7/03/2019 15:01,6/03/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18043,7/03/2019 15:01,31/01/2018 20:29,2.1,190, Integer Overflow or Wraparound,nan
CVE-2018-20684,7/03/2019 14:47,10/01/2019 21:29,6.4,20, Improper Input Validation,nan
CVE-2019-9612,7/03/2019 14:46,6/03/2019 22:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-7385,7/03/2019 14:40,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7386,7/03/2019 14:39,8/11/2016 20:59,2.1,200, Information Exposure,nan
CVE-2016-7387,7/03/2019 14:36,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7388,7/03/2019 14:34,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7390,7/03/2019 14:33,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7391,7/03/2019 14:32,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-7449,7/03/2019 14:29,4/03/2018 1:29,5.0,20, Improper Input Validation,nan
CVE-2018-6329,7/03/2019 14:26,14/03/2018 19:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9613,7/03/2019 14:24,6/03/2019 22:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9614,7/03/2019 14:21,6/03/2019 22:29,6.5,20, Improper Input Validation,nan
CVE-2018-1294,7/03/2019 14:19,20/03/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2019-9615,7/03/2019 14:17,6/03/2019 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14847,7/03/2019 14:12,2/08/2018 7:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6459,7/03/2019 13:39,20/02/2018 15:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-9608,7/03/2019 13:34,6/03/2019 22:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9617,7/03/2019 13:33,6/03/2019 22:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9603,7/03/2019 13:02,6/03/2019 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9599,7/03/2019 13:00,6/03/2019 18:29,7.8,20, Improper Input Validation,nan
CVE-2019-0645,7/03/2019 12:48,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9595,7/03/2019 0:36,6/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0621,6/03/2019 23:52,5/03/2019 23:29,2.1,200, Information Exposure,nan
CVE-2019-0660,6/03/2019 23:45,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0664,6/03/2019 23:44,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0676,6/03/2019 23:37,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-8336,6/03/2019 23:35,5/03/2019 23:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-9581,6/03/2019 23:21,6/03/2019 0:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9587,6/03/2019 23:09,6/03/2019 8:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9589,6/03/2019 23:08,6/03/2019 8:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-9588,6/03/2019 23:08,6/03/2019 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0628,6/03/2019 22:12,5/03/2019 23:29,2.1,200, Information Exposure,nan
CVE-2019-0661,6/03/2019 22:09,5/03/2019 23:29,2.1,200, Information Exposure,nan
CVE-2019-0606,6/03/2019 21:48,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6927,6/03/2019 21:38,12/02/2018 19:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2019-0670,6/03/2019 21:23,5/03/2019 23:29,5.8,20, Improper Input Validation,nan
CVE-2018-8715,6/03/2019 20:29,15/03/2018 1:29,6.8,287, Improper Authentication,nan
CVE-2018-6789,6/03/2019 20:27,8/02/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6767,6/03/2019 20:22,6/02/2018 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7728,6/03/2019 20:16,6/03/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7729,6/03/2019 20:14,6/03/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11267,6/03/2019 20:01,20/09/2018 13:29,7.2,129, Improper Validation of Array Index,nan
CVE-2019-0654,6/03/2019 19:59,5/03/2019 23:29,4.3,20, Improper Input Validation,nan
CVE-2018-7731,6/03/2019 19:59,6/03/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-6384,6/03/2019 19:46,31/01/2018 16:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2018-19554,6/03/2019 19:45,26/11/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0632,6/03/2019 19:43,5/03/2019 23:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0631,6/03/2019 19:43,5/03/2019 23:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0627,6/03/2019 19:43,5/03/2019 23:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0600,6/03/2019 19:18,5/03/2019 23:29,1.9,200, Information Exposure,nan
CVE-2019-0686,6/03/2019 19:07,5/03/2019 23:29,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0640,6/03/2019 19:04,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0650,6/03/2019 19:02,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0662,6/03/2019 18:58,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0642,6/03/2019 18:33,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0607,6/03/2019 18:33,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0605,6/03/2019 18:33,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0591,6/03/2019 18:26,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0590,6/03/2019 18:26,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0593,6/03/2019 18:25,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0610,6/03/2019 18:24,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19463,6/03/2019 17:52,22/11/2018 21:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-0651,6/03/2019 17:37,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0644,6/03/2019 17:37,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0652,6/03/2019 17:36,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13112,6/03/2019 17:36,3/07/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-0655,6/03/2019 17:35,5/03/2019 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0625,6/03/2019 17:35,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5955,6/03/2019 17:27,21/01/2018 22:29,7.5,20, Improper Input Validation,nan
CVE-2019-0668,6/03/2019 17:26,5/03/2019 23:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-0636,6/03/2019 17:21,5/03/2019 23:29,2.1,200, Information Exposure,nan
CVE-2018-5693,6/03/2019 17:17,14/01/2018 4:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-0601,6/03/2019 17:12,5/03/2019 23:29,1.9,200, Information Exposure,nan
CVE-2011-1554,6/03/2019 16:30,31/03/2011 23:55,4.3,189, Numeric Errors,nan
CVE-2011-1553,6/03/2019 16:30,31/03/2011 23:55,4.3,399, Resource Management Errors,nan
CVE-2011-1552,6/03/2019 16:30,31/03/2011 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0764,6/03/2019 16:30,31/03/2011 22:55,6.8,20, Improper Input Validation,nan
CVE-2010-3704,6/03/2019 16:30,5/11/2010 18:00,6.8,20, Improper Input Validation,nan
CVE-2010-3702,6/03/2019 16:30,5/11/2010 18:00,6.8,20, Improper Input Validation,nan
CVE-2009-3609,6/03/2019 16:30,21/10/2009 17:30,4.3,189, Numeric Errors,nan
CVE-2009-3608,6/03/2019 16:30,21/10/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-3606,6/03/2019 16:30,21/10/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-3604,6/03/2019 16:30,21/10/2009 17:30,9.3,399, Resource Management Errors,nan
CVE-2009-3603,6/03/2019 16:30,21/10/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-1183,6/03/2019 16:30,23/04/2009 17:30,4.3,399, Resource Management Errors,nan
CVE-2009-1182,6/03/2019 16:30,23/04/2009 17:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1181,6/03/2019 16:30,23/04/2009 17:30,4.3,399, Resource Management Errors,nan
CVE-2009-1180,6/03/2019 16:30,23/04/2009 17:30,6.8,399, Resource Management Errors,nan
CVE-2009-1179,6/03/2019 16:30,23/04/2009 17:30,6.8,189, Numeric Errors,nan
CVE-2009-1144,6/03/2019 16:30,9/04/2009 15:08,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0800,6/03/2019 16:30,23/04/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2009-0799,6/03/2019 16:30,23/04/2009 17:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0195,6/03/2019 16:30,23/04/2009 17:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0166,6/03/2019 16:30,23/04/2009 17:30,4.3,399, Resource Management Errors,nan
CVE-2009-0165,6/03/2019 16:30,23/04/2009 19:30,10.0,189, Numeric Errors,nan
CVE-2009-0147,6/03/2019 16:30,23/04/2009 17:30,4.3,189, Numeric Errors,nan
CVE-2009-0146,6/03/2019 16:30,23/04/2009 17:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0616,6/03/2019 16:20,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0615,6/03/2019 16:18,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0602,6/03/2019 16:17,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2018-6892,6/03/2019 16:09,11/02/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0613,6/03/2019 16:03,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0619,6/03/2019 16:01,5/03/2019 23:29,4.3,200, Information Exposure,nan
CVE-2019-0618,6/03/2019 15:56,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0671,6/03/2019 15:53,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0672,6/03/2019 15:51,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0626,6/03/2019 15:51,5/03/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17206,6/03/2019 15:43,19/09/2018 16:29,4.0,125, Out-of-bounds Read,nan
CVE-2019-0623,6/03/2019 15:29,5/03/2019 23:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2019-0673,6/03/2019 15:22,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0674,6/03/2019 15:17,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0675,6/03/2019 15:10,5/03/2019 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6713,6/03/2019 15:08,25/11/2016 16:59,7.1,284, Improper Access Control,nan
CVE-2019-6214,6/03/2019 14:57,5/03/2019 16:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2016-6714,6/03/2019 14:57,25/11/2016 16:59,7.1,284, Improper Access Control,nan
CVE-2018-5345,6/03/2019 14:52,12/01/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6224,6/03/2019 14:39,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6208,6/03/2019 14:22,5/03/2019 16:29,4.3,399, Resource Management Errors,nan
CVE-2019-6228,6/03/2019 14:18,5/03/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6213,6/03/2019 14:13,5/03/2019 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6209,6/03/2019 14:12,5/03/2019 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-6221,6/03/2019 14:11,5/03/2019 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-6202,6/03/2019 14:10,5/03/2019 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-6200,6/03/2019 13:28,5/03/2019 16:29,5.8,125, Out-of-bounds Read,nan
CVE-2019-6211,6/03/2019 13:22,5/03/2019 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9576,6/03/2019 13:08,5/03/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9575,6/03/2019 13:00,5/03/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10120,5/03/2019 21:25,16/04/2018 9:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10119,5/03/2019 21:21,16/04/2018 9:58,6.8,416, Use After Free,nan
CVE-2016-4571,5/03/2019 20:51,3/02/2017 15:59,7.1,399, Resource Management Errors,nan
CVE-2016-4570,5/03/2019 20:51,3/02/2017 15:59,7.1,399, Resource Management Errors,nan
CVE-2018-5002,5/03/2019 20:33,9/07/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5748,5/03/2019 20:05,25/01/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-11921,5/03/2019 19:35,28/11/2018 15:29,7.2,388, 7PK – Errors,nan
CVE-2018-11268,5/03/2019 19:34,20/09/2018 13:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-6882,5/03/2019 19:13,27/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1295,5/03/2019 18:38,2/04/2018 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-14883,5/03/2019 18:35,3/08/2018 13:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-7548,5/03/2019 18:30,27/02/2018 22:29,7.5,476, NULL Pointer Dereference,nan
CVE-2015-9267,5/03/2019 18:29,1/10/2018 8:29,3.6,284, Improper Access Control,nan
CVE-2015-9268,5/03/2019 18:28,1/10/2018 8:29,9.3,20, Improper Input Validation,nan
CVE-2016-6664,5/03/2019 18:23,13/12/2016 21:59,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-6663,5/03/2019 18:23,13/12/2016 21:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6705,5/03/2019 18:22,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-7726,5/03/2019 18:08,6/03/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7725,5/03/2019 18:08,6/03/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9570,5/03/2019 18:07,5/03/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5673,5/03/2019 18:05,13/01/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5332,5/03/2019 18:05,11/01/2018 7:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-5672,5/03/2019 18:04,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5671,5/03/2019 18:04,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5670,5/03/2019 18:04,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5666,5/03/2019 18:04,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5333,5/03/2019 18:03,11/01/2018 7:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-5665,5/03/2019 18:02,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5664,5/03/2019 18:02,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5663,5/03/2019 18:02,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5662,5/03/2019 18:02,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5661,5/03/2019 18:01,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5660,5/03/2019 18:01,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5659,5/03/2019 18:00,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17182,5/03/2019 17:58,19/09/2018 9:29,7.2,416, Use After Free,nan
CVE-2017-14223,5/03/2019 17:55,9/09/2017 1:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-14169,5/03/2019 17:54,7/09/2017 6:29,6.8,20, Improper Input Validation,nan
CVE-2014-8542,5/03/2019 17:53,5/11/2014 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5279,5/03/2019 17:44,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2018-5278,5/03/2019 17:44,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2017-8361,5/03/2019 17:43,30/04/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5277,5/03/2019 17:42,8/01/2018 5:29,6.1,20, Improper Input Validation,nan
CVE-2018-8734,5/03/2019 17:29,18/04/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15727,5/03/2019 17:26,29/08/2018 15:29,7.5,287, Improper Authentication,nan
CVE-2018-8971,5/03/2019 17:15,24/03/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2017-7865,5/03/2019 17:00,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-6704,5/03/2019 15:58,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-17466,5/03/2019 15:57,14/11/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-8822,5/03/2019 15:40,20/03/2018 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9566,5/03/2019 15:18,4/03/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000888,5/03/2019 15:17,28/12/2018 16:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-1999002,5/03/2019 14:30,23/07/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2019-6235,5/03/2019 14:21,4/03/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5341,5/03/2019 14:10,18/04/2018 8:29,7.5,20, Improper Input Validation,nan
CVE-2018-5338,5/03/2019 14:02,18/04/2018 8:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2019-6206,5/03/2019 14:01,4/03/2019 20:29,5.0,255, Credentials Management,nan
CVE-2018-5337,5/03/2019 14:00,18/04/2018 8:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000168,5/03/2019 13:58,8/05/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-0539,5/03/2019 13:45,8/01/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8376,5/03/2019 13:37,15/08/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15319,5/03/2019 13:33,31/10/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-11280,5/03/2019 13:33,18/09/2018 18:29,4.9,20, Improper Input Validation,nan
CVE-2019-9082,5/03/2019 13:30,24/02/2019 18:29,10.0,20, Improper Input Validation,nan
CVE-2018-11275,5/03/2019 13:29,18/09/2018 18:29,4.9,200, Information Exposure,nan
CVE-2018-7466,5/03/2019 13:21,25/02/2018 7:29,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-6128,5/03/2019 13:18,7/08/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2019-9041,5/03/2019 13:09,23/02/2019 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5683,4/03/2019 21:25,23/01/2018 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-7863,4/03/2019 21:12,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-9239,4/03/2019 21:11,26/05/2017 10:29,4.3,369, Divide By Zero,nan
CVE-2016-5827,4/03/2019 21:10,27/01/2017 22:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-14859,4/03/2019 21:04,29/09/2017 1:34,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14862,4/03/2019 21:03,29/09/2017 1:34,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14864,4/03/2019 21:01,29/09/2017 1:34,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5826,4/03/2019 20:59,27/01/2017 22:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5825,4/03/2019 20:57,27/01/2017 22:59,4.3,125, Out-of-bounds Read,nan
CVE-2019-9563,4/03/2019 20:37,4/03/2019 8:29,5.0,19, Data Processing Errors,nan
CVE-2018-8718,4/03/2019 19:55,27/03/2018 16:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5657,4/03/2019 19:36,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7746,4/03/2019 19:35,7/03/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1207,4/03/2019 19:21,6/06/2017 18:29,4.3,415, Double Free,nan
CVE-2018-7749,4/03/2019 19:16,12/03/2018 19:29,7.5,287, Improper Authentication,nan
CVE-2018-20448,4/03/2019 19:13,25/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8043,4/03/2019 19:11,10/03/2018 22:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-8735,4/03/2019 18:48,18/04/2018 0:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10561,4/03/2019 18:39,4/05/2018 3:29,7.5,287, Improper Authentication,nan
CVE-2018-5268,4/03/2019 18:36,8/01/2018 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7745,4/03/2019 18:32,7/03/2018 17:29,5.0,287, Improper Authentication,nan
CVE-2018-5691,4/03/2019 18:19,14/01/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7480,4/03/2019 18:08,25/02/2018 20:29,7.2,415, Double Free,nan
CVE-2018-19138,4/03/2019 17:59,9/11/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5545,4/03/2019 17:55,27/01/2017 22:59,6.8,254, 7PK – Security Features,nan
CVE-2016-6254,4/03/2019 17:42,19/08/2016 21:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7439,4/03/2019 17:23,23/02/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7437,4/03/2019 17:22,23/02/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7549,4/03/2019 17:21,27/02/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-7436,4/03/2019 17:21,23/02/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7435,4/03/2019 17:21,23/02/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7875,4/03/2019 17:17,8/03/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7872,4/03/2019 17:07,8/03/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7871,4/03/2019 17:07,8/03/2018 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7870,4/03/2019 17:07,8/03/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7868,4/03/2019 17:03,8/03/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7867,4/03/2019 17:02,8/03/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5613,4/03/2019 17:01,25/10/2016 14:31,2.1,284, Improper Access Control,nan
CVE-2018-11262,4/03/2019 16:49,4/09/2018 16:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-7475,4/03/2019 16:29,30/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7886,4/03/2019 15:50,15/03/2018 2:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5611,4/03/2019 15:48,25/10/2016 14:31,2.1,200, Information Exposure,nan
CVE-2016-5610,4/03/2019 15:46,25/10/2016 14:31,4.6,284, Improper Access Control,nan
CVE-2016-5608,4/03/2019 15:41,25/10/2016 14:31,2.1,284, Improper Access Control,nan
CVE-2019-9545,4/03/2019 15:10,1/03/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2019-9544,4/03/2019 14:53,1/03/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-5584,4/03/2019 14:50,25/10/2016 14:30,3.5,200, Information Exposure,nan
CVE-2019-9547,4/03/2019 14:48,1/03/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2016-5385,4/03/2019 14:47,19/07/2016 2:00,5.1,284, Improper Access Control,nan
CVE-2019-9551,4/03/2019 14:45,4/03/2019 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9552,4/03/2019 14:43,4/03/2019 4:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20152,4/03/2019 14:41,14/12/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-20151,4/03/2019 14:41,14/12/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-20153,4/03/2019 14:40,14/12/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20150,4/03/2019 14:21,14/12/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20149,4/03/2019 14:20,14/12/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20148,4/03/2019 14:19,14/12/2018 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-9550,4/03/2019 14:16,3/03/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6382,4/03/2019 14:07,30/01/2018 6:29,2.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9549,4/03/2019 13:50,3/03/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8279,4/03/2019 13:37,2/03/2019 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9191,4/03/2019 13:13,26/02/2019 18:29,4.3,310, Cryptographic Issues,nan
CVE-2017-8362,4/03/2019 13:09,30/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2018-20721,1/03/2019 23:43,16/01/2019 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-6794,1/03/2019 23:33,7/02/2018 5:29,5.0,693, Protection Mechanism Failure,nan
CVE-2018-6360,1/03/2019 23:25,28/01/2018 2:29,6.8,20, Improper Input Validation,nan
CVE-2014-8145,1/03/2019 23:17,31/12/2014 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19628,1/03/2019 21:24,29/11/2018 4:29,5.0,369, Divide By Zero,nan
CVE-2016-8736,1/03/2019 20:46,12/10/2017 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-8751,1/03/2019 20:42,14/06/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19627,1/03/2019 20:39,29/11/2018 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-6099,1/03/2019 20:36,4/12/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-6086,1/03/2019 20:33,4/12/2018 17:29,6.8,416, Use After Free,nan
CVE-2018-6103,1/03/2019 20:32,4/12/2018 17:29,4.3,275, Permission Issues,nan
CVE-2018-6089,1/03/2019 20:31,4/12/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-6090,1/03/2019 20:27,4/12/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-18227,1/03/2019 20:13,12/10/2018 6:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18225,1/03/2019 20:11,12/10/2018 6:29,5.0,20, Improper Input Validation,nan
CVE-2018-6094,1/03/2019 20:08,4/12/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6085,1/03/2019 20:03,4/12/2018 17:29,6.8,416, Use After Free,nan
CVE-2018-7273,1/03/2019 19:57,21/02/2018 0:29,4.9,200, Information Exposure,nan
CVE-2018-6101,1/03/2019 19:55,4/12/2018 17:29,5.1,20, Improper Input Validation,nan
CVE-2018-6088,1/03/2019 19:54,4/12/2018 17:29,6.8,20, Improper Input Validation,nan
CVE-2018-6115,1/03/2019 19:53,4/12/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-1337,1/03/2019 19:52,10/07/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-1306,1/03/2019 19:52,27/06/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-6095,1/03/2019 19:50,4/12/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-6087,1/03/2019 19:45,4/12/2018 17:29,6.8,416, Use After Free,nan
CVE-2018-6092,1/03/2019 19:39,4/12/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-14574,1/03/2019 19:32,3/08/2018 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-6102,1/03/2019 19:26,4/12/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-6116,1/03/2019 19:20,4/12/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-6381,1/03/2019 19:13,29/01/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6389,1/03/2019 19:07,6/02/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-12390,1/03/2019 19:03,28/02/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6621,1/03/2019 18:58,5/02/2018 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7284,1/03/2019 18:54,22/02/2018 0:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12389,1/03/2019 18:51,28/02/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20798,1/03/2019 18:47,1/03/2019 15:29,5.0,254, 7PK – Security Features,nan
CVE-2019-9484,1/03/2019 18:40,1/03/2019 7:29,5.0,255, Credentials Management,nan
CVE-2018-7573,1/03/2019 18:27,1/03/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17997,1/03/2019 18:19,30/12/2017 7:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-7261,1/03/2019 18:14,21/02/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15191,1/03/2019 18:12,10/10/2017 21:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-11407,1/03/2019 18:06,18/07/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-7600,1/03/2019 18:04,29/03/2018 7:29,7.5,20, Improper Input Validation,nan
CVE-2018-7320,1/03/2019 17:58,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-15372,1/03/2019 17:54,16/10/2017 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15370,1/03/2019 17:51,16/10/2017 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12393,1/03/2019 17:27,28/02/2019 18:29,5.0,787, Out-of-bounds Write,nan
CVE-2018-7553,1/03/2019 17:23,28/02/2018 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12407,1/03/2019 17:20,28/02/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7554,1/03/2019 17:12,28/02/2018 6:29,7.5,416, Use After Free,nan
CVE-2018-7557,1/03/2019 17:04,28/02/2018 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-15642,1/03/2019 16:52,19/10/2017 19:29,4.3,416, Use After Free,nan
CVE-2019-1992,1/03/2019 16:50,28/02/2019 17:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-1995,1/03/2019 16:49,28/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-1998,1/03/2019 16:48,28/02/2019 17:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2019-1996,1/03/2019 16:48,28/02/2019 17:29,3.3,125, Out-of-bounds Read,nan
CVE-2019-8337,1/03/2019 16:39,13/02/2019 20:29,5.0,295, Improper Certificate Validation,nan
CVE-2019-2000,1/03/2019 16:39,28/02/2019 17:29,7.2,416, Use After Free,nan
CVE-2019-1991,1/03/2019 16:34,28/02/2019 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1997,1/03/2019 16:21,28/02/2019 17:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2019-1994,1/03/2019 16:04,28/02/2019 17:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-1993,1/03/2019 15:58,28/02/2019 17:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-12403,1/03/2019 15:57,28/02/2019 18:29,5.0,254, 7PK – Security Features,nan
CVE-2019-1988,1/03/2019 15:56,28/02/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2019-2001,1/03/2019 15:54,28/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2018-12400,1/03/2019 15:53,28/02/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-18495,1/03/2019 15:47,28/02/2019 18:29,4.3,275, Permission Issues,nan
CVE-2018-12406,1/03/2019 15:35,28/02/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12401,1/03/2019 15:28,28/02/2019 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-18496,1/03/2019 15:13,28/02/2019 18:29,6.8,20, Improper Input Validation,nan
CVE-2019-9483,1/03/2019 15:11,1/03/2019 5:29,6.4,326, Inadequate Encryption Strength,nan
CVE-2019-9482,1/03/2019 15:06,1/03/2019 5:29,3.5,200, Information Exposure,nan
CVE-2018-18497,1/03/2019 15:01,28/02/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-12391,1/03/2019 15:01,28/02/2019 18:29,9.3,254, 7PK – Security Features,nan
CVE-2018-12397,1/03/2019 15:00,28/02/2019 18:29,3.6,200, Information Exposure,nan
CVE-2018-12388,1/03/2019 15:00,28/02/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18499,1/03/2019 14:40,28/02/2019 18:29,4.3,346, Origin Validation Error,nan
CVE-2018-12399,1/03/2019 14:25,28/02/2019 18:29,4.3,287, Improper Authentication,nan
CVE-2019-1987,1/03/2019 13:55,28/02/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-7747,1/03/2019 13:54,12/04/2017 23:59,5.0,20, Improper Input Validation,nan
CVE-2018-11356,1/03/2019 13:46,22/05/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-11359,1/03/2019 13:34,22/05/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-16057,1/03/2019 13:32,30/08/2018 1:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16058,1/03/2019 13:30,30/08/2018 1:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0496,1/03/2019 13:01,12/06/2018 20:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1986,1/03/2019 12:47,28/02/2019 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-7703,1/03/2019 12:45,12/04/2017 23:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-3657,28/02/2019 22:53,12/09/2018 19:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6485,28/02/2019 22:40,22/02/2019 23:29,4.3,200, Information Exposure,nan
CVE-2018-7537,28/02/2019 22:37,9/03/2018 20:29,5.0,185, Incorrect Regular Expression,nan
CVE-2018-8031,28/02/2019 22:06,23/07/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8024,28/02/2019 22:03,12/07/2018 13:29,4.9,200, Information Exposure,nan
CVE-2018-8018,28/02/2019 22:03,20/07/2018 1:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-8139,28/02/2019 21:45,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7536,28/02/2019 21:21,9/03/2018 20:29,5.0,185, Incorrect Regular Expression,nan
CVE-2013-4547,28/02/2019 20:51,23/11/2013 18:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0337,28/02/2019 20:51,27/10/2013 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1180,28/02/2019 20:51,17/04/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2018-7995,28/02/2019 20:34,9/03/2018 15:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-7046,28/02/2019 20:29,20/02/2018 15:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7033,28/02/2019 20:20,15/03/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7316,28/02/2019 20:08,4/02/2019 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6266,28/02/2019 20:03,25/02/2019 23:29,7.5,295, Improper Certificate Validation,nan
CVE-2019-6804,28/02/2019 19:58,25/01/2019 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7750,28/02/2019 19:20,13/03/2018 18:29,7.5,287, Improper Authentication,nan
CVE-2019-0112,28/02/2019 19:14,18/02/2019 17:29,2.1,20, Improper Input Validation,nan
CVE-2019-0111,28/02/2019 19:12,18/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-0110,28/02/2019 19:05,18/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-0109,28/02/2019 18:59,18/02/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0108,28/02/2019 18:52,18/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-0107,28/02/2019 18:47,18/02/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-7051,28/02/2019 18:39,15/02/2018 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-7050,28/02/2019 18:39,15/02/2018 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-7187,28/02/2019 18:37,16/02/2018 17:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-5491,28/02/2019 18:33,27/02/2019 17:29,5.0,200, Information Exposure,nan
CVE-2018-7161,28/02/2019 18:18,13/06/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2018-8096,28/02/2019 18:07,14/03/2018 0:29,7.5,287, Improper Authentication,nan
CVE-2019-0106,28/02/2019 18:03,18/02/2019 17:29,4.6,20, Improper Input Validation,nan
CVE-2019-0104,28/02/2019 18:03,18/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2018-8057,28/02/2019 17:59,11/03/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0103,28/02/2019 17:43,18/02/2019 17:29,2.1,200, Information Exposure,nan
CVE-2019-0102,28/02/2019 17:42,18/02/2019 17:29,5.8,384, Session Fixation,nan
CVE-2019-6496,28/02/2019 17:41,20/01/2019 20:29,8.3,20, Improper Input Validation,nan
CVE-2018-8251,28/02/2019 17:39,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7053,28/02/2019 17:37,15/02/2018 20:29,7.5,416, Use After Free,nan
CVE-2018-7052,28/02/2019 17:37,15/02/2018 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-8174,28/02/2019 17:28,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7801,28/02/2019 17:20,24/12/2018 16:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-7800,28/02/2019 17:16,24/12/2018 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-9226,28/02/2019 17:09,28/02/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8000,28/02/2019 16:49,9/03/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8474,28/02/2019 16:28,13/09/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2019-9227,28/02/2019 16:21,28/02/2019 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8617,28/02/2019 15:55,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0105,28/02/2019 15:49,18/02/2019 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-8279,28/02/2019 15:49,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7802,28/02/2019 15:43,24/12/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6592,28/02/2019 15:32,26/02/2019 15:29,6.4,295, Improper Certificate Validation,nan
CVE-2018-11864,28/02/2019 15:31,25/02/2019 22:29,4.9,20, Improper Input Validation,nan
CVE-2018-11820,28/02/2019 15:23,25/02/2019 22:29,4.9,310, Cryptographic Issues,nan
CVE-2019-6799,28/02/2019 15:18,26/01/2019 17:29,4.3,200, Information Exposure,nan
CVE-2018-11289,28/02/2019 15:18,25/02/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11845,28/02/2019 14:52,25/02/2019 22:29,4.9,200, Information Exposure,nan
CVE-2018-9110,28/02/2019 14:44,28/03/2018 14:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9109,28/02/2019 14:38,28/03/2018 6:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8729,28/02/2019 13:25,15/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7323,28/02/2019 13:25,23/02/2018 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-8716,28/02/2019 13:20,25/04/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6265,28/02/2019 12:52,25/02/2019 23:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-7336,28/02/2019 12:45,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7417,28/02/2019 12:44,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7418,28/02/2019 12:43,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2009-0555,28/02/2019 1:20,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-9018,28/02/2019 1:16,25/03/2018 21:29,4.3,369, Divide By Zero,nan
CVE-2018-8781,28/02/2019 1:03,23/04/2018 19:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2008-0085,28/02/2019 0:59,8/07/2008 23:41,5.0,200, Information Exposure,nan
CVE-2018-9144,27/02/2019 21:55,30/03/2018 8:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-8804,27/02/2019 21:41,20/03/2018 5:29,6.8,415, Double Free,nan
CVE-2019-9201,27/02/2019 21:38,26/02/2019 23:29,9.0,287, Improper Authentication,nan
CVE-2018-9920,27/02/2019 20:41,24/05/2018 13:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-20797,27/02/2019 20:34,27/02/2019 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9116,27/02/2019 20:32,29/03/2018 7:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-9843,27/02/2019 20:26,12/04/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-9117,27/02/2019 20:26,29/03/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9842,27/02/2019 20:19,12/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-9988,27/02/2019 20:18,10/04/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-8801,27/02/2019 20:09,25/04/2018 9:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-9927,27/02/2019 20:03,10/04/2018 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11931,27/02/2019 20:02,25/02/2019 22:29,7.2,20, Improper Input Validation,nan
CVE-2018-11948,27/02/2019 20:00,25/02/2019 22:29,4.9,129, Improper Validation of Array Index,nan
CVE-2018-9244,27/02/2019 19:42,5/04/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9243,27/02/2019 19:41,5/04/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9926,27/02/2019 19:37,10/04/2018 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9234,27/02/2019 19:37,4/04/2018 0:29,5.0,320, Key Management Errors,nan
CVE-2018-9304,27/02/2019 19:26,4/04/2018 21:29,4.3,369, Divide By Zero,nan
CVE-2018-9163,27/02/2019 19:18,2/04/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8410,27/02/2019 18:55,27/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7309,27/02/2019 18:07,3/02/2019 2:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9037,27/02/2019 17:57,23/02/2019 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-7156,27/02/2019 17:37,29/01/2019 8:29,4.3,369, Divide By Zero,nan
CVE-2019-9036,27/02/2019 17:36,23/02/2019 12:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9260,27/02/2019 17:16,4/04/2018 7:29,5.0,20, Improper Input Validation,nan
CVE-2018-9259,27/02/2019 17:16,4/04/2018 7:29,5.0,20, Improper Input Validation,nan
CVE-2018-9256,27/02/2019 17:14,4/04/2018 7:29,5.0,20, Improper Input Validation,nan
CVE-2018-7420,27/02/2019 17:12,23/02/2018 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-9035,27/02/2019 17:06,23/02/2019 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-8939,27/02/2019 17:04,19/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9034,27/02/2019 16:58,23/02/2019 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-9033,27/02/2019 16:51,23/02/2019 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-9032,27/02/2019 16:37,23/02/2019 12:29,5.0,787, Out-of-bounds Write,nan
CVE-2007-2223,27/02/2019 16:00,14/08/2007 21:17,9.3,190, Integer Overflow or Wraparound,nan
CVE-2019-6595,27/02/2019 15:58,26/02/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9030,27/02/2019 15:56,23/02/2019 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-9143,27/02/2019 15:40,25/02/2019 15:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2019-9144,27/02/2019 15:35,25/02/2019 15:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-13900,27/02/2019 15:32,25/02/2019 22:29,7.2,416, Use After Free,nan
CVE-2018-13905,27/02/2019 15:30,25/02/2019 22:29,7.2,416, Use After Free,nan
CVE-2019-9031,27/02/2019 15:21,23/02/2019 12:29,5.0,476, NULL Pointer Dereference,nan
CVE-2019-9038,27/02/2019 15:17,23/02/2019 12:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-20063,27/02/2019 15:02,25/02/2019 23:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-7739,27/02/2019 14:30,12/02/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-6590,27/02/2019 14:24,5/02/2019 19:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2018-20232,27/02/2019 14:18,13/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9029,27/02/2019 14:13,23/02/2019 12:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-7392,27/02/2019 14:07,26/02/2019 17:29,6.4,287, Improper Authentication,nan
CVE-2009-0075,27/02/2019 14:07,10/02/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2018-9262,27/02/2019 13:59,4/04/2018 7:29,5.0,20, Improper Input Validation,nan
CVE-2018-9264,27/02/2019 13:11,4/04/2018 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-9181,26/02/2019 21:50,26/02/2019 7:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9258,26/02/2019 21:15,4/04/2018 7:29,5.0,20, Improper Input Validation,nan
CVE-2019-0566,26/02/2019 21:08,8/01/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0543,26/02/2019 20:57,8/01/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0555,26/02/2019 20:53,8/01/2019 21:29,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2019-0567,26/02/2019 20:49,8/01/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13912,26/02/2019 20:41,25/02/2019 22:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0568,26/02/2019 20:40,8/01/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13913,26/02/2019 20:28,25/02/2019 22:29,4.6,129, Improper Validation of Array Index,nan
CVE-2019-0647,26/02/2019 20:25,17/01/2019 18:29,4.0,200, Information Exposure,nan
CVE-2018-13914,26/02/2019 20:15,25/02/2019 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7401,26/02/2019 20:05,8/02/2019 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0256,26/02/2019 20:03,15/02/2019 18:29,2.1,200, Information Exposure,nan
CVE-2019-7249,26/02/2019 19:54,31/01/2019 9:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5783,26/02/2019 19:14,19/02/2019 17:29,6.8,20, Improper Input Validation,nan
CVE-2019-6593,26/02/2019 19:03,26/02/2019 15:29,4.3,310, Cryptographic Issues,nan
CVE-2019-6594,26/02/2019 19:02,26/02/2019 15:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-9182,26/02/2019 18:58,26/02/2019 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11932,26/02/2019 18:36,25/02/2019 22:29,6.4,20, Improper Input Validation,nan
CVE-2018-4193,26/02/2019 18:34,8/06/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11935,26/02/2019 18:34,25/02/2019 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-11938,26/02/2019 18:20,25/02/2019 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11945,26/02/2019 18:16,25/02/2019 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13904,26/02/2019 18:14,25/02/2019 22:29,7.5,20, Improper Input Validation,nan
CVE-2018-19624,26/02/2019 18:02,29/11/2018 4:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19625,26/02/2019 18:00,29/11/2018 4:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19626,26/02/2019 17:59,29/11/2018 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7743,26/02/2019 17:58,12/02/2019 18:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16183,26/02/2019 17:52,9/01/2019 23:29,6.8,428, Unquoted Search Path or Element,nan
CVE-2018-20010,26/02/2019 17:39,10/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6263,26/02/2019 17:35,16/01/2019 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9124,26/02/2019 17:32,25/02/2019 5:29,7.5,255, Credentials Management,nan
CVE-2019-9125,26/02/2019 17:30,25/02/2019 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6262,26/02/2019 17:30,16/01/2019 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6261,26/02/2019 17:30,16/01/2019 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9123,26/02/2019 17:22,25/02/2019 5:29,7.5,287, Improper Authentication,nan
CVE-2019-5882,26/02/2019 17:20,9/01/2019 23:29,7.5,416, Use After Free,nan
CVE-2016-5016,26/02/2019 17:18,24/04/2017 19:59,4.3,295, Improper Certificate Validation,nan
CVE-2018-20240,26/02/2019 17:16,20/02/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20241,26/02/2019 17:13,20/02/2019 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9122,26/02/2019 17:11,25/02/2019 5:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-6264,26/02/2019 17:09,16/01/2019 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9126,26/02/2019 17:06,25/02/2019 5:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-20787,26/02/2019 16:58,25/02/2019 4:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2018-20788,26/02/2019 16:53,25/02/2019 4:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-9168,26/02/2019 16:52,26/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9111,26/02/2019 16:44,25/02/2019 4:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2019-9146,26/02/2019 16:38,25/02/2019 18:29,7.9,254, 7PK – Security Features,nan
CVE-2018-19914,26/02/2019 16:31,6/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4995,26/02/2019 16:30,19/08/2016 21:59,3.5,200, Information Exposure,nan
CVE-2019-0261,26/02/2019 16:29,15/02/2019 18:29,7.5,287, Improper Authentication,nan
CVE-2019-9112,26/02/2019 16:28,25/02/2019 4:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2018-20011,26/02/2019 16:27,10/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7312,26/02/2019 16:19,3/02/2019 8:29,5.0,200, Information Exposure,nan
CVE-2018-16638,26/02/2019 16:15,28/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20009,26/02/2019 16:14,10/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16637,26/02/2019 16:14,28/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16632,26/02/2019 16:12,28/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19598,26/02/2019 16:11,19/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19915,26/02/2019 16:07,6/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4864,26/02/2019 16:03,12/05/2017 18:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2016-3655,26/02/2019 16:03,12/04/2016 17:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-3657,26/02/2019 15:58,12/04/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8394,26/02/2019 15:57,17/02/2019 4:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-3656,26/02/2019 15:57,12/04/2016 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16635,26/02/2019 15:56,10/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3654,26/02/2019 15:55,12/04/2016 17:59,9.0,20, Improper Input Validation,nan
CVE-2019-9145,26/02/2019 15:47,25/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16634,26/02/2019 15:44,4/12/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20238,26/02/2019 15:42,13/02/2019 18:29,5.5,384, Session Fixation,nan
CVE-2018-16633,26/02/2019 15:36,4/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16631,26/02/2019 15:35,4/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16629,26/02/2019 15:34,4/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16630,26/02/2019 15:32,28/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16627,26/02/2019 15:30,20/12/2018 23:29,5.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16628,26/02/2019 15:28,4/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9081,26/02/2019 15:25,24/02/2019 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-11627,26/02/2019 15:03,31/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7639,26/02/2019 14:57,8/02/2019 11:29,4.3,255, Credentials Management,nan
CVE-2019-9116,26/02/2019 14:51,25/02/2019 7:29,6.8,426, Untrusted Search Path,nan
CVE-2019-9019,26/02/2019 14:49,22/02/2019 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19506,26/02/2019 14:44,19/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19596,26/02/2019 14:36,19/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19508,26/02/2019 14:27,19/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9151,26/02/2019 14:18,25/02/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-9152,26/02/2019 14:17,25/02/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19597,26/02/2019 14:10,19/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3899,26/02/2019 14:04,11/12/2013 0:55,7.2,20, Improper Input Validation,nan
CVE-2013-3894,26/02/2019 14:04,9/10/2013 14:53,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3887,26/02/2019 14:04,13/11/2013 0:55,4.9,200, Information Exposure,nan
CVE-2013-3879,26/02/2019 14:04,9/10/2013 14:53,7.2,399, Resource Management Errors,nan
CVE-2013-3878,26/02/2019 14:04,11/12/2013 0:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3863,26/02/2019 14:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3200,26/02/2019 14:04,9/10/2013 14:53,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3195,26/02/2019 14:04,9/10/2013 14:53,10.0,399, Resource Management Errors,nan
CVE-2013-3181,26/02/2019 14:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3175,26/02/2019 14:04,14/08/2013 11:10,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3174,26/02/2019 14:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3173,26/02/2019 14:04,10/07/2013 3:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3172,26/02/2019 14:04,10/07/2013 3:46,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3167,26/02/2019 14:04,10/07/2013 3:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-3129,26/02/2019 14:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3128,26/02/2019 14:04,9/10/2013 14:53,9.3,20, Improper Input Validation,nan
CVE-2013-1347,26/02/2019 14:04,5/05/2013 11:07,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1345,26/02/2019 14:04,10/07/2013 3:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1340,26/02/2019 14:04,10/07/2013 3:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1334,26/02/2019 14:04,15/05/2013 3:36,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1300,26/02/2019 14:04,10/07/2013 3:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1295,26/02/2019 14:04,9/04/2013 22:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1294,26/02/2019 14:04,9/04/2013 22:55,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1288,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-1287,26/02/2019 14:04,13/03/2013 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1286,26/02/2019 14:04,13/03/2013 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1285,26/02/2019 14:04,13/03/2013 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1283,26/02/2019 14:04,9/04/2013 22:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1280,26/02/2019 14:04,13/02/2013 12:04,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1279,26/02/2019 14:04,13/02/2013 12:04,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1278,26/02/2019 14:04,13/02/2013 12:04,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1277,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1276,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1275,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1274,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1273,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1272,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1271,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1270,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1269,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1268,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1267,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1266,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1265,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1264,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1263,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1262,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1261,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1260,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1259,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1258,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1257,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1256,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1255,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1254,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1253,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1252,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1251,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1250,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1249,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1248,26/02/2019 14:04,13/02/2013 12:04,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0810,26/02/2019 14:04,11/09/2013 14:03,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0094,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0093,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0092,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0091,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0090,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0089,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0088,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0087,26/02/2019 14:04,13/03/2013 0:55,9.3,399, Resource Management Errors,nan
CVE-2013-0077,26/02/2019 14:04,13/02/2013 12:04,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0073,26/02/2019 14:04,13/02/2013 12:04,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0030,26/02/2019 14:04,13/02/2013 12:04,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0029,26/02/2019 14:04,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0024,26/02/2019 14:04,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0019,26/02/2019 14:04,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0007,26/02/2019 14:04,9/01/2013 18:09,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0006,26/02/2019 14:04,9/01/2013 18:09,9.3,189, Numeric Errors,nan
CVE-2013-0005,26/02/2019 14:04,9/01/2013 18:09,7.8,20, Improper Input Validation,nan
CVE-2013-0004,26/02/2019 14:04,9/01/2013 18:09,9.3,20, Improper Input Validation,nan
CVE-2013-0003,26/02/2019 14:04,9/01/2013 18:09,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0002,26/02/2019 14:04,9/01/2013 18:09,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0001,26/02/2019 14:04,9/01/2013 18:09,4.3,200, Information Exposure,nan
CVE-2012-4792,26/02/2019 14:04,30/12/2012 18:55,9.3,399, Resource Management Errors,nan
CVE-2012-4777,26/02/2019 14:04,14/11/2012 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4776,26/02/2019 14:04,14/11/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-4774,26/02/2019 14:04,12/12/2012 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2897,26/02/2019 14:04,26/09/2012 10:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2556,26/02/2019 14:04,12/12/2012 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2530,26/02/2019 14:04,14/11/2012 0:55,7.2,399, Resource Management Errors,nan
CVE-2012-2529,26/02/2019 14:04,9/10/2012 21:55,7.2,189, Numeric Errors,nan
CVE-2012-2527,26/02/2019 14:04,15/08/2012 1:55,7.2,399, Resource Management Errors,nan
CVE-2012-2005,26/02/2019 14:04,2/05/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2004,26/02/2019 14:04,2/05/2012 22:55,8.3,20, Improper Input Validation,nan
CVE-2012-2003,26/02/2019 14:04,2/05/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1896,26/02/2019 14:04,14/11/2012 0:55,5.0,200, Information Exposure,nan
CVE-2012-1895,26/02/2019 14:04,14/11/2012 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1893,26/02/2019 14:04,10/07/2012 21:55,7.2,20, Improper Input Validation,nan
CVE-2012-1891,26/02/2019 14:04,10/07/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1890,26/02/2019 14:04,10/07/2012 21:55,7.2,20, Improper Input Validation,nan
CVE-2012-1889,26/02/2019 14:04,13/06/2012 4:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1882,26/02/2019 14:04,12/06/2012 22:55,4.3,200, Information Exposure,nan
CVE-2012-1881,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1880,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1879,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1878,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1877,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1876,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1875,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1874,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1873,26/02/2019 14:04,12/06/2012 22:55,4.3,200, Information Exposure,nan
CVE-2012-1870,26/02/2019 14:04,10/07/2012 21:55,4.3,200, Information Exposure,nan
CVE-2012-1867,26/02/2019 14:04,12/06/2012 22:55,7.2,399, Resource Management Errors,nan
CVE-2012-1866,26/02/2019 14:04,12/06/2012 22:55,7.2,20, Improper Input Validation,nan
CVE-2012-1865,26/02/2019 14:04,12/06/2012 22:55,7.2,20, Improper Input Validation,nan
CVE-2012-1864,26/02/2019 14:04,12/06/2012 22:55,7.2,20, Improper Input Validation,nan
CVE-2012-1858,26/02/2019 14:04,12/06/2012 22:55,4.3,200, Information Exposure,nan
CVE-2012-1855,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1851,26/02/2019 14:04,15/08/2012 1:55,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2012-1850,26/02/2019 14:04,15/08/2012 1:55,5.0,20, Improper Input Validation,nan
CVE-2012-1848,26/02/2019 14:04,9/05/2012 0:55,7.2,20, Improper Input Validation,nan
CVE-2012-1528,26/02/2019 14:04,14/11/2012 0:55,9.3,189, Numeric Errors,nan
CVE-2012-1527,26/02/2019 14:04,14/11/2012 0:55,9.3,189, Numeric Errors,nan
CVE-2012-1523,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0180,26/02/2019 14:04,9/05/2012 0:55,7.2,20, Improper Input Validation,nan
CVE-2012-0175,26/02/2019 14:04,10/07/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0173,26/02/2019 14:04,12/06/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0157,26/02/2019 14:04,13/03/2012 21:55,7.2,20, Improper Input Validation,nan
CVE-2012-0154,26/02/2019 14:04,14/02/2012 22:55,7.2,399, Resource Management Errors,nan
CVE-2012-0151,26/02/2019 14:04,10/04/2012 21:55,9.3,20, Improper Input Validation,nan
CVE-2012-0149,26/02/2019 14:04,14/02/2012 22:55,7.2,20, Improper Input Validation,nan
CVE-2012-0148,26/02/2019 14:04,14/02/2012 22:55,7.2,20, Improper Input Validation,nan
CVE-2012-0015,26/02/2019 14:04,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0014,26/02/2019 14:04,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0011,26/02/2019 14:04,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0006,26/02/2019 14:04,13/03/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2012-0005,26/02/2019 14:04,10/01/2012 21:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0002,26/02/2019 14:04,13/03/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3417,26/02/2019 14:04,30/12/2011 1:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3416,26/02/2019 14:04,30/12/2011 1:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3415,26/02/2019 14:04,30/12/2011 1:55,6.8,20, Improper Input Validation,nan
CVE-2011-3414,26/02/2019 14:04,30/12/2011 1:55,7.8,399, Resource Management Errors,nan
CVE-2011-3408,26/02/2019 14:04,14/12/2011 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-3406,26/02/2019 14:04,14/12/2011 0:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3400,26/02/2019 14:04,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3397,26/02/2019 14:04,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2014,26/02/2019 14:04,8/11/2011 21:55,9.0,287, Improper Authentication,nan
CVE-2011-2011,26/02/2019 14:04,12/10/2011 2:52,7.2,399, Resource Management Errors,nan
CVE-2011-2005,26/02/2019 14:04,12/10/2011 2:52,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-2003,26/02/2019 14:04,12/10/2011 2:52,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2001,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-2000,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1999,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1997,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1996,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1995,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1993,26/02/2019 14:04,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1992,26/02/2019 14:04,14/12/2011 0:55,4.3,200, Information Exposure,nan
CVE-2011-1984,26/02/2019 14:04,15/09/2011 12:26,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1978,26/02/2019 14:04,10/08/2011 21:55,4.3,200, Information Exposure,nan
CVE-2011-1977,26/02/2019 14:04,10/08/2011 21:55,4.3,200, Information Exposure,nan
CVE-2011-1974,26/02/2019 14:04,10/08/2011 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1970,26/02/2019 14:04,10/08/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1968,26/02/2019 14:04,10/08/2011 21:55,7.1,399, Resource Management Errors,nan
CVE-2011-1967,26/02/2019 14:04,10/08/2011 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1964,26/02/2019 14:04,10/08/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1963,26/02/2019 14:04,10/08/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1962,26/02/2019 14:04,10/08/2011 21:55,4.3,200, Information Exposure,nan
CVE-2011-1961,26/02/2019 14:04,10/08/2011 21:55,9.3,20, Improper Input Validation,nan
CVE-2011-1960,26/02/2019 14:04,10/08/2011 21:55,4.3,200, Information Exposure,nan
CVE-2011-1894,26/02/2019 14:04,16/06/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1884,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1883,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1882,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1879,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1878,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1876,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1875,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1874,26/02/2019 14:04,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1873,26/02/2019 14:04,16/06/2011 20:55,9.3,20, Improper Input Validation,nan
CVE-2011-1870,26/02/2019 14:04,13/07/2011 23:55,7.2,189, Numeric Errors,nan
CVE-2011-1869,26/02/2019 14:04,16/06/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-1868,26/02/2019 14:04,16/06/2011 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1284,26/02/2019 14:04,13/07/2011 23:55,7.2,189, Numeric Errors,nan
CVE-2011-1283,26/02/2019 14:04,13/07/2011 23:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1282,26/02/2019 14:04,13/07/2011 23:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1281,26/02/2019 14:04,13/07/2011 22:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1271,26/02/2019 14:04,10/05/2011 19:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1268,26/02/2019 14:04,16/06/2011 20:55,10.0,20, Improper Input Validation,nan
CVE-2011-1266,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1264,26/02/2019 14:04,16/06/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1262,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1261,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1260,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1258,26/02/2019 14:04,16/06/2011 20:55,4.3,200, Information Exposure,nan
CVE-2011-1257,26/02/2019 14:04,10/08/2011 21:55,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1256,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1255,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1254,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1253,26/02/2019 14:04,12/10/2011 2:52,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1252,26/02/2019 14:04,16/06/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1251,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1250,26/02/2019 14:04,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1249,26/02/2019 14:04,16/06/2011 20:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1248,26/02/2019 14:04,13/05/2011 17:05,9.3,20, Improper Input Validation,nan
CVE-2011-1246,26/02/2019 14:04,16/06/2011 20:55,4.3,200, Information Exposure,nan
CVE-2011-1245,26/02/2019 14:04,13/04/2011 18:55,4.3,200, Information Exposure,nan
CVE-2011-1244,26/02/2019 14:04,13/04/2011 18:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-1242,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1241,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1240,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1239,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1238,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1237,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1236,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1235,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-1234,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-0675,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-0674,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-0672,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-0671,26/02/2019 14:04,13/04/2011 20:26,7.2,399, Resource Management Errors,nan
CVE-2011-0670,26/02/2019 14:04,13/04/2011 18:55,7.2,399, Resource Management Errors,nan
CVE-2011-0667,26/02/2019 14:04,13/04/2011 18:55,7.2,399, Resource Management Errors,nan
CVE-2011-0666,26/02/2019 14:04,13/04/2011 18:55,7.2,399, Resource Management Errors,nan
CVE-2011-0665,26/02/2019 14:04,13/04/2011 18:55,7.2,399, Resource Management Errors,nan
CVE-2011-0664,26/02/2019 14:04,16/06/2011 20:55,9.3,20, Improper Input Validation,nan
CVE-2011-0663,26/02/2019 14:04,13/04/2011 18:55,9.3,189, Numeric Errors,nan
CVE-2011-0662,26/02/2019 14:04,13/04/2011 18:55,7.2,399, Resource Management Errors,nan
CVE-2011-0661,26/02/2019 14:04,13/04/2011 18:55,10.0,20, Improper Input Validation,nan
CVE-2011-0660,26/02/2019 14:04,13/04/2011 18:55,9.3,20, Improper Input Validation,nan
CVE-2011-0658,26/02/2019 14:04,16/06/2011 20:55,9.3,189, Numeric Errors,nan
CVE-2011-0657,26/02/2019 14:04,13/04/2011 18:55,7.5,20, Improper Input Validation,nan
CVE-2011-0654,26/02/2019 14:04,16/02/2011 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0346,26/02/2019 14:04,7/01/2011 23:00,9.3,399, Resource Management Errors,nan
CVE-2011-0096,26/02/2019 14:04,31/01/2011 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0094,26/02/2019 14:04,13/04/2011 18:55,9.3,399, Resource Management Errors,nan
CVE-2011-0090,26/02/2019 14:04,9/02/2011 1:00,7.2,20, Improper Input Validation,nan
CVE-2011-0089,26/02/2019 14:04,9/02/2011 1:00,7.2,20, Improper Input Validation,nan
CVE-2011-0088,26/02/2019 14:04,9/02/2011 1:00,7.2,20, Improper Input Validation,nan
CVE-2011-0087,26/02/2019 14:04,9/02/2011 1:00,7.2,20, Improper Input Validation,nan
CVE-2011-0086,26/02/2019 14:04,9/02/2011 1:00,7.2,20, Improper Input Validation,nan
CVE-2011-0043,26/02/2019 14:04,10/02/2011 16:00,7.2,310, Cryptographic Issues,nan
CVE-2011-0041,26/02/2019 14:04,13/04/2011 18:55,9.3,189, Numeric Errors,nan
CVE-2011-0036,26/02/2019 14:04,10/02/2011 16:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0035,26/02/2019 14:04,10/02/2011 16:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0034,26/02/2019 14:04,13/04/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0033,26/02/2019 14:04,10/02/2011 16:00,9.3,20, Improper Input Validation,nan
CVE-2011-0028,26/02/2019 14:04,13/04/2011 18:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0027,26/02/2019 14:04,12/01/2011 1:00,9.3,20, Improper Input Validation,nan
CVE-2011-0026,26/02/2019 14:04,12/01/2011 1:00,9.3,189, Numeric Errors,nan
CVE-2010-3974,26/02/2019 14:04,13/04/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3970,26/02/2019 14:04,22/12/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3963,26/02/2019 14:04,16/12/2010 19:33,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3962,26/02/2019 14:04,5/11/2010 17:00,9.3,399, Resource Management Errors,nan
CVE-2010-3959,26/02/2019 14:04,16/12/2010 19:33,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3958,26/02/2019 14:04,13/04/2011 18:55,9.3,20, Improper Input Validation,nan
CVE-2010-3957,26/02/2019 14:04,16/12/2010 19:33,6.9,399, Resource Management Errors,nan
CVE-2010-3956,26/02/2019 14:04,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3943,26/02/2019 14:04,16/12/2010 19:33,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-3942,26/02/2019 14:04,16/12/2010 19:33,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3941,26/02/2019 14:04,16/12/2010 19:33,7.2,399, Resource Management Errors,nan
CVE-2010-3940,26/02/2019 14:04,16/12/2010 19:33,7.2,399, Resource Management Errors,nan
CVE-2010-3939,26/02/2019 14:04,16/12/2010 19:33,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3348,26/02/2019 14:04,16/12/2010 19:33,4.3,200, Information Exposure,nan
CVE-2010-3346,26/02/2019 14:04,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3345,26/02/2019 14:04,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3343,26/02/2019 14:04,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3340,26/02/2019 14:04,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3331,26/02/2019 14:04,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3330,26/02/2019 14:04,13/10/2010 19:00,4.3,200, Information Exposure,nan
CVE-2010-3329,26/02/2019 14:04,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3328,26/02/2019 14:04,13/10/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-3327,26/02/2019 14:04,13/10/2010 19:00,4.3,200, Information Exposure,nan
CVE-2010-3326,26/02/2019 14:04,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3325,26/02/2019 14:04,13/10/2010 19:00,4.3,200, Information Exposure,nan
CVE-2010-3243,26/02/2019 14:04,13/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3228,26/02/2019 14:04,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3222,26/02/2019 14:04,13/10/2010 19:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2746,26/02/2019 14:04,13/10/2010 19:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2745,26/02/2019 14:04,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2744,26/02/2019 14:04,13/10/2010 19:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2741,26/02/2019 14:04,13/10/2010 19:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2740,26/02/2019 14:04,13/10/2010 19:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2738,26/02/2019 14:04,15/09/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-2729,26/02/2019 14:04,15/09/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-2568,26/02/2019 14:04,22/07/2010 5:43,9.3,20, Improper Input Validation,nan
CVE-2010-2567,26/02/2019 14:04,15/09/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2566,26/02/2019 14:04,11/08/2010 18:47,9.3,20, Improper Input Validation,nan
CVE-2010-2563,26/02/2019 14:04,15/09/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2560,26/02/2019 14:04,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2559,26/02/2019 14:04,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2558,26/02/2019 14:04,11/08/2010 18:47,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2557,26/02/2019 14:04,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2556,26/02/2019 14:04,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2550,26/02/2019 14:04,11/08/2010 18:47,10.0,20, Improper Input Validation,nan
CVE-2010-2265,26/02/2019 14:04,15/06/2010 14:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1897,26/02/2019 14:04,11/08/2010 18:47,7.2,20, Improper Input Validation,nan
CVE-2010-1896,26/02/2019 14:04,11/08/2010 18:47,7.2,20, Improper Input Validation,nan
CVE-2010-1895,26/02/2019 14:04,11/08/2010 18:47,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1894,26/02/2019 14:04,11/08/2010 18:47,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1891,26/02/2019 14:04,15/09/2010 19:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1887,26/02/2019 14:04,11/08/2010 18:47,4.4,20, Improper Input Validation,nan
CVE-2010-1885,26/02/2019 14:04,15/06/2010 14:04,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-1883,26/02/2019 14:04,13/10/2010 19:00,9.3,189, Numeric Errors,nan
CVE-2010-1882,26/02/2019 14:04,11/08/2010 18:47,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1690,26/02/2019 14:04,7/05/2010 18:30,6.4,20, Improper Input Validation,nan
CVE-2010-1689,26/02/2019 14:04,7/05/2010 18:30,6.4,310, Cryptographic Issues,nan
CVE-2010-1258,26/02/2019 14:04,11/08/2010 18:47,4.3,200, Information Exposure,nan
CVE-2010-0917,26/02/2019 14:04,3/03/2010 19:30,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0820,26/02/2019 14:04,15/09/2010 19:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0818,26/02/2019 14:04,15/09/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0816,26/02/2019 14:04,12/05/2010 11:46,9.3,189, Numeric Errors,nan
CVE-2010-0812,26/02/2019 14:04,14/04/2010 16:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-0807,26/02/2019 14:04,31/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0806,26/02/2019 14:04,10/03/2010 22:30,9.3,399, Resource Management Errors,nan
CVE-2010-0494,26/02/2019 14:04,31/03/2010 19:30,4.3,200, Information Exposure,nan
CVE-2010-0492,26/02/2019 14:04,31/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0491,26/02/2019 14:04,31/03/2010 19:30,9.3,399, Resource Management Errors,nan
CVE-2010-0490,26/02/2019 14:04,31/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0489,26/02/2019 14:04,31/03/2010 19:30,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-0488,26/02/2019 14:04,31/03/2010 19:30,4.3,200, Information Exposure,nan
CVE-2010-0487,26/02/2019 14:04,14/04/2010 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-0486,26/02/2019 14:04,14/04/2010 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-0483,26/02/2019 14:04,3/03/2010 19:30,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0480,26/02/2019 14:04,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0476,26/02/2019 14:04,14/04/2010 16:00,10.0,399, Resource Management Errors,nan
CVE-2010-0269,26/02/2019 14:04,14/04/2010 16:00,10.0,399, Resource Management Errors,nan
CVE-2010-0267,26/02/2019 14:04,31/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0255,26/02/2019 14:04,4/02/2010 20:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-0248,26/02/2019 14:04,22/01/2010 22:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0247,26/02/2019 14:04,22/01/2010 22:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0246,26/02/2019 14:04,22/01/2010 22:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0245,26/02/2019 14:04,22/01/2010 22:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0244,26/02/2019 14:04,22/01/2010 22:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0236,26/02/2019 14:04,14/04/2010 16:00,7.2,399, Resource Management Errors,nan
CVE-2010-0235,26/02/2019 14:04,14/04/2010 16:00,4.7,20, Improper Input Validation,nan
CVE-2010-0234,26/02/2019 14:04,14/04/2010 16:00,4.7,20, Improper Input Validation,nan
CVE-2010-0232,26/02/2019 14:04,21/01/2010 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-0028,26/02/2019 14:04,10/02/2010 18:30,9.3,189, Numeric Errors,nan
CVE-2010-0027,26/02/2019 14:04,22/01/2010 22:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0025,26/02/2019 14:04,14/04/2010 16:00,5.0,200, Information Exposure,nan
CVE-2010-0024,26/02/2019 14:04,14/04/2010 16:00,5.0,20, Improper Input Validation,nan
CVE-2010-0016,26/02/2019 14:04,10/02/2010 18:30,9.3,20, Improper Input Validation,nan
CVE-2009-3677,26/02/2019 14:04,9/12/2009 18:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3674,26/02/2019 14:04,9/12/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-3673,26/02/2019 14:04,9/12/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3672,26/02/2019 14:04,2/12/2009 11:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3671,26/02/2019 14:04,9/12/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-2531,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2530,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2529,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2525,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2519,26/02/2019 14:04,8/09/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2516,26/02/2019 14:04,14/10/2009 10:30,6.9,20, Improper Input Validation,nan
CVE-2009-2515,26/02/2019 14:04,14/10/2009 10:30,7.2,189, Numeric Errors,nan
CVE-2009-2511,26/02/2019 14:04,14/10/2009 10:30,7.5,189, Numeric Errors,nan
CVE-2009-2509,26/02/2019 14:04,9/12/2009 18:30,9.0,20, Improper Input Validation,nan
CVE-2009-2508,26/02/2019 14:04,9/12/2009 18:30,6.9,255, Credentials Management,nan
CVE-2009-2506,26/02/2019 14:04,9/12/2009 18:30,9.3,189, Numeric Errors,nan
CVE-2009-2499,26/02/2019 14:04,8/09/2009 22:30,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2498,26/02/2019 14:04,8/09/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2497,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2494,26/02/2019 14:04,12/08/2009 17:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1925,26/02/2019 14:04,8/09/2009 22:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1922,26/02/2019 14:04,12/08/2009 17:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-1920,26/02/2019 14:04,8/09/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1919,26/02/2019 14:04,29/07/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1918,26/02/2019 14:04,29/07/2009 17:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1917,26/02/2019 14:04,29/07/2009 17:30,9.3,399, Resource Management Errors,nan
CVE-2009-1547,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1539,26/02/2019 14:04,15/07/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1538,26/02/2019 14:04,15/07/2009 15:30,9.3,20, Improper Input Validation,nan
CVE-2009-1532,26/02/2019 14:04,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1531,26/02/2019 14:04,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1530,26/02/2019 14:04,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1529,26/02/2019 14:04,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1528,26/02/2019 14:04,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1141,26/02/2019 14:04,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1140,26/02/2019 14:04,10/06/2009 18:30,7.1,200, Information Exposure,nan
CVE-2009-1133,26/02/2019 14:04,12/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1126,26/02/2019 14:04,10/06/2009 18:30,7.2,20, Improper Input Validation,nan
CVE-2009-1125,26/02/2019 14:04,10/06/2009 18:30,7.2,20, Improper Input Validation,nan
CVE-2009-1124,26/02/2019 14:04,10/06/2009 18:30,7.2,20, Improper Input Validation,nan
CVE-2009-1123,26/02/2019 14:04,10/06/2009 18:30,7.2,20, Improper Input Validation,nan
CVE-2009-0554,26/02/2019 14:04,15/04/2009 8:00,9.3,399, Resource Management Errors,nan
CVE-2009-0553,26/02/2019 14:04,15/04/2009 8:00,9.3,399, Resource Management Errors,nan
CVE-2009-0551,26/02/2019 14:04,15/04/2009 8:00,9.3,399, Resource Management Errors,nan
CVE-2009-0243,26/02/2019 14:04,21/01/2009 20:30,7.2,16, Configuration,nan
CVE-2009-0239,26/02/2019 14:04,10/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0234,26/02/2019 14:04,11/03/2009 14:19,6.4,20, Improper Input Validation,nan
CVE-2009-0233,26/02/2019 14:04,11/03/2009 14:19,5.8,20, Improper Input Validation,nan
CVE-2009-0232,26/02/2019 14:04,15/07/2009 15:30,9.3,189, Numeric Errors,nan
CVE-2009-0231,26/02/2019 14:04,15/07/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0093,26/02/2019 14:04,11/03/2009 14:19,3.5,20, Improper Input Validation,nan
CVE-2009-0091,26/02/2019 14:04,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0090,26/02/2019 14:04,14/10/2009 10:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-0089,26/02/2019 14:04,15/04/2009 8:00,5.8,20, Improper Input Validation,nan
CVE-2009-0088,26/02/2019 14:04,15/04/2009 8:00,9.3,20, Improper Input Validation,nan
CVE-2009-0086,26/02/2019 14:04,15/04/2009 8:00,10.0,189, Numeric Errors,nan
CVE-2009-0085,26/02/2019 14:04,10/03/2009 20:30,7.1,287, Improper Authentication,nan
CVE-2009-0084,26/02/2019 14:04,15/04/2009 8:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0083,26/02/2019 14:04,10/03/2009 20:30,7.2,20, Improper Input Validation,nan
CVE-2009-0082,26/02/2019 14:04,10/03/2009 20:30,7.2,20, Improper Input Validation,nan
CVE-2009-0081,26/02/2019 14:04,10/03/2009 20:30,9.3,20, Improper Input Validation,nan
CVE-2009-0079,26/02/2019 14:04,15/04/2009 8:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-0078,26/02/2019 14:04,15/04/2009 8:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0076,26/02/2019 14:04,10/02/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2008-4835,26/02/2019 14:04,14/01/2009 22:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4834,26/02/2019 14:04,14/01/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4261,26/02/2019 14:04,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4260,26/02/2019 14:04,10/12/2008 14:00,8.5,399, Resource Management Errors,nan
CVE-2008-4259,26/02/2019 14:04,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4258,26/02/2019 14:04,10/12/2008 14:00,8.5,399, Resource Management Errors,nan
CVE-2008-4250,26/02/2019 14:04,23/10/2008 22:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4114,26/02/2019 14:04,16/09/2008 23:00,7.1,399, Resource Management Errors,nan
CVE-2008-4038,26/02/2019 14:04,15/10/2008 0:12,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4036,26/02/2019 14:04,15/10/2008 0:12,7.2,189, Numeric Errors,nan
CVE-2008-4029,26/02/2019 14:04,12/11/2008 23:30,4.3,200, Information Exposure,nan
CVE-2008-3477,26/02/2019 14:04,15/10/2008 0:12,9.3,399, Resource Management Errors,nan
CVE-2008-3476,26/02/2019 14:04,15/10/2008 0:12,9.3,399, Resource Management Errors,nan
CVE-2008-3475,26/02/2019 14:04,15/10/2008 0:12,9.3,399, Resource Management Errors,nan
CVE-2008-3474,26/02/2019 14:04,15/10/2008 0:12,4.3,200, Information Exposure,nan
CVE-2008-3472,26/02/2019 14:04,15/10/2008 0:12,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-3009,26/02/2019 14:04,10/12/2008 14:00,10.0,255, Credentials Management,nan
CVE-2008-2251,26/02/2019 14:04,15/10/2008 0:12,7.2,399, Resource Management Errors,nan
CVE-2008-2250,26/02/2019 14:04,15/10/2008 0:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1544,26/02/2019 14:04,28/03/2008 23:44,7.1,20, Improper Input Validation,nan
CVE-2008-1436,26/02/2019 14:04,21/04/2008 17:05,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0107,26/02/2019 14:04,8/07/2008 23:41,9.0,189, Numeric Errors,nan
CVE-2008-0077,26/02/2019 14:04,12/02/2008 23:00,9.3,399, Resource Management Errors,nan
CVE-2007-3034,26/02/2019 14:04,14/08/2007 21:17,9.3,189, Numeric Errors,nan
CVE-2008-3465,26/02/2019 14:02,10/12/2008 14:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2249,26/02/2019 14:02,10/12/2008 14:00,9.3,189, Numeric Errors,nan
CVE-2019-8372,26/02/2019 13:59,18/02/2019 15:29,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2019-9026,26/02/2019 13:40,23/02/2019 12:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19905,26/02/2019 13:28,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19904,26/02/2019 13:22,31/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5454,26/02/2019 13:21,8/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19903,25/02/2019 22:13,31/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19507,25/02/2019 22:09,19/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20786,25/02/2019 21:57,24/02/2019 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-19844,25/02/2019 21:11,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17302,25/02/2019 21:11,21/09/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19845,25/02/2019 21:09,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19901,25/02/2019 21:03,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19902,25/02/2019 21:02,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19918,25/02/2019 21:01,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19600,25/02/2019 21:00,3/01/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17301,25/02/2019 20:51,21/09/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16447,25/02/2019 20:39,4/09/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8734,25/02/2019 20:08,16/10/2017 13:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-3981,25/02/2019 19:43,1/10/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-19601,25/02/2019 19:18,3/01/2019 20:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-9142,25/02/2019 19:15,25/02/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9028,25/02/2019 19:15,23/02/2019 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-9027,25/02/2019 19:15,23/02/2019 12:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19906,25/02/2019 19:04,31/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9115,25/02/2019 17:26,25/02/2019 4:29,7.5,20, Improper Input Validation,nan
CVE-2019-9040,25/02/2019 17:25,23/02/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9078,25/02/2019 17:18,24/02/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18692,25/02/2019 16:46,23/02/2019 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9113,25/02/2019 16:44,25/02/2019 4:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-9108,25/02/2019 16:43,25/02/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9109,25/02/2019 16:36,25/02/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9062,25/02/2019 16:36,23/02/2019 21:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9063,25/02/2019 16:18,23/02/2019 21:29,4.0,20, Improper Input Validation,nan
CVE-2019-9065,25/02/2019 16:15,23/02/2019 21:29,4.0,20, Improper Input Validation,nan
CVE-2018-20793,25/02/2019 16:07,25/02/2019 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20794,25/02/2019 16:05,25/02/2019 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20795,25/02/2019 16:02,25/02/2019 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9114,25/02/2019 16:01,25/02/2019 4:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-9064,25/02/2019 15:29,23/02/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-9110,25/02/2019 15:21,25/02/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9050,25/02/2019 15:19,23/02/2019 19:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-9047,25/02/2019 15:19,23/02/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9052,25/02/2019 15:15,23/02/2019 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9051,25/02/2019 15:14,23/02/2019 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9049,25/02/2019 15:14,23/02/2019 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9048,25/02/2019 15:14,23/02/2019 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-9107,25/02/2019 15:12,25/02/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-9066,25/02/2019 14:52,23/02/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20789,25/02/2019 14:44,25/02/2019 6:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20790,25/02/2019 14:41,25/02/2019 6:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20791,25/02/2019 14:36,25/02/2019 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20792,25/02/2019 14:28,25/02/2019 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14979,22/02/2019 20:31,28/12/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-13404,22/02/2019 20:23,13/02/2019 18:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-5909,22/02/2019 20:00,13/02/2019 18:29,10.0,284, Improper Access Control,nan
CVE-2019-0255,22/02/2019 19:58,15/02/2019 18:29,5.5,20, Improper Input Validation,nan
CVE-2018-6011,22/02/2019 19:53,1/11/2018 17:29,6.8,255, Credentials Management,nan
CVE-2019-9015,22/02/2019 19:38,22/02/2019 16:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6139,22/02/2019 19:19,7/02/2019 23:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19036,22/02/2019 19:04,17/12/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000271,22/02/2019 18:54,4/02/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18569,22/02/2019 18:50,11/02/2019 21:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-9004,22/02/2019 18:39,22/02/2019 15:29,5.0,399, Resource Management Errors,nan
CVE-2017-18362,22/02/2019 18:33,5/02/2019 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-9016,22/02/2019 18:18,22/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7684,22/02/2019 18:04,9/02/2019 22:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-15516,22/02/2019 17:52,31/01/2019 19:29,3.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-6908,22/02/2019 17:23,1/11/2018 17:29,5.0,287, Improper Authentication,nan
CVE-2018-6012,22/02/2019 17:07,1/11/2018 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7729,22/02/2019 16:11,22/02/2019 13:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-7728,22/02/2019 16:10,22/02/2019 13:29,5.1,295, Improper Certificate Validation,nan
CVE-2019-9002,22/02/2019 16:06,22/02/2019 7:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7550,22/02/2019 16:01,12/02/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-8996,22/02/2019 15:56,21/02/2019 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5595,22/02/2019 15:38,12/02/2019 5:29,2.1,20, Improper Input Validation,nan
CVE-2019-5596,22/02/2019 15:36,12/02/2019 5:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-0696,22/02/2019 15:35,13/02/2019 18:29,3.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-8395,22/02/2019 14:56,17/02/2019 4:29,7.5,254, 7PK – Security Features,nan
CVE-2019-5727,22/02/2019 13:49,21/02/2019 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15136,22/02/2019 13:41,30/01/2019 15:29,2.6,20, Improper Input Validation,nan
CVE-2019-1000001,22/02/2019 13:18,4/02/2019 21:29,5.0,255, Credentials Management,nan
CVE-2018-11855,21/02/2019 21:10,11/02/2019 15:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-15657,21/02/2019 20:56,5/02/2019 3:29,1.9,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-11847,21/02/2019 20:42,11/02/2019 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-20752,21/02/2019 20:39,4/02/2019 21:29,7.5,20, Improper Input Validation,nan
CVE-2019-8950,21/02/2019 19:58,20/02/2019 4:29,10.0,255, Credentials Management,nan
CVE-2019-8982,21/02/2019 19:56,21/02/2019 14:29,6.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-0257,21/02/2019 19:34,15/02/2019 18:29,6.5,285, Improper Authorization,nan
CVE-2019-6242,21/02/2019 19:31,8/02/2019 5:29,4.0,255, Credentials Management,nan
CVE-2018-19858,21/02/2019 19:11,30/01/2019 15:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5916,21/02/2019 18:52,13/02/2019 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-4012,21/02/2019 18:39,3/01/2019 22:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8983,21/02/2019 18:21,21/02/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8984,21/02/2019 18:20,21/02/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20371,21/02/2019 18:18,23/12/2018 2:29,5.0,255, Credentials Management,nan
CVE-2019-7390,21/02/2019 18:06,5/02/2019 0:29,5.0,284, Improper Access Control,nan
CVE-2019-8317,21/02/2019 17:48,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-3159,21/02/2019 17:42,13/04/2016 16:59,1.7,284, Improper Access Control,nan
CVE-2018-16190,21/02/2019 17:34,13/02/2019 18:29,6.8,426, Untrusted Search Path,nan
CVE-2018-18602,21/02/2019 17:19,31/12/2018 16:29,5.0,254, 7PK – Security Features,nan
CVE-2013-5654,21/02/2019 17:15,15/02/2019 21:29,9.4,284, Improper Access Control,nan
CVE-2018-1296,21/02/2019 17:13,7/02/2019 22:29,5.0,200, Information Exposure,nan
CVE-2018-20030,21/02/2019 15:59,20/02/2019 17:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2013-7469,21/02/2019 15:22,21/02/2019 3:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-2105,21/02/2019 15:09,5/05/2016 1:59,5.0,189, Numeric Errors,nan
CVE-2019-7722,21/02/2019 15:01,11/02/2019 14:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-8954,21/02/2019 14:38,20/02/2019 17:29,6.5,20, Improper Input Validation,nan
CVE-2018-15517,21/02/2019 14:33,31/01/2019 19:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-8948,21/02/2019 14:27,20/02/2019 4:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-7628,21/02/2019 14:23,8/02/2019 3:29,4.3,200, Information Exposure,nan
CVE-2019-7323,20/02/2019 23:42,4/02/2019 16:29,5.1,20, Improper Input Validation,nan
CVE-2018-19106,20/02/2019 20:29,20/02/2019 2:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7659,20/02/2019 20:29,26/07/2017 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18601,20/02/2019 20:20,31/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1000014,20/02/2019 20:18,4/02/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-12409,20/02/2019 20:05,13/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7649,20/02/2019 19:52,17/02/2019 21:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-1000220,20/02/2019 19:50,16/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000219,20/02/2019 19:50,16/06/2017 21:29,5.0,285, Improper Authorization,nan
CVE-2016-0926,20/02/2019 19:27,18/09/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1712,20/02/2019 19:24,2/08/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2002,20/02/2019 19:22,20/04/2016 17:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-1142,20/02/2019 19:21,16/01/2016 5:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-20744,20/02/2019 18:59,28/01/2019 8:29,4.3,346, Origin Validation Error,nan
CVE-2018-4056,20/02/2019 18:46,5/02/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6909,20/02/2019 18:18,1/11/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2019-1000015,20/02/2019 18:10,4/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7676,20/02/2019 17:53,9/02/2019 22:29,6.5,255, Credentials Management,nan
CVE-2019-1000022,20/02/2019 17:51,4/02/2019 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20245,20/02/2019 17:47,23/01/2019 17:29,5.0,295, Improper Certificate Validation,nan
CVE-2019-6453,20/02/2019 17:41,18/02/2019 15:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8919,20/02/2019 17:29,18/02/2019 20:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2019-8412,20/02/2019 17:07,17/02/2019 19:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8944,20/02/2019 17:04,20/02/2019 3:29,4.0,200, Information Exposure,nan
CVE-2016-0916,20/02/2019 17:00,10/06/2016 1:59,10.0,287, Improper Authentication,nan
CVE-2016-0778,20/02/2019 16:58,14/01/2016 22:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0777,20/02/2019 16:58,14/01/2016 22:59,4.0,200, Information Exposure,nan
CVE-2018-20745,20/02/2019 16:26,28/01/2019 8:29,4.3,346, Origin Validation Error,nan
CVE-2019-8933,20/02/2019 16:14,19/02/2019 2:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-0258,20/02/2019 16:10,15/02/2019 18:29,6.5,285, Improper Authorization,nan
CVE-2019-8435,20/02/2019 16:00,18/02/2019 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8378,20/02/2019 15:59,17/02/2019 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-8400,20/02/2019 15:48,17/02/2019 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0254,20/02/2019 15:36,15/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8421,20/02/2019 15:35,17/02/2019 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8418,20/02/2019 15:32,17/02/2019 21:29,4.0,255, Credentials Management,nan
CVE-2019-0259,20/02/2019 15:29,15/02/2019 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3700,20/02/2019 15:27,18/02/2019 17:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-0266,20/02/2019 15:19,15/02/2019 18:29,5.0,284, Improper Access Control,nan
CVE-2019-0267,20/02/2019 15:06,15/02/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8433,20/02/2019 14:31,18/02/2019 0:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8413,20/02/2019 14:13,17/02/2019 19:29,4.9,476, NULL Pointer Dereference,nan
CVE-2019-0101,20/02/2019 13:41,18/02/2019 17:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-8393,20/02/2019 13:13,17/02/2019 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8360,20/02/2019 13:09,16/02/2019 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12159,20/02/2019 13:01,18/02/2019 17:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8362,20/02/2019 12:58,16/02/2019 22:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2019-8411,19/02/2019 21:29,17/02/2019 19:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-5912,19/02/2019 21:23,13/02/2019 18:29,6.8,426, Untrusted Search Path,nan
CVE-2019-0262,19/02/2019 21:16,15/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8422,19/02/2019 21:11,17/02/2019 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-0251,19/02/2019 21:07,15/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8396,19/02/2019 21:05,17/02/2019 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-8408,19/02/2019 21:04,17/02/2019 18:29,4.0,20, Improper Input Validation,nan
CVE-2019-8397,19/02/2019 21:04,17/02/2019 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-8398,19/02/2019 21:03,17/02/2019 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-4617,19/02/2019 20:56,15/02/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8407,19/02/2019 20:47,17/02/2019 18:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-8419,19/02/2019 20:32,17/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2488,19/02/2019 19:56,13/11/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2019-8903,19/02/2019 19:45,18/02/2019 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16189,19/02/2019 19:42,13/02/2019 18:29,6.8,426, Untrusted Search Path,nan
CVE-2019-5911,19/02/2019 19:31,13/02/2019 18:29,6.8,426, Untrusted Search Path,nan
CVE-2019-7629,19/02/2019 19:28,18/02/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5913,19/02/2019 19:01,13/02/2019 18:29,6.8,426, Untrusted Search Path,nan
CVE-2019-7282,19/02/2019 18:28,31/01/2019 18:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2019-8935,19/02/2019 18:27,19/02/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7283,19/02/2019 18:11,31/01/2019 18:29,5.8,20, Improper Input Validation,nan
CVE-2018-15656,19/02/2019 17:54,5/02/2019 3:29,5.0,200, Information Exposure,nan
CVE-2018-15658,19/02/2019 17:53,5/02/2019 3:29,5.0,200, Information Exposure,nan
CVE-2019-8436,19/02/2019 17:30,18/02/2019 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8902,19/02/2019 17:17,18/02/2019 14:29,4.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8908,19/02/2019 17:07,18/02/2019 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-8392,19/02/2019 17:04,17/02/2019 4:29,5.0,284, Improper Access Control,nan
CVE-2019-8909,19/02/2019 17:01,18/02/2019 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2019-8911,19/02/2019 16:58,18/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8910,19/02/2019 16:58,18/02/2019 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2516,19/02/2019 16:48,15/02/2019 21:29,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-7297,19/02/2019 16:47,31/01/2019 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-8426,19/02/2019 16:33,18/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8425,19/02/2019 16:33,18/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8424,19/02/2019 16:33,18/02/2019 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8423,19/02/2019 16:33,18/02/2019 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8427,19/02/2019 16:32,18/02/2019 0:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8917,19/02/2019 16:31,18/02/2019 19:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2019-8429,19/02/2019 16:31,18/02/2019 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8428,19/02/2019 16:31,18/02/2019 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-8382,19/02/2019 16:30,17/02/2019 2:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-8434,19/02/2019 16:20,18/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8380,19/02/2019 16:14,17/02/2019 2:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-8432,19/02/2019 16:08,18/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8358,19/02/2019 16:02,16/02/2019 18:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4615,19/02/2019 15:29,15/02/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6703,19/02/2019 15:03,27/01/2019 2:29,7.5,284, Improper Access Control,nan
CVE-2019-8363,19/02/2019 14:50,16/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8361,19/02/2019 14:45,16/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7399,19/02/2019 14:29,17/02/2019 4:29,5.8,284, Improper Access Control,nan
CVE-2018-14992,19/02/2019 14:13,28/12/2018 21:29,2.1,254, 7PK – Security Features,nan
CVE-2019-8315,15/02/2019 21:43,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8312,15/02/2019 21:43,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8316,15/02/2019 21:42,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8319,15/02/2019 21:30,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-8314,15/02/2019 21:27,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-5497,15/02/2019 20:51,24/01/2019 20:29,2.1,200, Information Exposure,nan
CVE-2019-1000011,15/02/2019 20:31,4/02/2019 21:29,5.5,284, Improper Access Control,nan
CVE-2019-1000003,15/02/2019 19:40,4/02/2019 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14988,15/02/2019 19:24,28/12/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-14987,15/02/2019 19:17,28/12/2018 21:29,5.6,275, Permission Issues,nan
CVE-2019-2421,15/02/2019 19:12,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-6503,15/02/2019 18:33,22/01/2019 14:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-0688,15/02/2019 18:07,9/01/2019 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-20683,15/02/2019 17:54,10/01/2019 1:29,6.8,20, Improper Input Validation,nan
CVE-2018-20437,15/02/2019 17:52,25/12/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6907,15/02/2019 17:51,1/11/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6906,15/02/2019 17:48,1/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5892,15/02/2019 17:47,10/01/2019 17:29,4.0,20, Improper Input Validation,nan
CVE-2018-0689,15/02/2019 16:47,9/01/2019 23:29,6.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2017-15405,15/02/2019 16:41,9/01/2019 19:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-8345,15/02/2019 16:17,15/02/2019 14:29,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2019-8347,15/02/2019 16:08,15/02/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-1000002,15/02/2019 16:01,4/02/2019 21:29,5.5,284, Improper Access Control,nan
CVE-2019-1000006,15/02/2019 15:44,4/02/2019 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-1000008,15/02/2019 15:20,4/02/2019 21:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19505,15/02/2019 15:03,3/01/2019 19:29,4.0,287, Improper Authentication,nan
CVE-2019-1000007,15/02/2019 15:00,4/02/2019 21:29,5.8,19, Data Processing Errors,nan
CVE-2019-1000013,15/02/2019 14:37,4/02/2019 21:29,6.8,20, Improper Input Validation,nan
CVE-2019-8343,15/02/2019 13:52,15/02/2019 7:29,6.8,416, Use After Free,nan
CVE-2019-5914,15/02/2019 13:24,13/02/2019 18:29,5.7,476, NULL Pointer Dereference,nan
CVE-2018-20393,15/02/2019 2:49,23/12/2018 21:29,5.0,255, Credentials Management,nan
CVE-2019-5488,14/02/2019 20:54,7/01/2019 17:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9583,14/02/2019 20:50,11/02/2019 23:29,10.0,787, Out-of-bounds Write,nan
CVE-2019-1000005,14/02/2019 20:06,4/02/2019 21:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-15659,14/02/2019 19:40,5/02/2019 3:29,4.3,200, Information Exposure,nan
CVE-2019-3576,14/02/2019 19:27,2/01/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8328,14/02/2019 19:25,24/11/2015 20:59,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8506,14/02/2019 19:24,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17987,14/02/2019 19:08,26/12/2018 21:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2019-3577,14/02/2019 19:05,2/01/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17539,14/02/2019 18:57,28/12/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2015-8530,14/02/2019 18:56,14/05/2016 15:59,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8867,14/02/2019 18:53,22/05/2016 1:59,5.0,310, Cryptographic Issues,nan
CVE-2019-7692,14/02/2019 18:48,10/02/2019 16:29,7.5,20, Improper Input Validation,nan
CVE-2015-8878,14/02/2019 18:47,22/05/2016 1:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8699,14/02/2019 18:45,29/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0005,14/02/2019 18:40,15/01/2019 21:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-11899,14/02/2019 18:38,11/02/2019 15:29,4.6,129, Improper Validation of Array Index,nan
CVE-2018-20404,14/02/2019 18:28,26/12/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-18960,14/02/2019 18:25,24/12/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-13888,14/02/2019 18:21,11/02/2019 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15007,14/02/2019 18:05,28/12/2018 21:29,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14986,14/02/2019 17:57,28/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2019-6447,14/02/2019 17:39,16/01/2019 14:29,4.8,20, Improper Input Validation,nan
CVE-2018-14984,14/02/2019 17:31,28/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-13403,14/02/2019 17:18,13/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6489,14/02/2019 16:46,11/02/2019 21:29,6.4,20, Improper Input Validation,nan
CVE-2018-6974,14/02/2019 16:45,16/10/2018 19:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-18959,14/02/2019 16:40,24/12/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-20436,14/02/2019 16:30,24/12/2018 20:29,6.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6589,14/02/2019 16:27,14/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18698,14/02/2019 16:25,24/12/2018 17:29,5.0,254, 7PK – Security Features,nan
CVE-2019-0088,14/02/2019 16:07,10/01/2019 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-5656,14/02/2019 15:32,18/04/2017 16:59,5.0,384, Session Fixation,nan
CVE-2019-5915,14/02/2019 15:18,13/02/2019 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-7793,14/02/2019 15:13,24/12/2018 16:29,4.6,255, Credentials Management,nan
CVE-2018-16196,14/02/2019 14:59,9/01/2019 23:29,5.0,20, Improper Input Validation,nan
CVE-2019-5910,14/02/2019 14:21,13/02/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20381,14/02/2019 14:14,23/12/2018 21:29,5.0,255, Credentials Management,nan
CVE-2018-20380,14/02/2019 13:45,23/12/2018 21:29,5.0,255, Credentials Management,nan
CVE-2018-1000883,14/02/2019 1:58,20/12/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2019-7742,13/02/2019 21:48,12/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7740,13/02/2019 21:45,12/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7741,13/02/2019 21:36,12/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7744,13/02/2019 21:34,12/02/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7999,13/02/2019 21:32,14/04/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7869,13/02/2019 21:24,24/11/2015 20:59,6.6,189, Numeric Errors,nan
CVE-2015-7520,13/02/2019 21:20,12/04/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7865,13/02/2019 21:10,24/11/2015 20:59,7.7,284, Improper Access Control,nan
CVE-2015-8104,13/02/2019 20:52,16/11/2015 11:59,4.7,399, Resource Management Errors,nan
CVE-2015-7419,13/02/2019 20:42,14/11/2015 3:59,7.8,399, Resource Management Errors,nan
CVE-2019-2545,13/02/2019 20:02,16/01/2019 19:30,2.1,284, Improper Access Control,nan
CVE-2019-6289,13/02/2019 19:18,15/01/2019 7:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18334,13/02/2019 19:08,5/02/2019 22:29,5.0,200, Information Exposure,nan
CVE-2018-20742,13/02/2019 19:02,24/01/2019 5:29,5.0,787, Out-of-bounds Write,nan
CVE-2018-3980,13/02/2019 19:00,6/02/2019 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-18364,13/02/2019 18:47,8/02/2019 17:29,6.0,426, Untrusted Search Path,nan
CVE-2018-18441,13/02/2019 18:12,20/12/2018 23:29,5.0,200, Information Exposure,nan
CVE-2019-8335,13/02/2019 17:52,13/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-8334,13/02/2019 17:52,13/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13792,13/02/2019 17:19,10/02/2019 2:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000858,13/02/2019 16:43,20/12/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-8318,13/02/2019 16:27,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2009-5154,13/02/2019 16:10,9/02/2019 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-7673,13/02/2019 16:08,9/02/2019 22:29,5.0,200, Information Exposure,nan
CVE-2019-7674,13/02/2019 16:05,9/02/2019 22:29,5.0,255, Credentials Management,nan
CVE-2019-7675,13/02/2019 16:01,9/02/2019 22:29,5.0,287, Improper Authentication,nan
CVE-2018-1000851,13/02/2019 15:47,20/12/2018 15:29,5.0,320, Key Management Errors,nan
CVE-2019-8313,13/02/2019 15:39,13/02/2019 3:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-1000884,13/02/2019 15:28,20/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2019-7747,13/02/2019 15:24,11/02/2019 21:29,6.8,384, Session Fixation,nan
CVE-2018-1000889,13/02/2019 15:16,28/12/2018 16:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5499,13/02/2019 14:39,12/02/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-20767,13/02/2019 14:17,10/02/2019 17:29,6.5,20, Improper Input Validation,nan
CVE-2019-7720,13/02/2019 14:16,11/02/2019 4:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20768,13/02/2019 14:16,10/02/2019 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20770,13/02/2019 14:12,10/02/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20769,13/02/2019 14:12,10/02/2019 17:29,5.0,310, Cryptographic Issues,nan
CVE-2018-20771,13/02/2019 14:11,10/02/2019 17:29,7.5,20, Improper Input Validation,nan
CVE-2019-7698,13/02/2019 14:05,10/02/2019 22:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-19645,13/02/2019 13:19,12/02/2019 20:29,7.5,287, Improper Authentication,nan
CVE-2019-7738,13/02/2019 12:31,11/02/2019 21:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7748,12/02/2019 21:19,11/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0722,12/02/2019 21:04,1/02/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7737,12/02/2019 20:57,11/02/2019 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7693,12/02/2019 20:50,10/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11788,12/02/2019 20:38,7/01/2019 16:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-5343,12/02/2019 20:07,14/04/2016 14:59,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6633,12/02/2019 20:06,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6632,12/02/2019 20:01,8/12/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6631,12/02/2019 19:56,8/12/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6630,12/02/2019 19:56,8/12/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6628,12/02/2019 19:55,8/12/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6627,12/02/2019 19:55,8/12/2015 23:59,2.6,200, Information Exposure,nan
CVE-2015-6626,12/02/2019 19:55,8/12/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6622,12/02/2019 19:54,8/12/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6620,12/02/2019 19:53,8/12/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6619,12/02/2019 19:52,8/12/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6617,12/02/2019 19:36,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6616,12/02/2019 19:19,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4334,12/02/2019 19:10,7/12/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-5253,12/02/2019 19:09,18/11/2015 16:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5276,12/02/2019 19:05,17/11/2015 15:59,5.0,200, Information Exposure,nan
CVE-2018-9584,12/02/2019 19:04,11/02/2019 23:29,4.6,787, Out-of-bounds Write,nan
CVE-2015-5307,12/02/2019 19:04,16/11/2015 11:59,4.9,399, Resource Management Errors,nan
CVE-2015-6613,12/02/2019 19:02,3/11/2015 11:59,5.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-6612,12/02/2019 19:01,3/11/2015 11:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6611,12/02/2019 18:53,3/11/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-6610,12/02/2019 18:52,3/11/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9585,12/02/2019 18:48,11/02/2019 23:29,4.6,787, Out-of-bounds Write,nan
CVE-2015-6608,12/02/2019 18:45,3/11/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9586,12/02/2019 18:44,11/02/2019 23:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-9588,12/02/2019 18:37,11/02/2019 23:29,3.3,125, Out-of-bounds Read,nan
CVE-2015-4947,12/02/2019 18:36,15/09/2015 15:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4540,12/02/2019 18:36,26/09/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9592,12/02/2019 18:30,11/02/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2015-5347,12/02/2019 18:23,12/04/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9591,12/02/2019 18:14,11/02/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9590,12/02/2019 18:05,11/02/2019 23:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9589,12/02/2019 18:00,11/02/2019 23:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-9593,12/02/2019 17:51,11/02/2019 23:29,3.3,125, Out-of-bounds Read,nan
CVE-2019-7753,12/02/2019 17:37,12/02/2019 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7678,12/02/2019 17:09,9/02/2019 22:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12006,12/02/2019 16:11,11/02/2019 15:29,2.1,200, Information Exposure,nan
CVE-2018-12010,12/02/2019 15:57,11/02/2019 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9594,12/02/2019 15:52,11/02/2019 23:29,3.3,190, Integer Overflow or Wraparound,nan
CVE-2018-11962,12/02/2019 15:44,11/02/2019 15:29,7.2,416, Use After Free,nan
CVE-2018-12011,12/02/2019 15:37,11/02/2019 15:29,2.1,200, Information Exposure,nan
CVE-2018-12014,12/02/2019 15:25,11/02/2019 15:29,7.2,416, Use After Free,nan
CVE-2018-13889,12/02/2019 15:11,11/02/2019 15:29,7.2,416, Use After Free,nan
CVE-2018-13893,12/02/2019 15:04,11/02/2019 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-3923,12/02/2019 14:55,12/02/2019 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7733,12/02/2019 14:48,11/02/2019 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2019-7732,12/02/2019 14:26,11/02/2019 17:29,5.0,399, Resource Management Errors,nan
CVE-2019-7730,12/02/2019 14:03,11/02/2019 17:29,4.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7731,12/02/2019 13:57,11/02/2019 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1000849,11/02/2019 20:29,20/12/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2014-3004,11/02/2019 20:29,11/06/2014 14:55,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5204,11/02/2019 20:25,28/12/2018 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-4015,11/02/2019 20:13,18/12/2018 14:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-7797,11/02/2019 20:11,17/12/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-16596,11/02/2019 20:08,17/12/2018 19:29,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18767,11/02/2019 20:05,20/12/2018 23:29,1.9,255, Credentials Management,nan
CVE-2015-3012,11/02/2019 19:39,8/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2971,11/02/2019 19:30,19/07/2015 10:59,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12237,11/02/2019 19:23,24/01/2019 21:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12241,11/02/2019 19:04,27/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7677,11/02/2019 18:36,9/02/2019 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7900,11/02/2019 18:34,2/01/2019 16:29,4.0,200, Information Exposure,nan
CVE-2019-7699,11/02/2019 18:26,10/02/2019 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7719,11/02/2019 18:00,11/02/2019 4:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7718,11/02/2019 17:59,11/02/2019 4:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-20775,11/02/2019 17:58,11/02/2019 2:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20776,11/02/2019 17:57,11/02/2019 2:29,5.0,200, Information Exposure,nan
CVE-2019-7721,11/02/2019 17:56,11/02/2019 4:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20780,11/02/2019 17:09,11/02/2019 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20779,11/02/2019 17:09,11/02/2019 2:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20773,11/02/2019 16:52,11/02/2019 2:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20299,11/02/2019 16:37,19/12/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7697,11/02/2019 16:22,10/02/2019 22:29,4.3,20, Improper Input Validation,nan
CVE-2019-7704,11/02/2019 16:19,10/02/2019 22:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-7662,11/02/2019 16:19,9/02/2019 16:29,7.1,20, Improper Input Validation,nan
CVE-2019-7703,11/02/2019 16:18,10/02/2019 22:29,4.3,416, Use After Free,nan
CVE-2019-7700,11/02/2019 16:18,10/02/2019 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7702,11/02/2019 16:17,10/02/2019 22:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20778,11/02/2019 16:12,11/02/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3987,11/02/2019 16:11,14/05/2015 14:59,7.2,426, Untrusted Search Path,nan
CVE-2019-7701,11/02/2019 15:58,10/02/2019 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-0665,11/02/2019 15:51,9/01/2019 23:29,5.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-18007,11/02/2019 15:18,21/12/2018 23:29,5.0,255, Credentials Management,nan
CVE-2018-0651,11/02/2019 15:10,9/01/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20772,11/02/2019 14:54,11/02/2019 2:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7648,11/02/2019 14:31,8/02/2019 17:29,5.0,255, Credentials Management,nan
CVE-2018-0666,11/02/2019 14:16,9/01/2019 23:29,5.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-20774,11/02/2019 14:02,11/02/2019 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0668,11/02/2019 13:58,9/01/2019 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0670,11/02/2019 13:57,9/01/2019 23:29,7.5,287, Improper Authentication,nan
CVE-2018-0669,11/02/2019 13:57,9/01/2019 23:29,7.5,287, Improper Authentication,nan
CVE-2018-0676,11/02/2019 13:52,9/01/2019 23:29,5.8,287, Improper Authentication,nan
CVE-2018-20777,11/02/2019 13:48,11/02/2019 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0677,11/02/2019 13:44,9/01/2019 23:29,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0678,11/02/2019 13:36,9/01/2019 23:29,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1937,11/02/2019 2:29,16/04/2013 14:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5699,9/02/2019 11:29,2/09/2016 14:59,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2016-5636,9/02/2019 11:29,2/09/2016 14:59,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-0772,9/02/2019 11:29,2/09/2016 14:59,5.8,693, Protection Mechanism Failure,nan
CVE-2018-20751,8/02/2019 21:45,4/02/2019 19:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-19522,8/02/2019 20:27,18/12/2018 16:29,2.1,20, Improper Input Validation,nan
CVE-2018-18442,8/02/2019 20:14,20/12/2018 23:29,7.8,20, Improper Input Validation,nan
CVE-2019-6500,8/02/2019 20:03,21/01/2019 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1352,8/02/2019 20:02,8/02/2019 18:29,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2018-17459,8/02/2019 19:52,9/01/2019 19:29,4.3,19, Data Processing Errors,nan
CVE-2019-7632,8/02/2019 19:30,8/02/2019 5:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-1000009,8/02/2019 19:06,4/02/2019 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3973,8/02/2019 18:57,6/02/2019 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3976,8/02/2019 18:54,6/02/2019 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-7559,8/02/2019 18:39,7/02/2019 7:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-7815,8/02/2019 18:24,6/02/2019 23:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2015-3746,8/02/2019 18:24,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3745,8/02/2019 18:17,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3744,8/02/2019 18:17,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3743,8/02/2019 18:16,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3742,8/02/2019 18:14,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3741,8/02/2019 18:08,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7581,8/02/2019 18:02,7/02/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3740,8/02/2019 17:45,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3739,8/02/2019 17:45,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3738,8/02/2019 17:44,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3737,8/02/2019 17:42,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3736,8/02/2019 17:36,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3735,8/02/2019 17:22,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16187,8/02/2019 17:15,9/01/2019 23:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-3734,8/02/2019 17:14,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3733,8/02/2019 16:58,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3732,8/02/2019 16:47,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3731,8/02/2019 16:46,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3730,8/02/2019 16:41,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16188,8/02/2019 16:32,9/01/2019 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19523,8/02/2019 16:24,3/01/2019 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3729,8/02/2019 16:22,16/08/2015 23:59,4.3,254, 7PK – Security Features,nan
CVE-2019-7587,8/02/2019 15:31,7/02/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-7585,8/02/2019 15:23,7/02/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18503,8/02/2019 14:27,5/02/2019 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7582,8/02/2019 14:09,7/02/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7535,8/02/2019 14:01,7/02/2019 16:29,5.0,200, Information Exposure,nan
CVE-2019-7580,8/02/2019 13:01,7/02/2019 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-7545,8/02/2019 12:50,6/02/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19234,7/02/2019 21:21,20/12/2018 17:29,9.0,20, Improper Input Validation,nan
CVE-2019-7544,7/02/2019 21:11,6/02/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1000017,7/02/2019 20:32,4/02/2019 21:29,4.0,284, Improper Access Control,nan
CVE-2015-3747,7/02/2019 20:17,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6499,7/02/2019 20:15,21/01/2019 6:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2015-3754,7/02/2019 19:52,16/08/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-3752,7/02/2019 19:52,16/08/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-3751,7/02/2019 19:52,16/08/2015 23:59,5.0,254, 7PK – Security Features,nan
CVE-2015-3755,7/02/2019 19:51,16/08/2015 23:59,4.3,254, 7PK – Security Features,nan
CVE-2015-3753,7/02/2019 19:51,16/08/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-3750,7/02/2019 19:51,16/08/2015 23:59,6.4,254, 7PK – Security Features,nan
CVE-2015-3748,7/02/2019 19:47,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3749,7/02/2019 19:45,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18356,7/02/2019 19:35,15/01/2019 16:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17193,7/02/2019 19:21,19/12/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18355,7/02/2019 19:17,17/12/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-7813,7/02/2019 19:00,6/02/2019 23:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-7814,7/02/2019 18:58,6/02/2019 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20732,7/02/2019 18:14,17/01/2019 1:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-6719,7/02/2019 18:12,23/01/2019 22:29,5.0,416, Use After Free,nan
CVE-2018-18504,7/02/2019 18:01,5/02/2019 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2019-7569,7/02/2019 17:55,7/02/2019 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14995,7/02/2019 17:36,28/12/2018 21:29,1.9,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-15004,7/02/2019 17:34,28/12/2018 21:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2019-7568,7/02/2019 17:27,7/02/2019 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15002,7/02/2019 17:25,28/12/2018 21:29,1.9,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-15001,7/02/2019 17:19,28/12/2018 21:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1000836,7/02/2019 17:07,20/12/2018 15:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000829,7/02/2019 17:06,20/12/2018 15:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-7570,7/02/2019 16:39,7/02/2019 7:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20332,7/02/2019 16:33,21/12/2018 9:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3361,7/02/2019 16:31,21/04/2015 16:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7567,7/02/2019 16:30,7/02/2019 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6504,7/02/2019 16:17,6/02/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7560,7/02/2019 16:03,7/02/2019 7:29,4.3,416, Use After Free,nan
CVE-2018-18502,7/02/2019 15:42,5/02/2019 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17777,7/02/2019 15:24,18/12/2018 22:29,7.5,287, Improper Authentication,nan
CVE-2018-7080,7/02/2019 15:04,7/12/2018 21:29,5.4,254, 7PK – Security Features,nan
CVE-2015-3013,7/02/2019 15:02,8/05/2015 14:59,6.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1000840,7/02/2019 14:59,20/12/2018 15:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-7566,7/02/2019 14:56,7/02/2019 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000998,7/02/2019 14:26,4/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000843,7/02/2019 14:18,20/12/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7388,7/02/2019 14:12,5/02/2019 0:29,5.0,284, Improper Access Control,nan
CVE-2018-18871,7/02/2019 14:09,20/12/2018 21:29,5.0,255, Credentials Management,nan
CVE-2019-7389,7/02/2019 13:49,5/02/2019 0:29,7.8,284, Improper Access Control,nan
CVE-2019-7543,7/02/2019 13:34,6/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7546,7/02/2019 13:18,6/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18333,7/02/2019 13:11,5/02/2019 22:29,6.8,426, Untrusted Search Path,nan
CVE-2019-7547,7/02/2019 12:48,6/02/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9789,7/02/2019 11:29,13/07/2017 16:29,5.0,416, Use After Free,nan
CVE-2017-7679,7/02/2019 11:29,20/06/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7668,7/02/2019 11:29,20/06/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-3169,7/02/2019 11:29,20/06/2017 1:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-3167,7/02/2019 11:29,20/06/2017 1:29,7.5,287, Improper Authentication,nan
CVE-2016-6210,7/02/2019 11:29,13/02/2017 17:59,4.3,200, Information Exposure,nan
CVE-2016-4975,7/02/2019 11:29,14/08/2018 12:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2018-1000833,6/02/2019 22:27,20/12/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2019-7313,6/02/2019 21:48,3/02/2019 8:29,5.8,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2018-20757,6/02/2019 21:34,6/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20756,6/02/2019 21:34,6/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20755,6/02/2019 21:33,6/02/2019 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5203,6/02/2019 20:21,28/12/2018 16:29,7.5,20, Improper Input Validation,nan
CVE-2018-7836,6/02/2019 20:06,24/12/2018 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11799,6/02/2019 19:56,19/12/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-20170,6/02/2019 19:48,17/12/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-19982,6/02/2019 19:18,9/12/2018 19:29,2.9,295, Improper Certificate Validation,nan
CVE-2018-16191,6/02/2019 19:06,9/01/2019 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-20233,6/02/2019 18:15,18/01/2019 21:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-1000023,6/02/2019 17:53,4/02/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20161,6/02/2019 17:47,15/12/2018 6:29,3.3,254, 7PK – Security Features,nan
CVE-2019-1000024,6/02/2019 17:46,4/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12076,6/02/2019 17:37,13/12/2018 19:29,1.9,200, Information Exposure,nan
CVE-2019-1000016,6/02/2019 17:00,4/02/2019 21:29,4.3,129, Improper Validation of Array Index,nan
CVE-2019-6519,6/02/2019 16:52,5/02/2019 21:29,7.5,287, Improper Authentication,nan
CVE-2019-6521,6/02/2019 16:45,5/02/2019 21:29,7.5,287, Improper Authentication,nan
CVE-2019-6523,6/02/2019 16:43,5/02/2019 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6292,6/02/2019 15:39,15/01/2019 0:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-15655,6/02/2019 15:36,5/02/2019 3:29,4.3,200, Information Exposure,nan
CVE-2019-6293,6/02/2019 15:34,15/01/2019 0:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-1000004,6/02/2019 15:34,4/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000815,6/02/2019 14:36,20/12/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2019-6591,6/02/2019 14:10,5/02/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19653,6/02/2019 13:38,9/12/2018 19:29,4.3,310, Cryptographic Issues,nan
CVE-2018-15362,6/02/2019 13:28,7/12/2018 15:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-1000282,6/02/2019 13:11,5/02/2019 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2019-1000010,6/02/2019 12:50,4/02/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8033,5/02/2019 21:58,13/12/2018 14:29,5.0,200, Information Exposure,nan
CVE-2019-7350,5/02/2019 21:50,4/02/2019 19:29,4.9,384, Session Fixation,nan
CVE-2019-7347,5/02/2019 21:33,4/02/2019 19:29,6.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2019-7349,5/02/2019 21:32,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7348,5/02/2019 21:28,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7346,5/02/2019 21:28,4/02/2019 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-7345,5/02/2019 21:27,4/02/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7344,5/02/2019 21:27,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7343,5/02/2019 21:26,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7342,5/02/2019 21:26,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7341,5/02/2019 21:26,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7340,5/02/2019 21:25,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7339,5/02/2019 21:25,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7337,5/02/2019 21:24,4/02/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7336,5/02/2019 21:24,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7335,5/02/2019 21:23,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20129,5/02/2019 21:23,13/12/2018 8:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19991,5/02/2019 20:53,10/12/2018 0:29,7.5,254, 7PK – Security Features,nan
CVE-2019-7402,5/02/2019 20:51,5/02/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18331,5/02/2019 20:45,21/12/2018 15:29,5.0,275, Permission Issues,nan
CVE-2018-20145,5/02/2019 20:44,13/12/2018 20:29,5.0,254, 7PK – Security Features,nan
CVE-2019-7403,5/02/2019 20:39,5/02/2019 16:29,5.5,284, Improper Access Control,nan
CVE-2018-6152,5/02/2019 20:39,4/12/2018 17:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3988,5/02/2019 20:33,10/12/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-18203,5/02/2019 20:25,28/11/2018 23:29,6.9,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-19960,5/02/2019 19:59,7/12/2018 16:29,4.4,20, Improper Input Validation,nan
CVE-2018-20300,5/02/2019 19:52,20/12/2018 0:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19863,5/02/2019 19:34,22/12/2018 15:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-7063,5/02/2019 19:33,7/12/2018 21:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7065,5/02/2019 19:32,7/12/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7067,5/02/2019 19:31,7/12/2018 21:29,6.5,287, Improper Authentication,nan
CVE-2015-2862,5/02/2019 19:25,20/07/2015 23:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16177,5/02/2019 19:07,9/01/2019 23:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2015-2559,5/02/2019 18:52,25/03/2015 14:59,3.5,284, Improper Access Control,nan
CVE-2015-2172,5/02/2019 18:24,30/03/2015 14:59,6.5,284, Improper Access Control,nan
CVE-2018-6982,5/02/2019 18:23,4/12/2018 14:29,4.9,200, Information Exposure,nan
CVE-2018-6981,5/02/2019 18:22,4/12/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2682,5/02/2019 18:15,26/03/2015 14:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-1454,5/02/2019 18:13,2/02/2015 16:59,7.1,310, Cryptographic Issues,nan
CVE-2019-6986,5/02/2019 17:37,28/01/2019 15:29,5.0,20, Improper Input Validation,nan
CVE-2019-6488,5/02/2019 17:30,18/01/2019 19:29,4.6,404, Improper Resource Shutdown or Release,nan
CVE-2018-19911,5/02/2019 17:27,6/12/2018 18:29,7.6,20, Improper Input Validation,nan
CVE-2019-7234,5/02/2019 17:13,30/01/2019 21:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7300,5/02/2019 17:02,1/02/2019 9:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-19791,5/02/2019 16:10,3/12/2018 6:29,4.0,20, Improper Input Validation,nan
CVE-2018-14708,5/02/2019 15:38,3/12/2018 22:29,7.5,287, Improper Authentication,nan
CVE-2018-5498,5/02/2019 15:31,1/02/2019 16:29,3.5,20, Improper Input Validation,nan
CVE-2018-17939,5/02/2019 15:31,4/12/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-11347,5/02/2019 15:30,4/12/2018 17:29,6.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-17975,5/02/2019 15:24,4/12/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-18843,5/02/2019 15:19,4/12/2018 23:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-7298,5/02/2019 15:13,1/02/2019 6:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-7338,5/02/2019 15:00,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19836,5/02/2019 14:24,3/12/2018 19:29,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-19608,5/02/2019 14:19,5/12/2018 22:29,1.9,310, Cryptographic Issues,nan
CVE-2019-7334,5/02/2019 14:18,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7333,5/02/2019 14:15,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5496,5/02/2019 14:09,4/12/2018 20:29,2.1,200, Information Exposure,nan
CVE-2019-7332,5/02/2019 14:08,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7328,5/02/2019 13:45,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7327,5/02/2019 13:45,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7329,5/02/2019 13:44,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7330,5/02/2019 13:43,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7331,5/02/2019 13:42,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1976,4/02/2019 21:28,8/02/2017 22:59,2.1,284, Improper Access Control,nan
CVE-2015-1444,4/02/2019 21:24,6/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7301,4/02/2019 21:14,1/02/2019 9:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-20058,4/02/2019 20:20,11/12/2018 9:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0691,4/02/2019 20:16,15/11/2018 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2019-7352,4/02/2019 20:13,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7351,4/02/2019 20:13,4/02/2019 19:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2019-7326,4/02/2019 20:13,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7325,4/02/2019 20:13,4/02/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20298,4/02/2019 19:21,19/12/2018 17:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-19127,4/02/2019 19:16,9/11/2018 12:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12318,4/02/2019 19:04,4/12/2018 17:29,4.0,255, Credentials Management,nan
CVE-2015-1319,4/02/2019 18:59,17/09/2015 16:59,2.1,20, Improper Input Validation,nan
CVE-2015-1351,4/02/2019 18:57,30/03/2015 10:59,7.5,416, Use After Free,nan
CVE-2015-1195,4/02/2019 18:52,21/01/2015 18:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000841,4/02/2019 18:45,20/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19417,4/02/2019 18:19,21/11/2018 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18629,4/02/2019 17:44,20/12/2018 23:29,7.2,426, Untrusted Search Path,nan
CVE-2019-7160,4/02/2019 17:36,29/01/2019 16:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7262,4/02/2019 17:25,19/03/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18964,4/02/2019 17:13,6/11/2018 4:29,4.0,20, Improper Input Validation,nan
CVE-2018-7961,4/02/2019 17:07,27/11/2018 22:29,4.3,200, Information Exposure,nan
CVE-2018-7112,4/02/2019 17:02,3/12/2018 15:29,4.9,200, Information Exposure,nan
CVE-2018-16185,4/02/2019 16:46,9/01/2019 23:29,6.8,20, Improper Input Validation,nan
CVE-2018-16186,4/02/2019 16:45,9/01/2019 23:29,8.3,798, Use of Hard-coded Credentials,nan
CVE-2018-3986,4/02/2019 16:33,3/01/2019 22:29,2.1,200, Information Exposure,nan
CVE-2013-5960,4/02/2019 16:33,30/09/2013 17:09,5.8,310, Cryptographic Issues,nan
CVE-2019-6247,4/02/2019 16:25,13/01/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6245,4/02/2019 16:20,13/01/2019 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5197,4/02/2019 16:17,2/01/2019 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-18332,4/02/2019 15:27,21/12/2018 15:29,5.0,275, Permission Issues,nan
CVE-2018-19646,4/02/2019 14:58,28/11/2018 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-3980,4/02/2019 14:54,18/05/2017 19:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19520,4/02/2019 14:50,25/11/2018 20:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-5725,4/02/2019 14:49,8/01/2019 23:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-19335,4/02/2019 14:01,20/11/2018 9:29,2.6,20, Improper Input Validation,nan
CVE-2018-18865,4/02/2019 13:48,20/11/2018 19:29,4.3,255, Credentials Management,nan
CVE-2018-20717,4/02/2019 13:41,15/01/2019 16:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-15772,4/02/2019 13:41,13/11/2018 14:29,3.6,400, Uncontrolled Resource Consumption,nan
CVE-2018-18920,4/02/2019 13:31,12/11/2018 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17854,1/02/2019 20:43,1/10/2018 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1000839,1/02/2019 20:26,20/12/2018 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1000827,1/02/2019 20:24,20/12/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-19922,1/02/2019 19:49,6/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19041,1/02/2019 19:40,31/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12415,1/02/2019 19:30,6/11/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20733,1/02/2019 19:27,17/01/2019 1:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-19047,1/02/2019 19:26,7/11/2018 5:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-2478,1/02/2019 19:19,13/11/2018 20:29,6.5,20, Improper Input Validation,nan
CVE-2019-6257,1/02/2019 18:56,14/01/2019 8:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-0248,1/02/2019 18:50,8/01/2019 20:29,4.3,200, Information Exposure,nan
CVE-2018-20720,1/02/2019 18:44,16/01/2019 3:29,7.8,20, Improper Input Validation,nan
CVE-2018-16181,1/02/2019 18:25,9/01/2019 23:29,5.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2014-9605,1/02/2019 18:23,4/09/2015 15:59,9.4,287, Improper Authentication,nan
CVE-2015-0525,1/02/2019 18:14,12/03/2015 10:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-9493,1/02/2019 18:09,7/01/2015 19:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-20050,1/02/2019 18:08,10/12/2018 22:29,7.8,19, Data Processing Errors,nan
CVE-2014-9632,1/02/2019 18:07,6/02/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9192,1/02/2019 18:06,11/12/2014 15:59,5.0,189, Numeric Errors,nan
CVE-2018-4186,1/02/2019 18:02,11/01/2019 18:29,5.0,200, Information Exposure,nan
CVE-2018-15771,1/02/2019 17:43,13/11/2018 14:29,4.9,200, Information Exposure,nan
CVE-2018-7837,1/02/2019 17:29,24/12/2018 16:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7835,1/02/2019 17:28,24/12/2018 16:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18940,1/02/2019 17:24,31/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16528,1/02/2019 17:22,6/12/2018 23:29,6.8,20, Improper Input Validation,nan
CVE-2019-7295,1/02/2019 17:20,31/01/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7296,1/02/2019 17:17,31/01/2019 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12167,1/02/2019 17:17,10/01/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2019-3572,1/02/2019 16:49,2/01/2019 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19040,1/02/2019 16:48,31/01/2019 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0861,1/02/2019 16:42,13/04/2016 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-1000886,1/02/2019 16:41,20/12/2018 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000824,1/02/2019 16:26,20/12/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-19042,1/02/2019 16:23,31/01/2019 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16986,1/02/2019 16:16,6/11/2018 15:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19043,1/02/2019 16:07,31/01/2019 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6126,1/02/2019 15:45,11/01/2019 5:29,5.0,284, Improper Access Control,nan
CVE-2018-2477,1/02/2019 15:44,13/11/2018 20:29,6.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2019-6487,1/02/2019 15:28,18/01/2019 10:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-2491,1/02/2019 15:22,13/11/2018 20:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-2482,1/02/2019 15:07,13/11/2018 20:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-3956,1/02/2019 14:28,30/01/2019 22:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-12166,1/02/2019 13:11,10/01/2019 20:29,2.1,20, Improper Input Validation,nan
CVE-2018-19244,1/02/2019 2:19,13/11/2018 6:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-2499,1/02/2019 1:50,8/01/2019 20:29,5.0,200, Information Exposure,nan
CVE-2015-9278,1/02/2019 1:50,16/01/2019 16:29,5.0,255, Credentials Management,nan
CVE-2018-19440,1/02/2019 1:45,30/01/2019 15:29,5.0,200, Information Exposure,nan
CVE-2019-7235,1/02/2019 1:37,30/01/2019 21:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-1565,1/02/2019 1:35,30/01/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-1566,1/02/2019 1:32,30/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7233,1/02/2019 1:07,30/01/2019 21:29,6.8,476, NULL Pointer Dereference,nan
CVE-2019-7216,1/02/2019 1:03,31/01/2019 9:29,6.8,20, Improper Input Validation,nan
CVE-2019-7250,1/02/2019 1:00,31/01/2019 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12611,31/01/2019 23:52,30/01/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12610,31/01/2019 23:51,30/01/2019 15:29,5.0,200, Information Exposure,nan
CVE-2018-12609,31/01/2019 23:49,30/01/2019 15:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-6988,31/01/2019 20:30,28/01/2019 16:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-19792,31/01/2019 19:58,3/12/2018 6:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1139,31/01/2019 19:48,10/04/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-1135,31/01/2019 19:46,10/04/2015 14:59,7.2,20, Improper Input Validation,nan
CVE-2015-1134,31/01/2019 19:45,10/04/2015 14:59,7.2,20, Improper Input Validation,nan
CVE-2015-1133,31/01/2019 19:45,10/04/2015 14:59,7.2,20, Improper Input Validation,nan
CVE-2015-1132,31/01/2019 19:45,10/04/2015 14:59,10.0,20, Improper Input Validation,nan
CVE-2015-1131,31/01/2019 19:44,10/04/2015 14:59,7.2,20, Improper Input Validation,nan
CVE-2015-1140,31/01/2019 19:39,10/04/2015 14:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7113,31/01/2019 19:37,3/12/2018 15:29,7.2,254, 7PK – Security Features,nan
CVE-2018-15537,31/01/2019 19:31,29/11/2018 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19120,31/01/2019 19:30,29/11/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-19876,31/01/2019 19:27,5/12/2018 20:29,4.3,416, Use After Free,nan
CVE-2015-1145,31/01/2019 19:27,10/04/2015 14:59,1.9,310, Cryptographic Issues,nan
CVE-2015-1146,31/01/2019 19:25,10/04/2015 14:59,1.9,310, Cryptographic Issues,nan
CVE-2015-1147,31/01/2019 19:24,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2018-17187,31/01/2019 19:10,13/11/2018 15:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-17186,31/01/2019 19:10,6/11/2018 20:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-19370,31/01/2019 19:05,28/11/2018 22:29,6.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-20303,31/01/2019 19:02,20/12/2018 0:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20410,31/01/2019 18:50,24/12/2018 2:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19358,31/01/2019 18:06,18/11/2018 19:29,2.1,255, Credentials Management,nan
CVE-2019-3575,31/01/2019 18:00,3/01/2019 19:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20658,31/01/2019 17:20,2/01/2019 15:29,5.0,20, Improper Input Validation,nan
CVE-2016-10740,31/01/2019 17:01,29/01/2019 2:29,4.0,200, Information Exposure,nan
CVE-2018-19587,31/01/2019 17:00,27/11/2018 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19655,31/01/2019 16:44,29/11/2018 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20166,31/01/2019 16:33,2/01/2019 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11741,31/01/2019 16:12,26/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-11742,31/01/2019 16:09,26/12/2018 21:29,5.0,255, Credentials Management,nan
CVE-2019-7237,31/01/2019 15:11,30/01/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-7236,31/01/2019 15:11,30/01/2019 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16149,31/01/2019 15:04,7/11/2018 20:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-20304,31/01/2019 14:51,20/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6097,31/01/2019 14:45,9/01/2019 19:29,4.3,19, Data Processing Errors,nan
CVE-2018-19249,31/01/2019 13:27,3/01/2019 22:29,5.0,287, Improper Authentication,nan
CVE-2018-4179,30/01/2019 21:58,11/01/2019 18:29,2.1,200, Information Exposure,nan
CVE-2018-8021,30/01/2019 21:23,7/11/2018 14:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-2487,30/01/2019 20:55,13/11/2018 20:29,5.1,200, Information Exposure,nan
CVE-2018-2483,30/01/2019 20:35,13/11/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-2473,30/01/2019 20:33,13/11/2018 20:29,4.0,19, Data Processing Errors,nan
CVE-2018-1000890,30/01/2019 20:25,28/12/2018 16:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5720,30/01/2019 20:23,8/01/2019 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5748,30/01/2019 20:19,9/01/2019 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-15706,30/01/2019 20:13,31/10/2018 22:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9459,30/01/2019 20:03,6/11/2018 17:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0562,30/01/2019 19:47,8/01/2019 21:29,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-18933,30/01/2019 19:23,5/11/2018 9:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-18956,30/01/2019 19:15,5/11/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-20186,30/01/2019 19:01,17/12/2018 19:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-19660,30/01/2019 18:47,6/12/2018 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19659,30/01/2019 18:47,6/12/2018 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-5811,30/01/2019 18:37,7/12/2018 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10532,30/01/2019 18:35,30/10/2018 18:29,8.3,798, Use of Hard-coded Credentials,nan
CVE-2018-6091,30/01/2019 18:27,9/01/2019 19:29,4.3,19, Data Processing Errors,nan
CVE-2018-6096,30/01/2019 18:16,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-19148,30/01/2019 18:09,10/11/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-6100,30/01/2019 18:01,9/01/2019 19:29,4.3,19, Data Processing Errors,nan
CVE-2018-19782,30/01/2019 17:58,30/01/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9716,30/01/2019 17:56,8/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6084,30/01/2019 17:44,9/01/2019 19:29,7.2,20, Improper Input Validation,nan
CVE-2018-6162,30/01/2019 17:36,9/01/2019 19:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2019-0241,30/01/2019 17:19,8/01/2019 20:29,5.0,284, Improper Access Control,nan
CVE-2018-20307,30/01/2019 17:17,20/12/2018 9:29,4.0,200, Information Exposure,nan
CVE-2018-19829,30/01/2019 17:16,18/12/2018 22:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6106,30/01/2019 17:12,9/01/2019 19:29,6.8,19, Data Processing Errors,nan
CVE-2018-6109,30/01/2019 17:02,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2018-6133,30/01/2019 16:55,9/01/2019 19:29,4.3,19, Data Processing Errors,nan
CVE-2018-6110,30/01/2019 16:47,9/01/2019 19:29,5.8,20, Improper Input Validation,nan
CVE-2018-18924,30/01/2019 16:38,4/11/2018 6:29,6.5,20, Improper Input Validation,nan
CVE-2018-18980,30/01/2019 16:35,6/11/2018 4:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000415,30/01/2019 16:13,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000418,30/01/2019 16:10,9/01/2019 23:29,4.0,255, Credentials Management,nan
CVE-2019-7154,30/01/2019 16:06,29/01/2019 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7152,30/01/2019 16:06,29/01/2019 0:29,4.3,125, Out-of-bounds Read,nan
CVE-2019-7153,30/01/2019 16:05,29/01/2019 0:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-6127,30/01/2019 16:02,9/01/2019 19:29,6.8,416, Use After Free,nan
CVE-2018-1000422,30/01/2019 16:02,9/01/2019 23:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000421,30/01/2019 16:01,9/01/2019 23:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-19203,30/01/2019 15:44,12/11/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-19135,30/01/2019 15:40,11/11/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6124,30/01/2019 15:33,9/01/2019 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-20071,30/01/2019 15:24,9/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15402,30/01/2019 15:11,9/01/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-16176,30/01/2019 15:02,9/01/2019 23:29,6.8,426, Untrusted Search Path,nan
CVE-2019-6246,30/01/2019 14:56,13/01/2019 0:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-15428,30/01/2019 14:47,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17458,30/01/2019 14:43,9/01/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-15490,30/01/2019 14:25,2/01/2019 18:29,6.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20681,30/01/2019 14:02,9/01/2019 23:29,3.6,200, Information Exposure,nan
CVE-2018-10711,30/01/2019 13:58,30/10/2018 18:29,7.2,20, Improper Input Validation,nan
CVE-2018-11062,30/01/2019 13:35,2/11/2018 22:29,9.0,798, Use of Hard-coded Credentials,nan
CVE-2018-20367,29/01/2019 21:01,22/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6985,29/01/2019 20:57,28/01/2019 9:29,6.8,125, Out-of-bounds Read,nan
CVE-2019-6983,29/01/2019 20:57,28/01/2019 9:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2019-6984,29/01/2019 20:56,28/01/2019 9:29,4.3,416, Use After Free,nan
CVE-2019-0243,29/01/2019 20:31,8/01/2019 20:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-6992,29/01/2019 20:22,28/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16088,29/01/2019 20:20,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2019-7172,29/01/2019 20:15,29/01/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7168,29/01/2019 20:11,29/01/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7169,29/01/2019 20:10,29/01/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-7170,29/01/2019 20:09,29/01/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20675,29/01/2019 20:06,9/01/2019 0:29,7.5,287, Improper Authentication,nan
CVE-2019-7171,29/01/2019 20:01,29/01/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6093,29/01/2019 20:01,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2019-7173,29/01/2019 19:57,29/01/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16087,29/01/2019 19:49,9/01/2019 19:29,4.3,254, 7PK – Security Features,nan
CVE-2018-6056,29/01/2019 19:41,9/01/2019 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4194,29/01/2019 19:31,11/01/2019 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-15982,29/01/2019 19:24,18/01/2019 17:29,10.0,416, Use After Free,nan
CVE-2018-16078,29/01/2019 19:21,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2018-6147,29/01/2019 19:03,9/01/2019 19:29,2.1,200, Information Exposure,nan
CVE-2018-16084,29/01/2019 18:44,9/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17457,29/01/2019 18:29,9/01/2019 19:29,6.8,416, Use After Free,nan
CVE-2018-18925,29/01/2019 18:07,4/11/2018 6:29,7.5,384, Session Fixation,nan
CVE-2019-7147,29/01/2019 17:55,29/01/2019 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17298,29/01/2019 17:11,21/09/2018 7:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2019-6979,29/01/2019 17:10,28/01/2019 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18732,29/01/2019 17:04,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18731,29/01/2019 17:04,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-7151,29/01/2019 17:03,29/01/2019 0:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-6991,29/01/2019 16:44,28/01/2019 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13115,29/01/2019 16:09,22/10/2018 20:29,6.4,20, Improper Input Validation,nan
CVE-2018-13114,29/01/2019 16:09,22/10/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2019-6990,29/01/2019 16:04,28/01/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16803,29/01/2019 15:09,10/01/2019 18:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6132,29/01/2019 14:49,11/01/2019 5:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18888,29/01/2019 14:36,1/11/2018 1:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18926,29/01/2019 14:23,4/11/2018 6:29,7.5,384, Session Fixation,nan
CVE-2015-7266,29/01/2019 14:15,30/10/2018 17:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-17873,29/01/2019 14:00,23/10/2018 21:30,3.3,320, Key Management Errors,nan
CVE-2018-1330,29/01/2019 13:53,13/09/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-19727,29/01/2019 13:33,28/01/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19724,29/01/2019 13:32,28/01/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19726,29/01/2019 13:30,28/01/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20596,28/01/2019 21:14,30/12/2018 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-18628,28/01/2019 21:13,23/10/2018 20:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2017-18349,28/01/2019 20:57,23/10/2018 20:29,10.0,20, Improper Input Validation,nan
CVE-2018-18009,28/01/2019 20:56,21/12/2018 23:29,5.0,255, Credentials Management,nan
CVE-2018-20568,28/01/2019 20:51,28/12/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20502,28/01/2019 20:43,26/12/2018 23:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-16785,28/01/2019 20:42,19/09/2018 15:29,6.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2018-1000411,28/01/2019 20:33,9/01/2019 23:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000423,28/01/2019 20:22,9/01/2019 23:29,2.1,255, Credentials Management,nan
CVE-2018-1000424,28/01/2019 20:18,9/01/2019 23:29,2.1,255, Credentials Management,nan
CVE-2018-1000425,28/01/2019 20:02,9/01/2019 23:29,2.1,255, Credentials Management,nan
CVE-2018-20718,28/01/2019 19:57,15/01/2019 16:29,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18160,28/01/2019 19:30,18/01/2019 22:29,10.0,310, Cryptographic Issues,nan
CVE-2019-6982,28/01/2019 19:26,28/01/2019 9:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-19548,28/01/2019 19:12,26/11/2018 7:29,5.0,255, Credentials Management,nan
CVE-2018-18013,28/01/2019 18:51,24/10/2018 21:29,7.2,502, Deserialization of Untrusted Data,nan
CVE-2019-3910,28/01/2019 18:30,18/01/2019 18:29,8.5,287, Improper Authentication,nan
CVE-2018-18748,28/01/2019 18:25,29/10/2018 12:29,10.0,20, Improper Input Validation,nan
CVE-2019-0622,28/01/2019 16:56,8/01/2019 21:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2019-6966,28/01/2019 16:02,25/01/2019 23:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-6798,28/01/2019 15:55,26/01/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17700,28/01/2019 14:58,24/01/2019 4:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-15983,28/01/2019 14:35,18/01/2019 17:29,6.8,426, Untrusted Search Path,nan
CVE-2019-6780,28/01/2019 14:11,24/01/2019 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-12666,28/01/2019 13:46,19/10/2018 22:29,7.5,287, Improper Authentication,nan
CVE-2018-4022,28/01/2019 13:35,26/10/2018 17:29,6.8,416, Use After Free,nan
CVE-2018-18713,28/01/2019 13:27,29/10/2018 12:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18753,28/01/2019 13:22,29/10/2018 12:29,10.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2019-3580,25/01/2019 21:41,3/01/2019 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-4046,25/01/2019 21:25,10/01/2019 15:29,2.1,20, Improper Input Validation,nan
CVE-2018-4043,25/01/2019 21:24,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-18224,25/01/2019 21:09,19/10/2018 22:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18223,25/01/2019 21:03,19/10/2018 22:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000419,25/01/2019 21:02,9/01/2019 23:29,4.0,200, Information Exposure,nan
CVE-2019-6803,25/01/2019 20:57,25/01/2019 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6805,25/01/2019 20:45,25/01/2019 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15497,25/01/2019 20:36,23/10/2018 21:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000426,25/01/2019 20:35,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8955,25/01/2019 20:01,24/10/2018 22:29,7.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-3970,25/01/2019 20:00,25/10/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-3971,25/01/2019 19:59,25/10/2018 18:29,7.2,123, Write-what-where Condition,nan
CVE-2018-16083,25/01/2019 19:56,9/01/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18380,25/01/2019 19:51,19/10/2018 20:29,5.8,384, Session Fixation,nan
CVE-2019-6802,25/01/2019 19:42,25/01/2019 4:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2018-18652,25/01/2019 19:22,25/10/2018 23:29,9.0,20, Improper Input Validation,nan
CVE-2018-16166,25/01/2019 18:59,9/01/2019 23:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12667,25/01/2019 18:05,19/10/2018 22:29,7.5,287, Improper Authentication,nan
CVE-2018-12668,25/01/2019 18:00,19/10/2018 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2019-6440,25/01/2019 17:46,16/01/2019 4:29,7.5,19, Data Processing Errors,nan
CVE-2017-14443,25/01/2019 17:18,17/09/2018 17:29,4.0,200, Information Exposure,nan
CVE-2017-15720,25/01/2019 17:11,23/01/2019 17:29,6.5,20, Improper Input Validation,nan
CVE-2019-6691,25/01/2019 16:54,23/01/2019 9:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18531,25/01/2019 16:29,19/10/2018 20:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2017-17835,25/01/2019 15:51,23/01/2019 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18656,25/01/2019 15:43,26/10/2018 12:29,2.1,255, Credentials Management,nan
CVE-2019-6779,25/01/2019 15:34,24/01/2019 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-4013,25/01/2019 15:13,19/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7431,25/01/2019 15:10,23/10/2018 21:31,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15751,25/01/2019 15:04,24/10/2018 22:29,7.5,287, Improper Authentication,nan
CVE-2017-18321,25/01/2019 14:57,3/01/2019 15:29,2.1,200, Information Exposure,nan
CVE-2017-18332,25/01/2019 14:56,18/01/2019 22:29,2.1,200, Information Exposure,nan
CVE-2018-11279,25/01/2019 14:24,18/01/2019 22:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11288,25/01/2019 14:10,18/01/2019 22:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-12542,25/01/2019 14:00,10/10/2018 20:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9281,24/01/2019 21:28,17/01/2019 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9276,24/01/2019 21:28,16/01/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3909,24/01/2019 21:05,18/01/2019 18:29,10.0,255, Credentials Management,nan
CVE-2019-6777,24/01/2019 20:14,24/01/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17160,24/01/2019 20:09,4/12/2018 21:29,10.0,20, Improper Input Validation,nan
CVE-2019-5884,24/01/2019 19:50,10/01/2019 8:29,4.3,200, Information Exposure,nan
CVE-2018-14846,24/01/2019 19:40,20/12/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17157,24/01/2019 19:36,4/12/2018 15:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2018-18008,24/01/2019 19:10,21/12/2018 23:29,5.0,255, Credentials Management,nan
CVE-2018-19371,24/01/2019 19:09,2/01/2019 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5879,24/01/2019 19:03,18/01/2019 22:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5881,24/01/2019 19:02,18/01/2019 22:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5880,24/01/2019 19:02,18/01/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5869,24/01/2019 19:01,18/01/2019 22:29,7.2,20, Improper Input Validation,nan
CVE-2018-20519,24/01/2019 18:51,27/12/2018 15:29,5.5,20, Improper Input Validation,nan
CVE-2018-5915,24/01/2019 18:50,18/01/2019 22:29,10.0,19, Data Processing Errors,nan
CVE-2018-3947,24/01/2019 18:33,1/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-5868,24/01/2019 18:04,18/01/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5867,24/01/2019 18:02,18/01/2019 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6137,24/01/2019 17:57,11/01/2019 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-3595,24/01/2019 17:31,18/01/2019 22:29,2.1,388, 7PK – Errors,nan
CVE-2018-19295,24/01/2019 17:23,17/12/2018 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-11999,24/01/2019 17:19,18/01/2019 22:29,4.9,20, Improper Input Validation,nan
CVE-2018-11998,24/01/2019 17:17,18/01/2019 22:29,7.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-20000,24/01/2019 16:50,10/12/2018 2:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-6244,24/01/2019 16:31,12/01/2019 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16621,24/01/2019 16:15,15/11/2018 20:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-4281,24/01/2019 15:47,11/01/2019 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16201,24/01/2019 15:45,9/01/2019 23:29,8.3,798, Use of Hard-coded Credentials,nan
CVE-2017-18358,24/01/2019 15:42,15/01/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20228,24/01/2019 15:37,19/12/2018 11:29,6.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-17628,24/01/2019 15:19,24/01/2019 4:29,6.8,416, Use After Free,nan
CVE-2018-16200,24/01/2019 15:09,9/01/2019 23:29,5.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16199,24/01/2019 15:06,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15031,24/01/2019 14:55,18/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2019-6135,24/01/2019 14:47,11/01/2019 17:29,5.0,399, Resource Management Errors,nan
CVE-2019-6138,24/01/2019 14:42,11/01/2019 17:29,5.0,399, Resource Management Errors,nan
CVE-2018-20614,24/01/2019 14:38,30/12/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-18883,24/01/2019 14:23,1/11/2018 0:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-12161,24/01/2019 13:38,10/10/2018 18:29,4.3,200, Information Exposure,nan
CVE-2019-6708,24/01/2019 13:31,23/01/2019 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-6707,24/01/2019 13:31,23/01/2019 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12317,24/01/2019 13:10,4/12/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-2528,24/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2507,24/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2486,24/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2482,24/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2017-6463,24/01/2019 11:29,27/03/2017 17:59,4.0,20, Improper Input Validation,nan
CVE-2017-6462,24/01/2019 11:29,27/03/2017 17:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9311,24/01/2019 11:29,13/01/2017 16:59,7.1,476, NULL Pointer Dereference,nan
CVE-2016-9310,24/01/2019 11:29,13/01/2017 16:59,6.4,400, Uncontrolled Resource Consumption,nan
CVE-2016-7428,24/01/2019 11:29,13/01/2017 16:59,3.3,400, Uncontrolled Resource Consumption,nan
CVE-2016-7427,24/01/2019 11:29,13/01/2017 16:59,3.3,400, Uncontrolled Resource Consumption,nan
CVE-2016-7426,24/01/2019 11:29,13/01/2017 16:59,4.3,399, Resource Management Errors,nan
CVE-2018-0698,23/01/2019 22:00,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20575,23/01/2019 21:15,28/12/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-18287,23/01/2019 21:08,14/10/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-3955,23/01/2019 21:00,17/10/2018 2:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3953,23/01/2019 20:59,17/10/2018 2:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3954,23/01/2019 20:58,17/10/2018 2:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-20576,23/01/2019 20:58,28/12/2018 17:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20715,23/01/2019 20:47,15/01/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16206,23/01/2019 19:54,13/01/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5866,23/01/2019 19:41,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6291,23/01/2019 19:32,15/01/2019 0:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-20682,23/01/2019 19:32,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6290,23/01/2019 19:29,15/01/2019 0:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-5914,23/01/2019 19:26,26/10/2018 13:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-4404,23/01/2019 19:01,11/01/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4330,23/01/2019 18:52,11/01/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16182,23/01/2019 18:50,9/01/2019 23:29,6.8,426, Untrusted Search Path,nan
CVE-2018-18820,23/01/2019 18:28,5/11/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6136,23/01/2019 18:23,11/01/2019 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17095,23/01/2019 18:18,16/09/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18467,23/01/2019 17:30,23/10/2018 21:30,5.0,20, Improper Input Validation,nan
CVE-2018-18428,23/01/2019 17:04,19/10/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-20716,23/01/2019 16:34,15/01/2019 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19197,23/01/2019 16:20,12/11/2018 5:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-6127,23/01/2019 16:19,11/01/2019 5:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10737,23/01/2019 15:15,16/01/2019 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6510,23/01/2019 15:12,22/01/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6509,23/01/2019 15:12,22/01/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6508,23/01/2019 15:12,22/01/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6507,23/01/2019 15:12,22/01/2019 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-13887,23/01/2019 14:49,11/01/2019 18:29,5.0,320, Key Management Errors,nan
CVE-2018-18318,23/01/2019 14:26,15/10/2018 5:29,7.8,476, NULL Pointer Dereference,nan
CVE-2018-10822,23/01/2019 14:10,17/10/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11993,23/01/2019 14:08,18/01/2019 22:29,8.3,787, Out-of-bounds Write,nan
CVE-2018-12817,23/01/2019 13:50,18/01/2019 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2019-6497,23/01/2019 13:40,20/01/2019 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5300,23/01/2019 12:59,16/06/2016 18:59,7.8,399, Resource Management Errors,nan
CVE-2017-2582,23/01/2019 11:29,26/07/2018 17:29,4.0,200, Information Exposure,nan
CVE-2019-6498,22/01/2019 21:52,21/01/2019 6:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17980,22/01/2019 21:48,15/10/2018 19:29,6.8,426, Untrusted Search Path,nan
CVE-2018-18382,22/01/2019 21:07,16/10/2018 7:29,6.5,20, Improper Input Validation,nan
CVE-2019-0570,22/01/2019 19:54,8/01/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-20577,22/01/2019 19:05,28/12/2018 17:29,9.4,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19718,22/01/2019 18:27,18/01/2019 17:29,5.0,200, Information Exposure,nan
CVE-2019-2400,22/01/2019 16:34,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2453,22/01/2019 16:30,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2447,22/01/2019 16:30,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2470,22/01/2019 16:28,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2485,22/01/2019 16:22,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-2498,22/01/2019 16:11,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2538,22/01/2019 16:06,16/01/2019 19:30,5.5,284, Improper Access Control,nan
CVE-2019-2543,22/01/2019 16:02,16/01/2019 19:30,5.0,200, Information Exposure,nan
CVE-2019-2541,22/01/2019 16:02,16/01/2019 19:30,5.4,284, Improper Access Control,nan
CVE-2019-2540,22/01/2019 16:02,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2544,22/01/2019 15:58,16/01/2019 19:30,2.1,200, Information Exposure,nan
CVE-2019-2549,22/01/2019 15:48,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2550,22/01/2019 15:47,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2018-20731,22/01/2019 15:43,17/01/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6442,22/01/2019 15:39,16/01/2019 5:29,4.0,787, Out-of-bounds Write,nan
CVE-2019-2489,22/01/2019 15:16,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2440,22/01/2019 15:16,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2435,22/01/2019 15:16,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2018-0667,22/01/2019 14:47,9/01/2019 23:29,6.8,426, Untrusted Search Path,nan
CVE-2019-6444,22/01/2019 14:44,16/01/2019 5:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-6443,22/01/2019 14:44,16/01/2019 5:29,6.4,125, Out-of-bounds Read,nan
CVE-2019-6285,22/01/2019 14:39,14/01/2019 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000417,22/01/2019 14:36,9/01/2019 23:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000414,22/01/2019 14:35,9/01/2019 23:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6439,22/01/2019 14:19,16/01/2019 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20728,22/01/2019 14:12,17/01/2019 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20729,22/01/2019 14:11,17/01/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20730,22/01/2019 14:10,17/01/2019 2:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6445,22/01/2019 13:35,16/01/2019 5:29,4.0,476, NULL Pointer Dereference,nan
CVE-2019-0624,22/01/2019 13:31,17/01/2019 18:29,3.5,20, Improper Input Validation,nan
CVE-2019-0646,22/01/2019 13:21,17/01/2019 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2502,19/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2495,19/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2494,19/01/2019 11:29,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2017-18255,19/01/2019 11:29,31/03/2018 17:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-18079,19/01/2019 11:29,29/01/2018 5:29,7.2,476, NULL Pointer Dereference,nan
CVE-2019-2399,19/01/2019 1:31,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2402,19/01/2019 1:30,16/01/2019 19:30,6.8,284, Improper Access Control,nan
CVE-2019-2403,19/01/2019 1:29,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2406,19/01/2019 1:28,16/01/2019 19:30,6.5,284, Improper Access Control,nan
CVE-2019-2410,19/01/2019 1:26,16/01/2019 19:30,3.6,284, Improper Access Control,nan
CVE-2019-2411,19/01/2019 1:23,16/01/2019 19:30,4.9,284, Improper Access Control,nan
CVE-2019-2413,19/01/2019 1:22,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2414,19/01/2019 1:21,16/01/2019 19:30,4.6,284, Improper Access Control,nan
CVE-2019-2395,19/01/2019 0:54,16/01/2019 19:30,5.5,284, Improper Access Control,nan
CVE-2019-2398,19/01/2019 0:51,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2407,19/01/2019 0:42,16/01/2019 19:30,3.6,284, Improper Access Control,nan
CVE-2019-2397,19/01/2019 0:42,16/01/2019 19:30,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-2401,19/01/2019 0:41,16/01/2019 19:30,5.5,284, Improper Access Control,nan
CVE-2019-2418,19/01/2019 0:40,16/01/2019 19:30,6.8,284, Improper Access Control,nan
CVE-2019-2425,19/01/2019 0:25,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2427,19/01/2019 0:16,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2430,18/01/2019 23:50,16/01/2019 19:30,4.0,200, Information Exposure,nan
CVE-2019-2431,18/01/2019 23:40,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-6295,18/01/2019 20:54,15/01/2019 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6296,18/01/2019 20:44,15/01/2019 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-5886,18/01/2019 20:28,10/01/2019 14:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2019-5887,18/01/2019 20:17,10/01/2019 14:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-2432,18/01/2019 19:55,16/01/2019 19:30,4.9,284, Improper Access Control,nan
CVE-2019-2438,18/01/2019 19:51,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2437,18/01/2019 19:51,16/01/2019 19:30,7.8,284, Improper Access Control,nan
CVE-2019-2441,18/01/2019 19:49,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2405,18/01/2019 19:47,16/01/2019 19:30,6.0,284, Improper Access Control,nan
CVE-2019-2404,18/01/2019 19:47,16/01/2019 19:30,5.0,200, Information Exposure,nan
CVE-2019-2452,18/01/2019 19:46,16/01/2019 19:30,6.5,284, Improper Access Control,nan
CVE-2019-2487,18/01/2019 19:43,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2493,18/01/2019 19:41,16/01/2019 19:30,2.6,284, Improper Access Control,nan
CVE-2019-2408,18/01/2019 19:40,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-2416,18/01/2019 19:39,16/01/2019 19:30,6.5,284, Improper Access Control,nan
CVE-2019-2512,18/01/2019 19:38,16/01/2019 19:30,4.0,284, Improper Access Control,nan
CVE-2019-2519,18/01/2019 19:35,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2417,18/01/2019 19:21,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2433,18/01/2019 19:20,16/01/2019 19:30,6.5,284, Improper Access Control,nan
CVE-2019-2423,18/01/2019 19:20,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2439,18/01/2019 19:18,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2442,18/01/2019 19:08,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2443,18/01/2019 19:06,16/01/2019 19:30,6.5,284, Improper Access Control,nan
CVE-2019-2409,18/01/2019 18:59,16/01/2019 19:30,3.3,284, Improper Access Control,nan
CVE-2019-2471,18/01/2019 18:55,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2490,18/01/2019 18:53,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-2412,18/01/2019 18:52,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2499,18/01/2019 18:50,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2415,18/01/2019 18:50,16/01/2019 19:30,6.0,284, Improper Access Control,nan
CVE-2019-2419,18/01/2019 18:42,16/01/2019 19:30,4.9,284, Improper Access Control,nan
CVE-2019-2429,18/01/2019 18:33,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2444,18/01/2019 18:29,16/01/2019 19:30,4.4,284, Improper Access Control,nan
CVE-2019-2462,18/01/2019 18:15,16/01/2019 19:30,6.4,200, Information Exposure,nan
CVE-2019-2547,18/01/2019 18:09,16/01/2019 19:30,3.5,284, Improper Access Control,nan
CVE-2012-6702,18/01/2019 17:55,16/06/2016 18:59,4.3,310, Cryptographic Issues,nan
CVE-2019-6278,18/01/2019 17:24,14/01/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-2445,18/01/2019 16:40,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2018-18389,18/01/2019 16:25,16/10/2018 18:29,7.5,287, Improper Authentication,nan
CVE-2019-2488,18/01/2019 16:24,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2016-10738,18/01/2019 16:20,16/01/2019 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-2491,18/01/2019 16:15,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2018-20719,18/01/2019 16:14,15/01/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2492,18/01/2019 16:12,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-2496,18/01/2019 16:02,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2019-2497,18/01/2019 16:01,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2479,18/01/2019 15:52,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2478,18/01/2019 15:51,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2477,18/01/2019 15:51,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2476,18/01/2019 15:47,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2475,18/01/2019 15:46,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2474,18/01/2019 15:46,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2473,18/01/2019 15:44,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2472,18/01/2019 15:43,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2018-20713,18/01/2019 15:39,15/01/2019 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-2469,18/01/2019 15:38,16/01/2019 19:30,5.8,284, Improper Access Control,nan
CVE-2019-2468,18/01/2019 15:37,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2467,18/01/2019 15:35,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2466,18/01/2019 15:31,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2018-16080,18/01/2019 15:21,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-16085,18/01/2019 15:19,9/01/2019 19:29,6.8,416, Use After Free,nan
CVE-2019-2465,18/01/2019 15:12,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2464,18/01/2019 15:06,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2018-20535,18/01/2019 15:05,28/12/2018 16:29,4.3,416, Use After Free,nan
CVE-2019-2463,18/01/2019 15:03,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2461,18/01/2019 14:55,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2018-20114,18/01/2019 14:55,2/01/2019 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-2460,18/01/2019 14:52,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-2458,18/01/2019 14:51,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-6461,18/01/2019 14:41,16/01/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-2457,18/01/2019 14:32,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2019-6462,18/01/2019 14:26,16/01/2019 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-2456,18/01/2019 14:12,16/01/2019 19:30,6.4,284, Improper Access Control,nan
CVE-2019-2480,18/01/2019 14:10,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2018-17127,18/01/2019 14:00,17/09/2018 4:29,7.8,476, NULL Pointer Dereference,nan
CVE-2017-14517,18/01/2019 11:29,17/09/2017 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-2396,17/01/2019 21:03,16/01/2019 19:30,4.3,284, Improper Access Control,nan
CVE-2018-12086,17/01/2019 21:00,14/09/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-2459,17/01/2019 20:55,16/01/2019 19:30,5.0,284, Improper Access Control,nan
CVE-2018-11020,17/01/2019 20:42,16/10/2018 22:29,4.9,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2019-6248,17/01/2019 20:27,13/01/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16179,17/01/2019 20:11,9/01/2019 23:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-16194,17/01/2019 19:47,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16192,17/01/2019 19:45,9/01/2019 23:29,3.3,200, Information Exposure,nan
CVE-2018-16195,17/01/2019 19:43,9/01/2019 23:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0639,17/01/2019 19:19,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-4643,17/01/2019 19:18,11/01/2019 18:29,4.0,200, Information Exposure,nan
CVE-2018-0631,17/01/2019 19:14,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0634,17/01/2019 19:13,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0630,17/01/2019 19:12,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12441,17/01/2019 19:11,11/10/2018 21:29,7.2,275, Permission Issues,nan
CVE-2018-0629,17/01/2019 19:10,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0628,17/01/2019 19:02,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2019-0249,17/01/2019 18:57,8/01/2019 20:29,5.0,200, Information Exposure,nan
CVE-2018-16193,17/01/2019 18:51,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0501,17/01/2019 18:49,21/08/2018 0:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2019-6455,17/01/2019 18:37,16/01/2019 18:29,4.3,415, Double Free,nan
CVE-2019-6457,17/01/2019 18:36,16/01/2019 18:29,4.3,399, Resource Management Errors,nan
CVE-2019-6456,17/01/2019 18:36,16/01/2019 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-6458,17/01/2019 18:35,16/01/2019 18:29,4.3,399, Resource Management Errors,nan
CVE-2019-0247,17/01/2019 18:35,8/01/2019 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2019-0246,17/01/2019 18:34,8/01/2019 20:29,7.5,287, Improper Authentication,nan
CVE-2019-6459,17/01/2019 18:33,16/01/2019 18:29,4.3,399, Resource Management Errors,nan
CVE-2019-6460,17/01/2019 18:28,16/01/2019 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-0238,17/01/2019 18:21,8/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4644,17/01/2019 17:55,11/01/2019 18:29,4.0,200, Information Exposure,nan
CVE-2018-20478,17/01/2019 17:26,26/12/2018 3:29,5.0,200, Information Exposure,nan
CVE-2018-16180,17/01/2019 17:23,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15766,17/01/2019 17:21,11/10/2018 19:29,5.0,254, 7PK – Security Features,nan
CVE-2018-20524,17/01/2019 16:46,27/12/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4642,17/01/2019 15:37,11/01/2019 18:29,4.3,254, 7PK – Security Features,nan
CVE-2019-0245,17/01/2019 15:21,8/01/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0244,17/01/2019 15:21,8/01/2019 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13891,17/01/2019 15:12,11/01/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2019-0240,17/01/2019 15:00,8/01/2019 20:29,5.0,20, Improper Input Validation,nan
CVE-2019-5893,17/01/2019 14:59,10/01/2019 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2019-6267,17/01/2019 14:50,15/01/2019 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1772,17/01/2019 14:49,15/01/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7576,17/01/2019 14:40,11/01/2019 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13888,17/01/2019 14:35,11/01/2019 18:29,5.0,704, Incorrect Type Conversion or Cast,nan
CVE-2017-2411,17/01/2019 14:30,11/01/2019 18:29,4.3,254, 7PK – Security Features,nan
CVE-2018-4147,17/01/2019 14:00,11/01/2019 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4169,17/01/2019 13:55,11/01/2019 18:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-4189,17/01/2019 13:53,11/01/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4298,17/01/2019 13:49,11/01/2019 18:29,10.0,275, Permission Issues,nan
CVE-2015-9277,17/01/2019 13:46,16/01/2019 16:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9279,17/01/2019 13:29,16/01/2019 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20726,17/01/2019 13:24,16/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20725,17/01/2019 13:23,16/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20724,17/01/2019 13:23,16/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20723,17/01/2019 13:23,16/01/2019 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15401,17/01/2019 13:13,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4033,17/01/2019 13:03,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4032,17/01/2019 13:02,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-12326,17/01/2019 11:29,17/06/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8612,17/01/2019 11:29,8/01/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-16164,16/01/2019 21:01,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-6249,16/01/2019 20:29,13/01/2019 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2019-6294,16/01/2019 20:23,15/01/2019 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8890,16/01/2019 20:11,12/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-0640,16/01/2019 19:35,9/01/2019 23:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0641,16/01/2019 19:34,9/01/2019 23:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18928,16/01/2019 19:30,4/11/2018 20:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9526,16/01/2019 19:29,11/06/2017 2:29,4.3,200, Information Exposure,nan
CVE-2017-14735,16/01/2019 19:29,25/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0379,16/01/2019 19:29,29/08/2017 22:29,5.0,200, Information Exposure,nan
CVE-2016-6814,16/01/2019 19:29,18/01/2018 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2015-8965,16/01/2019 19:29,6/04/2017 21:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7940,16/01/2019 19:29,9/11/2015 16:59,5.0,310, Cryptographic Issues,nan
CVE-2015-0852,16/01/2019 19:29,29/09/2015 18:59,5.0,189, Numeric Errors,nan
CVE-2018-20069,16/01/2019 19:14,9/01/2019 19:29,4.3,254, 7PK – Security Features,nan
CVE-2018-20067,16/01/2019 19:11,9/01/2019 19:29,4.3,254, 7PK – Security Features,nan
CVE-2018-20612,16/01/2019 18:39,30/12/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20318,16/01/2019 18:22,21/12/2018 0:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2019-5312,16/01/2019 18:20,4/01/2019 16:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10403,16/01/2019 17:30,9/01/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-4036,16/01/2019 17:28,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4035,16/01/2019 17:28,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4034,16/01/2019 17:28,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4042,16/01/2019 17:27,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4041,16/01/2019 17:27,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4037,16/01/2019 17:27,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4045,16/01/2019 17:26,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4044,16/01/2019 17:26,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2018-4047,16/01/2019 17:25,10/01/2019 15:29,6.6,20, Improper Input Validation,nan
CVE-2019-3494,16/01/2019 17:19,1/01/2019 15:29,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0632,16/01/2019 17:09,9/01/2019 23:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0633,16/01/2019 17:08,9/01/2019 23:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6111,16/01/2019 16:41,9/01/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-19150,16/01/2019 15:26,10/11/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6113,16/01/2019 15:25,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-6114,16/01/2019 15:22,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-6178,16/01/2019 15:12,9/01/2019 19:29,4.3,254, 7PK – Security Features,nan
CVE-2018-6179,16/01/2019 15:10,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2018-16205,16/01/2019 15:07,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6139,16/01/2019 15:02,9/01/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2019-6259,16/01/2019 14:56,14/01/2019 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-4256,16/01/2019 14:46,11/01/2019 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-20070,16/01/2019 14:43,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-6140,16/01/2019 14:39,9/01/2019 19:29,9.3,20, Improper Input Validation,nan
CVE-2018-4255,16/01/2019 14:39,11/01/2019 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-4217,16/01/2019 14:29,11/01/2019 18:29,5.0,254, 7PK – Security Features,nan
CVE-2018-4254,16/01/2019 14:26,11/01/2019 18:29,10.0,20, Improper Input Validation,nan
CVE-2018-20068,16/01/2019 14:24,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-4257,16/01/2019 14:01,11/01/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16065,16/01/2019 14:00,9/01/2019 19:29,6.8,416, Use After Free,nan
CVE-2018-4258,16/01/2019 13:59,11/01/2019 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9651,16/01/2019 13:43,9/01/2019 19:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20703,16/01/2019 13:38,13/01/2019 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0575,16/01/2019 13:16,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0577,16/01/2019 13:15,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0576,16/01/2019 13:15,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0578,16/01/2019 13:11,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0579,16/01/2019 13:10,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0581,16/01/2019 13:09,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0580,16/01/2019 13:09,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0582,16/01/2019 13:07,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-6243,16/01/2019 13:06,12/01/2019 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0583,16/01/2019 12:53,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0584,15/01/2019 22:01,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6126,15/01/2019 21:50,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-1000413,15/01/2019 21:39,9/01/2019 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0547,15/01/2019 21:33,8/01/2019 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6151,15/01/2019 21:26,9/01/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6117,15/01/2019 20:57,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2018-8827,15/01/2019 20:55,3/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0588,15/01/2019 20:51,8/01/2019 21:29,4.0,200, Information Exposure,nan
CVE-2018-6120,15/01/2019 20:46,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-0636,15/01/2019 19:52,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0635,15/01/2019 19:52,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0637,15/01/2019 19:41,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0638,15/01/2019 19:09,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0705,15/01/2019 18:17,9/01/2019 23:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0704,15/01/2019 18:08,9/01/2019 23:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0586,15/01/2019 18:07,8/01/2019 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0703,15/01/2019 18:07,9/01/2019 23:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0702,15/01/2019 18:06,9/01/2019 23:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16071,15/01/2019 18:05,9/01/2019 19:29,6.8,416, Use After Free,nan
CVE-2018-16079,15/01/2019 18:01,9/01/2019 19:29,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-16082,15/01/2019 17:58,9/01/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-17470,15/01/2019 17:46,9/01/2019 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20065,15/01/2019 17:40,9/01/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-6169,15/01/2019 17:36,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-20326,15/01/2019 17:26,2/01/2019 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-3501,15/01/2019 17:12,2/01/2019 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000887,15/01/2019 17:09,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5721,15/01/2019 16:44,8/01/2019 23:29,4.3,416, Use After Free,nan
CVE-2018-20663,15/01/2019 16:37,3/01/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20583,15/01/2019 16:35,30/12/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20594,15/01/2019 16:23,30/12/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0572,15/01/2019 16:20,8/01/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0571,15/01/2019 16:20,8/01/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0574,15/01/2019 16:19,8/01/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0573,15/01/2019 16:19,8/01/2019 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2019-0585,15/01/2019 16:10,8/01/2019 21:29,9.3,20, Improper Input Validation,nan
CVE-2018-20368,15/01/2019 16:01,23/12/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20369,15/01/2019 15:52,23/12/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0627,15/01/2019 15:30,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0626,15/01/2019 15:29,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0625,15/01/2019 15:29,9/01/2019 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-10736,15/01/2019 15:26,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000826,15/01/2019 15:22,20/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0546,15/01/2019 15:20,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5005,15/01/2019 15:10,3/01/2019 23:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5006,15/01/2019 15:03,3/01/2019 23:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-0558,15/01/2019 14:52,8/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0557,15/01/2019 14:52,8/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0556,15/01/2019 14:52,8/01/2019 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5007,15/01/2019 14:45,3/01/2019 23:29,5.8,476, NULL Pointer Dereference,nan
CVE-2018-20673,15/01/2019 14:36,4/01/2019 18:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-16068,15/01/2019 14:35,9/01/2019 19:29,6.8,20, Improper Input Validation,nan
CVE-2019-0552,15/01/2019 14:25,8/01/2019 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2019-0548,15/01/2019 14:02,8/01/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2018-16167,15/01/2019 14:00,9/01/2019 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-16168,15/01/2019 13:45,9/01/2019 23:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20066,15/01/2019 13:02,9/01/2019 19:29,6.8,416, Use After Free,nan
CVE-2018-16076,15/01/2019 12:48,9/01/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-16067,15/01/2019 12:39,9/01/2019 19:29,4.3,416, Use After Free,nan
CVE-2018-16066,15/01/2019 12:39,9/01/2019 19:29,4.3,416, Use After Free,nan
CVE-2018-6143,15/01/2019 12:23,9/01/2019 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-2647,15/01/2019 11:29,31/03/2017 4:59,7.2,476, NULL Pointer Dereference,nan
CVE-2018-14481,14/01/2019 21:03,3/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0545,14/01/2019 20:54,8/01/2019 21:29,5.0,200, Information Exposure,nan
CVE-2019-0553,14/01/2019 20:46,8/01/2019 21:29,2.1,200, Information Exposure,nan
CVE-2018-18005,14/01/2019 20:29,3/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18244,14/01/2019 20:17,3/01/2019 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19239,14/01/2019 20:14,20/12/2018 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19240,14/01/2019 20:12,20/12/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19241,14/01/2019 20:07,20/12/2018 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19242,14/01/2019 19:56,20/12/2018 23:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19799,14/01/2019 19:46,26/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16165,14/01/2019 19:41,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16172,14/01/2019 19:38,9/01/2019 23:29,5.8,20, Improper Input Validation,nan
CVE-2018-16169,14/01/2019 19:38,9/01/2019 23:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6137,14/01/2019 19:14,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2018-17461,14/01/2019 19:07,9/01/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6123,14/01/2019 19:06,9/01/2019 19:29,4.3,416, Use After Free,nan
CVE-2018-6141,14/01/2019 19:05,9/01/2019 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6144,14/01/2019 19:03,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-0538,14/01/2019 18:31,8/01/2019 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6153,14/01/2019 18:23,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2019-0550,14/01/2019 17:57,8/01/2019 21:29,7.7,20, Improper Input Validation,nan
CVE-2019-0551,14/01/2019 17:55,8/01/2019 21:29,7.7,20, Improper Input Validation,nan
CVE-2018-6158,14/01/2019 17:46,9/01/2019 19:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-6164,14/01/2019 17:45,9/01/2019 19:29,4.3,200, Information Exposure,nan
CVE-2018-6160,14/01/2019 17:45,9/01/2019 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-16171,14/01/2019 17:27,9/01/2019 23:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2019-0537,14/01/2019 16:42,8/01/2019 21:29,4.3,200, Information Exposure,nan
CVE-2018-6170,14/01/2019 16:31,9/01/2019 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-16170,14/01/2019 16:26,9/01/2019 23:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6174,14/01/2019 16:21,9/01/2019 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-18240,14/01/2019 16:04,11/10/2018 7:29,7.5,20, Improper Input Validation,nan
CVE-2018-8531,14/01/2019 16:01,10/10/2018 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19182,14/01/2019 15:06,26/12/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20588,14/01/2019 15:04,30/12/2018 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20595,14/01/2019 14:52,30/12/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20486,14/01/2019 14:47,26/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18942,14/01/2019 14:29,5/11/2018 9:29,6.5,20, Improper Input Validation,nan
CVE-2018-18759,14/01/2019 14:26,16/11/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19415,14/01/2019 14:13,3/01/2019 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19414,14/01/2019 14:13,3/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-0561,14/01/2019 13:44,8/01/2019 21:29,4.3,200, Information Exposure,nan
CVE-2018-20379,14/01/2019 13:44,23/12/2018 21:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20373,14/01/2019 13:42,23/12/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14730,14/01/2019 13:29,21/09/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-12193,14/01/2019 13:19,10/10/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-12087,14/01/2019 12:58,3/10/2018 18:29,2.1,295, Improper Certificate Validation,nan
CVE-2018-20579,14/01/2019 12:42,28/12/2018 18:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-0564,11/01/2019 21:30,8/01/2019 21:29,5.0,19, Data Processing Errors,nan
CVE-2019-0559,11/01/2019 21:28,8/01/2019 21:29,4.3,200, Information Exposure,nan
CVE-2019-0560,11/01/2019 21:25,8/01/2019 21:29,4.3,200, Information Exposure,nan
CVE-2019-0565,11/01/2019 21:19,8/01/2019 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16175,11/01/2019 20:51,9/01/2019 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20419,11/01/2019 20:47,24/12/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19232,11/01/2019 20:42,24/12/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-18665,11/01/2019 20:34,28/12/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-18666,11/01/2019 20:29,28/12/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-19248,11/01/2019 20:16,24/12/2018 17:29,6.4,20, Improper Input Validation,nan
CVE-2018-18667,11/01/2019 20:14,28/12/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-16174,11/01/2019 20:07,9/01/2019 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-16173,11/01/2019 20:06,9/01/2019 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20211,11/01/2019 20:05,2/01/2019 18:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-8416,11/01/2019 19:49,14/11/2018 1:29,4.0,20, Improper Input Validation,nan
CVE-2018-20452,11/01/2019 19:38,25/12/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20450,11/01/2019 19:38,25/12/2018 17:29,4.3,415, Double Free,nan
CVE-2018-20430,11/01/2019 19:07,24/12/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7796,11/01/2019 18:54,24/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19925,11/01/2019 18:22,6/12/2018 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19924,11/01/2019 18:12,6/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19923,11/01/2019 18:09,6/12/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17194,11/01/2019 17:50,19/12/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-20542,11/01/2019 17:44,28/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20541,11/01/2019 17:44,28/12/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20543,11/01/2019 17:43,28/12/2018 16:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-20680,11/01/2019 17:30,9/01/2019 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12675,11/01/2019 17:09,19/10/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-12671,11/01/2019 16:41,19/10/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-12673,11/01/2019 16:31,19/10/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-9732,11/01/2019 16:24,20/12/2018 23:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-12672,11/01/2019 16:23,19/10/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17195,11/01/2019 16:15,19/12/2018 14:29,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19134,11/01/2019 15:54,20/12/2018 23:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-19478,11/01/2019 15:52,2/01/2019 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-19998,11/01/2019 15:50,3/01/2019 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20372,11/01/2019 15:46,23/12/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17192,11/01/2019 15:46,19/12/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-20453,11/01/2019 15:39,25/12/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1000631,11/01/2019 15:23,28/12/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000630,11/01/2019 15:22,28/12/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000629,11/01/2019 15:20,28/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000625,11/01/2019 15:18,28/12/2018 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-20571,11/01/2019 13:32,28/12/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-18315,11/01/2019 13:25,15/10/2018 4:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-20538,10/01/2019 21:25,28/12/2018 16:29,4.3,416, Use After Free,nan
CVE-2018-20213,10/01/2019 21:15,18/12/2018 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20464,10/01/2019 20:56,25/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20454,10/01/2019 20:54,25/12/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20569,10/01/2019 20:40,28/12/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18587,10/01/2019 19:54,23/10/2018 12:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-20431,10/01/2019 19:41,24/12/2018 5:29,4.3,476, NULL Pointer Dereference,nan
CVE-2019-3573,10/01/2019 19:26,2/01/2019 15:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2019-3574,10/01/2019 19:25,2/01/2019 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20424,10/01/2019 19:17,24/12/2018 4:29,5.8,20, Improper Input Validation,nan
CVE-2017-18319,10/01/2019 18:54,3/01/2019 15:29,2.1,320, Key Management Errors,nan
CVE-2017-18320,10/01/2019 18:49,3/01/2019 15:29,7.2,20, Improper Input Validation,nan
CVE-2018-14080,10/01/2019 18:41,9/10/2018 17:29,5.0,287, Improper Authentication,nan
CVE-2017-18323,10/01/2019 18:19,3/01/2019 15:29,2.1,320, Key Management Errors,nan
CVE-2015-9275,10/01/2019 17:56,7/01/2019 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15836,10/01/2019 17:52,26/09/2018 21:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-20617,10/01/2019 17:33,31/12/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20616,10/01/2019 17:33,31/12/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2019-5311,10/01/2019 17:01,4/01/2019 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2019-5310,10/01/2019 17:00,4/01/2019 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20574,10/01/2019 16:13,28/12/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20573,10/01/2019 16:13,28/12/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15330,10/01/2019 15:56,20/12/2018 20:29,7.8,20, Improper Input Validation,nan
CVE-2017-18327,10/01/2019 15:47,3/01/2019 15:29,2.1,310, Cryptographic Issues,nan
CVE-2018-20570,10/01/2019 15:42,28/12/2018 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18966,10/01/2019 15:40,6/11/2018 4:29,4.0,20, Improper Input Validation,nan
CVE-2017-18328,10/01/2019 15:16,3/01/2019 15:29,7.2,416, Use After Free,nan
CVE-2017-18329,10/01/2019 15:15,3/01/2019 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18965,10/01/2019 14:54,6/11/2018 4:29,4.0,20, Improper Input Validation,nan
CVE-2018-20604,10/01/2019 14:41,30/12/2018 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20603,10/01/2019 14:41,30/12/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20602,10/01/2019 14:41,30/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-8577,10/01/2019 13:02,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20613,10/01/2019 12:10,30/12/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7355,10/01/2019 11:29,26/09/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13342,9/01/2019 21:53,24/10/2018 22:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-20302,9/01/2019 21:52,20/12/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20572,9/01/2019 21:00,28/12/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15328,9/01/2019 20:49,12/12/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-11983,9/01/2019 20:33,20/12/2018 15:29,4.6,416, Use After Free,nan
CVE-2018-11961,9/01/2019 20:29,20/12/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11960,9/01/2019 20:27,20/12/2018 15:29,7.2,416, Use After Free,nan
CVE-2017-9704,9/01/2019 20:25,20/12/2018 15:29,7.2,416, Use After Free,nan
CVE-2018-20609,9/01/2019 20:18,30/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-20608,9/01/2019 20:18,30/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-20607,9/01/2019 20:18,30/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-20606,9/01/2019 20:17,30/12/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-20605,9/01/2019 20:17,30/12/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-20611,9/01/2019 20:14,30/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10730,9/01/2019 19:56,24/10/2018 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10729,9/01/2019 19:54,24/10/2018 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-18842,9/01/2019 19:44,30/10/2018 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8569,9/01/2019 19:43,23/10/2018 17:29,6.8,20, Improper Input Validation,nan
CVE-2018-12670,9/01/2019 19:40,19/10/2018 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18320,9/01/2019 19:34,15/10/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2018-18319,9/01/2019 19:33,15/10/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2017-15420,9/01/2019 19:29,28/08/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-20590,9/01/2019 19:03,30/12/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20589,9/01/2019 19:02,30/12/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000875,9/01/2019 18:37,20/12/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-15332,9/01/2019 18:30,6/12/2018 13:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-7475,9/01/2019 18:02,8/10/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-5549,9/01/2019 17:57,13/09/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-20370,9/01/2019 17:47,23/12/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19357,9/01/2019 17:20,24/12/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20351,9/01/2019 16:46,22/12/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11987,9/01/2019 16:46,20/12/2018 15:29,4.6,415, Double Free,nan
CVE-2018-11988,9/01/2019 16:45,20/12/2018 15:29,4.6,416, Use After Free,nan
CVE-2018-11986,9/01/2019 16:39,20/12/2018 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11984,9/01/2019 16:38,20/12/2018 15:29,4.6,416, Use After Free,nan
CVE-2018-11963,9/01/2019 16:34,20/12/2018 15:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-6979,9/01/2019 16:08,5/10/2018 12:29,5.8,287, Improper Authentication,nan
CVE-2018-20463,9/01/2019 16:02,25/12/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18399,9/01/2019 15:31,20/12/2018 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19862,9/01/2019 15:25,3/01/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19861,9/01/2019 15:25,3/01/2019 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20462,9/01/2019 15:11,25/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000842,9/01/2019 14:57,20/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20459,9/01/2019 14:14,25/12/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20457,9/01/2019 14:14,25/12/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12651,9/01/2019 13:21,20/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19994,9/01/2019 13:12,3/01/2019 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13045,9/01/2019 13:03,2/01/2019 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18485,8/01/2019 21:21,18/10/2018 21:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20330,8/01/2019 21:17,21/12/2018 9:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-1000860,8/01/2019 21:09,20/12/2018 17:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000869,8/01/2019 21:03,20/12/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000870,8/01/2019 21:00,20/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5201,8/01/2019 20:54,21/12/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20508,8/01/2019 20:09,27/12/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20520,8/01/2019 19:56,27/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2492,8/01/2019 19:41,11/12/2018 22:29,5.5,20, Improper Input Validation,nan
CVE-2018-1000820,8/01/2019 19:15,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000821,8/01/2019 19:14,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000822,8/01/2019 19:13,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000825,8/01/2019 19:09,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8587,8/01/2019 19:08,12/12/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000830,8/01/2019 19:07,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000831,8/01/2019 19:06,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000834,8/01/2019 19:05,20/12/2018 15:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-0723,8/01/2019 18:49,26/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0724,8/01/2019 18:48,26/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000838,8/01/2019 18:47,20/12/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-11087,8/01/2019 18:33,14/09/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-8580,8/01/2019 17:13,12/12/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8583,8/01/2019 16:51,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11778,8/01/2019 16:46,5/10/2018 19:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8598,8/01/2019 16:44,12/12/2018 0:29,2.6,200, Information Exposure,nan
CVE-2018-18064,8/01/2019 16:41,8/10/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000809,8/01/2019 16:27,8/10/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-1000803,8/01/2019 16:21,8/10/2018 15:29,5.0,200, Information Exposure,nan
CVE-2012-6710,8/01/2019 16:20,7/10/2018 18:29,7.5,287, Improper Authentication,nan
CVE-2018-9519,8/01/2019 16:19,7/12/2018 23:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-14852,8/01/2019 15:05,17/12/2018 19:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14853,8/01/2019 15:03,17/12/2018 19:29,3.3,476, NULL Pointer Dereference,nan
CVE-2018-14854,8/01/2019 15:01,17/12/2018 19:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14855,8/01/2019 15:00,17/12/2018 19:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20185,8/01/2019 14:58,17/12/2018 19:29,2.6,125, Out-of-bounds Read,nan
CVE-2018-14856,8/01/2019 14:58,17/12/2018 19:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20189,8/01/2019 14:52,17/12/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2018-20184,8/01/2019 14:48,17/12/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19233,8/01/2019 14:46,20/12/2018 17:29,2.1,798, Use of Hard-coded Credentials,nan
CVE-2013-7465,8/01/2019 14:44,5/10/2018 6:29,7.5,287, Improper Authentication,nan
CVE-2018-20306,8/01/2019 14:37,20/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0219,8/01/2019 14:14,15/11/2017 18:29,2.1,20, Improper Input Validation,nan
CVE-2018-16836,8/01/2019 14:08,11/09/2018 16:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5658,8/01/2019 13:58,4/10/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-1000846,8/01/2019 13:13,20/12/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000847,8/01/2019 13:02,20/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17870,8/01/2019 12:56,1/10/2018 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-20301,8/01/2019 12:49,20/12/2018 9:29,4.0,20, Improper Input Validation,nan
CVE-2018-17827,8/01/2019 12:27,1/10/2018 8:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-9080,8/01/2019 12:19,28/09/2018 20:29,4.3,287, Improper Authentication,nan
CVE-2018-9079,8/01/2019 12:17,28/09/2018 20:29,7.5,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-14394,8/01/2019 11:29,19/07/2018 5:29,4.3,369, Divide By Zero,nan
CVE-2017-17130,8/01/2019 11:29,4/12/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14767,8/01/2019 11:29,27/09/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5395,8/01/2019 11:29,21/11/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000816,7/01/2019 21:25,20/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000867,7/01/2019 20:59,20/12/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000868,7/01/2019 20:54,20/12/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000882,7/01/2019 20:53,20/12/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20405,7/01/2019 20:38,23/12/2018 23:29,4.0,200, Information Exposure,nan
CVE-2018-16778,7/01/2019 20:33,21/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20029,7/01/2019 20:16,10/12/2018 20:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1239,7/01/2019 20:03,8/05/2018 13:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17836,7/01/2019 19:59,1/10/2018 8:29,6.5,20, Improper Input Validation,nan
CVE-2018-2486,7/01/2019 19:42,11/12/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2497,7/01/2019 19:41,11/12/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2018-9082,7/01/2019 19:38,28/09/2018 20:29,4.0,384, Session Fixation,nan
CVE-2018-2502,7/01/2019 19:36,11/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2504,7/01/2019 19:06,11/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000881,7/01/2019 19:04,20/12/2018 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1000811,7/01/2019 19:04,20/12/2018 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7108,7/01/2019 18:51,27/09/2018 18:29,4.3,287, Improper Authentication,nan
CVE-2018-1000848,7/01/2019 18:43,20/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20305,7/01/2019 18:35,20/12/2018 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20172,7/01/2019 18:13,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20171,7/01/2019 18:11,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20027,7/01/2019 17:55,17/12/2018 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-2505,7/01/2019 17:40,11/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20188,7/01/2019 17:37,17/12/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19995,7/01/2019 17:21,3/01/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19993,7/01/2019 17:21,3/01/2019 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19992,7/01/2019 17:21,3/01/2019 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18921,7/01/2019 17:01,18/12/2018 22:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19439,7/01/2019 16:37,13/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20168,7/01/2019 15:23,17/12/2018 5:29,4.3,20, Improper Input Validation,nan
CVE-2018-1000854,7/01/2019 15:16,20/12/2018 17:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1000856,7/01/2019 15:13,20/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20156,7/01/2019 15:04,14/12/2018 22:29,6.5,20, Improper Input Validation,nan
CVE-2018-20329,7/01/2019 14:44,21/12/2018 6:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19933,7/01/2019 14:44,17/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20227,7/01/2019 14:38,19/12/2018 11:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20610,7/01/2019 14:33,30/12/2018 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000857,7/01/2019 14:26,20/12/2018 17:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18352,7/01/2019 14:15,17/12/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20154,7/01/2019 14:13,14/12/2018 22:29,4.0,200, Information Exposure,nan
CVE-2018-1000871,7/01/2019 13:52,20/12/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20159,7/01/2019 13:46,15/12/2018 5:29,6.5,20, Improper Input Validation,nan
CVE-2018-20327,7/01/2019 13:43,21/12/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20328,7/01/2019 13:37,21/12/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20133,7/01/2019 13:28,17/12/2018 19:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18250,7/01/2019 13:27,17/12/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-18249,7/01/2019 13:27,17/12/2018 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18248,7/01/2019 13:26,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20536,6/01/2019 17:55,28/12/2018 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20539,6/01/2019 17:54,28/12/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-20537,6/01/2019 17:54,28/12/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-20374,6/01/2019 17:43,23/12/2018 18:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-20376,6/01/2019 17:42,23/12/2018 18:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-20375,6/01/2019 17:42,23/12/2018 18:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-20552,6/01/2019 17:05,28/12/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-20553,6/01/2019 17:03,28/12/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19118,6/01/2019 16:45,13/12/2018 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000813,6/01/2019 16:42,20/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18247,4/01/2019 21:08,17/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18245,4/01/2019 20:01,17/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19828,4/01/2019 19:59,17/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20564,4/01/2019 19:38,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20565,4/01/2019 19:37,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18246,4/01/2019 19:32,17/12/2018 15:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20566,4/01/2019 19:08,28/12/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-2500,4/01/2019 18:46,11/12/2018 22:29,1.9,200, Information Exposure,nan
CVE-2018-20427,4/01/2019 18:18,24/12/2018 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-20429,4/01/2019 18:17,24/12/2018 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-20426,4/01/2019 18:16,24/12/2018 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-20425,4/01/2019 18:15,24/12/2018 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-20428,4/01/2019 18:14,24/12/2018 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-20558,4/01/2019 18:03,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20557,4/01/2019 18:03,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20560,4/01/2019 18:02,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20559,4/01/2019 18:02,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20561,4/01/2019 18:01,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20562,4/01/2019 18:00,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20563,4/01/2019 17:50,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20597,4/01/2019 17:08,30/12/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20598,4/01/2019 17:06,30/12/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20173,4/01/2019 16:56,17/12/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20599,4/01/2019 16:54,30/12/2018 21:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19936,4/01/2019 16:54,17/12/2018 19:29,5.5,20, Improper Input Validation,nan
CVE-2018-20338,4/01/2019 16:26,21/12/2018 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20600,4/01/2019 16:25,30/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19666,4/01/2019 16:08,29/11/2018 8:29,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20601,4/01/2019 16:05,30/12/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000810,4/01/2019 16:03,8/10/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-2467,4/01/2019 15:43,9/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-2474,4/01/2019 15:27,9/10/2018 13:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18096,4/01/2019 15:19,14/12/2018 0:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18354,4/01/2019 14:57,17/12/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20094,4/01/2019 14:55,12/12/2018 10:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-20127,4/01/2019 14:51,13/12/2018 8:29,6.4,20, Improper Input Validation,nan
CVE-2018-19650,4/01/2019 14:44,5/12/2018 22:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20128,4/01/2019 14:33,13/12/2018 8:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8612,4/01/2019 14:17,12/12/2018 0:29,2.1,20, Improper Input Validation,nan
CVE-2016-2779,4/01/2019 14:14,7/02/2017 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9114,4/01/2019 14:14,31/03/2017 16:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-8618,4/01/2019 13:43,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8624,4/01/2019 13:42,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12206,4/01/2019 13:42,14/12/2018 0:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15334,4/01/2019 13:06,28/12/2018 15:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-20591,4/01/2019 12:37,30/12/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20339,4/01/2019 12:29,21/12/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16522,4/01/2019 0:22,6/12/2018 23:29,6.8,416, Use After Free,nan
CVE-2018-16523,4/01/2019 0:21,6/12/2018 23:29,5.8,369, Divide By Zero,nan
CVE-2018-16527,4/01/2019 0:20,6/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-16524,4/01/2019 0:20,6/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-16599,4/01/2019 0:00,6/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-16598,4/01/2019 0:00,6/12/2018 23:29,4.3,441, Unintended Proxy or Intermediary (‘Confused Deputy’),nan
CVE-2018-16602,3/01/2019 23:59,6/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-16601,3/01/2019 23:59,6/12/2018 23:29,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-16600,3/01/2019 23:59,6/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-16603,3/01/2019 23:58,6/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-20157,3/01/2019 20:10,15/12/2018 0:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8627,3/01/2019 20:09,12/12/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8628,3/01/2019 20:04,12/12/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15805,3/01/2019 20:00,10/12/2018 19:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10502,3/01/2019 19:59,10/12/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2018-8629,3/01/2019 19:54,12/12/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20138,3/01/2019 19:31,13/12/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20530,3/01/2019 19:07,28/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20001,3/01/2019 19:02,10/12/2018 2:29,4.3,20, Improper Input Validation,nan
CVE-2018-8597,3/01/2019 18:56,12/12/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19980,3/01/2019 18:55,8/12/2018 18:29,7.8,20, Improper Input Validation,nan
CVE-2018-8636,3/01/2019 18:47,12/12/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8637,3/01/2019 18:38,12/12/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-20230,3/01/2019 18:37,19/12/2018 11:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8892,3/01/2019 18:35,20/12/2018 20:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18330,3/01/2019 18:33,21/12/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-8891,3/01/2019 18:25,20/12/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8888,3/01/2019 18:25,20/12/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16738,3/01/2019 18:02,10/10/2018 21:29,4.3,287, Improper Authentication,nan
CVE-2018-16737,3/01/2019 18:02,10/10/2018 21:29,5.0,287, Improper Authentication,nan
CVE-2018-5816,3/01/2019 17:52,7/12/2018 22:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2018-5815,3/01/2019 17:49,7/12/2018 22:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2018-5812,3/01/2019 17:27,7/12/2018 22:29,4.3,476, NULL Pointer Dereference,nan
CVE-2014-3215,3/01/2019 17:08,8/05/2014 10:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-8634,3/01/2019 16:40,12/12/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8638,3/01/2019 16:27,12/12/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-20062,3/01/2019 16:25,11/12/2018 18:29,7.5,20, Improper Input Validation,nan
CVE-2018-20059,3/01/2019 16:15,11/12/2018 10:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-19767,3/01/2019 15:54,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19773,3/01/2019 15:53,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9547,3/01/2019 15:48,6/12/2018 14:29,7.2,20, Improper Input Validation,nan
CVE-2018-20006,3/01/2019 15:18,10/12/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20015,3/01/2019 15:02,10/12/2018 9:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3238,3/01/2019 15:01,24/08/2015 14:59,5.8,200, Information Exposure,nan
CVE-2014-2583,3/01/2019 15:01,10/04/2014 20:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3149,3/01/2019 15:01,22/07/2012 17:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3148,3/01/2019 15:01,22/07/2012 17:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4707,3/01/2019 15:01,24/01/2011 19:00,4.9,399, Resource Management Errors,nan
CVE-2009-0887,3/01/2019 15:01,12/03/2009 15:20,6.6,189, Numeric Errors,nan
CVE-2009-0579,3/01/2019 15:01,16/04/2009 15:12,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-20101,3/01/2019 14:58,12/12/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9549,3/01/2019 14:31,6/12/2018 14:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9550,3/01/2019 14:30,6/12/2018 14:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-8649,3/01/2019 14:18,12/12/2018 0:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18006,3/01/2019 14:11,14/12/2018 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-19413,3/01/2019 14:08,14/12/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-8651,3/01/2019 13:57,12/12/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8652,3/01/2019 13:46,12/12/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8650,3/01/2019 13:33,12/12/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20136,3/01/2019 13:20,13/12/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20137,3/01/2019 13:18,13/12/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19817,3/01/2019 12:55,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19818,3/01/2019 12:54,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19820,3/01/2019 12:53,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19821,3/01/2019 12:50,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19822,3/01/2019 12:48,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15222,3/01/2019 12:29,24/10/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19814,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19810,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19809,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19771,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19769,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19768,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19766,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19765,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19649,3/01/2019 2:39,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19819,3/01/2019 2:35,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19816,2/01/2019 21:29,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9538,2/01/2019 21:27,6/12/2018 14:29,7.2,125, Out-of-bounds Read,nan
CVE-2006-7086,2/01/2019 21:09,2/03/2007 21:18,4.3,200, Information Exposure,nan
CVE-2018-19815,2/01/2019 20:51,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9551,2/01/2019 20:44,6/12/2018 14:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9552,2/01/2019 20:42,6/12/2018 14:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-9553,2/01/2019 20:40,6/12/2018 14:29,9.3,415, Double Free,nan
CVE-2018-19813,2/01/2019 20:23,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19812,2/01/2019 20:22,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19811,2/01/2019 20:19,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19770,2/01/2019 20:08,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19774,2/01/2019 20:07,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19772,2/01/2019 20:07,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19775,2/01/2019 20:06,17/12/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9554,2/01/2019 19:56,6/12/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-9555,2/01/2019 19:55,6/12/2018 14:29,8.3,787, Out-of-bounds Write,nan
CVE-2018-9556,2/01/2019 19:39,6/12/2018 14:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-18362,2/01/2019 19:32,6/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11076,2/01/2019 18:58,26/11/2018 20:29,3.3,200, Information Exposure,nan
CVE-2017-14888,2/01/2019 18:33,7/12/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11905,2/01/2019 18:30,7/12/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11067,2/01/2019 18:21,26/11/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-17949,2/01/2019 17:50,12/12/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18923,2/01/2019 17:41,13/12/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9562,2/01/2019 16:50,6/12/2018 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9569,2/01/2019 16:49,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9570,2/01/2019 16:48,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9571,2/01/2019 16:40,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9572,2/01/2019 16:39,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9557,2/01/2019 16:32,6/12/2018 14:29,7.2,416, Use After Free,nan
CVE-2018-18439,2/01/2019 16:29,20/11/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11750,2/01/2019 15:09,2/10/2018 19:29,4.0,20, Improper Input Validation,nan
CVE-2018-9558,2/01/2019 14:57,6/12/2018 14:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-9518,2/01/2019 14:56,7/12/2018 23:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-20061,2/01/2019 14:50,11/12/2018 17:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0468,2/01/2019 14:35,4/12/2018 18:29,4.6,798, Use of Hard-coded Credentials,nan
CVE-2018-9069,2/01/2019 14:17,2/10/2018 13:29,7.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-7109,2/01/2019 14:04,27/09/2018 18:29,5.5,20, Improper Input Validation,nan
CVE-2018-9574,2/01/2019 14:00,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9575,2/01/2019 13:59,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9573,2/01/2019 13:55,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9559,2/01/2019 13:36,6/12/2018 14:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-1671,2/01/2019 13:34,10/12/2018 14:29,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-9576,2/01/2019 13:13,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9577,2/01/2019 13:11,7/12/2018 23:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9578,2/01/2019 12:59,7/12/2018 23:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-19927,2/01/2019 12:54,6/12/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19926,2/01/2019 12:54,6/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11077,31/12/2018 21:26,26/11/2018 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19560,31/12/2018 21:16,26/11/2018 7:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9560,31/12/2018 20:51,6/12/2018 14:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-19630,31/12/2018 20:39,28/11/2018 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0679,31/12/2018 20:32,15/11/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18756,31/12/2018 19:49,16/11/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18864,31/12/2018 19:43,20/11/2018 19:29,9.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18850,31/12/2018 19:03,31/10/2018 3:29,9.0,20, Improper Input Validation,nan
CVE-2018-9565,31/12/2018 18:47,6/12/2018 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9566,31/12/2018 18:42,6/12/2018 14:29,2.9,125, Out-of-bounds Read,nan
CVE-2018-20064,31/12/2018 18:36,11/12/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19787,31/12/2018 18:21,2/12/2018 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13319,31/12/2018 18:11,26/11/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-20057,31/12/2018 18:01,11/12/2018 9:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-20056,31/12/2018 18:01,11/12/2018 9:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16792,31/12/2018 17:53,5/12/2018 22:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17785,31/12/2018 17:41,30/09/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19301,31/12/2018 17:34,15/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17952,31/12/2018 17:33,12/12/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16226,31/12/2018 17:23,23/10/2018 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3696,31/12/2018 17:14,14/11/2018 14:29,2.1,287, Improper Authentication,nan
CVE-2018-3699,31/12/2018 16:53,14/11/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17159,31/12/2018 16:45,4/12/2018 15:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-17158,31/12/2018 16:44,4/12/2018 15:29,7.8,190, Integer Overflow or Wraparound,nan
CVE-2015-4632,31/12/2018 16:37,18/10/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19133,31/12/2018 15:24,9/11/2018 11:29,5.0,200, Information Exposure,nan
CVE-2017-9962,31/12/2018 14:23,26/09/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5413,31/12/2018 14:23,18/09/2014 10:55,5.0,310, Cryptographic Issues,nan
CVE-2014-5412,31/12/2018 14:23,18/09/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5411,31/12/2018 14:23,18/09/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0779,31/12/2018 14:23,14/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6142,31/12/2018 14:23,15/01/2014 16:11,4.3,399, Resource Management Errors,nan
CVE-2011-3144,31/12/2018 14:23,16/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3143,31/12/2018 14:23,16/08/2011 21:55,10.0,399, Resource Management Errors,nan
CVE-2018-19842,31/12/2018 14:22,4/12/2018 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19843,31/12/2018 14:21,4/12/2018 9:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20455,31/12/2018 14:19,25/12/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-20461,31/12/2018 14:15,25/12/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20458,31/12/2018 14:15,25/12/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20456,31/12/2018 14:15,25/12/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-20331,31/12/2018 13:22,23/12/2018 2:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17256,31/12/2018 13:21,27/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20012,31/12/2018 13:14,10/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20460,31/12/2018 13:11,25/12/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19919,31/12/2018 13:01,6/12/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-20479,31/12/2018 12:58,26/12/2018 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20480,31/12/2018 12:57,26/12/2018 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19849,31/12/2018 12:52,4/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2886,31/12/2018 11:29,18/09/2014 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-20018,30/12/2018 2:56,10/12/2018 9:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20477,30/12/2018 2:54,26/12/2018 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20476,30/12/2018 2:53,26/12/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7114,30/12/2018 2:47,3/12/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7115,30/12/2018 2:39,3/12/2018 15:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7116,30/12/2018 2:31,3/12/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-19278,30/12/2018 0:35,14/11/2018 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1002006,30/12/2018 0:18,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16910,28/12/2018 21:56,7/12/2018 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-16909,28/12/2018 21:54,7/12/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5804,28/12/2018 21:35,7/12/2018 22:29,4.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-5805,28/12/2018 21:30,7/12/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5806,28/12/2018 21:29,7/12/2018 22:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-5807,28/12/2018 21:28,7/12/2018 22:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-5809,28/12/2018 21:19,7/12/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5810,28/12/2018 21:13,7/12/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18619,28/12/2018 20:32,29/11/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-20017,28/12/2018 20:15,10/12/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15978,28/12/2018 20:01,29/11/2018 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-15981,28/12/2018 20:00,29/11/2018 20:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-11072,28/12/2018 19:47,2/10/2018 13:29,7.2,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-12245,28/12/2018 19:37,29/11/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-9491,28/12/2018 19:25,2/10/2018 19:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-9490,28/12/2018 19:18,2/10/2018 19:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2018-9476,28/12/2018 19:07,2/10/2018 19:29,10.0,416, Use After Free,nan
CVE-2018-9473,28/12/2018 19:01,2/10/2018 19:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-9452,28/12/2018 18:58,2/10/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-7806,28/12/2018 18:44,30/11/2018 19:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7807,28/12/2018 18:37,30/11/2018 19:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19964,28/12/2018 18:37,8/12/2018 4:29,4.9,388, 7PK – Errors,nan
CVE-2018-7809,28/12/2018 18:33,30/11/2018 19:29,6.4,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-7810,28/12/2018 18:31,30/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11002,28/12/2018 18:26,29/11/2018 16:29,5.8,427, Uncontrolled Search Path Element,nan
CVE-2018-16097,28/12/2018 17:36,30/11/2018 14:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16093,28/12/2018 17:36,30/11/2018 14:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9072,28/12/2018 17:35,30/11/2018 14:29,4.0,20, Improper Input Validation,nan
CVE-2018-7830,28/12/2018 17:32,30/11/2018 19:29,5.0,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-7831,28/12/2018 17:20,30/11/2018 19:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7804,28/12/2018 17:04,17/12/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-7812,28/12/2018 16:49,17/12/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-3740,28/12/2018 16:29,30/03/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-14503,28/12/2018 16:29,17/09/2017 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14501,28/12/2018 16:29,17/09/2017 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2016-10350,28/12/2018 16:29,1/05/2017 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10349,28/12/2018 16:29,1/05/2017 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10209,28/12/2018 16:29,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7833,28/12/2018 15:55,17/12/2018 22:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-17976,28/12/2018 15:37,4/12/2018 23:29,4.0,200, Information Exposure,nan
CVE-2018-17605,28/12/2018 15:24,28/09/2018 9:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19537,28/12/2018 14:59,26/11/2018 3:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-8546,28/12/2018 14:57,14/11/2018 1:29,4.3,20, Improper Input Validation,nan
CVE-2018-19421,28/12/2018 14:41,21/11/2018 21:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19420,28/12/2018 14:31,21/11/2018 21:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18565,28/12/2018 14:17,20/11/2018 19:29,4.1,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18561,28/12/2018 14:12,20/11/2018 19:29,7.7,287, Improper Authentication,nan
CVE-2018-17856,28/12/2018 14:09,9/10/2018 21:29,6.5,20, Improper Input Validation,nan
CVE-2018-1002005,28/12/2018 14:08,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10141,28/12/2018 13:59,12/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18206,28/12/2018 13:46,10/10/2018 9:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-19891,28/12/2018 13:44,6/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19890,28/12/2018 13:44,6/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19889,28/12/2018 13:44,6/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19888,28/12/2018 13:44,6/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19887,28/12/2018 13:44,6/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19886,28/12/2018 13:43,6/12/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1002000,27/12/2018 21:06,3/12/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19424,27/12/2018 19:47,21/11/2018 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19422,27/12/2018 19:41,21/11/2018 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19786,27/12/2018 19:36,5/12/2018 9:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-19796,27/12/2018 18:41,3/12/2018 6:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-6082,27/12/2018 18:39,14/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-7799,27/12/2018 18:11,2/11/2018 17:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2018-19750,27/12/2018 17:57,29/11/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1002008,27/12/2018 17:51,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1002007,27/12/2018 17:51,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1002004,27/12/2018 17:50,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1002003,27/12/2018 17:47,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1002002,27/12/2018 17:47,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18987,27/12/2018 17:46,30/11/2018 18:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-1002001,27/12/2018 17:36,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0721,27/12/2018 17:31,27/11/2018 23:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14747,27/12/2018 17:29,28/11/2018 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-1002009,27/12/2018 17:26,3/12/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14749,27/12/2018 17:25,28/11/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19877,27/12/2018 17:19,5/12/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12480,27/12/2018 17:19,15/11/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19395,27/12/2018 17:13,20/11/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18856,27/12/2018 17:07,20/11/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18983,27/12/2018 17:03,30/11/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7987,27/12/2018 16:30,4/12/2018 18:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-11348,27/12/2018 16:25,4/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19347,27/12/2018 15:47,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19692,27/12/2018 15:30,29/11/2018 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19693,27/12/2018 15:28,29/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3950,27/12/2018 15:08,1/12/2018 4:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3949,27/12/2018 15:08,1/12/2018 3:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18649,27/12/2018 14:56,29/11/2018 15:29,7.5,20, Improper Input Validation,nan
CVE-2018-12306,27/12/2018 14:47,4/12/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9541,27/12/2018 14:45,14/11/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12309,27/12/2018 14:44,4/12/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9537,27/12/2018 14:41,14/11/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9523,27/12/2018 14:22,14/11/2018 18:29,7.2,20, Improper Input Validation,nan
CVE-2018-3951,27/12/2018 14:20,1/12/2018 6:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9522,27/12/2018 14:12,14/11/2018 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-3948,27/12/2018 14:11,30/11/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-9521,27/12/2018 14:06,14/11/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9347,27/12/2018 13:51,14/11/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-16713,27/12/2018 13:49,26/09/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16712,27/12/2018 13:47,26/09/2018 22:29,6.8,200, Information Exposure,nan
CVE-2018-4038,27/12/2018 13:06,1/12/2018 18:29,6.8,123, Write-what-where Condition,nan
CVE-2018-18640,27/12/2018 13:03,4/12/2018 23:29,4.0,200, Information Exposure,nan
CVE-2018-4040,27/12/2018 13:02,1/12/2018 20:29,6.8,824, Access of Uninitialized Pointer,nan
CVE-2018-18646,27/12/2018 12:42,4/12/2018 23:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-19785,27/12/2018 12:25,1/12/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0719,27/12/2018 1:03,27/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18644,27/12/2018 0:49,4/12/2018 23:29,4.0,200, Information Exposure,nan
CVE-2018-4039,26/12/2018 22:10,1/12/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-19753,26/12/2018 21:20,5/12/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15773,26/12/2018 20:46,5/12/2018 18:29,4.9,200, Information Exposure,nan
CVE-2018-18903,26/12/2018 20:28,3/11/2018 5:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19527,26/12/2018 19:58,29/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15750,26/12/2018 19:42,24/10/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19907,26/12/2018 19:28,6/12/2018 7:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0716,26/12/2018 19:24,30/11/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13322,26/12/2018 19:04,26/11/2018 23:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13323,26/12/2018 19:02,26/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19621,26/12/2018 18:30,28/11/2018 8:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19757,26/12/2018 18:25,30/11/2018 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19893,26/12/2018 18:18,6/12/2018 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17948,26/12/2018 18:10,20/11/2018 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-19898,26/12/2018 18:08,6/12/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19897,26/12/2018 18:08,6/12/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19896,26/12/2018 18:07,6/12/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19895,26/12/2018 18:06,6/12/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19894,26/12/2018 18:05,6/12/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14892,26/12/2018 17:33,27/11/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19794,26/12/2018 17:13,3/12/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19763,26/12/2018 17:06,30/11/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19762,26/12/2018 17:06,30/11/2018 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19761,26/12/2018 17:06,30/11/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19759,26/12/2018 17:05,30/11/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19756,26/12/2018 17:04,30/11/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1648,26/12/2018 16:39,5/12/2018 17:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-18317,26/12/2018 15:39,28/11/2018 15:29,7.2,20, Improper Input Validation,nan
CVE-2017-18318,26/12/2018 15:36,28/11/2018 15:29,10.0,20, Improper Input Validation,nan
CVE-2018-5870,26/12/2018 14:45,28/11/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11996,26/12/2018 14:42,28/11/2018 15:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-5877,26/12/2018 14:38,28/11/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6079,26/12/2018 14:37,14/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-5916,26/12/2018 14:29,28/11/2018 15:29,6.1,125, Out-of-bounds Read,nan
CVE-2018-6078,26/12/2018 14:23,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-5917,26/12/2018 14:21,28/11/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5918,26/12/2018 14:16,28/11/2018 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11264,26/12/2018 14:14,28/11/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6063,26/12/2018 14:12,14/11/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-9566,25/12/2018 11:29,15/12/2016 22:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1878,25/12/2018 11:29,28/02/2014 15:13,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7205,25/12/2018 11:29,15/01/2014 16:08,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7108,25/12/2018 11:29,15/01/2014 16:08,5.5,20, Improper Input Validation,nan
CVE-2017-6017,24/12/2018 16:29,30/06/2017 3:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-6060,21/12/2018 20:54,14/11/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-17474,21/12/2018 20:52,14/11/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-6077,21/12/2018 20:42,14/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-6062,21/12/2018 20:35,14/11/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17477,21/12/2018 20:35,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-17476,21/12/2018 20:34,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-18398,21/12/2018 20:13,19/10/2018 22:29,1.9,125, Out-of-bounds Read,nan
CVE-2018-17471,21/12/2018 19:53,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-5919,21/12/2018 19:32,27/11/2018 16:29,6.1,416, Use After Free,nan
CVE-2018-5909,21/12/2018 19:14,27/11/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19609,21/12/2018 19:12,27/11/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-5910,21/12/2018 19:11,27/11/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10142,21/12/2018 19:08,27/11/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-13337,21/12/2018 18:42,27/11/2018 20:29,5.8,384, Session Fixation,nan
CVE-2018-13022,21/12/2018 18:41,27/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5908,21/12/2018 18:08,27/11/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5906,21/12/2018 18:06,27/11/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5904,21/12/2018 18:05,27/11/2018 16:29,4.6,416, Use After Free,nan
CVE-2018-18642,21/12/2018 17:57,4/12/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18648,21/12/2018 17:43,4/12/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-5856,21/12/2018 17:25,27/11/2018 16:29,6.1,416, Use After Free,nan
CVE-2018-5861,21/12/2018 17:22,27/11/2018 16:29,4.6,704, Incorrect Type Conversion or Cast,nan
CVE-2018-19748,21/12/2018 17:10,29/11/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18645,21/12/2018 17:02,4/12/2018 23:29,4.3,200, Information Exposure,nan
CVE-2018-11995,21/12/2018 16:59,27/11/2018 16:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13352,21/12/2018 16:24,27/11/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-11919,21/12/2018 16:18,27/11/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11918,21/12/2018 16:03,27/11/2018 16:29,4.6,415, Double Free,nan
CVE-2018-13361,21/12/2018 15:44,27/11/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-19755,21/12/2018 15:36,30/11/2018 3:29,4.3,20, Improper Input Validation,nan
CVE-2018-19892,21/12/2018 14:54,6/12/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19749,21/12/2018 14:50,29/11/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19751,21/12/2018 14:49,29/11/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19752,21/12/2018 14:48,29/11/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19913,21/12/2018 14:46,6/12/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11078,21/12/2018 14:25,27/11/2018 16:29,4.6,125, Out-of-bounds Read,nan
CVE-2018-11260,21/12/2018 14:19,27/11/2018 16:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-11261,21/12/2018 14:13,27/11/2018 16:29,7.2,416, Use After Free,nan
CVE-2018-11266,21/12/2018 14:07,27/11/2018 16:29,4.6,20, Improper Input Validation,nan
CVE-2018-11823,21/12/2018 14:06,27/11/2018 16:29,4.6,415, Double Free,nan
CVE-2018-14709,21/12/2018 14:03,3/12/2018 22:29,5.0,287, Improper Authentication,nan
CVE-2018-12314,21/12/2018 13:06,4/12/2018 17:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12316,21/12/2018 13:04,4/12/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-18174,21/12/2018 11:29,11/02/2018 18:29,7.5,415, Double Free,nan
CVE-2016-10191,21/12/2018 11:29,9/02/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10190,21/12/2018 11:29,9/02/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8663,21/12/2018 11:29,24/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8662,21/12/2018 11:29,24/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8661,21/12/2018 11:29,24/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8364,21/12/2018 11:29,26/11/2015 17:59,6.8,189, Numeric Errors,nan
CVE-2015-8363,21/12/2018 11:29,26/11/2015 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8217,21/12/2018 11:29,17/11/2015 1:59,7.5,20, Improper Input Validation,nan
CVE-2015-8216,21/12/2018 11:29,17/11/2015 1:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-6826,21/12/2018 11:29,6/09/2015 2:59,7.5,20, Improper Input Validation,nan
CVE-2015-6825,21/12/2018 11:29,6/09/2015 2:59,7.5,20, Improper Input Validation,nan
CVE-2015-6824,21/12/2018 11:29,6/09/2015 2:59,7.5,20, Improper Input Validation,nan
CVE-2015-6823,21/12/2018 11:29,6/09/2015 2:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-6822,21/12/2018 11:29,6/09/2015 2:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-6821,21/12/2018 11:29,6/09/2015 2:59,7.5,20, Improper Input Validation,nan
CVE-2015-6820,21/12/2018 11:29,6/09/2015 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6818,21/12/2018 11:29,6/09/2015 2:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-6761,21/12/2018 11:29,15/10/2015 10:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9317,21/12/2018 11:29,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16224,20/12/2018 22:15,20/11/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-19355,20/12/2018 21:39,19/11/2018 0:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16160,20/12/2018 21:21,15/11/2018 15:29,4.6,287, Improper Authentication,nan
CVE-2018-9071,20/12/2018 21:06,16/11/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-9073,20/12/2018 21:05,16/11/2018 14:29,4.3,798, Use of Hard-coded Credentials,nan
CVE-2018-12307,20/12/2018 20:55,4/12/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12310,20/12/2018 20:46,4/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12311,20/12/2018 20:42,4/12/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12312,20/12/2018 20:23,4/12/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12305,20/12/2018 19:59,4/12/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13359,20/12/2018 19:44,27/11/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13360,20/12/2018 19:42,27/11/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13332,20/12/2018 19:41,27/11/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14695,20/12/2018 19:29,3/12/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-14700,20/12/2018 19:28,3/12/2018 22:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-14707,20/12/2018 19:26,3/12/2018 22:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5492,20/12/2018 19:05,4/10/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2018-14704,20/12/2018 18:35,3/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19651,20/12/2018 18:34,28/11/2018 22:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-14702,20/12/2018 18:17,3/12/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-14696,20/12/2018 18:15,3/12/2018 22:29,5.0,200, Information Exposure,nan
CVE-2015-3206,20/12/2018 18:11,25/08/2017 18:29,6.8,287, Improper Authentication,nan
CVE-2018-7958,20/12/2018 18:02,27/11/2018 22:29,5.8,287, Improper Authentication,nan
CVE-2014-9164,20/12/2018 17:53,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9162,20/12/2018 17:53,10/12/2014 21:59,10.0,200, Information Exposure,nan
CVE-2014-9015,20/12/2018 17:53,24/11/2014 15:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-8442,20/12/2018 17:52,11/11/2014 23:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8437,20/12/2018 17:51,11/11/2014 23:55,5.0,200, Information Exposure,nan
CVE-2014-8368,20/12/2018 17:51,25/11/2014 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-8576,20/12/2018 17:44,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8575,20/12/2018 17:34,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8574,20/12/2018 17:29,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8573,20/12/2018 17:23,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17408,20/12/2018 15:56,3/10/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13315,20/12/2018 15:54,26/11/2018 23:29,5.0,20, Improper Input Validation,nan
CVE-2018-13317,20/12/2018 15:53,26/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7977,20/12/2018 15:34,27/11/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-18124,20/12/2018 15:24,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16364,20/12/2018 15:15,26/09/2018 21:29,9.3,502, Deserialization of Untrusted Data,nan
CVE-2018-17938,20/12/2018 15:11,3/10/2018 8:29,5.0,20, Improper Input Validation,nan
CVE-2018-9514,20/12/2018 15:08,2/10/2018 19:29,7.2,416, Use After Free,nan
CVE-2018-7102,20/12/2018 15:05,27/09/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17555,20/12/2018 15:00,26/09/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-16672,20/12/2018 14:58,26/09/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-13331,20/12/2018 14:49,27/11/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17538,20/12/2018 14:42,26/09/2018 8:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-14698,20/12/2018 14:35,3/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14697,20/12/2018 14:33,3/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12975,20/12/2018 14:10,24/09/2018 22:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-12169,20/12/2018 13:59,21/09/2018 20:29,4.6,287, Improper Authentication,nan
CVE-2018-11240,20/12/2018 13:49,21/09/2018 15:29,10.0,275, Permission Issues,nan
CVE-2018-8023,20/12/2018 13:45,21/09/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-1388,20/12/2018 11:29,7/02/2018 17:29,5.0,200, Information Exposure,nan
CVE-2016-4486,20/12/2018 11:29,23/05/2016 10:59,2.1,200, Information Exposure,nan
CVE-2018-16832,20/12/2018 2:03,11/09/2018 13:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19443,20/12/2018 1:25,22/11/2018 19:29,4.3,384, Session Fixation,nan
CVE-2009-5153,20/12/2018 1:05,21/11/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13357,19/12/2018 23:56,27/11/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19565,19/12/2018 23:01,26/11/2018 20:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19566,19/12/2018 23:00,26/11/2018 20:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19567,19/12/2018 22:47,26/11/2018 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19568,19/12/2018 22:45,26/11/2018 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19423,19/12/2018 22:21,21/11/2018 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16091,19/12/2018 22:18,27/11/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16095,19/12/2018 22:16,27/11/2018 14:29,4.3,534, DEPRECATED: Information Exposure Through Debug Log Files,nan
CVE-2018-16094,19/12/2018 22:16,27/11/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16096,19/12/2018 22:15,27/11/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13351,19/12/2018 21:47,27/11/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13350,19/12/2018 21:45,27/11/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7946,19/12/2018 21:44,27/11/2018 22:29,1.9,200, Information Exposure,nan
CVE-2018-13349,19/12/2018 21:40,27/11/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13335,19/12/2018 21:37,27/11/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13333,19/12/2018 21:19,27/11/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17468,19/12/2018 20:59,14/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-13329,19/12/2018 20:54,27/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13334,19/12/2018 20:50,27/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17467,19/12/2018 20:43,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-17475,19/12/2018 20:40,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-17465,19/12/2018 20:34,14/11/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-6061,19/12/2018 20:26,14/11/2018 15:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-6983,19/12/2018 19:26,27/11/2018 17:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-17462,19/12/2018 18:53,14/11/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-16151,19/12/2018 18:50,26/09/2018 21:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-16152,19/12/2018 18:49,26/09/2018 21:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-14957,19/12/2018 18:35,28/09/2018 0:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13312,19/12/2018 18:24,26/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13309,19/12/2018 18:23,26/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13308,19/12/2018 18:23,26/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13310,19/12/2018 18:22,26/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6066,19/12/2018 18:21,14/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-6068,19/12/2018 18:14,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-6069,19/12/2018 18:10,14/11/2018 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6071,19/12/2018 18:03,14/11/2018 15:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-6074,19/12/2018 18:02,14/11/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-19404,19/12/2018 17:50,21/11/2018 0:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19562,19/12/2018 17:30,26/11/2018 7:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6072,19/12/2018 16:32,14/11/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-6073,19/12/2018 16:31,14/11/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6075,19/12/2018 16:21,14/11/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-6076,19/12/2018 16:20,14/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19517,19/12/2018 15:29,24/11/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19530,19/12/2018 15:23,26/11/2018 2:29,7.5,20, Improper Input Validation,nan
CVE-2018-19531,19/12/2018 15:22,26/11/2018 2:29,7.5,20, Improper Input Validation,nan
CVE-2018-19528,19/12/2018 15:16,26/11/2018 2:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19406,19/12/2018 15:08,21/11/2018 0:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-19468,19/12/2018 15:06,23/11/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19464,19/12/2018 15:02,22/11/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19469,19/12/2018 14:58,23/11/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19532,19/12/2018 14:54,26/11/2018 2:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-19557,19/12/2018 14:48,26/11/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19558,19/12/2018 14:47,26/11/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19544,19/12/2018 14:40,26/11/2018 7:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19545,19/12/2018 14:35,26/11/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19546,19/12/2018 14:33,26/11/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19547,19/12/2018 14:16,26/11/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17053,19/12/2018 14:04,29/11/2017 3:29,6.9,416, Use After Free,nan
CVE-2018-17473,18/12/2018 18:51,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-17469,18/12/2018 18:47,14/11/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18859,18/12/2018 18:41,20/11/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18858,18/12/2018 18:41,20/11/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-18857,18/12/2018 18:41,20/11/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17464,18/12/2018 18:39,14/11/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-17463,18/12/2018 18:37,14/11/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-19346,18/12/2018 18:20,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19549,18/12/2018 18:05,26/11/2018 7:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18861,18/12/2018 18:03,20/11/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19334,18/12/2018 17:53,20/11/2018 9:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10099,18/12/2018 17:53,20/11/2018 9:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19559,18/12/2018 17:52,26/11/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19553,18/12/2018 17:51,26/11/2018 7:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19552,18/12/2018 17:50,26/11/2018 7:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19551,18/12/2018 17:50,26/11/2018 7:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18755,18/12/2018 17:50,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18822,18/12/2018 17:44,30/10/2018 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0692,18/12/2018 17:43,15/11/2018 15:29,9.3,426, Untrusted Search Path,nan
CVE-2016-10731,18/12/2018 17:43,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19555,18/12/2018 17:41,26/11/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19564,18/12/2018 17:37,26/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9207,18/12/2018 17:34,19/11/2018 17:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9427,18/12/2018 17:33,6/11/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-19344,18/12/2018 17:31,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19343,18/12/2018 17:31,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19345,18/12/2018 17:30,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2014-0087,18/12/2018 17:28,11/01/2018 16:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8367,18/12/2018 17:27,25/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7819,18/12/2018 17:27,8/11/2014 11:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19286,18/12/2018 17:22,15/11/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9274,18/12/2018 17:21,15/11/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12038,18/12/2018 17:08,20/11/2018 19:29,1.9,320, Key Management Errors,nan
CVE-2018-19342,18/12/2018 17:04,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19341,18/12/2018 17:04,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19457,18/12/2018 16:59,22/11/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19348,18/12/2018 16:44,17/11/2018 21:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-19434,18/12/2018 16:13,22/11/2018 5:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19328,18/12/2018 15:49,17/11/2018 15:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19433,18/12/2018 15:36,22/11/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19435,18/12/2018 15:31,22/11/2018 5:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19436,18/12/2018 15:29,22/11/2018 5:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19459,18/12/2018 15:10,22/11/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18801,18/12/2018 15:08,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18793,18/12/2018 15:06,16/11/2018 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18796,18/12/2018 14:59,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18795,18/12/2018 14:57,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18794,18/12/2018 14:56,16/11/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18763,18/12/2018 14:55,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18761,18/12/2018 14:54,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19327,18/12/2018 14:51,17/11/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6064,18/12/2018 14:42,2/09/2014 14:55,4.0,200, Information Exposure,nan
CVE-2014-4700,18/12/2018 14:42,11/07/2014 14:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-4611,18/12/2018 14:41,3/07/2014 4:22,5.0,20, Improper Input Validation,nan
CVE-2014-4508,18/12/2018 14:39,23/06/2014 11:21,4.7,189, Numeric Errors,nan
CVE-2014-4157,18/12/2018 14:36,23/06/2014 11:21,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-4014,18/12/2018 14:31,23/06/2014 11:21,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3896,18/12/2018 14:31,29/07/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19458,18/12/2018 14:30,22/11/2018 20:29,5.0,287, Improper Authentication,nan
CVE-2014-3681,18/12/2018 14:30,15/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19331,18/12/2018 14:28,17/11/2018 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17153,18/12/2018 14:13,18/09/2018 15:29,10.0,287, Improper Authentication,nan
CVE-2018-18797,18/12/2018 13:59,16/11/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18799,18/12/2018 13:58,16/11/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19332,18/12/2018 13:55,17/11/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9209,18/12/2018 13:26,19/11/2018 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19376,18/12/2018 13:20,20/11/2018 21:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19416,18/12/2018 13:11,21/11/2018 20:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19561,18/12/2018 12:52,26/11/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18760,17/12/2018 21:39,16/11/2018 18:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18805,17/12/2018 21:31,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18806,17/12/2018 21:30,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18804,17/12/2018 21:27,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18803,17/12/2018 21:25,16/11/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19324,17/12/2018 21:23,17/11/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19318,17/12/2018 21:16,16/11/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19319,17/12/2018 21:15,16/11/2018 19:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16619,17/12/2018 20:45,15/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19340,17/12/2018 20:35,17/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0693,17/12/2018 20:30,15/11/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0694,17/12/2018 20:21,15/11/2018 15:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0695,17/12/2018 20:19,15/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19190,17/12/2018 20:07,14/11/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19189,17/12/2018 20:07,14/11/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19188,17/12/2018 20:07,14/11/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19187,17/12/2018 20:07,14/11/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19186,17/12/2018 20:07,14/11/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7320,17/12/2018 20:02,18/11/2018 19:29,2.1,255, Credentials Management,nan
CVE-2018-8600,17/12/2018 19:54,14/11/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19353,17/12/2018 19:49,18/11/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-9545,17/12/2018 19:42,14/11/2018 18:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-9544,17/12/2018 19:42,14/11/2018 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-9542,17/12/2018 19:39,14/11/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9540,17/12/2018 19:39,14/11/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-9539,17/12/2018 19:37,14/11/2018 18:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-8454,17/12/2018 19:28,14/11/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-19351,17/12/2018 19:28,18/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19352,17/12/2018 19:27,18/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19350,17/12/2018 19:25,17/11/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19349,17/12/2018 19:17,17/11/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19326,17/12/2018 18:10,17/11/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0700,17/12/2018 17:35,15/11/2018 15:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-0697,17/12/2018 17:33,15/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0699,17/12/2018 17:32,15/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8564,17/12/2018 17:07,14/11/2018 1:29,4.3,20, Improper Input Validation,nan
CVE-2018-17411,17/12/2018 16:33,26/09/2018 22:29,10.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-15976,17/12/2018 16:21,17/10/2018 18:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-15974,17/12/2018 16:18,17/10/2018 18:29,6.8,426, Untrusted Search Path,nan
CVE-2018-14935,17/12/2018 15:53,15/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19212,17/12/2018 15:29,12/11/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-18749,17/12/2018 15:17,29/10/2018 12:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-0681,17/12/2018 15:16,15/11/2018 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-0680,17/12/2018 15:16,15/11/2018 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-0684,17/12/2018 15:15,15/11/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0683,17/12/2018 15:15,15/11/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0687,17/12/2018 15:14,15/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0686,17/12/2018 15:14,15/11/2018 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-0685,17/12/2018 15:14,15/11/2018 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17447,17/12/2018 14:48,23/10/2018 21:30,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-8544,17/12/2018 14:25,14/11/2018 1:29,9.3,416, Use After Free,nan
CVE-2018-8553,17/12/2018 14:04,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17881,17/12/2018 13:22,3/10/2018 20:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-17880,17/12/2018 13:21,3/10/2018 20:29,7.8,20, Improper Input Validation,nan
CVE-2017-15705,16/12/2018 11:29,17/09/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2016-1238,16/12/2018 11:29,2/08/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7254,15/12/2018 11:29,7/11/2015 3:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6396,15/12/2018 11:29,8/08/2016 0:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0683,15/12/2018 11:29,6/03/2014 11:55,10.0,255, Credentials Management,nan
CVE-2018-8545,14/12/2018 21:25,14/11/2018 1:29,4.3,200, Information Exposure,nan
CVE-2018-19287,14/12/2018 21:10,15/11/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9356,14/12/2018 21:00,6/11/2018 17:29,10.0,415, Double Free,nan
CVE-2018-9355,14/12/2018 21:00,6/11/2018 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-9359,14/12/2018 20:58,6/11/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-8582,14/12/2018 20:51,14/11/2018 1:29,9.3,20, Improper Input Validation,nan
CVE-2018-8579,14/12/2018 20:28,14/11/2018 1:29,4.0,200, Information Exposure,nan
CVE-2018-8558,14/12/2018 20:28,14/11/2018 1:29,4.0,200, Information Exposure,nan
CVE-2018-8578,14/12/2018 20:14,14/11/2018 1:29,4.0,200, Information Exposure,nan
CVE-2018-0673,14/12/2018 19:57,15/11/2018 15:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6081,14/12/2018 19:52,14/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8605,14/12/2018 19:39,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8607,14/12/2018 19:38,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8606,14/12/2018 19:38,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8608,14/12/2018 19:37,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8609,14/12/2018 19:35,14/11/2018 1:29,6.5,20, Improper Input Validation,nan
CVE-2018-8547,14/12/2018 19:10,14/11/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8565,14/12/2018 18:44,14/11/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-8621,14/12/2018 18:16,12/12/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-8539,14/12/2018 17:48,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8524,14/12/2018 17:38,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8522,14/12/2018 17:32,14/11/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18706,14/12/2018 16:27,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18707,14/12/2018 16:26,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18708,14/12/2018 16:25,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18709,14/12/2018 16:19,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18727,14/12/2018 16:16,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9528,14/12/2018 15:52,14/11/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9531,14/12/2018 15:51,14/11/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-9530,14/12/2018 15:51,14/11/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9529,14/12/2018 15:51,14/11/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9527,14/12/2018 15:51,14/11/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-18730,14/12/2018 15:37,29/10/2018 12:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15318,14/12/2018 15:29,31/10/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2018-9532,14/12/2018 14:37,14/11/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-19185,14/12/2018 14:32,12/11/2018 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9533,14/12/2018 14:30,14/11/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9534,14/12/2018 14:20,14/11/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9535,14/12/2018 14:17,14/11/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9536,14/12/2018 14:14,14/11/2018 18:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-14627,14/12/2018 11:29,23/09/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18476,13/12/2018 21:20,24/10/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18963,13/12/2018 21:18,6/11/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19246,13/12/2018 21:12,13/11/2018 9:29,5.0,200, Information Exposure,nan
CVE-2018-7798,13/12/2018 21:04,2/11/2018 17:29,6.4,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-3621,13/12/2018 20:44,14/11/2018 14:29,3.3,200, Information Exposure,nan
CVE-2014-10077,13/12/2018 20:30,6/11/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-17550,13/12/2018 20:03,10/11/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8541,13/12/2018 19:43,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8543,13/12/2018 19:35,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8542,13/12/2018 19:33,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8551,13/12/2018 19:30,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8555,13/12/2018 19:26,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19183,13/12/2018 19:05,12/11/2018 2:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8407,13/12/2018 18:36,14/11/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-13398,13/12/2018 18:29,18/09/2018 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16954,13/12/2018 18:27,18/09/2018 2:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2014-0995,13/12/2018 18:27,6/11/2014 15:55,5.0,20, Improper Input Validation,nan
CVE-2014-3166,13/12/2018 18:26,13/08/2014 4:57,5.0,200, Information Exposure,nan
CVE-2017-18172,13/12/2018 18:25,23/10/2018 13:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2014-0520,13/12/2018 18:24,14/05/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2327,13/12/2018 18:22,23/04/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2535,13/12/2018 18:21,18/03/2014 17:04,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5364,13/12/2018 18:21,26/01/2014 1:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-8408,13/12/2018 18:18,14/11/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-19196,13/12/2018 18:14,12/11/2018 5:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8415,13/12/2018 18:13,14/11/2018 1:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-16150,13/12/2018 18:07,7/11/2018 20:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-16253,13/12/2018 18:06,7/11/2018 20:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-19184,13/12/2018 18:02,12/11/2018 2:29,5.0,476, NULL Pointer Dereference,nan
CVE-2013-6802,13/12/2018 18:00,18/11/2013 5:23,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6632,13/12/2018 17:58,18/11/2013 5:23,9.3,189, Numeric Errors,nan
CVE-2013-4419,13/12/2018 17:57,5/11/2013 20:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-19195,13/12/2018 17:54,12/11/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4494,13/12/2018 17:49,2/11/2013 18:55,5.2,20, Improper Input Validation,nan
CVE-2013-3627,13/12/2018 17:49,5/10/2013 10:55,5.0,399, Resource Management Errors,nan
CVE-2018-8588,13/12/2018 17:40,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8557,13/12/2018 17:40,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8556,13/12/2018 17:40,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12174,13/12/2018 17:25,14/11/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3361,13/12/2018 17:19,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0587,13/12/2018 17:16,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0580,13/12/2018 17:15,10/12/2014 21:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0589,13/12/2018 17:12,11/11/2014 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17984,13/12/2018 17:11,4/10/2018 23:29,4.6,185, Incorrect Regular Expression,nan
CVE-2014-0586,13/12/2018 17:11,11/11/2014 23:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0585,13/12/2018 17:11,11/11/2014 23:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0584,13/12/2018 17:11,11/11/2014 23:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0583,13/12/2018 17:11,11/11/2014 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19194,13/12/2018 17:10,12/11/2018 5:29,5.0,200, Information Exposure,nan
CVE-2014-0582,13/12/2018 17:10,11/11/2014 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0577,13/12/2018 17:10,11/11/2014 23:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0574,13/12/2018 17:09,11/11/2014 23:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-9455,13/12/2018 17:00,6/11/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-19170,13/12/2018 16:57,11/11/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2476,13/12/2018 16:51,13/11/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-19192,13/12/2018 16:50,12/11/2018 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19193,13/12/2018 16:49,12/11/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3635,13/12/2018 16:43,14/11/2018 14:29,4.6,20, Improper Input Validation,nan
CVE-2018-19219,13/12/2018 16:37,12/11/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-19218,13/12/2018 16:35,12/11/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2014-0519,13/12/2018 16:29,14/05/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-19079,13/12/2018 16:22,7/11/2018 18:29,7.8,20, Improper Input Validation,nan
CVE-2018-19080,13/12/2018 16:20,7/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0518,13/12/2018 16:08,14/05/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0517,13/12/2018 16:05,14/05/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-19178,13/12/2018 16:03,11/11/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0516,13/12/2018 16:03,14/05/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0515,13/12/2018 16:02,29/04/2014 10:37,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0504,13/12/2018 16:00,12/03/2014 5:15,5.0,200, Information Exposure,nan
CVE-2014-0503,13/12/2018 16:00,12/03/2014 5:15,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2018-19092,13/12/2018 15:58,7/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19081,13/12/2018 15:57,7/11/2018 18:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17427,13/12/2018 15:56,1/10/2018 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2014-0502,13/12/2018 15:55,21/02/2014 5:07,10.0,399, Resource Management Errors,nan
CVE-2014-0499,13/12/2018 15:54,21/02/2014 5:07,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0498,13/12/2018 15:54,21/02/2014 5:06,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19082,13/12/2018 15:53,7/11/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0497,13/12/2018 15:52,5/02/2014 5:15,10.0,189, Numeric Errors,nan
CVE-2018-19077,13/12/2018 15:51,7/11/2018 18:29,7.8,125, Out-of-bounds Read,nan
CVE-2014-0496,13/12/2018 15:50,15/01/2014 16:13,10.0,399, Resource Management Errors,nan
CVE-2014-0495,13/12/2018 15:50,15/01/2014 16:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0493,13/12/2018 15:50,15/01/2014 16:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17983,13/12/2018 15:48,4/10/2018 23:29,6.4,125, Out-of-bounds Read,nan
CVE-2014-0492,13/12/2018 15:44,15/01/2014 16:13,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0491,13/12/2018 15:43,15/01/2014 16:13,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5332,13/12/2018 15:42,11/12/2013 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5331,13/12/2018 15:41,11/12/2013 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5330,13/12/2018 15:38,13/11/2013 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5329,13/12/2018 15:38,13/11/2013 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19209,13/12/2018 15:34,12/11/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2013-5324,13/12/2018 15:33,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3363,13/12/2018 15:33,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3362,13/12/2018 15:31,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3343,13/12/2018 15:29,12/06/2013 3:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15832,13/12/2018 15:23,20/09/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2017-2854,13/12/2018 15:11,17/09/2018 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10075,13/12/2018 15:07,5/10/2018 6:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-9489,13/12/2018 15:00,6/11/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-19205,13/12/2018 14:59,12/11/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-17184,13/12/2018 14:53,6/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8424,13/12/2018 14:52,13/09/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-0645,13/12/2018 14:39,7/09/2018 14:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9358,13/12/2018 14:16,6/11/2018 17:29,7.8,200, Information Exposure,nan
CVE-2018-9360,13/12/2018 14:15,6/11/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-9361,13/12/2018 14:13,6/11/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-19215,13/12/2018 13:55,12/11/2018 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-19216,13/12/2018 13:11,12/11/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-19206,13/12/2018 13:02,12/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9453,13/12/2018 12:46,6/11/2018 17:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-15326,13/12/2018 11:29,31/10/2018 14:29,6.0,295, Improper Certificate Validation,nan
CVE-2017-8824,13/12/2018 11:29,5/12/2017 9:29,7.2,416, Use After Free,nan
CVE-2017-11176,13/12/2018 11:29,11/07/2017 23:29,7.2,416, Use After Free,nan
CVE-2018-9362,12/12/2018 22:15,6/11/2018 17:29,7.8,20, Improper Input Validation,nan
CVE-2018-9385,12/12/2018 21:37,6/11/2018 17:29,4.6,787, Out-of-bounds Write,nan
CVE-2018-9415,12/12/2018 21:36,6/11/2018 17:29,4.6,415, Double Free,nan
CVE-2018-17055,12/12/2018 21:36,28/09/2018 0:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9436,12/12/2018 21:25,6/11/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-9437,12/12/2018 21:23,6/11/2018 17:29,7.1,125, Out-of-bounds Read,nan
CVE-2018-9445,12/12/2018 21:11,6/11/2018 17:29,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9446,12/12/2018 21:04,6/11/2018 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-9448,12/12/2018 21:02,6/11/2018 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-9450,12/12/2018 20:55,6/11/2018 17:29,9.0,787, Out-of-bounds Write,nan
CVE-2018-9451,12/12/2018 20:48,6/11/2018 17:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-9454,12/12/2018 20:46,6/11/2018 17:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-7910,12/12/2018 20:39,13/11/2018 19:29,4.6,287, Improper Authentication,nan
CVE-2018-10587,12/12/2018 20:21,1/11/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10586,12/12/2018 20:03,1/11/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19053,12/12/2018 19:52,7/11/2018 5:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18853,12/12/2018 19:45,31/10/2018 5:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-18854,12/12/2018 19:43,31/10/2018 5:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-19141,12/12/2018 18:59,11/11/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19142,12/12/2018 18:58,11/11/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19124,12/12/2018 18:48,9/11/2018 11:29,5.0,20, Improper Input Validation,nan
CVE-2018-19126,12/12/2018 18:33,9/11/2018 11:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-2390,12/12/2018 18:28,29/08/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000664,12/12/2018 18:21,6/09/2018 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-15705,12/12/2018 18:02,31/10/2018 22:29,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15707,12/12/2018 17:19,31/10/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2232,12/12/2018 17:16,1/12/2014 15:59,5.0,21, Pathname Traversal and Equivalence Errors,nan
CVE-2018-18695,12/12/2018 17:00,1/11/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2033,12/12/2018 16:59,2/03/2014 17:55,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-19056,12/12/2018 16:40,7/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19057,12/12/2018 16:37,7/11/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6433,12/12/2018 16:36,8/11/2018 14:29,2.1,20, Improper Input Validation,nan
CVE-2014-0643,12/12/2018 16:27,16/05/2014 11:11,7.6,287, Improper Authentication,nan
CVE-2018-6434,12/12/2018 16:18,8/11/2018 14:29,5.0,384, Session Fixation,nan
CVE-2018-9357,12/12/2018 15:44,6/11/2018 17:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-19180,12/12/2018 15:18,11/11/2018 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19181,12/12/2018 14:56,11/11/2018 17:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8479,12/12/2018 14:50,13/09/2018 0:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-19087,12/12/2018 14:46,10/11/2018 3:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19086,12/12/2018 14:46,10/11/2018 3:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19084,12/12/2018 14:46,10/11/2018 3:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9465,12/12/2018 14:31,6/11/2018 17:29,4.6,416, Use After Free,nan
CVE-2018-19200,12/12/2018 14:16,12/11/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18777,12/12/2018 14:13,1/11/2018 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18775,12/12/2018 14:08,1/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18776,12/12/2018 14:05,1/11/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7921,12/12/2018 13:29,12/09/2018 15:29,3.3,200, Information Exposure,nan
CVE-2018-15961,12/12/2018 13:29,25/09/2018 13:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19130,12/12/2018 13:21,9/11/2018 11:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19129,12/12/2018 13:21,9/11/2018 11:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-11392,11/12/2018 23:29,29/05/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3934,11/12/2018 21:42,2/11/2018 17:29,7.5,320, Key Management Errors,nan
CVE-2018-3935,11/12/2018 21:39,2/11/2018 17:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-11804,11/12/2018 21:38,24/10/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-18737,11/12/2018 21:29,29/10/2018 12:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-19104,11/12/2018 21:23,8/11/2018 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15324,11/12/2018 21:14,31/10/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-18309,11/12/2018 21:09,26/10/2018 13:29,6.6,129, Improper Validation of Array Index,nan
CVE-2018-15325,11/12/2018 21:03,31/10/2018 14:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-18170,11/12/2018 21:03,23/10/2018 13:29,8.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-19131,11/12/2018 20:54,9/11/2018 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11305,11/12/2018 20:49,26/10/2018 13:29,7.2,416, Use After Free,nan
CVE-2018-18771,11/12/2018 20:46,29/10/2018 12:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19224,11/12/2018 19:53,12/11/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-19136,11/12/2018 19:52,9/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19226,11/12/2018 19:51,12/11/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-19137,11/12/2018 19:51,9/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19228,11/12/2018 19:48,12/11/2018 20:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19220,11/12/2018 19:39,12/11/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-19227,11/12/2018 19:36,12/11/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19223,11/12/2018 19:35,12/11/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19221,11/12/2018 19:32,12/11/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-19225,11/12/2018 19:31,12/11/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-19229,11/12/2018 19:30,12/11/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18927,11/12/2018 19:25,4/11/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3900,11/12/2018 19:13,1/11/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3891,11/12/2018 19:03,2/11/2018 17:29,2.1,20, Improper Input Validation,nan
CVE-2018-3898,11/12/2018 18:59,2/11/2018 17:29,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3892,11/12/2018 18:59,2/11/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3899,11/12/2018 18:55,2/11/2018 17:29,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3920,11/12/2018 18:51,2/11/2018 17:29,4.6,20, Improper Input Validation,nan
CVE-2018-15323,11/12/2018 18:41,31/10/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-18830,11/12/2018 18:22,30/10/2018 6:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19145,11/12/2018 17:59,9/11/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18831,11/12/2018 17:47,30/10/2018 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19390,11/12/2018 16:58,20/11/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19389,11/12/2018 16:57,20/11/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-19388,11/12/2018 16:56,20/11/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16231,11/12/2018 16:42,30/08/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-19083,11/12/2018 16:32,7/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19091,11/12/2018 16:30,7/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19090,11/12/2018 16:29,7/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19089,11/12/2018 16:29,7/11/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18909,11/12/2018 16:27,3/11/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18825,11/12/2018 16:25,30/10/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18934,11/12/2018 16:16,5/11/2018 9:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16711,11/12/2018 16:03,26/09/2018 22:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18936,11/12/2018 15:58,5/11/2018 9:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-19076,11/12/2018 15:45,7/11/2018 18:29,5.0,287, Improper Authentication,nan
CVE-2018-19063,11/12/2018 15:43,7/11/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-18281,11/12/2018 15:39,29/10/2018 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-19065,11/12/2018 15:29,7/11/2018 18:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-5133,11/12/2018 15:29,7/02/2018 23:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-19066,11/12/2018 15:28,7/11/2018 18:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-19067,11/12/2018 15:09,7/11/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-19069,11/12/2018 15:00,7/11/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-19070,11/12/2018 14:57,7/11/2018 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19073,11/12/2018 14:49,7/11/2018 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-19075,11/12/2018 14:34,7/11/2018 18:29,5.0,200, Information Exposure,nan
CVE-2014-0188,11/12/2018 13:21,24/04/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2018-18919,11/12/2018 13:19,4/11/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18869,10/12/2018 22:01,31/10/2018 6:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7427,10/12/2018 21:53,23/10/2018 21:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18717,10/12/2018 21:46,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7432,10/12/2018 21:43,23/10/2018 21:31,5.0,20, Improper Input Validation,nan
CVE-2018-7429,10/12/2018 21:40,23/10/2018 21:31,5.0,20, Improper Input Validation,nan
CVE-2018-18868,10/12/2018 21:37,31/10/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18874,10/12/2018 21:14,31/10/2018 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18935,10/12/2018 21:00,5/11/2018 9:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18943,10/12/2018 20:45,5/11/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18950,10/12/2018 20:41,5/11/2018 9:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9208,10/12/2018 20:32,5/11/2018 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-19288,10/12/2018 19:50,15/11/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18715,10/12/2018 19:44,20/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18716,10/12/2018 19:35,20/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19921,10/12/2018 19:33,6/12/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2605,10/12/2018 19:29,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-9845,10/12/2018 19:29,12/07/2017 16:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-9844,10/12/2018 19:29,12/07/2017 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-8913,10/12/2018 19:29,23/05/2017 4:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7717,10/12/2018 19:29,14/04/2017 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5372,10/12/2018 19:29,23/01/2017 21:59,5.0,200, Information Exposure,nan
CVE-2017-5371,10/12/2018 19:29,23/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2017-3556,10/12/2018 19:29,24/04/2017 19:59,5.0,200, Information Exposure,nan
CVE-2017-3241,10/12/2018 19:29,27/01/2017 22:59,6.8,20, Improper Input Validation,nan
CVE-2017-15297,10/12/2018 19:29,16/10/2017 16:29,5.0,287, Improper Authentication,nan
CVE-2017-15296,10/12/2018 19:29,16/10/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14581,10/12/2018 19:29,19/09/2017 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-11460,10/12/2018 19:29,25/07/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11459,10/12/2018 19:29,25/07/2017 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11458,10/12/2018 19:29,25/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11457,10/12/2018 19:29,25/07/2017 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9563,10/12/2018 19:29,23/11/2016 2:59,6.0,284, Improper Access Control,nan
CVE-2016-9562,10/12/2018 19:29,23/11/2016 2:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-6818,10/12/2018 19:29,13/04/2017 19:59,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4018,10/12/2018 19:29,14/04/2016 14:59,7.5,284, Improper Access Control,nan
CVE-2016-4016,10/12/2018 19:29,14/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3980,10/12/2018 19:29,8/04/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-3979,10/12/2018 19:29,8/04/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-3976,10/12/2018 19:29,7/04/2016 23:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3975,10/12/2018 19:29,7/04/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3973,10/12/2018 19:29,7/04/2016 19:59,5.0,200, Information Exposure,nan
CVE-2016-2389,10/12/2018 19:29,16/02/2016 15:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2388,10/12/2018 19:29,16/02/2016 15:59,5.0,284, Improper Access Control,nan
CVE-2016-2387,10/12/2018 19:29,16/02/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2386,10/12/2018 19:29,16/02/2016 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1929,10/12/2018 19:29,20/01/2016 16:59,8.5,20, Improper Input Validation,nan
CVE-2016-1928,10/12/2018 19:29,20/01/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1911,10/12/2018 19:29,15/01/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1910,10/12/2018 19:29,15/01/2016 20:59,5.0,200, Information Exposure,nan
CVE-2016-10311,10/12/2018 19:29,10/04/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10310,10/12/2018 19:29,10/04/2017 15:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10304,10/12/2018 19:29,10/04/2017 14:59,4.0,502, Deserialization of Untrusted Data,nan
CVE-2016-10005,10/12/2018 19:29,19/12/2016 7:59,5.0,200, Information Exposure,nan
CVE-2015-8840,10/12/2018 19:29,8/04/2016 0:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8753,10/12/2018 19:29,8/01/2016 19:59,9.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-8600,10/12/2018 19:29,17/12/2015 19:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8330,10/12/2018 19:29,24/11/2015 20:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8329,10/12/2018 19:29,24/11/2015 20:59,5.0,310, Cryptographic Issues,nan
CVE-2015-7986,10/12/2018 19:29,27/10/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7239,10/12/2018 19:29,18/09/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6663,10/12/2018 19:29,24/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5067,10/12/2018 19:29,24/06/2015 14:59,7.5,255, Credentials Management,nan
CVE-2015-4092,10/12/2018 19:29,26/05/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3981,10/12/2018 19:29,12/05/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-3978,10/12/2018 19:29,12/05/2015 20:59,2.1,200, Information Exposure,nan
CVE-2015-2820,10/12/2018 19:29,1/04/2015 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2819,10/12/2018 19:29,1/04/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-2817,10/12/2018 19:29,1/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2816,10/12/2018 19:29,1/04/2015 14:59,7.5,284, Improper Access Control,nan
CVE-2015-2815,10/12/2018 19:29,1/04/2015 14:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2814,10/12/2018 19:29,1/04/2015 14:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-1312,10/12/2018 19:29,22/01/2015 16:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1311,10/12/2018 19:29,22/01/2015 16:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1310,10/12/2018 19:29,22/01/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9595,10/12/2018 19:29,15/01/2015 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9594,10/12/2018 19:29,15/01/2015 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8660,10/12/2018 19:29,6/11/2014 15:55,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8659,10/12/2018 19:29,6/11/2014 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8589,10/12/2018 19:29,4/11/2014 15:55,5.0,189, Numeric Errors,nan
CVE-2014-8588,10/12/2018 19:29,4/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6252,10/12/2018 19:29,5/09/2014 14:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1965,10/12/2018 19:29,14/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1964,10/12/2018 19:29,14/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1962,10/12/2018 19:29,14/02/2014 15:55,5.0,200, Information Exposure,nan
CVE-2014-1960,10/12/2018 19:29,14/02/2014 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-7096,10/12/2018 19:29,13/12/2013 20:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7094,10/12/2018 19:29,13/12/2013 20:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7093,10/12/2018 19:29,13/12/2013 20:08,5.0,287, Improper Authentication,nan
CVE-2013-6869,10/12/2018 19:29,23/11/2013 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6823,10/12/2018 19:29,20/11/2013 14:12,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-6821,10/12/2018 19:29,20/11/2013 14:12,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6819,10/12/2018 19:29,20/11/2013 14:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6818,10/12/2018 19:29,20/11/2013 14:12,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-6817,10/12/2018 19:29,20/11/2013 14:12,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6816,10/12/2018 19:29,20/11/2013 14:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6815,10/12/2018 19:29,20/11/2013 14:12,5.0,20, Improper Input Validation,nan
CVE-2013-6814,10/12/2018 19:29,20/11/2013 14:12,5.8,20, Improper Input Validation,nan
CVE-2013-5723,10/12/2018 19:29,12/09/2013 13:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5260,10/12/2018 19:29,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4707,10/12/2018 19:29,8/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11846,10/12/2018 19:10,26/10/2018 13:29,4.7,200, Information Exposure,nan
CVE-2018-17236,10/12/2018 19:00,20/09/2018 6:29,4.3,416, Use After Free,nan
CVE-2018-18949,10/12/2018 18:31,5/11/2018 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18952,10/12/2018 18:30,5/11/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18714,10/12/2018 17:59,1/11/2018 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19085,10/12/2018 17:39,10/11/2018 3:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7633,10/12/2018 17:33,9/10/2018 22:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-7632,10/12/2018 17:23,9/10/2018 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19061,10/12/2018 17:11,7/11/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7631,10/12/2018 16:59,9/10/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18292,10/12/2018 16:45,23/10/2018 13:29,4.9,20, Improper Input Validation,nan
CVE-2017-18298,10/12/2018 16:27,23/10/2018 13:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-18603,10/12/2018 16:06,23/10/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-18300,10/12/2018 15:09,23/10/2018 13:29,4.9,200, Information Exposure,nan
CVE-2018-17207,10/12/2018 14:58,19/09/2018 16:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17071,10/12/2018 14:53,18/09/2018 21:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-18303,10/12/2018 14:53,23/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18304,10/12/2018 14:52,23/10/2018 13:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-9281,10/12/2018 14:20,24/10/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18887,8/12/2018 2:39,1/11/2018 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12243,8/12/2018 2:31,19/09/2018 15:29,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12242,8/12/2018 2:28,19/09/2018 15:29,7.5,287, Improper Authentication,nan
CVE-2018-17968,8/12/2018 2:26,23/10/2018 21:30,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-17877,8/12/2018 2:15,23/10/2018 21:30,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-11824,7/12/2018 21:50,26/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18733,7/12/2018 21:34,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18736,7/12/2018 21:32,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19051,7/12/2018 21:28,7/11/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5159,7/12/2018 21:25,30/10/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-19050,7/12/2018 21:24,7/11/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-19835,7/12/2018 21:23,3/12/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18297,7/12/2018 21:11,23/10/2018 13:29,7.2,415, Double Free,nan
CVE-2018-11950,7/12/2018 20:43,26/10/2018 13:29,7.2,20, Improper Input Validation,nan
CVE-2018-18718,7/12/2018 20:29,29/10/2018 12:29,4.6,415, Double Free,nan
CVE-2018-1149,7/12/2018 19:36,19/09/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18752,7/12/2018 19:19,29/10/2018 12:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16521,7/12/2018 19:15,5/09/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-16952,7/12/2018 18:23,18/09/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15745,7/12/2018 18:23,30/08/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17176,7/12/2018 18:18,18/09/2018 18:29,5.0,287, Improper Authentication,nan
CVE-2018-16668,7/12/2018 18:18,18/09/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-18765,7/12/2018 18:00,29/10/2018 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-18764,7/12/2018 18:00,29/10/2018 12:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-13982,7/12/2018 17:51,18/09/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18567,7/12/2018 17:37,24/10/2018 22:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-17108,7/12/2018 17:34,16/09/2018 23:29,4.3,417, Channel and Path Errors,nan
CVE-2018-18867,7/12/2018 16:50,31/10/2018 5:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2012-0838,7/12/2018 16:22,2/03/2012 22:55,10.0,20, Improper Input Validation,nan
CVE-2018-11865,7/12/2018 15:28,29/10/2018 18:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-11866,7/12/2018 15:27,29/10/2018 18:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-18834,7/12/2018 15:25,30/10/2018 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18937,7/12/2018 15:21,5/11/2018 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-18957,7/12/2018 15:19,5/11/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-19122,7/12/2018 15:15,9/11/2018 11:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-19121,7/12/2018 15:15,9/11/2018 11:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-11858,7/12/2018 15:05,29/10/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18315,7/12/2018 14:47,28/11/2018 15:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-17783,7/12/2018 14:39,30/10/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17782,7/12/2018 14:39,30/10/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17177,7/12/2018 14:29,18/09/2018 18:29,2.1,326, Inadequate Encryption Strength,nan
CVE-2018-16225,7/12/2018 14:24,18/09/2018 21:29,6.1,287, Improper Authentication,nan
CVE-2017-8248,7/12/2018 11:29,16/08/2017 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1583,6/12/2018 22:29,27/06/2016 10:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18699,6/12/2018 21:42,29/10/2018 12:29,6.8,787, Out-of-bounds Write,nan
CVE-2013-2069,6/12/2018 21:01,29/05/2013 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-18694,6/12/2018 20:57,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2037,6/12/2018 20:53,18/01/2014 21:55,2.6,20, Improper Input Validation,nan
CVE-2018-15712,6/12/2018 20:50,14/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15713,6/12/2018 20:48,14/11/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15714,6/12/2018 20:47,14/11/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2033,6/12/2018 20:43,10/04/2014 20:29,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1939,6/12/2018 20:37,14/03/2014 16:55,5.0,20, Improper Input Validation,nan
CVE-2013-1365,6/12/2018 20:34,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12246,6/12/2018 20:30,22/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17780,6/12/2018 20:25,29/09/2018 19:29,4.0,200, Information Exposure,nan
CVE-2018-18548,6/12/2018 20:23,24/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18551,6/12/2018 20:21,24/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18552,6/12/2018 20:19,24/10/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18566,6/12/2018 20:13,24/10/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-18568,6/12/2018 20:12,24/10/2018 22:29,4.3,295, Improper Certificate Validation,nan
CVE-2013-1366,6/12/2018 20:03,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1367,6/12/2018 19:58,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1368,6/12/2018 19:56,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1370,6/12/2018 19:55,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1369,6/12/2018 19:55,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1373,6/12/2018 19:54,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1372,6/12/2018 19:54,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0637,6/12/2018 19:53,12/02/2013 20:55,5.0,200, Information Exposure,nan
CVE-2013-1374,6/12/2018 19:52,12/02/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0633,6/12/2018 19:52,8/02/2013 11:58,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0649,6/12/2018 19:50,12/02/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0647,6/12/2018 19:50,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0645,6/12/2018 19:48,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0644,6/12/2018 19:48,12/02/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0642,6/12/2018 19:47,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0639,6/12/2018 19:46,12/02/2013 20:55,10.0,189, Numeric Errors,nan
CVE-2013-0638,6/12/2018 19:46,12/02/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18840,6/12/2018 19:33,30/10/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18783,6/12/2018 19:32,29/10/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18841,6/12/2018 19:29,30/10/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0634,6/12/2018 19:29,8/02/2013 11:58,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0504,6/12/2018 19:27,27/02/2013 0:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7989,6/12/2018 19:24,17/10/2018 15:29,2.1,287, Improper Authentication,nan
CVE-2018-18832,6/12/2018 19:18,30/10/2018 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18778,6/12/2018 19:14,29/10/2018 12:29,4.0,200, Information Exposure,nan
CVE-2012-5688,6/12/2018 19:14,6/12/2012 11:45,7.8,20, Improper Input Validation,nan
CVE-2012-6324,6/12/2018 19:11,21/12/2012 21:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12375,6/12/2018 19:05,18/10/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12385,6/12/2018 19:03,18/10/2018 13:29,4.4,20, Improper Input Validation,nan
CVE-2018-18650,6/12/2018 18:55,25/10/2018 13:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2013-0643,6/12/2018 18:46,27/02/2013 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-5188,6/12/2018 18:44,18/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5187,6/12/2018 18:44,18/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5156,6/12/2018 18:39,18/10/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2018-12387,6/12/2018 18:38,18/10/2018 13:29,6.4,20, Improper Input Validation,nan
CVE-2018-12386,6/12/2018 18:31,18/10/2018 13:29,5.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-5186,6/12/2018 18:13,18/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12382,6/12/2018 18:13,18/10/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-12379,6/12/2018 18:10,18/10/2018 13:29,4.6,787, Out-of-bounds Write,nan
CVE-2016-10732,6/12/2018 17:51,29/10/2018 12:29,7.5,287, Improper Authentication,nan
CVE-2016-10734,6/12/2018 17:47,29/10/2018 12:29,7.5,285, Improper Authorization,nan
CVE-2016-10733,6/12/2018 17:39,29/10/2018 12:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18295,6/12/2018 17:20,23/10/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2149,6/12/2018 17:16,14/03/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2085,6/12/2018 17:14,14/03/2014 16:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18829,6/12/2018 16:40,30/10/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18828,6/12/2018 16:40,30/10/2018 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18827,6/12/2018 16:40,30/10/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18826,6/12/2018 16:40,30/10/2018 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18835,6/12/2018 16:15,30/10/2018 6:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18657,6/12/2018 16:11,26/10/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-18658,6/12/2018 16:07,26/10/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-18659,6/12/2018 15:58,26/10/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12378,6/12/2018 15:51,18/10/2018 13:29,7.5,416, Use After Free,nan
CVE-2018-12377,6/12/2018 15:50,18/10/2018 13:29,7.5,416, Use After Free,nan
CVE-2018-12376,6/12/2018 15:50,18/10/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18289,6/12/2018 15:47,14/10/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-18517,6/12/2018 15:38,24/10/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18635,6/12/2018 15:32,24/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12370,6/12/2018 15:29,18/10/2018 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16956,6/12/2018 15:18,18/09/2018 2:29,4.0,20, Improper Input Validation,nan
CVE-2018-12367,6/12/2018 15:10,18/10/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2018-16957,6/12/2018 15:04,18/09/2018 2:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-3940,6/12/2018 15:01,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-12359,6/12/2018 14:50,18/10/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16959,6/12/2018 14:47,18/09/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-8292,6/12/2018 14:46,10/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-12361,6/12/2018 14:38,18/10/2018 13:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-12358,6/12/2018 14:37,18/10/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-11787,6/12/2018 14:35,18/09/2018 14:29,6.8,287, Improper Authentication,nan
CVE-2015-4633,6/12/2018 14:26,18/10/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18376,6/12/2018 14:06,16/10/2018 1:29,5.0,200, Information Exposure,nan
CVE-2018-18662,6/12/2018 14:04,26/10/2018 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8512,6/12/2018 13:30,10/10/2018 13:29,5.8,20, Improper Input Validation,nan
CVE-2018-8509,6/12/2018 13:28,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8506,6/12/2018 13:15,10/10/2018 13:29,1.9,200, Information Exposure,nan
CVE-2018-7242,5/12/2018 21:29,18/04/2018 20:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-7241,5/12/2018 21:29,18/04/2018 20:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-5535,5/12/2018 13:29,19/07/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-7177,5/12/2018 11:29,18/03/2017 20:59,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2016-5003,5/12/2018 11:29,27/10/2017 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-5002,5/12/2018 11:29,27/10/2017 18:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17444,4/12/2018 21:48,23/10/2018 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8889,4/12/2018 21:27,19/09/2018 20:29,4.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18026,4/12/2018 21:24,19/10/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18720,4/12/2018 20:54,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18721,4/12/2018 20:51,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18723,4/12/2018 20:50,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18722,4/12/2018 20:50,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18724,4/12/2018 20:49,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18725,4/12/2018 20:48,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12901,4/12/2018 20:27,23/10/2018 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18726,4/12/2018 20:25,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18621,4/12/2018 20:25,24/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18745,4/12/2018 20:23,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18744,4/12/2018 20:22,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18743,4/12/2018 20:22,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18741,4/12/2018 20:22,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18738,4/12/2018 20:15,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18739,4/12/2018 20:14,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18740,4/12/2018 20:13,29/10/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4631,4/12/2018 20:01,18/10/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4630,4/12/2018 19:59,18/10/2018 21:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18622,4/12/2018 19:55,23/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18290,4/12/2018 19:49,14/10/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16049,4/12/2018 19:43,3/10/2018 16:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-18599,4/12/2018 19:41,23/10/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-18291,4/12/2018 19:40,14/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16051,4/12/2018 19:24,3/10/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-18324,4/12/2018 19:21,15/10/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18416,4/12/2018 19:14,19/10/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18553,4/12/2018 19:08,22/10/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18546,4/12/2018 19:08,21/10/2018 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16252,4/12/2018 19:05,5/09/2018 21:29,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-18705,4/12/2018 19:02,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18703,4/12/2018 19:02,29/10/2018 12:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18704,4/12/2018 19:00,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18626,4/12/2018 18:49,23/10/2018 19:29,6.4,20, Improper Input Validation,nan
CVE-2018-18545,4/12/2018 18:48,21/10/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8570,4/12/2018 18:46,14/11/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18702,4/12/2018 18:45,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18550,4/12/2018 18:42,21/10/2018 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18527,4/12/2018 18:41,19/10/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5676,4/12/2018 18:15,12/12/2012 11:38,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15980,4/12/2018 18:07,29/11/2018 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2012-5677,4/12/2018 18:05,12/12/2012 11:38,10.0,189, Numeric Errors,nan
CVE-2018-15315,4/12/2018 18:03,19/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5678,4/12/2018 18:02,12/12/2012 11:38,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5285,4/12/2018 17:56,13/11/2012 13:39,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5280,4/12/2018 17:54,7/11/2012 5:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5279,4/12/2018 17:53,7/11/2012 5:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5278,4/12/2018 17:53,7/11/2012 5:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-15314,4/12/2018 17:52,19/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17446,4/12/2018 17:50,23/10/2018 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5277,4/12/2018 17:49,7/11/2012 5:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5276,4/12/2018 17:44,7/11/2012 5:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5275,4/12/2018 17:39,7/11/2012 5:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5274,4/12/2018 17:38,7/11/2012 5:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4834,4/12/2018 17:36,30/11/2012 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18475,4/12/2018 17:35,23/10/2018 21:30,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-12650,4/12/2018 17:31,24/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4533,4/12/2018 17:29,19/11/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18547,4/12/2018 17:28,24/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4168,4/12/2018 17:28,21/08/2012 23:55,4.3,200, Information Exposure,nan
CVE-2018-18636,4/12/2018 17:25,24/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4167,4/12/2018 17:24,21/08/2012 23:55,10.0,189, Numeric Errors,nan
CVE-2012-4165,4/12/2018 17:23,21/08/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18785,4/12/2018 17:22,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18786,4/12/2018 17:21,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4164,4/12/2018 17:13,21/08/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4163,4/12/2018 17:12,21/08/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3451,4/12/2018 17:10,24/09/2012 17:55,4.3,20, Improper Input Validation,nan
CVE-2012-1335,4/12/2018 17:06,5/04/2012 13:25,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1337,4/12/2018 17:05,5/04/2012 13:25,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1336,4/12/2018 17:05,5/04/2012 13:25,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18788,4/12/2018 16:24,29/10/2018 12:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18787,4/12/2018 16:24,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18784,4/12/2018 16:24,29/10/2018 12:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18790,4/12/2018 16:23,29/10/2018 12:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18789,4/12/2018 16:23,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18791,4/12/2018 16:15,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18792,4/12/2018 16:14,29/10/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18478,4/12/2018 15:49,18/10/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18417,4/12/2018 15:44,19/10/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18419,4/12/2018 15:35,19/10/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18420,4/12/2018 15:12,19/10/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18197,4/12/2018 14:34,9/10/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18530,4/12/2018 14:12,19/10/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18529,4/12/2018 14:09,19/10/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18608,4/12/2018 14:05,23/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18437,4/12/2018 14:01,23/10/2018 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15366,4/12/2018 13:36,23/10/2018 14:29,7.2,416, Use After Free,nan
CVE-2018-15367,4/12/2018 13:30,23/10/2018 14:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-18327,4/12/2018 13:25,23/10/2018 14:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-18328,4/12/2018 13:22,23/10/2018 14:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-18329,4/12/2018 13:16,23/10/2018 14:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-18540,4/12/2018 13:11,20/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15313,3/12/2018 21:21,19/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18891,3/12/2018 20:54,1/11/2018 1:29,6.4,287, Improper Authentication,nan
CVE-2018-18890,3/12/2018 20:54,1/11/2018 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18892,3/12/2018 20:53,1/11/2018 1:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-13401,3/12/2018 20:23,23/10/2018 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-13402,3/12/2018 20:16,23/10/2018 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-12362,3/12/2018 20:11,18/10/2018 13:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-12364,3/12/2018 20:10,18/10/2018 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12363,3/12/2018 20:10,18/10/2018 13:29,6.8,416, Use After Free,nan
CVE-2018-12366,3/12/2018 20:09,18/10/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12365,3/12/2018 20:09,18/10/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-12360,3/12/2018 20:08,18/10/2018 13:29,6.8,416, Use After Free,nan
CVE-2018-15703,3/12/2018 20:05,22/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15704,3/12/2018 20:02,22/10/2018 19:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18390,3/12/2018 19:54,19/10/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-18578,3/12/2018 19:23,22/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18782,3/12/2018 19:20,29/10/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18781,3/12/2018 19:20,29/10/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18579,3/12/2018 19:18,22/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8413,3/12/2018 19:17,10/10/2018 13:29,9.3,20, Improper Input Validation,nan
CVE-2018-8432,3/12/2018 19:15,10/10/2018 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18361,3/12/2018 19:09,15/10/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8472,3/12/2018 18:49,10/10/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-18583,3/12/2018 18:43,22/10/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18582,3/12/2018 18:43,22/10/2018 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11019,3/12/2018 18:22,16/10/2018 22:29,7.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-11021,3/12/2018 18:21,16/10/2018 22:29,7.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-12813,3/12/2018 18:15,17/10/2018 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12822,3/12/2018 18:14,17/10/2018 18:29,10.0,416, Use After Free,nan
CVE-2018-12814,3/12/2018 18:14,17/10/2018 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17784,3/12/2018 18:04,10/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7076,3/12/2018 18:03,17/10/2018 13:29,10.0,287, Improper Authentication,nan
CVE-2018-15312,3/12/2018 17:59,19/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12823,3/12/2018 17:58,17/10/2018 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8481,3/12/2018 17:48,10/10/2018 13:29,2.6,200, Information Exposure,nan
CVE-2018-8482,3/12/2018 17:36,10/10/2018 13:29,2.6,200, Information Exposure,nan
CVE-2018-8489,3/12/2018 17:13,10/10/2018 13:29,7.7,20, Improper Input Validation,nan
CVE-2018-18262,3/12/2018 15:59,17/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18426,3/12/2018 15:13,17/10/2018 4:29,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-7110,3/12/2018 15:11,17/10/2018 13:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-11023,3/12/2018 15:11,16/10/2018 22:29,7.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-11022,3/12/2018 15:10,16/10/2018 22:29,7.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-11024,3/12/2018 15:09,16/10/2018 22:29,7.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-11025,3/12/2018 15:08,16/10/2018 22:29,7.8,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-18427,3/12/2018 15:05,17/10/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18481,3/12/2018 14:50,18/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18486,3/12/2018 14:49,18/10/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18480,3/12/2018 14:49,18/10/2018 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5548,3/12/2018 14:37,13/09/2018 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-18372,3/12/2018 14:19,17/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3057,3/12/2018 13:50,29/06/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3056,3/12/2018 13:50,29/06/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3055,3/12/2018 13:50,29/06/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3054,3/12/2018 13:49,29/06/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3053,3/12/2018 13:42,29/06/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12865,3/12/2018 11:29,29/08/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12562,3/12/2018 11:29,5/08/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6026,1/12/2018 11:29,30/06/2017 3:29,6.4,330, Use of Insufficiently Random Values,nan
CVE-2017-17095,1/12/2018 11:29,2/12/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11613,1/12/2018 11:29,26/07/2017 8:29,4.3,20, Improper Input Validation,nan
CVE-2016-9106,1/12/2018 11:29,9/12/2016 22:59,2.1,399, Resource Management Errors,nan
CVE-2016-9105,1/12/2018 11:29,9/12/2016 22:59,2.1,399, Resource Management Errors,nan
CVE-2016-9104,1/12/2018 11:29,9/12/2016 22:59,2.1,190, Integer Overflow or Wraparound,nan
CVE-2016-9103,1/12/2018 11:29,9/12/2016 22:59,2.1,200, Information Exposure,nan
CVE-2016-9102,1/12/2018 11:29,9/12/2016 22:59,2.1,399, Resource Management Errors,nan
CVE-2016-9101,1/12/2018 11:29,9/12/2016 22:59,2.1,399, Resource Management Errors,nan
CVE-2016-8578,1/12/2018 11:29,4/11/2016 21:59,1.9,476, NULL Pointer Dereference,nan
CVE-2016-8577,1/12/2018 11:29,4/11/2016 21:59,1.9,399, Resource Management Errors,nan
CVE-2016-7909,1/12/2018 11:29,5/10/2016 16:59,4.9,399, Resource Management Errors,nan
CVE-2016-7908,1/12/2018 11:29,5/10/2016 16:59,2.1,399, Resource Management Errors,nan
CVE-2016-7421,1/12/2018 11:29,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-7170,1/12/2018 11:29,10/12/2016 0:59,2.1,787, Out-of-bounds Write,nan
CVE-2016-7161,1/12/2018 11:29,5/10/2016 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7156,1/12/2018 11:29,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-7155,1/12/2018 11:29,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-7116,1/12/2018 11:29,10/12/2016 0:59,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6888,1/12/2018 11:29,10/12/2016 0:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-6836,1/12/2018 11:29,10/12/2016 0:59,2.1,200, Information Exposure,nan
CVE-2016-6834,1/12/2018 11:29,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-6351,1/12/2018 11:29,7/09/2016 18:59,7.2,787, Out-of-bounds Write,nan
CVE-2016-5338,1/12/2018 11:29,14/06/2016 14:59,4.6,20, Improper Input Validation,nan
CVE-2016-5337,1/12/2018 11:29,14/06/2016 14:59,2.1,200, Information Exposure,nan
CVE-2016-5238,1/12/2018 11:29,14/06/2016 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5107,1/12/2018 11:29,2/09/2016 14:59,1.5,125, Out-of-bounds Read,nan
CVE-2016-5106,1/12/2018 11:29,2/09/2016 14:59,1.5,787, Out-of-bounds Write,nan
CVE-2016-5105,1/12/2018 11:29,2/09/2016 14:59,1.9,200, Information Exposure,nan
CVE-2016-4952,1/12/2018 11:29,2/09/2016 14:59,1.5,125, Out-of-bounds Read,nan
CVE-2016-4454,1/12/2018 11:29,1/06/2016 22:59,3.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4453,1/12/2018 11:29,1/06/2016 22:59,4.6,399, Resource Management Errors,nan
CVE-2016-4441,1/12/2018 11:29,20/05/2016 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4439,1/12/2018 11:29,20/05/2016 14:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4037,1/12/2018 11:29,23/05/2016 19:59,4.9,20, Improper Input Validation,nan
CVE-2016-4020,1/12/2018 11:29,25/05/2016 15:59,2.1,200, Information Exposure,nan
CVE-2016-4002,1/12/2018 11:29,26/04/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4001,1/12/2018 11:29,23/05/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2016-2858,1/12/2018 11:29,7/04/2016 19:59,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2857,1/12/2018 11:29,12/04/2016 2:00,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2841,1/12/2018 11:29,16/06/2016 18:59,2.1,20, Improper Input Validation,nan
CVE-2016-2538,1/12/2018 11:29,16/06/2016 18:59,3.6,189, Numeric Errors,nan
CVE-2018-6925,30/11/2018 21:34,28/09/2018 13:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-2581,30/11/2018 21:33,18/01/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-10897,30/11/2018 21:33,1/08/2018 17:29,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10872,30/11/2018 21:33,10/07/2018 19:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9074,30/11/2018 21:33,19/05/2017 7:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-7645,30/11/2018 21:33,18/04/2017 14:59,7.8,20, Improper Input Validation,nan
CVE-2017-5715,30/11/2018 21:31,4/01/2018 13:29,4.7,200, Information Exposure,nan
CVE-2017-18017,30/11/2018 21:31,3/01/2018 6:29,10.0,416, Use After Free,nan
CVE-2016-0800,30/11/2018 21:31,1/03/2016 20:59,4.3,310, Cryptographic Issues,nan
CVE-2015-7547,30/11/2018 21:31,18/02/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1793,30/11/2018 21:30,9/07/2015 19:17,6.4,254, 7PK – Security Features,nan
CVE-2014-9295,30/11/2018 21:30,20/12/2014 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7169,30/11/2018 21:29,25/09/2014 1:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-6071,30/11/2018 21:29,16/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3192,30/11/2018 21:29,29/08/2011 15:55,7.8,399, Resource Management Errors,nan
CVE-2018-17964,30/11/2018 21:15,17/10/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15898,30/11/2018 21:05,11/09/2018 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-18436,30/11/2018 20:49,17/10/2018 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15493,30/11/2018 20:46,17/10/2018 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-18487,30/11/2018 19:53,18/10/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-18488,30/11/2018 19:31,18/10/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9069,30/11/2018 19:31,18/10/2018 13:29,6.8,416, Use After Free,nan
CVE-2018-18461,30/11/2018 19:26,18/10/2018 6:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18455,30/11/2018 19:14,18/10/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15970,30/11/2018 19:08,17/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15969,30/11/2018 19:08,17/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15971,30/11/2018 19:07,17/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15972,30/11/2018 19:05,17/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15973,30/11/2018 19:04,17/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18456,30/11/2018 18:58,18/10/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18274,30/11/2018 18:33,12/10/2018 22:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8434,30/11/2018 18:12,13/09/2018 0:29,5.2,200, Information Exposure,nan
CVE-2018-18460,30/11/2018 17:44,18/10/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8493,30/11/2018 17:31,10/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-18457,30/11/2018 16:53,18/10/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-15539,30/11/2018 16:52,15/10/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15540,30/11/2018 16:51,15/10/2018 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18458,30/11/2018 16:50,18/10/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-18459,30/11/2018 16:42,18/10/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-15538,30/11/2018 16:39,15/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18260,30/11/2018 16:09,15/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17897,30/11/2018 15:26,17/10/2018 2:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-17072,30/11/2018 14:17,16/09/2018 2:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-17532,30/11/2018 14:12,15/10/2018 19:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17533,30/11/2018 14:09,15/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18422,30/11/2018 14:02,17/10/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000079,30/11/2018 11:29,13/03/2018 15:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000073,30/11/2018 11:29,13/03/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5601,30/11/2018 11:29,27/01/2017 22:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-17742,30/11/2018 11:29,3/04/2018 22:29,5.0,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2017-13699,30/11/2018 11:29,23/11/2017 21:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-8689,30/11/2018 11:29,15/02/2017 19:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-8688,30/11/2018 11:29,15/02/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8687,30/11/2018 11:29,15/02/2017 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8915,30/11/2018 11:29,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2018-18257,29/11/2018 21:38,11/10/2018 21:01,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15531,29/11/2018 21:13,26/09/2018 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-13256,29/11/2018 20:59,9/07/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2463,29/11/2018 20:10,11/09/2018 15:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-18323,29/11/2018 20:06,15/10/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16457,29/11/2018 19:59,4/10/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18434,29/11/2018 19:52,17/10/2018 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18431,29/11/2018 19:50,17/10/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18430,29/11/2018 19:45,17/10/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18432,29/11/2018 19:40,17/10/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18433,29/11/2018 19:39,17/10/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0646,29/11/2018 19:10,8/03/2012 22:55,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2012-0641,29/11/2018 19:10,8/03/2012 22:55,5.0,20, Improper Input Validation,nan
CVE-2012-0645,29/11/2018 19:09,8/03/2012 22:55,1.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0644,29/11/2018 19:09,8/03/2012 22:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-0643,29/11/2018 19:09,8/03/2012 22:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0642,29/11/2018 19:09,8/03/2012 22:55,9.3,189, Numeric Errors,nan
CVE-2012-0635,29/11/2018 19:09,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0633,29/11/2018 19:09,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0591,29/11/2018 19:09,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0632,29/11/2018 19:08,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0631,29/11/2018 19:08,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0630,29/11/2018 19:08,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0629,29/11/2018 19:08,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0628,29/11/2018 19:07,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0627,29/11/2018 19:07,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0626,29/11/2018 19:06,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0625,29/11/2018 19:05,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0607,29/11/2018 19:05,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0609,29/11/2018 19:04,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0608,29/11/2018 19:04,8/03/2012 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0606,29/11/2018 19:04,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0613,29/11/2018 19:03,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0612,29/11/2018 19:03,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0611,29/11/2018 19:03,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0610,29/11/2018 19:03,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0617,29/11/2018 19:02,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0616,29/11/2018 19:02,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0615,29/11/2018 19:02,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0614,29/11/2018 19:02,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0618,29/11/2018 19:01,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0619,29/11/2018 19:00,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0623,29/11/2018 18:59,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0622,29/11/2018 18:59,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0621,29/11/2018 18:59,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0620,29/11/2018 18:59,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0624,29/11/2018 18:58,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0594,29/11/2018 18:58,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0593,29/11/2018 18:58,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0592,29/11/2018 18:58,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0598,29/11/2018 18:57,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0597,29/11/2018 18:57,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0596,29/11/2018 18:57,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0595,29/11/2018 18:57,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0601,29/11/2018 18:56,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0600,29/11/2018 18:56,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0599,29/11/2018 18:56,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0604,29/11/2018 18:55,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0603,29/11/2018 18:55,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0602,29/11/2018 18:55,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0605,29/11/2018 18:54,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0590,29/11/2018 18:54,8/03/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0589,29/11/2018 18:54,8/03/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0588,29/11/2018 18:54,8/03/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0587,29/11/2018 18:54,8/03/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0586,29/11/2018 18:53,8/03/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18773,29/11/2018 18:45,20/11/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18772,29/11/2018 18:44,20/11/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2646,29/11/2018 16:54,25/07/2012 10:42,5.0,200, Information Exposure,nan
CVE-2011-3866,29/11/2018 16:02,29/09/2011 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3003,29/11/2018 16:02,29/09/2011 0:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3002,29/11/2018 16:02,29/09/2011 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2822,29/11/2018 15:50,29/08/2011 15:55,10.0,20, Improper Input Validation,nan
CVE-2011-0730,29/11/2018 15:49,2/06/2011 19:55,6.5,20, Improper Input Validation,nan
CVE-2008-4360,29/11/2018 15:46,3/10/2008 17:41,7.5,200, Information Exposure,nan
CVE-2008-4359,29/11/2018 15:46,3/10/2008 17:41,7.5,200, Information Exposure,nan
CVE-2007-1693,29/11/2018 15:46,17/05/2007 20:30,7.8,20, Improper Input Validation,nan
CVE-2007-0683,29/11/2018 15:45,3/02/2007 1:28,7.5,20, Improper Input Validation,nan
CVE-2001-0771,29/11/2018 15:45,18/10/2001 4:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-1999-1462,29/11/2018 15:44,31/12/1999 5:00,5.0,200, Information Exposure,nan
CVE-2018-16982,29/11/2018 15:43,13/09/2018 2:29,4.3,125, Out-of-bounds Read,nan
CVE-2011-2455,29/11/2018 15:41,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2454,29/11/2018 15:40,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2453,29/11/2018 15:40,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2452,29/11/2018 15:39,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2460,29/11/2018 15:38,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2459,29/11/2018 15:38,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2451,29/11/2018 15:38,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2458,29/11/2018 15:37,11/11/2011 16:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2457,29/11/2018 15:37,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2456,29/11/2018 15:37,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2450,29/11/2018 15:37,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2445,29/11/2018 15:36,11/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17479,29/11/2018 14:51,8/12/2017 19:29,7.5,787, Out-of-bounds Write,nan
CVE-2015-1787,29/11/2018 14:48,19/03/2015 22:59,2.6,20, Improper Input Validation,nan
CVE-2015-0290,29/11/2018 14:48,19/03/2015 22:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-0285,29/11/2018 14:47,19/03/2015 22:59,4.3,310, Cryptographic Issues,nan
CVE-2014-9195,29/11/2018 14:43,17/01/2015 2:59,7.5,255, Credentials Management,nan
CVE-2012-0585,29/11/2018 14:43,8/03/2012 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2873,29/11/2018 14:43,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2872,29/11/2018 14:42,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2871,29/11/2018 14:42,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2870,29/11/2018 14:41,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2869,29/11/2018 14:40,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2868,29/11/2018 14:39,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2867,29/11/2018 14:39,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4362,29/11/2018 14:38,24/12/2011 19:55,5.0,189, Numeric Errors,nan
CVE-2011-2833,29/11/2018 14:38,8/03/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18083,29/11/2018 14:34,9/10/2018 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-18774,29/11/2018 14:21,20/11/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17139,29/11/2018 14:01,17/09/2018 6:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-5934,29/11/2018 13:00,15/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11559,29/11/2018 12:19,30/05/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11558,29/11/2018 12:19,30/05/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7501,29/11/2018 11:29,22/11/2017 22:29,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-8118,29/11/2018 11:29,16/12/2014 18:59,10.0,189, Numeric Errors,nan
CVE-2013-6435,29/11/2018 11:29,16/12/2014 18:59,7.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-5019,28/11/2018 21:52,3/10/2016 18:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-8494,28/11/2018 21:39,10/10/2018 13:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8495,28/11/2018 21:32,10/10/2018 13:29,7.6,20, Improper Input Validation,nan
CVE-2018-8490,28/11/2018 21:25,10/10/2018 13:29,7.7,20, Improper Input Validation,nan
CVE-2018-17434,28/11/2018 21:20,24/09/2018 14:29,4.3,369, Divide By Zero,nan
CVE-2018-17103,28/11/2018 21:19,16/09/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16962,28/11/2018 21:14,12/09/2018 20:29,7.2,123, Write-what-where Condition,nan
CVE-2018-5545,28/11/2018 20:40,13/09/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2018-17174,28/11/2018 20:35,21/09/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16797,28/11/2018 20:24,10/09/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12455,28/11/2018 18:16,10/10/2018 21:29,9.3,287, Improper Authentication,nan
CVE-2018-12456,28/11/2018 18:08,10/10/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17337,28/11/2018 18:04,10/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3405,28/11/2018 17:13,16/09/2010 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3187,28/11/2018 17:12,30/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0393,28/11/2018 17:05,8/01/2012 15:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2018-7907,28/11/2018 16:52,26/09/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-18270,28/11/2018 16:39,12/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18282,28/11/2018 16:36,12/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0392,28/11/2018 16:33,8/01/2012 15:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-18296,28/11/2018 16:32,15/10/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18259,28/11/2018 16:15,15/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17106,28/11/2018 16:02,16/09/2018 21:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17045,28/11/2018 15:26,14/09/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17794,28/11/2018 15:06,30/09/2018 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-17797,28/11/2018 15:02,30/09/2018 20:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17828,28/11/2018 15:00,1/10/2018 8:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17838,28/11/2018 14:57,1/10/2018 8:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18271,28/11/2018 14:30,12/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18061,28/11/2018 14:12,10/10/2018 21:29,6.4,287, Improper Authentication,nan
CVE-2018-18062,28/11/2018 14:01,10/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7660,28/11/2018 11:29,7/07/2017 19:29,5.0,287, Improper Authentication,nan
CVE-2017-16649,28/11/2018 11:29,7/11/2017 23:29,7.2,369, Divide By Zero,nan
CVE-2016-9588,28/11/2018 11:29,28/12/2016 7:59,2.1,388, 7PK – Errors,nan
CVE-2016-1000352,28/11/2018 11:29,4/06/2018 21:29,5.8,310, Cryptographic Issues,nan
CVE-2016-1000346,28/11/2018 11:29,4/06/2018 21:29,4.3,320, Key Management Errors,nan
CVE-2016-1000345,28/11/2018 11:29,4/06/2018 21:29,4.3,361, 7PK – Time and State,nan
CVE-2016-1000344,28/11/2018 11:29,4/06/2018 21:29,5.8,310, Cryptographic Issues,nan
CVE-2016-1000343,28/11/2018 11:29,4/06/2018 13:29,5.0,310, Cryptographic Issues,nan
CVE-2016-1000342,28/11/2018 11:29,4/06/2018 13:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2016-1000341,28/11/2018 11:29,4/06/2018 13:29,4.3,361, 7PK – Time and State,nan
CVE-2016-1000340,28/11/2018 11:29,4/06/2018 13:29,5.0,19, Data Processing Errors,nan
CVE-2016-1000339,28/11/2018 11:29,4/06/2018 13:29,5.0,310, Cryptographic Issues,nan
CVE-2018-16821,27/11/2018 21:03,21/09/2018 17:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16985,27/11/2018 20:55,13/09/2018 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-17869,27/11/2018 20:42,1/10/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17404,27/11/2018 20:28,23/09/2018 22:29,2.6,200, Information Exposure,nan
CVE-2010-3310,27/11/2018 20:22,29/09/2010 17:00,1.9,189, Numeric Errors,nan
CVE-2018-17986,27/11/2018 20:11,5/10/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15700,27/11/2018 20:09,1/10/2018 20:29,6.1,20, Improper Input Validation,nan
CVE-2018-15701,27/11/2018 20:08,1/10/2018 20:29,3.3,20, Improper Input Validation,nan
CVE-2018-15702,27/11/2018 20:06,1/10/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15310,27/11/2018 20:05,13/09/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-18201,27/11/2018 19:58,9/10/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-3894,27/11/2018 19:45,21/09/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3914,27/11/2018 19:42,21/09/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3913,27/11/2018 19:42,21/09/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3915,27/11/2018 19:41,21/09/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18316,27/11/2018 19:23,15/10/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18317,27/11/2018 19:21,15/10/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18374,27/11/2018 19:19,16/10/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14731,27/11/2018 19:01,21/09/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-7572,27/11/2018 18:37,12/09/2018 16:29,7.2,287, Improper Authentication,nan
CVE-2018-16950,27/11/2018 18:32,12/09/2018 2:29,3.3,20, Improper Input Validation,nan
CVE-2018-12585,27/11/2018 17:52,14/09/2018 21:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1082,27/11/2018 17:32,12/09/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-17540,27/11/2018 17:22,3/10/2018 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7906,27/11/2018 16:49,12/09/2018 15:29,7.1,20, Improper Input Validation,nan
CVE-2018-8427,27/11/2018 16:04,10/10/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-5921,27/11/2018 15:41,3/10/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-4848,27/11/2018 15:29,14/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8460,27/11/2018 15:28,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8491,27/11/2018 15:16,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8488,27/11/2018 15:10,10/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3884,27/11/2018 14:32,8/10/2010 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8527,27/11/2018 14:03,10/10/2018 13:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8532,27/11/2018 14:02,10/10/2018 13:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8533,27/11/2018 14:00,10/10/2018 13:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8473,27/11/2018 13:44,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18207,27/11/2018 12:25,10/10/2018 15:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-14633,27/11/2018 11:29,25/09/2018 0:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7862,27/11/2018 11:29,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-17858,27/11/2018 11:29,22/01/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17124,27/11/2018 11:29,4/12/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17123,27/11/2018 11:29,4/12/2017 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17121,27/11/2018 11:29,4/12/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16832,27/11/2018 11:29,15/11/2017 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16831,27/11/2018 11:29,15/11/2017 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16830,27/11/2018 11:29,15/11/2017 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16829,27/11/2018 11:29,15/11/2017 8:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-16828,27/11/2018 11:29,15/11/2017 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16827,27/11/2018 11:29,15/11/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16826,27/11/2018 11:29,15/11/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16803,27/11/2018 11:29,13/11/2017 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15587,27/11/2018 11:29,18/10/2017 8:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16639,26/11/2018 21:34,14/09/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-8500,26/11/2018 21:11,10/10/2018 13:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8503,26/11/2018 20:53,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8505,26/11/2018 20:50,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8510,26/11/2018 20:48,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8511,26/11/2018 20:46,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8513,26/11/2018 20:45,10/10/2018 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18211,26/11/2018 20:38,10/10/2018 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12160,26/11/2018 20:38,12/09/2018 19:29,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-18208,26/11/2018 20:29,10/10/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6924,26/11/2018 20:27,12/09/2018 14:29,5.6,20, Improper Input Validation,nan
CVE-2018-2462,26/11/2018 20:14,11/09/2018 15:29,6.5,20, Improper Input Validation,nan
CVE-2018-17297,26/11/2018 18:32,21/09/2018 7:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15903,26/11/2018 17:53,8/10/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17858,26/11/2018 16:58,9/10/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15542,26/11/2018 16:10,9/10/2018 17:29,4.4,287, Improper Authentication,nan
CVE-2018-17569,26/11/2018 15:59,26/09/2018 22:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-17570,26/11/2018 15:57,26/09/2018 22:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-17977,26/11/2018 15:51,8/10/2018 17:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2018-2470,26/11/2018 15:28,9/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7101,26/11/2018 15:19,27/09/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-17081,26/11/2018 15:12,26/09/2018 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16796,25/11/2018 15:13,13/09/2018 16:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18086,25/11/2018 14:52,9/10/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-18020,25/11/2018 14:32,6/10/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-8422,25/11/2018 14:24,13/09/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-15753,25/11/2018 13:35,2/10/2018 18:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-17850,25/11/2018 11:29,27/12/2017 17:08,5.0,20, Improper Input Validation,nan
CVE-2017-16671,25/11/2018 11:29,9/11/2017 0:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16541,25/11/2018 11:29,4/11/2017 18:29,4.3,200, Information Exposure,nan
CVE-2018-15543,24/11/2018 4:29,9/10/2018 17:29,4.6,287, Improper Authentication,nan
CVE-2018-18190,24/11/2018 4:00,9/10/2018 20:29,4.3,369, Divide By Zero,nan
CVE-2018-18087,24/11/2018 2:57,9/10/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2472,24/11/2018 2:50,9/10/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2479,24/11/2018 2:47,13/11/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8330,23/11/2018 20:22,10/10/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-14572,23/11/2018 20:04,28/08/2018 19:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-17837,23/11/2018 19:48,1/10/2018 8:29,6.4,20, Improper Input Validation,nan
CVE-2015-9271,23/11/2018 19:34,4/10/2018 23:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-2471,23/11/2018 19:23,9/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-2469,23/11/2018 19:21,9/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2014-10076,23/11/2018 19:20,5/10/2018 6:29,5.0,200, Information Exposure,nan
CVE-2015-9269,23/11/2018 19:18,1/10/2018 23:29,5.0,200, Information Exposure,nan
CVE-2015-9272,23/11/2018 19:16,5/10/2018 6:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-2468,23/11/2018 19:14,9/10/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-3999,23/11/2018 19:08,1/10/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3975,23/11/2018 19:08,1/10/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4001,23/11/2018 19:07,1/10/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3998,23/11/2018 19:07,1/10/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3982,23/11/2018 19:07,1/10/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4000,23/11/2018 19:06,1/10/2018 20:29,6.8,415, Double Free,nan
CVE-2018-3984,23/11/2018 19:05,1/10/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3978,23/11/2018 19:04,1/10/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-17573,23/11/2018 19:01,28/09/2018 5:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16299,23/11/2018 18:58,24/09/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17074,23/11/2018 18:53,16/09/2018 2:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-17440,23/11/2018 18:50,8/10/2018 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-13258,23/11/2018 18:24,4/10/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-6262,23/11/2018 18:08,2/10/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-11982,23/11/2018 18:07,20/09/2018 13:29,8.3,415, Double Free,nan
CVE-2018-11292,23/11/2018 17:46,20/09/2018 13:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16382,23/11/2018 17:43,3/09/2018 2:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-1083,23/11/2018 17:23,12/09/2018 14:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1084,23/11/2018 17:18,12/09/2018 14:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1085,23/11/2018 16:57,12/09/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16968,23/11/2018 16:44,26/09/2018 21:29,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16969,23/11/2018 16:43,26/09/2018 21:29,4.0,200, Information Exposure,nan
CVE-2018-0597,23/11/2018 16:27,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-11287,23/11/2018 16:23,20/09/2018 13:29,10.0,20, Improper Input Validation,nan
CVE-2016-4003,23/11/2018 16:21,12/04/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11285,23/11/2018 16:17,20/09/2018 13:29,9.3,125, Out-of-bounds Read,nan
CVE-2018-11269,23/11/2018 16:12,20/09/2018 13:29,7.2,129, Improper Validation of Array Index,nan
CVE-2013-2134,23/11/2018 15:54,16/07/2013 18:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-18302,23/11/2018 15:51,20/09/2018 13:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-18301,23/11/2018 15:49,20/09/2018 13:29,4.9,476, NULL Pointer Dereference,nan
CVE-2013-2135,23/11/2018 15:49,16/07/2013 18:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5169,23/11/2018 15:46,25/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1156,23/11/2018 15:43,23/08/2018 19:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17442,23/11/2018 15:02,8/10/2018 16:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-17443,23/11/2018 14:56,8/10/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0391,23/11/2018 14:36,8/01/2012 15:55,9.3,20, Improper Input Validation,nan
CVE-2018-18069,23/11/2018 14:29,8/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17154,23/11/2018 14:16,28/09/2018 13:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-2466,23/11/2018 14:14,9/10/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17155,23/11/2018 14:08,28/09/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-18029,23/11/2018 14:07,9/10/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18082,23/11/2018 13:52,9/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15608,23/11/2018 13:08,26/09/2018 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8690,22/11/2018 11:29,15/02/2017 19:59,4.3,476, NULL Pointer Dereference,nan
CVE-2015-5221,22/11/2018 11:29,25/07/2017 18:29,4.3,416, Use After Free,nan
CVE-2015-5203,22/11/2018 11:29,2/08/2017 19:29,4.3,415, Double Free,nan
CVE-2018-18084,21/11/2018 23:50,9/10/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18075,21/11/2018 23:50,9/10/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17428,21/11/2018 23:33,3/10/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17562,21/11/2018 23:32,3/10/2018 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9493,21/11/2018 23:28,2/10/2018 19:29,2.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17852,21/11/2018 23:24,1/10/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17831,21/11/2018 23:23,1/10/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17796,21/11/2018 23:19,30/09/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17575,21/11/2018 23:18,28/09/2018 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14956,21/11/2018 23:13,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7107,21/11/2018 23:11,27/09/2018 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3906,21/11/2018 23:10,21/09/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18198,21/11/2018 22:08,9/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17441,21/11/2018 22:05,8/10/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18200,21/11/2018 21:43,9/10/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18199,21/11/2018 21:42,9/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18193,21/11/2018 21:30,9/10/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-18194,21/11/2018 21:29,9/10/2018 20:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18196,21/11/2018 21:24,9/10/2018 20:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-18191,21/11/2018 21:23,9/10/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18192,21/11/2018 21:22,9/10/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-18242,21/11/2018 21:07,11/10/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18215,21/11/2018 21:06,11/10/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18210,21/11/2018 21:03,10/10/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18209,21/11/2018 21:00,10/10/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18307,21/11/2018 20:58,16/10/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12818,21/11/2018 20:29,17/10/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12819,21/11/2018 20:28,17/10/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12820,21/11/2018 20:27,17/10/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12821,21/11/2018 20:26,17/10/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12816,21/11/2018 20:25,17/10/2018 18:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-17341,21/11/2018 20:22,23/09/2018 5:29,6.8,287, Improper Authentication,nan
CVE-2018-17019,21/11/2018 20:00,13/09/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-17102,21/11/2018 19:57,16/09/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1198,21/11/2018 19:53,17/09/2018 16:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-17237,21/11/2018 18:50,20/09/2018 6:29,4.3,369, Divide By Zero,nan
CVE-2018-17233,21/11/2018 18:50,20/09/2018 6:29,4.3,369, Divide By Zero,nan
CVE-2018-17073,21/11/2018 18:30,16/09/2018 2:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-17292,21/11/2018 18:24,21/09/2018 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-6557,21/11/2018 18:15,21/08/2018 16:29,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-17293,21/11/2018 18:09,21/09/2018 7:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-16586,21/11/2018 18:00,28/09/2018 0:29,4.3,20, Improper Input Validation,nan
CVE-2018-16587,21/11/2018 17:55,28/09/2018 0:29,5.8,20, Improper Input Validation,nan
CVE-2018-16292,21/11/2018 17:36,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-16294,21/11/2018 17:35,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-16293,21/11/2018 17:35,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-16296,21/11/2018 17:34,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-16295,21/11/2018 17:34,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-16297,21/11/2018 17:33,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-16291,21/11/2018 17:33,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2017-12574,21/11/2018 16:23,24/08/2018 19:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-17215,21/11/2018 15:54,26/09/2018 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2855,21/11/2018 15:46,19/09/2018 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8856,21/11/2018 14:49,26/09/2018 19:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-16971,21/11/2018 14:11,12/09/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-16970,21/11/2018 14:09,12/09/2018 20:29,4.0,538, File and Directory Information Exposure,nan
CVE-2018-0674,20/11/2018 21:28,4/09/2018 13:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-0675,20/11/2018 21:27,4/09/2018 13:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-16793,20/11/2018 21:06,21/09/2018 16:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-11762,20/11/2018 21:02,19/09/2018 14:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8393,20/11/2018 21:01,13/09/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8392,20/11/2018 20:57,13/09/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18347,20/11/2018 20:55,12/09/2018 15:29,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-0658,20/11/2018 20:41,7/09/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2018-0657,20/11/2018 20:35,7/09/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0940,20/11/2018 20:31,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-0924,20/11/2018 20:31,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2015-2420,20/11/2018 20:30,15/08/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0012,20/11/2018 20:29,11/02/2015 3:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-17365,20/11/2018 20:01,26/09/2018 21:29,6.4,20, Improper Input Validation,nan
CVE-2018-17566,20/11/2018 19:57,26/09/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17568,20/11/2018 19:51,26/09/2018 22:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-9496,20/11/2018 19:27,2/10/2018 19:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-16794,20/11/2018 19:27,18/09/2018 21:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-17104,20/11/2018 19:26,16/09/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9497,20/11/2018 19:25,2/10/2018 19:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-2874,20/11/2018 19:25,17/09/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-9498,20/11/2018 19:24,2/10/2018 19:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-2875,20/11/2018 19:14,19/09/2018 16:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8433,20/11/2018 19:12,13/09/2018 0:29,1.9,200, Information Exposure,nan
CVE-2017-2878,20/11/2018 19:10,19/09/2018 16:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9499,20/11/2018 19:09,2/10/2018 19:29,4.9,200, Information Exposure,nan
CVE-2018-9502,20/11/2018 18:59,2/10/2018 19:29,6.1,125, Out-of-bounds Read,nan
CVE-2017-2879,20/11/2018 18:59,19/09/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9503,20/11/2018 18:52,2/10/2018 19:29,7.8,125, Out-of-bounds Read,nan
CVE-2018-9505,20/11/2018 18:50,2/10/2018 19:29,6.1,125, Out-of-bounds Read,nan
CVE-2018-8464,20/11/2018 18:49,13/09/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2876,20/11/2018 18:43,19/09/2018 18:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9506,20/11/2018 18:39,2/10/2018 19:29,6.1,125, Out-of-bounds Read,nan
CVE-2018-9507,20/11/2018 18:34,2/10/2018 19:29,6.1,125, Out-of-bounds Read,nan
CVE-2018-9508,20/11/2018 18:32,2/10/2018 19:29,6.1,125, Out-of-bounds Read,nan
CVE-2018-8425,20/11/2018 18:32,13/09/2018 0:29,4.3,20, Improper Input Validation,nan
CVE-2018-8366,20/11/2018 18:30,13/09/2018 0:29,2.6,200, Information Exposure,nan
CVE-2018-9513,20/11/2018 18:17,2/10/2018 19:29,7.2,415, Double Free,nan
CVE-2017-15407,20/11/2018 18:13,28/08/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-6033,20/11/2018 18:11,25/09/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-6048,20/11/2018 18:10,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-16456,20/11/2018 18:10,4/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7922,20/11/2018 18:09,12/09/2018 15:29,9.3,20, Improper Input Validation,nan
CVE-2018-7923,20/11/2018 18:08,12/09/2018 15:29,9.3,20, Improper Input Validation,nan
CVE-2018-6047,20/11/2018 18:03,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6050,20/11/2018 17:46,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6052,20/11/2018 17:45,25/09/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-16326,20/11/2018 17:38,4/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6053,20/11/2018 17:36,25/09/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-6031,20/11/2018 17:34,25/09/2018 14:29,6.8,416, Use After Free,nan
CVE-2018-8444,20/11/2018 17:04,13/09/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-6054,20/11/2018 17:02,25/09/2018 14:29,6.8,416, Use After Free,nan
CVE-2018-9074,20/11/2018 16:57,28/09/2018 20:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6055,20/11/2018 16:33,25/09/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-17942,20/11/2018 16:25,3/10/2018 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6119,20/11/2018 16:20,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-9504,20/11/2018 16:04,2/10/2018 19:29,8.3,787, Out-of-bounds Write,nan
CVE-2018-9510,20/11/2018 16:03,2/10/2018 19:29,6.1,200, Information Exposure,nan
CVE-2018-9509,20/11/2018 16:03,2/10/2018 19:29,6.1,200, Information Exposure,nan
CVE-2018-2465,20/11/2018 15:57,11/09/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-3946,20/11/2018 15:56,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-3959,20/11/2018 15:55,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3964,20/11/2018 14:24,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-16453,20/11/2018 13:54,4/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16455,20/11/2018 13:36,4/10/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16050,19/11/2018 23:40,3/10/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17849,19/11/2018 23:26,4/10/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9273,19/11/2018 23:20,7/10/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4451,19/11/2018 20:40,21/09/2018 17:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-17553,19/11/2018 20:29,3/10/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-17552,19/11/2018 20:27,3/10/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3965,19/11/2018 20:20,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-16974,19/11/2018 20:09,12/09/2018 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16975,19/11/2018 20:05,12/09/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-8439,19/11/2018 19:55,13/09/2018 0:29,7.7,20, Improper Input Validation,nan
CVE-2018-3650,19/11/2018 19:39,1/08/2018 15:29,4.6,20, Improper Input Validation,nan
CVE-2014-5337,19/11/2018 19:38,29/08/2014 13:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-16819,19/11/2018 18:44,18/09/2018 21:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8446,19/11/2018 18:41,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-17781,19/11/2018 18:26,29/09/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-2856,19/11/2018 18:20,17/09/2018 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2857,19/11/2018 18:19,17/09/2018 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3943,19/11/2018 18:07,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3944,19/11/2018 18:06,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3957,19/11/2018 18:05,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3958,19/11/2018 17:59,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3960,19/11/2018 17:56,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3961,19/11/2018 17:41,2/10/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-3962,19/11/2018 17:38,2/10/2018 21:29,6.0,416, Use After Free,nan
CVE-2018-1685,19/11/2018 17:34,21/09/2018 13:29,4.9,200, Information Exposure,nan
CVE-2018-3966,19/11/2018 17:30,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2010-3084,19/11/2018 17:26,29/09/2010 17:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3967,19/11/2018 17:21,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2010-2946,19/11/2018 17:20,29/09/2010 17:00,2.1,20, Improper Input Validation,nan
CVE-2018-17126,19/11/2018 17:18,17/09/2018 4:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17125,19/11/2018 17:12,17/09/2018 4:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15834,19/11/2018 16:53,12/09/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3993,19/11/2018 16:49,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-3995,19/11/2018 16:47,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-3942,19/11/2018 16:42,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-3941,19/11/2018 16:42,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-3945,19/11/2018 16:40,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-15749,19/11/2018 16:38,6/09/2018 23:29,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2018-3994,19/11/2018 16:29,3/10/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-12608,19/11/2018 16:29,10/09/2018 17:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-3992,19/11/2018 16:25,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-3996,19/11/2018 16:24,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-0649,19/11/2018 16:23,7/09/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-3997,19/11/2018 16:22,8/10/2018 16:29,6.8,416, Use After Free,nan
CVE-2013-7203,19/11/2018 15:08,21/09/2018 17:29,2.1,200, Information Exposure,nan
CVE-2018-16948,19/11/2018 14:47,12/09/2018 1:29,5.0,200, Information Exposure,nan
CVE-2018-8420,19/11/2018 14:20,13/09/2018 0:29,9.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8409,19/11/2018 14:06,13/09/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-17946,16/11/2018 21:21,3/10/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17876,16/11/2018 21:19,4/10/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8475,16/11/2018 21:16,13/09/2018 0:29,6.8,20, Improper Input Validation,nan
CVE-2018-17947,16/11/2018 21:15,3/10/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17886,16/11/2018 21:12,2/10/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17596,16/11/2018 21:06,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17595,16/11/2018 21:02,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17868,16/11/2018 21:00,1/10/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9081,16/11/2018 20:51,28/09/2018 20:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17884,16/11/2018 20:21,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8331,16/11/2018 19:53,13/09/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12806,16/11/2018 19:11,29/08/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5005,16/11/2018 19:10,6/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7103,16/11/2018 17:54,27/09/2018 18:29,10.0,20, Improper Input Validation,nan
CVE-2018-7104,16/11/2018 17:49,27/09/2018 18:29,10.0,20, Improper Input Validation,nan
CVE-2018-2460,16/11/2018 17:31,11/09/2018 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-2458,16/11/2018 17:29,11/09/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-2457,16/11/2018 17:25,11/09/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-16549,16/11/2018 16:56,5/09/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0718,16/11/2018 16:44,26/05/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2657,16/11/2018 16:42,8/07/2010 12:54,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2067,16/11/2018 16:41,24/06/2010 12:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1817,16/11/2018 16:40,9/09/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1815,16/11/2018 16:40,9/09/2010 22:00,6.8,399, Resource Management Errors,nan
CVE-2010-1814,16/11/2018 16:40,9/09/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1813,16/11/2018 16:40,9/09/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1812,16/11/2018 16:40,9/09/2010 22:00,6.8,399, Resource Management Errors,nan
CVE-2010-1811,16/11/2018 16:40,9/09/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1754,16/11/2018 16:39,22/06/2010 20:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1753,16/11/2018 16:39,22/06/2010 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1752,16/11/2018 16:39,22/06/2010 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1757,16/11/2018 16:38,22/06/2010 20:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-1755,16/11/2018 16:38,22/06/2010 20:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1751,16/11/2018 16:38,22/06/2010 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-18711,16/11/2018 16:29,29/10/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1781,16/11/2018 16:29,9/09/2010 22:00,6.8,399, Resource Management Errors,nan
CVE-2010-1230,16/11/2018 16:28,1/04/2010 22:30,10.0,200, Information Exposure,nan
CVE-2018-18712,16/11/2018 16:26,29/10/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1086,16/11/2018 16:17,6/04/2010 22:30,7.8,399, Resource Management Errors,nan
CVE-2010-1085,16/11/2018 16:16,6/04/2010 22:30,7.1,189, Numeric Errors,nan
CVE-2010-0650,16/11/2018 16:13,18/02/2010 18:00,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0410,16/11/2018 16:06,22/02/2010 13:00,4.9,399, Resource Management Errors,nan
CVE-2010-0291,16/11/2018 15:57,15/02/2010 18:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0003,16/11/2018 15:53,26/01/2010 18:30,5.4,200, Information Exposure,nan
CVE-2009-4537,16/11/2018 15:52,12/01/2010 17:30,7.8,20, Improper Input Validation,nan
CVE-2009-4536,16/11/2018 15:51,12/01/2010 17:30,7.8,189, Numeric Errors,nan
CVE-2009-4031,16/11/2018 15:49,29/11/2009 13:07,7.8,20, Improper Input Validation,nan
CVE-2009-3725,16/11/2018 15:46,6/11/2009 15:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-3937,16/11/2018 15:45,14/08/2018 19:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-3002,16/11/2018 15:43,28/08/2009 15:30,4.9,200, Information Exposure,nan
CVE-2009-3001,16/11/2018 15:40,28/08/2009 15:30,4.9,200, Information Exposure,nan
CVE-2009-2797,16/11/2018 15:38,10/09/2009 21:30,5.0,200, Information Exposure,nan
CVE-2009-2795,16/11/2018 15:38,10/09/2009 21:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2584,16/11/2018 15:35,23/07/2009 20:30,7.2,189, Numeric Errors,nan
CVE-2018-0644,16/11/2018 15:34,7/09/2018 14:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7230,16/11/2018 15:29,8/10/2014 19:55,2.1,200, Information Exposure,nan
CVE-2014-7231,16/11/2018 15:28,8/10/2014 19:55,2.1,200, Information Exposure,nan
CVE-2016-2140,16/11/2018 15:17,12/04/2016 14:59,3.5,200, Information Exposure,nan
CVE-2015-8749,16/11/2018 15:17,15/01/2016 19:59,4.3,200, Information Exposure,nan
CVE-2015-7713,16/11/2018 15:17,29/10/2015 20:59,5.0,254, 7PK – Security Features,nan
CVE-2015-7548,16/11/2018 15:11,12/01/2016 19:59,2.1,200, Information Exposure,nan
CVE-2015-3280,16/11/2018 15:11,26/10/2015 17:59,6.8,399, Resource Management Errors,nan
CVE-2015-3241,16/11/2018 15:10,8/09/2015 15:59,6.8,399, Resource Management Errors,nan
CVE-2015-0259,16/11/2018 15:07,1/04/2015 14:59,5.1,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-8750,16/11/2018 15:06,15/10/2014 14:55,6.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3708,16/11/2018 15:04,31/10/2014 14:55,4.0,399, Resource Management Errors,nan
CVE-2014-3608,16/11/2018 14:59,6/10/2014 14:55,2.7,399, Resource Management Errors,nan
CVE-2013-7048,16/11/2018 14:57,23/01/2014 21:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6437,16/11/2018 14:55,6/03/2014 15:55,4.0,399, Resource Management Errors,nan
CVE-2013-4202,16/11/2018 14:50,16/09/2013 19:14,4.3,399, Resource Management Errors,nan
CVE-2013-2256,16/11/2018 14:48,16/09/2013 19:14,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-14815,16/11/2018 14:47,26/09/2018 20:29,7.5,787, Out-of-bounds Write,nan
CVE-2013-0282,16/11/2018 14:45,12/04/2013 22:55,5.0,287, Improper Authentication,nan
CVE-2018-16831,16/11/2018 14:38,11/09/2018 13:29,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0270,16/11/2018 14:38,12/04/2013 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11581,16/11/2018 14:29,1/06/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17826,16/11/2018 14:26,1/10/2018 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15957,16/11/2018 14:17,25/09/2018 13:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-15958,16/11/2018 14:14,25/09/2018 13:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-15959,16/11/2018 14:11,25/09/2018 13:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-15960,16/11/2018 14:07,25/09/2018 13:29,6.4,20, Improper Input Validation,nan
CVE-2018-15962,16/11/2018 14:04,25/09/2018 13:29,5.0,200, Information Exposure,nan
CVE-2012-4457,16/11/2018 14:01,9/10/2012 15:55,4.0,287, Improper Authentication,nan
CVE-2018-15964,16/11/2018 14:00,25/09/2018 13:29,5.0,200, Information Exposure,nan
CVE-2012-4456,16/11/2018 13:59,9/10/2012 15:55,7.5,287, Improper Authentication,nan
CVE-2011-4596,16/11/2018 13:55,23/12/2011 22:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-18938,16/11/2018 13:54,5/11/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15365,16/11/2018 12:54,28/09/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17795,15/11/2018 20:31,30/09/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17217,15/11/2018 20:27,1/10/2018 1:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-18939,15/11/2018 20:06,5/11/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17835,15/11/2018 20:05,1/10/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17587,15/11/2018 20:04,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3517,15/11/2018 20:03,7/08/2014 11:13,4.3,200, Information Exposure,nan
CVE-2018-17830,15/11/2018 20:01,1/10/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17589,15/11/2018 19:59,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17588,15/11/2018 19:59,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17216,15/11/2018 19:42,1/10/2018 1:29,4.0,200, Information Exposure,nan
CVE-2013-4428,15/11/2018 19:34,27/10/2013 0:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-17141,15/11/2018 19:30,21/09/2018 17:29,7.5,20, Improper Input Validation,nan
CVE-2018-6038,15/11/2018 19:22,25/09/2018 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-6036,15/11/2018 19:16,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-17593,15/11/2018 18:55,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17591,15/11/2018 18:55,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17590,15/11/2018 18:55,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17594,15/11/2018 18:54,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0440,15/11/2018 18:52,3/02/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17312,15/11/2018 18:51,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17310,15/11/2018 18:51,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17314,15/11/2018 18:48,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17311,15/11/2018 18:47,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17316,15/11/2018 18:46,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17313,15/11/2018 18:46,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17315,15/11/2018 18:45,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17309,15/11/2018 18:45,26/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6041,15/11/2018 18:40,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6042,15/11/2018 18:38,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-17571,15/11/2018 18:35,28/09/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4185,15/11/2018 18:34,29/10/2013 22:55,4.0,310, Cryptographic Issues,nan
CVE-2018-6051,15/11/2018 18:31,25/09/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17053,15/11/2018 18:27,3/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17056,15/11/2018 18:25,28/09/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17054,15/11/2018 18:25,3/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17556,15/11/2018 18:22,26/09/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15606,15/11/2018 18:18,26/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17874,15/11/2018 18:17,1/10/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17832,15/11/2018 18:16,1/10/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16277,15/11/2018 18:14,28/09/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6043,15/11/2018 18:13,25/09/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2009-4608,15/11/2018 18:13,13/01/2010 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0247,15/11/2018 17:56,24/02/2013 19:55,5.0,399, Resource Management Errors,nan
CVE-2017-2792,15/11/2018 17:47,7/09/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16657,15/11/2018 17:32,7/09/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2018-17369,15/11/2018 17:29,23/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16131,15/11/2018 17:07,30/08/2018 13:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-17407,15/11/2018 16:11,23/09/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9044,15/11/2018 15:52,7/09/2018 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-6039,15/11/2018 15:41,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6046,15/11/2018 15:39,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6035,15/11/2018 14:22,25/09/2018 14:29,6.8,200, Information Exposure,nan
CVE-2018-16999,15/11/2018 14:21,13/09/2018 16:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-6037,15/11/2018 14:18,25/09/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-17069,15/11/2018 14:18,15/09/2018 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17070,15/11/2018 14:17,15/09/2018 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6045,15/11/2018 14:12,25/09/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-17379,15/11/2018 13:09,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17380,15/11/2018 13:03,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17382,15/11/2018 13:02,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17383,15/11/2018 12:55,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17235,14/11/2018 22:14,20/09/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-17394,14/11/2018 21:40,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17391,14/11/2018 21:37,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17385,14/11/2018 21:35,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17397,14/11/2018 21:34,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17377,14/11/2018 21:33,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17376,14/11/2018 21:30,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15965,14/11/2018 21:15,25/09/2018 13:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-6320,14/11/2018 21:03,6/09/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-15483,14/11/2018 20:50,7/09/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2018-16782,14/11/2018 20:48,10/09/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15886,14/11/2018 20:40,10/09/2018 13:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17574,14/11/2018 20:16,28/09/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17384,14/11/2018 19:54,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-18735,14/11/2018 19:46,29/10/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2795,14/11/2018 19:34,7/09/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000030,14/11/2018 19:34,5/09/2018 17:29,7.5,295, Improper Certificate Validation,nan
CVE-2012-1585,14/11/2018 18:35,17/08/2012 0:55,4.0,399, Resource Management Errors,nan
CVE-2018-17378,14/11/2018 18:29,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16590,14/11/2018 18:27,6/09/2018 23:29,10.0,287, Improper Authentication,nan
CVE-2018-16307,14/11/2018 18:19,5/09/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-17375,14/11/2018 18:14,28/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16710,14/11/2018 18:02,7/09/2018 19:29,6.4,200, Information Exposure,nan
CVE-2018-11263,14/11/2018 17:47,6/09/2018 14:29,5.8,129, Improper Validation of Array Index,nan
CVE-2018-17607,14/11/2018 17:37,28/09/2018 9:29,7.5,416, Use After Free,nan
CVE-2018-17608,14/11/2018 17:36,28/09/2018 9:29,7.5,416, Use After Free,nan
CVE-2018-17609,14/11/2018 17:35,28/09/2018 9:29,7.5,416, Use After Free,nan
CVE-2018-17610,14/11/2018 17:33,28/09/2018 9:29,7.5,416, Use After Free,nan
CVE-2018-17611,14/11/2018 17:14,28/09/2018 9:29,7.5,416, Use After Free,nan
CVE-2018-16704,14/11/2018 17:13,7/09/2018 17:29,4.0,200, Information Exposure,nan
CVE-2015-9270,14/11/2018 16:45,1/10/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-18742,14/11/2018 16:40,29/10/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14398,14/11/2018 16:10,7/09/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-16651,14/11/2018 15:44,7/09/2018 5:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-5238,14/11/2018 15:39,22/08/2018 17:29,6.8,427, Uncontrolled Search Path Element,nan
CVE-2018-16606,14/11/2018 15:00,6/09/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-16283,14/11/2018 14:50,24/09/2018 22:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16604,14/11/2018 14:38,6/09/2018 16:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1000773,14/11/2018 14:10,6/09/2018 16:29,6.5,20, Improper Input Validation,nan
CVE-2018-18734,13/11/2018 21:28,29/10/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-17065,13/11/2018 21:15,15/09/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17067,13/11/2018 21:11,15/09/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0643,13/11/2018 20:36,7/09/2018 14:29,7.4,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0648,13/11/2018 20:19,7/09/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2015-8298,13/11/2018 19:51,24/09/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17410,13/11/2018 19:19,26/09/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15484,13/11/2018 19:08,7/09/2018 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15485,13/11/2018 19:06,7/09/2018 22:29,6.4,287, Improper Authentication,nan
CVE-2018-16314,13/11/2018 17:48,1/09/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16275,13/11/2018 17:42,31/08/2018 13:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16779,13/11/2018 17:17,10/09/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17320,13/11/2018 17:10,21/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0006,13/11/2018 16:41,26/01/2010 18:30,7.1,476, NULL Pointer Dereference,nan
CVE-2018-6034,13/11/2018 16:38,25/09/2018 14:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-16343,13/11/2018 16:09,2/09/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14769,13/11/2018 16:07,5/09/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16344,13/11/2018 16:01,2/09/2018 18:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16345,13/11/2018 15:56,2/09/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16375,13/11/2018 15:25,3/09/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0664,13/11/2018 15:16,4/09/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2018-6923,13/11/2018 15:09,4/09/2018 18:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-6032,13/11/2018 15:00,25/09/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-16147,13/11/2018 14:53,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16148,13/11/2018 14:41,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0642,13/11/2018 14:25,7/09/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7540,13/11/2018 11:29,27/02/2018 19:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2018-15470,13/11/2018 11:29,17/08/2018 18:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-8817,13/11/2018 11:29,29/11/2017 18:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-8816,13/11/2018 11:29,29/11/2017 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-1000257,13/11/2018 11:29,31/10/2017 21:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000254,13/11/2018 11:29,6/10/2017 13:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000101,13/11/2018 11:29,5/10/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000100,13/11/2018 11:29,5/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2016-9586,13/11/2018 11:29,23/04/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8624,13/11/2018 11:29,31/07/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2016-8622,13/11/2018 11:29,31/07/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2016-8621,13/11/2018 11:29,31/07/2018 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2016-8618,13/11/2018 11:29,31/07/2018 21:29,7.5,415, Double Free,nan
CVE-2016-8617,13/11/2018 11:29,31/07/2018 22:29,4.4,787, Out-of-bounds Write,nan
CVE-2016-8615,13/11/2018 11:29,1/08/2018 6:29,5.0,254, 7PK – Security Features,nan
CVE-2016-7167,13/11/2018 11:29,7/10/2016 14:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-7141,13/11/2018 11:29,3/10/2016 21:59,5.0,287, Improper Authentication,nan
CVE-2016-5421,13/11/2018 11:29,10/08/2016 14:59,7.5,416, Use After Free,nan
CVE-2016-5420,13/11/2018 11:29,10/08/2016 14:59,5.0,285, Improper Authorization,nan
CVE-2016-5419,13/11/2018 11:29,10/08/2016 14:59,5.0,310, Cryptographic Issues,nan
CVE-2017-15818,12/11/2018 11:29,18/09/2018 18:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-11645,11/11/2018 11:29,1/06/2018 12:29,5.0,200, Information Exposure,nan
CVE-2016-7567,10/11/2018 11:29,23/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13111,9/11/2018 21:44,21/09/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-3904,9/11/2018 21:06,27/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3918,9/11/2018 21:02,27/08/2018 15:29,6.4,707, Improper Enforcement of Message or Data Structure,nan
CVE-2018-17436,9/11/2018 21:02,24/09/2018 14:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-17438,9/11/2018 20:56,24/09/2018 14:29,4.3,369, Divide By Zero,nan
CVE-2018-17439,9/11/2018 20:55,24/09/2018 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3927,9/11/2018 20:40,27/08/2018 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-17361,9/11/2018 20:40,23/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3926,9/11/2018 20:31,28/08/2018 17:29,4.9,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-12511,9/11/2018 20:16,21/09/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-17366,9/11/2018 20:13,23/09/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-3895,9/11/2018 20:11,28/08/2018 19:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3908,9/11/2018 20:10,28/08/2018 19:29,6.4,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2018-3916,9/11/2018 20:08,28/08/2018 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17432,9/11/2018 20:04,24/09/2018 14:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-17433,9/11/2018 19:59,24/09/2018 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17050,9/11/2018 19:54,21/09/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-3864,9/11/2018 19:49,20/09/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3865,9/11/2018 19:40,20/09/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3873,9/11/2018 19:34,21/09/2018 14:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3874,9/11/2018 19:26,21/09/2018 14:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3876,9/11/2018 19:24,21/09/2018 14:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15904,9/11/2018 19:22,27/08/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14592,9/11/2018 19:19,20/09/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17283,9/11/2018 19:12,21/09/2018 3:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3893,9/11/2018 19:05,27/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17243,9/11/2018 19:05,20/09/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3877,9/11/2018 19:02,21/09/2018 14:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17129,9/11/2018 18:59,17/09/2018 4:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-17110,9/11/2018 18:58,17/09/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9048,9/11/2018 18:34,10/09/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11276,9/11/2018 18:24,18/09/2018 18:29,4.6,415, Double Free,nan
CVE-2018-11278,9/11/2018 18:22,18/09/2018 18:29,6.6,125, Out-of-bounds Read,nan
CVE-2017-15825,9/11/2018 18:16,18/09/2018 18:29,4.6,125, Out-of-bounds Read,nan
CVE-2017-15828,9/11/2018 18:04,18/09/2018 18:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-4133,9/11/2018 18:03,3/04/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4117,9/11/2018 17:58,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2018-11281,9/11/2018 17:56,18/09/2018 18:29,7.2,416, Use After Free,nan
CVE-2017-15844,9/11/2018 17:56,18/09/2018 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-17002,9/11/2018 17:55,21/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11265,9/11/2018 17:55,18/09/2018 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17001,9/11/2018 17:54,21/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17322,9/11/2018 17:53,22/09/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17003,9/11/2018 17:53,21/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11270,9/11/2018 17:53,18/09/2018 18:29,4.6,415, Double Free,nan
CVE-2018-16965,9/11/2018 17:52,21/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16833,9/11/2018 17:50,21/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16346,9/11/2018 17:48,2/09/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11273,9/11/2018 17:47,18/09/2018 18:29,4.6,415, Double Free,nan
CVE-2018-9282,9/11/2018 17:45,21/09/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11286,9/11/2018 17:43,18/09/2018 18:29,4.6,416, Use After Free,nan
CVE-2018-11274,9/11/2018 17:43,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11297,9/11/2018 17:38,18/09/2018 18:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-11298,9/11/2018 17:36,18/09/2018 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11300,9/11/2018 17:35,18/09/2018 18:29,4.6,416, Use After Free,nan
CVE-2018-11352,9/11/2018 17:34,21/09/2018 16:29,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11301,9/11/2018 17:33,18/09/2018 18:29,4.6,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-11883,9/11/2018 17:30,19/09/2018 14:29,7.2,129, Improper Validation of Array Index,nan
CVE-2018-11886,9/11/2018 17:25,19/09/2018 14:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2018-2464,9/11/2018 17:16,11/09/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11293,9/11/2018 17:16,18/09/2018 18:29,3.3,125, Out-of-bounds Read,nan
CVE-2018-16955,9/11/2018 17:15,18/09/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11893,9/11/2018 17:14,19/09/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16953,9/11/2018 17:08,18/09/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16327,9/11/2018 17:02,1/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17140,9/11/2018 17:00,17/09/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17113,9/11/2018 16:55,17/09/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16316,9/11/2018 16:55,1/09/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17077,9/11/2018 16:41,16/09/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10763,9/11/2018 16:37,14/09/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17051,9/11/2018 16:36,14/09/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11295,9/11/2018 16:30,18/09/2018 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-11302,9/11/2018 16:29,18/09/2018 18:29,4.6,20, Improper Input Validation,nan
CVE-2018-11818,9/11/2018 16:24,18/09/2018 18:29,4.4,416, Use After Free,nan
CVE-2018-11898,9/11/2018 16:22,19/09/2018 14:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-17044,9/11/2018 16:21,14/09/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17049,9/11/2018 16:20,14/09/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11296,9/11/2018 16:19,18/09/2018 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-8470,9/11/2018 16:18,13/09/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16729,9/11/2018 16:17,12/09/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2452,9/11/2018 16:16,11/09/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16805,9/11/2018 16:06,10/09/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11836,9/11/2018 16:06,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16775,9/11/2018 15:59,10/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11842,9/11/2018 15:55,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15476,9/11/2018 15:51,30/08/2018 17:29,9.3,295, Improper Certificate Validation,nan
CVE-2018-11843,9/11/2018 15:49,18/09/2018 18:29,7.2,416, Use After Free,nan
CVE-2018-15477,9/11/2018 15:46,30/08/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6258,9/11/2018 15:41,31/08/2018 20:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-15479,9/11/2018 15:30,30/08/2018 17:29,6.4,287, Improper Authentication,nan
CVE-2018-16655,9/11/2018 15:06,7/09/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14689,9/11/2018 14:56,21/09/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14688,9/11/2018 14:56,21/09/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14691,9/11/2018 14:55,21/09/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14690,9/11/2018 14:55,21/09/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11852,9/11/2018 14:43,18/09/2018 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-15514,9/11/2018 14:23,1/09/2018 1:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-11863,9/11/2018 14:22,18/09/2018 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14903,8/11/2018 22:06,30/08/2018 17:29,5.0,346, Origin Validation Error,nan
CVE-2018-14902,8/11/2018 21:35,30/08/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-14900,8/11/2018 21:15,30/08/2018 17:29,5.0,417, Channel and Path Errors,nan
CVE-2018-14899,8/11/2018 21:07,30/08/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17076,8/11/2018 21:03,16/09/2018 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15563,8/11/2018 20:49,2/10/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15503,8/11/2018 20:49,18/08/2018 2:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-14840,8/11/2018 20:49,2/08/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5543,8/11/2018 20:49,20/01/2017 8:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9120,8/11/2018 20:49,10/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17098,8/11/2018 20:39,16/09/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2336,8/11/2018 20:39,10/07/2009 21:00,5.0,16, Configuration,nan
CVE-2009-1895,8/11/2018 20:39,16/07/2009 15:30,7.2,16, Configuration,nan
CVE-2009-2335,8/11/2018 20:38,10/07/2009 21:00,5.0,16, Configuration,nan
CVE-2009-1888,8/11/2018 20:37,25/06/2009 1:30,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-0899,8/11/2018 20:37,3/06/2009 17:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-6913,8/11/2018 20:29,18/09/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1633,8/11/2018 20:29,28/05/2009 20:30,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1492,8/11/2018 20:28,30/04/2009 20:30,9.3,399, Resource Management Errors,nan
CVE-2009-1061,8/11/2018 20:28,25/03/2009 1:30,9.3,20, Improper Input Validation,nan
CVE-2009-0193,8/11/2018 20:27,25/03/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16786,8/11/2018 20:25,21/09/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0927,8/11/2018 20:25,19/03/2009 10:30,9.3,20, Improper Input Validation,nan
CVE-2018-16784,8/11/2018 20:21,21/09/2018 15:29,6.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2009-0614,8/11/2018 20:21,26/02/2009 16:17,9.0,287, Improper Authentication,nan
CVE-2009-0143,8/11/2018 20:21,14/03/2009 18:30,4.3,200, Information Exposure,nan
CVE-2009-0322,8/11/2018 20:20,28/01/2009 18:30,4.9,399, Resource Management Errors,nan
CVE-2008-6125,8/11/2018 20:20,13/02/2009 1:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6124,8/11/2018 20:20,13/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0029,8/11/2018 20:19,15/01/2009 17:30,7.2,20, Improper Input Validation,nan
CVE-2008-5701,8/11/2018 20:13,22/12/2008 15:30,4.7,189, Numeric Errors,nan
CVE-2008-5513,8/11/2018 20:13,17/12/2008 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5511,8/11/2018 20:12,17/12/2008 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5508,8/11/2018 20:12,17/12/2008 23:30,4.3,20, Improper Input Validation,nan
CVE-2008-5507,8/11/2018 20:12,17/12/2008 23:30,6.0,200, Information Exposure,nan
CVE-2008-5506,8/11/2018 20:12,17/12/2008 23:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-5502,8/11/2018 20:11,17/12/2008 23:30,5.0,399, Resource Management Errors,nan
CVE-2008-5500,8/11/2018 20:10,17/12/2008 23:30,10.0,399, Resource Management Errors,nan
CVE-2018-11903,8/11/2018 20:08,19/09/2018 14:29,7.2,787, Out-of-bounds Write,nan
CVE-2008-5362,8/11/2018 20:08,8/12/2008 11:30,4.3,20, Improper Input Validation,nan
CVE-2008-5361,8/11/2018 20:06,8/12/2008 11:30,4.3,399, Resource Management Errors,nan
CVE-2008-5325,8/11/2018 20:05,5/12/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3573,8/11/2018 19:57,19/09/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3574,8/11/2018 19:53,19/09/2018 14:29,2.1,20, Improper Input Validation,nan
CVE-2018-5905,8/11/2018 19:49,19/09/2018 14:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-16132,8/11/2018 19:45,29/08/2018 22:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-17039,8/11/2018 19:42,14/09/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16115,8/11/2018 19:40,29/08/2018 22:29,6.4,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-17097,8/11/2018 19:35,16/09/2018 21:29,6.8,415, Double Free,nan
CVE-2018-17138,8/11/2018 19:17,17/09/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17762,8/11/2018 18:51,29/08/2018 19:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-13435,8/11/2018 18:43,16/08/2018 20:29,4.4,287, Improper Authentication,nan
CVE-2018-13434,8/11/2018 18:43,16/08/2018 20:29,4.4,287, Improper Authentication,nan
CVE-2018-13446,8/11/2018 18:40,16/08/2018 20:29,4.4,287, Improper Authentication,nan
CVE-2018-17338,8/11/2018 18:01,23/09/2018 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15121,8/11/2018 17:59,29/08/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14889,8/11/2018 17:56,21/09/2018 21:29,4.6,20, Improper Input Validation,nan
CVE-2018-17333,8/11/2018 17:52,22/09/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17334,8/11/2018 17:44,22/09/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17364,8/11/2018 17:40,23/09/2018 18:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12807,8/11/2018 17:28,29/08/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-5003,8/11/2018 17:23,29/08/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-13391,8/11/2018 16:20,28/08/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-13395,8/11/2018 16:17,28/08/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17401,8/11/2018 16:15,23/09/2018 22:29,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-17402,8/11/2018 15:59,23/09/2018 22:29,2.6,200, Information Exposure,nan
CVE-2018-15364,8/11/2018 15:10,30/08/2018 19:29,1.9,200, Information Exposure,nan
CVE-2017-15063,8/11/2018 15:01,6/10/2017 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-10795,8/11/2018 15:01,2/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8004,8/11/2018 14:13,29/08/2018 13:29,4.0,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2018-15884,8/11/2018 13:52,28/08/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15596,8/11/2018 13:19,28/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15897,8/11/2018 13:00,28/08/2018 21:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7506,8/11/2018 11:29,18/07/2017 15:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7431,8/11/2018 11:29,13/01/2017 16:59,5.0,20, Improper Input Validation,nan
CVE-2013-4517,8/11/2018 11:29,11/01/2014 1:55,4.3,399, Resource Management Errors,nan
CVE-2013-2210,8/11/2018 11:29,20/08/2013 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2156,8/11/2018 11:29,20/08/2013 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2155,8/11/2018 11:29,20/08/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-2154,8/11/2018 11:29,20/08/2013 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2153,8/11/2018 11:29,20/08/2013 22:55,4.3,310, Cryptographic Issues,nan
CVE-2018-16370,7/11/2018 21:19,3/09/2018 0:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1318,7/11/2018 20:31,29/08/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-14890,7/11/2018 20:22,21/09/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15571,7/11/2018 20:15,28/08/2018 17:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1000636,7/11/2018 19:42,20/08/2018 19:31,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1000665,7/11/2018 19:38,6/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17321,7/11/2018 19:36,22/09/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15396,7/11/2018 19:33,28/08/2018 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16822,7/11/2018 19:32,21/09/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12149,7/11/2018 19:23,12/09/2018 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15399,7/11/2018 19:22,28/08/2018 20:29,9.3,416, Use After Free,nan
CVE-2018-7789,7/11/2018 19:15,29/08/2018 20:29,7.8,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2018-17022,7/11/2018 19:12,13/09/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7795,7/11/2018 19:09,29/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17031,7/11/2018 19:06,14/09/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000669,7/11/2018 19:04,6/09/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15429,7/11/2018 19:02,28/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000670,7/11/2018 18:39,6/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15398,7/11/2018 18:32,28/08/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3897,7/11/2018 18:28,10/09/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3896,7/11/2018 18:28,10/09/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3875,7/11/2018 18:27,10/09/2018 19:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12150,7/11/2018 18:25,12/09/2018 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16670,7/11/2018 18:05,18/09/2018 20:29,5.0,287, Improper Authentication,nan
CVE-2017-15417,7/11/2018 18:01,28/08/2018 19:29,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16671,7/11/2018 17:54,18/09/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-15422,7/11/2018 17:54,28/08/2018 19:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-15416,7/11/2018 17:51,28/08/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17043,7/11/2018 17:44,14/09/2018 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3686,7/11/2018 17:36,12/09/2018 19:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-15885,7/11/2018 17:35,26/08/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-17020,7/11/2018 17:33,13/09/2018 19:29,7.8,20, Improper Input Validation,nan
CVE-2018-17021,7/11/2018 17:32,13/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17023,7/11/2018 17:30,13/09/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16286,7/11/2018 17:24,14/09/2018 21:29,5.0,287, Improper Authentication,nan
CVE-2018-16706,7/11/2018 17:21,14/09/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-17036,7/11/2018 17:11,14/09/2018 7:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-15895,7/11/2018 17:07,27/08/2018 4:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-16287,7/11/2018 16:59,14/09/2018 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16733,7/11/2018 16:44,8/09/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-17030,7/11/2018 16:41,14/09/2018 2:29,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12579,7/11/2018 16:21,20/08/2018 22:29,6.8,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-17034,7/11/2018 15:59,14/09/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17035,7/11/2018 15:57,14/09/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9264,7/11/2018 15:54,27/08/2018 4:29,7.5,20, Improper Input Validation,nan
CVE-2018-16288,7/11/2018 15:43,14/09/2018 21:29,7.8,200, Information Exposure,nan
CVE-2018-17061,7/11/2018 15:25,15/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17062,7/11/2018 15:04,16/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17085,7/11/2018 15:00,16/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17086,7/11/2018 14:59,16/09/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15839,7/11/2018 14:59,28/08/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17128,7/11/2018 14:58,17/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15419,7/11/2018 14:55,28/08/2018 19:29,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-16820,7/11/2018 13:52,18/09/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16607,7/11/2018 13:13,19/09/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17255,7/11/2018 13:11,20/09/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17230,7/11/2018 12:54,19/09/2018 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-17229,7/11/2018 12:53,19/09/2018 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16759,7/11/2018 12:47,9/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000050,7/11/2018 11:29,17/07/2017 13:18,5.0,476, NULL Pointer Dereference,nan
CVE-2016-4463,7/11/2018 11:29,8/07/2016 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1856,7/11/2018 11:29,15/08/2012 1:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-16141,6/11/2018 21:07,30/08/2018 5:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16761,6/11/2018 20:55,9/09/2018 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-16736,6/11/2018 20:45,9/09/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15668,6/11/2018 20:41,21/08/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-16363,6/11/2018 20:28,7/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6259,6/11/2018 20:14,31/08/2018 20:29,1.9,200, Information Exposure,nan
CVE-2014-10074,6/11/2018 19:46,27/08/2018 4:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16308,6/11/2018 19:43,1/09/2018 18:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-16324,6/11/2018 19:00,1/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0646,6/11/2018 18:55,4/09/2018 13:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17254,6/11/2018 18:53,20/09/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2777,6/11/2018 18:40,17/09/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-0656,6/11/2018 18:13,4/09/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-8271,6/11/2018 17:29,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-15682,6/11/2018 16:03,5/09/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15683,6/11/2018 16:02,5/09/2018 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-15888,6/11/2018 15:37,26/08/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-15499,6/11/2018 15:36,24/08/2018 19:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-16409,6/11/2018 15:06,3/09/2018 19:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-15877,6/11/2018 14:50,26/08/2018 7:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15573,6/11/2018 14:12,20/08/2018 2:29,7.5,20, Improper Input Validation,nan
CVE-2018-15574,6/11/2018 13:38,20/08/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18345,6/11/2018 13:20,26/08/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-17088,5/11/2018 21:48,16/09/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-0965,5/11/2018 21:36,13/09/2018 0:29,7.7,20, Improper Input Validation,nan
CVE-2018-16282,5/11/2018 21:28,20/09/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-13821,5/11/2018 21:22,30/08/2018 14:29,7.5,287, Improper Authentication,nan
CVE-2015-9263,5/11/2018 21:17,27/08/2018 4:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11653,5/11/2018 21:05,24/08/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-16435,5/11/2018 20:46,4/09/2018 0:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-3822,5/11/2018 20:33,5/08/2016 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15810,5/11/2018 20:23,27/08/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12577,5/11/2018 19:31,24/08/2018 19:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-15918,5/11/2018 19:29,5/09/2018 21:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15684,5/11/2018 19:11,5/09/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-15887,5/11/2018 19:10,27/08/2018 15:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15679,5/11/2018 18:32,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15678,5/11/2018 18:30,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6643,5/11/2018 18:16,28/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16436,5/11/2018 18:16,5/09/2018 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15882,5/11/2018 18:14,29/08/2018 3:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16437,5/11/2018 18:11,5/09/2018 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12829,5/11/2018 17:31,29/08/2018 13:29,7.5,295, Improper Certificate Validation,nan
CVE-2018-8421,5/11/2018 15:46,13/09/2018 0:29,10.0,20, Improper Input Validation,nan
CVE-2018-8354,5/11/2018 15:35,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8367,5/11/2018 14:58,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8391,5/11/2018 14:55,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8456,5/11/2018 14:48,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8457,5/11/2018 14:44,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15562,5/11/2018 14:41,29/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8459,5/11/2018 14:40,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8461,5/11/2018 14:33,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8465,5/11/2018 14:27,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8466,5/11/2018 14:20,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8467,5/11/2018 14:15,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16298,2/11/2018 22:41,31/08/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16313,2/11/2018 22:17,1/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16325,2/11/2018 22:07,1/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15677,2/11/2018 21:53,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16622,2/11/2018 21:43,6/09/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12234,2/11/2018 21:38,6/09/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16285,2/11/2018 21:33,6/09/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14366,2/11/2018 20:11,6/09/2018 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-16320,2/11/2018 19:40,1/09/2018 18:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15608,2/11/2018 19:13,28/08/2018 19:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-15740,2/11/2018 19:08,28/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15901,2/11/2018 19:05,28/08/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5363,2/11/2018 18:59,8/12/2008 11:30,4.3,399, Resource Management Errors,nan
CVE-2018-16654,2/11/2018 18:54,7/09/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16516,2/11/2018 18:49,5/09/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16431,2/11/2018 18:48,4/09/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16388,2/11/2018 18:38,12/09/2018 16:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16389,2/11/2018 18:35,12/09/2018 16:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16728,2/11/2018 18:02,12/09/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16980,2/11/2018 17:56,12/09/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16157,2/11/2018 17:41,30/08/2018 13:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-15423,2/11/2018 17:37,28/08/2018 19:29,5.0,310, Cryptographic Issues,nan
CVE-2017-15427,2/11/2018 17:34,28/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000671,2/11/2018 17:29,6/09/2018 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-0715,2/11/2018 17:25,27/08/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15546,2/11/2018 17:23,18/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000800,2/11/2018 17:16,6/09/2018 17:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-1000637,2/11/2018 17:10,20/08/2018 19:31,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15880,2/11/2018 16:49,29/08/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16981,2/11/2018 16:40,12/09/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8335,2/11/2018 16:31,13/09/2018 0:29,7.8,20, Improper Input Validation,nan
CVE-2017-14452,2/11/2018 15:58,23/08/2018 18:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8438,2/11/2018 15:36,13/09/2018 0:29,6.8,20, Improper Input Validation,nan
CVE-2018-8437,2/11/2018 15:36,13/09/2018 0:29,5.5,20, Improper Input Validation,nan
CVE-2018-8436,2/11/2018 15:35,13/09/2018 0:29,5.5,20, Improper Input Validation,nan
CVE-2018-8426,2/11/2018 15:14,13/09/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8441,2/11/2018 14:38,13/09/2018 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-11758,2/11/2018 14:34,22/08/2018 20:29,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17046,2/11/2018 14:03,14/09/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16727,2/11/2018 13:58,12/09/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16726,2/11/2018 13:56,12/09/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16951,2/11/2018 13:52,12/09/2018 1:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5052,2/11/2018 13:50,13/11/2008 11:30,10.0,399, Resource Management Errors,nan
CVE-2008-5024,2/11/2018 13:50,13/11/2008 11:30,7.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2008-5023,2/11/2018 13:49,13/11/2008 11:30,7.5,20, Improper Input Validation,nan
CVE-2008-5022,2/11/2018 13:49,13/11/2008 11:30,7.5,287, Improper Authentication,nan
CVE-2018-16776,2/11/2018 13:48,10/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5021,2/11/2018 13:48,13/11/2008 11:30,9.3,399, Resource Management Errors,nan
CVE-2008-5019,2/11/2018 13:48,13/11/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5018,2/11/2018 13:48,13/11/2008 11:30,10.0,399, Resource Management Errors,nan
CVE-2008-5017,2/11/2018 13:48,13/11/2008 11:30,10.0,189, Numeric Errors,nan
CVE-2008-5014,2/11/2018 13:47,13/11/2008 11:30,10.0,20, Improper Input Validation,nan
CVE-2008-4934,2/11/2018 13:47,5/11/2008 15:00,7.8,20, Improper Input Validation,nan
CVE-2018-16650,2/11/2018 13:44,7/09/2018 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4917,2/11/2018 13:44,9/12/2008 0:30,7.2,399, Resource Management Errors,nan
CVE-2008-4915,2/11/2018 13:43,10/11/2008 14:12,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-4824,2/11/2018 13:43,17/11/2008 22:21,9.3,20, Improper Input Validation,nan
CVE-2008-4801,2/11/2018 13:36,31/10/2008 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16653,2/11/2018 13:30,7/09/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8443,2/11/2018 13:22,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-8442,2/11/2018 13:21,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2008-4792,2/11/2018 13:18,29/10/2008 15:31,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-8419,2/11/2018 13:13,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-8336,2/11/2018 13:10,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2017-11563,2/11/2018 13:08,24/08/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4791,2/11/2018 13:07,29/10/2008 15:31,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4480,2/11/2018 13:07,14/10/2008 22:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4479,2/11/2018 13:07,14/10/2008 22:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4383,2/11/2018 13:07,3/10/2008 22:22,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4279,2/11/2018 13:06,6/10/2008 19:54,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-0689,2/11/2018 10:29,1/07/2009 13:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16302,1/11/2018 20:20,1/09/2018 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8445,1/11/2018 19:49,13/09/2018 0:29,2.1,200, Information Exposure,nan
CVE-2018-15536,1/11/2018 19:47,24/08/2018 19:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15576,1/11/2018 19:30,24/08/2018 21:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14059,1/11/2018 19:24,24/08/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000667,1/11/2018 19:22,6/09/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16767,1/11/2018 18:51,10/09/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16766,1/11/2018 18:51,10/09/2018 4:29,6.8,20, Improper Input Validation,nan
CVE-2018-16768,1/11/2018 18:48,10/09/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16769,1/11/2018 18:45,10/09/2018 4:29,6.8,20, Improper Input Validation,nan
CVE-2018-16770,1/11/2018 18:44,10/09/2018 4:29,6.8,20, Improper Input Validation,nan
CVE-2018-17091,1/11/2018 18:07,16/09/2018 21:29,5.5,200, Information Exposure,nan
CVE-2018-17090,1/11/2018 17:29,16/09/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6046,1/11/2018 17:11,28/08/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-2039,1/11/2018 16:55,16/04/2007 21:19,6.1,399, Resource Management Errors,nan
CVE-2007-2037,1/11/2018 16:55,16/04/2007 21:19,2.9,399, Resource Management Errors,nan
CVE-2007-0057,1/11/2018 16:53,4/01/2007 22:28,10.0,255, Credentials Management,nan
CVE-2018-16742,1/11/2018 16:49,13/09/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16743,1/11/2018 16:31,13/09/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16745,1/11/2018 16:27,13/09/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1363,1/11/2018 16:24,20/03/2008 0:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4061,1/11/2018 16:23,24/09/2008 20:37,10.0,189, Numeric Errors,nan
CVE-2008-4058,1/11/2018 16:23,24/09/2008 20:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3892,1/11/2018 16:23,3/09/2008 14:12,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4067,1/11/2018 16:22,24/09/2008 20:37,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4065,1/11/2018 16:22,24/09/2008 20:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000644,1/11/2018 16:21,20/08/2018 19:31,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-17093,1/11/2018 16:16,16/09/2018 21:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-17094,1/11/2018 16:13,16/09/2018 21:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-8447,1/11/2018 15:34,13/09/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4068,1/11/2018 15:15,24/09/2008 20:37,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3615,1/11/2018 15:14,11/09/2008 1:13,9.3,399, Resource Management Errors,nan
CVE-2008-3441,1/11/2018 15:10,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3325,1/11/2018 15:10,25/07/2008 16:41,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2726,1/11/2018 15:07,24/06/2008 19:41,7.8,189, Numeric Errors,nan
CVE-2008-2725,1/11/2018 15:07,24/06/2008 19:41,7.8,189, Numeric Errors,nan
CVE-2008-2712,1/11/2018 15:07,16/06/2008 21:41,9.3,20, Improper Input Validation,nan
CVE-2008-2664,1/11/2018 15:06,24/06/2008 19:41,7.8,399, Resource Management Errors,nan
CVE-2008-2663,1/11/2018 15:06,24/06/2008 19:41,10.0,190, Integer Overflow or Wraparound,nan
CVE-2008-2662,1/11/2018 15:02,24/06/2008 19:41,10.0,189, Numeric Errors,nan
CVE-2008-0924,1/11/2018 15:02,28/03/2008 18:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000651,1/11/2018 14:51,20/08/2018 19:31,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8429,1/11/2018 14:24,13/09/2018 0:29,4.3,200, Information Exposure,nan
CVE-2017-9821,1/11/2018 13:53,24/08/2018 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-9820,1/11/2018 13:44,24/08/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2017-9819,1/11/2018 13:36,24/08/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2018-15553,1/11/2018 13:20,20/08/2018 0:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15568,1/11/2018 13:11,20/08/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0663,1/11/2018 12:48,7/09/2018 14:29,9.0,798, Use of Hard-coded Credentials,nan
CVE-2018-17131,1/11/2018 12:14,17/09/2018 4:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17132,1/11/2018 12:11,17/09/2018 4:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17133,1/11/2018 12:03,17/09/2018 4:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17134,1/11/2018 12:01,17/09/2018 4:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-17130,1/11/2018 11:57,17/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17136,1/11/2018 11:52,17/09/2018 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000217,1/11/2018 11:50,20/08/2018 20:29,7.5,416, Use After Free,nan
CVE-2016-9345,1/11/2018 10:29,13/02/2017 21:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-16977,31/10/2018 20:21,12/09/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-16979,31/10/2018 20:15,12/09/2018 23:29,5.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-16978,31/10/2018 20:06,12/09/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6045,31/10/2018 19:55,28/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15599,31/10/2018 19:53,21/08/2018 1:29,5.0,200, Information Exposure,nan
CVE-2008-1515,31/10/2018 19:19,1/04/2008 17:44,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-0927,31/10/2018 19:16,14/04/2008 16:05,5.0,399, Resource Management Errors,nan
CVE-2008-1998,31/10/2018 19:07,28/04/2008 20:05,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2079,31/10/2018 19:05,5/05/2008 16:20,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-1743,31/10/2018 19:04,16/05/2008 12:54,7.8,399, Resource Management Errors,nan
CVE-2018-1000641,31/10/2018 18:58,20/08/2018 19:31,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2136,31/10/2018 18:55,16/05/2008 12:54,7.8,399, Resource Management Errors,nan
CVE-2008-2499,31/10/2018 18:43,29/05/2008 16:32,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2061,31/10/2018 18:42,26/06/2008 17:41,7.8,20, Improper Input Validation,nan
CVE-2008-2392,31/10/2018 18:37,21/05/2008 13:24,9.0,20, Improper Input Validation,nan
CVE-2008-2462,31/10/2018 18:36,30/06/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7177,31/10/2018 18:35,8/09/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3938,31/10/2018 18:31,14/08/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000224,31/10/2018 18:26,20/08/2018 20:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-15474,31/10/2018 17:56,7/09/2018 22:29,6.8,20, Improper Input Validation,nan
CVE-2018-13826,31/10/2018 17:12,30/08/2018 14:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-13823,31/10/2018 17:10,30/08/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-13824,31/10/2018 17:07,30/08/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13825,31/10/2018 16:58,30/08/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14396,31/10/2018 16:07,7/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14397,31/10/2018 16:05,7/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15408,31/10/2018 16:00,28/08/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15409,31/10/2018 15:59,28/08/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15896,31/10/2018 15:58,28/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15406,31/10/2018 15:50,28/08/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3698,31/10/2018 15:33,3/09/2008 14:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-8315,31/10/2018 15:22,13/09/2018 0:29,4.0,200, Information Exposure,nan
CVE-2016-1000232,31/10/2018 15:02,5/09/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-16303,31/10/2018 14:48,1/09/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-16376,31/10/2018 14:26,3/09/2018 0:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-11502,31/10/2018 14:26,24/08/2018 21:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16397,31/10/2018 13:57,3/09/2018 15:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16385,31/10/2018 13:19,3/09/2018 2:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16765,31/10/2018 12:36,10/09/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7542,31/10/2018 10:32,27/02/2018 19:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-5244,31/10/2018 10:32,5/01/2018 18:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3640,31/10/2018 10:32,22/05/2018 12:29,4.7,200, Information Exposure,nan
CVE-2018-12232,31/10/2018 10:30,12/06/2018 12:29,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-1095,31/10/2018 10:30,2/04/2018 3:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-10940,31/10/2018 10:30,9/05/2018 17:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1094,31/10/2018 10:30,2/04/2018 3:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-1092,31/10/2018 10:30,2/04/2018 3:29,7.1,476, NULL Pointer Dereference,nan
CVE-2018-1065,31/10/2018 10:30,2/03/2018 8:29,4.7,476, NULL Pointer Dereference,nan
CVE-2018-10472,31/10/2018 10:30,27/04/2018 15:29,1.9,200, Information Exposure,nan
CVE-2018-10471,31/10/2018 10:30,27/04/2018 15:29,4.9,787, Out-of-bounds Write,nan
CVE-2018-1000200,31/10/2018 10:30,5/06/2018 13:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-9226,31/10/2018 10:30,24/05/2017 15:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-9224,31/10/2018 10:30,24/05/2017 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-18205,31/10/2018 10:29,27/02/2018 22:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-18201,31/10/2018 10:29,26/02/2018 14:29,7.5,415, Double Free,nan
CVE-2017-18199,31/10/2018 10:29,24/02/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-18198,31/10/2018 10:29,24/02/2018 6:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17805,31/10/2018 10:29,20/12/2017 23:29,7.2,20, Improper Input Validation,nan
CVE-2017-16648,31/10/2018 10:29,7/11/2017 23:29,7.2,416, Use After Free,nan
CVE-2017-15124,31/10/2018 10:29,9/01/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2017-14033,31/10/2018 10:29,19/09/2017 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12618,31/10/2018 10:29,24/10/2017 1:29,1.9,125, Out-of-bounds Read,nan
CVE-2017-10784,31/10/2018 10:29,19/09/2017 17:29,9.3,287, Improper Authentication,nan
CVE-2017-10661,31/10/2018 10:29,19/08/2017 18:29,7.6,416, Use After Free,nan
CVE-2016-4913,31/10/2018 10:29,23/05/2016 10:59,7.2,200, Information Exposure,nan
CVE-2014-10072,31/10/2018 10:29,27/02/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16781,30/10/2018 20:37,10/09/2018 4:29,4.3,20, Improper Input Validation,nan
CVE-2018-16605,30/10/2018 19:55,12/09/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12151,30/10/2018 19:48,12/09/2018 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16405,30/10/2018 19:47,3/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16406,30/10/2018 19:46,3/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16407,30/10/2018 19:44,3/09/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17025,30/10/2018 19:42,13/09/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17026,30/10/2018 19:38,13/09/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-17004,30/10/2018 18:48,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-11654,30/10/2018 18:40,24/08/2018 21:29,5.0,200, Information Exposure,nan
CVE-2016-9040,30/10/2018 18:01,7/09/2018 12:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2018-0623,30/10/2018 17:36,7/09/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0624,30/10/2018 17:34,7/09/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-15157,30/10/2018 17:30,1/09/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2008-3129,30/10/2018 17:29,10/07/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15158,30/10/2018 17:25,1/09/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15159,30/10/2018 17:20,1/09/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-15160,30/10/2018 17:16,1/09/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8397,30/10/2018 17:13,15/08/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15411,30/10/2018 16:48,28/08/2018 19:29,6.8,416, Use After Free,nan
CVE-2017-15410,30/10/2018 16:48,28/08/2018 19:29,6.8,416, Use After Free,nan
CVE-2017-15426,30/10/2018 16:47,28/08/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-15425,30/10/2018 16:47,28/08/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-15424,30/10/2018 16:47,28/08/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-9092,30/10/2018 16:28,27/03/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16233,30/10/2018 16:28,30/08/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15899,30/10/2018 16:28,27/08/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10424,30/10/2018 16:28,26/04/2018 5:29,4.0,200, Information Exposure,nan
CVE-2018-10423,30/10/2018 16:28,26/04/2018 5:29,4.0,200, Information Exposure,nan
CVE-2018-10296,30/10/2018 16:28,22/04/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10227,30/10/2018 16:28,19/04/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000638,30/10/2018 16:28,20/08/2018 19:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0175,30/10/2018 16:28,12/05/2017 14:29,2.1,200, Information Exposure,nan
CVE-2017-0104,30/10/2018 16:28,17/03/2017 0:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2016-3096,30/10/2018 16:28,3/06/2016 14:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-2278,30/10/2018 16:28,2/03/2016 11:59,9.0,284, Improper Access Control,nan
CVE-2015-7809,30/10/2018 16:28,6/11/2015 21:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6485,30/10/2018 16:28,12/03/2016 2:59,5.0,200, Information Exposure,nan
CVE-2015-0999,30/10/2018 16:28,29/03/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-0998,30/10/2018 16:28,29/03/2015 10:59,3.3,200, Information Exposure,nan
CVE-2015-0997,30/10/2018 16:28,29/03/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-0996,30/10/2018 16:28,29/03/2015 10:59,2.1,200, Information Exposure,nan
CVE-2014-3498,30/10/2018 16:28,8/06/2017 18:29,6.5,20, Improper Input Validation,nan
CVE-2013-4434,30/10/2018 16:28,25/10/2013 23:55,5.0,189, Numeric Errors,nan
CVE-2013-4421,30/10/2018 16:28,25/10/2013 23:55,5.0,189, Numeric Errors,nan
CVE-2013-4260,30/10/2018 16:28,16/09/2013 19:14,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4259,30/10/2018 16:28,16/09/2013 19:14,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0729,30/10/2018 16:28,2/04/2014 16:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0920,30/10/2018 16:28,5/06/2012 22:55,7.1,399, Resource Management Errors,nan
CVE-2010-0249,30/10/2018 16:28,15/01/2010 17:30,9.3,399, Resource Management Errors,nan
CVE-2010-0017,30/10/2018 16:28,10/02/2010 18:30,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-3676,30/10/2018 16:28,13/11/2009 15:30,7.1,399, Resource Management Errors,nan
CVE-2008-2719,30/10/2018 16:28,16/06/2008 23:41,6.8,189, Numeric Errors,nan
CVE-2018-8239,30/10/2018 16:27,14/06/2018 12:29,4.3,200, Information Exposure,nan
CVE-2018-8218,30/10/2018 16:27,14/06/2018 12:29,6.8,20, Improper Input Validation,nan
CVE-2018-8175,30/10/2018 16:27,14/06/2018 12:29,7.1,20, Improper Input Validation,nan
CVE-2018-8158,30/10/2018 16:27,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0853,30/10/2018 16:27,15/02/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-0843,30/10/2018 16:27,15/02/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-0832,30/10/2018 16:27,15/02/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-0830,30/10/2018 16:27,15/02/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-0829,30/10/2018 16:27,15/02/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-0754,30/10/2018 16:27,4/01/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-0753,30/10/2018 16:27,4/01/2018 14:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0747,30/10/2018 16:27,4/01/2018 14:29,1.9,200, Information Exposure,nan
CVE-2018-0746,30/10/2018 16:27,4/01/2018 14:29,1.9,200, Information Exposure,nan
CVE-2018-0745,30/10/2018 16:27,4/01/2018 14:29,1.9,200, Information Exposure,nan
CVE-2017-8744,30/10/2018 16:27,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6820,30/10/2018 16:27,12/03/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6542,30/10/2018 16:27,27/03/2017 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6318,30/10/2018 16:27,20/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2017-5938,30/10/2018 16:27,15/03/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5337,30/10/2018 16:27,24/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5336,30/10/2018 16:27,24/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5335,30/10/2018 16:27,24/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5334,30/10/2018 16:27,24/03/2017 15:59,7.5,415, Double Free,nan
CVE-2017-4928,30/10/2018 16:27,17/11/2017 14:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-3807,30/10/2018 16:27,9/02/2017 17:59,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11940,30/10/2018 16:27,8/12/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11937,30/10/2018 16:27,7/12/2017 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11934,30/10/2018 16:27,12/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-10673,30/10/2018 16:27,29/06/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0299,30/10/2018 16:27,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2016-9961,30/10/2018 16:27,6/06/2017 18:29,10.0,189, Numeric Errors,nan
CVE-2016-9960,30/10/2018 16:27,6/06/2017 18:29,2.1,369, Divide By Zero,nan
CVE-2016-9959,30/10/2018 16:27,12/04/2017 20:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-9958,30/10/2018 16:27,12/04/2017 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9957,30/10/2018 16:27,12/04/2017 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9830,30/10/2018 16:27,1/03/2017 20:59,4.3,20, Improper Input Validation,nan
CVE-2016-9448,30/10/2018 16:27,27/01/2017 17:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9436,30/10/2018 16:27,20/01/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2016-9435,30/10/2018 16:27,20/01/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2016-8693,30/10/2018 16:27,15/02/2017 19:59,6.8,415, Double Free,nan
CVE-2016-8684,30/10/2018 16:27,15/02/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8683,30/10/2018 16:27,15/02/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8682,30/10/2018 16:27,15/02/2017 19:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-8677,30/10/2018 16:27,15/02/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8569,30/10/2018 16:27,3/02/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8568,30/10/2018 16:27,3/02/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7972,30/10/2018 16:27,3/03/2017 16:59,5.0,399, Resource Management Errors,nan
CVE-2016-7969,30/10/2018 16:27,3/03/2017 16:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-7797,30/10/2018 16:27,24/03/2017 15:59,5.0,254, 7PK – Security Features,nan
CVE-2016-7787,30/10/2018 16:27,23/12/2016 22:59,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7714,30/10/2018 16:27,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7663,30/10/2018 16:27,20/02/2017 8:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7662,30/10/2018 16:27,20/02/2017 8:59,5.0,295, Improper Certificate Validation,nan
CVE-2016-7660,30/10/2018 16:27,20/02/2017 8:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7659,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7658,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7657,30/10/2018 16:27,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2016-7651,30/10/2018 16:27,20/02/2017 8:59,4.6,285, Improper Authorization,nan
CVE-2016-7644,30/10/2018 16:27,20/02/2017 8:59,9.3,416, Use After Free,nan
CVE-2016-7643,30/10/2018 16:27,20/02/2017 8:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7637,30/10/2018 16:27,20/02/2017 8:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7636,30/10/2018 16:27,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2016-7627,30/10/2018 16:27,20/02/2017 8:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-7621,30/10/2018 16:27,20/02/2017 8:59,7.2,416, Use After Free,nan
CVE-2016-7619,30/10/2018 16:27,20/02/2017 8:59,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-7616,30/10/2018 16:27,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7613,30/10/2018 16:27,20/02/2017 8:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-7612,30/10/2018 16:27,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7607,30/10/2018 16:27,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-7606,30/10/2018 16:27,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7595,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7594,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7591,30/10/2018 16:27,20/02/2017 8:59,9.3,416, Use After Free,nan
CVE-2016-7589,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7588,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7459,30/10/2018 16:27,29/12/2016 9:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-7445,30/10/2018 16:27,3/10/2016 16:09,5.0,476, NULL Pointer Dereference,nan
CVE-2016-7275,30/10/2018 16:27,20/12/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7245,30/10/2018 16:27,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6905,30/10/2018 16:27,3/10/2016 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6855,30/10/2018 16:27,7/09/2016 18:59,5.0,787, Out-of-bounds Write,nan
CVE-2016-6461,30/10/2018 16:27,19/11/2016 3:03,4.3,20, Improper Input Validation,nan
CVE-2016-6432,30/10/2018 16:27,27/10/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6431,30/10/2018 16:27,27/10/2016 21:59,7.1,20, Improper Input Validation,nan
CVE-2016-6424,30/10/2018 16:27,6/10/2016 10:59,6.1,399, Resource Management Errors,nan
CVE-2016-6352,30/10/2018 16:27,3/10/2016 18:59,5.0,787, Out-of-bounds Write,nan
CVE-2016-6323,30/10/2018 16:27,7/10/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2016-6318,30/10/2018 16:27,7/09/2016 19:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6265,30/10/2018 16:27,22/09/2016 15:59,4.3,416, Use After Free,nan
CVE-2016-6262,30/10/2018 16:27,7/09/2016 20:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-6261,30/10/2018 16:27,7/09/2016 20:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-6225,30/10/2018 16:27,23/03/2017 16:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-6214,30/10/2018 16:27,12/08/2016 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6207,30/10/2018 16:27,12/08/2016 15:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-6172,30/10/2018 16:27,26/09/2016 16:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2016-6161,30/10/2018 16:27,12/08/2016 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6153,30/10/2018 16:27,26/09/2016 16:59,4.6,20, Improper Input Validation,nan
CVE-2016-6132,30/10/2018 16:27,12/08/2016 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5759,30/10/2018 16:27,8/09/2017 18:29,6.9,20, Improper Input Validation,nan
CVE-2016-5739,30/10/2018 16:27,3/07/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-5733,30/10/2018 16:27,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5731,30/10/2018 16:27,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5730,30/10/2018 16:27,3/07/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-5706,30/10/2018 16:27,3/07/2016 1:59,5.0,399, Resource Management Errors,nan
CVE-2016-5705,30/10/2018 16:27,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5703,30/10/2018 16:27,3/07/2016 1:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5701,30/10/2018 16:27,3/07/2016 1:59,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-5601,30/10/2018 16:27,25/10/2016 14:31,3.3,284, Improper Access Control,nan
CVE-2016-5323,30/10/2018 16:27,20/01/2017 15:59,5.0,369, Divide By Zero,nan
CVE-2016-5321,30/10/2018 16:27,20/01/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5317,30/10/2018 16:27,20/01/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5316,30/10/2018 16:27,20/01/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5301,30/10/2018 16:27,30/06/2016 17:59,5.0,20, Improper Input Validation,nan
CVE-2016-5284,30/10/2018 16:27,22/09/2016 22:59,4.3,20, Improper Input Validation,nan
CVE-2016-5281,30/10/2018 16:27,22/09/2016 22:59,7.5,416, Use After Free,nan
CVE-2016-5280,30/10/2018 16:27,22/09/2016 22:59,7.5,416, Use After Free,nan
CVE-2016-5178,30/10/2018 16:27,23/05/2017 4:29,7.5,20, Improper Input Validation,nan
CVE-2016-5177,30/10/2018 16:27,23/05/2017 4:29,6.8,416, Use After Free,nan
CVE-2016-5166,30/10/2018 16:27,11/09/2016 10:59,2.6,200, Information Exposure,nan
CVE-2016-5165,30/10/2018 16:27,11/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5164,30/10/2018 16:27,11/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5163,30/10/2018 16:27,11/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-5162,30/10/2018 16:27,11/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-5161,30/10/2018 16:27,11/09/2016 10:59,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2016-5160,30/10/2018 16:27,11/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-5159,30/10/2018 16:27,11/09/2016 10:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5158,30/10/2018 16:27,11/09/2016 10:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5157,30/10/2018 16:27,11/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5156,30/10/2018 16:27,11/09/2016 10:59,6.8,416, Use After Free,nan
CVE-2016-5155,30/10/2018 16:27,11/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-5154,30/10/2018 16:27,11/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5153,30/10/2018 16:27,11/09/2016 10:59,6.8,19, Data Processing Errors,nan
CVE-2016-5152,30/10/2018 16:27,11/09/2016 10:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5151,30/10/2018 16:27,11/09/2016 10:59,6.8,416, Use After Free,nan
CVE-2016-5150,30/10/2018 16:27,11/09/2016 10:59,6.8,416, Use After Free,nan
CVE-2016-5149,30/10/2018 16:27,11/09/2016 10:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-5118,30/10/2018 16:27,10/06/2016 15:59,10.0,284, Improper Access Control,nan
CVE-2016-5116,30/10/2018 16:27,7/08/2016 10:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5104,30/10/2018 16:27,13/06/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2016-5099,30/10/2018 16:27,5/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5098,30/10/2018 16:27,5/07/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5097,30/10/2018 16:27,5/07/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-4957,30/10/2018 16:27,5/07/2016 1:59,5.0,20, Improper Input Validation,nan
CVE-2016-4956,30/10/2018 16:27,5/07/2016 1:59,5.0,19, Data Processing Errors,nan
CVE-2016-4955,30/10/2018 16:27,5/07/2016 1:59,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-4848,30/10/2018 16:27,2/09/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4804,30/10/2018 16:27,3/06/2016 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4693,30/10/2018 16:27,20/02/2017 8:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-4691,30/10/2018 16:27,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4579,30/10/2018 16:27,13/06/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-4574,30/10/2018 16:27,13/06/2016 19:59,5.0,189, Numeric Errors,nan
CVE-2016-4544,30/10/2018 16:27,22/05/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4543,30/10/2018 16:27,22/05/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4542,30/10/2018 16:27,22/05/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4539,30/10/2018 16:27,22/05/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4538,30/10/2018 16:27,22/05/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-4537,30/10/2018 16:27,22/05/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-4478,30/10/2018 16:27,13/06/2016 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4348,30/10/2018 16:27,20/05/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-4346,30/10/2018 16:27,22/05/2016 1:59,7.5,189, Numeric Errors,nan
CVE-2016-4342,30/10/2018 16:27,22/05/2016 1:59,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4303,30/10/2018 16:27,26/09/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4069,30/10/2018 16:27,25/08/2016 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4068,30/10/2018 16:27,13/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4049,30/10/2018 16:27,23/05/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-4036,30/10/2018 16:27,18/04/2016 14:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-4024,30/10/2018 16:27,13/05/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4008,30/10/2018 16:27,5/05/2016 18:59,4.3,399, Resource Management Errors,nan
CVE-2016-3992,30/10/2018 16:27,26/07/2016 17:59,4.9,284, Improper Access Control,nan
CVE-2016-3991,30/10/2018 16:27,21/09/2016 18:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-3990,30/10/2018 16:27,21/09/2016 18:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-3982,30/10/2018 16:27,13/04/2016 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3977,30/10/2018 16:27,21/04/2016 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3959,30/10/2018 16:27,23/05/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-3945,30/10/2018 16:27,21/09/2016 18:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-3706,30/10/2018 16:27,10/06/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2016-3705,30/10/2018 16:27,17/05/2016 14:08,5.0,20, Improper Input Validation,nan
CVE-2016-3697,30/10/2018 16:27,1/06/2016 20:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-3658,30/10/2018 16:27,3/10/2016 16:09,5.0,125, Out-of-bounds Read,nan
CVE-2016-3634,30/10/2018 16:27,3/10/2016 16:09,5.0,125, Out-of-bounds Read,nan
CVE-2016-3633,30/10/2018 16:27,3/10/2016 16:09,5.0,125, Out-of-bounds Read,nan
CVE-2016-3632,30/10/2018 16:27,21/09/2016 18:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-3631,30/10/2018 16:27,3/10/2016 16:09,5.0,125, Out-of-bounds Read,nan
CVE-2016-3630,30/10/2018 16:27,13/04/2016 16:59,6.8,19, Data Processing Errors,nan
CVE-2016-3627,30/10/2018 16:27,17/05/2016 14:08,5.0,20, Improper Input Validation,nan
CVE-2016-3625,30/10/2018 16:27,3/10/2016 16:09,4.3,125, Out-of-bounds Read,nan
CVE-2016-3623,30/10/2018 16:27,3/10/2016 16:09,5.0,369, Divide By Zero,nan
CVE-2016-3357,30/10/2018 16:27,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3318,30/10/2018 16:27,9/08/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3313,30/10/2018 16:27,9/08/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3190,30/10/2018 16:27,21/04/2016 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3186,30/10/2018 16:27,19/04/2016 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3125,30/10/2018 16:27,5/04/2016 20:59,5.0,310, Cryptographic Issues,nan
CVE-2016-3100,30/10/2018 16:27,13/07/2016 15:59,2.1,200, Information Exposure,nan
CVE-2016-3075,30/10/2018 16:27,1/06/2016 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3069,30/10/2018 16:27,13/04/2016 16:59,6.8,20, Improper Input Validation,nan
CVE-2016-3068,30/10/2018 16:27,13/04/2016 16:59,6.8,20, Improper Input Validation,nan
CVE-2016-3062,30/10/2018 16:27,16/06/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2851,30/10/2018 16:27,7/04/2016 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2833,30/10/2018 16:27,13/06/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2832,30/10/2018 16:27,13/06/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-2831,30/10/2018 16:27,13/06/2016 10:59,5.8,284, Improper Access Control,nan
CVE-2016-2829,30/10/2018 16:27,13/06/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-2825,30/10/2018 16:27,13/06/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-2824,30/10/2018 16:27,13/06/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2822,30/10/2018 16:27,13/06/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-2819,30/10/2018 16:27,13/06/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2818,30/10/2018 16:27,13/06/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2815,30/10/2018 16:27,13/06/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2807,30/10/2018 16:27,30/04/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2806,30/10/2018 16:27,30/04/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2802,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2801,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2800,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2799,30/10/2018 16:27,13/03/2016 18:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2798,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2797,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2796,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2795,30/10/2018 16:27,13/03/2016 18:59,6.8,19, Data Processing Errors,nan
CVE-2016-2794,30/10/2018 16:27,13/03/2016 18:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2793,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2792,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2791,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2790,30/10/2018 16:27,13/03/2016 18:59,6.8,19, Data Processing Errors,nan
CVE-2016-2347,30/10/2018 16:27,21/04/2017 20:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-2329,30/10/2018 16:27,12/02/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2324,30/10/2018 16:27,8/04/2016 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2318,30/10/2018 16:27,3/02/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-2317,30/10/2018 16:27,3/02/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2315,30/10/2018 16:27,8/04/2016 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2313,30/10/2018 16:27,13/04/2016 17:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-2312,30/10/2018 16:27,23/12/2016 22:59,4.6,254, 7PK – Security Features,nan
CVE-2016-2191,30/10/2018 16:27,13/04/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2107,30/10/2018 16:27,5/05/2016 1:59,2.6,310, Cryptographic Issues,nan
CVE-2016-2076,30/10/2018 16:27,15/04/2016 14:59,6.8,287, Improper Authentication,nan
CVE-2016-2043,30/10/2018 16:27,20/02/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2042,30/10/2018 16:27,20/02/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2041,30/10/2018 16:27,20/02/2016 1:59,5.0,254, 7PK – Security Features,nan
CVE-2016-2040,30/10/2018 16:27,20/02/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2039,30/10/2018 16:27,20/02/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2038,30/10/2018 16:27,20/02/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-1977,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1974,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1965,30/10/2018 16:27,13/03/2016 18:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1958,30/10/2018 16:27,13/03/2016 18:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1957,30/10/2018 16:27,13/03/2016 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1956,30/10/2018 16:27,13/03/2016 18:59,7.1,399, Resource Management Errors,nan
CVE-2016-1955,30/10/2018 16:27,13/03/2016 18:59,4.3,200, Information Exposure,nan
CVE-2016-1954,30/10/2018 16:27,13/03/2016 18:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1953,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1952,30/10/2018 16:27,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1947,30/10/2018 16:27,31/01/2016 18:59,4.3,19, Data Processing Errors,nan
CVE-2016-1946,30/10/2018 16:27,31/01/2016 18:59,10.0,189, Numeric Errors,nan
CVE-2016-1944,30/10/2018 16:27,31/01/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1943,30/10/2018 16:27,31/01/2016 18:59,4.3,17, DEPRECATED: Code,nan
CVE-2016-1942,30/10/2018 16:27,31/01/2016 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-1939,30/10/2018 16:27,31/01/2016 18:59,5.0,200, Information Exposure,nan
CVE-2016-1938,30/10/2018 16:27,31/01/2016 18:59,6.4,310, Cryptographic Issues,nan
CVE-2016-1937,30/10/2018 16:27,31/01/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1935,30/10/2018 16:27,31/01/2016 18:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1933,30/10/2018 16:27,31/01/2016 18:59,4.3,189, Numeric Errors,nan
CVE-2016-1931,30/10/2018 16:27,31/01/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1930,30/10/2018 16:27,31/01/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1898,30/10/2018 16:27,15/01/2016 3:59,4.3,200, Information Exposure,nan
CVE-2016-1897,30/10/2018 16:27,15/01/2016 3:59,4.3,200, Information Exposure,nan
CVE-2016-1866,30/10/2018 16:27,12/04/2016 14:59,6.8,284, Improper Access Control,nan
CVE-2016-1702,30/10/2018 16:27,5/06/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1699,30/10/2018 16:27,5/06/2016 23:59,4.3,284, Improper Access Control,nan
CVE-2016-1698,30/10/2018 16:27,5/06/2016 23:59,4.3,200, Information Exposure,nan
CVE-2016-1697,30/10/2018 16:27,5/06/2016 23:59,6.8,284, Improper Access Control,nan
CVE-2016-1696,30/10/2018 16:27,5/06/2016 23:59,6.8,284, Improper Access Control,nan
CVE-2016-1694,30/10/2018 16:27,5/06/2016 23:59,4.3,284, Improper Access Control,nan
CVE-2016-1693,30/10/2018 16:27,5/06/2016 23:59,2.6,284, Improper Access Control,nan
CVE-2016-1692,30/10/2018 16:27,5/06/2016 23:59,4.3,284, Improper Access Control,nan
CVE-2016-1691,30/10/2018 16:27,5/06/2016 23:59,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1689,30/10/2018 16:27,5/06/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1688,30/10/2018 16:27,5/06/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1687,30/10/2018 16:27,5/06/2016 23:59,4.3,200, Information Exposure,nan
CVE-2016-1686,30/10/2018 16:27,5/06/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1685,30/10/2018 16:27,5/06/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1683,30/10/2018 16:27,5/06/2016 23:59,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1682,30/10/2018 16:27,5/06/2016 23:59,4.3,284, Improper Access Control,nan
CVE-2016-1681,30/10/2018 16:27,5/06/2016 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1680,30/10/2018 16:27,5/06/2016 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1678,30/10/2018 16:27,5/06/2016 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1677,30/10/2018 16:27,5/06/2016 23:59,4.3,200, Information Exposure,nan
CVE-2016-1676,30/10/2018 16:27,5/06/2016 23:59,6.8,284, Improper Access Control,nan
CVE-2016-1675,30/10/2018 16:27,5/06/2016 23:59,6.8,284, Improper Access Control,nan
CVE-2016-1672,30/10/2018 16:27,5/06/2016 23:59,6.8,284, Improper Access Control,nan
CVE-2016-1670,30/10/2018 16:27,14/05/2016 21:59,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1669,30/10/2018 16:27,14/05/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1668,30/10/2018 16:27,14/05/2016 21:59,6.8,284, Improper Access Control,nan
CVE-2016-1667,30/10/2018 16:27,14/05/2016 21:59,6.8,284, Improper Access Control,nan
CVE-2016-1665,30/10/2018 16:27,14/05/2016 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-1664,30/10/2018 16:27,14/05/2016 21:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1661,30/10/2018 16:27,14/05/2016 21:59,8.3,20, Improper Input Validation,nan
CVE-2016-1660,30/10/2018 16:27,14/05/2016 21:59,6.8,20, Improper Input Validation,nan
CVE-2016-1658,30/10/2018 16:27,18/04/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-1657,30/10/2018 16:27,18/04/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1656,30/10/2018 16:27,18/04/2016 10:59,5.0,284, Improper Access Control,nan
CVE-2016-1654,30/10/2018 16:27,18/04/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-1653,30/10/2018 16:27,18/04/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1652,30/10/2018 16:27,18/04/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1651,30/10/2018 16:27,18/04/2016 10:59,5.8,200, Information Exposure,nan
CVE-2016-1649,30/10/2018 16:27,29/03/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1646,30/10/2018 16:27,29/03/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1629,30/10/2018 16:27,21/02/2016 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1627,30/10/2018 16:27,14/02/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1626,30/10/2018 16:27,14/02/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1625,30/10/2018 16:27,14/02/2016 2:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-1624,30/10/2018 16:27,14/02/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1623,30/10/2018 16:27,14/02/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1622,30/10/2018 16:27,14/02/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1602,30/10/2018 16:27,23/03/2017 6:59,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-1572,30/10/2018 16:27,22/01/2016 15:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-1438,30/10/2018 16:27,23/06/2016 0:59,5.0,254, 7PK – Security Features,nan
CVE-2016-1288,30/10/2018 16:27,3/03/2016 22:59,5.0,20, Improper Input Validation,nan
CVE-2016-1254,30/10/2018 16:27,5/12/2017 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10165,30/10/2018 16:27,3/02/2017 19:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-10070,30/10/2018 16:27,3/03/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10068,30/10/2018 16:27,2/03/2017 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-10064,30/10/2018 16:27,2/03/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0787,30/10/2018 16:27,13/04/2016 17:59,4.3,200, Information Exposure,nan
CVE-2016-0747,30/10/2018 16:27,15/02/2016 19:59,5.0,399, Resource Management Errors,nan
CVE-2016-0126,30/10/2018 16:27,11/05/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0049,30/10/2018 16:27,10/02/2016 11:59,2.1,255, Credentials Management,nan
CVE-2016-0019,30/10/2018 16:27,13/01/2016 5:59,9.3,254, 7PK – Security Features,nan
CVE-2016-0009,30/10/2018 16:27,13/01/2016 5:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8948,30/10/2018 16:27,7/09/2016 20:59,5.0,125, Out-of-bounds Read,nan
CVE-2015-8874,30/10/2018 16:27,16/05/2016 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8873,30/10/2018 16:27,16/05/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-8872,30/10/2018 16:27,3/06/2016 14:59,2.1,189, Numeric Errors,nan
CVE-2015-8869,30/10/2018 16:27,13/06/2016 19:59,6.4,200, Information Exposure,nan
CVE-2015-8864,30/10/2018 16:27,13/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8863,30/10/2018 16:27,6/05/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8842,30/10/2018 16:27,20/04/2016 16:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-8805,30/10/2018 16:27,23/02/2016 19:59,7.5,310, Cryptographic Issues,nan
CVE-2015-8804,30/10/2018 16:27,23/02/2016 19:59,7.5,310, Cryptographic Issues,nan
CVE-2015-8803,30/10/2018 16:27,23/02/2016 19:59,7.5,310, Cryptographic Issues,nan
CVE-2015-8792,30/10/2018 16:27,29/01/2016 19:59,5.0,200, Information Exposure,nan
CVE-2015-8779,30/10/2018 16:27,19/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8778,30/10/2018 16:27,19/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8776,30/10/2018 16:27,19/04/2016 21:59,6.4,189, Numeric Errors,nan
CVE-2015-8705,30/10/2018 16:27,20/01/2016 15:59,6.6,20, Improper Input Validation,nan
CVE-2015-8704,30/10/2018 16:27,20/01/2016 15:59,6.8,20, Improper Input Validation,nan
CVE-2015-8668,30/10/2018 16:27,8/01/2016 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8618,30/10/2018 16:27,27/01/2016 20:59,5.0,200, Information Exposure,nan
CVE-2015-8614,30/10/2018 16:27,11/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8567,30/10/2018 16:27,13/04/2017 17:59,6.8,399, Resource Management Errors,nan
CVE-2015-8547,30/10/2018 16:27,8/01/2016 19:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-8461,30/10/2018 16:27,16/12/2015 15:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8105,30/10/2018 16:27,10/11/2015 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8078,30/10/2018 16:27,3/12/2015 20:59,7.5,189, Numeric Errors,nan
CVE-2015-8077,30/10/2018 16:27,3/12/2015 20:59,7.5,189, Numeric Errors,nan
CVE-2015-8076,30/10/2018 16:27,3/12/2015 20:59,7.5,200, Information Exposure,nan
CVE-2015-8041,30/10/2018 16:27,9/11/2015 16:59,5.0,189, Numeric Errors,nan
CVE-2015-8010,30/10/2018 16:27,27/03/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8000,30/10/2018 16:27,16/12/2015 15:59,5.0,20, Improper Input Validation,nan
CVE-2015-7976,30/10/2018 16:27,30/01/2017 21:59,4.0,254, 7PK – Security Features,nan
CVE-2015-7805,30/10/2018 16:27,17/11/2015 15:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7802,30/10/2018 16:27,20/04/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7758,30/10/2018 16:27,8/01/2016 19:59,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-7744,30/10/2018 16:27,22/01/2016 15:59,2.6,19, Data Processing Errors,nan
CVE-2015-7674,30/10/2018 16:27,26/10/2015 17:59,6.8,189, Numeric Errors,nan
CVE-2015-7673,30/10/2018 16:27,26/10/2015 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7575,30/10/2018 16:27,9/01/2016 2:59,4.3,19, Data Processing Errors,nan
CVE-2015-7554,30/10/2018 16:27,8/01/2016 19:59,7.5,254, 7PK – Security Features,nan
CVE-2015-7552,30/10/2018 16:27,18/04/2016 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7545,30/10/2018 16:27,13/04/2016 15:59,7.5,284, Improper Access Control,nan
CVE-2015-7223,30/10/2018 16:27,16/12/2015 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7222,30/10/2018 16:27,16/12/2015 11:59,6.8,189, Numeric Errors,nan
CVE-2015-7221,30/10/2018 16:27,16/12/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7220,30/10/2018 16:27,16/12/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7219,30/10/2018 16:27,16/12/2015 11:59,5.0,189, Numeric Errors,nan
CVE-2015-7218,30/10/2018 16:27,16/12/2015 11:59,5.0,189, Numeric Errors,nan
CVE-2015-7217,30/10/2018 16:27,16/12/2015 11:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7216,30/10/2018 16:27,16/12/2015 11:59,6.8,20, Improper Input Validation,nan
CVE-2015-7215,30/10/2018 16:27,16/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7214,30/10/2018 16:27,16/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7213,30/10/2018 16:27,16/12/2015 11:59,6.8,189, Numeric Errors,nan
CVE-2015-7212,30/10/2018 16:27,16/12/2015 11:59,7.5,189, Numeric Errors,nan
CVE-2015-7211,30/10/2018 16:27,16/12/2015 11:59,5.0,20, Improper Input Validation,nan
CVE-2015-7208,30/10/2018 16:27,16/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7207,30/10/2018 16:27,16/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7205,30/10/2018 16:27,16/12/2015 11:59,10.0,189, Numeric Errors,nan
CVE-2015-7204,30/10/2018 16:27,16/12/2015 11:59,6.8,17, DEPRECATED: Code,nan
CVE-2015-7203,30/10/2018 16:27,16/12/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7202,30/10/2018 16:27,16/12/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7201,30/10/2018 16:27,16/12/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6938,30/10/2018 16:27,21/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6355,30/10/2018 16:27,4/11/2015 3:59,5.0,200, Information Exposure,nan
CVE-2015-6309,30/10/2018 16:27,2/10/2015 15:59,6.8,399, Resource Management Errors,nan
CVE-2015-6175,30/10/2018 16:27,9/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6124,30/10/2018 16:27,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6093,30/10/2018 16:27,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5969,30/10/2018 16:27,8/04/2016 15:59,2.1,200, Information Exposure,nan
CVE-2015-5957,30/10/2018 16:27,28/09/2015 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5828,30/10/2018 16:27,9/10/2015 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-5605,30/10/2018 16:27,23/07/2015 0:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-5479,30/10/2018 16:27,19/04/2016 14:59,4.3,189, Numeric Errors,nan
CVE-2015-5383,30/10/2018 16:27,23/05/2017 4:29,5.0,200, Information Exposure,nan
CVE-2015-5382,30/10/2018 16:27,23/05/2017 4:29,4.0,200, Information Exposure,nan
CVE-2015-5381,30/10/2018 16:27,23/05/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5356,30/10/2018 16:27,1/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5355,30/10/2018 16:27,1/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5309,30/10/2018 16:27,7/12/2015 20:59,4.3,189, Numeric Errors,nan
CVE-2015-5300,30/10/2018 16:27,21/07/2017 14:29,5.0,361, 7PK – Time and State,nan
CVE-2015-5235,30/10/2018 16:27,9/10/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-5234,30/10/2018 16:27,9/10/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-5231,30/10/2018 16:27,7/06/2016 14:06,2.1,200, Information Exposure,nan
CVE-2015-5228,30/10/2018 16:27,7/06/2016 14:06,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5219,30/10/2018 16:27,21/07/2017 14:29,5.0,704, Incorrect Type Conversion or Cast,nan
CVE-2015-5218,30/10/2018 16:27,9/11/2015 16:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5154,30/10/2018 16:27,12/08/2015 14:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4625,30/10/2018 16:27,26/10/2015 19:59,4.6,189, Numeric Errors,nan
CVE-2015-4620,30/10/2018 16:27,8/07/2015 14:59,7.8,17, DEPRECATED: Code,nan
CVE-2015-4588,30/10/2018 16:27,1/07/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4495,30/10/2018 16:27,8/08/2015 0:59,4.3,200, Information Exposure,nan
CVE-2015-4493,30/10/2018 16:27,16/08/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4491,30/10/2018 16:27,16/08/2015 1:59,6.8,189, Numeric Errors,nan
CVE-2015-4490,30/10/2018 16:27,16/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4489,30/10/2018 16:27,16/08/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4487,30/10/2018 16:27,16/08/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4486,30/10/2018 16:27,16/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4485,30/10/2018 16:27,16/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4484,30/10/2018 16:27,16/08/2015 1:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4483,30/10/2018 16:27,16/08/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-4482,30/10/2018 16:27,16/08/2015 1:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4481,30/10/2018 16:27,16/08/2015 1:59,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-4480,30/10/2018 16:27,16/08/2015 1:59,9.3,189, Numeric Errors,nan
CVE-2015-4479,30/10/2018 16:27,16/08/2015 1:59,10.0,189, Numeric Errors,nan
CVE-2015-4478,30/10/2018 16:27,16/08/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-4475,30/10/2018 16:27,16/08/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4473,30/10/2018 16:27,16/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4278,30/10/2018 16:27,16/07/2015 19:59,4.3,20, Improper Input Validation,nan
CVE-2015-4236,30/10/2018 16:27,10/07/2015 19:59,4.3,399, Resource Management Errors,nan
CVE-2015-4156,30/10/2018 16:27,2/06/2015 14:59,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-4145,30/10/2018 16:27,15/06/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2015-4144,30/10/2018 16:27,15/06/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4143,30/10/2018 16:27,15/06/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4142,30/10/2018 16:27,15/06/2015 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4141,30/10/2018 16:27,15/06/2015 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3622,30/10/2018 16:27,12/05/2015 19:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3340,30/10/2018 16:27,28/04/2015 14:59,2.9,200, Information Exposure,nan
CVE-2015-3336,30/10/2018 16:27,19/04/2015 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3335,30/10/2018 16:27,19/04/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3334,30/10/2018 16:27,19/04/2015 10:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-3256,30/10/2018 16:27,26/10/2015 19:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-3225,30/10/2018 16:27,26/07/2015 22:59,5.0,19, Data Processing Errors,nan
CVE-2015-3164,30/10/2018 16:27,1/07/2015 14:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-3148,30/10/2018 16:27,24/04/2015 14:59,5.0,284, Improper Access Control,nan
CVE-2015-3145,30/10/2018 16:27,24/04/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3138,30/10/2018 16:27,28/09/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2015-3044,30/10/2018 16:27,14/04/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-3040,30/10/2018 16:27,14/04/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-2774,30/10/2018 16:27,7/04/2016 21:59,4.3,200, Information Exposure,nan
CVE-2015-2738,30/10/2018 16:27,6/07/2015 2:01,10.0,17, DEPRECATED: Code,nan
CVE-2015-2737,30/10/2018 16:27,6/07/2015 2:01,10.0,17, DEPRECATED: Code,nan
CVE-2015-2734,30/10/2018 16:27,6/07/2015 2:01,10.0,17, DEPRECATED: Code,nan
CVE-2015-2718,30/10/2018 16:27,14/05/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-2717,30/10/2018 16:27,14/05/2015 10:59,6.8,189, Numeric Errors,nan
CVE-2015-2716,30/10/2018 16:27,14/05/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2715,30/10/2018 16:27,14/05/2015 10:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-2712,30/10/2018 16:27,14/05/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2711,30/10/2018 16:27,14/05/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-2710,30/10/2018 16:27,14/05/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2470,30/10/2018 16:27,15/08/2015 0:59,9.3,189, Numeric Errors,nan
CVE-2015-2466,30/10/2018 16:27,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2348,30/10/2018 16:27,30/03/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2331,30/10/2018 16:27,30/03/2015 10:59,7.5,189, Numeric Errors,nan
CVE-2015-2317,30/10/2018 16:27,25/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2316,30/10/2018 16:27,25/03/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-2305,30/10/2018 16:27,30/03/2015 10:59,6.8,189, Numeric Errors,nan
CVE-2015-2304,30/10/2018 16:27,15/03/2015 19:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2192,30/10/2018 16:27,8/03/2015 2:59,5.0,189, Numeric Errors,nan
CVE-2015-2191,30/10/2018 16:27,8/03/2015 2:59,5.0,189, Numeric Errors,nan
CVE-2015-2190,30/10/2018 16:27,8/03/2015 2:59,5.0,19, Data Processing Errors,nan
CVE-2015-2189,30/10/2018 16:27,8/03/2015 2:59,5.0,189, Numeric Errors,nan
CVE-2015-2188,30/10/2018 16:27,8/03/2015 2:59,5.0,19, Data Processing Errors,nan
CVE-2015-2187,30/10/2018 16:27,8/03/2015 2:59,5.0,20, Improper Input Validation,nan
CVE-2015-2180,30/10/2018 16:27,30/01/2017 22:59,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-2141,30/10/2018 16:27,1/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2059,30/10/2018 16:27,12/08/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1863,30/10/2018 16:27,28/04/2015 14:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1840,30/10/2018 16:27,26/07/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-1760,30/10/2018 16:27,10/06/2015 1:59,9.3,19, Data Processing Errors,nan
CVE-2015-1433,30/10/2018 16:27,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1382,30/10/2018 16:27,3/02/2015 16:59,5.0,20, Improper Input Validation,nan
CVE-2015-1381,30/10/2018 16:27,3/02/2015 16:59,5.0,399, Resource Management Errors,nan
CVE-2015-1380,30/10/2018 16:27,3/02/2015 16:59,5.0,20, Improper Input Validation,nan
CVE-2015-1349,30/10/2018 16:27,19/02/2015 3:01,5.4,399, Resource Management Errors,nan
CVE-2015-1345,30/10/2018 16:27,12/02/2015 16:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1288,30/10/2018 16:27,23/07/2015 0:59,6.8,17, DEPRECATED: Code,nan
CVE-2015-1287,30/10/2018 16:27,23/07/2015 0:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-1286,30/10/2018 16:27,23/07/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1285,30/10/2018 16:27,23/07/2015 0:59,5.0,200, Information Exposure,nan
CVE-2015-1284,30/10/2018 16:27,23/07/2015 0:59,7.5,20, Improper Input Validation,nan
CVE-2015-1281,30/10/2018 16:27,23/07/2015 0:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1280,30/10/2018 16:27,23/07/2015 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1279,30/10/2018 16:27,23/07/2015 0:59,7.5,189, Numeric Errors,nan
CVE-2015-1278,30/10/2018 16:27,23/07/2015 0:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1275,30/10/2018 16:27,23/07/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1274,30/10/2018 16:27,23/07/2015 0:59,6.8,254, 7PK – Security Features,nan
CVE-2015-1273,30/10/2018 16:27,23/07/2015 0:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1271,30/10/2018 16:27,23/07/2015 0:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1270,30/10/2018 16:27,23/07/2015 0:59,6.8,19, Data Processing Errors,nan
CVE-2015-1196,30/10/2018 16:27,21/01/2015 18:59,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-0848,30/10/2018 16:27,1/07/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0834,30/10/2018 16:27,25/02/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-0832,30/10/2018 16:27,25/02/2015 11:59,5.0,254, 7PK – Security Features,nan
CVE-2015-0830,30/10/2018 16:27,25/02/2015 11:59,5.0,399, Resource Management Errors,nan
CVE-2015-0829,30/10/2018 16:27,25/02/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0826,30/10/2018 16:27,25/02/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0825,30/10/2018 16:27,25/02/2015 11:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0824,30/10/2018 16:27,25/02/2015 11:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0821,30/10/2018 16:27,25/02/2015 11:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-0820,30/10/2018 16:27,25/02/2015 11:59,2.6,284, Improper Access Control,nan
CVE-2015-0819,30/10/2018 16:27,25/02/2015 11:59,4.3,19, Data Processing Errors,nan
CVE-2015-0812,30/10/2018 16:27,1/04/2015 10:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-0811,30/10/2018 16:27,1/04/2015 10:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0808,30/10/2018 16:27,1/04/2015 10:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-0806,30/10/2018 16:27,1/04/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-0805,30/10/2018 16:27,1/04/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-0804,30/10/2018 16:27,1/04/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0803,30/10/2018 16:27,1/04/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0802,30/10/2018 16:27,1/04/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0799,30/10/2018 16:27,8/04/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-0794,30/10/2018 16:27,19/11/2015 20:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-0778,30/10/2018 16:27,16/03/2015 14:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0734,30/10/2018 16:27,15/05/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0732,30/10/2018 16:27,29/07/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0624,30/10/2018 16:27,21/02/2015 11:59,4.3,20, Improper Input Validation,nan
CVE-2015-0605,30/10/2018 16:27,7/02/2015 4:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0564,30/10/2018 16:27,10/01/2015 2:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0563,30/10/2018 16:27,10/01/2015 2:59,5.0,20, Improper Input Validation,nan
CVE-2015-0561,30/10/2018 16:27,10/01/2015 2:59,5.0,20, Improper Input Validation,nan
CVE-2015-0560,30/10/2018 16:27,10/01/2015 2:59,5.0,19, Data Processing Errors,nan
CVE-2015-0552,30/10/2018 16:27,15/01/2015 15:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0348,30/10/2018 16:27,14/04/2015 22:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0295,30/10/2018 16:27,25/03/2015 14:59,5.0,189, Numeric Errors,nan
CVE-2015-0255,30/10/2018 16:27,13/02/2015 15:59,6.4,200, Information Exposure,nan
CVE-2015-0251,30/10/2018 16:27,8/04/2015 18:59,4.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-0248,30/10/2018 16:27,8/04/2015 18:59,5.0,399, Resource Management Errors,nan
CVE-2015-0245,30/10/2018 16:27,13/02/2015 15:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0236,30/10/2018 16:27,29/01/2015 15:59,3.5,200, Information Exposure,nan
CVE-2015-0228,30/10/2018 16:27,8/03/2015 2:59,5.0,20, Improper Input Validation,nan
CVE-2015-0202,30/10/2018 16:27,8/04/2015 18:59,7.8,399, Resource Management Errors,nan
CVE-2014-9854,30/10/2018 16:27,17/03/2017 14:59,5.0,399, Resource Management Errors,nan
CVE-2014-9853,30/10/2018 16:27,17/03/2017 14:59,4.3,399, Resource Management Errors,nan
CVE-2014-9852,30/10/2018 16:27,17/03/2017 14:59,7.5,913, Improper Control of Dynamically-Managed Code Resources,nan
CVE-2014-9851,30/10/2018 16:27,20/03/2017 16:59,5.0,20, Improper Input Validation,nan
CVE-2014-9850,30/10/2018 16:27,20/03/2017 16:59,5.0,399, Resource Management Errors,nan
CVE-2014-9849,30/10/2018 16:27,20/03/2017 16:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2014-9848,30/10/2018 16:27,20/03/2017 16:59,5.0,399, Resource Management Errors,nan
CVE-2014-9847,30/10/2018 16:27,20/03/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9846,30/10/2018 16:27,20/03/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9845,30/10/2018 16:27,20/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9844,30/10/2018 16:27,20/03/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2014-9843,30/10/2018 16:27,20/03/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9842,30/10/2018 16:27,20/03/2017 16:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2014-9841,30/10/2018 16:27,20/03/2017 16:59,7.5,388, 7PK – Errors,nan
CVE-2014-9773,30/10/2018 16:27,13/06/2016 19:59,5.0,284, Improper Access Control,nan
CVE-2014-9770,30/10/2018 16:27,20/04/2016 16:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-9765,30/10/2018 16:27,19/04/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9749,30/10/2018 16:27,6/11/2015 21:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9745,30/10/2018 16:27,14/09/2015 20:59,5.0,399, Resource Management Errors,nan
CVE-2014-9744,30/10/2018 16:27,24/08/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2014-9679,30/10/2018 16:27,19/02/2015 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9675,30/10/2018 16:27,8/02/2015 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9673,30/10/2018 16:27,8/02/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9672,30/10/2018 16:27,8/02/2015 11:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9670,30/10/2018 16:27,8/02/2015 11:59,4.3,189, Numeric Errors,nan
CVE-2014-9669,30/10/2018 16:27,8/02/2015 11:59,6.8,125, Out-of-bounds Read,nan
CVE-2014-9668,30/10/2018 16:27,8/02/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9667,30/10/2018 16:27,8/02/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9666,30/10/2018 16:27,8/02/2015 11:59,6.8,189, Numeric Errors,nan
CVE-2014-9665,30/10/2018 16:27,8/02/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9664,30/10/2018 16:27,8/02/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9663,30/10/2018 16:27,8/02/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9662,30/10/2018 16:27,8/02/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9660,30/10/2018 16:27,8/02/2015 11:59,7.5,476, NULL Pointer Dereference,nan
CVE-2014-9659,30/10/2018 16:27,8/02/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9658,30/10/2018 16:27,8/02/2015 11:59,7.5,125, Out-of-bounds Read,nan
CVE-2014-9657,30/10/2018 16:27,8/02/2015 11:59,7.5,125, Out-of-bounds Read,nan
CVE-2014-9656,30/10/2018 16:27,8/02/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9640,30/10/2018 16:27,23/01/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9601,30/10/2018 16:27,16/01/2015 16:59,5.0,20, Improper Input Validation,nan
CVE-2014-9556,30/10/2018 16:27,3/02/2015 16:59,5.0,189, Numeric Errors,nan
CVE-2014-9512,30/10/2018 16:27,12/02/2015 16:59,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-9488,30/10/2018 16:27,14/04/2015 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9462,30/10/2018 16:27,31/03/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2014-9273,30/10/2018 16:27,8/12/2014 16:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9221,30/10/2018 16:27,7/01/2015 19:59,5.0,19, Data Processing Errors,nan
CVE-2014-9220,30/10/2018 16:27,3/12/2014 1:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9116,30/10/2018 16:27,2/12/2014 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9066,30/10/2018 16:27,9/12/2014 23:59,4.7,17, DEPRECATED: Code,nan
CVE-2014-9065,30/10/2018 16:27,9/12/2014 23:59,4.4,17, DEPRECATED: Code,nan
CVE-2014-9030,30/10/2018 16:27,24/11/2014 15:59,7.1,20, Improper Input Validation,nan
CVE-2014-8961,30/10/2018 16:27,30/11/2014 11:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8959,30/10/2018 16:27,30/11/2014 11:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8867,30/10/2018 16:27,1/12/2014 15:59,4.9,17, DEPRECATED: Code,nan
CVE-2014-8866,30/10/2018 16:27,1/12/2014 15:59,4.7,17, DEPRECATED: Code,nan
CVE-2014-8810,30/10/2018 16:27,24/12/2014 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8809,30/10/2018 16:27,24/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8768,30/10/2018 16:27,20/11/2014 17:50,5.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2014-8767,30/10/2018 16:27,20/11/2014 17:50,5.0,189, Numeric Errors,nan
CVE-2014-8643,30/10/2018 16:27,14/01/2015 11:59,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-8642,30/10/2018 16:27,14/01/2015 11:59,4.3,310, Cryptographic Issues,nan
CVE-2014-8640,30/10/2018 16:27,14/01/2015 11:59,5.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-8600,30/10/2018 16:27,8/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8595,30/10/2018 16:27,19/11/2014 18:59,1.9,17, DEPRECATED: Code,nan
CVE-2014-8594,30/10/2018 16:27,19/11/2014 18:59,5.4,20, Improper Input Validation,nan
CVE-2014-8564,30/10/2018 16:27,13/11/2014 21:32,5.0,310, Cryptographic Issues,nan
CVE-2014-8483,30/10/2018 16:27,6/11/2014 15:55,5.0,125, Out-of-bounds Read,nan
CVE-2014-8326,30/10/2018 16:27,5/11/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8169,30/10/2018 16:27,18/03/2015 16:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-8158,30/10/2018 16:27,26/01/2015 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8157,30/10/2018 16:27,26/01/2015 15:59,7.5,189, Numeric Errors,nan
CVE-2014-8154,30/10/2018 16:27,27/01/2015 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8148,30/10/2018 16:27,26/01/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-8136,30/10/2018 16:27,19/12/2014 15:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-8127,30/10/2018 16:27,26/06/2017 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2014-8104,30/10/2018 16:27,3/12/2014 18:59,6.8,399, Resource Management Errors,nan
CVE-2014-7943,30/10/2018 16:27,22/01/2015 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7942,30/10/2018 16:27,22/01/2015 22:59,7.5,399, Resource Management Errors,nan
CVE-2014-7941,30/10/2018 16:27,22/01/2015 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7939,30/10/2018 16:27,22/01/2015 22:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-7817,30/10/2018 16:27,24/11/2014 15:59,4.6,20, Improper Input Validation,nan
CVE-2014-7155,30/10/2018 16:27,2/10/2014 14:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-7154,30/10/2018 16:27,2/10/2014 14:55,6.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-6300,30/10/2018 16:27,8/11/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5461,30/10/2018 16:27,4/09/2014 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5274,30/10/2018 16:27,22/08/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5149,30/10/2018 16:27,22/08/2014 14:55,4.7,399, Resource Management Errors,nan
CVE-2014-5146,30/10/2018 16:27,22/08/2014 14:55,4.7,399, Resource Management Errors,nan
CVE-2014-5026,30/10/2018 16:27,20/10/2014 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5025,30/10/2018 16:27,20/10/2014 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4987,30/10/2018 16:27,20/07/2014 11:12,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4617,30/10/2018 16:27,25/06/2014 11:19,5.0,20, Improper Input Validation,nan
CVE-2014-4616,30/10/2018 16:27,24/08/2017 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4165,30/10/2018 16:27,16/06/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4049,30/10/2018 16:27,18/06/2014 19:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4002,30/10/2018 16:27,3/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3985,30/10/2018 16:27,11/09/2014 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3730,30/10/2018 16:27,16/05/2014 15:55,4.3,20, Improper Input Validation,nan
CVE-2014-3707,30/10/2018 16:27,15/11/2014 20:59,4.3,200, Information Exposure,nan
CVE-2014-3694,30/10/2018 16:27,29/10/2014 10:55,6.4,310, Cryptographic Issues,nan
CVE-2014-3639,30/10/2018 16:27,22/09/2014 15:55,2.1,399, Resource Management Errors,nan
CVE-2014-3638,30/10/2018 16:27,22/09/2014 15:55,2.1,399, Resource Management Errors,nan
CVE-2014-3636,30/10/2018 16:27,25/10/2014 20:55,1.9,399, Resource Management Errors,nan
CVE-2014-3635,30/10/2018 16:27,22/09/2014 15:55,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3619,30/10/2018 16:27,27/03/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2014-3601,30/10/2018 16:27,1/09/2014 1:55,4.3,189, Numeric Errors,nan
CVE-2014-3598,30/10/2018 16:27,1/05/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2014-3594,30/10/2018 16:27,22/08/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3589,30/10/2018 16:27,25/08/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-3533,30/10/2018 16:27,19/07/2014 19:55,2.1,20, Improper Input Validation,nan
CVE-2014-3532,30/10/2018 16:27,19/07/2014 19:55,2.1,20, Improper Input Validation,nan
CVE-2014-3528,30/10/2018 16:27,19/08/2014 18:55,4.0,255, Credentials Management,nan
CVE-2014-3522,30/10/2018 16:27,19/08/2014 18:55,4.0,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2014-3494,30/10/2018 16:27,1/07/2014 16:55,4.3,200, Information Exposure,nan
CVE-2014-3475,30/10/2018 16:27,31/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3474,30/10/2018 16:27,31/10/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3473,30/10/2018 16:27,31/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3462,30/10/2018 16:27,7/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2014-3429,30/10/2018 16:27,7/08/2014 11:13,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3289,30/10/2018 16:27,10/06/2014 11:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2978,30/10/2018 16:27,11/06/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2977,30/10/2018 16:27,11/06/2014 14:55,10.0,189, Numeric Errors,nan
CVE-2014-2893,30/10/2018 16:27,23/04/2014 15:55,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-2576,30/10/2018 16:27,15/10/2014 14:55,6.8,310, Cryptographic Issues,nan
CVE-2014-2554,30/10/2018 16:27,23/04/2014 15:55,4.3,20, Improper Input Validation,nan
CVE-2014-2525,30/10/2018 16:27,28/03/2014 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2524,30/10/2018 16:27,20/08/2014 14:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-2386,30/10/2018 16:27,25/03/2014 16:55,5.0,189, Numeric Errors,nan
CVE-2014-2326,30/10/2018 16:27,27/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2195,30/10/2018 16:27,20/05/2014 11:13,4.3,20, Improper Input Validation,nan
CVE-2014-2119,30/10/2018 16:27,21/03/2014 1:04,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1934,30/10/2018 16:27,8/05/2014 14:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1909,30/10/2018 16:27,14/05/2014 0:55,7.5,189, Numeric Errors,nan
CVE-2014-1888,30/10/2018 16:27,1/03/2014 0:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1838,30/10/2018 16:27,11/03/2014 19:37,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1830,30/10/2018 16:27,15/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-1809,30/10/2018 16:27,14/05/2014 11:13,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1808,30/10/2018 16:27,14/05/2014 11:13,4.3,200, Information Exposure,nan
CVE-2014-1761,30/10/2018 16:27,25/03/2014 13:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1716,30/10/2018 16:27,9/04/2014 10:56,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1705,30/10/2018 16:27,16/03/2014 14:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1603,30/10/2018 16:27,14/05/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1564,30/10/2018 16:27,3/09/2014 10:55,4.3,824, Access of Uninitialized Pointer,nan
CVE-2014-1563,30/10/2018 16:27,3/09/2014 10:55,10.0,416, Use After Free,nan
CVE-2014-1542,30/10/2018 16:27,11/06/2014 10:57,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1528,30/10/2018 16:27,30/04/2014 10:49,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1526,30/10/2018 16:27,30/04/2014 10:49,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1525,30/10/2018 16:27,30/04/2014 10:49,9.3,399, Resource Management Errors,nan
CVE-2014-1522,30/10/2018 16:27,30/04/2014 10:49,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1502,30/10/2018 16:27,19/03/2014 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1499,30/10/2018 16:27,19/03/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1498,30/10/2018 16:27,19/03/2014 10:55,5.0,310, Cryptographic Issues,nan
CVE-2014-1490,30/10/2018 16:27,6/02/2014 5:44,5.0,399, Resource Management Errors,nan
CVE-2014-1489,30/10/2018 16:27,6/02/2014 5:44,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1488,30/10/2018 16:27,6/02/2014 5:44,10.0,399, Resource Management Errors,nan
CVE-2014-1484,30/10/2018 16:27,6/02/2014 5:44,5.0,200, Information Exposure,nan
CVE-2014-1483,30/10/2018 16:27,6/02/2014 5:44,4.3,200, Information Exposure,nan
CVE-2014-1480,30/10/2018 16:27,6/02/2014 5:44,4.3,20, Improper Input Validation,nan
CVE-2014-0591,30/10/2018 16:27,14/01/2014 4:29,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0483,30/10/2018 16:27,26/08/2014 14:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0482,30/10/2018 16:27,26/08/2014 14:55,6.0,287, Improper Authentication,nan
CVE-2014-0481,30/10/2018 16:27,26/08/2014 14:55,4.3,399, Resource Management Errors,nan
CVE-2014-0480,30/10/2018 16:27,26/08/2014 14:55,5.8,20, Improper Input Validation,nan
CVE-2014-0467,30/10/2018 16:27,14/03/2014 15:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0260,30/10/2018 16:27,15/01/2014 16:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0250,30/10/2018 16:27,16/11/2014 17:59,7.5,189, Numeric Errors,nan
CVE-2014-0187,30/10/2018 16:27,28/04/2014 14:09,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0181,30/10/2018 16:27,27/04/2014 0:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-0157,30/10/2018 16:27,15/04/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0133,30/10/2018 16:27,28/03/2014 15:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0128,30/10/2018 16:27,14/04/2014 15:09,5.0,20, Improper Input Validation,nan
CVE-2014-0019,30/10/2018 16:27,4/02/2014 21:55,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7423,30/10/2018 16:27,24/02/2015 15:59,5.0,17, DEPRECATED: Code,nan
CVE-2013-7243,30/10/2018 16:27,17/01/2014 15:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6858,30/10/2018 16:27,23/11/2013 17:55,1.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6712,30/10/2018 16:27,28/11/2013 4:37,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6673,30/10/2018 16:27,11/12/2013 15:55,5.8,310, Cryptographic Issues,nan
CVE-2013-6672,30/10/2018 16:27,11/12/2013 15:55,4.3,200, Information Exposure,nan
CVE-2013-6650,30/10/2018 16:27,28/01/2014 14:30,7.5,20, Improper Input Validation,nan
CVE-2013-6649,30/10/2018 16:27,28/01/2014 14:30,7.5,399, Resource Management Errors,nan
CVE-2013-6646,30/10/2018 16:27,16/01/2014 12:17,7.5,399, Resource Management Errors,nan
CVE-2013-6643,30/10/2018 16:27,16/01/2014 12:17,7.5,287, Improper Authentication,nan
CVE-2013-6621,30/10/2018 16:27,13/11/2013 15:55,7.5,399, Resource Management Errors,nan
CVE-2013-6420,30/10/2018 16:27,17/12/2013 4:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6394,30/10/2018 16:27,13/12/2013 18:07,2.1,310, Cryptographic Issues,nan
CVE-2013-6393,30/10/2018 16:27,6/02/2014 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6375,30/10/2018 16:27,23/11/2013 11:55,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-6230,30/10/2018 16:27,8/11/2013 4:47,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5919,30/10/2018 16:27,30/05/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2013-5619,30/10/2018 16:27,11/12/2013 15:55,6.8,189, Numeric Errors,nan
CVE-2013-5589,30/10/2018 16:27,29/08/2013 12:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5588,30/10/2018 16:27,29/08/2013 12:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5537,30/10/2018 16:27,24/10/2013 10:53,7.8,20, Improper Input Validation,nan
CVE-2013-5211,30/10/2018 16:27,2/01/2014 14:59,5.0,20, Improper Input Validation,nan
CVE-2013-5029,30/10/2018 16:27,19/08/2013 23:55,4.3,20, Improper Input Validation,nan
CVE-2013-5018,30/10/2018 16:27,28/08/2013 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4540,30/10/2018 16:27,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4509,30/10/2018 16:27,23/11/2013 19:55,1.9,255, Credentials Management,nan
CVE-2013-4487,30/10/2018 16:27,20/11/2013 14:12,5.0,189, Numeric Errors,nan
CVE-2013-4344,30/10/2018 16:27,4/10/2013 17:55,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4242,30/10/2018 16:27,19/08/2013 23:55,1.9,200, Information Exposure,nan
CVE-2013-4159,30/10/2018 16:27,6/08/2014 18:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4132,30/10/2018 16:27,16/09/2013 19:14,5.0,310, Cryptographic Issues,nan
CVE-2013-4124,30/10/2018 16:27,6/08/2013 2:56,5.0,189, Numeric Errors,nan
CVE-2013-4123,30/10/2018 16:27,16/09/2013 19:14,5.0,20, Improper Input Validation,nan
CVE-2013-4118,30/10/2018 16:27,3/10/2016 21:59,5.0,476, NULL Pointer Dereference,nan
CVE-2013-4115,30/10/2018 16:27,9/08/2013 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4111,30/10/2018 16:27,28/08/2013 21:55,5.8,20, Improper Input Validation,nan
CVE-2013-4082,30/10/2018 16:27,9/06/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4081,30/10/2018 16:27,9/06/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4079,30/10/2018 16:27,9/06/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4078,30/10/2018 16:27,9/06/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-4077,30/10/2018 16:27,9/06/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4076,30/10/2018 16:27,9/06/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4075,30/10/2018 16:27,9/06/2013 21:55,5.0,399, Resource Management Errors,nan
CVE-2013-4074,30/10/2018 16:27,9/06/2013 21:55,5.0,189, Numeric Errors,nan
CVE-2013-3713,30/10/2018 16:27,11/01/2014 1:55,4.4,200, Information Exposure,nan
CVE-2013-3562,30/10/2018 16:27,25/05/2013 3:18,5.0,189, Numeric Errors,nan
CVE-2013-3561,30/10/2018 16:27,25/05/2013 3:18,7.8,189, Numeric Errors,nan
CVE-2013-3560,30/10/2018 16:27,25/05/2013 3:18,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2013-3559,30/10/2018 16:27,25/05/2013 3:18,5.0,189, Numeric Errors,nan
CVE-2013-3558,30/10/2018 16:27,25/05/2013 3:18,5.0,189, Numeric Errors,nan
CVE-2013-3557,30/10/2018 16:27,25/05/2013 3:18,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3556,30/10/2018 16:27,25/05/2013 3:18,5.0,20, Improper Input Validation,nan
CVE-2013-3555,30/10/2018 16:27,25/05/2013 3:18,5.0,20, Improper Input Validation,nan
CVE-2013-3495,30/10/2018 16:27,28/08/2013 21:55,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-3395,30/10/2018 16:27,2/07/2013 3:43,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3386,30/10/2018 16:27,27/06/2013 21:55,7.8,399, Resource Management Errors,nan
CVE-2013-3385,30/10/2018 16:27,27/06/2013 21:55,7.8,399, Resource Management Errors,nan
CVE-2013-3384,30/10/2018 16:27,27/06/2013 21:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3154,30/10/2018 16:27,10/07/2013 3:46,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-2927,30/10/2018 16:27,16/10/2013 20:55,6.8,399, Resource Management Errors,nan
CVE-2013-2919,30/10/2018 16:27,2/10/2013 10:35,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2695,30/10/2018 16:27,28/03/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2694,30/10/2018 16:27,28/03/2014 15:55,5.8,20, Improper Input Validation,nan
CVE-2013-2488,30/10/2018 16:27,7/03/2013 15:55,5.0,20, Improper Input Validation,nan
CVE-2013-2487,30/10/2018 16:27,7/03/2013 15:55,7.8,189, Numeric Errors,nan
CVE-2013-2486,30/10/2018 16:27,7/03/2013 15:55,6.1,189, Numeric Errors,nan
CVE-2013-2483,30/10/2018 16:27,7/03/2013 15:55,3.3,189, Numeric Errors,nan
CVE-2013-2481,30/10/2018 16:27,7/03/2013 15:55,2.9,189, Numeric Errors,nan
CVE-2013-2478,30/10/2018 16:27,7/03/2013 15:55,3.3,189, Numeric Errors,nan
CVE-2013-2477,30/10/2018 16:27,7/03/2013 15:55,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2476,30/10/2018 16:27,7/03/2013 15:55,6.1,399, Resource Management Errors,nan
CVE-2013-2266,30/10/2018 16:27,28/03/2013 16:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2191,30/10/2018 16:27,8/02/2014 0:55,4.3,20, Improper Input Validation,nan
CVE-2013-2190,30/10/2018 16:27,17/10/2013 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2168,30/10/2018 16:27,3/07/2013 18:55,1.9,20, Improper Input Validation,nan
CVE-2013-2161,30/10/2018 16:27,20/08/2013 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2145,30/10/2018 16:27,19/08/2013 23:55,4.4,20, Improper Input Validation,nan
CVE-2013-2139,30/10/2018 16:27,16/01/2014 5:05,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2126,30/10/2018 16:27,14/08/2013 15:55,7.5,399, Resource Management Errors,nan
CVE-2013-2088,30/10/2018 16:27,31/07/2013 13:20,7.1,20, Improper Input Validation,nan
CVE-2013-2065,30/10/2018 16:27,2/11/2013 19:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2064,30/10/2018 16:27,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-2061,30/10/2018 16:27,18/11/2013 2:55,2.6,200, Information Exposure,nan
CVE-2013-2027,30/10/2018 16:27,13/02/2015 15:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1987,30/10/2018 16:27,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1846,30/10/2018 16:27,2/05/2013 14:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1845,30/10/2018 16:27,2/05/2013 14:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1379,30/10/2018 16:27,10/04/2013 3:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1362,30/10/2018 16:27,9/07/2013 17:55,7.5,20, Improper Input Validation,nan
CVE-2013-1090,30/10/2018 16:27,6/12/2013 17:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0899,30/10/2018 16:27,23/02/2013 21:55,5.0,189, Numeric Errors,nan
CVE-2013-0898,30/10/2018 16:27,23/02/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0897,30/10/2018 16:27,23/02/2013 21:55,4.3,189, Numeric Errors,nan
CVE-2013-0896,30/10/2018 16:27,23/02/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0893,30/10/2018 16:27,23/02/2013 21:55,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0891,30/10/2018 16:27,23/02/2013 21:55,7.5,189, Numeric Errors,nan
CVE-2013-0890,30/10/2018 16:27,23/02/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0889,30/10/2018 16:27,23/02/2013 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0888,30/10/2018 16:27,23/02/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0885,30/10/2018 16:27,23/02/2013 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0883,30/10/2018 16:27,23/02/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-0882,30/10/2018 16:27,23/02/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0881,30/10/2018 16:27,23/02/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-0880,30/10/2018 16:27,23/02/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0837,30/10/2018 16:27,15/01/2013 21:55,7.5,20, Improper Input Validation,nan
CVE-2013-0836,30/10/2018 16:27,15/01/2013 21:55,6.8,399, Resource Management Errors,nan
CVE-2013-0834,30/10/2018 16:27,15/01/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0833,30/10/2018 16:27,15/01/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0832,30/10/2018 16:27,15/01/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0831,30/10/2018 16:27,15/01/2013 21:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0830,30/10/2018 16:27,15/01/2013 21:55,7.5,20, Improper Input Validation,nan
CVE-2013-0348,30/10/2018 16:27,13/12/2013 18:07,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-0338,30/10/2018 16:27,25/04/2013 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0233,30/10/2018 16:27,25/04/2013 23:55,6.8,399, Resource Management Errors,nan
CVE-2013-0211,30/10/2018 16:27,30/09/2013 22:55,5.0,189, Numeric Errors,nan
CVE-2012-6621,30/10/2018 16:27,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6303,30/10/2018 16:27,28/10/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6093,30/10/2018 16:27,24/02/2013 19:55,4.3,310, Cryptographic Issues,nan
CVE-2012-6074,30/10/2018 16:27,24/02/2013 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6073,30/10/2018 16:27,24/02/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-6072,30/10/2018 16:27,24/02/2013 22:55,4.3,20, Improper Input Validation,nan
CVE-2012-5154,30/10/2018 16:27,15/01/2013 21:55,7.5,189, Numeric Errors,nan
CVE-2012-5153,30/10/2018 16:27,15/01/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5152,30/10/2018 16:27,15/01/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5150,30/10/2018 16:27,15/01/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2012-5149,30/10/2018 16:27,15/01/2013 21:55,7.5,189, Numeric Errors,nan
CVE-2012-5148,30/10/2018 16:27,15/01/2013 21:55,7.5,20, Improper Input Validation,nan
CVE-2012-5147,30/10/2018 16:27,15/01/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2012-5146,30/10/2018 16:27,15/01/2013 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5145,30/10/2018 16:27,15/01/2013 21:55,7.5,416, Use After Free,nan
CVE-2012-5144,30/10/2018 16:27,12/12/2012 11:38,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5143,30/10/2018 16:27,12/12/2012 11:38,10.0,190, Integer Overflow or Wraparound,nan
CVE-2012-5142,30/10/2018 16:27,12/12/2012 11:38,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5140,30/10/2018 16:27,12/12/2012 11:38,10.0,416, Use After Free,nan
CVE-2012-5139,30/10/2018 16:27,12/12/2012 11:38,10.0,416, Use After Free,nan
CVE-2012-5137,30/10/2018 16:27,4/12/2012 6:05,10.0,416, Use After Free,nan
CVE-2012-5136,30/10/2018 16:27,28/11/2012 1:55,6.8,20, Improper Input Validation,nan
CVE-2012-5135,30/10/2018 16:27,28/11/2012 1:55,7.5,399, Resource Management Errors,nan
CVE-2012-5133,30/10/2018 16:27,28/11/2012 1:55,7.5,416, Use After Free,nan
CVE-2012-5130,30/10/2018 16:27,28/11/2012 1:55,5.0,125, Out-of-bounds Read,nan
CVE-2012-4540,30/10/2018 16:27,11/11/2012 13:00,6.8,189, Numeric Errors,nan
CVE-2012-4296,30/10/2018 16:27,16/08/2012 10:38,3.3,399, Resource Management Errors,nan
CVE-2012-4293,30/10/2018 16:27,16/08/2012 10:38,3.3,189, Numeric Errors,nan
CVE-2012-4292,30/10/2018 16:27,16/08/2012 10:38,3.3,20, Improper Input Validation,nan
CVE-2012-4291,30/10/2018 16:27,16/08/2012 10:38,3.3,399, Resource Management Errors,nan
CVE-2012-4290,30/10/2018 16:27,16/08/2012 10:38,3.3,399, Resource Management Errors,nan
CVE-2012-4289,30/10/2018 16:27,16/08/2012 10:38,3.3,399, Resource Management Errors,nan
CVE-2012-4288,30/10/2018 16:27,16/08/2012 10:38,3.3,189, Numeric Errors,nan
CVE-2012-4285,30/10/2018 16:27,16/08/2012 10:38,3.3,189, Numeric Errors,nan
CVE-2012-4049,30/10/2018 16:27,24/07/2012 19:55,2.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-3817,30/10/2018 16:27,25/07/2012 10:42,7.8,20, Improper Input Validation,nan
CVE-2012-3534,30/10/2018 16:27,31/08/2012 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3425,30/10/2018 16:27,13/08/2012 20:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2888,30/10/2018 16:27,26/09/2012 10:56,7.5,399, Resource Management Errors,nan
CVE-2012-2887,30/10/2018 16:27,26/09/2012 10:56,7.5,399, Resource Management Errors,nan
CVE-2012-2886,30/10/2018 16:27,26/09/2012 10:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2885,30/10/2018 16:27,26/09/2012 10:56,7.5,399, Resource Management Errors,nan
CVE-2012-2884,30/10/2018 16:27,26/09/2012 10:56,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2883,30/10/2018 16:27,26/09/2012 10:56,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2882,30/10/2018 16:27,26/09/2012 10:56,6.8,20, Improper Input Validation,nan
CVE-2012-2881,30/10/2018 16:27,26/09/2012 10:56,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2880,30/10/2018 16:27,26/09/2012 10:56,7.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2879,30/10/2018 16:27,26/09/2012 10:56,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2878,30/10/2018 16:27,26/09/2012 10:56,7.5,399, Resource Management Errors,nan
CVE-2012-2877,30/10/2018 16:27,26/09/2012 10:56,5.0,20, Improper Input Validation,nan
CVE-2012-2876,30/10/2018 16:27,26/09/2012 10:56,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2874,30/10/2018 16:27,26/09/2012 10:56,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2872,30/10/2018 16:27,31/08/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2869,30/10/2018 16:27,31/08/2012 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2868,30/10/2018 16:27,31/08/2012 19:55,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2865,30/10/2018 16:27,31/08/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2553,30/10/2018 16:27,14/11/2012 0:55,7.2,399, Resource Management Errors,nan
CVE-2012-2328,30/10/2018 16:27,10/02/2014 18:15,5.0,310, Cryptographic Issues,nan
CVE-2012-2273,30/10/2018 16:27,20/04/2012 4:02,4.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2109,30/10/2018 16:27,4/09/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1872,30/10/2018 16:27,12/06/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1600,30/10/2018 16:27,14/05/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1524,30/10/2018 16:27,10/07/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1522,30/10/2018 16:27,10/07/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1095,30/10/2018 16:27,6/02/2014 17:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0871,30/10/2018 16:27,18/04/2014 14:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-0454,30/10/2018 16:27,14/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2012-0427,30/10/2018 16:27,2/12/2013 4:36,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0425,30/10/2018 16:27,2/12/2013 4:36,7.8,200, Information Exposure,nan
CVE-2012-0325,30/10/2018 16:27,9/03/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0324,30/10/2018 16:27,9/03/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0178,30/10/2018 16:27,9/05/2012 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4434,30/10/2018 16:27,11/11/2011 21:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4093,30/10/2018 16:27,10/02/2014 18:15,5.8,190, Integer Overflow or Wraparound,nan
CVE-2011-4091,30/10/2018 16:27,10/02/2014 18:15,5.0,287, Improper Authentication,nan
CVE-2011-3404,30/10/2018 16:27,14/12/2011 0:55,4.3,200, Information Exposure,nan
CVE-2011-3401,30/10/2018 16:27,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3377,30/10/2018 16:27,5/02/2014 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3098,30/10/2018 16:27,16/05/2012 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-3079,30/10/2018 16:27,1/05/2012 10:12,10.0,399, Resource Management Errors,nan
CVE-2011-2725,30/10/2018 16:27,4/02/2014 23:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2198,30/10/2018 16:27,21/05/2014 14:55,3.5,399, Resource Management Errors,nan
CVE-2011-2018,30/10/2018 16:27,14/12/2011 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-2013,30/10/2018 16:27,8/11/2011 21:55,10.0,189, Numeric Errors,nan
CVE-2011-2004,30/10/2018 16:27,8/11/2011 21:55,7.1,20, Improper Input Validation,nan
CVE-2011-2002,30/10/2018 16:27,12/10/2011 2:52,4.7,20, Improper Input Validation,nan
CVE-2011-1998,30/10/2018 16:27,12/10/2011 2:52,9.3,20, Improper Input Validation,nan
CVE-2011-1971,30/10/2018 16:27,10/08/2011 21:55,4.7,399, Resource Management Errors,nan
CVE-2011-1965,30/10/2018 16:27,10/08/2011 21:55,7.1,399, Resource Management Errors,nan
CVE-2011-1877,30/10/2018 16:27,13/07/2011 23:55,7.2,399, Resource Management Errors,nan
CVE-2011-1871,30/10/2018 16:27,10/08/2011 21:55,7.8,399, Resource Management Errors,nan
CVE-2011-1267,30/10/2018 16:27,16/06/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-0468,30/10/2018 16:27,4/04/2011 12:27,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-0461,30/10/2018 16:27,4/04/2011 12:27,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0460,30/10/2018 16:27,16/04/2014 18:37,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0091,30/10/2018 16:27,10/02/2011 16:00,6.4,287, Improper Authentication,nan
CVE-2011-0042,30/10/2018 16:27,9/03/2011 23:00,9.3,20, Improper Input Validation,nan
CVE-2011-0031,30/10/2018 16:27,9/02/2011 1:00,4.3,200, Information Exposure,nan
CVE-2010-5052,30/10/2018 16:27,23/11/2011 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4863,30/10/2018 16:27,5/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3961,30/10/2018 16:27,16/12/2010 19:33,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-3944,30/10/2018 16:27,16/12/2010 19:33,7.2,20, Improper Input Validation,nan
CVE-2010-3342,30/10/2018 16:27,16/12/2010 19:33,4.3,200, Information Exposure,nan
CVE-2010-3338,30/10/2018 16:27,16/12/2010 19:33,7.2,20, Improper Input Validation,nan
CVE-2010-3229,30/10/2018 16:27,13/10/2010 19:00,7.1,20, Improper Input Validation,nan
CVE-2010-3225,30/10/2018 16:27,13/10/2010 19:00,7.6,399, Resource Management Errors,nan
CVE-2010-3110,30/10/2018 16:27,12/10/2010 20:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3087,30/10/2018 16:27,28/09/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2555,30/10/2018 16:27,11/08/2010 18:47,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2554,30/10/2018 16:27,11/08/2010 18:47,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2553,30/10/2018 16:27,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2552,30/10/2018 16:27,11/08/2010 18:47,7.8,399, Resource Management Errors,nan
CVE-2010-2551,30/10/2018 16:27,11/08/2010 18:47,7.8,20, Improper Input Validation,nan
CVE-2010-2532,30/10/2018 16:27,3/09/2010 20:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1893,30/10/2018 16:27,11/08/2010 18:47,6.8,189, Numeric Errors,nan
CVE-2010-1892,30/10/2018 16:27,11/08/2010 18:47,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1890,30/10/2018 16:27,11/08/2010 18:47,4.6,20, Improper Input Validation,nan
CVE-2010-1886,30/10/2018 16:27,16/08/2010 18:39,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-1262,30/10/2018 16:27,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1261,30/10/2018 16:27,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1260,30/10/2018 16:27,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1259,30/10/2018 16:27,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1257,30/10/2018 16:27,8/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1255,30/10/2018 16:27,8/06/2010 22:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0819,30/10/2018 16:27,8/06/2010 20:30,7.2,20, Improper Input Validation,nan
CVE-2010-0811,30/10/2018 16:27,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0485,30/10/2018 16:27,8/06/2010 22:30,6.8,20, Improper Input Validation,nan
CVE-2010-0482,30/10/2018 16:27,14/04/2010 16:00,4.7,20, Improper Input Validation,nan
CVE-2010-0477,30/10/2018 16:27,14/04/2010 16:00,10.0,399, Resource Management Errors,nan
CVE-2010-0299,30/10/2018 16:27,22/02/2010 18:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0270,30/10/2018 16:27,14/04/2010 16:00,10.0,20, Improper Input Validation,nan
CVE-2010-0265,30/10/2018 16:27,10/03/2010 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0252,30/10/2018 16:27,10/02/2010 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0250,30/10/2018 16:27,10/02/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0231,30/10/2018 16:27,10/02/2010 18:30,10.0,310, Cryptographic Issues,nan
CVE-2010-0022,30/10/2018 16:27,10/02/2010 18:30,7.8,20, Improper Input Validation,nan
CVE-2010-0021,30/10/2018 16:27,10/02/2010 18:30,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-0020,30/10/2018 16:27,10/02/2010 18:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0018,30/10/2018 16:27,13/01/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2009-3678,30/10/2018 16:27,14/05/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2009-2524,30/10/2018 16:27,14/10/2009 10:30,7.8,189, Numeric Errors,nan
CVE-2009-2510,30/10/2018 16:27,14/10/2009 10:30,6.8,310, Cryptographic Issues,nan
CVE-2009-1297,30/10/2018 16:27,23/10/2009 18:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0310,30/10/2018 16:27,18/02/2009 16:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0265,30/10/2018 16:27,26/01/2009 15:30,5.0,287, Improper Authentication,nan
CVE-2008-4636,30/10/2018 16:27,27/11/2008 0:30,7.2,20, Improper Input Validation,nan
CVE-2008-2939,30/10/2018 16:27,6/08/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5200,30/10/2018 16:27,14/10/2007 18:17,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5197,30/10/2018 16:27,2/11/2007 16:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6375,30/10/2018 16:26,12/09/2016 1:59,5.7,399, Resource Management Errors,nan
CVE-2016-1571,30/10/2018 16:26,22/01/2016 15:59,4.7,17, DEPRECATED: Code,nan
CVE-2016-1570,30/10/2018 16:26,22/01/2016 15:59,6.9,20, Improper Input Validation,nan
CVE-2016-1153,30/10/2018 16:26,17/02/2016 2:59,6.8,20, Improper Input Validation,nan
CVE-2015-7972,30/10/2018 16:26,30/10/2015 15:59,2.1,399, Resource Management Errors,nan
CVE-2015-7971,30/10/2018 16:26,30/10/2015 15:59,2.1,19, Data Processing Errors,nan
CVE-2015-7969,30/10/2018 16:26,30/10/2015 15:59,4.9,399, Resource Management Errors,nan
CVE-2015-7835,30/10/2018 16:26,30/10/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7813,30/10/2018 16:26,30/10/2015 15:59,2.1,399, Resource Management Errors,nan
CVE-2015-7812,30/10/2018 16:26,17/11/2015 15:59,4.9,254, 7PK – Security Features,nan
CVE-2015-7311,30/10/2018 16:26,1/10/2015 20:59,3.6,17, DEPRECATED: Code,nan
CVE-2015-5166,30/10/2018 16:26,12/08/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5165,30/10/2018 16:26,12/08/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-4164,30/10/2018 16:26,15/06/2015 15:59,4.9,399, Resource Management Errors,nan
CVE-2015-3259,30/10/2018 16:26,16/07/2015 14:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-2756,30/10/2018 16:26,1/04/2015 14:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2752,30/10/2018 16:26,1/04/2015 14:59,4.9,20, Improper Input Validation,nan
CVE-2015-2751,30/10/2018 16:26,1/04/2015 14:59,7.1,17, DEPRECATED: Code,nan
CVE-2015-2152,30/10/2018 16:26,18/03/2015 16:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2151,30/10/2018 16:26,12/03/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2150,30/10/2018 16:26,12/03/2015 14:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2045,30/10/2018 16:26,12/03/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-2044,30/10/2018 16:26,12/03/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-1563,30/10/2018 16:26,9/02/2015 11:59,2.1,399, Resource Management Errors,nan
CVE-2015-0268,30/10/2018 16:26,16/02/2015 15:59,4.9,20, Improper Input Validation,nan
CVE-2014-7188,30/10/2018 16:26,2/10/2014 14:55,8.3,399, Resource Management Errors,nan
CVE-2014-7156,30/10/2018 16:26,2/10/2014 14:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-5147,30/10/2018 16:26,29/08/2014 16:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4022,30/10/2018 16:26,9/07/2014 14:55,2.7,200, Information Exposure,nan
CVE-2014-4021,30/10/2018 16:26,18/06/2014 19:55,2.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3969,30/10/2018 16:26,5/06/2014 20:55,7.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-3717,30/10/2018 16:26,19/05/2014 14:55,3.3,20, Improper Input Validation,nan
CVE-2014-3716,30/10/2018 16:26,19/05/2014 14:55,1.9,20, Improper Input Validation,nan
CVE-2014-3715,30/10/2018 16:26,19/05/2014 14:55,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3714,30/10/2018 16:26,19/05/2014 14:55,3.3,20, Improper Input Validation,nan
CVE-2014-3261,30/10/2018 16:26,26/05/2014 0:25,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3125,30/10/2018 16:26,2/05/2014 14:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3124,30/10/2018 16:26,7/05/2014 10:55,6.7,264, Permissions Privileges and Access Controls,nan
CVE-2014-2986,30/10/2018 16:26,28/04/2014 14:09,5.5,20, Improper Input Validation,nan
CVE-2014-2915,30/10/2018 16:26,24/04/2014 14:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1637,30/10/2018 16:26,22/01/2014 19:55,5.0,200, Information Exposure,nan
CVE-2014-1636,30/10/2018 16:26,22/01/2014 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0088,30/10/2018 16:26,29/04/2014 14:38,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7316,30/10/2018 16:26,24/01/2014 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7149,30/10/2018 16:26,28/12/2013 4:53,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5721,30/10/2018 16:26,16/09/2013 13:01,4.3,20, Improper Input Validation,nan
CVE-2013-5720,30/10/2018 16:26,16/09/2013 13:01,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5719,30/10/2018 16:26,16/09/2013 13:01,4.3,399, Resource Management Errors,nan
CVE-2013-5718,30/10/2018 16:26,16/09/2013 13:01,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5717,30/10/2018 16:26,16/09/2013 13:01,4.3,20, Improper Input Validation,nan
CVE-2013-5604,30/10/2018 16:26,30/10/2013 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5602,30/10/2018 16:26,30/10/2013 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5596,30/10/2018 16:26,30/10/2013 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5593,30/10/2018 16:26,30/10/2013 10:55,4.3,20, Improper Input Validation,nan
CVE-2013-5136,30/10/2018 16:26,24/10/2013 3:48,4.3,200, Information Exposure,nan
CVE-2013-5135,30/10/2018 16:26,24/10/2013 3:48,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2013-4703,30/10/2018 16:26,10/09/2013 11:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2070,30/10/2018 16:26,20/07/2013 3:37,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2028,30/10/2018 16:26,20/07/2013 3:37,7.5,189, Numeric Errors,nan
CVE-2013-1624,30/10/2018 16:26,8/02/2013 19:55,4.0,310, Cryptographic Issues,nan
CVE-2013-1214,30/10/2018 16:26,24/04/2013 10:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1192,30/10/2018 16:26,25/04/2013 10:55,9.3,20, Improper Input Validation,nan
CVE-2013-1181,30/10/2018 16:26,25/04/2013 10:55,7.8,20, Improper Input Validation,nan
CVE-2012-6354,30/10/2018 16:26,19/02/2013 19:55,7.5,287, Improper Authentication,nan
CVE-2012-5129,30/10/2018 16:26,4/12/2012 6:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5054,30/10/2018 16:26,24/09/2012 17:55,9.3,189, Numeric Errors,nan
CVE-2012-4360,30/10/2018 16:26,15/09/2012 10:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4001,30/10/2018 16:26,15/09/2012 10:37,5.0,20, Improper Input Validation,nan
CVE-2012-3236,30/10/2018 16:26,12/07/2012 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3074,30/10/2018 16:26,12/07/2012 10:34,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2486,30/10/2018 16:26,12/07/2012 10:34,8.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2089,30/10/2018 16:26,17/04/2012 21:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1339,30/10/2018 16:26,6/08/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0773,30/10/2018 16:26,28/03/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0772,30/10/2018 16:26,28/03/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0769,30/10/2018 16:26,5/03/2012 21:55,5.0,189, Numeric Errors,nan
CVE-2012-0768,30/10/2018 16:26,5/03/2012 21:55,10.0,399, Resource Management Errors,nan
CVE-2012-0767,30/10/2018 16:26,16/02/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0756,30/10/2018 16:26,16/02/2012 19:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0755,30/10/2018 16:26,16/02/2012 19:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0754,30/10/2018 16:26,16/02/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0753,30/10/2018 16:26,16/02/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0752,30/10/2018 16:26,16/02/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4963,30/10/2018 16:26,26/07/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4023,30/10/2018 16:26,3/05/2012 10:11,7.8,399, Resource Management Errors,nan
CVE-2011-3992,30/10/2018 16:26,3/11/2011 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3208,30/10/2018 16:26,14/09/2011 17:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2896,30/10/2018 16:26,19/08/2011 17:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2569,30/10/2018 16:26,27/10/2011 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2444,30/10/2018 16:26,22/09/2011 3:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2430,30/10/2018 16:26,22/09/2011 3:38,9.3,20, Improper Input Validation,nan
CVE-2011-2429,30/10/2018 16:26,22/09/2011 3:38,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2428,30/10/2018 16:26,22/09/2011 3:38,9.3,20, Improper Input Validation,nan
CVE-2011-2427,30/10/2018 16:26,22/09/2011 3:38,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2426,30/10/2018 16:26,22/09/2011 3:38,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2425,30/10/2018 16:26,10/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2424,30/10/2018 16:26,15/08/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2417,30/10/2018 16:26,10/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2416,30/10/2018 16:26,10/08/2011 22:55,10.0,189, Numeric Errors,nan
CVE-2011-2415,30/10/2018 16:26,10/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2414,30/10/2018 16:26,10/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2202,30/10/2018 16:26,16/06/2011 23:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-2140,30/10/2018 16:26,10/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2139,30/10/2018 16:26,10/08/2011 22:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-2138,30/10/2018 16:26,10/08/2011 22:55,10.0,189, Numeric Errors,nan
CVE-2011-2137,30/10/2018 16:26,10/08/2011 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2136,30/10/2018 16:26,10/08/2011 22:55,10.0,189, Numeric Errors,nan
CVE-2011-2135,30/10/2018 16:26,10/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2134,30/10/2018 16:26,10/08/2011 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2130,30/10/2018 16:26,10/08/2011 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2110,30/10/2018 16:26,16/06/2011 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2107,30/10/2018 16:26,9/06/2011 2:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1926,30/10/2018 16:26,23/05/2011 22:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1471,30/10/2018 16:26,20/03/2011 2:00,4.3,189, Numeric Errors,nan
CVE-2011-1470,30/10/2018 16:26,20/03/2011 2:00,4.3,20, Improper Input Validation,nan
CVE-2011-1468,30/10/2018 16:26,20/03/2011 2:00,4.3,399, Resource Management Errors,nan
CVE-2011-1466,30/10/2018 16:26,20/03/2011 2:00,5.0,189, Numeric Errors,nan
CVE-2011-1464,30/10/2018 16:26,20/03/2011 2:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1178,30/10/2018 16:26,6/06/2011 19:55,6.8,189, Numeric Errors,nan
CVE-2011-1148,30/10/2018 16:26,18/03/2011 15:55,7.5,399, Resource Management Errors,nan
CVE-2011-1092,30/10/2018 16:26,15/03/2011 17:55,7.5,189, Numeric Errors,nan
CVE-2011-0755,30/10/2018 16:26,2/02/2011 22:00,5.0,189, Numeric Errors,nan
CVE-2011-0754,30/10/2018 16:26,2/02/2011 22:00,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0753,30/10/2018 16:26,2/02/2011 22:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-0752,30/10/2018 16:26,2/02/2011 22:00,5.0,20, Improper Input Validation,nan
CVE-2011-0708,30/10/2018 16:26,20/03/2011 2:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0633,30/10/2018 16:26,13/05/2011 22:55,4.3,20, Improper Input Validation,nan
CVE-2011-0628,30/10/2018 16:26,31/05/2011 20:55,9.3,189, Numeric Errors,nan
CVE-2011-0627,30/10/2018 16:26,13/05/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-0626,30/10/2018 16:26,13/05/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-0625,30/10/2018 16:26,13/05/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-0624,30/10/2018 16:26,13/05/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-0623,30/10/2018 16:26,13/05/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-0622,30/10/2018 16:26,13/05/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0621,30/10/2018 16:26,13/05/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0620,30/10/2018 16:26,13/05/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0619,30/10/2018 16:26,13/05/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0618,30/10/2018 16:26,13/05/2011 22:55,9.3,189, Numeric Errors,nan
CVE-2011-0611,30/10/2018 16:26,13/04/2011 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0608,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0607,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0579,30/10/2018 16:26,13/05/2011 22:55,5.0,200, Information Exposure,nan
CVE-2011-0578,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0574,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0573,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0572,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0571,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0561,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0560,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0559,30/10/2018 16:26,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0558,30/10/2018 16:26,10/02/2011 16:00,9.3,189, Numeric Errors,nan
CVE-2011-0414,30/10/2018 16:26,23/02/2011 19:00,7.1,399, Resource Management Errors,nan
CVE-2010-5321,30/10/2018 16:26,24/04/2017 6:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4699,30/10/2018 16:26,18/01/2011 20:00,5.0,189, Numeric Errors,nan
CVE-2010-4697,30/10/2018 16:26,18/01/2011 20:00,6.8,399, Resource Management Errors,nan
CVE-2010-4543,30/10/2018 16:26,7/01/2011 20:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4542,30/10/2018 16:26,7/01/2011 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4541,30/10/2018 16:26,7/01/2011 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4540,30/10/2018 16:26,7/01/2011 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4409,30/10/2018 16:26,6/12/2010 20:13,5.0,189, Numeric Errors,nan
CVE-2010-3870,30/10/2018 16:26,12/11/2010 21:00,6.8,20, Improper Input Validation,nan
CVE-2010-3396,30/10/2018 16:26,15/09/2010 18:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2666,30/10/2018 16:26,8/07/2010 12:54,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2665,30/10/2018 16:26,8/07/2010 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2662,30/10/2018 16:26,8/07/2010 12:54,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2661,30/10/2018 16:26,8/07/2010 12:54,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2660,30/10/2018 16:26,8/07/2010 12:54,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2659,30/10/2018 16:26,8/07/2010 12:54,4.3,200, Information Exposure,nan
CVE-2010-2658,30/10/2018 16:26,8/07/2010 12:54,4.3,20, Improper Input Validation,nan
CVE-2010-2455,30/10/2018 16:26,25/06/2010 19:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2351,30/10/2018 16:26,21/06/2010 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2253,30/10/2018 16:26,6/07/2010 17:17,6.8,20, Improper Input Validation,nan
CVE-2010-2216,30/10/2018 16:26,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2214,30/10/2018 16:26,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2213,30/10/2018 16:26,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1728,30/10/2018 16:26,6/05/2010 14:53,9.3,399, Resource Management Errors,nan
CVE-2010-0209,30/10/2018 16:26,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0187,30/10/2018 16:26,15/02/2010 18:30,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-5016,30/10/2018 16:26,12/11/2010 22:00,6.8,189, Numeric Errors,nan
CVE-2009-4142,30/10/2018 16:26,21/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4071,30/10/2018 16:26,24/11/2009 17:30,5.8,16, Configuration,nan
CVE-2009-4018,30/10/2018 16:26,29/11/2009 13:07,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3951,30/10/2018 16:26,10/12/2009 19:30,7.1,200, Information Exposure,nan
CVE-2009-3883,30/10/2018 16:26,9/11/2009 19:30,7.5,200, Information Exposure,nan
CVE-2009-3882,30/10/2018 16:26,9/11/2009 19:30,7.5,200, Information Exposure,nan
CVE-2009-3877,30/10/2018 16:26,5/11/2009 16:30,5.0,399, Resource Management Errors,nan
CVE-2009-3876,30/10/2018 16:26,5/11/2009 16:30,5.0,399, Resource Management Errors,nan
CVE-2009-3875,30/10/2018 16:26,5/11/2009 16:30,5.0,310, Cryptographic Issues,nan
CVE-2009-3865,30/10/2018 16:26,5/11/2009 16:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3832,30/10/2018 16:26,30/10/2009 20:30,5.8,20, Improper Input Validation,nan
CVE-2009-3831,30/10/2018 16:26,30/10/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3799,30/10/2018 16:26,10/12/2009 19:30,9.3,189, Numeric Errors,nan
CVE-2009-3798,30/10/2018 16:26,10/12/2009 19:30,9.3,399, Resource Management Errors,nan
CVE-2009-3796,30/10/2018 16:26,10/12/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3794,30/10/2018 16:26,10/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3728,30/10/2018 16:26,9/11/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3558,30/10/2018 16:26,23/11/2009 17:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3557,30/10/2018 16:26,23/11/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3294,30/10/2018 16:26,22/09/2009 10:30,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-3291,30/10/2018 16:26,22/09/2009 10:30,7.5,20, Improper Input Validation,nan
CVE-2009-3266,30/10/2018 16:26,18/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3045,30/10/2018 16:26,2/09/2009 17:30,5.0,310, Cryptographic Issues,nan
CVE-2009-3013,30/10/2018 16:26,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2540,30/10/2018 16:26,20/07/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2009-2406,30/10/2018 16:26,31/07/2009 19:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2351,30/10/2018 16:26,7/07/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2067,30/10/2018 16:26,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2064,30/10/2018 16:26,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2059,30/10/2018 16:26,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-1389,30/10/2018 16:26,16/06/2009 23:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1190,30/10/2018 16:26,27/04/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2009-0170,30/10/2018 16:26,16/01/2009 21:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7068,30/10/2018 16:26,25/08/2009 10:30,6.4,20, Improper Input Validation,nan
CVE-2008-5814,30/10/2018 16:26,2/01/2009 18:11,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5098,30/10/2018 16:26,17/11/2008 18:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4823,30/10/2018 16:26,10/11/2008 14:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4822,30/10/2018 16:26,10/11/2008 14:12,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-4821,30/10/2018 16:26,10/11/2008 14:12,4.3,200, Information Exposure,nan
CVE-2008-4820,30/10/2018 16:26,10/11/2008 14:12,7.1,200, Information Exposure,nan
CVE-2008-4818,30/10/2018 16:26,10/11/2008 14:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4401,30/10/2018 16:26,17/10/2008 19:31,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4107,30/10/2018 16:26,18/09/2008 17:59,5.1,189, Numeric Errors,nan
CVE-2008-4037,30/10/2018 16:26,12/11/2008 23:30,9.3,287, Improper Authentication,nan
CVE-2008-3496,30/10/2018 16:26,6/08/2008 18:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3113,30/10/2018 16:26,9/07/2008 23:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3112,30/10/2018 16:26,9/07/2008 23:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3111,30/10/2018 16:26,9/07/2008 23:41,10.0,20, Improper Input Validation,nan
CVE-2008-3008,30/10/2018 16:26,11/09/2008 1:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3006,30/10/2018 16:26,12/08/2008 23:41,9.3,399, Resource Management Errors,nan
CVE-2008-3005,30/10/2018 16:26,12/08/2008 23:41,9.3,20, Improper Input Validation,nan
CVE-2008-3004,30/10/2018 16:26,12/08/2008 23:41,9.3,20, Improper Input Validation,nan
CVE-2008-1676,30/10/2018 16:26,7/07/2008 23:41,7.5,255, Credentials Management,nan
CVE-2008-1669,30/10/2018 16:26,8/05/2008 0:20,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1455,30/10/2018 16:26,13/08/2008 0:41,6.8,399, Resource Management Errors,nan
CVE-2008-0892,30/10/2018 16:26,16/04/2008 18:05,9.0,20, Improper Input Validation,nan
CVE-2008-0104,30/10/2018 16:26,12/02/2008 23:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0080,30/10/2018 16:26,12/02/2008 23:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6245,30/10/2018 16:26,20/12/2007 1:46,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6244,30/10/2018 16:26,20/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6224,30/10/2018 16:26,4/12/2007 18:46,5.0,20, Improper Input Validation,nan
CVE-2007-5671,30/10/2018 16:26,5/06/2008 20:32,4.4,20, Improper Input Validation,nan
CVE-2007-5568,30/10/2018 16:26,18/10/2007 21:17,7.1,20, Improper Input Validation,nan
CVE-2007-5360,30/10/2018 16:26,8/01/2008 20:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5239,30/10/2018 16:26,6/10/2007 0:17,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5238,30/10/2018 16:26,6/10/2007 0:17,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-5236,30/10/2018 16:26,6/10/2007 0:17,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-3899,30/10/2018 16:26,9/10/2007 22:17,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3655,30/10/2018 16:26,10/07/2007 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1270,30/10/2018 16:26,6/04/2007 0:19,5.0,189, Numeric Errors,nan
CVE-2007-0908,30/10/2018 16:26,13/02/2007 23:28,5.0,20, Improper Input Validation,nan
CVE-2007-0243,30/10/2018 16:26,17/01/2007 22:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0071,30/10/2018 16:26,9/04/2008 21:05,9.3,189, Numeric Errors,nan
CVE-2007-0035,30/10/2018 16:26,8/05/2007 22:19,9.3,20, Improper Input Validation,nan
CVE-2006-7243,30/10/2018 16:26,18/01/2011 20:00,5.0,20, Improper Input Validation,nan
CVE-2006-6955,30/10/2018 16:26,29/01/2007 16:28,4.3,20, Improper Input Validation,nan
CVE-2006-2481,30/10/2018 16:26,31/07/2006 19:04,5.0,255, Credentials Management,nan
CVE-2006-1528,30/10/2018 16:26,18/05/2006 19:06,4.9,20, Improper Input Validation,nan
CVE-2006-1056,30/10/2018 16:26,20/04/2006 10:02,2.1,310, Cryptographic Issues,nan
CVE-2006-0744,30/10/2018 16:26,18/04/2006 10:02,4.9,20, Improper Input Validation,nan
CVE-2005-4886,30/10/2018 16:26,26/02/2010 19:30,7.8,189, Numeric Errors,nan
CVE-2004-2764,30/10/2018 16:26,2/06/2009 10:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2004-2686,30/10/2018 16:26,31/12/2004 5:00,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-1767,30/10/2018 16:26,31/12/2004 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2003-1003,30/10/2018 16:26,5/01/2004 5:00,7.8,20, Improper Input Validation,nan
CVE-2003-0567,30/10/2018 16:26,18/08/2003 4:00,7.8,20, Improper Input Validation,nan
CVE-2002-2280,30/10/2018 16:26,31/12/2002 5:00,2.1,16, Configuration,nan
CVE-2000-0844,30/10/2018 16:26,14/11/2000 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-1000363,30/10/2018 16:25,17/07/2017 13:18,7.2,787, Out-of-bounds Write,nan
CVE-2015-5296,30/10/2018 16:25,29/12/2015 22:59,4.3,20, Improper Input Validation,nan
CVE-2014-0231,30/10/2018 16:25,20/07/2014 11:12,5.0,399, Resource Management Errors,nan
CVE-2013-5091,30/10/2018 16:25,4/10/2013 20:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3380,30/10/2018 16:25,12/06/2013 3:30,4.0,200, Information Exposure,nan
CVE-2013-2496,30/10/2018 16:25,9/03/2013 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2495,30/10/2018 16:25,9/03/2013 11:55,7.5,189, Numeric Errors,nan
CVE-2013-1014,30/10/2018 16:25,20/05/2013 14:44,4.3,20, Improper Input Validation,nan
CVE-2013-1011,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-1010,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1008,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1007,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1006,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1005,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1004,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1003,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1002,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1001,30/10/2018 16:25,20/05/2013 14:44,9.3,399, Resource Management Errors,nan
CVE-2013-1000,30/10/2018 16:25,20/05/2013 14:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0999,30/10/2018 16:25,20/05/2013 14:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0998,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0997,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0996,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0995,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0994,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0993,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0992,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0991,30/10/2018 16:25,20/05/2013 14:44,6.8,399, Resource Management Errors,nan
CVE-2013-0214,30/10/2018 16:25,2/02/2013 20:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0213,30/10/2018 16:25,2/02/2013 20:55,5.1,20, Improper Input Validation,nan
CVE-2012-2803,30/10/2018 16:25,10/09/2012 22:55,10.0,399, Resource Management Errors,nan
CVE-2012-2774,30/10/2018 16:25,10/09/2012 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1182,30/10/2018 16:25,10/04/2012 21:55,10.0,189, Numeric Errors,nan
CVE-2012-0870,30/10/2018 16:25,23/02/2012 12:33,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0857,30/10/2018 16:25,20/08/2012 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0856,30/10/2018 16:25,20/08/2012 19:55,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0855,30/10/2018 16:25,27/08/2012 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0854,30/10/2018 16:25,20/08/2012 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0850,30/10/2018 16:25,20/08/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0849,30/10/2018 16:25,27/08/2012 23:55,4.3,189, Numeric Errors,nan
CVE-2011-4680,30/10/2018 16:25,7/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4031,30/10/2018 16:25,9/05/2012 10:33,9.3,189, Numeric Errors,nan
CVE-2011-3952,30/10/2018 16:25,20/08/2012 18:55,6.8,20, Improper Input Validation,nan
CVE-2011-3504,30/10/2018 16:25,29/09/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2724,30/10/2018 16:25,6/09/2011 16:55,1.2,20, Improper Input Validation,nan
CVE-2011-2694,30/10/2018 16:25,29/07/2011 20:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2522,30/10/2018 16:25,29/07/2011 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0719,30/10/2018 16:25,1/03/2011 23:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0606,30/10/2018 16:25,10/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0605,30/10/2018 16:25,10/02/2011 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0604,30/10/2018 16:25,10/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0603,30/10/2018 16:25,10/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0602,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0600,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0599,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0598,30/10/2018 16:25,10/02/2011 18:00,9.3,189, Numeric Errors,nan
CVE-2011-0596,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0595,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0594,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0593,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0592,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0591,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0590,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0589,30/10/2018 16:25,10/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0587,30/10/2018 16:25,10/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0586,30/10/2018 16:25,10/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0567,30/10/2018 16:25,10/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0566,30/10/2018 16:25,10/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0564,30/10/2018 16:25,10/02/2011 18:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0563,30/10/2018 16:25,10/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0396,30/10/2018 16:25,25/02/2011 12:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-0395,30/10/2018 16:25,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4091,30/10/2018 16:25,7/11/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3911,30/10/2018 16:25,26/11/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3910,30/10/2018 16:25,26/11/2010 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3909,30/10/2018 16:25,26/11/2010 20:00,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3658,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3632,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3631,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-3629,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-3628,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3627,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-3626,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-3625,30/10/2018 16:25,6/10/2010 17:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3624,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-3622,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3621,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3620,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-3619,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3268,30/10/2018 16:25,22/12/2010 21:00,5.0,20, Improper Input Validation,nan
CVE-2010-3227,30/10/2018 16:25,26/10/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3069,30/10/2018 16:25,15/09/2010 18:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2890,30/10/2018 16:25,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2889,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-2888,30/10/2018 16:25,6/10/2010 17:00,9.3,20, Improper Input Validation,nan
CVE-2010-2883,30/10/2018 16:25,9/09/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2241,30/10/2018 16:25,17/08/2010 20:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-2212,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2211,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2210,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2209,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2208,30/10/2018 16:25,30/06/2010 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2207,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2206,30/10/2018 16:25,30/06/2010 18:30,9.3,189, Numeric Errors,nan
CVE-2010-2205,30/10/2018 16:25,30/06/2010 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2202,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2201,30/10/2018 16:25,30/06/2010 18:30,9.3,399, Resource Management Errors,nan
CVE-2010-2189,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2188,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2187,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2185,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2184,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2183,30/10/2018 16:25,15/06/2010 18:00,9.3,189, Numeric Errors,nan
CVE-2010-2182,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2181,30/10/2018 16:25,15/06/2010 18:00,9.3,189, Numeric Errors,nan
CVE-2010-2180,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2179,30/10/2018 16:25,15/06/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2178,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2177,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2176,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2175,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2174,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2173,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2171,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2170,30/10/2018 16:25,15/06/2010 18:00,9.3,189, Numeric Errors,nan
CVE-2010-2169,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2168,30/10/2018 16:25,30/06/2010 18:30,9.3,399, Resource Management Errors,nan
CVE-2010-2167,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2166,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2165,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2164,30/10/2018 16:25,15/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-2162,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2161,30/10/2018 16:25,15/06/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2160,30/10/2018 16:25,15/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2063,30/10/2018 16:25,17/06/2010 16:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1799,30/10/2018 16:25,16/08/2010 18:39,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1642,30/10/2018 16:25,17/06/2010 16:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1295,30/10/2018 16:25,30/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1285,30/10/2018 16:25,30/06/2010 18:30,9.3,399, Resource Management Errors,nan
CVE-2010-1130,30/10/2018 16:25,26/03/2010 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0434,30/10/2018 16:25,5/03/2010 19:30,4.3,200, Information Exposure,nan
CVE-2010-0204,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0203,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0202,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0201,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0199,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0198,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0197,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0195,30/10/2018 16:25,14/04/2010 16:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0194,30/10/2018 16:25,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0191,30/10/2018 16:25,14/04/2010 16:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0190,30/10/2018 16:25,14/04/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0182,30/10/2018 16:25,5/04/2010 17:30,4.3,20, Improper Input Validation,nan
CVE-2010-0181,30/10/2018 16:25,5/04/2010 17:30,4.3,20, Improper Input Validation,nan
CVE-2010-0179,30/10/2018 16:25,5/04/2010 17:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0178,30/10/2018 16:25,5/04/2010 17:30,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0177,30/10/2018 16:25,5/04/2010 17:30,9.3,399, Resource Management Errors,nan
CVE-2010-0176,30/10/2018 16:25,5/04/2010 17:30,9.3,399, Resource Management Errors,nan
CVE-2010-0175,30/10/2018 16:25,5/04/2010 17:30,9.3,399, Resource Management Errors,nan
CVE-2010-0171,30/10/2018 16:25,25/03/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0167,30/10/2018 16:25,25/03/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0114,30/10/2018 16:25,22/12/2010 1:00,7.5,20, Improper Input Validation,nan
CVE-2010-0108,30/10/2018 16:25,19/02/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4418,30/10/2018 16:25,24/12/2009 17:30,5.0,189, Numeric Errors,nan
CVE-2009-4324,30/10/2018 16:25,15/12/2009 2:30,9.3,399, Resource Management Errors,nan
CVE-2009-3959,30/10/2018 16:25,13/01/2010 19:30,10.0,189, Numeric Errors,nan
CVE-2009-3958,30/10/2018 16:25,13/01/2010 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3956,30/10/2018 16:25,13/01/2010 19:30,10.0,16, Configuration,nan
CVE-2009-3955,30/10/2018 16:25,13/01/2010 19:30,10.0,399, Resource Management Errors,nan
CVE-2009-3954,30/10/2018 16:25,13/01/2010 19:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3953,30/10/2018 16:25,13/01/2010 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3874,30/10/2018 16:25,5/11/2009 16:30,9.3,189, Numeric Errors,nan
CVE-2009-3873,30/10/2018 16:25,5/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3871,30/10/2018 16:25,5/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3869,30/10/2018 16:25,5/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3868,30/10/2018 16:25,5/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3867,30/10/2018 16:25,5/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3675,30/10/2018 16:25,9/12/2009 18:30,6.8,399, Resource Management Errors,nan
CVE-2009-3460,30/10/2018 16:25,19/10/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-3459,30/10/2018 16:25,13/10/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3458,30/10/2018 16:25,19/10/2009 22:30,9.3,20, Improper Input Validation,nan
CVE-2009-3376,30/10/2018 16:25,29/10/2009 14:30,9.3,16, Configuration,nan
CVE-2009-3373,30/10/2018 16:25,29/10/2009 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3258,30/10/2018 16:25,18/09/2009 21:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2998,30/10/2018 16:25,19/10/2009 22:30,9.3,20, Improper Input Validation,nan
CVE-2009-2997,30/10/2018 16:25,19/10/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2996,30/10/2018 16:25,19/10/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-2995,30/10/2018 16:25,19/10/2009 22:30,4.3,189, Numeric Errors,nan
CVE-2009-2994,30/10/2018 16:25,19/10/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2993,30/10/2018 16:25,19/10/2009 22:30,9.3,20, Improper Input Validation,nan
CVE-2009-2992,30/10/2018 16:25,19/10/2009 22:30,4.3,20, Improper Input Validation,nan
CVE-2009-2990,30/10/2018 16:25,19/10/2009 22:30,9.3,189, Numeric Errors,nan
CVE-2009-2989,30/10/2018 16:25,19/10/2009 22:30,9.3,189, Numeric Errors,nan
CVE-2009-2988,30/10/2018 16:25,19/10/2009 22:30,4.3,20, Improper Input Validation,nan
CVE-2009-2986,30/10/2018 16:25,19/10/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2985,30/10/2018 16:25,19/10/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-2983,30/10/2018 16:25,19/10/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-2982,30/10/2018 16:25,19/10/2009 22:30,9.3,310, Cryptographic Issues,nan
CVE-2009-2981,30/10/2018 16:25,19/10/2009 22:30,9.3,20, Improper Input Validation,nan
CVE-2009-2980,30/10/2018 16:25,19/10/2009 22:30,9.3,189, Numeric Errors,nan
CVE-2009-2948,30/10/2018 16:25,7/10/2009 18:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-2799,30/10/2018 16:25,10/09/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2798,30/10/2018 16:25,10/09/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2674,30/10/2018 16:25,5/08/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2535,30/10/2018 16:25,20/07/2009 18:30,5.0,189, Numeric Errors,nan
CVE-2009-2532,30/10/2018 16:25,14/10/2009 10:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2527,30/10/2018 16:25,14/10/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2526,30/10/2018 16:25,14/10/2009 10:30,7.8,399, Resource Management Errors,nan
CVE-2009-2466,30/10/2018 16:25,22/07/2009 18:30,10.0,399, Resource Management Errors,nan
CVE-2009-2465,30/10/2018 16:25,22/07/2009 18:30,10.0,399, Resource Management Errors,nan
CVE-2009-2464,30/10/2018 16:25,22/07/2009 18:30,10.0,399, Resource Management Errors,nan
CVE-2009-2463,30/10/2018 16:25,22/07/2009 18:30,10.0,189, Numeric Errors,nan
CVE-2009-2462,30/10/2018 16:25,22/07/2009 18:30,10.0,399, Resource Management Errors,nan
CVE-2009-2203,30/10/2018 16:25,10/09/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1930,30/10/2018 16:25,12/08/2009 17:30,10.0,255, Credentials Management,nan
CVE-2009-1929,30/10/2018 16:25,12/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1891,30/10/2018 16:25,10/07/2009 15:30,7.1,399, Resource Management Errors,nan
CVE-2009-1890,30/10/2018 16:25,5/07/2009 16:30,7.1,189, Numeric Errors,nan
CVE-2009-1841,30/10/2018 16:25,12/06/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1838,30/10/2018 16:25,12/06/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1836,30/10/2018 16:25,12/06/2009 21:30,6.8,287, Improper Authentication,nan
CVE-2009-1835,30/10/2018 16:25,12/06/2009 21:30,4.3,200, Information Exposure,nan
CVE-2009-1834,30/10/2018 16:25,12/06/2009 21:30,4.3,20, Improper Input Validation,nan
CVE-2009-1833,30/10/2018 16:25,12/06/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1832,30/10/2018 16:25,12/06/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1600,30/10/2018 16:25,11/05/2009 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1599,30/10/2018 16:25,11/05/2009 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1598,30/10/2018 16:25,11/05/2009 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1597,30/10/2018 16:25,11/05/2009 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1546,30/10/2018 16:25,12/08/2009 17:30,8.5,189, Numeric Errors,nan
CVE-2009-1545,30/10/2018 16:25,12/08/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1544,30/10/2018 16:25,12/08/2009 17:30,9.0,399, Resource Management Errors,nan
CVE-2009-1392,30/10/2018 16:25,12/06/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1311,30/10/2018 16:25,22/04/2009 18:30,4.3,200, Information Exposure,nan
CVE-2009-1303,30/10/2018 16:25,22/04/2009 18:30,5.0,16, Configuration,nan
CVE-2009-1195,30/10/2018 16:25,28/05/2009 20:30,4.9,16, Configuration,nan
CVE-2009-1132,30/10/2018 16:25,8/09/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1062,30/10/2018 16:25,25/03/2009 1:30,9.3,20, Improper Input Validation,nan
CVE-2009-0957,30/10/2018 16:25,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0956,30/10/2018 16:25,2/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-0955,30/10/2018 16:25,2/06/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0954,30/10/2018 16:25,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0953,30/10/2018 16:25,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0952,30/10/2018 16:25,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0951,30/10/2018 16:25,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0928,30/10/2018 16:25,25/03/2009 1:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0873,30/10/2018 16:25,11/03/2009 14:19,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-0838,30/10/2018 16:25,6/03/2009 18:30,4.9,399, Resource Management Errors,nan
CVE-2009-0613,30/10/2018 16:25,17/02/2009 17:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0612,30/10/2018 16:25,17/02/2009 17:30,4.3,200, Information Exposure,nan
CVE-2009-0345,30/10/2018 16:25,29/01/2009 19:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0344,30/10/2018 16:25,29/01/2009 19:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0282,30/10/2018 16:25,27/01/2009 18:30,9.3,189, Numeric Errors,nan
CVE-2009-0229,30/10/2018 16:25,10/06/2009 18:00,4.9,200, Information Exposure,nan
CVE-2009-0188,30/10/2018 16:25,2/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-0185,30/10/2018 16:25,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0062,30/10/2018 16:25,5/02/2009 0:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0061,30/10/2018 16:25,5/02/2009 0:30,7.8,20, Improper Input Validation,nan
CVE-2009-0059,30/10/2018 16:25,5/02/2009 0:30,7.8,20, Improper Input Validation,nan
CVE-2009-0058,30/10/2018 16:25,5/02/2009 0:30,6.1,20, Improper Input Validation,nan
CVE-2009-0005,30/10/2018 16:25,21/01/2009 20:30,9.3,399, Resource Management Errors,nan
CVE-2009-0004,30/10/2018 16:25,21/01/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0003,30/10/2018 16:25,21/01/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0002,30/10/2018 16:25,21/01/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0001,30/10/2018 16:25,21/01/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6961,30/10/2018 16:25,13/08/2009 16:30,4.3,200, Information Exposure,nan
CVE-2008-6474,30/10/2018 16:25,16/03/2009 16:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6065,30/10/2018 16:25,5/02/2009 2:30,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-5882,30/10/2018 16:25,9/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5823,30/10/2018 16:25,2/01/2009 19:30,4.3,189, Numeric Errors,nan
CVE-2008-5733,30/10/2018 16:25,26/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5498,30/10/2018 16:25,26/12/2008 20:30,5.0,200, Information Exposure,nan
CVE-2008-5423,30/10/2018 16:25,11/12/2008 15:30,4.3,200, Information Exposure,nan
CVE-2008-5422,30/10/2018 16:25,11/12/2008 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5232,30/10/2018 16:25,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5112,30/10/2018 16:25,17/11/2008 23:30,5.0,200, Information Exposure,nan
CVE-2008-5013,30/10/2018 16:25,13/11/2008 11:30,9.3,399, Resource Management Errors,nan
CVE-2008-5009,30/10/2018 16:25,10/11/2008 15:23,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-4837,30/10/2018 16:25,10/12/2008 14:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4817,30/10/2018 16:25,5/11/2008 15:00,9.3,20, Improper Input Validation,nan
CVE-2008-4815,30/10/2018 16:25,5/11/2008 15:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4814,30/10/2018 16:25,5/11/2008 15:00,9.3,20, Improper Input Validation,nan
CVE-2008-4813,30/10/2018 16:25,5/11/2008 15:00,9.3,399, Resource Management Errors,nan
CVE-2008-4812,30/10/2018 16:25,5/11/2008 15:00,9.3,20, Improper Input Validation,nan
CVE-2008-4582,30/10/2018 16:25,15/10/2008 20:08,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-4327,30/10/2018 16:25,30/09/2008 16:13,4.3,189, Numeric Errors,nan
CVE-2008-4127,30/10/2018 16:25,18/09/2008 17:59,4.3,399, Resource Management Errors,nan
CVE-2008-4031,30/10/2018 16:25,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4030,30/10/2018 16:25,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4028,30/10/2018 16:25,10/12/2008 14:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4027,30/10/2018 16:25,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4026,30/10/2018 16:25,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4025,30/10/2018 16:25,10/12/2008 14:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4024,30/10/2018 16:25,10/12/2008 14:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3843,30/10/2018 16:25,27/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3635,30/10/2018 16:25,11/09/2008 1:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3629,30/10/2018 16:25,11/09/2008 1:13,4.3,399, Resource Management Errors,nan
CVE-2008-3626,30/10/2018 16:25,11/09/2008 1:13,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3624,30/10/2018 16:25,11/09/2008 1:13,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3623,30/10/2018 16:25,17/11/2008 18:18,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3614,30/10/2018 16:25,11/09/2008 1:13,6.8,189, Numeric Errors,nan
CVE-2008-3450,30/10/2018 16:25,4/08/2008 18:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3276,30/10/2018 16:25,18/08/2008 17:41,7.1,189, Numeric Errors,nan
CVE-2008-3275,30/10/2018 16:25,12/08/2008 23:41,4.9,399, Resource Management Errors,nan
CVE-2008-3272,30/10/2018 16:25,8/08/2008 18:41,6.6,189, Numeric Errors,nan
CVE-2008-3162,30/10/2018 16:25,14/07/2008 23:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3077,30/10/2018 16:25,9/07/2008 0:41,4.9,399, Resource Management Errors,nan
CVE-2008-3066,30/10/2018 16:25,28/07/2008 17:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3014,30/10/2018 16:25,11/09/2008 1:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3013,30/10/2018 16:25,11/09/2008 1:11,9.3,399, Resource Management Errors,nan
CVE-2008-3012,30/10/2018 16:25,11/09/2008 1:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2992,30/10/2018 16:25,4/11/2008 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2931,30/10/2018 16:25,9/07/2008 18:41,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-2812,30/10/2018 16:25,9/07/2008 0:41,7.2,20, Improper Input Validation,nan
CVE-2008-2750,30/10/2018 16:25,18/06/2008 19:41,7.8,20, Improper Input Validation,nan
CVE-2008-2710,30/10/2018 16:25,16/06/2008 20:41,7.2,189, Numeric Errors,nan
CVE-2008-2552,30/10/2018 16:25,5/06/2008 20:32,4.9,399, Resource Management Errors,nan
CVE-2008-2384,30/10/2018 16:25,22/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2365,30/10/2018 16:25,30/06/2008 21:41,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-2326,30/10/2018 16:25,11/09/2008 1:10,5.0,20, Improper Input Validation,nan
CVE-2008-2246,30/10/2018 16:25,13/08/2008 0:41,7.8,200, Information Exposure,nan
CVE-2008-2168,30/10/2018 16:25,13/05/2008 21:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2137,30/10/2018 16:25,29/05/2008 16:32,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-2121,30/10/2018 16:25,9/05/2008 15:20,7.8,16, Configuration,nan
CVE-2008-2059,30/10/2018 16:25,4/06/2008 21:32,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2058,30/10/2018 16:25,4/06/2008 21:32,7.8,399, Resource Management Errors,nan
CVE-2008-2056,30/10/2018 16:25,4/06/2008 21:32,7.8,20, Improper Input Validation,nan
CVE-2008-2055,30/10/2018 16:25,4/06/2008 21:32,7.8,20, Improper Input Validation,nan
CVE-2008-2042,30/10/2018 16:25,8/05/2008 0:20,9.3,20, Improper Input Validation,nan
CVE-2008-1739,30/10/2018 16:25,3/09/2008 19:42,6.8,399, Resource Management Errors,nan
CVE-2008-1673,30/10/2018 16:25,10/06/2008 0:32,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1503,30/10/2018 16:25,25/03/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1457,30/10/2018 16:25,13/08/2008 12:42,9.0,20, Improper Input Validation,nan
CVE-2008-1456,30/10/2018 16:25,13/08/2008 12:42,9.0,20, Improper Input Validation,nan
CVE-2008-1451,30/10/2018 16:25,12/06/2008 2:32,7.2,20, Improper Input Validation,nan
CVE-2008-1294,30/10/2018 16:25,2/05/2008 16:05,2.1,399, Resource Management Errors,nan
CVE-2008-1092,30/10/2018 16:25,25/03/2008 16:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1083,30/10/2018 16:25,8/04/2008 23:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1001,30/10/2018 16:25,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0965,30/10/2018 16:25,8/08/2008 18:41,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-0964,30/10/2018 16:25,8/08/2008 18:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0960,30/10/2018 16:25,10/06/2008 18:32,10.0,287, Improper Authentication,nan
CVE-2008-0870,30/10/2018 16:25,21/02/2008 1:44,7.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0868,30/10/2018 16:25,21/02/2008 1:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0865,30/10/2018 16:25,21/02/2008 1:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0864,30/10/2018 16:25,21/02/2008 1:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0600,30/10/2018 16:25,12/02/2008 21:00,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0539,30/10/2018 16:25,1/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0455,30/10/2018 16:25,25/01/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0265,30/10/2018 16:25,15/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0098,30/10/2018 16:25,8/01/2008 2:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0087,30/10/2018 16:25,8/04/2008 23:05,8.8,287, Improper Authentication,nan
CVE-2007-6700,30/10/2018 16:25,5/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6423,30/10/2018 16:25,12/01/2008 0:46,7.8,399, Resource Management Errors,nan
CVE-2007-6422,30/10/2018 16:25,8/01/2008 18:46,4.0,399, Resource Management Errors,nan
CVE-2007-6421,30/10/2018 16:25,8/01/2008 19:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6420,30/10/2018 16:25,12/01/2008 0:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6417,30/10/2018 16:25,18/12/2007 0:46,7.2,399, Resource Management Errors,nan
CVE-2007-6388,30/10/2018 16:25,8/01/2008 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6216,30/10/2018 16:25,4/12/2007 15:46,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-6166,30/10/2018 16:25,29/11/2007 1:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6015,30/10/2018 16:25,13/12/2007 21:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5961,30/10/2018 16:25,23/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5667,30/10/2018 16:25,14/11/2007 1:46,7.2,20, Improper Input Validation,nan
CVE-2007-5576,30/10/2018 16:25,18/10/2007 21:17,6.8,200, Information Exposure,nan
CVE-2007-5569,30/10/2018 16:25,18/10/2007 21:17,7.1,20, Improper Input Validation,nan
CVE-2007-5422,30/10/2018 16:25,12/10/2007 21:17,4.9,16, Configuration,nan
CVE-2007-5400,30/10/2018 16:25,28/07/2008 17:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5398,30/10/2018 16:25,16/11/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5348,30/10/2018 16:25,11/09/2008 1:01,9.3,189, Numeric Errors,nan
CVE-2007-5225,30/10/2018 16:25,5/10/2007 0:17,4.9,189, Numeric Errors,nan
CVE-2007-5145,30/10/2018 16:25,1/10/2007 5:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5093,30/10/2018 16:25,26/09/2007 21:17,4.0,399, Resource Management Errors,nan
CVE-2007-5000,30/10/2018 16:25,13/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4786,30/10/2018 16:25,10/09/2007 21:17,4.3,255, Credentials Management,nan
CVE-2007-4572,30/10/2018 16:25,16/11/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4465,30/10/2018 16:25,14/09/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3880,30/10/2018 16:25,14/11/2007 1:46,7.2,134, Use of Externally-Controlled Format String,nan
CVE-2007-3091,30/10/2018 16:25,6/06/2007 21:30,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-3007,30/10/2018 16:25,4/06/2007 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-2872,30/10/2018 16:25,4/06/2007 17:30,6.8,189, Numeric Errors,nan
CVE-2007-2510,30/10/2018 16:25,9/05/2007 0:19,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2509,30/10/2018 16:25,9/05/2007 0:19,2.6,20, Improper Input Validation,nan
CVE-2007-2402,30/10/2018 16:25,15/07/2007 21:30,4.3,200, Information Exposure,nan
CVE-2007-1581,30/10/2018 16:25,21/03/2007 23:19,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1285,30/10/2018 16:25,6/03/2007 20:19,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1217,30/10/2018 16:25,2/03/2007 21:18,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1001,30/10/2018 16:25,6/04/2007 0:19,6.8,189, Numeric Errors,nan
CVE-2007-0918,30/10/2018 16:25,14/02/2007 2:28,7.1,20, Improper Input Validation,nan
CVE-2007-0906,30/10/2018 16:25,13/02/2007 23:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0882,30/10/2018 16:25,12/02/2007 20:28,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0714,30/10/2018 16:25,5/03/2007 22:19,9.3,189, Numeric Errors,nan
CVE-2007-0712,30/10/2018 16:25,5/03/2007 22:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0711,30/10/2018 16:25,5/03/2007 22:19,9.3,189, Numeric Errors,nan
CVE-2007-0064,30/10/2018 16:25,12/12/2007 0:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0058,30/10/2018 16:25,4/01/2007 22:28,7.8,200, Information Exposure,nan
CVE-2007-0043,30/10/2018 16:25,10/07/2007 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0042,30/10/2018 16:25,10/07/2007 22:30,7.8,200, Information Exposure,nan
CVE-2007-0041,30/10/2018 16:25,10/07/2007 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6275,30/10/2018 16:25,4/12/2006 11:28,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-6058,30/10/2018 16:25,22/11/2006 1:07,4.0,189, Numeric Errors,nan
CVE-2006-5178,30/10/2018 16:25,10/10/2006 4:06,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-4812,30/10/2018 16:25,10/10/2006 4:06,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4694,30/10/2018 16:25,27/09/2006 19:07,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4486,30/10/2018 16:25,31/08/2006 21:04,2.6,189, Numeric Errors,nan
CVE-2006-4482,30/10/2018 16:25,31/08/2006 21:04,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3876,30/10/2018 16:25,10/10/2006 21:07,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3650,30/10/2018 16:25,10/10/2006 22:07,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3435,30/10/2018 16:25,10/10/2006 21:07,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0208,30/10/2018 16:25,13/01/2006 23:03,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0207,30/10/2018 16:25,13/01/2006 23:03,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0200,30/10/2018 16:25,13/01/2006 23:03,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2006-0008,30/10/2018 16:25,14/02/2006 19:06,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2005-4583,30/10/2018 16:25,29/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4459,30/10/2018 16:25,21/12/2005 20:03,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4048,30/10/2018 16:25,7/12/2005 11:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3398,30/10/2018 16:25,1/11/2005 12:47,4.3,200, Information Exposure,nan
CVE-2005-2072,30/10/2018 16:25,29/06/2005 4:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2004-1354,30/10/2018 16:25,14/05/2004 4:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-1019,30/10/2018 16:25,10/01/2005 5:00,10.0,20, Improper Input Validation,nan
CVE-2003-1081,30/10/2018 16:25,9/09/2003 4:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-2327,30/10/2018 16:25,31/12/2002 5:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2002-1700,30/10/2018 16:25,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-1590,30/10/2018 16:25,29/10/2002 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2002-1024,30/10/2018 16:25,4/10/2002 4:00,7.1,399, Resource Management Errors,nan
CVE-2002-0422,30/10/2018 16:25,12/08/2002 4:00,2.6,200, Information Exposure,nan
CVE-2002-0419,30/10/2018 16:25,12/08/2002 4:00,5.0,200, Information Exposure,nan
CVE-2001-1582,30/10/2018 16:25,31/12/2001 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2000-0649,30/10/2018 16:25,13/07/2000 4:00,2.6,200, Information Exposure,nan
CVE-2000-0258,30/10/2018 16:25,12/04/2000 4:00,5.0,20, Improper Input Validation,nan
CVE-1999-0875,30/10/2018 16:25,11/08/1999 4:00,7.5,16, Configuration,nan
CVE-2018-15870,30/10/2018 15:56,25/08/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15871,30/10/2018 15:55,25/08/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9283,30/10/2018 15:50,7/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16731,30/10/2018 15:26,8/09/2018 15:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3884,30/10/2018 15:18,12/09/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4932,30/10/2018 15:16,28/08/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12826,30/10/2018 14:59,29/08/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-12827,30/10/2018 14:54,29/08/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-15694,30/10/2018 14:50,27/08/2018 14:29,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15697,30/10/2018 14:27,27/08/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-15699,30/10/2018 14:25,27/08/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16056,30/10/2018 14:15,30/08/2018 1:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-15696,30/10/2018 14:09,27/08/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-15698,30/10/2018 14:00,27/08/2018 14:29,6.8,200, Information Exposure,nan
CVE-2018-15695,30/10/2018 13:56,27/08/2018 14:29,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0647,30/10/2018 13:31,7/09/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-18655,30/10/2018 13:14,26/10/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-0659,30/10/2018 12:32,7/09/2018 14:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0660,30/10/2018 12:19,7/09/2018 14:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-17013,30/10/2018 11:33,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17012,30/10/2018 11:33,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17014,30/10/2018 11:32,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2017-18216,30/10/2018 10:29,5/03/2018 18:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-15595,30/10/2018 10:29,18/10/2017 8:29,7.2,400, Uncontrolled Resource Consumption,nan
CVE-2017-15299,30/10/2018 10:29,14/10/2017 23:29,4.9,476, NULL Pointer Dereference,nan
CVE-2015-8539,30/10/2018 10:29,8/02/2016 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-12824,29/10/2018 20:23,29/08/2018 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16142,29/10/2018 20:19,30/08/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16381,29/10/2018 20:17,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16762,29/10/2018 19:57,9/09/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16780,29/10/2018 19:36,10/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6599,29/10/2018 19:07,29/08/2018 19:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-17016,29/10/2018 18:35,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17015,29/10/2018 18:35,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17017,29/10/2018 18:33,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17018,29/10/2018 18:32,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17006,29/10/2018 18:16,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17009,29/10/2018 18:11,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17008,29/10/2018 18:11,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17005,29/10/2018 18:09,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17010,29/10/2018 18:08,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17011,29/10/2018 18:06,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-17007,29/10/2018 18:03,13/09/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-3866,29/10/2018 17:56,23/08/2018 22:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14474,29/10/2018 16:48,20/07/2018 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-3882,29/10/2018 16:41,12/09/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3883,29/10/2018 16:38,12/09/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3885,29/10/2018 16:08,12/09/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3872,29/10/2018 14:21,23/08/2018 22:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16352,29/10/2018 14:20,2/09/2018 22:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3880,29/10/2018 14:16,23/08/2018 22:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3911,26/10/2018 18:58,23/08/2018 22:29,5.0,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-7938,26/10/2018 18:35,4/09/2018 16:29,4.3,200, Information Exposure,nan
CVE-2018-3863,26/10/2018 18:30,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3903,26/10/2018 18:26,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16663,26/10/2018 18:09,7/09/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16664,26/10/2018 18:03,7/09/2018 17:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16665,26/10/2018 17:50,7/09/2018 17:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16666,26/10/2018 17:48,7/09/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16648,26/10/2018 17:39,6/09/2018 23:29,4.3,129, Improper Validation of Array Index,nan
CVE-2018-16725,26/10/2018 17:03,8/09/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16724,26/10/2018 17:01,8/09/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3878,26/10/2018 16:52,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3879,26/10/2018 16:48,23/08/2018 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3902,26/10/2018 16:16,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3917,26/10/2018 16:12,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3919,26/10/2018 16:10,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3925,26/10/2018 15:59,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16438,26/10/2018 15:36,4/09/2018 0:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-16362,26/10/2018 15:20,2/09/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0387,26/10/2018 14:19,29/01/2008 2:00,7.8,189, Numeric Errors,nan
CVE-2008-0367,26/10/2018 14:19,19/01/2008 0:00,5.0,200, Information Exposure,nan
CVE-2008-0017,26/10/2018 14:19,13/11/2008 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6599,26/10/2018 14:18,4/01/2008 2:46,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-6242,26/10/2018 14:18,20/12/2007 1:46,6.8,20, Improper Input Validation,nan
CVE-2007-6181,26/10/2018 14:18,30/11/2007 0:46,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6171,26/10/2018 14:18,30/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6170,26/10/2018 14:17,30/11/2007 1:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5796,26/10/2018 14:17,3/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5616,26/10/2018 14:16,9/01/2008 21:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5598,26/10/2018 14:15,19/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16518,26/10/2018 14:14,5/09/2018 15:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5597,26/10/2018 14:14,19/10/2007 23:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-5596,26/10/2018 14:13,19/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5595,26/10/2018 14:13,19/10/2007 23:17,5.1,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2007-5266,26/10/2018 14:11,8/10/2007 21:17,4.3,189, Numeric Errors,nan
CVE-2007-5022,26/10/2018 14:11,21/09/2007 18:17,5.0,200, Information Exposure,nan
CVE-2007-4676,26/10/2018 14:09,7/11/2007 23:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4677,26/10/2018 14:08,7/11/2007 23:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4679,26/10/2018 14:06,15/11/2007 1:46,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-1000600,26/10/2018 14:05,6/09/2018 12:29,6.5,20, Improper Input Validation,nan
CVE-2007-4675,26/10/2018 14:05,7/11/2007 23:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4657,26/10/2018 14:05,4/09/2007 22:17,7.5,189, Numeric Errors,nan
CVE-2007-4632,26/10/2018 14:04,31/08/2007 23:17,4.3,287, Improper Authentication,nan
CVE-2007-4618,26/10/2018 14:02,31/08/2007 0:17,7.8,399, Resource Management Errors,nan
CVE-2007-4613,26/10/2018 14:01,31/08/2007 0:17,6.8,310, Cryptographic Issues,nan
CVE-2007-3998,26/10/2018 13:59,4/09/2007 18:17,5.0,20, Improper Input Validation,nan
CVE-2007-3997,26/10/2018 13:59,4/09/2007 18:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-1000659,26/10/2018 13:56,6/09/2018 17:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3503,26/10/2018 13:56,30/06/2007 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000658,26/10/2018 13:55,6/09/2018 17:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-8649,26/10/2018 13:53,1/05/2017 6:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-10513,26/10/2018 12:47,30/08/2018 19:29,7.2,502, Deserialization of Untrusted Data,nan
CVE-2018-15808,26/10/2018 12:18,23/08/2018 20:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-15605,26/10/2018 1:11,24/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12810,26/10/2018 1:05,29/08/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12811,26/10/2018 1:00,29/08/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16552,25/10/2018 19:44,5/09/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16642,25/10/2018 19:02,6/09/2018 22:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-16643,25/10/2018 18:57,6/09/2018 22:29,4.3,20, Improper Input Validation,nan
CVE-2018-16410,25/10/2018 18:00,3/09/2018 19:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16330,25/10/2018 17:48,2/09/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1353,25/10/2018 17:09,5/09/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-16416,25/10/2018 17:00,3/09/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16328,25/10/2018 16:23,1/09/2018 22:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-16329,25/10/2018 16:15,1/09/2018 22:29,7.5,476, NULL Pointer Dereference,nan
CVE-2018-16647,25/10/2018 15:56,6/09/2018 23:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16333,25/10/2018 15:40,2/09/2018 3:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16334,25/10/2018 15:17,2/09/2018 3:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1000661,25/10/2018 15:03,6/09/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1000663,25/10/2018 14:49,6/09/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000655,25/10/2018 14:38,20/08/2018 19:31,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1000668,25/10/2018 14:37,6/09/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-16384,25/10/2018 13:44,3/09/2018 2:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16353,25/10/2018 13:41,2/09/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16337,25/10/2018 13:40,2/09/2018 18:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16315,25/10/2018 13:40,1/09/2018 18:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16430,25/10/2018 12:17,4/09/2018 0:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-16348,25/10/2018 12:08,2/09/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16347,25/10/2018 12:05,2/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16339,25/10/2018 11:58,2/09/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16338,25/10/2018 11:55,2/09/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15412,25/10/2018 11:35,28/08/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-16342,25/10/2018 2:25,2/09/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15917,25/10/2018 2:21,5/09/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16361,25/10/2018 2:18,5/09/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16354,25/10/2018 2:03,2/09/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15413,25/10/2018 1:59,28/08/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-16373,25/10/2018 1:53,3/09/2018 0:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-16372,25/10/2018 1:38,3/09/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16387,25/10/2018 1:37,3/09/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16444,25/10/2018 1:36,4/09/2018 4:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-16446,25/10/2018 1:35,4/09/2018 4:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-16445,25/10/2018 1:27,4/09/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16432,25/10/2018 1:24,4/09/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16448,25/10/2018 1:06,4/09/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16450,25/10/2018 0:53,4/09/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16458,25/10/2018 0:51,4/09/2018 11:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0672,25/10/2018 0:30,4/09/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13822,25/10/2018 0:24,30/08/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-16332,24/10/2018 15:19,2/09/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16358,24/10/2018 15:17,2/09/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16371,24/10/2018 14:39,3/09/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16374,24/10/2018 14:36,3/09/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15418,24/10/2018 14:30,28/08/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15161,24/10/2018 14:22,1/09/2018 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-2902,24/10/2018 13:29,17/10/2018 1:31,4.0,200, Information Exposure,nan
CVE-2018-2912,24/10/2018 13:27,17/10/2018 1:31,5.0,476, NULL Pointer Dereference,nan
CVE-2018-2913,24/10/2018 13:25,17/10/2018 1:31,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2914,24/10/2018 13:20,17/10/2018 1:31,5.0,476, NULL Pointer Dereference,nan
CVE-2015-5352,24/10/2018 10:29,3/08/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4793,23/10/2018 21:29,23/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2012-2104,23/10/2018 21:29,26/08/2012 21:55,6.8,20, Improper Input Validation,nan
CVE-2018-16278,23/10/2018 20:17,31/08/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-16331,23/10/2018 19:57,2/09/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16350,23/10/2018 19:55,2/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16349,23/10/2018 19:55,2/09/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6050,23/10/2018 19:17,28/08/2018 17:29,5.0,254, 7PK – Security Features,nan
CVE-2014-6049,23/10/2018 19:05,28/08/2018 17:29,5.5,285, Improper Authorization,nan
CVE-2018-1000652,23/10/2018 19:00,20/08/2018 19:31,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-6048,23/10/2018 18:55,28/08/2018 17:29,5.0,200, Information Exposure,nan
CVE-2014-6047,23/10/2018 18:46,28/08/2018 17:29,5.0,275, Permission Issues,nan
CVE-2018-10511,23/10/2018 18:19,15/08/2018 19:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-14007,23/10/2018 18:14,15/08/2018 18:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11247,23/10/2018 18:01,15/08/2018 18:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-8412,23/10/2018 17:55,15/08/2018 17:29,4.6,20, Improper Input Validation,nan
CVE-2018-15152,23/10/2018 17:50,15/08/2018 17:29,6.4,287, Improper Authentication,nan
CVE-2018-15894,23/10/2018 17:42,27/08/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15893,23/10/2018 17:42,27/08/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6414,23/10/2018 17:25,13/08/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5924,23/10/2018 17:20,13/08/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15137,23/10/2018 17:16,8/08/2018 0:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-15492,23/10/2018 16:51,18/08/2018 2:29,5.0,405, Asymmetric Resource Consumption (Amplification),nan
CVE-2018-14077,23/10/2018 16:12,20/08/2018 20:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-14079,23/10/2018 16:09,20/08/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-15691,23/10/2018 15:20,30/08/2018 14:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-16236,23/10/2018 14:12,30/08/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5235,23/10/2018 14:08,22/08/2018 17:29,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0085,23/10/2018 13:57,17/04/2014 14:55,2.1,255, Credentials Management,nan
CVE-2018-16234,23/10/2018 12:14,30/08/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8316,23/10/2018 11:25,3/08/2018 15:29,7.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-3237,23/10/2018 11:20,17/10/2018 1:31,5.0,200, Information Exposure,nan
CVE-2018-3867,22/10/2018 20:02,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3905,22/10/2018 20:01,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11719,22/10/2018 19:57,30/08/2018 16:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-11718,22/10/2018 19:54,30/08/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11720,22/10/2018 19:53,30/08/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14779,22/10/2018 18:26,15/08/2018 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-14780,22/10/2018 18:08,15/08/2018 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2014-4167,22/10/2018 17:07,11/07/2014 14:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3632,22/10/2018 16:47,7/10/2014 14:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-3909,22/10/2018 16:42,24/08/2018 0:29,6.4,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2018-3907,22/10/2018 16:40,24/08/2018 0:29,6.4,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2018-12294,21/10/2018 10:29,19/06/2018 21:29,6.8,416, Use After Free,nan
CVE-2018-12293,21/10/2018 10:29,19/06/2018 21:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-11712,21/10/2018 10:29,4/06/2018 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-7494,21/10/2018 10:29,30/05/2017 18:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7480,21/10/2018 10:29,21/07/2017 22:29,7.5,417, Channel and Path Errors,nan
CVE-2017-6420,21/10/2018 10:29,7/08/2017 3:29,4.3,416, Use After Free,nan
CVE-2017-6419,21/10/2018 10:29,7/08/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6418,21/10/2018 10:29,7/08/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-16879,21/10/2018 10:29,22/11/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15275,21/10/2018 10:29,27/11/2017 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14746,21/10/2018 10:29,27/11/2017 22:29,7.5,416, Use After Free,nan
CVE-2017-13734,21/10/2018 10:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13733,21/10/2018 10:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13732,21/10/2018 10:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13731,21/10/2018 10:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13730,21/10/2018 10:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13729,21/10/2018 10:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11112,21/10/2018 10:29,8/07/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-10684,21/10/2018 10:29,29/06/2017 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6233,21/10/2018 10:29,17/02/2017 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4861,21/10/2018 10:29,17/02/2017 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2119,21/10/2018 10:29,7/07/2016 15:59,6.8,284, Improper Access Control,nan
CVE-2016-1244,21/10/2018 10:29,3/10/2016 18:59,9.3,20, Improper Input Validation,nan
CVE-2016-1243,21/10/2018 10:29,3/10/2016 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10152,21/10/2018 10:29,28/03/2017 14:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10151,21/10/2018 10:29,1/03/2017 20:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-10075,21/10/2018 10:29,19/01/2017 20:59,4.6,17, DEPRECATED: Code,nan
CVE-2016-10034,21/10/2018 10:29,30/12/2016 19:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2012-6706,21/10/2018 10:29,22/06/2017 13:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2007-3184,19/10/2018 19:03,12/06/2007 21:30,7.2,287, Improper Authentication,nan
CVE-2007-2875,19/10/2018 19:03,11/06/2007 22:30,2.1,189, Numeric Errors,nan
CVE-2007-2748,19/10/2018 19:03,17/05/2007 20:30,4.3,200, Information Exposure,nan
CVE-2008-0226,19/10/2018 19:02,10/01/2008 23:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2172,19/10/2018 18:59,22/04/2007 19:19,4.7,20, Improper Input Validation,nan
CVE-2014-6414,19/10/2018 18:54,2/10/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-2138,19/10/2018 18:54,24/04/2007 20:19,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-15505,19/10/2018 18:48,18/08/2018 3:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-15504,19/10/2018 18:43,18/08/2018 3:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-16133,19/10/2018 18:30,29/08/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5362,19/10/2018 18:28,17/06/2016 15:59,6.4,254, 7PK – Security Features,nan
CVE-2015-8914,19/10/2018 18:27,17/06/2016 15:59,6.4,254, 7PK – Security Features,nan
CVE-2018-16134,19/10/2018 18:25,29/08/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3221,19/10/2018 18:25,26/08/2015 19:59,4.0,20, Improper Input Validation,nan
CVE-2018-16159,19/10/2018 18:24,30/08/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7821,19/10/2018 18:24,24/11/2014 15:59,4.0,399, Resource Management Errors,nan
CVE-2013-6433,19/10/2018 18:22,2/06/2014 15:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-1055,19/10/2018 18:08,21/02/2007 23:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1034,19/10/2018 18:05,21/02/2007 11:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0626,19/10/2018 17:45,31/01/2007 18:28,7.6,20, Improper Input Validation,nan
CVE-2018-15603,19/10/2018 17:34,21/08/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000225,19/10/2018 17:33,20/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0861,19/10/2018 17:29,23/02/2006 23:02,5.0,200, Information Exposure,nan
CVE-2018-1000642,19/10/2018 17:26,20/08/2018 19:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000640,19/10/2018 17:21,20/08/2018 19:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15570,19/10/2018 17:18,20/08/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15567,19/10/2018 17:04,20/08/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3832,19/10/2018 16:46,23/08/2018 14:29,8.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14453,19/10/2018 16:45,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14455,19/10/2018 16:39,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16237,19/10/2018 16:30,30/08/2018 22:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16337,19/10/2018 16:27,23/08/2018 15:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16238,19/10/2018 16:26,30/08/2018 22:29,6.5,20, Improper Input Validation,nan
CVE-2018-3912,19/10/2018 16:25,23/08/2018 18:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14786,19/10/2018 16:07,23/08/2018 19:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2016-6854,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6853,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6851,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5740,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5124,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4047,19/10/2018 15:46,15/12/2016 6:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4046,19/10/2018 15:46,15/12/2016 6:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-4045,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4028,19/10/2018 15:46,15/12/2016 6:59,3.5,255, Credentials Management,nan
CVE-2016-4027,19/10/2018 15:46,15/12/2016 6:59,3.5,200, Information Exposure,nan
CVE-2016-4026,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3174,19/10/2018 15:46,15/12/2016 6:59,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-3173,19/10/2018 15:46,15/12/2016 6:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2840,19/10/2018 15:46,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8542,19/10/2018 15:46,15/12/2016 6:59,4.0,320, Key Management Errors,nan
CVE-2006-0771,19/10/2018 15:46,18/02/2006 21:02,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2006-0750,19/10/2018 15:46,18/02/2006 2:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0749,19/10/2018 15:46,14/04/2006 10:02,9.3,399, Resource Management Errors,nan
CVE-2006-0748,19/10/2018 15:46,14/04/2006 10:02,9.3,399, Resource Management Errors,nan
CVE-2006-0747,19/10/2018 15:46,23/05/2006 10:06,5.0,189, Numeric Errors,nan
CVE-2006-0692,19/10/2018 15:45,15/02/2006 11:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0603,19/10/2018 15:45,8/02/2006 23:02,6.4,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0602,19/10/2018 15:45,8/02/2006 23:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0591,19/10/2018 15:45,8/02/2006 1:02,1.2,310, Cryptographic Issues,nan
CVE-2006-0586,19/10/2018 15:45,8/02/2006 1:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0565,19/10/2018 15:45,6/02/2006 23:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0553,19/10/2018 15:45,14/02/2006 19:06,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-0527,19/10/2018 15:45,2/02/2006 11:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-0525,19/10/2018 15:45,2/02/2006 11:02,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-0510,19/10/2018 15:45,1/02/2006 23:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0454,19/10/2018 15:44,7/02/2006 18:06,5.0,399, Resource Management Errors,nan
CVE-2006-0442,19/10/2018 15:44,26/01/2006 22:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0434,19/10/2018 15:44,26/01/2006 11:07,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0413,19/10/2018 15:44,25/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0403,19/10/2018 15:44,25/01/2006 2:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0369,19/10/2018 15:44,22/01/2006 20:03,2.1,200, Information Exposure,nan
CVE-2006-0359,19/10/2018 15:44,22/01/2006 20:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0325,19/10/2018 15:44,20/01/2006 21:03,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2006-0323,19/10/2018 15:44,23/03/2006 23:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0321,19/10/2018 15:44,24/01/2006 0:03,5.0,20, Improper Input Validation,nan
CVE-2006-0318,19/10/2018 15:44,19/01/2006 1:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0307,19/10/2018 15:44,19/01/2006 0:03,5.0,399, Resource Management Errors,nan
CVE-2006-0306,19/10/2018 15:44,19/01/2006 0:03,5.0,399, Resource Management Errors,nan
CVE-2006-0301,19/10/2018 15:44,30/01/2006 22:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0298,19/10/2018 15:44,2/02/2006 22:02,5.8,20, Improper Input Validation,nan
CVE-2006-0236,19/10/2018 15:43,18/01/2006 1:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0233,19/10/2018 15:43,18/01/2006 0:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0205,19/10/2018 15:43,13/01/2006 23:03,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0203,19/10/2018 15:43,13/01/2006 23:03,5.0,20, Improper Input Validation,nan
CVE-2006-0199,19/10/2018 15:43,13/01/2006 23:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0192,19/10/2018 15:43,13/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0175,19/10/2018 15:43,11/01/2006 21:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0150,19/10/2018 15:42,9/01/2006 23:03,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2006-0146,19/10/2018 15:42,9/01/2006 23:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0144,19/10/2018 15:42,9/01/2006 23:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0140,19/10/2018 15:42,9/01/2006 19:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0123,19/10/2018 15:42,9/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0103,19/10/2018 15:42,6/01/2006 11:03,5.0,200, Information Exposure,nan
CVE-2006-0097,19/10/2018 15:42,6/01/2006 11:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0082,19/10/2018 15:42,4/01/2006 23:03,5.1,134, Use of Externally-Controlled Format String,nan
CVE-2006-0074,19/10/2018 15:42,4/01/2006 1:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0047,19/10/2018 15:42,7/03/2006 11:02,5.0,399, Resource Management Errors,nan
CVE-2006-0031,19/10/2018 15:42,14/03/2006 23:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0023,19/10/2018 15:42,8/02/2006 2:18,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2006-0021,19/10/2018 15:42,14/02/2006 19:06,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0007,19/10/2018 15:41,11/07/2006 21:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0006,19/10/2018 15:41,14/02/2006 22:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0001,19/10/2018 15:41,12/09/2006 23:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4840,19/10/2018 15:41,31/12/2005 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4667,19/10/2018 15:41,31/12/2005 5:00,3.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4606,19/10/2018 15:41,31/12/2005 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4600,19/10/2018 15:41,31/12/2005 5:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-4560,19/10/2018 15:41,28/12/2005 19:03,7.5,20, Improper Input Validation,nan
CVE-2005-4444,19/10/2018 15:40,21/12/2005 2:03,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4368,19/10/2018 15:40,20/12/2005 2:03,5.0,200, Information Exposure,nan
CVE-2005-4360,19/10/2018 15:40,20/12/2005 1:03,7.8,20, Improper Input Validation,nan
CVE-2005-4349,19/10/2018 15:40,19/12/2005 11:03,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4348,19/10/2018 15:40,21/12/2005 0:03,7.8,399, Resource Management Errors,nan
CVE-2005-4320,19/10/2018 15:40,17/12/2005 11:03,5.0,200, Information Exposure,nan
CVE-2005-4220,19/10/2018 15:40,14/12/2005 11:03,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4214,19/10/2018 15:40,14/12/2005 11:03,5.0,200, Information Exposure,nan
CVE-2005-4199,19/10/2018 15:40,13/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4195,19/10/2018 15:40,13/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4161,19/10/2018 15:40,11/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4092,19/10/2018 15:40,8/12/2005 11:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4077,19/10/2018 15:40,8/12/2005 1:03,4.6,189, Numeric Errors,nan
CVE-2005-4011,19/10/2018 15:39,5/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3996,19/10/2018 15:39,5/12/2005 0:03,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3984,19/10/2018 15:39,4/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3962,19/10/2018 15:39,1/12/2005 17:03,4.6,189, Numeric Errors,nan
CVE-2005-3955,19/10/2018 15:39,1/12/2005 6:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3952,19/10/2018 15:39,1/12/2005 6:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3946,19/10/2018 15:39,1/12/2005 6:03,5.0,20, Improper Input Validation,nan
CVE-2005-3863,19/10/2018 15:39,29/11/2005 11:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3861,19/10/2018 15:39,29/11/2005 11:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3860,19/10/2018 15:39,29/11/2005 11:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3859,19/10/2018 15:39,29/11/2005 11:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3857,19/10/2018 15:39,27/11/2005 21:03,4.9,399, Resource Management Errors,nan
CVE-2005-3832,19/10/2018 15:39,26/11/2005 19:03,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3831,19/10/2018 15:39,26/11/2005 19:03,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3806,19/10/2018 15:39,25/11/2005 21:03,6.6,399, Resource Management Errors,nan
CVE-2005-3784,19/10/2018 15:39,23/11/2005 21:03,4.9,399, Resource Management Errors,nan
CVE-2005-3770,19/10/2018 15:39,23/11/2005 0:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3759,19/10/2018 15:39,22/11/2005 21:03,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3732,19/10/2018 15:38,21/11/2005 22:03,7.8,399, Resource Management Errors,nan
CVE-2005-3713,19/10/2018 15:38,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3711,19/10/2018 15:38,31/12/2005 5:00,7.5,189, Numeric Errors,nan
CVE-2005-3710,19/10/2018 15:38,31/12/2005 5:00,7.5,189, Numeric Errors,nan
CVE-2005-3653,19/10/2018 15:38,31/12/2005 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3626,19/10/2018 15:37,31/12/2005 5:00,5.0,399, Resource Management Errors,nan
CVE-2005-3625,19/10/2018 15:37,31/12/2005 5:00,10.0,399, Resource Management Errors,nan
CVE-2005-3624,19/10/2018 15:37,31/12/2005 5:00,5.0,189, Numeric Errors,nan
CVE-2005-3548,19/10/2018 15:37,16/11/2005 7:42,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-3529,19/10/2018 15:36,20/11/2005 22:03,5.0,200, Information Exposure,nan
CVE-2005-3528,19/10/2018 15:36,20/11/2005 22:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3365,19/10/2018 15:36,30/10/2005 14:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3357,19/10/2018 15:36,31/12/2005 5:00,5.4,399, Resource Management Errors,nan
CVE-2005-3273,19/10/2018 15:35,21/10/2005 1:02,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2005-3240,19/10/2018 15:35,31/12/2005 5:00,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2005-3193,19/10/2018 15:35,7/12/2005 0:03,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3192,19/10/2018 15:35,8/12/2005 1:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3191,19/10/2018 15:34,7/12/2005 1:03,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3181,19/10/2018 15:34,12/10/2005 13:04,2.1,399, Resource Management Errors,nan
CVE-2005-3109,19/10/2018 15:34,30/09/2005 10:05,2.1,399, Resource Management Errors,nan
CVE-2005-3058,19/10/2018 15:34,31/12/2005 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-3055,19/10/2018 15:34,26/09/2005 19:03,2.1,20, Improper Input Validation,nan
CVE-2005-3011,19/10/2018 15:34,21/09/2005 20:03,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2005-2976,19/10/2018 15:34,18/11/2005 6:03,7.5,189, Numeric Errors,nan
CVE-2005-2975,19/10/2018 15:34,18/11/2005 6:03,7.8,399, Resource Management Errors,nan
CVE-2005-2929,19/10/2018 15:34,18/11/2005 6:03,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-2856,19/10/2018 15:33,8/09/2005 10:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2800,19/10/2018 15:33,6/09/2005 17:03,2.1,399, Resource Management Errors,nan
CVE-2005-2754,19/10/2018 15:33,5/11/2005 11:02,5.1,189, Numeric Errors,nan
CVE-2005-2753,19/10/2018 15:33,5/11/2005 11:02,5.1,189, Numeric Errors,nan
CVE-2005-2714,19/10/2018 15:33,31/12/2005 5:00,6.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2005-2709,19/10/2018 15:33,20/11/2005 22:03,4.6,399, Resource Management Errors,nan
CVE-2005-2708,19/10/2018 15:33,25/10/2005 18:02,2.1,399, Resource Management Errors,nan
CVE-2005-2619,19/10/2018 15:33,31/12/2005 5:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-2618,19/10/2018 15:33,31/12/2005 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2555,19/10/2018 15:33,16/08/2005 4:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-2495,19/10/2018 15:33,15/09/2005 20:03,5.1,189, Numeric Errors,nan
CVE-2005-2492,19/10/2018 15:33,14/09/2005 19:03,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-2459,19/10/2018 15:32,23/08/2005 4:00,5.0,476, NULL Pointer Dereference,nan
CVE-2005-2454,19/10/2018 15:32,31/12/2005 5:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-2378,19/10/2018 15:32,26/07/2005 4:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-2371,19/10/2018 15:32,26/07/2005 4:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-2370,19/10/2018 15:32,26/07/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2005-2340,19/10/2018 15:32,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2335,19/10/2018 15:32,27/07/2005 4:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2177,19/10/2018 15:32,11/07/2005 4:00,5.0,20, Improper Input Validation,nan
CVE-2005-2127,19/10/2018 15:32,19/08/2005 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2099,19/10/2018 15:32,23/08/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2005-1918,19/10/2018 15:32,31/12/2005 5:00,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-1790,19/10/2018 15:31,1/06/2005 4:00,2.6,399, Resource Management Errors,nan
CVE-2005-1761,19/10/2018 15:31,5/08/2005 4:00,2.1,20, Improper Input Validation,nan
CVE-2005-1704,19/10/2018 15:31,24/05/2005 4:00,4.6,189, Numeric Errors,nan
CVE-2005-1689,19/10/2018 15:31,18/07/2005 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-1628,19/10/2018 15:31,17/05/2005 4:00,7.5,20, Improper Input Validation,nan
CVE-2005-1619,19/10/2018 15:31,16/05/2005 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-1487,19/10/2018 15:31,11/05/2005 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-1486,19/10/2018 15:31,11/05/2005 4:00,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-1425,19/10/2018 15:31,3/05/2005 4:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2005-1398,19/10/2018 15:31,3/05/2005 4:00,5.0,20, Improper Input Validation,nan
CVE-2005-0891,19/10/2018 15:31,2/05/2005 4:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-0756,19/10/2018 15:31,8/06/2005 4:00,2.1,399, Resource Management Errors,nan
CVE-2005-0720,19/10/2018 15:31,8/03/2005 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-0679,19/10/2018 15:31,2/05/2005 4:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-2761,19/10/2018 15:30,5/01/2009 20:30,5.0,310, Cryptographic Issues,nan
CVE-2004-2748,19/10/2018 15:30,31/12/2004 5:00,4.3,200, Information Exposure,nan
CVE-2004-2747,19/10/2018 15:30,31/12/2004 5:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-2746,19/10/2018 15:30,31/12/2004 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2745,19/10/2018 15:30,31/12/2004 5:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-1617,19/10/2018 15:30,18/10/2004 4:00,5.0,20, Improper Input Validation,nan
CVE-2004-1423,19/10/2018 15:30,31/12/2004 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-1364,19/10/2018 15:30,4/08/2004 4:00,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-1166,19/10/2018 15:30,31/12/2004 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-0067,19/10/2018 15:30,17/02/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1558,19/10/2018 15:29,31/12/2003 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1557,19/10/2018 15:29,31/12/2003 5:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1556,19/10/2018 15:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1555,19/10/2018 15:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1554,19/10/2018 15:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1553,19/10/2018 15:29,31/12/2003 5:00,4.3,200, Information Exposure,nan
CVE-2003-1552,19/10/2018 15:29,31/12/2003 5:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2003-1549,19/10/2018 15:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1548,19/10/2018 15:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1547,19/10/2018 15:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1545,19/10/2018 15:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1541,19/10/2018 15:29,31/12/2003 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1540,19/10/2018 15:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1535,19/10/2018 15:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1534,19/10/2018 15:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1533,19/10/2018 15:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1532,19/10/2018 15:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1530,19/10/2018 15:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1528,19/10/2018 15:29,31/12/2003 5:00,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2003-1439,19/10/2018 15:29,31/12/2003 5:00,4.3,255, Credentials Management,nan
CVE-2003-1412,19/10/2018 15:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1340,19/10/2018 15:29,31/12/2003 5:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-0649,19/10/2018 15:29,12/08/2002 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15495,19/10/2018 14:28,18/08/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11511,19/10/2018 14:07,16/08/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15601,19/10/2018 14:06,21/08/2018 2:29,7.5,20, Improper Input Validation,nan
CVE-2016-9045,19/10/2018 13:38,17/09/2018 15:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-16732,19/10/2018 13:03,8/09/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16730,19/10/2018 13:03,8/09/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13820,19/10/2018 12:39,30/08/2018 14:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-13819,19/10/2018 12:30,30/08/2018 14:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-17565,19/10/2018 10:29,12/12/2017 23:29,4.7,20, Improper Input Validation,nan
CVE-2017-17564,19/10/2018 10:29,12/12/2017 23:29,6.9,388, 7PK – Errors,nan
CVE-2017-17563,19/10/2018 10:29,12/12/2017 23:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17046,19/10/2018 10:29,28/11/2017 23:29,2.1,200, Information Exposure,nan
CVE-2017-15589,19/10/2018 10:29,18/10/2017 8:29,2.1,200, Information Exposure,nan
CVE-2017-15588,19/10/2018 10:29,18/10/2017 8:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14317,19/10/2018 10:29,12/09/2017 15:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14316,19/10/2018 10:29,12/09/2017 15:29,7.2,125, Out-of-bounds Read,nan
CVE-2015-4639,18/10/2018 21:29,21/07/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14424,18/10/2018 20:21,14/08/2018 18:29,4.6,416, Use After Free,nan
CVE-2008-4715,18/10/2018 19:37,23/10/2008 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8273,18/10/2018 19:24,15/08/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13417,18/10/2018 17:47,13/08/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-13415,18/10/2018 17:46,13/08/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8346,18/10/2018 17:39,15/08/2018 17:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-15202,18/10/2018 17:08,8/08/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8385,18/10/2018 17:07,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15192,18/10/2018 17:02,8/08/2018 2:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2006-3697,18/10/2018 16:48,21/07/2006 14:03,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-3688,18/10/2018 16:48,21/07/2006 14:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3678,18/10/2018 16:48,26/07/2006 23:04,5.0,254, 7PK – Security Features,nan
CVE-2006-3677,18/10/2018 16:48,27/07/2006 19:04,7.5,16, Configuration,nan
CVE-2006-3647,18/10/2018 16:48,10/10/2006 22:07,9.3,189, Numeric Errors,nan
CVE-2006-3638,18/10/2018 16:48,8/08/2006 23:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3632,18/10/2018 16:48,21/07/2006 14:03,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3631,18/10/2018 16:48,21/07/2006 14:03,5.0,399, Resource Management Errors,nan
CVE-2006-3630,18/10/2018 16:48,21/07/2006 14:03,7.5,189, Numeric Errors,nan
CVE-2006-3628,18/10/2018 16:48,21/07/2006 14:03,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2006-3627,18/10/2018 16:48,21/07/2006 14:03,5.0,399, Resource Management Errors,nan
CVE-2006-3583,18/10/2018 16:48,8/08/2006 23:04,7.5,287, Improper Authentication,nan
CVE-2006-3582,18/10/2018 16:48,13/07/2006 19:05,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3581,18/10/2018 16:48,13/07/2006 19:05,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3573,18/10/2018 16:48,13/07/2006 10:05,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2006-3571,18/10/2018 16:48,13/07/2006 1:05,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3562,18/10/2018 16:48,13/07/2006 1:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3561,18/10/2018 16:47,13/07/2006 1:05,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-3556,18/10/2018 16:47,13/07/2006 0:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3539,18/10/2018 16:47,13/07/2006 0:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3530,18/10/2018 16:47,12/07/2006 21:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3528,18/10/2018 16:47,12/07/2006 0:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3494,18/10/2018 16:47,10/07/2006 22:05,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3467,18/10/2018 16:47,21/07/2006 14:03,7.5,189, Numeric Errors,nan
CVE-2006-3451,18/10/2018 16:47,8/08/2006 23:04,7.5,20, Improper Input Validation,nan
CVE-2006-3450,18/10/2018 16:47,8/08/2006 23:04,7.5,20, Improper Input Validation,nan
CVE-2006-3448,18/10/2018 16:47,13/02/2007 20:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3445,18/10/2018 16:47,14/11/2006 21:07,7.5,189, Numeric Errors,nan
CVE-2006-3442,18/10/2018 16:47,12/09/2006 23:07,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3430,18/10/2018 16:47,7/07/2006 0:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3423,18/10/2018 16:47,7/07/2006 0:05,9.3,20, Improper Input Validation,nan
CVE-2006-3396,18/10/2018 16:47,6/07/2006 20:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3365,18/10/2018 16:47,6/07/2006 20:05,2.6,200, Information Exposure,nan
CVE-2006-3344,18/10/2018 16:46,3/07/2006 19:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-3318,18/10/2018 16:46,29/06/2006 21:05,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3277,18/10/2018 16:46,28/06/2006 22:05,5.0,399, Resource Management Errors,nan
CVE-2006-3210,18/10/2018 16:46,24/06/2006 1:06,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3203,18/10/2018 16:46,24/06/2006 1:06,10.0,255, Credentials Management,nan
CVE-2006-3175,18/10/2018 16:46,23/06/2006 0:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3146,18/10/2018 16:46,22/06/2006 22:06,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3144,18/10/2018 16:46,22/06/2006 22:06,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3139,18/10/2018 16:46,22/06/2006 22:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3136,18/10/2018 16:46,22/06/2006 22:06,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3117,18/10/2018 16:45,30/06/2006 18:05,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3086,18/10/2018 16:45,19/06/2006 19:02,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3084,18/10/2018 16:45,9/08/2006 10:04,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-3083,18/10/2018 16:45,9/08/2006 10:04,7.2,399, Resource Management Errors,nan
CVE-2006-3082,18/10/2018 16:45,19/06/2006 18:02,5.0,189, Numeric Errors,nan
CVE-2006-3074,18/10/2018 16:45,19/06/2006 10:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3064,18/10/2018 16:45,19/06/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3061,18/10/2018 16:45,19/06/2006 10:02,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3048,18/10/2018 16:45,16/06/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3047,18/10/2018 16:45,16/06/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3019,18/10/2018 16:45,15/06/2006 10:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2994,18/10/2018 16:45,13/06/2006 1:02,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2977,18/10/2018 16:45,12/06/2006 22:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2973,18/10/2018 16:45,12/06/2006 22:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2951,18/10/2018 16:44,12/06/2006 20:06,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2950,18/10/2018 16:44,12/06/2006 20:06,5.0,200, Information Exposure,nan
CVE-2006-2940,18/10/2018 16:44,28/09/2006 18:07,7.8,399, Resource Management Errors,nan
CVE-2018-8374,18/10/2018 16:43,15/08/2018 17:29,4.0,20, Improper Input Validation,nan
CVE-2006-2937,18/10/2018 16:43,28/09/2006 18:07,7.8,399, Resource Management Errors,nan
CVE-2006-2936,18/10/2018 16:43,10/07/2006 19:05,7.8,399, Resource Management Errors,nan
CVE-2006-2934,18/10/2018 16:43,30/06/2006 21:05,5.0,399, Resource Management Errors,nan
CVE-2006-2923,18/10/2018 16:43,9/06/2006 10:02,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2918,18/10/2018 16:43,23/06/2006 21:06,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-2898,18/10/2018 16:43,7/06/2006 10:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2894,18/10/2018 16:43,7/06/2006 10:02,4.0,20, Improper Input Validation,nan
CVE-2006-2860,18/10/2018 16:43,6/06/2006 20:06,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2852,18/10/2018 16:43,6/06/2006 20:06,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2816,18/10/2018 16:43,5/06/2006 17:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2815,18/10/2018 16:43,5/06/2006 17:02,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2803,18/10/2018 16:43,3/06/2006 10:02,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2784,18/10/2018 16:42,2/06/2006 19:02,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2006-2783,18/10/2018 16:42,2/06/2006 19:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2782,18/10/2018 16:42,2/06/2006 19:02,4.3,20, Improper Input Validation,nan
CVE-2006-2781,18/10/2018 16:42,2/06/2006 19:02,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2780,18/10/2018 16:42,2/06/2006 19:02,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2779,18/10/2018 16:42,2/06/2006 19:02,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2775,18/10/2018 16:41,2/06/2006 18:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-2769,18/10/2018 16:41,2/06/2006 10:18,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-2669,18/10/2018 16:41,30/05/2006 21:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2663,18/10/2018 16:41,30/05/2006 21:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2645,18/10/2018 16:41,30/05/2006 10:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2636,18/10/2018 16:41,30/05/2006 10:02,7.5,287, Improper Authentication,nan
CVE-2006-2635,18/10/2018 16:41,30/05/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2618,18/10/2018 16:40,26/05/2006 1:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2613,18/10/2018 16:40,26/05/2006 1:06,4.3,200, Information Exposure,nan
CVE-2006-2548,18/10/2018 16:40,23/05/2006 10:06,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2545,18/10/2018 16:40,23/05/2006 10:06,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2535,18/10/2018 16:40,22/05/2006 23:10,5.0,200, Information Exposure,nan
CVE-2006-2530,18/10/2018 16:40,22/05/2006 23:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-2516,18/10/2018 16:40,22/05/2006 22:02,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-2506,18/10/2018 16:40,22/05/2006 19:02,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2490,18/10/2018 16:40,19/05/2006 23:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2451,18/10/2018 16:40,7/07/2006 18:05,4.6,399, Resource Management Errors,nan
CVE-2006-2439,18/10/2018 16:40,1/06/2006 10:02,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2431,18/10/2018 16:39,17/05/2006 10:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2416,18/10/2018 16:39,16/05/2006 10:02,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2409,18/10/2018 16:39,16/05/2006 10:02,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2006-2408,18/10/2018 16:39,16/05/2006 10:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2407,18/10/2018 16:39,16/05/2006 10:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2399,18/10/2018 16:39,16/05/2006 1:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2388,18/10/2018 16:39,13/07/2006 21:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2382,18/10/2018 16:39,13/06/2006 19:06,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2376,18/10/2018 16:39,13/06/2006 18:02,7.5,189, Numeric Errors,nan
CVE-2006-2372,18/10/2018 16:39,11/07/2006 21:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2369,18/10/2018 16:39,15/05/2006 16:06,7.5,287, Improper Authentication,nan
CVE-2006-2363,18/10/2018 16:39,15/05/2006 16:06,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2341,18/10/2018 16:39,12/05/2006 1:02,5.0,200, Information Exposure,nan
CVE-2006-2337,18/10/2018 16:39,12/05/2006 0:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-2327,18/10/2018 16:39,12/05/2006 0:02,6.4,189, Numeric Errors,nan
CVE-2006-2315,18/10/2018 16:39,12/05/2006 0:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2312,18/10/2018 16:39,19/05/2006 21:02,2.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2297,18/10/2018 16:39,10/05/2006 2:22,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2281,18/10/2018 16:38,10/05/2006 2:14,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2268,18/10/2018 16:38,9/05/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2224,18/10/2018 16:38,5/05/2006 19:02,5.0,287, Improper Authentication,nan
CVE-2006-2223,18/10/2018 16:38,5/05/2006 19:02,5.0,20, Improper Input Validation,nan
CVE-2006-2198,18/10/2018 16:38,30/06/2006 18:05,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-2128,18/10/2018 16:38,1/05/2006 23:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2122,18/10/2018 16:38,1/05/2006 22:06,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2113,18/10/2018 16:38,25/08/2006 1:04,6.4,287, Improper Authentication,nan
CVE-2006-2112,18/10/2018 16:38,25/08/2006 1:04,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-2111,18/10/2018 16:38,1/05/2006 19:06,4.3,200, Information Exposure,nan
CVE-2006-2103,18/10/2018 16:38,29/04/2006 10:02,2.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2093,18/10/2018 16:38,29/04/2006 10:02,2.6,399, Resource Management Errors,nan
CVE-2006-2090,18/10/2018 16:38,29/04/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2085,18/10/2018 16:38,29/04/2006 10:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2084,18/10/2018 16:38,29/04/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2066,18/10/2018 16:37,27/04/2006 13:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1993,18/10/2018 16:37,25/04/2006 12:50,5.1,399, Resource Management Errors,nan
CVE-2006-1992,18/10/2018 16:37,25/04/2006 1:02,2.6,399, Resource Management Errors,nan
CVE-2006-1978,18/10/2018 16:37,21/04/2006 22:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1962,18/10/2018 16:37,21/04/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1957,18/10/2018 16:37,21/04/2006 10:02,5.0,20, Improper Input Validation,nan
CVE-2006-1918,18/10/2018 16:37,20/04/2006 18:06,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1902,18/10/2018 16:37,20/04/2006 10:02,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1898,18/10/2018 16:37,20/04/2006 10:02,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1896,18/10/2018 16:37,20/04/2006 10:02,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1890,18/10/2018 16:37,20/04/2006 10:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1888,18/10/2018 16:37,20/04/2006 10:02,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2006-1871,18/10/2018 16:37,20/04/2006 10:02,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1868,18/10/2018 16:36,20/04/2006 10:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1861,18/10/2018 16:36,23/05/2006 10:06,7.5,189, Numeric Errors,nan
CVE-2006-1834,18/10/2018 16:36,19/04/2006 16:06,5.1,189, Numeric Errors,nan
CVE-2006-1826,18/10/2018 16:36,18/04/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1790,18/10/2018 16:36,14/04/2006 19:02,10.0,399, Resource Management Errors,nan
CVE-2006-1749,18/10/2018 16:36,12/04/2006 22:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1741,18/10/2018 16:35,14/04/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1739,18/10/2018 16:35,14/04/2006 10:02,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1737,18/10/2018 16:35,14/04/2006 18:02,9.3,189, Numeric Errors,nan
CVE-2006-1735,18/10/2018 16:35,14/04/2006 10:02,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2006-1733,18/10/2018 16:35,14/04/2006 10:02,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2006-1731,18/10/2018 16:34,14/04/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1730,18/10/2018 16:34,14/04/2006 10:02,9.3,189, Numeric Errors,nan
CVE-2006-1729,18/10/2018 16:34,14/04/2006 10:02,4.3,20, Improper Input Validation,nan
CVE-2006-1726,18/10/2018 16:34,14/04/2006 10:02,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2006-1725,18/10/2018 16:34,14/04/2006 10:02,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-1721,18/10/2018 16:34,11/04/2006 23:02,2.6,20, Improper Input Validation,nan
CVE-2006-1688,18/10/2018 16:33,11/04/2006 0:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1677,18/10/2018 16:33,11/04/2006 0:02,6.4,200, Information Exposure,nan
CVE-2006-1676,18/10/2018 16:33,11/04/2006 0:02,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1652,18/10/2018 16:33,6/04/2006 10:04,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1636,18/10/2018 16:33,6/04/2006 10:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1626,18/10/2018 16:33,5/04/2006 10:04,4.3,20, Improper Input Validation,nan
CVE-2006-1610,18/10/2018 16:33,4/04/2006 10:04,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1593,18/10/2018 16:33,3/04/2006 10:04,5.0,399, Resource Management Errors,nan
CVE-2006-1550,18/10/2018 16:33,30/03/2006 23:02,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1549,18/10/2018 16:33,10/04/2006 22:58,2.1,399, Resource Management Errors,nan
CVE-2006-1540,18/10/2018 16:33,30/03/2006 11:02,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1503,18/10/2018 16:32,30/03/2006 1:06,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1471,18/10/2018 16:32,27/06/2006 22:13,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2006-1467,18/10/2018 16:32,29/06/2006 23:05,5.1,189, Numeric Errors,nan
CVE-2006-1463,18/10/2018 16:32,12/05/2006 20:06,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1462,18/10/2018 16:32,12/05/2006 20:06,5.1,189, Numeric Errors,nan
CVE-2006-1461,18/10/2018 16:32,12/05/2006 20:06,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1460,18/10/2018 16:32,12/05/2006 20:06,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1459,18/10/2018 16:32,12/05/2006 20:06,5.1,189, Numeric Errors,nan
CVE-2006-1454,18/10/2018 16:32,12/05/2006 20:06,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1453,18/10/2018 16:32,12/05/2006 20:06,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1423,18/10/2018 16:32,28/03/2006 20:02,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1367,18/10/2018 16:32,23/03/2006 23:06,6.8,200, Information Exposure,nan
CVE-2006-1364,18/10/2018 16:32,23/03/2006 11:06,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2006-1360,18/10/2018 16:32,23/03/2006 11:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1359,18/10/2018 16:32,23/03/2006 0:06,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1330,18/10/2018 16:32,21/03/2006 1:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1306,18/10/2018 16:32,13/07/2006 21:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1305,18/10/2018 16:32,31/12/2006 5:00,4.3,399, Resource Management Errors,nan
CVE-2006-1304,18/10/2018 16:32,13/07/2006 21:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1303,18/10/2018 16:31,13/06/2006 19:06,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1302,18/10/2018 16:31,13/07/2006 21:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1278,18/10/2018 16:31,19/03/2006 11:06,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1249,18/10/2018 16:31,19/03/2006 1:02,6.8,189, Numeric Errors,nan
CVE-2006-1247,18/10/2018 16:31,19/04/2006 16:06,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2006-1230,18/10/2018 16:31,14/03/2006 19:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1228,18/10/2018 16:31,14/03/2006 19:06,5.1,287, Improper Authentication,nan
CVE-2006-1174,18/10/2018 16:31,28/05/2006 23:02,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2006-1173,18/10/2018 16:31,7/06/2006 23:06,5.0,399, Resource Management Errors,nan
CVE-2006-1148,18/10/2018 16:30,10/03/2006 11:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1119,18/10/2018 16:30,9/03/2006 20:02,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-1079,18/10/2018 16:30,9/03/2006 0:02,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-1043,18/10/2018 16:30,7/03/2006 11:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1039,18/10/2018 16:30,7/03/2006 11:02,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1018,18/10/2018 16:30,7/03/2006 0:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1002,18/10/2018 16:30,6/03/2006 20:06,10.0,255, Credentials Management,nan
CVE-2006-0976,18/10/2018 16:30,3/03/2006 11:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0967,18/10/2018 16:29,2/03/2006 23:02,2.1,399, Resource Management Errors,nan
CVE-2006-0966,18/10/2018 16:29,2/03/2006 23:02,2.1,399, Resource Management Errors,nan
CVE-2006-0959,18/10/2018 16:29,2/03/2006 23:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0950,18/10/2018 16:29,13/03/2006 19:34,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0945,18/10/2018 16:29,1/03/2006 2:02,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0938,18/10/2018 16:29,1/03/2006 2:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0931,18/10/2018 16:29,28/02/2006 11:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0914,18/10/2018 16:29,28/02/2006 11:02,5.5,20, Improper Input Validation,nan
CVE-2006-0911,18/10/2018 16:29,28/02/2006 11:02,5.0,399, Resource Management Errors,nan
CVE-2006-0896,18/10/2018 16:29,25/02/2006 11:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0884,18/10/2018 16:29,24/02/2006 22:02,9.3,20, Improper Input Validation,nan
CVE-2006-0860,18/10/2018 16:29,23/02/2006 23:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0859,18/10/2018 16:29,23/02/2006 23:02,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-0857,18/10/2018 16:29,23/02/2006 23:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0855,18/10/2018 16:29,23/02/2006 21:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0813,18/10/2018 16:29,24/02/2006 11:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0807,18/10/2018 16:29,21/02/2006 2:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0806,18/10/2018 16:29,21/02/2006 2:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0795,18/10/2018 16:29,19/02/2006 21:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0779,18/10/2018 16:29,19/02/2006 0:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8353,18/10/2018 15:44,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8355,18/10/2018 15:23,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8380,18/10/2018 15:00,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12885,18/10/2018 14:40,7/08/2018 15:29,4.3,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-7059,18/10/2018 13:48,6/08/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-7058,18/10/2018 13:42,6/08/2018 20:29,10.0,287, Improper Authentication,nan
CVE-2018-14716,18/10/2018 13:42,6/08/2018 20:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-9003,18/10/2018 13:32,6/08/2018 20:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9002,18/10/2018 12:59,6/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9000,18/10/2018 12:34,6/08/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-1000657,18/10/2018 12:13,20/08/2018 19:31,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18220,18/10/2018 10:29,5/03/2018 22:29,6.8,416, Use After Free,nan
CVE-2017-17498,18/10/2018 10:29,11/12/2017 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16547,18/10/2018 10:29,6/11/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-16545,18/10/2018 10:29,5/11/2017 22:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-15277,18/10/2018 10:29,12/10/2017 8:29,4.3,200, Information Exposure,nan
CVE-2017-11722,18/10/2018 10:29,28/07/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11643,18/10/2018 10:29,26/07/2017 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11642,18/10/2018 10:29,26/07/2017 8:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-11638,18/10/2018 10:29,26/07/2017 8:29,6.8,20, Improper Input Validation,nan
CVE-2017-11637,18/10/2018 10:29,26/07/2017 8:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-11636,18/10/2018 10:29,26/07/2017 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11403,18/10/2018 10:29,18/07/2017 0:29,6.8,416, Use After Free,nan
CVE-2017-11102,18/10/2018 10:29,7/07/2017 18:29,5.0,20, Improper Input Validation,nan
CVE-2017-10800,18/10/2018 10:29,3/07/2017 1:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-10794,18/10/2018 10:29,2/07/2017 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000364,18/10/2018 10:29,19/06/2017 16:29,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8022,17/10/2018 22:17,29/08/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-15602,17/10/2018 22:14,26/08/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15833,17/10/2018 22:13,26/08/2018 17:29,4.0,20, Improper Input Validation,nan
CVE-2018-15876,17/10/2018 22:08,26/08/2018 7:29,5.0,20, Improper Input Validation,nan
CVE-2006-6884,17/10/2018 21:49,31/12/2006 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6882,17/10/2018 21:49,31/12/2006 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6881,17/10/2018 21:49,31/12/2006 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6824,17/10/2018 21:49,29/12/2006 11:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6783,17/10/2018 21:49,28/12/2006 0:28,7.5,287, Improper Authentication,nan
CVE-2006-6749,17/10/2018 21:49,27/12/2006 0:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6747,17/10/2018 21:49,27/12/2006 0:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6746,17/10/2018 21:49,27/12/2006 0:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6741,17/10/2018 21:49,26/12/2006 23:28,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2006-6735,17/10/2018 21:49,26/12/2006 23:28,5.0,200, Information Exposure,nan
CVE-2006-6734,17/10/2018 21:49,26/12/2006 23:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6733,17/10/2018 21:49,26/12/2006 23:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6701,17/10/2018 21:49,23/12/2006 1:28,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2006-6676,17/10/2018 21:49,21/12/2006 1:28,9.3,189, Numeric Errors,nan
CVE-2006-6601,17/10/2018 21:49,15/12/2006 22:28,4.3,399, Resource Management Errors,nan
CVE-2006-6504,17/10/2018 21:48,20/12/2006 1:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6503,17/10/2018 21:48,20/12/2006 1:28,6.8,254, 7PK – Security Features,nan
CVE-2006-6501,17/10/2018 21:48,20/12/2006 1:28,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2006-6457,17/10/2018 21:48,11/12/2006 17:28,5.0,200, Information Exposure,nan
CVE-2006-6442,17/10/2018 21:48,10/12/2006 11:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6383,17/10/2018 21:47,10/12/2006 20:28,4.6,20, Improper Input Validation,nan
CVE-2006-6349,17/10/2018 21:47,7/12/2006 1:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6337,17/10/2018 21:47,7/12/2006 1:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6293,17/10/2018 21:47,5/12/2006 11:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6288,17/10/2018 21:47,4/12/2006 11:28,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6183,17/10/2018 21:47,1/12/2006 0:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6157,17/10/2018 21:46,28/11/2006 23:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6134,17/10/2018 21:46,28/11/2006 1:07,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6133,17/10/2018 21:46,28/11/2006 1:07,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6106,17/10/2018 21:46,19/12/2006 19:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6094,17/10/2018 21:46,24/11/2006 18:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6048,17/10/2018 21:46,22/11/2006 0:07,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6047,17/10/2018 21:46,22/11/2006 0:07,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-6041,17/10/2018 21:46,22/11/2006 0:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6037,17/10/2018 21:46,22/11/2006 0:07,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6026,17/10/2018 21:46,21/11/2006 23:07,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5990,17/10/2018 21:46,21/11/2006 1:07,4.0,20, Improper Input Validation,nan
CVE-2006-5974,17/10/2018 21:46,31/12/2006 5:00,7.8,20, Improper Input Validation,nan
CVE-2006-5966,17/10/2018 21:46,17/11/2006 22:07,6.4,399, Resource Management Errors,nan
CVE-2006-5957,17/10/2018 21:46,17/11/2006 1:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5909,17/10/2018 21:45,15/11/2006 15:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-5897,17/10/2018 21:45,15/11/2006 15:07,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-5872,17/10/2018 21:45,18/12/2006 0:28,7.5,20, Improper Input Validation,nan
CVE-2006-5870,17/10/2018 21:45,31/12/2006 5:00,9.3,189, Numeric Errors,nan
CVE-2006-5867,17/10/2018 21:45,31/12/2006 5:00,7.8,20, Improper Input Validation,nan
CVE-2006-5864,17/10/2018 21:45,11/11/2006 1:07,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5858,17/10/2018 21:45,31/12/2006 5:00,5.0,20, Improper Input Validation,nan
CVE-2006-5857,17/10/2018 21:45,31/12/2006 5:00,9.3,399, Resource Management Errors,nan
CVE-2006-5840,17/10/2018 21:45,10/11/2006 2:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5829,17/10/2018 21:45,10/11/2006 1:07,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5815,17/10/2018 21:45,8/11/2006 23:07,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5793,17/10/2018 21:45,17/11/2006 23:07,2.6,20, Improper Input Validation,nan
CVE-2006-5789,17/10/2018 21:45,7/11/2006 23:07,4.0,399, Resource Management Errors,nan
CVE-2006-5788,17/10/2018 21:45,7/11/2006 23:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5779,17/10/2018 21:44,7/11/2006 18:07,5.0,399, Resource Management Errors,nan
CVE-2006-5764,17/10/2018 21:44,6/11/2006 23:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5762,17/10/2018 21:44,6/11/2006 23:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5758,17/10/2018 21:44,6/11/2006 20:07,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5703,17/10/2018 21:44,4/11/2006 1:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5702,17/10/2018 21:44,4/11/2006 1:07,5.0,200, Information Exposure,nan
CVE-2006-5645,17/10/2018 21:44,1/11/2006 15:07,5.0,399, Resource Management Errors,nan
CVE-2006-5629,17/10/2018 21:44,31/10/2006 22:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5619,17/10/2018 21:43,31/10/2006 19:07,2.1,399, Resource Management Errors,nan
CVE-2006-5612,17/10/2018 21:43,31/10/2006 1:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5606,17/10/2018 21:43,31/10/2006 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5585,17/10/2018 21:43,13/12/2006 1:28,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-5579,17/10/2018 21:43,12/12/2006 20:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5560,17/10/2018 21:43,27/10/2006 16:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5517,17/10/2018 21:43,26/10/2006 16:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5487,17/10/2018 21:43,10/11/2006 22:07,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-5478,17/10/2018 21:43,24/10/2006 20:07,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5456,17/10/2018 21:43,23/10/2006 17:07,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5451,17/10/2018 21:42,23/10/2006 17:07,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5418,17/10/2018 21:42,20/10/2006 14:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5399,17/10/2018 21:42,18/10/2006 23:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5330,17/10/2018 21:42,17/10/2006 21:07,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5313,17/10/2018 21:42,17/10/2006 17:07,6.5,20, Improper Input Validation,nan
CVE-2006-5310,17/10/2018 21:42,17/10/2006 16:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5306,17/10/2018 21:42,17/10/2006 15:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5291,17/10/2018 21:42,16/10/2006 18:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5239,17/10/2018 21:41,12/10/2006 0:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5229,17/10/2018 21:41,10/10/2006 23:07,2.6,200, Information Exposure,nan
CVE-2006-5221,17/10/2018 21:41,10/10/2006 21:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5220,17/10/2018 21:41,10/10/2006 4:06,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5168,17/10/2018 21:41,10/10/2006 4:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5149,17/10/2018 21:41,5/10/2006 4:04,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-5143,17/10/2018 21:41,10/10/2006 4:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5142,17/10/2018 21:41,10/10/2006 4:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5119,17/10/2018 21:41,3/10/2006 4:03,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5101,17/10/2018 21:41,3/10/2006 4:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4985,17/10/2018 21:40,26/09/2006 2:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4965,17/10/2018 21:40,25/09/2006 0:07,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4924,17/10/2018 21:40,27/09/2006 1:07,7.8,399, Resource Management Errors,nan
CVE-2006-4863,17/10/2018 21:39,19/09/2006 18:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4858,17/10/2018 21:39,19/09/2006 18:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4855,17/10/2018 21:39,19/09/2006 18:07,4.9,399, Resource Management Errors,nan
CVE-2006-4842,17/10/2018 21:39,12/10/2006 0:07,3.6,20, Improper Input Validation,nan
CVE-2006-4811,17/10/2018 21:39,18/10/2006 17:07,6.8,189, Numeric Errors,nan
CVE-2006-4785,17/10/2018 21:39,14/09/2006 10:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4777,17/10/2018 21:39,14/09/2006 0:07,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4776,17/10/2018 21:39,14/09/2006 0:07,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4775,17/10/2018 21:39,14/09/2006 0:07,7.8,399, Resource Management Errors,nan
CVE-2006-4774,17/10/2018 21:39,14/09/2006 0:07,7.8,399, Resource Management Errors,nan
CVE-2006-4736,17/10/2018 21:39,13/09/2006 22:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4734,17/10/2018 21:39,13/09/2006 22:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4712,17/10/2018 21:39,12/09/2006 16:07,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4696,17/10/2018 21:39,10/10/2006 22:07,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4692,17/10/2018 21:39,10/10/2006 22:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4687,17/10/2018 21:39,14/11/2006 21:07,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4672,17/10/2018 21:39,11/09/2006 16:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-15875,17/10/2018 21:38,25/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4666,17/10/2018 21:38,9/09/2006 0:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4649,17/10/2018 21:38,8/09/2006 21:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4639,17/10/2018 21:38,8/09/2006 20:04,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4637,17/10/2018 21:38,8/09/2006 20:04,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4624,17/10/2018 21:38,7/09/2006 19:04,2.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4583,17/10/2018 21:38,6/09/2006 22:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4568,17/10/2018 21:37,15/09/2006 19:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4565,17/10/2018 21:37,15/09/2006 18:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4553,17/10/2018 21:37,6/09/2006 0:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4541,17/10/2018 21:37,5/09/2006 23:04,4.6,20, Improper Input Validation,nan
CVE-2006-4519,17/10/2018 21:37,10/07/2007 18:30,6.8,189, Numeric Errors,nan
CVE-2006-4514,17/10/2018 21:37,30/11/2006 23:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4431,17/10/2018 21:37,29/08/2006 0:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15874,17/10/2018 21:36,25/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4343,17/10/2018 21:36,28/09/2006 18:07,4.3,476, NULL Pointer Dereference,nan
CVE-2006-4340,17/10/2018 21:36,15/09/2006 18:07,4.0,20, Improper Input Validation,nan
CVE-2006-4339,17/10/2018 21:35,5/09/2006 17:04,4.3,310, Cryptographic Issues,nan
CVE-2006-4333,17/10/2018 21:34,24/08/2006 20:04,5.4,399, Resource Management Errors,nan
CVE-2006-4310,17/10/2018 21:34,23/08/2006 19:04,4.3,20, Improper Input Validation,nan
CVE-2006-4308,17/10/2018 21:34,23/08/2006 19:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4301,17/10/2018 21:34,23/08/2006 1:04,5.0,20, Improper Input Validation,nan
CVE-2006-4285,17/10/2018 21:34,22/08/2006 17:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4270,17/10/2018 21:34,21/08/2006 21:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4257,17/10/2018 21:34,21/08/2006 20:04,4.0,399, Resource Management Errors,nan
CVE-2006-4253,17/10/2018 21:34,21/08/2006 20:04,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-4244,17/10/2018 21:34,31/08/2006 1:04,7.5,287, Improper Authentication,nan
CVE-2006-4195,17/10/2018 21:33,17/08/2006 21:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4183,17/10/2018 21:33,18/07/2007 23:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4145,17/10/2018 21:33,21/08/2006 19:04,4.9,399, Resource Management Errors,nan
CVE-2006-4130,17/10/2018 21:33,14/08/2006 23:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4064,17/10/2018 21:33,10/08/2006 0:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4042,17/10/2018 21:33,9/08/2006 23:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4039,17/10/2018 21:33,9/08/2006 22:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4038,17/10/2018 21:33,9/08/2006 22:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4026,17/10/2018 21:32,9/08/2006 0:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4018,17/10/2018 21:32,8/08/2006 20:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4010,17/10/2018 21:32,7/08/2006 19:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3985,17/10/2018 21:32,5/08/2006 0:04,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3980,17/10/2018 21:32,5/08/2006 0:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3966,17/10/2018 21:32,1/08/2006 22:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3961,17/10/2018 21:32,1/08/2006 21:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3949,17/10/2018 21:32,1/08/2006 21:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3947,17/10/2018 21:32,1/08/2006 21:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3942,17/10/2018 21:32,31/07/2006 23:04,7.8,20, Improper Input Validation,nan
CVE-2006-3934,17/10/2018 21:32,31/07/2006 22:04,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-3879,17/10/2018 21:32,27/07/2006 1:04,5.0,189, Numeric Errors,nan
CVE-2006-3877,17/10/2018 21:32,10/10/2006 22:07,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3847,17/10/2018 21:31,25/07/2006 23:04,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3846,17/10/2018 21:31,25/07/2006 23:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3840,17/10/2018 21:31,27/07/2006 11:04,5.0,399, Resource Management Errors,nan
CVE-2006-3838,17/10/2018 21:31,27/07/2006 1:04,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3806,17/10/2018 21:30,27/07/2006 19:04,7.5,189, Numeric Errors,nan
CVE-2006-3775,17/10/2018 21:30,24/07/2006 12:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3774,17/10/2018 21:30,24/07/2006 12:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3761,17/10/2018 21:29,21/07/2006 14:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3747,17/10/2018 21:29,28/07/2006 18:02,7.6,189, Numeric Errors,nan
CVE-2006-3738,17/10/2018 21:29,28/09/2006 18:07,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3733,17/10/2018 21:29,21/07/2006 14:03,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-3730,17/10/2018 21:29,21/07/2006 14:03,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-15851,17/10/2018 20:51,25/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15848,17/10/2018 20:39,25/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15850,17/10/2018 20:38,25/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15849,17/10/2018 20:31,25/08/2018 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15844,17/10/2018 20:26,25/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15843,17/10/2018 20:22,25/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15847,17/10/2018 20:21,25/08/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14943,17/10/2018 20:19,5/08/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-15846,17/10/2018 20:16,25/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14939,17/10/2018 20:10,5/08/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15845,17/10/2018 20:05,25/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15842,17/10/2018 19:57,25/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8989,17/10/2018 19:15,6/08/2018 20:29,6.4,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2014-8121,17/10/2018 19:01,27/03/2015 14:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-2041,17/10/2018 19:00,21/04/2015 10:59,4.6,17, DEPRECATED: Code,nan
CVE-2014-8098,17/10/2018 19:00,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0862,17/10/2018 18:47,5/02/2016 11:59,4.0,200, Information Exposure,nan
CVE-2015-7446,17/10/2018 18:47,12/03/2016 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1990,17/10/2018 18:44,16/03/2016 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6030,17/10/2018 18:44,4/11/2015 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-0136,17/10/2018 18:39,9/01/2007 11:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7232,17/10/2018 17:59,31/12/2006 5:00,3.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6652,17/10/2018 17:58,20/12/2006 2:28,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8710,17/10/2018 17:51,26/01/2017 21:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-18040,17/10/2018 17:50,2/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5637,17/10/2018 17:50,15/07/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15535,17/10/2018 17:29,24/08/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13385,17/10/2018 17:13,24/07/2018 13:29,7.5,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2018-9136,17/10/2018 17:12,30/03/2018 8:29,7.1,20, Improper Input Validation,nan
CVE-2018-8821,17/10/2018 17:12,20/03/2018 7:29,7.1,20, Improper Input Validation,nan
CVE-2018-5189,17/10/2018 17:12,11/01/2018 16:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10071,17/10/2018 17:12,12/04/2018 18:29,4.9,20, Improper Input Validation,nan
CVE-2017-14344,17/10/2018 17:12,12/09/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-14153,17/10/2018 17:12,11/09/2017 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14075,17/10/2018 17:12,11/09/2017 17:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-10072,17/10/2018 17:11,12/04/2018 18:29,4.9,20, Improper Input Validation,nan
CVE-2017-0023,17/10/2018 17:07,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14774,17/10/2018 17:05,3/08/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-8312,17/10/2018 16:53,23/05/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-13416,17/10/2018 15:04,3/08/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2011-2161,17/10/2018 14:40,20/05/2011 22:55,4.3,399, Resource Management Errors,nan
CVE-2018-5281,17/10/2018 10:30,8/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5280,17/10/2018 10:30,8/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7233,17/10/2018 10:29,4/04/2017 17:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-5929,17/10/2018 10:29,13/03/2017 6:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-15100,17/10/2018 10:29,27/11/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11317,17/10/2018 10:29,23/08/2017 17:29,7.5,326, Inadequate Encryption Strength,nan
CVE-2016-9684,17/10/2018 10:29,22/02/2017 5:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9683,17/10/2018 10:29,22/02/2017 5:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9682,17/10/2018 10:29,22/02/2017 5:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-1000338,17/10/2018 10:29,1/06/2018 20:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2015-6644,17/10/2018 10:29,6/01/2016 19:59,4.3,200, Information Exposure,nan
CVE-2015-3208,17/10/2018 10:29,25/07/2017 18:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7805,17/10/2018 1:30,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2017-5529,17/10/2018 1:30,29/06/2017 14:29,4.0,200, Information Exposure,nan
CVE-2016-3739,17/10/2018 1:29,20/05/2016 14:59,2.6,20, Improper Input Validation,nan
CVE-2016-0755,17/10/2018 1:29,29/01/2016 20:59,5.0,287, Improper Authentication,nan
CVE-2016-0729,17/10/2018 1:29,7/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7990,17/10/2018 1:29,28/12/2015 11:59,5.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7501,17/10/2018 1:29,9/11/2017 17:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2015-3237,17/10/2018 1:29,22/06/2015 19:59,6.4,20, Improper Input Validation,nan
CVE-2015-3236,17/10/2018 1:29,22/06/2015 19:59,5.0,200, Information Exposure,nan
CVE-2015-3153,17/10/2018 1:29,1/05/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-3144,17/10/2018 1:29,24/04/2015 14:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0252,17/10/2018 1:29,24/03/2015 17:59,5.0,20, Improper Input Validation,nan
CVE-2014-0014,17/10/2018 1:29,15/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1007,17/10/2018 1:29,7/02/2012 4:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8526,16/10/2018 20:26,6/08/2018 20:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8389,16/10/2018 20:15,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15528,16/10/2018 19:26,21/08/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000216,16/10/2018 19:21,20/08/2018 20:29,6.8,415, Double Free,nan
CVE-2018-1000650,16/10/2018 18:46,20/08/2018 19:31,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14447,16/10/2018 18:42,6/08/2018 17:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000646,16/10/2018 18:40,20/08/2018 19:31,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1000645,16/10/2018 18:37,20/08/2018 19:31,4.0,200, Information Exposure,nan
CVE-2018-11048,16/10/2018 17:35,10/08/2018 20:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-16252,16/10/2018 17:19,6/08/2018 21:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11063,16/10/2018 17:09,10/08/2018 20:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2008-0504,16/10/2018 16:50,31/01/2008 20:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3500,16/10/2018 16:50,29/06/2007 18:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-3487,16/10/2018 16:50,29/06/2007 18:30,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3478,16/10/2018 16:50,28/06/2007 18:30,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-3477,16/10/2018 16:50,28/06/2007 18:30,5.0,399, Resource Management Errors,nan
CVE-2007-3476,16/10/2018 16:50,28/06/2007 18:30,4.3,189, Numeric Errors,nan
CVE-2007-3472,16/10/2018 16:49,28/06/2007 18:30,4.3,189, Numeric Errors,nan
CVE-2007-3456,16/10/2018 16:49,11/07/2007 16:30,9.3,189, Numeric Errors,nan
CVE-2007-3399,16/10/2018 16:49,26/06/2007 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3387,16/10/2018 16:48,30/07/2007 23:17,6.8,189, Numeric Errors,nan
CVE-2007-3386,16/10/2018 16:48,14/08/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3381,16/10/2018 16:48,7/08/2007 10:17,1.5,20, Improper Input Validation,nan
CVE-2007-3340,16/10/2018 16:48,21/06/2007 22:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3339,16/10/2018 16:48,21/06/2007 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3338,16/10/2018 16:48,22/06/2007 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3303,16/10/2018 16:48,20/06/2007 22:30,4.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3301,16/10/2018 16:48,20/06/2007 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3278,16/10/2018 16:48,19/06/2007 21:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-3274,16/10/2018 16:48,19/06/2007 21:30,4.3,399, Resource Management Errors,nan
CVE-2007-3242,16/10/2018 16:47,15/06/2007 1:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-3216,16/10/2018 16:47,14/06/2007 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3186,16/10/2018 16:47,12/06/2007 22:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-3180,16/10/2018 16:47,12/06/2007 17:30,9.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3148,16/10/2018 16:47,11/06/2007 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3147,16/10/2018 16:47,11/06/2007 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3137,16/10/2018 16:47,8/06/2007 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3115,16/10/2018 16:47,7/06/2007 21:30,7.8,399, Resource Management Errors,nan
CVE-2007-3106,16/10/2018 16:47,26/07/2007 21:30,6.8,399, Resource Management Errors,nan
CVE-2007-3103,16/10/2018 16:47,15/07/2007 22:30,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-3074,16/10/2018 16:47,6/06/2007 10:30,4.3,200, Information Exposure,nan
CVE-2007-3072,16/10/2018 16:47,6/06/2007 10:30,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3064,16/10/2018 16:47,6/06/2007 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3063,16/10/2018 16:47,6/06/2007 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3061,16/10/2018 16:47,6/06/2007 1:30,7.8,255, Credentials Management,nan
CVE-2007-3050,16/10/2018 16:47,6/06/2007 1:30,7.5,287, Improper Authentication,nan
CVE-2007-3040,16/10/2018 16:47,12/09/2007 1:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3039,16/10/2018 16:47,12/12/2007 0:46,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3037,16/10/2018 16:47,14/08/2007 21:17,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3010,16/10/2018 16:46,18/09/2007 21:17,10.0,20, Improper Input Validation,nan
CVE-2007-2997,16/10/2018 16:46,4/06/2007 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2978,16/10/2018 16:46,1/06/2007 1:30,6.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-2967,16/10/2018 16:46,31/05/2007 23:30,10.0,20, Improper Input Validation,nan
CVE-2007-2966,16/10/2018 16:46,31/05/2007 23:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2952,16/10/2018 16:46,1/08/2008 14:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2944,16/10/2018 16:46,31/05/2007 0:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-2914,16/10/2018 16:46,30/05/2007 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2898,16/10/2018 16:46,30/05/2007 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2868,16/10/2018 16:46,1/06/2007 0:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2867,16/10/2018 16:45,1/06/2007 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2856,16/10/2018 16:45,24/05/2007 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2846,16/10/2018 16:45,24/05/2007 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2834,16/10/2018 16:45,18/09/2007 21:17,9.3,189, Numeric Errors,nan
CVE-2007-2831,16/10/2018 16:45,24/05/2007 2:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2815,16/10/2018 16:45,22/05/2007 19:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-2801,16/10/2018 16:45,30/06/2007 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2799,16/10/2018 16:45,23/05/2007 21:30,5.1,189, Numeric Errors,nan
CVE-2007-2798,16/10/2018 16:45,26/06/2007 22:30,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2719,16/10/2018 16:45,16/05/2007 19:28,10.0,287, Improper Authentication,nan
CVE-2007-2666,16/10/2018 16:44,14/05/2007 23:19,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2590,16/10/2018 16:44,11/05/2007 4:20,6.4,200, Information Exposure,nan
CVE-2007-2582,16/10/2018 16:44,10/05/2007 0:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2581,16/10/2018 16:44,9/05/2007 21:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2555,16/10/2018 16:44,9/05/2007 17:19,4.3,287, Improper Authentication,nan
CVE-2007-2546,16/10/2018 16:44,9/05/2007 10:19,6.8,287, Improper Authentication,nan
CVE-2007-2524,16/10/2018 16:44,8/05/2007 23:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2522,16/10/2018 16:44,11/05/2007 4:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2508,16/10/2018 16:44,8/05/2007 23:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2446,16/10/2018 16:43,14/05/2007 21:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2428,16/10/2018 16:43,2/05/2007 0:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2418,16/10/2018 16:43,2/05/2007 22:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2401,16/10/2018 16:43,25/06/2007 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2391,16/10/2018 16:43,14/06/2007 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2356,16/10/2018 16:43,30/04/2007 22:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2292,16/10/2018 16:43,26/04/2007 20:19,4.3,20, Improper Input Validation,nan
CVE-2007-2279,16/10/2018 16:42,4/06/2007 16:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-2277,16/10/2018 16:42,25/04/2007 20:19,7.5,287, Improper Authentication,nan
CVE-2007-2276,16/10/2018 16:42,25/04/2007 20:19,7.8,399, Resource Management Errors,nan
CVE-2007-2264,16/10/2018 16:42,31/10/2007 17:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2263,16/10/2018 16:42,31/10/2007 17:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2262,16/10/2018 16:42,25/04/2007 17:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2260,16/10/2018 16:42,25/04/2007 17:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2248,16/10/2018 16:42,25/04/2007 16:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2230,16/10/2018 16:42,25/04/2007 15:19,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2229,16/10/2018 16:42,12/06/2007 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-2224,16/10/2018 16:42,14/08/2007 21:17,9.3,189, Numeric Errors,nan
CVE-2007-2222,16/10/2018 16:42,12/06/2007 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2217,16/10/2018 16:42,9/10/2007 22:17,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2216,16/10/2018 16:42,14/08/2007 21:17,9.3,16, Configuration,nan
CVE-2007-2199,16/10/2018 16:42,24/04/2007 20:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2120,16/10/2018 16:42,18/04/2007 18:19,7.8,399, Resource Management Errors,nan
CVE-2007-2113,16/10/2018 16:42,18/04/2007 18:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2111,16/10/2018 16:41,18/04/2007 18:19,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2084,16/10/2018 16:41,18/04/2007 10:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2052,16/10/2018 16:41,16/04/2007 22:19,5.0,189, Numeric Errors,nan
CVE-2007-1996,16/10/2018 16:41,12/04/2007 10:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1953,16/10/2018 16:41,11/04/2007 1:19,7.5,287, Improper Authentication,nan
CVE-2007-1952,16/10/2018 16:41,11/04/2007 1:19,7.5,287, Improper Authentication,nan
CVE-2007-1951,16/10/2018 16:41,11/04/2007 1:19,7.5,287, Improper Authentication,nan
CVE-2007-1949,16/10/2018 16:41,11/04/2007 1:19,7.5,287, Improper Authentication,nan
CVE-2007-1922,16/10/2018 16:41,10/04/2007 23:19,9.3,20, Improper Input Validation,nan
CVE-2007-1861,16/10/2018 16:40,7/05/2007 19:19,4.9,399, Resource Management Errors,nan
CVE-2007-1843,16/10/2018 16:40,3/04/2007 16:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1793,16/10/2018 16:40,2/04/2007 22:19,4.9,20, Improper Input Validation,nan
CVE-2007-1754,16/10/2018 16:40,10/07/2007 22:30,9.3,399, Resource Management Errors,nan
CVE-2007-1751,16/10/2018 16:40,12/06/2007 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1747,16/10/2018 16:40,8/05/2007 23:19,9.3,399, Resource Management Errors,nan
CVE-2007-1735,16/10/2018 16:40,28/03/2007 22:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1723,16/10/2018 16:40,28/03/2007 0:19,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1709,16/10/2018 16:40,27/03/2007 1:19,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1673,16/10/2018 16:40,9/05/2007 1:19,7.8,399, Resource Management Errors,nan
CVE-2007-1667,16/10/2018 16:40,24/03/2007 21:19,9.3,189, Numeric Errors,nan
CVE-2007-1660,16/10/2018 16:39,7/11/2007 23:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1659,16/10/2018 16:39,7/11/2007 23:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1576,16/10/2018 16:39,21/03/2007 21:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1573,16/10/2018 16:39,21/03/2007 21:19,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1548,16/10/2018 16:39,20/03/2007 22:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1536,16/10/2018 16:38,20/03/2007 20:19,9.3,189, Numeric Errors,nan
CVE-2007-1531,16/10/2018 16:38,20/03/2007 20:19,5.0,399, Resource Management Errors,nan
CVE-2007-1520,16/10/2018 16:38,20/03/2007 20:19,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-1519,16/10/2018 16:38,20/03/2007 20:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1499,16/10/2018 16:38,17/03/2007 10:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1483,16/10/2018 16:38,16/03/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1476,16/10/2018 16:38,16/03/2007 21:19,1.9,20, Improper Input Validation,nan
CVE-2007-1472,16/10/2018 16:38,16/03/2007 21:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1470,16/10/2018 16:38,16/03/2007 21:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1469,16/10/2018 16:38,16/03/2007 21:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1468,16/10/2018 16:38,16/03/2007 21:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1466,16/10/2018 16:38,16/03/2007 21:19,6.8,189, Numeric Errors,nan
CVE-2007-1446,16/10/2018 16:38,14/03/2007 0:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1443,16/10/2018 16:38,14/03/2007 0:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1441,16/10/2018 16:38,14/03/2007 0:19,4.3,20, Improper Input Validation,nan
CVE-2007-1415,16/10/2018 16:38,12/03/2007 23:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1362,16/10/2018 16:38,1/06/2007 0:30,4.3,20, Improper Input Validation,nan
CVE-2007-1351,16/10/2018 16:38,6/04/2007 1:19,8.5,189, Numeric Errors,nan
CVE-2007-1313,16/10/2018 16:37,21/03/2007 19:19,7.5,20, Improper Input Validation,nan
CVE-2007-1308,16/10/2018 16:37,7/03/2007 0:19,4.3,399, Resource Management Errors,nan
CVE-2007-1302,16/10/2018 16:37,7/03/2007 0:19,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1277,16/10/2018 16:37,5/03/2007 20:19,7.5,20, Improper Input Validation,nan
CVE-2007-1256,16/10/2018 16:37,3/03/2007 20:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1251,16/10/2018 16:37,3/03/2007 20:19,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2007-1250,16/10/2018 16:37,3/03/2007 20:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1248,16/10/2018 16:37,3/03/2007 20:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1247,16/10/2018 16:37,3/03/2007 20:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1246,16/10/2018 16:37,3/03/2007 19:19,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1245,16/10/2018 16:37,3/03/2007 19:19,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1238,16/10/2018 16:37,3/03/2007 19:19,4.3,399, Resource Management Errors,nan
CVE-2007-1237,16/10/2018 16:37,3/03/2007 19:19,5.0,200, Information Exposure,nan
CVE-2007-1235,16/10/2018 16:37,3/03/2007 19:19,7.5,20, Improper Input Validation,nan
CVE-2007-1234,16/10/2018 16:37,3/03/2007 19:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1231,16/10/2018 16:37,3/03/2007 19:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1229,16/10/2018 16:37,2/03/2007 22:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1227,16/10/2018 16:37,2/03/2007 22:19,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-1216,16/10/2018 16:37,6/04/2007 1:19,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1214,16/10/2018 16:37,8/05/2007 22:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1211,16/10/2018 16:37,4/04/2007 16:19,7.1,399, Resource Management Errors,nan
CVE-2007-1209,16/10/2018 16:37,10/04/2007 21:19,7.2,399, Resource Management Errors,nan
CVE-2007-1206,16/10/2018 16:37,10/04/2007 21:19,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-1204,16/10/2018 16:37,10/04/2007 21:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1202,16/10/2018 16:37,8/05/2007 23:19,6.8,20, Improper Input Validation,nan
CVE-2007-1194,16/10/2018 16:37,2/03/2007 21:18,2.1,200, Information Exposure,nan
CVE-2007-1171,16/10/2018 16:37,2/03/2007 21:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1166,16/10/2018 16:37,2/03/2007 21:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1164,16/10/2018 16:36,2/03/2007 21:18,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1161,16/10/2018 16:36,2/03/2007 21:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1160,16/10/2018 16:36,2/03/2007 21:18,10.0,287, Improper Authentication,nan
CVE-2007-1157,16/10/2018 16:36,2/03/2007 21:18,7.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-1155,16/10/2018 16:36,2/03/2007 21:18,4.6,20, Improper Input Validation,nan
CVE-2007-1154,16/10/2018 16:36,2/03/2007 21:18,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1151,16/10/2018 16:36,2/03/2007 21:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1150,16/10/2018 16:36,2/03/2007 21:18,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-1149,16/10/2018 16:36,2/03/2007 21:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1148,16/10/2018 16:36,2/03/2007 21:18,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1147,16/10/2018 16:36,2/03/2007 21:18,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1145,16/10/2018 16:36,2/03/2007 21:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1144,16/10/2018 16:36,2/03/2007 21:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1143,16/10/2018 16:36,2/03/2007 21:18,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1142,16/10/2018 16:36,2/03/2007 21:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1141,16/10/2018 16:36,2/03/2007 21:18,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1140,16/10/2018 16:36,2/03/2007 21:18,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1139,16/10/2018 16:36,2/03/2007 21:18,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1138,16/10/2018 16:36,2/03/2007 21:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1132,16/10/2018 16:36,27/02/2007 2:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1116,16/10/2018 16:36,26/02/2007 23:28,5.0,200, Information Exposure,nan
CVE-2007-1115,16/10/2018 16:36,26/02/2007 23:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1109,16/10/2018 16:36,26/02/2007 17:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1101,16/10/2018 16:36,26/02/2007 17:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1084,16/10/2018 16:36,23/02/2007 2:28,6.8,16, Configuration,nan
CVE-2007-1078,16/10/2018 16:36,22/02/2007 23:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1056,16/10/2018 16:36,21/02/2007 23:28,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-1050,16/10/2018 16:36,21/02/2007 23:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1045,16/10/2018 16:36,21/02/2007 17:28,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-1044,16/10/2018 16:36,21/02/2007 17:28,5.0,200, Information Exposure,nan
CVE-2007-1036,16/10/2018 16:36,21/02/2007 11:28,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-1026,16/10/2018 16:36,21/02/2007 11:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1012,16/10/2018 16:36,21/02/2007 11:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0995,16/10/2018 16:36,26/02/2007 19:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0986,16/10/2018 16:35,16/02/2007 11:28,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0981,16/10/2018 16:35,16/02/2007 1:28,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-0947,16/10/2018 16:35,8/05/2007 23:19,9.3,399, Resource Management Errors,nan
CVE-2007-0932,16/10/2018 16:35,14/02/2007 11:28,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-0893,16/10/2018 16:35,12/02/2007 23:28,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-0892,16/10/2018 16:35,12/02/2007 23:28,7.5,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2007-0891,16/10/2018 16:35,12/02/2007 23:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0875,16/10/2018 16:34,12/02/2007 19:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0862,16/10/2018 16:34,9/02/2007 1:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0854,16/10/2018 16:34,8/02/2007 18:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0843,16/10/2018 16:34,23/02/2007 2:28,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-0842,16/10/2018 16:34,13/02/2007 11:28,5.0,399, Resource Management Errors,nan
CVE-2007-0831,16/10/2018 16:34,7/02/2007 22:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0830,16/10/2018 16:34,7/02/2007 22:28,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0802,16/10/2018 16:34,7/02/2007 11:28,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-0794,16/10/2018 16:34,6/02/2007 19:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0776,16/10/2018 16:34,26/02/2007 19:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0753,16/10/2018 16:34,24/05/2007 22:30,7.2,134, Use of Externally-Controlled Format String,nan
CVE-2007-0720,16/10/2018 16:33,13/03/2007 21:19,5.0,399, Resource Management Errors,nan
CVE-2007-0718,16/10/2018 16:33,5/03/2007 22:19,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0700,16/10/2018 16:33,4/02/2007 0:28,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-0699,16/10/2018 16:33,4/02/2007 0:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0673,16/10/2018 16:33,3/02/2007 1:28,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0649,16/10/2018 16:33,1/02/2007 1:28,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0642,16/10/2018 16:33,31/01/2007 21:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0541,16/10/2018 16:33,29/01/2007 17:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-0537,16/10/2018 16:33,29/01/2007 16:28,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0527,16/10/2018 16:33,26/01/2007 1:28,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0524,16/10/2018 16:33,26/01/2007 1:28,2.9,20, Improper Input Validation,nan
CVE-2007-0523,16/10/2018 16:33,26/01/2007 1:28,3.3,20, Improper Input Validation,nan
CVE-2007-0522,16/10/2018 16:33,26/01/2007 1:28,3.3,20, Improper Input Validation,nan
CVE-2007-0521,16/10/2018 16:33,26/01/2007 1:28,3.3,20, Improper Input Validation,nan
CVE-2007-0520,16/10/2018 16:33,26/01/2007 1:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0519,16/10/2018 16:33,26/01/2007 1:28,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0486,16/10/2018 16:32,25/01/2007 0:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0478,16/10/2018 16:32,25/01/2007 0:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0471,16/10/2018 16:32,24/01/2007 1:28,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-0455,16/10/2018 16:32,30/01/2007 17:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0454,16/10/2018 16:32,6/02/2007 2:28,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-0449,16/10/2018 16:32,23/01/2007 21:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0444,16/10/2018 16:32,24/01/2007 22:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0435,16/10/2018 16:32,23/01/2007 2:28,7.5,287, Improper Authentication,nan
CVE-2007-0364,16/10/2018 16:32,19/01/2007 19:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0348,16/10/2018 16:32,21/03/2007 19:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0275,16/10/2018 16:32,17/01/2007 2:28,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0272,16/10/2018 16:32,17/01/2007 2:28,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0270,16/10/2018 16:32,17/01/2007 2:28,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0259,16/10/2018 16:32,16/01/2007 23:28,7.8,200, Information Exposure,nan
CVE-2007-0245,16/10/2018 16:32,12/06/2007 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0238,16/10/2018 16:31,21/03/2007 19:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0230,16/10/2018 16:31,13/01/2007 2:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0221,16/10/2018 16:31,8/05/2007 23:19,7.8,189, Numeric Errors,nan
CVE-2007-0218,16/10/2018 16:31,12/06/2007 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0205,16/10/2018 16:31,11/01/2007 22:28,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-0197,16/10/2018 16:31,11/01/2007 11:28,6.8,399, Resource Management Errors,nan
CVE-2007-0169,16/10/2018 16:31,11/01/2007 22:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0160,16/10/2018 16:31,10/01/2007 0:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0134,16/10/2018 16:31,9/01/2007 11:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0104,16/10/2018 16:31,9/01/2007 0:28,6.8,20, Improper Input Validation,nan
CVE-2007-0099,16/10/2018 16:31,8/01/2007 20:28,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-0080,16/10/2018 16:31,5/01/2007 11:28,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0062,16/10/2018 16:30,21/09/2007 19:17,10.0,189, Numeric Errors,nan
CVE-2007-0051,16/10/2018 16:30,4/01/2007 18:28,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2007-0045,16/10/2018 16:30,3/01/2007 21:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0044,16/10/2018 16:30,3/01/2007 21:28,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-0038,16/10/2018 16:30,30/03/2007 20:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0034,16/10/2018 16:30,9/01/2007 23:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0028,16/10/2018 16:30,9/01/2007 23:28,9.3,20, Improper Input Validation,nan
CVE-2007-0018,16/10/2018 16:30,24/01/2007 21:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0014,16/10/2018 16:30,17/01/2007 0:28,4.4,310, Cryptographic Issues,nan
CVE-2007-0012,16/10/2018 16:30,9/01/2008 23:46,4.3,20, Improper Input Validation,nan
CVE-2007-0011,16/10/2018 16:30,5/11/2007 17:46,5.0,200, Information Exposure,nan
CVE-2007-0008,16/10/2018 16:29,26/02/2007 20:28,6.8,189, Numeric Errors,nan
CVE-2007-0005,16/10/2018 16:29,10/03/2007 0:19,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0002,16/10/2018 16:29,16/03/2007 21:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-7228,16/10/2018 16:29,14/11/2007 21:46,6.8,189, Numeric Errors,nan
CVE-2006-7208,16/10/2018 16:29,26/06/2007 23:30,6.8,20, Improper Input Validation,nan
CVE-2006-7181,16/10/2018 16:29,30/03/2007 10:19,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7160,16/10/2018 16:29,7/03/2007 20:19,4.9,20, Improper Input Validation,nan
CVE-2006-7157,16/10/2018 16:29,7/03/2007 20:19,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-7146,16/10/2018 16:29,7/03/2007 20:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7142,16/10/2018 16:29,7/03/2007 20:19,4.1,310, Cryptographic Issues,nan
CVE-2006-7139,16/10/2018 16:29,7/03/2007 20:19,2.6,20, Improper Input Validation,nan
CVE-2006-7138,16/10/2018 16:29,7/03/2007 20:19,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-7130,16/10/2018 16:29,6/03/2007 1:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7118,16/10/2018 16:29,6/03/2007 1:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-7100,16/10/2018 16:29,3/03/2007 21:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7070,16/10/2018 16:29,2/03/2007 21:18,7.5,20, Improper Input Validation,nan
CVE-2006-7047,16/10/2018 16:29,24/02/2007 0:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-6978,16/10/2018 16:29,8/02/2007 17:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6977,16/10/2018 16:29,8/02/2007 17:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6970,16/10/2018 16:29,7/02/2007 11:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-6958,16/10/2018 16:29,29/01/2007 16:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6954,16/10/2018 16:29,29/01/2007 16:28,4.3,20, Improper Input Validation,nan
CVE-2006-6953,16/10/2018 16:29,29/01/2007 16:28,2.1,200, Information Exposure,nan
CVE-2006-6899,16/10/2018 16:29,31/12/2006 5:00,5.4,16, Configuration,nan
CVE-2018-13877,16/10/2018 16:28,6/08/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7100,16/10/2018 16:19,14/08/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-7077,16/10/2018 16:16,14/08/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-5243,16/10/2018 14:08,20/08/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2011-2765,16/10/2018 13:44,20/08/2018 13:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-15671,16/10/2018 12:02,21/08/2018 23:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2008-5205,15/10/2018 22:04,21/11/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2543,15/10/2018 22:04,5/06/2008 20:32,5.0,399, Resource Management Errors,nan
CVE-2008-1000,15/10/2018 22:04,18/03/2008 23:44,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0986,15/10/2018 22:04,6/03/2008 0:44,7.5,189, Numeric Errors,nan
CVE-2008-0985,15/10/2018 22:04,6/03/2008 0:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0984,15/10/2018 22:04,26/02/2008 19:44,9.3,399, Resource Management Errors,nan
CVE-2008-0983,15/10/2018 22:04,26/02/2008 18:44,5.0,399, Resource Management Errors,nan
CVE-2008-0982,15/10/2018 22:04,25/02/2008 23:44,5.8,20, Improper Input Validation,nan
CVE-2008-0981,15/10/2018 22:04,25/02/2008 23:44,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0980,15/10/2018 22:04,25/02/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0979,15/10/2018 22:04,25/02/2008 23:44,5.0,399, Resource Management Errors,nan
CVE-2008-0978,15/10/2018 22:04,25/02/2008 23:44,5.0,200, Information Exposure,nan
CVE-2008-0977,15/10/2018 22:04,25/02/2008 23:44,5.0,399, Resource Management Errors,nan
CVE-2008-0976,15/10/2018 22:04,25/02/2008 23:44,5.0,399, Resource Management Errors,nan
CVE-2008-0974,15/10/2018 22:04,25/02/2008 23:44,5.0,399, Resource Management Errors,nan
CVE-2008-0973,15/10/2018 22:04,25/02/2008 23:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0971,15/10/2018 22:03,19/12/2008 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0948,15/10/2018 22:03,19/03/2008 0:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0947,15/10/2018 22:03,19/03/2008 0:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0946,15/10/2018 22:03,25/02/2008 21:44,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0945,15/10/2018 22:03,25/02/2008 21:44,3.5,134, Use of Externally-Controlled Format String,nan
CVE-2008-0944,15/10/2018 22:03,25/02/2008 21:44,5.0,189, Numeric Errors,nan
CVE-2008-0943,15/10/2018 22:03,25/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0942,15/10/2018 22:03,25/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0941,15/10/2018 22:03,25/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0926,15/10/2018 22:03,28/03/2008 18:44,7.5,287, Improper Authentication,nan
CVE-2008-0923,15/10/2018 22:03,26/02/2008 0:44,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0920,15/10/2018 22:03,22/02/2008 23:44,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0919,15/10/2018 22:03,22/02/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0914,15/10/2018 22:03,22/02/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0912,15/10/2018 22:03,22/02/2008 23:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0901,15/10/2018 22:03,22/02/2008 21:44,7.1,255, Credentials Management,nan
CVE-2008-0888,15/10/2018 22:03,17/03/2008 21:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0879,15/10/2018 22:03,21/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0877,15/10/2018 22:03,21/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0874,15/10/2018 22:03,21/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0873,15/10/2018 22:03,21/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0872,15/10/2018 22:03,21/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0871,15/10/2018 22:03,21/02/2008 19:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0867,15/10/2018 22:03,21/02/2008 1:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0857,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0855,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0854,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0853,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0851,15/10/2018 22:03,21/02/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0850,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0849,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0848,15/10/2018 22:03,21/02/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0847,15/10/2018 22:03,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0845,15/10/2018 22:03,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0843,15/10/2018 22:03,20/02/2008 21:44,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-0840,15/10/2018 22:03,20/02/2008 21:44,4.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0838,15/10/2018 22:03,20/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0837,15/10/2018 22:03,20/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0835,15/10/2018 22:03,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0828,15/10/2018 22:03,19/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0822,15/10/2018 22:03,19/02/2008 20:44,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0820,15/10/2018 22:03,19/02/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0819,15/10/2018 22:03,19/02/2008 20:44,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0817,15/10/2018 22:03,19/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0816,15/10/2018 22:03,19/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0815,15/10/2018 22:03,19/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0812,15/10/2018 22:03,19/02/2008 2:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0810,15/10/2018 22:03,19/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0798,15/10/2018 22:03,15/02/2008 22:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0791,15/10/2018 22:03,15/02/2008 2:00,5.0,20, Improper Input Validation,nan
CVE-2008-0790,15/10/2018 22:03,15/02/2008 2:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0789,15/10/2018 22:03,15/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0787,15/10/2018 22:03,15/02/2008 1:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0786,15/10/2018 22:03,14/02/2008 23:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0785,15/10/2018 22:03,14/02/2008 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0784,15/10/2018 22:03,14/02/2008 23:00,5.0,200, Information Exposure,nan
CVE-2008-0783,15/10/2018 22:02,14/02/2008 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0779,15/10/2018 22:02,14/02/2008 12:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0778,15/10/2018 22:02,14/02/2008 12:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0775,15/10/2018 22:02,14/02/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0771,15/10/2018 22:02,14/02/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0767,15/10/2018 22:02,13/02/2008 21:00,5.0,189, Numeric Errors,nan
CVE-2008-0766,15/10/2018 22:02,13/02/2008 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0765,15/10/2018 22:02,13/02/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0764,15/10/2018 22:02,13/02/2008 21:00,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-0763,15/10/2018 22:02,13/02/2008 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0762,15/10/2018 22:02,13/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0760,15/10/2018 22:02,13/02/2008 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0759,15/10/2018 22:02,13/02/2008 21:00,5.0,310, Cryptographic Issues,nan
CVE-2008-0758,15/10/2018 22:02,13/02/2008 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0757,15/10/2018 22:02,13/02/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0755,15/10/2018 22:02,13/02/2008 20:00,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2008-0754,15/10/2018 22:02,13/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0753,15/10/2018 22:02,13/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0750,15/10/2018 22:02,13/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0748,15/10/2018 22:02,13/02/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0747,15/10/2018 22:02,13/02/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0744,15/10/2018 22:02,13/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0743,15/10/2018 22:02,13/02/2008 2:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0742,15/10/2018 22:02,13/02/2008 2:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0737,15/10/2018 22:02,13/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0736,15/10/2018 22:02,13/02/2008 1:00,5.0,200, Information Exposure,nan
CVE-2008-0733,15/10/2018 22:02,13/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0729,15/10/2018 22:02,12/02/2008 21:00,7.1,399, Resource Management Errors,nan
CVE-2008-0727,15/10/2018 22:02,18/03/2008 0:44,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0726,15/10/2018 22:02,12/02/2008 20:00,9.3,189, Numeric Errors,nan
CVE-2008-0724,15/10/2018 22:02,12/02/2008 2:00,5.0,255, Credentials Management,nan
CVE-2008-0720,15/10/2018 22:02,12/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0703,15/10/2018 22:02,12/02/2008 1:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0702,15/10/2018 22:02,12/02/2008 1:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0691,15/10/2018 22:02,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0688,15/10/2018 22:02,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0687,15/10/2018 22:02,12/02/2008 1:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0681,15/10/2018 22:02,12/02/2008 1:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0675,15/10/2018 22:02,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0674,15/10/2018 22:02,18/02/2008 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0672,15/10/2018 22:02,12/02/2008 1:00,5.0,20, Improper Input Validation,nan
CVE-2008-0671,15/10/2018 22:02,12/02/2008 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0667,15/10/2018 22:02,11/02/2008 21:00,4.3,399, Resource Management Errors,nan
CVE-2008-0662,15/10/2018 22:02,8/02/2008 2:00,7.2,200, Information Exposure,nan
CVE-2008-0661,15/10/2018 22:02,8/02/2008 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0658,15/10/2018 22:02,13/02/2008 21:00,4.0,399, Resource Management Errors,nan
CVE-2008-0656,15/10/2018 22:02,7/02/2008 21:00,10.0,20, Improper Input Validation,nan
CVE-2008-0654,15/10/2018 22:02,7/02/2008 21:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0639,15/10/2018 22:02,13/02/2008 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0638,15/10/2018 22:02,21/02/2008 20:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0636,15/10/2018 22:02,12/02/2008 20:00,5.0,200, Information Exposure,nan
CVE-2008-0635,15/10/2018 22:02,6/02/2008 21:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0633,15/10/2018 22:02,6/02/2008 21:00,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0632,15/10/2018 22:02,6/02/2008 21:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-0628,15/10/2018 22:02,6/02/2008 21:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-0621,15/10/2018 22:02,6/02/2008 12:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0620,15/10/2018 22:02,6/02/2008 12:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0619,15/10/2018 22:02,6/02/2008 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0617,15/10/2018 22:02,6/02/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0616,15/10/2018 22:02,6/02/2008 12:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0615,15/10/2018 22:02,6/02/2008 12:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0613,15/10/2018 22:02,6/02/2008 12:00,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0612,15/10/2018 22:02,6/02/2008 12:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0609,15/10/2018 22:02,6/02/2008 12:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0608,15/10/2018 22:02,6/02/2008 12:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0605,15/10/2018 22:02,6/02/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0597,15/10/2018 22:01,26/02/2008 0:44,5.0,399, Resource Management Errors,nan
CVE-2008-0596,15/10/2018 22:01,26/02/2008 0:44,5.0,399, Resource Management Errors,nan
CVE-2008-0595,15/10/2018 22:01,29/02/2008 19:44,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-0593,15/10/2018 22:01,9/02/2008 1:00,4.3,200, Information Exposure,nan
CVE-2008-0582,15/10/2018 22:01,5/02/2008 3:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0581,15/10/2018 22:01,5/02/2008 3:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0580,15/10/2018 22:01,5/02/2008 3:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-0578,15/10/2018 22:01,5/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0575,15/10/2018 22:01,5/02/2008 2:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0574,15/10/2018 22:01,5/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0564,15/10/2018 22:01,5/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0560,15/10/2018 22:01,4/02/2008 23:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0559,15/10/2018 22:01,4/02/2008 23:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0555,15/10/2018 22:01,4/04/2008 0:44,7.5,287, Improper Authentication,nan
CVE-2008-0553,15/10/2018 22:01,7/02/2008 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0552,15/10/2018 22:01,1/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0547,15/10/2018 22:01,1/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0546,15/10/2018 22:01,1/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0544,15/10/2018 22:01,1/02/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0543,15/10/2018 22:01,1/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0538,15/10/2018 22:01,1/02/2008 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0533,15/10/2018 22:01,14/03/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0532,15/10/2018 22:01,14/03/2008 20:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0525,15/10/2018 22:00,31/01/2008 20:00,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0513,15/10/2018 22:00,31/01/2008 20:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0508,15/10/2018 22:00,31/01/2008 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0506,15/10/2018 22:00,31/01/2008 20:00,6.8,20, Improper Input Validation,nan
CVE-2008-0505,15/10/2018 22:00,31/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0497,15/10/2018 22:00,30/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0496,15/10/2018 22:00,30/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0489,15/10/2018 22:00,30/01/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0488,15/10/2018 22:00,30/01/2008 22:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0487,15/10/2018 22:00,30/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0486,15/10/2018 22:00,5/02/2008 12:00,7.5,189, Numeric Errors,nan
CVE-2008-0485,15/10/2018 22:00,5/02/2008 12:00,9.3,189, Numeric Errors,nan
CVE-2008-0481,15/10/2018 22:00,29/01/2008 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0480,15/10/2018 22:00,29/01/2008 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0479,15/10/2018 22:00,29/01/2008 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0473,15/10/2018 22:00,29/01/2008 20:00,6.4,20, Improper Input Validation,nan
CVE-2008-0472,15/10/2018 22:00,29/01/2008 20:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0471,15/10/2018 22:00,29/01/2008 20:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0469,15/10/2018 22:00,29/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0466,15/10/2018 22:00,29/01/2008 0:00,5.0,287, Improper Authentication,nan
CVE-2008-0457,15/10/2018 22:00,7/02/2008 21:00,10.0,20, Improper Input Validation,nan
CVE-2008-0454,15/10/2018 22:00,25/01/2008 1:00,9.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0451,15/10/2018 22:00,25/01/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0450,15/10/2018 22:00,25/01/2008 0:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0439,15/10/2018 22:00,23/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0438,15/10/2018 22:00,23/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0436,15/10/2018 22:00,23/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0434,15/10/2018 22:00,23/01/2008 22:00,9.3,189, Numeric Errors,nan
CVE-2008-0433,15/10/2018 22:00,23/01/2008 22:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0432,15/10/2018 22:00,23/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0428,15/10/2018 22:00,23/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0427,15/10/2018 22:00,23/01/2008 22:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0426,15/10/2018 22:00,23/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0422,15/10/2018 22:00,23/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0420,15/10/2018 22:00,12/02/2008 3:00,9.3,200, Information Exposure,nan
CVE-2008-0419,15/10/2018 22:00,8/02/2008 22:00,9.3,399, Resource Management Errors,nan
CVE-2008-0418,15/10/2018 22:00,8/02/2008 22:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0417,15/10/2018 22:00,8/02/2008 22:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0415,15/10/2018 21:59,8/02/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0414,15/10/2018 21:59,8/02/2008 22:00,4.3,20, Improper Input Validation,nan
CVE-2008-0413,15/10/2018 21:59,8/02/2008 22:00,9.3,399, Resource Management Errors,nan
CVE-2008-0412,15/10/2018 21:59,8/02/2008 22:00,9.3,399, Resource Management Errors,nan
CVE-2008-0411,15/10/2018 21:59,28/02/2008 21:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0410,15/10/2018 21:59,29/01/2008 0:00,5.0,287, Improper Authentication,nan
CVE-2008-0409,15/10/2018 21:59,29/01/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0408,15/10/2018 21:59,29/01/2008 0:00,6.4,287, Improper Authentication,nan
CVE-2008-0407,15/10/2018 21:59,29/01/2008 0:00,5.0,287, Improper Authentication,nan
CVE-2008-0406,15/10/2018 21:59,29/01/2008 0:00,5.0,20, Improper Input Validation,nan
CVE-2008-0405,15/10/2018 21:59,29/01/2008 0:00,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0403,15/10/2018 21:59,23/01/2008 12:00,5.5,287, Improper Authentication,nan
CVE-2008-0396,15/10/2018 21:59,23/01/2008 12:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0395,15/10/2018 21:59,23/01/2008 12:00,5.0,200, Information Exposure,nan
CVE-2008-0385,15/10/2018 21:59,29/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0383,15/10/2018 21:59,22/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0382,15/10/2018 21:59,22/01/2008 20:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0378,15/10/2018 21:59,22/01/2008 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0377,15/10/2018 21:59,22/01/2008 20:00,10.0,287, Improper Authentication,nan
CVE-2008-0374,15/10/2018 21:59,22/01/2008 20:00,10.0,310, Cryptographic Issues,nan
CVE-2008-0373,15/10/2018 21:59,22/01/2008 20:00,7.5,20, Improper Input Validation,nan
CVE-2008-0372,15/10/2018 21:59,22/01/2008 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0370,15/10/2018 21:59,22/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0366,15/10/2018 21:59,18/01/2008 23:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0365,15/10/2018 21:59,18/01/2008 23:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0364,15/10/2018 21:59,18/01/2008 23:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0363,15/10/2018 21:59,18/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0362,15/10/2018 21:59,18/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0361,15/10/2018 21:59,18/01/2008 22:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0356,15/10/2018 21:59,18/01/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0332,15/10/2018 21:59,17/01/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0301,15/10/2018 21:59,11/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0298,15/10/2018 21:59,16/01/2008 23:00,4.3,20, Improper Input Validation,nan
CVE-2008-0291,15/10/2018 21:59,16/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0289,15/10/2018 21:58,16/01/2008 2:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0288,15/10/2018 21:58,16/01/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0286,15/10/2018 21:58,16/01/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0284,15/10/2018 21:58,15/01/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0280,15/10/2018 21:58,15/01/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0268,15/10/2018 21:58,15/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0267,15/10/2018 21:58,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0266,15/10/2018 21:58,15/01/2008 20:00,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0253,15/10/2018 21:58,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0252,15/10/2018 21:58,12/01/2008 2:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0247,15/10/2018 21:58,12/01/2008 2:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0244,15/10/2018 21:58,12/01/2008 2:46,10.0,20, Improper Input Validation,nan
CVE-2008-0241,15/10/2018 21:58,11/01/2008 22:46,5.8,20, Improper Input Validation,nan
CVE-2008-0240,15/10/2018 21:58,11/01/2008 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0239,15/10/2018 21:58,11/01/2008 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0234,15/10/2018 21:58,11/01/2008 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0231,15/10/2018 21:58,11/01/2008 0:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0229,15/10/2018 21:58,10/01/2008 23:46,10.0,287, Improper Authentication,nan
CVE-2008-0228,15/10/2018 21:58,10/01/2008 23:46,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0227,15/10/2018 21:58,10/01/2008 23:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0212,15/10/2018 21:58,6/02/2008 21:00,7.8,399, Resource Management Errors,nan
CVE-2008-0209,15/10/2018 21:58,10/01/2008 0:46,5.8,20, Improper Input Validation,nan
CVE-2008-0208,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0207,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0206,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0205,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0204,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0203,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0202,15/10/2018 21:58,10/01/2008 0:46,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0201,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0200,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0199,15/10/2018 21:58,10/01/2008 0:46,5.0,20, Improper Input Validation,nan
CVE-2008-0198,15/10/2018 21:58,10/01/2008 0:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0197,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0196,15/10/2018 21:58,10/01/2008 0:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0195,15/10/2018 21:58,10/01/2008 0:46,5.0,200, Information Exposure,nan
CVE-2008-0194,15/10/2018 21:58,10/01/2008 0:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0193,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0192,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0191,15/10/2018 21:58,10/01/2008 0:46,5.0,200, Information Exposure,nan
CVE-2008-0190,15/10/2018 21:58,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0186,15/10/2018 21:58,9/01/2008 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0185,15/10/2018 21:58,9/01/2008 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0184,15/10/2018 21:58,9/01/2008 22:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0176,15/10/2018 21:58,29/01/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0174,15/10/2018 21:58,29/01/2008 2:00,5.0,310, Cryptographic Issues,nan
CVE-2008-0172,15/10/2018 21:58,17/01/2008 23:00,5.0,20, Improper Input Validation,nan
CVE-2008-0171,15/10/2018 21:58,17/01/2008 23:00,5.0,20, Improper Input Validation,nan
CVE-2008-0166,15/10/2018 21:58,13/05/2008 17:20,7.8,310, Cryptographic Issues,nan
CVE-2008-0164,15/10/2018 21:58,20/03/2008 0:44,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0156,15/10/2018 21:58,9/01/2008 0:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0151,15/10/2018 21:58,9/01/2008 0:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0150,15/10/2018 21:58,9/01/2008 0:46,6.8,287, Improper Authentication,nan
CVE-2008-0146,15/10/2018 21:58,8/01/2008 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0136,15/10/2018 21:58,8/01/2008 19:46,5.0,200, Information Exposure,nan
CVE-2008-0135,15/10/2018 21:58,8/01/2008 19:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0134,15/10/2018 21:58,8/01/2008 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0127,15/10/2018 21:58,10/01/2008 0:46,8.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0125,15/10/2018 21:58,24/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0123,15/10/2018 21:58,12/01/2008 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0119,15/10/2018 21:57,13/05/2008 22:20,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0116,15/10/2018 21:57,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0109,15/10/2018 21:57,12/02/2008 23:00,9.3,399, Resource Management Errors,nan
CVE-2008-0106,15/10/2018 21:57,8/07/2008 23:41,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0101,15/10/2018 21:57,8/01/2008 2:46,7.5,20, Improper Input Validation,nan
CVE-2008-0100,15/10/2018 21:57,8/01/2008 2:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0097,15/10/2018 21:57,8/01/2008 2:46,7.5,20, Improper Input Validation,nan
CVE-2008-0096,15/10/2018 21:57,8/01/2008 2:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0095,15/10/2018 21:57,8/01/2008 2:46,5.0,399, Resource Management Errors,nan
CVE-2008-0094,15/10/2018 21:57,8/01/2008 2:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0092,15/10/2018 21:57,4/01/2008 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0086,15/10/2018 21:57,8/07/2008 23:41,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0082,15/10/2018 21:57,13/08/2008 0:41,10.0,200, Information Exposure,nan
CVE-2008-0072,15/10/2018 21:57,6/03/2008 0:44,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-0071,15/10/2018 21:57,16/06/2008 18:41,4.3,20, Improper Input Validation,nan
CVE-2008-0068,15/10/2018 21:57,16/04/2008 18:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0067,15/10/2018 21:57,8/01/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0066,15/10/2018 21:57,10/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0063,15/10/2018 21:57,19/03/2008 10:44,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0062,15/10/2018 21:57,19/03/2008 10:44,9.3,189, Numeric Errors,nan
CVE-2008-0033,15/10/2018 21:57,16/01/2008 3:00,9.3,399, Resource Management Errors,nan
CVE-2008-0027,15/10/2018 21:57,17/01/2008 3:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0010,15/10/2018 21:57,12/02/2008 21:00,2.1,20, Improper Input Validation,nan
CVE-2008-0009,15/10/2018 21:57,12/02/2008 21:00,2.1,20, Improper Input Validation,nan
CVE-2008-0007,15/10/2018 21:56,8/02/2008 2:00,7.2,399, Resource Management Errors,nan
CVE-2008-0006,15/10/2018 21:56,18/01/2008 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0005,15/10/2018 21:56,12/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0003,15/10/2018 21:56,8/01/2008 20:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6725,15/10/2018 21:56,8/04/2009 16:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6709,15/10/2018 21:56,13/03/2008 18:44,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6708,15/10/2018 21:56,13/03/2008 18:44,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6707,15/10/2018 21:56,13/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6704,15/10/2018 21:56,5/03/2008 23:44,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6698,15/10/2018 21:56,1/02/2008 22:00,4.0,399, Resource Management Errors,nan
CVE-2007-6697,15/10/2018 21:56,1/02/2008 20:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6676,15/10/2018 21:56,8/01/2008 19:46,5.0,16, Configuration,nan
CVE-2007-6671,15/10/2018 21:56,8/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6662,15/10/2018 21:56,4/01/2008 11:46,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6661,15/10/2018 21:56,4/01/2008 11:46,6.4,255, Credentials Management,nan
CVE-2007-6660,15/10/2018 21:55,4/01/2008 11:46,5.0,200, Information Exposure,nan
CVE-2007-6659,15/10/2018 21:55,4/01/2008 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6658,15/10/2018 21:55,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6651,15/10/2018 21:55,4/01/2008 11:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6650,15/10/2018 21:55,4/01/2008 11:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6646,15/10/2018 21:55,4/01/2008 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6642,15/10/2018 21:55,4/01/2008 1:46,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6641,15/10/2018 21:55,4/01/2008 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6635,15/10/2018 21:55,4/01/2008 0:46,6.4,310, Cryptographic Issues,nan
CVE-2007-6634,15/10/2018 21:55,4/01/2008 0:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6633,15/10/2018 21:55,4/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6631,15/10/2018 21:55,4/01/2008 0:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6627,15/10/2018 21:55,4/01/2008 0:46,7.5,189, Numeric Errors,nan
CVE-2007-6626,15/10/2018 21:55,4/01/2008 0:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6616,15/10/2018 21:55,3/01/2008 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6609,15/10/2018 21:55,31/12/2007 20:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6608,15/10/2018 21:55,31/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6607,15/10/2018 21:55,31/12/2007 20:46,5.0,200, Information Exposure,nan
CVE-2007-6606,15/10/2018 21:55,31/12/2007 20:46,5.0,200, Information Exposure,nan
CVE-2007-6601,15/10/2018 21:55,9/01/2008 21:46,7.2,287, Improper Authentication,nan
CVE-2007-6600,15/10/2018 21:55,9/01/2008 21:46,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6598,15/10/2018 21:55,4/01/2008 2:46,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-6597,15/10/2018 21:55,31/12/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6596,15/10/2018 21:55,31/12/2007 19:46,5.0,20, Improper Input Validation,nan
CVE-2007-6595,15/10/2018 21:55,31/12/2007 19:46,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-6593,15/10/2018 21:55,28/12/2007 21:46,8.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6574,15/10/2018 21:55,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6573,15/10/2018 21:55,28/12/2007 21:46,7.8,20, Improper Input Validation,nan
CVE-2007-6567,15/10/2018 21:55,28/12/2007 21:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6566,15/10/2018 21:55,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6565,15/10/2018 21:55,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6561,15/10/2018 21:55,28/12/2007 0:46,5.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6560,15/10/2018 21:55,28/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6559,15/10/2018 21:55,28/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6558,15/10/2018 21:55,28/12/2007 0:46,4.3,20, Improper Input Validation,nan
CVE-2007-6548,15/10/2018 21:55,28/12/2007 0:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6545,15/10/2018 21:55,28/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6544,15/10/2018 21:55,28/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6541,15/10/2018 21:55,27/12/2007 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6540,15/10/2018 21:55,27/12/2007 23:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6539,15/10/2018 21:55,27/12/2007 23:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6538,15/10/2018 21:55,27/12/2007 23:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6537,15/10/2018 21:55,27/12/2007 23:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6536,15/10/2018 21:55,27/12/2007 23:46,6.8,200, Information Exposure,nan
CVE-2007-6533,15/10/2018 21:55,27/12/2007 23:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6528,15/10/2018 21:55,27/12/2007 22:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6526,15/10/2018 21:54,27/12/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6524,15/10/2018 21:54,24/12/2007 20:46,7.8,200, Information Exposure,nan
CVE-2007-6523,15/10/2018 21:54,24/12/2007 20:46,7.8,399, Resource Management Errors,nan
CVE-2007-6518,15/10/2018 21:54,24/12/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6517,15/10/2018 21:54,24/12/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6515,15/10/2018 21:54,21/12/2007 22:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6514,15/10/2018 21:54,21/12/2007 22:46,4.3,200, Information Exposure,nan
CVE-2007-6512,15/10/2018 21:54,21/12/2007 22:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6508,15/10/2018 21:54,21/12/2007 19:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6507,15/10/2018 21:54,20/12/2007 23:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6503,15/10/2018 21:54,20/12/2007 20:46,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6502,15/10/2018 21:54,20/12/2007 20:46,5.5,200, Information Exposure,nan
CVE-2007-6499,15/10/2018 21:54,20/12/2007 20:46,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6498,15/10/2018 21:54,20/12/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6497,15/10/2018 21:54,20/12/2007 20:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6496,15/10/2018 21:54,20/12/2007 20:46,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-6495,15/10/2018 21:54,20/12/2007 20:46,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6494,15/10/2018 21:54,20/12/2007 20:46,10.0,20, Improper Input Validation,nan
CVE-2007-6493,15/10/2018 21:54,20/12/2007 20:46,10.0,20, Improper Input Validation,nan
CVE-2007-6492,15/10/2018 21:54,20/12/2007 20:46,7.1,20, Improper Input Validation,nan
CVE-2007-6485,15/10/2018 21:54,20/12/2007 20:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6483,15/10/2018 21:54,20/12/2007 20:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6478,15/10/2018 21:54,20/12/2007 20:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6471,15/10/2018 21:54,20/12/2007 0:46,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6467,15/10/2018 21:54,20/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6459,15/10/2018 21:54,20/12/2007 0:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6457,15/10/2018 21:54,20/12/2007 0:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6455,15/10/2018 21:54,20/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6454,15/10/2018 21:54,20/12/2007 0:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6453,15/10/2018 21:54,20/12/2007 0:46,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6451,15/10/2018 21:54,19/12/2007 22:46,4.3,399, Resource Management Errors,nan
CVE-2007-6441,15/10/2018 21:54,19/12/2007 22:46,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6439,15/10/2018 21:54,19/12/2007 22:46,6.1,399, Resource Management Errors,nan
CVE-2007-6437,15/10/2018 21:54,19/12/2007 21:46,5.0,20, Improper Input Validation,nan
CVE-2007-6435,15/10/2018 21:54,18/12/2007 20:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6432,15/10/2018 21:54,31/10/2008 18:09,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6430,15/10/2018 21:54,20/12/2007 2:46,4.3,287, Improper Authentication,nan
CVE-2007-6429,15/10/2018 21:53,18/01/2008 23:00,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-6427,15/10/2018 21:53,18/01/2008 23:00,9.3,399, Resource Management Errors,nan
CVE-2007-6426,15/10/2018 21:53,21/02/2008 0:44,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6412,15/10/2018 21:53,17/12/2007 18:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6411,15/10/2018 21:53,17/12/2007 18:46,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6410,15/10/2018 21:53,17/12/2007 18:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6409,15/10/2018 21:53,17/12/2007 18:46,4.3,16, Configuration,nan
CVE-2007-6408,15/10/2018 21:53,17/12/2007 18:46,5.0,200, Information Exposure,nan
CVE-2007-6407,15/10/2018 21:53,17/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6406,15/10/2018 21:52,17/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6405,15/10/2018 21:52,17/12/2007 18:46,6.4,200, Information Exposure,nan
CVE-2007-6404,15/10/2018 21:52,17/12/2007 18:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6403,15/10/2018 21:52,17/12/2007 18:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6402,15/10/2018 21:52,17/12/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6401,15/10/2018 21:52,17/12/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6399,15/10/2018 21:52,17/12/2007 18:46,6.5,255, Credentials Management,nan
CVE-2007-6398,15/10/2018 21:52,17/12/2007 18:46,5.0,287, Improper Authentication,nan
CVE-2007-6397,15/10/2018 21:52,17/12/2007 18:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6396,15/10/2018 21:52,17/12/2007 18:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6395,15/10/2018 21:52,17/12/2007 18:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6379,15/10/2018 21:52,15/12/2007 1:46,5.0,16, Configuration,nan
CVE-2007-6378,15/10/2018 21:52,15/12/2007 1:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6377,15/10/2018 21:52,15/12/2007 1:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6375,15/10/2018 21:52,15/12/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6374,15/10/2018 21:52,15/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6368,15/10/2018 21:52,15/12/2007 1:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6367,15/10/2018 21:52,15/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6366,15/10/2018 21:52,15/12/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6364,15/10/2018 21:52,15/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6362,15/10/2018 21:52,15/12/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6361,15/10/2018 21:52,15/12/2007 1:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6352,15/10/2018 21:52,20/12/2007 2:46,6.8,189, Numeric Errors,nan
CVE-2007-6349,15/10/2018 21:52,20/12/2007 23:46,7.8,399, Resource Management Errors,nan
CVE-2007-6348,15/10/2018 21:52,14/12/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6342,15/10/2018 21:52,13/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6340,15/10/2018 21:52,5/02/2008 3:00,2.1,255, Credentials Management,nan
CVE-2007-6338,15/10/2018 21:52,15/12/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6334,15/10/2018 21:52,20/12/2007 23:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6331,15/10/2018 21:52,13/12/2007 19:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6329,15/10/2018 21:52,13/12/2007 19:46,6.4,255, Credentials Management,nan
CVE-2007-6321,15/10/2018 21:52,12/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6318,15/10/2018 21:52,12/12/2007 0:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6317,15/10/2018 21:52,12/12/2007 0:46,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6316,15/10/2018 21:52,12/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6315,15/10/2018 21:52,12/12/2007 0:46,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6314,15/10/2018 21:52,12/12/2007 0:46,5.0,20, Improper Input Validation,nan
CVE-2007-6312,15/10/2018 21:51,11/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6311,15/10/2018 21:51,11/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6310,15/10/2018 21:51,11/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6309,15/10/2018 21:51,11/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6307,15/10/2018 21:51,11/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6306,15/10/2018 21:51,11/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6302,15/10/2018 21:51,10/12/2007 19:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6301,15/10/2018 21:51,10/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6297,15/10/2018 21:51,10/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6284,15/10/2018 21:51,12/01/2008 2:46,5.0,399, Resource Management Errors,nan
CVE-2007-6279,15/10/2018 21:51,7/12/2007 11:46,9.3,399, Resource Management Errors,nan
CVE-2007-6278,15/10/2018 21:51,7/12/2007 11:46,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6277,15/10/2018 21:51,7/12/2007 11:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6272,15/10/2018 21:51,7/12/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6271,15/10/2018 21:51,7/12/2007 11:46,5.0,20, Improper Input Validation,nan
CVE-2007-6262,15/10/2018 21:51,6/12/2007 2:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6260,15/10/2018 21:51,6/12/2007 2:46,6.8,255, Credentials Management,nan
CVE-2007-6258,15/10/2018 21:51,19/02/2008 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6240,15/10/2018 21:51,5/12/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6237,15/10/2018 21:51,4/12/2007 18:46,9.0,287, Improper Authentication,nan
CVE-2007-6235,15/10/2018 21:51,4/12/2007 18:46,5.0,20, Improper Input Validation,nan
CVE-2007-6227,15/10/2018 21:51,4/12/2007 18:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6226,15/10/2018 21:51,4/12/2007 18:46,7.1,287, Improper Authentication,nan
CVE-2007-6217,15/10/2018 21:51,4/12/2007 15:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6211,15/10/2018 21:51,4/12/2007 1:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6206,15/10/2018 21:51,4/12/2007 0:46,2.1,16, Configuration,nan
CVE-2007-6205,15/10/2018 21:51,11/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6204,15/10/2018 21:51,13/12/2007 21:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6203,15/10/2018 21:50,3/12/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6200,15/10/2018 21:50,1/12/2007 6:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6199,15/10/2018 21:50,1/12/2007 6:46,9.3,16, Configuration,nan
CVE-2007-6197,15/10/2018 21:50,1/12/2007 6:46,5.0,200, Information Exposure,nan
CVE-2007-6195,15/10/2018 21:50,15/12/2007 1:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6193,15/10/2018 21:50,30/11/2007 1:46,5.0,200, Information Exposure,nan
CVE-2007-6192,15/10/2018 21:50,30/11/2007 1:46,4.3,310, Cryptographic Issues,nan
CVE-2007-6189,15/10/2018 21:50,30/11/2007 1:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6185,15/10/2018 21:50,30/11/2007 0:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6183,15/10/2018 21:50,30/11/2007 0:46,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2007-6173,15/10/2018 21:50,30/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6164,15/10/2018 21:50,29/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6163,15/10/2018 21:50,29/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6162,15/10/2018 21:50,29/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6161,15/10/2018 21:50,29/11/2007 1:46,5.0,200, Information Exposure,nan
CVE-2007-6160,15/10/2018 21:50,29/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6159,15/10/2018 21:50,29/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6158,15/10/2018 21:50,29/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6157,15/10/2018 21:50,29/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6143,15/10/2018 21:50,27/11/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6141,15/10/2018 21:50,27/11/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6139,15/10/2018 21:50,27/11/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6138,15/10/2018 21:50,27/11/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6136,15/10/2018 21:50,27/11/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6135,15/10/2018 21:50,27/11/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6129,15/10/2018 21:50,26/11/2007 22:46,5.8,20, Improper Input Validation,nan
CVE-2007-6121,15/10/2018 21:50,23/11/2007 20:46,5.0,20, Improper Input Validation,nan
CVE-2007-6120,15/10/2018 21:50,23/11/2007 20:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6115,15/10/2018 21:50,23/11/2007 20:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6114,15/10/2018 21:50,23/11/2007 20:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6113,15/10/2018 21:49,23/11/2007 20:46,4.3,189, Numeric Errors,nan
CVE-2007-6112,15/10/2018 21:49,23/11/2007 20:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6106,15/10/2018 21:49,23/11/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6105,15/10/2018 21:49,23/11/2007 20:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6091,15/10/2018 21:49,22/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6087,15/10/2018 21:49,22/11/2007 0:46,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6086,15/10/2018 21:49,22/11/2007 0:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6085,15/10/2018 21:49,22/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6083,15/10/2018 21:49,22/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6082,15/10/2018 21:49,22/11/2007 0:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6067,15/10/2018 21:49,9/01/2008 21:46,6.8,189, Numeric Errors,nan
CVE-2007-6060,15/10/2018 21:49,20/11/2007 20:46,9.3,20, Improper Input Validation,nan
CVE-2007-6058,15/10/2018 21:49,20/11/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6056,15/10/2018 21:49,20/11/2007 20:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6055,15/10/2018 21:49,20/11/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6054,15/10/2018 21:49,20/11/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6044,15/10/2018 21:49,20/11/2007 20:46,10.0,399, Resource Management Errors,nan
CVE-2007-6040,15/10/2018 21:49,20/11/2007 19:46,5.0,399, Resource Management Errors,nan
CVE-2007-6039,15/10/2018 21:49,20/11/2007 19:46,2.1,20, Improper Input Validation,nan
CVE-2007-6037,15/10/2018 21:49,20/11/2007 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6036,15/10/2018 21:49,20/11/2007 11:46,7.1,20, Improper Input Validation,nan
CVE-2007-6026,15/10/2018 21:49,20/11/2007 0:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6021,15/10/2018 21:49,30/10/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6020,15/10/2018 21:49,10/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6014,15/10/2018 21:48,5/12/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6013,15/10/2018 21:48,19/11/2007 21:46,6.8,287, Improper Authentication,nan
CVE-2007-6012,15/10/2018 21:48,16/11/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6007,15/10/2018 21:48,15/11/2007 22:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6000,15/10/2018 21:48,15/11/2007 22:46,5.0,399, Resource Management Errors,nan
CVE-2007-5993,15/10/2018 21:48,15/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5991,15/10/2018 21:48,15/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5990,15/10/2018 21:48,15/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5989,15/10/2018 21:48,13/12/2007 21:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5984,15/10/2018 21:48,15/11/2007 0:46,7.8,20, Improper Input Validation,nan
CVE-2007-5983,15/10/2018 21:48,15/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5980,15/10/2018 21:48,15/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5979,15/10/2018 21:48,15/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5978,15/10/2018 21:48,15/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5975,15/10/2018 21:48,15/11/2007 0:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5971,15/10/2018 21:48,6/12/2007 2:46,6.9,399, Resource Management Errors,nan
CVE-2007-5969,15/10/2018 21:48,10/12/2007 19:46,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5966,15/10/2018 21:48,20/12/2007 0:46,7.2,189, Numeric Errors,nan
CVE-2007-5962,15/10/2018 21:48,22/05/2008 13:09,7.1,399, Resource Management Errors,nan
CVE-2007-5960,15/10/2018 21:48,26/11/2007 23:46,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5958,15/10/2018 21:47,18/01/2008 23:00,5.0,200, Information Exposure,nan
CVE-2007-5947,15/10/2018 21:47,14/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5943,15/10/2018 21:47,14/11/2007 1:46,5.0,16, Configuration,nan
CVE-2007-5937,15/10/2018 21:47,13/11/2007 22:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5936,15/10/2018 21:47,13/11/2007 22:46,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-5935,15/10/2018 21:47,13/11/2007 22:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5923,15/10/2018 21:47,10/11/2007 2:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5922,15/10/2018 21:47,10/11/2007 2:46,5.0,200, Information Exposure,nan
CVE-2007-5919,15/10/2018 21:47,10/11/2007 2:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5918,15/10/2018 21:47,10/11/2007 2:46,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5917,15/10/2018 21:47,10/11/2007 2:46,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5916,15/10/2018 21:47,10/11/2007 2:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5915,15/10/2018 21:47,10/11/2007 2:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5914,15/10/2018 21:47,10/11/2007 2:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5913,15/10/2018 21:47,10/11/2007 2:46,6.8,287, Improper Authentication,nan
CVE-2007-5909,15/10/2018 21:47,10/11/2007 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5904,15/10/2018 21:47,9/11/2007 18:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5902,15/10/2018 21:47,6/12/2007 2:46,10.0,189, Numeric Errors,nan
CVE-2007-5900,15/10/2018 21:47,20/11/2007 18:46,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5899,15/10/2018 21:46,20/11/2007 19:46,4.3,200, Information Exposure,nan
CVE-2007-5897,15/10/2018 21:46,8/11/2007 21:46,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5863,15/10/2018 21:46,19/12/2007 21:46,9.3,310, Cryptographic Issues,nan
CVE-2007-5848,15/10/2018 21:46,19/12/2007 21:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5846,15/10/2018 21:46,6/11/2007 21:46,7.8,399, Resource Management Errors,nan
CVE-2007-5835,15/10/2018 21:46,5/11/2007 19:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5834,15/10/2018 21:46,5/11/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5833,15/10/2018 21:46,5/11/2007 19:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5828,15/10/2018 21:46,5/11/2007 19:46,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5825,15/10/2018 21:46,5/11/2007 19:46,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-5824,15/10/2018 21:46,5/11/2007 19:46,7.1,20, Improper Input Validation,nan
CVE-2007-5823,15/10/2018 21:46,5/11/2007 19:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5822,15/10/2018 21:46,5/11/2007 19:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5818,15/10/2018 21:46,5/11/2007 18:46,7.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5815,15/10/2018 21:46,5/11/2007 18:46,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5814,15/10/2018 21:46,5/11/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5806,15/10/2018 21:46,5/11/2007 17:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5802,15/10/2018 21:46,3/11/2007 0:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5794,15/10/2018 21:46,13/11/2007 23:46,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-5787,15/10/2018 21:46,1/11/2007 16:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5780,15/10/2018 21:46,1/11/2007 16:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5778,15/10/2018 21:46,1/11/2007 16:46,6.4,310, Cryptographic Issues,nan
CVE-2007-5777,15/10/2018 21:46,1/11/2007 16:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5776,15/10/2018 21:46,1/11/2007 16:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5772,15/10/2018 21:46,1/11/2007 16:46,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5771,15/10/2018 21:46,1/11/2007 16:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5766,15/10/2018 21:46,8/11/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5752,15/10/2018 21:46,31/10/2007 17:46,7.5,287, Improper Authentication,nan
CVE-2007-5741,15/10/2018 21:46,7/11/2007 21:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5740,15/10/2018 21:46,31/10/2007 16:46,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-5739,15/10/2018 21:46,30/10/2007 23:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5738,15/10/2018 21:46,30/10/2007 23:46,6.8,20, Improper Input Validation,nan
CVE-2007-5737,15/10/2018 21:46,30/10/2007 23:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5736,15/10/2018 21:46,30/10/2007 23:46,6.4,20, Improper Input Validation,nan
CVE-2007-5735,15/10/2018 21:46,30/10/2007 23:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5734,15/10/2018 21:46,30/10/2007 23:46,6.4,20, Improper Input Validation,nan
CVE-2007-5733,15/10/2018 21:46,30/10/2007 23:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5732,15/10/2018 21:46,30/10/2007 23:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5727,15/10/2018 21:46,30/10/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5725,15/10/2018 21:46,30/10/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5724,15/10/2018 21:46,30/10/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5710,15/10/2018 21:46,30/10/2007 19:46,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5706,15/10/2018 21:46,29/10/2007 22:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5704,15/10/2018 21:46,29/10/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5703,15/10/2018 21:46,29/10/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5702,15/10/2018 21:46,29/10/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5696,15/10/2018 21:46,29/10/2007 20:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5695,15/10/2018 21:46,29/10/2007 20:46,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5694,15/10/2018 21:46,29/10/2007 20:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5693,15/10/2018 21:46,29/10/2007 20:46,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5692,15/10/2018 21:46,29/10/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5691,15/10/2018 21:46,29/10/2007 19:46,4.3,20, Improper Input Validation,nan
CVE-2007-5690,15/10/2018 21:46,29/10/2007 19:46,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5688,15/10/2018 21:45,29/10/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5686,15/10/2018 21:45,28/10/2007 17:08,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5685,15/10/2018 21:45,28/10/2007 17:08,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5678,15/10/2018 21:45,24/10/2007 23:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5677,15/10/2018 21:45,24/10/2007 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5650,15/10/2018 21:45,23/10/2007 21:47,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5646,15/10/2018 21:45,23/10/2007 21:47,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5638,15/10/2018 21:45,23/10/2007 17:46,4.3,310, Cryptographic Issues,nan
CVE-2007-5637,15/10/2018 21:45,23/10/2007 17:46,4.3,200, Information Exposure,nan
CVE-2007-5636,15/10/2018 21:45,23/10/2007 17:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5631,15/10/2018 21:45,23/10/2007 17:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5625,15/10/2018 21:45,23/10/2007 16:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5622,15/10/2018 21:45,29/10/2007 21:46,5.0,399, Resource Management Errors,nan
CVE-2007-5603,15/10/2018 21:45,5/11/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5587,15/10/2018 21:45,19/10/2007 21:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5582,15/10/2018 21:45,15/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5580,15/10/2018 21:45,15/12/2007 1:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5572,15/10/2018 21:45,18/10/2007 21:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5564,15/10/2018 21:45,18/10/2007 20:17,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5546,15/10/2018 21:45,18/10/2007 20:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5545,15/10/2018 21:45,18/10/2007 20:17,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-5511,15/10/2018 21:45,17/10/2007 23:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5508,15/10/2018 21:45,17/10/2007 23:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5507,15/10/2018 21:45,17/10/2007 23:17,6.4,20, Improper Input Validation,nan
CVE-2007-5506,15/10/2018 21:45,17/10/2007 23:17,7.8,399, Resource Management Errors,nan
CVE-2007-5503,15/10/2018 21:45,30/11/2007 1:46,6.8,189, Numeric Errors,nan
CVE-2007-5497,15/10/2018 21:45,7/12/2007 11:46,5.8,189, Numeric Errors,nan
CVE-2007-5493,15/10/2018 21:45,18/10/2007 0:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-5492,15/10/2018 21:45,17/10/2007 19:17,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5484,15/10/2018 21:45,16/10/2007 23:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5479,15/10/2018 21:45,16/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5478,15/10/2018 21:45,16/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5475,15/10/2018 21:45,12/11/2009 23:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5474,15/10/2018 21:45,5/09/2008 16:08,6.3,20, Improper Input Validation,nan
CVE-2007-5472,15/10/2018 21:45,22/10/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5464,15/10/2018 21:45,15/10/2007 22:17,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5463,15/10/2018 21:45,15/10/2007 22:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5460,15/10/2018 21:44,15/10/2007 22:17,7.1,310, Cryptographic Issues,nan
CVE-2007-5457,15/10/2018 21:44,14/10/2007 19:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5456,15/10/2018 21:44,14/10/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5455,15/10/2018 21:44,14/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5448,15/10/2018 21:44,14/10/2007 18:17,4.3,20, Improper Input Validation,nan
CVE-2007-5445,15/10/2018 21:44,14/10/2007 18:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5444,15/10/2018 21:44,14/10/2007 18:17,5.0,200, Information Exposure,nan
CVE-2007-5443,15/10/2018 21:44,14/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5442,15/10/2018 21:44,14/10/2007 18:17,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5441,15/10/2018 21:44,14/10/2007 18:17,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5440,15/10/2018 21:44,14/10/2007 17:17,7.5,20, Improper Input Validation,nan
CVE-2007-5439,15/10/2018 21:44,13/10/2007 1:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5437,15/10/2018 21:44,13/10/2007 1:17,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5436,15/10/2018 21:44,13/10/2007 1:17,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5435,15/10/2018 21:44,13/10/2007 1:17,4.3,399, Resource Management Errors,nan
CVE-2007-5434,15/10/2018 21:44,12/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5433,15/10/2018 21:44,12/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5432,15/10/2018 21:44,12/10/2007 23:17,7.5,200, Information Exposure,nan
CVE-2007-5431,15/10/2018 21:44,12/10/2007 23:17,7.8,200, Information Exposure,nan
CVE-2007-5430,15/10/2018 21:44,12/10/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5429,15/10/2018 21:44,12/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5428,15/10/2018 21:44,12/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5427,15/10/2018 21:44,12/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5426,15/10/2018 21:44,12/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5425,15/10/2018 21:44,12/10/2007 23:17,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5423,15/10/2018 21:44,12/10/2007 23:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5420,15/10/2018 21:44,12/10/2007 21:17,2.6,200, Information Exposure,nan
CVE-2007-5419,15/10/2018 21:44,12/10/2007 21:17,10.0,16, Configuration,nan
CVE-2007-5418,15/10/2018 21:44,12/10/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5417,15/10/2018 21:44,12/10/2007 21:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5416,15/10/2018 21:44,12/10/2007 21:17,6.8,189, Numeric Errors,nan
CVE-2007-5415,15/10/2018 21:44,12/10/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5414,15/10/2018 21:44,12/10/2007 21:17,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5413,15/10/2018 21:44,29/10/2007 22:46,7.8,200, Information Exposure,nan
CVE-2007-5410,15/10/2018 21:44,12/10/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5405,15/10/2018 21:44,10/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5399,15/10/2018 21:44,10/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5395,15/10/2018 21:44,8/11/2007 2:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5394,15/10/2018 21:44,30/10/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5389,15/10/2018 21:44,12/10/2007 10:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5386,15/10/2018 21:44,12/10/2007 10:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5385,15/10/2018 21:44,12/10/2007 1:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5384,15/10/2018 21:44,12/10/2007 1:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5383,15/10/2018 21:44,12/10/2007 1:17,10.0,287, Improper Authentication,nan
CVE-2007-5378,15/10/2018 21:44,12/10/2007 1:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5372,15/10/2018 21:44,11/10/2007 10:17,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5371,15/10/2018 21:44,11/10/2007 10:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5370,15/10/2018 21:44,11/10/2007 10:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5369,15/10/2018 21:44,11/10/2007 10:17,5.0,189, Numeric Errors,nan
CVE-2007-5365,15/10/2018 21:44,11/10/2007 10:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5364,15/10/2018 21:44,11/10/2007 1:17,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5358,15/10/2018 21:43,12/10/2007 23:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5352,15/10/2018 21:43,8/01/2008 20:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5351,15/10/2018 21:43,12/12/2007 0:46,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5350,15/10/2018 21:43,12/12/2007 0:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5344,15/10/2018 21:43,12/12/2007 0:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5340,15/10/2018 21:43,21/10/2007 19:17,4.3,20, Improper Input Validation,nan
CVE-2007-5339,15/10/2018 21:43,21/10/2007 19:17,4.3,20, Improper Input Validation,nan
CVE-2007-5338,15/10/2018 21:43,21/10/2007 20:17,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-5337,15/10/2018 21:43,21/10/2007 20:17,4.3,200, Information Exposure,nan
CVE-2007-5334,15/10/2018 21:42,21/10/2007 20:17,4.3,16, Configuration,nan
CVE-2007-5332,15/10/2018 21:42,13/10/2007 0:17,10.0,399, Resource Management Errors,nan
CVE-2007-5331,15/10/2018 21:42,13/10/2007 0:17,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5330,15/10/2018 21:42,13/10/2007 0:17,10.0,399, Resource Management Errors,nan
CVE-2007-5329,15/10/2018 21:42,13/10/2007 0:17,10.0,399, Resource Management Errors,nan
CVE-2007-5328,15/10/2018 21:42,13/10/2007 0:17,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5327,15/10/2018 21:42,13/10/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5326,15/10/2018 21:42,13/10/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5325,15/10/2018 21:42,13/10/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5312,15/10/2018 21:42,9/10/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5311,15/10/2018 21:42,9/10/2007 21:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5307,15/10/2018 21:42,9/10/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5306,15/10/2018 21:42,9/10/2007 18:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5305,15/10/2018 21:42,9/10/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5304,15/10/2018 21:42,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5303,15/10/2018 21:42,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5301,15/10/2018 21:42,9/10/2007 18:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5298,15/10/2018 21:42,9/10/2007 18:17,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5294,15/10/2018 21:42,9/10/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5293,15/10/2018 21:42,9/10/2007 18:17,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5289,15/10/2018 21:42,24/02/2009 17:30,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-5269,15/10/2018 21:42,8/10/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-5267,15/10/2018 21:41,8/10/2007 21:17,4.3,189, Numeric Errors,nan
CVE-2007-5265,15/10/2018 21:41,8/10/2007 21:17,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-5264,15/10/2018 21:41,8/10/2007 21:17,5.0,200, Information Exposure,nan
CVE-2007-5263,15/10/2018 21:41,8/10/2007 21:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5262,15/10/2018 21:41,8/10/2007 21:17,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-5260,15/10/2018 21:41,6/10/2007 17:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5256,15/10/2018 21:41,6/10/2007 17:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5255,15/10/2018 21:41,6/10/2007 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5253,15/10/2018 21:41,6/10/2007 17:17,5.0,20, Improper Input Validation,nan
CVE-2007-5252,15/10/2018 21:41,6/10/2007 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5250,15/10/2018 21:41,6/10/2007 17:17,4.3,189, Numeric Errors,nan
CVE-2007-5249,15/10/2018 21:41,6/10/2007 17:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5248,15/10/2018 21:41,6/10/2007 17:17,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2007-5247,15/10/2018 21:41,6/10/2007 17:17,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2007-5246,15/10/2018 21:41,6/10/2007 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5245,15/10/2018 21:41,6/10/2007 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5224,15/10/2018 21:41,5/10/2007 0:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5223,15/10/2018 21:41,5/10/2007 0:17,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-5220,15/10/2018 21:41,5/10/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5218,15/10/2018 21:41,5/10/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5214,15/10/2018 21:41,4/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5213,15/10/2018 21:41,4/10/2007 23:17,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5212,15/10/2018 21:41,4/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5194,15/10/2018 21:41,4/10/2007 17:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5191,15/10/2018 21:41,4/10/2007 16:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5190,15/10/2018 21:41,22/10/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5189,15/10/2018 21:41,3/10/2007 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5184,15/10/2018 21:41,3/10/2007 14:17,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-5173,15/10/2018 21:41,3/10/2007 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5162,15/10/2018 21:41,1/10/2007 5:17,4.3,287, Improper Authentication,nan
CVE-2007-5161,15/10/2018 21:41,1/10/2007 5:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5151,15/10/2018 21:40,1/10/2007 5:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5150,15/10/2018 21:40,1/10/2007 5:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5149,15/10/2018 21:40,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5141,15/10/2018 21:40,28/09/2007 21:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5135,15/10/2018 21:40,27/09/2007 20:17,6.8,189, Numeric Errors,nan
CVE-2007-5131,15/10/2018 21:40,27/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5130,15/10/2018 21:40,27/09/2007 19:17,4.3,20, Improper Input Validation,nan
CVE-2007-5129,15/10/2018 21:40,27/09/2007 19:17,5.0,200, Information Exposure,nan
CVE-2007-5128,15/10/2018 21:40,27/09/2007 19:17,5.0,20, Improper Input Validation,nan
CVE-2007-5127,15/10/2018 21:40,27/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5124,15/10/2018 21:40,27/09/2007 19:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5121,15/10/2018 21:40,27/09/2007 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5120,15/10/2018 21:40,27/09/2007 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5119,15/10/2018 21:40,27/09/2007 17:17,4.3,20, Improper Input Validation,nan
CVE-2007-5116,15/10/2018 21:40,7/11/2007 23:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5113,15/10/2018 21:40,26/09/2007 23:17,5.0,287, Improper Authentication,nan
CVE-2007-5112,15/10/2018 21:40,26/09/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5109,15/10/2018 21:40,26/09/2007 23:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5107,15/10/2018 21:40,26/09/2007 23:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5106,15/10/2018 21:40,26/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5105,15/10/2018 21:40,26/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5095,15/10/2018 21:40,26/09/2007 22:17,7.5,20, Improper Input Validation,nan
CVE-2007-5092,15/10/2018 21:40,26/09/2007 20:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5089,15/10/2018 21:40,26/09/2007 20:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5084,15/10/2018 21:40,1/10/2007 20:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5083,15/10/2018 21:40,1/10/2007 20:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5082,15/10/2018 21:40,1/10/2007 20:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5078,15/10/2018 21:40,5/10/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5072,15/10/2018 21:40,24/09/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5071,15/10/2018 21:40,24/09/2007 23:17,7.5,16, Configuration,nan
CVE-2007-5069,15/10/2018 21:40,24/09/2007 23:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5060,15/10/2018 21:40,24/09/2007 22:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5059,15/10/2018 21:40,24/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5058,15/10/2018 21:40,24/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5057,15/10/2018 21:40,24/09/2007 22:17,10.0,287, Improper Authentication,nan
CVE-2007-5052,15/10/2018 21:40,24/09/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5050,15/10/2018 21:40,24/09/2007 0:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5047,15/10/2018 21:40,24/09/2007 0:17,7.2,20, Improper Input Validation,nan
CVE-2007-5045,15/10/2018 21:40,24/09/2007 0:17,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5044,15/10/2018 21:40,24/09/2007 0:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5043,15/10/2018 21:40,24/09/2007 0:17,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-5042,15/10/2018 21:40,24/09/2007 0:17,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-5041,15/10/2018 21:40,24/09/2007 0:17,4.6,20, Improper Input Validation,nan
CVE-2007-5040,15/10/2018 21:40,24/09/2007 0:17,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5039,15/10/2018 21:40,24/09/2007 0:17,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5038,15/10/2018 21:40,24/09/2007 0:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5034,15/10/2018 21:40,21/09/2007 20:17,4.3,200, Information Exposure,nan
CVE-2007-5033,15/10/2018 21:40,21/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5032,15/10/2018 21:40,21/09/2007 19:17,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5027,15/10/2018 21:40,21/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5026,15/10/2018 21:40,21/09/2007 19:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5006,15/10/2018 21:39,1/10/2007 20:17,10.0,287, Improper Authentication,nan
CVE-2007-5005,15/10/2018 21:39,1/10/2007 20:17,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5004,15/10/2018 21:39,1/10/2007 20:17,9.3,189, Numeric Errors,nan
CVE-2007-5003,15/10/2018 21:39,1/10/2007 20:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4999,15/10/2018 21:39,29/10/2007 22:46,4.3,20, Improper Input Validation,nan
CVE-2007-4995,15/10/2018 21:39,13/10/2007 1:17,9.3,189, Numeric Errors,nan
CVE-2007-4993,15/10/2018 21:39,27/09/2007 17:17,6.9,20, Improper Input Validation,nan
CVE-2007-4992,15/10/2018 21:39,11/10/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4990,15/10/2018 21:39,5/10/2007 21:17,7.5,189, Numeric Errors,nan
CVE-2007-4988,15/10/2018 21:39,24/09/2007 22:17,6.8,189, Numeric Errors,nan
CVE-2007-4987,15/10/2018 21:39,24/09/2007 22:17,9.3,189, Numeric Errors,nan
CVE-2007-4986,15/10/2018 21:39,24/09/2007 22:17,6.8,189, Numeric Errors,nan
CVE-2007-4985,15/10/2018 21:39,24/09/2007 22:17,4.3,399, Resource Management Errors,nan
CVE-2007-4981,15/10/2018 21:39,19/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4980,15/10/2018 21:39,19/09/2007 18:17,4.3,189, Numeric Errors,nan
CVE-2007-4977,15/10/2018 21:39,19/09/2007 18:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4976,15/10/2018 21:39,19/09/2007 18:17,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4975,15/10/2018 21:39,19/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4972,15/10/2018 21:39,19/09/2007 1:17,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-4971,15/10/2018 21:39,19/09/2007 1:17,4.4,20, Improper Input Validation,nan
CVE-2007-4970,15/10/2018 21:39,19/09/2007 1:17,4.4,20, Improper Input Validation,nan
CVE-2007-4969,15/10/2018 21:39,19/09/2007 1:17,4.4,20, Improper Input Validation,nan
CVE-2007-4968,15/10/2018 21:39,19/09/2007 1:17,4.4,20, Improper Input Validation,nan
CVE-2007-4967,15/10/2018 21:39,19/09/2007 1:17,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-4965,15/10/2018 21:39,18/09/2007 22:17,5.8,189, Numeric Errors,nan
CVE-2007-4964,15/10/2018 21:38,18/09/2007 22:17,5.0,20, Improper Input Validation,nan
CVE-2007-4962,15/10/2018 21:38,18/09/2007 22:17,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4960,15/10/2018 21:38,18/09/2007 22:17,5.0,310, Cryptographic Issues,nan
CVE-2007-4941,15/10/2018 21:38,18/09/2007 19:17,7.1,399, Resource Management Errors,nan
CVE-2007-4940,15/10/2018 21:38,18/09/2007 19:17,9.3,189, Numeric Errors,nan
CVE-2007-4939,15/10/2018 21:38,18/09/2007 19:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4938,15/10/2018 21:38,18/09/2007 19:17,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4937,15/10/2018 21:38,18/09/2007 19:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4930,15/10/2018 21:38,18/09/2007 18:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-4929,15/10/2018 21:38,18/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4928,15/10/2018 21:38,18/09/2007 18:17,4.9,310, Cryptographic Issues,nan
CVE-2007-4927,15/10/2018 21:38,18/09/2007 18:17,3.5,20, Improper Input Validation,nan
CVE-2007-4926,15/10/2018 21:38,18/09/2007 18:17,9.3,310, Cryptographic Issues,nan
CVE-2007-4924,15/10/2018 21:38,8/10/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-4918,15/10/2018 21:38,17/09/2007 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4917,15/10/2018 21:38,17/09/2007 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4916,15/10/2018 21:38,17/09/2007 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4915,15/10/2018 21:38,17/09/2007 17:17,10.0,20, Improper Input Validation,nan
CVE-2007-4909,15/10/2018 21:38,17/09/2007 17:17,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-4906,15/10/2018 21:38,17/09/2007 16:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4904,15/10/2018 21:38,17/09/2007 16:17,4.3,189, Numeric Errors,nan
CVE-2007-4900,15/10/2018 21:38,14/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4899,15/10/2018 21:38,14/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4897,15/10/2018 21:38,14/09/2007 18:17,5.0,399, Resource Management Errors,nan
CVE-2007-4896,15/10/2018 21:38,14/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4887,15/10/2018 21:38,14/09/2007 0:17,4.3,20, Improper Input Validation,nan
CVE-2007-4881,15/10/2018 21:38,14/09/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4874,15/10/2018 21:38,26/09/2007 20:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4873,15/10/2018 21:38,27/09/2007 19:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4863,15/10/2018 21:38,30/10/2007 21:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4862,15/10/2018 21:38,30/10/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4861,15/10/2018 21:38,30/10/2007 21:46,5.0,200, Information Exposure,nan
CVE-2007-4850,15/10/2018 21:38,25/01/2008 1:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4844,15/10/2018 21:38,12/09/2007 20:17,4.3,20, Improper Input Validation,nan
CVE-2007-4843,15/10/2018 21:38,12/09/2007 20:17,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4842,15/10/2018 21:38,12/09/2007 20:17,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4840,15/10/2018 21:38,12/09/2007 20:17,5.0,20, Improper Input Validation,nan
CVE-2007-4837,15/10/2018 21:38,12/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4836,15/10/2018 21:38,12/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4835,15/10/2018 21:38,12/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4827,15/10/2018 21:38,19/09/2007 18:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4825,15/10/2018 21:38,12/09/2007 1:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4822,15/10/2018 21:38,11/09/2007 19:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-4819,15/10/2018 21:38,11/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4818,15/10/2018 21:38,11/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4815,15/10/2018 21:38,11/09/2007 19:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4814,15/10/2018 21:38,11/09/2007 19:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4812,15/10/2018 21:38,11/09/2007 18:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4811,15/10/2018 21:38,11/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4810,15/10/2018 21:38,11/09/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4784,15/10/2018 21:38,10/09/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-4783,15/10/2018 21:38,10/09/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-4782,15/10/2018 21:38,10/09/2007 21:17,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4780,15/10/2018 21:38,10/09/2007 21:17,6.8,20, Improper Input Validation,nan
CVE-2007-4779,15/10/2018 21:38,10/09/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4777,15/10/2018 21:38,10/09/2007 21:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4771,15/10/2018 21:37,29/01/2008 0:00,9.3,399, Resource Management Errors,nan
CVE-2007-4770,15/10/2018 21:37,29/01/2008 0:00,6.8,399, Resource Management Errors,nan
CVE-2007-4769,15/10/2018 21:37,9/01/2008 21:46,6.8,189, Numeric Errors,nan
CVE-2007-4768,15/10/2018 21:37,7/11/2007 23:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4766,15/10/2018 21:37,7/11/2007 23:46,7.5,189, Numeric Errors,nan
CVE-2007-4762,15/10/2018 21:37,8/09/2007 10:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4756,15/10/2018 21:37,8/09/2007 1:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4755,15/10/2018 21:37,8/09/2007 1:17,5.0,20, Improper Input Validation,nan
CVE-2007-4754,15/10/2018 21:37,8/09/2007 1:17,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-4752,15/10/2018 21:37,12/09/2007 1:17,7.5,20, Improper Input Validation,nan
CVE-2007-4751,15/10/2018 21:37,18/09/2007 21:17,1.9,310, Cryptographic Issues,nan
CVE-2007-4750,15/10/2018 21:37,18/09/2007 21:17,9.3,310, Cryptographic Issues,nan
CVE-2007-4749,15/10/2018 21:37,14/09/2007 0:17,6.8,16, Configuration,nan
CVE-2007-4743,15/10/2018 21:37,6/09/2007 22:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4740,15/10/2018 21:37,6/09/2007 19:17,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-4733,15/10/2018 21:37,6/09/2007 19:17,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-4731,15/10/2018 21:37,12/09/2007 1:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4727,15/10/2018 21:37,12/09/2007 19:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4724,15/10/2018 21:37,5/09/2007 19:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-4723,15/10/2018 21:37,5/09/2007 19:17,7.5,287, Improper Authentication,nan
CVE-2007-4719,15/10/2018 21:37,5/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4715,15/10/2018 21:36,5/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4711,15/10/2018 21:36,5/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4686,15/10/2018 21:36,15/11/2007 1:46,7.2,189, Numeric Errors,nan
CVE-2007-4684,15/10/2018 21:36,15/11/2007 1:46,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4674,15/10/2018 21:36,27/11/2007 20:46,6.8,189, Numeric Errors,nan
CVE-2007-4672,15/10/2018 21:36,7/11/2007 23:46,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4654,15/10/2018 21:36,4/09/2007 22:17,5.0,399, Resource Management Errors,nan
CVE-2007-4648,15/10/2018 21:36,31/08/2007 23:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4644,15/10/2018 21:36,31/08/2007 23:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4643,15/10/2018 21:36,31/08/2007 23:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4642,15/10/2018 21:36,31/08/2007 23:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4639,15/10/2018 21:36,31/08/2007 23:17,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4620,15/10/2018 21:36,7/04/2008 18:44,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4612,15/10/2018 21:36,31/08/2007 0:17,4.3,20, Improper Input Validation,nan
CVE-2007-4611,15/10/2018 21:36,31/08/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4610,15/10/2018 21:36,31/08/2007 0:17,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-4609,15/10/2018 21:36,31/08/2007 0:17,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-4608,15/10/2018 21:36,31/08/2007 0:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4600,15/10/2018 21:36,18/10/2007 20:17,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-4599,15/10/2018 21:36,31/10/2007 17:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4592,15/10/2018 21:36,20/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4589,15/10/2018 21:36,29/08/2007 1:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4588,15/10/2018 21:36,29/08/2007 1:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4580,15/10/2018 21:36,28/08/2007 18:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4578,15/10/2018 21:36,28/08/2007 18:17,6.8,189, Numeric Errors,nan
CVE-2007-4573,15/10/2018 21:36,24/09/2007 22:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-4568,15/10/2018 21:36,5/10/2007 21:17,6.8,189, Numeric Errors,nan
CVE-2007-4566,15/10/2018 21:36,28/08/2007 1:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4560,15/10/2018 21:36,28/08/2007 1:17,7.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2007-4554,15/10/2018 21:36,28/08/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4545,15/10/2018 21:36,27/08/2007 23:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4544,15/10/2018 21:36,27/08/2007 23:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-4543,15/10/2018 21:36,27/08/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4541,15/10/2018 21:36,27/08/2007 21:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-4540,15/10/2018 21:35,27/08/2007 21:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4539,15/10/2018 21:35,27/08/2007 21:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4525,15/10/2018 21:35,25/08/2007 0:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4517,15/10/2018 21:35,8/11/2007 20:46,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4512,15/10/2018 21:35,10/09/2007 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4491,15/10/2018 21:35,23/08/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4467,15/10/2018 21:35,31/08/2007 0:17,9.3,20, Improper Input Validation,nan
CVE-2007-4464,15/10/2018 21:35,21/08/2007 21:17,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4458,15/10/2018 21:35,21/08/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4457,15/10/2018 21:35,21/08/2007 21:17,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4456,15/10/2018 21:35,21/08/2007 21:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4450,15/10/2018 21:35,21/08/2007 0:17,5.0,20, Improper Input Validation,nan
CVE-2007-4423,15/10/2018 21:35,18/08/2007 21:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4419,15/10/2018 21:35,18/08/2007 21:17,9.3,287, Improper Authentication,nan
CVE-2007-4403,15/10/2018 21:35,18/08/2007 21:17,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-4390,15/10/2018 21:35,17/08/2007 22:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-4368,15/10/2018 21:34,15/08/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4350,15/10/2018 21:34,21/10/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4347,15/10/2018 21:34,29/11/2007 23:46,7.8,189, Numeric Errors,nan
CVE-2007-4346,15/10/2018 21:34,29/11/2007 23:46,5.0,399, Resource Management Errors,nan
CVE-2007-4344,15/10/2018 21:34,15/11/2007 22:46,9.3,20, Improper Input Validation,nan
CVE-2007-4342,15/10/2018 21:34,14/08/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4339,15/10/2018 21:34,14/08/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4338,15/10/2018 21:34,14/08/2007 18:17,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4337,15/10/2018 21:34,14/08/2007 18:17,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4328,15/10/2018 21:34,14/08/2007 0:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4324,15/10/2018 21:34,14/08/2007 0:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4290,15/10/2018 21:34,9/08/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4286,15/10/2018 21:34,9/08/2007 21:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4261,15/10/2018 21:34,8/08/2007 23:17,7.5,255, Credentials Management,nan
CVE-2007-4245,15/10/2018 21:34,8/08/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4244,15/10/2018 21:34,8/08/2007 23:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4224,15/10/2018 21:33,8/08/2007 21:17,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-4218,15/10/2018 21:33,22/08/2007 23:17,10.0,20, Improper Input Validation,nan
CVE-2007-4216,15/10/2018 21:33,21/08/2007 17:17,7.2,20, Improper Input Validation,nan
CVE-2007-4207,15/10/2018 21:33,8/08/2007 2:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4203,15/10/2018 21:33,8/08/2007 1:17,9.3,287, Improper Authentication,nan
CVE-2007-4188,15/10/2018 21:33,8/08/2007 1:17,9.3,287, Improper Authentication,nan
CVE-2007-4187,15/10/2018 21:33,8/08/2007 1:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4173,15/10/2018 21:33,7/08/2007 10:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4169,15/10/2018 21:33,7/08/2007 10:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4144,15/10/2018 21:33,3/08/2007 20:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4138,15/10/2018 21:33,14/09/2007 1:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-4137,15/10/2018 21:33,18/09/2007 19:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4134,15/10/2018 21:33,30/08/2007 22:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4095,15/10/2018 21:33,30/07/2007 20:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4074,15/10/2018 21:33,30/07/2007 17:30,10.0,16, Configuration,nan
CVE-2007-4038,15/10/2018 21:33,27/07/2007 22:30,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4037,15/10/2018 21:33,27/07/2007 22:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4036,15/10/2018 21:33,27/07/2007 22:30,4.3,399, Resource Management Errors,nan
CVE-2007-4033,15/10/2018 21:32,27/07/2007 22:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4000,15/10/2018 21:32,5/09/2007 10:17,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-3999,15/10/2018 21:32,5/09/2007 10:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3988,15/10/2018 21:32,25/07/2007 18:30,6.8,287, Improper Authentication,nan
CVE-2007-3911,15/10/2018 21:32,30/07/2007 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3902,15/10/2018 21:32,12/12/2007 0:46,9.3,399, Resource Management Errors,nan
CVE-2007-3898,15/10/2018 21:32,14/11/2007 1:46,6.4,16, Configuration,nan
CVE-2007-3896,15/10/2018 21:32,11/10/2007 0:17,9.3,20, Improper Input Validation,nan
CVE-2007-3895,15/10/2018 21:31,12/12/2007 0:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3893,15/10/2018 21:31,9/10/2007 22:17,6.8,399, Resource Management Errors,nan
CVE-2007-3892,15/10/2018 21:31,9/10/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3884,15/10/2018 21:31,18/07/2007 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3798,15/10/2018 21:30,16/07/2007 22:30,6.8,189, Numeric Errors,nan
CVE-2007-3782,15/10/2018 21:30,15/07/2007 22:30,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-3773,15/10/2018 21:30,15/07/2007 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3752,15/10/2018 21:30,6/09/2007 21:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3731,15/10/2018 21:30,17/09/2007 17:17,4.9,20, Improper Input Validation,nan
CVE-2007-3716,15/10/2018 21:29,11/07/2007 23:30,9.3,20, Improper Input Validation,nan
CVE-2007-3715,15/10/2018 21:29,11/07/2007 23:30,9.3,20, Improper Input Validation,nan
CVE-2007-3711,15/10/2018 21:29,11/07/2007 23:30,7.5,20, Improper Input Validation,nan
CVE-2007-3705,15/10/2018 21:29,11/07/2007 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3701,15/10/2018 21:29,11/07/2007 23:30,7.5,20, Improper Input Validation,nan
CVE-2007-3694,15/10/2018 21:29,14/11/2007 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3670,15/10/2018 21:29,10/07/2007 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3656,15/10/2018 21:29,10/07/2007 19:30,6.8,200, Information Exposure,nan
CVE-2007-3597,15/10/2018 21:29,6/07/2007 18:30,8.5,287, Improper Authentication,nan
CVE-2007-3574,15/10/2018 21:29,5/07/2007 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3563,15/10/2018 21:29,4/07/2007 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3550,15/10/2018 21:29,3/07/2007 21:30,7.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3504,15/10/2018 21:29,30/06/2007 1:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15534,15/10/2018 20:37,21/08/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-15533,15/10/2018 20:34,21/08/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11561,15/10/2018 20:15,8/08/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-10139,15/10/2018 19:45,16/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10140,15/10/2018 19:42,16/08/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2018-11687,15/10/2018 19:31,15/08/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-15172,15/10/2018 18:49,15/08/2018 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9596,15/10/2018 18:49,16/08/2018 20:29,4.3,399, Resource Management Errors,nan
CVE-2016-9598,15/10/2018 18:44,16/08/2018 20:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8396,15/10/2018 18:41,15/08/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-8378,15/10/2018 18:37,15/08/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-6973,15/10/2018 18:35,15/08/2018 12:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-6970,15/10/2018 18:33,13/08/2018 21:48,4.0,125, Out-of-bounds Read,nan
CVE-1999-1011,15/10/2018 18:29,19/07/1999 4:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1605,15/10/2018 18:20,23/08/2018 19:29,5.0,255, Credentials Management,nan
CVE-2017-16348,15/10/2018 18:17,23/08/2018 14:29,7.8,287, Improper Authentication,nan
CVE-2018-15670,15/10/2018 18:14,21/08/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2018-15351,15/10/2018 18:11,17/08/2018 14:29,7.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-15353,15/10/2018 18:06,17/08/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1999039,15/10/2018 17:58,1/08/2018 13:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-15598,15/10/2018 17:45,21/08/2018 1:29,5.0,287, Improper Authentication,nan
CVE-2018-14023,15/10/2018 17:30,20/08/2018 22:29,2.1,200, Information Exposure,nan
CVE-2018-2445,15/10/2018 17:29,14/08/2018 16:29,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000223,15/10/2018 16:17,20/08/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15122,15/10/2018 16:08,16/08/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-1000221,15/10/2018 16:04,20/08/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1999038,15/10/2018 15:32,1/08/2018 13:29,4.9,441, Unintended Proxy or Intermediary (‘Confused Deputy’),nan
CVE-2018-8375,15/10/2018 14:16,15/08/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8387,15/10/2018 14:10,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8379,15/10/2018 14:05,15/08/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8360,15/10/2018 14:03,15/08/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-8359,15/10/2018 13:52,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5925,15/10/2018 13:36,13/08/2018 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8380,14/10/2018 10:29,5/04/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2016-8371,14/10/2018 10:29,5/04/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2016-8366,13/10/2018 10:29,5/04/2018 16:29,5.0,255, Credentials Management,nan
CVE-2017-0004,12/10/2018 22:15,10/01/2017 21:59,7.8,20, Improper Input Validation,nan
CVE-2017-0003,12/10/2018 22:15,10/01/2017 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7892,12/10/2018 22:15,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7890,12/10/2018 22:15,15/12/2016 6:59,7.5,254, 7PK – Security Features,nan
CVE-2016-7881,12/10/2018 22:15,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7880,12/10/2018 22:15,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7879,12/10/2018 22:14,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7878,12/10/2018 22:14,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7877,12/10/2018 22:14,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7876,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7875,12/10/2018 22:14,15/12/2016 6:59,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-7874,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7873,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7872,12/10/2018 22:14,15/12/2016 6:59,10.0,416, Use After Free,nan
CVE-2016-7871,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7870,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7869,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7868,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7867,12/10/2018 22:14,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7300,12/10/2018 22:14,20/12/2016 6:59,4.6,426, Untrusted Search Path,nan
CVE-2016-7298,12/10/2018 22:14,20/12/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7297,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7296,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7291,12/10/2018 22:14,20/12/2016 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7290,12/10/2018 22:14,20/12/2016 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7289,12/10/2018 22:14,20/12/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7288,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7287,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7286,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7284,12/10/2018 22:14,20/12/2016 6:59,4.3,200, Information Exposure,nan
CVE-2016-7283,12/10/2018 22:14,20/12/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7282,12/10/2018 22:14,20/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7281,12/10/2018 22:14,20/12/2016 6:59,2.6,254, 7PK – Security Features,nan
CVE-2016-7280,12/10/2018 22:14,20/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7279,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7278,12/10/2018 22:14,20/12/2016 6:59,2.6,200, Information Exposure,nan
CVE-2016-7277,12/10/2018 22:14,20/12/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7276,12/10/2018 22:14,20/12/2016 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7274,12/10/2018 22:14,20/12/2016 6:59,9.3,19, Data Processing Errors,nan
CVE-2016-7273,12/10/2018 22:14,20/12/2016 6:59,9.3,19, Data Processing Errors,nan
CVE-2016-7272,12/10/2018 22:14,20/12/2016 6:59,9.3,19, Data Processing Errors,nan
CVE-2016-7271,12/10/2018 22:14,20/12/2016 6:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-7270,12/10/2018 22:14,20/12/2016 6:59,5.0,310, Cryptographic Issues,nan
CVE-2016-7268,12/10/2018 22:14,20/12/2016 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7267,12/10/2018 22:14,20/12/2016 6:59,4.3,20, Improper Input Validation,nan
CVE-2016-7266,12/10/2018 22:14,20/12/2016 6:59,6.8,20, Improper Input Validation,nan
CVE-2016-7265,12/10/2018 22:14,20/12/2016 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7264,12/10/2018 22:14,20/12/2016 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-7263,12/10/2018 22:14,20/12/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7262,12/10/2018 22:14,20/12/2016 6:59,6.8,20, Improper Input Validation,nan
CVE-2016-7260,12/10/2018 22:14,20/12/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7259,12/10/2018 22:14,20/12/2016 6:59,7.2,19, Data Processing Errors,nan
CVE-2016-7258,12/10/2018 22:14,20/12/2016 6:59,2.1,200, Information Exposure,nan
CVE-2016-7257,12/10/2018 22:14,20/12/2016 6:59,4.3,200, Information Exposure,nan
CVE-2016-7256,12/10/2018 22:14,10/11/2016 7:00,9.3,284, Improper Access Control,nan
CVE-2016-7255,12/10/2018 22:14,10/11/2016 7:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7254,12/10/2018 22:14,10/11/2016 7:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7253,12/10/2018 22:14,10/11/2016 7:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7252,12/10/2018 22:14,10/11/2016 7:00,4.0,200, Information Exposure,nan
CVE-2016-7251,12/10/2018 22:14,10/11/2016 7:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7250,12/10/2018 22:14,10/11/2016 7:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7249,12/10/2018 22:14,10/11/2016 7:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7248,12/10/2018 22:14,10/11/2016 7:00,9.3,284, Improper Access Control,nan
CVE-2016-7247,12/10/2018 22:14,10/11/2016 7:00,5.0,284, Improper Access Control,nan
CVE-2016-7246,12/10/2018 22:14,10/11/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7244,12/10/2018 22:14,10/11/2016 6:59,4.3,284, Improper Access Control,nan
CVE-2016-7243,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7242,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7241,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7240,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7239,12/10/2018 22:14,10/11/2016 6:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7238,12/10/2018 22:14,10/11/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7237,12/10/2018 22:14,10/11/2016 6:59,6.8,284, Improper Access Control,nan
CVE-2016-7236,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7235,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7234,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7233,12/10/2018 22:14,10/11/2016 6:59,4.3,200, Information Exposure,nan
CVE-2016-7232,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7231,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7230,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7229,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7228,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7227,12/10/2018 22:14,10/11/2016 6:59,2.6,200, Information Exposure,nan
CVE-2016-7226,12/10/2018 22:14,10/11/2016 6:59,3.6,284, Improper Access Control,nan
CVE-2016-7225,12/10/2018 22:14,10/11/2016 6:59,3.6,284, Improper Access Control,nan
CVE-2016-7224,12/10/2018 22:14,10/11/2016 6:59,3.6,284, Improper Access Control,nan
CVE-2016-7223,12/10/2018 22:14,10/11/2016 6:59,3.6,284, Improper Access Control,nan
CVE-2016-7222,12/10/2018 22:14,10/11/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7221,12/10/2018 22:14,10/11/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7220,12/10/2018 22:14,10/11/2016 6:59,2.1,200, Information Exposure,nan
CVE-2016-7219,12/10/2018 22:14,20/12/2016 6:59,2.1,200, Information Exposure,nan
CVE-2016-7218,12/10/2018 22:14,10/11/2016 6:59,1.9,200, Information Exposure,nan
CVE-2016-7217,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7216,12/10/2018 22:14,10/11/2016 6:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-7215,12/10/2018 22:14,10/11/2016 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7214,12/10/2018 22:14,10/11/2016 6:59,2.1,200, Information Exposure,nan
CVE-2016-7213,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7212,12/10/2018 22:14,10/11/2016 6:59,9.3,284, Improper Access Control,nan
CVE-2016-7211,12/10/2018 22:14,14/10/2016 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7210,12/10/2018 22:14,10/11/2016 6:59,4.3,200, Information Exposure,nan
CVE-2016-7209,12/10/2018 22:14,10/11/2016 6:59,2.6,20, Improper Input Validation,nan
CVE-2016-7208,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7206,12/10/2018 22:14,20/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7205,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7204,12/10/2018 22:14,10/11/2016 6:59,2.6,200, Information Exposure,nan
CVE-2016-7203,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7202,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7201,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7200,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7199,12/10/2018 22:14,10/11/2016 6:59,2.6,200, Information Exposure,nan
CVE-2016-7198,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7196,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7195,12/10/2018 22:14,10/11/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7194,12/10/2018 22:14,14/10/2016 2:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7193,12/10/2018 22:14,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7190,12/10/2018 22:14,14/10/2016 2:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7189,12/10/2018 22:14,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7188,12/10/2018 22:14,14/10/2016 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7185,12/10/2018 22:14,14/10/2016 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7184,12/10/2018 22:14,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7182,12/10/2018 22:14,14/10/2016 2:59,10.0,20, Improper Input Validation,nan
CVE-2016-7181,12/10/2018 22:14,20/12/2016 6:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4249,12/10/2018 22:14,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4247,12/10/2018 22:14,13/07/2016 2:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-4232,12/10/2018 22:14,13/07/2016 2:00,5.0,200, Information Exposure,nan
CVE-2016-4188,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4185,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4182,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4179,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4178,12/10/2018 22:13,13/07/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-4177,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4176,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4175,12/10/2018 22:13,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3396,12/10/2018 22:12,14/10/2016 2:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3393,12/10/2018 22:12,14/10/2016 2:59,9.3,284, Improper Access Control,nan
CVE-2016-3392,12/10/2018 22:12,14/10/2016 2:59,2.6,284, Improper Access Control,nan
CVE-2016-3391,12/10/2018 22:12,14/10/2016 2:59,2.6,200, Information Exposure,nan
CVE-2016-3390,12/10/2018 22:12,14/10/2016 2:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3389,12/10/2018 22:12,14/10/2016 2:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3388,12/10/2018 22:12,14/10/2016 2:59,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-3387,12/10/2018 22:12,14/10/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-3386,12/10/2018 22:12,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3385,12/10/2018 22:12,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3384,12/10/2018 22:12,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3383,12/10/2018 22:12,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3382,12/10/2018 22:12,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3381,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3379,12/10/2018 22:12,14/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3378,12/10/2018 22:12,14/09/2016 10:59,5.8,20, Improper Input Validation,nan
CVE-2016-3377,12/10/2018 22:12,14/09/2016 10:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3376,12/10/2018 22:12,14/10/2016 2:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3375,12/10/2018 22:12,14/09/2016 10:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3374,12/10/2018 22:12,14/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3373,12/10/2018 22:12,14/09/2016 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3372,12/10/2018 22:12,14/09/2016 10:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-3371,12/10/2018 22:12,14/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3370,12/10/2018 22:12,14/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3369,12/10/2018 22:12,14/09/2016 10:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3368,12/10/2018 22:12,14/09/2016 10:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3367,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3366,12/10/2018 22:12,14/09/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-3365,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3364,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3363,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3362,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3361,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3360,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3359,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3358,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3356,12/10/2018 22:12,14/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3355,12/10/2018 22:12,14/09/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3354,12/10/2018 22:12,14/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-3353,12/10/2018 22:12,14/09/2016 10:59,5.1,254, 7PK – Security Features,nan
CVE-2016-3352,12/10/2018 22:12,14/09/2016 10:59,4.3,285, Improper Authorization,nan
CVE-2016-3351,12/10/2018 22:12,14/09/2016 10:59,2.6,200, Information Exposure,nan
CVE-2016-3350,12/10/2018 22:12,14/09/2016 10:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3349,12/10/2018 22:12,14/09/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3348,12/10/2018 22:12,14/09/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3346,12/10/2018 22:12,14/09/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3345,12/10/2018 22:12,14/09/2016 10:59,9.0,284, Improper Access Control,nan
CVE-2016-3344,12/10/2018 22:12,14/09/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-3343,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3342,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3341,12/10/2018 22:12,14/10/2016 2:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3340,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3338,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3335,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3334,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3333,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3332,12/10/2018 22:12,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3331,12/10/2018 22:12,14/10/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3330,12/10/2018 22:12,14/09/2016 10:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3329,12/10/2018 22:12,9/08/2016 21:59,2.6,200, Information Exposure,nan
CVE-2016-3327,12/10/2018 22:12,9/08/2016 21:59,2.6,200, Information Exposure,nan
CVE-2016-3326,12/10/2018 22:12,9/08/2016 21:59,2.6,200, Information Exposure,nan
CVE-2016-3325,12/10/2018 22:12,14/09/2016 10:59,2.6,200, Information Exposure,nan
CVE-2016-3322,12/10/2018 22:12,9/08/2016 21:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3321,12/10/2018 22:12,9/08/2016 21:59,1.9,200, Information Exposure,nan
CVE-2016-3319,12/10/2018 22:12,9/08/2016 21:59,9.3,284, Improper Access Control,nan
CVE-2016-3317,12/10/2018 22:12,9/08/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3316,12/10/2018 22:12,9/08/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3315,12/10/2018 22:12,9/08/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3312,12/10/2018 22:12,9/08/2016 21:59,5.0,200, Information Exposure,nan
CVE-2016-3311,12/10/2018 22:12,9/08/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3310,12/10/2018 22:12,9/08/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3309,12/10/2018 22:12,9/08/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3308,12/10/2018 22:12,9/08/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3304,12/10/2018 22:12,9/08/2016 21:59,9.3,20, Improper Input Validation,nan
CVE-2016-3303,12/10/2018 22:12,9/08/2016 21:59,9.3,20, Improper Input Validation,nan
CVE-2016-3301,12/10/2018 22:12,9/08/2016 21:59,9.3,20, Improper Input Validation,nan
CVE-2016-3299,12/10/2018 22:12,9/08/2016 21:59,4.3,284, Improper Access Control,nan
CVE-2016-3298,12/10/2018 22:12,14/10/2016 2:59,2.6,200, Information Exposure,nan
CVE-2016-3296,12/10/2018 22:12,9/08/2016 21:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3295,12/10/2018 22:12,14/09/2016 10:59,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3294,12/10/2018 22:12,14/09/2016 10:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3293,12/10/2018 22:12,9/08/2016 21:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3292,12/10/2018 22:12,14/09/2016 10:59,5.1,20, Improper Input Validation,nan
CVE-2016-3291,12/10/2018 22:12,14/09/2016 10:59,2.6,200, Information Exposure,nan
CVE-2016-3290,12/10/2018 22:12,9/08/2016 21:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3289,12/10/2018 22:12,9/08/2016 21:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3288,12/10/2018 22:12,9/08/2016 21:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3287,12/10/2018 22:12,13/07/2016 1:59,2.1,254, 7PK – Security Features,nan
CVE-2016-3286,12/10/2018 22:12,13/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3284,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3283,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3282,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3281,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3280,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3279,12/10/2018 22:12,13/07/2016 1:59,4.3,254, 7PK – Security Features,nan
CVE-2016-3278,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3277,12/10/2018 22:12,13/07/2016 1:59,2.6,200, Information Exposure,nan
CVE-2016-3276,12/10/2018 22:12,13/07/2016 1:59,2.6,284, Improper Access Control,nan
CVE-2016-3274,12/10/2018 22:12,13/07/2016 1:59,2.6,284, Improper Access Control,nan
CVE-2016-3273,12/10/2018 22:12,13/07/2016 1:59,2.6,200, Information Exposure,nan
CVE-2016-3272,12/10/2018 22:12,13/07/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-3271,12/10/2018 22:12,13/07/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-3270,12/10/2018 22:12,14/10/2016 2:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3269,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3267,12/10/2018 22:12,14/10/2016 2:59,4.3,200, Information Exposure,nan
CVE-2016-3266,12/10/2018 22:12,14/10/2016 2:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3265,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3264,12/10/2018 22:12,13/07/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3263,12/10/2018 22:12,14/10/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-3262,12/10/2018 22:12,14/10/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-3261,12/10/2018 22:12,13/07/2016 1:59,2.6,200, Information Exposure,nan
CVE-2016-3260,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3259,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3258,12/10/2018 22:12,13/07/2016 1:59,1.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-3256,12/10/2018 22:12,13/07/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-3254,12/10/2018 22:12,13/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3252,12/10/2018 22:12,13/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3251,12/10/2018 22:12,13/07/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-3250,12/10/2018 22:12,13/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3249,12/10/2018 22:12,13/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3248,12/10/2018 22:12,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3246,12/10/2018 22:12,13/07/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3245,12/10/2018 22:12,13/07/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2016-3244,12/10/2018 22:12,13/07/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2016-3243,12/10/2018 22:12,13/07/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3242,12/10/2018 22:12,13/07/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3241,12/10/2018 22:12,13/07/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3240,12/10/2018 22:12,13/07/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3239,12/10/2018 22:12,13/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3238,12/10/2018 22:12,13/07/2016 1:59,9.3,254, 7PK – Security Features,nan
CVE-2016-3236,12/10/2018 22:12,16/06/2016 1:59,10.0,19, Data Processing Errors,nan
CVE-2016-3235,12/10/2018 22:12,16/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3234,12/10/2018 22:12,16/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-3233,12/10/2018 22:12,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3231,12/10/2018 22:12,16/06/2016 1:59,7.2,19, Data Processing Errors,nan
CVE-2016-3230,12/10/2018 22:12,16/06/2016 1:59,1.9,20, Improper Input Validation,nan
CVE-2016-3225,12/10/2018 22:12,16/06/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3223,12/10/2018 22:12,16/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3222,12/10/2018 22:12,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3221,12/10/2018 22:12,16/06/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3220,12/10/2018 22:12,16/06/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3219,12/10/2018 22:12,16/06/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3218,12/10/2018 22:12,16/06/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3216,12/10/2018 22:12,16/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-3214,12/10/2018 22:11,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3213,12/10/2018 22:11,16/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3212,12/10/2018 22:11,16/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3211,12/10/2018 22:11,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3210,12/10/2018 22:11,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3209,12/10/2018 22:11,14/10/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-3207,12/10/2018 22:11,16/06/2016 1:59,7.6,20, Improper Input Validation,nan
CVE-2016-3206,12/10/2018 22:11,16/06/2016 1:59,7.6,20, Improper Input Validation,nan
CVE-2016-3205,12/10/2018 22:11,16/06/2016 1:59,7.6,20, Improper Input Validation,nan
CVE-2016-3204,12/10/2018 22:11,13/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3203,12/10/2018 22:11,16/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-3202,12/10/2018 22:11,16/06/2016 1:59,7.6,20, Improper Input Validation,nan
CVE-2016-3201,12/10/2018 22:11,16/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-3199,12/10/2018 22:11,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3198,12/10/2018 22:11,16/06/2016 1:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1018,12/10/2018 22:11,9/04/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1012,12/10/2018 22:11,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1006,12/10/2018 22:11,9/04/2016 1:59,10.0,254, 7PK – Security Features,nan
CVE-2016-0200,12/10/2018 22:11,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0199,12/10/2018 22:11,16/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0198,12/10/2018 22:11,11/05/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0197,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0196,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0195,12/10/2018 22:11,11/05/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0194,12/10/2018 22:11,11/05/2016 1:59,2.6,200, Information Exposure,nan
CVE-2016-0193,12/10/2018 22:11,11/05/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0192,12/10/2018 22:11,11/05/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0191,12/10/2018 22:11,11/05/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0190,12/10/2018 22:11,11/05/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-0189,12/10/2018 22:11,11/05/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0188,12/10/2018 22:11,11/05/2016 1:59,9.3,284, Improper Access Control,nan
CVE-2016-0187,12/10/2018 22:11,11/05/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0186,12/10/2018 22:11,11/05/2016 1:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0185,12/10/2018 22:11,11/05/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-0183,12/10/2018 22:11,11/05/2016 1:59,9.3,284, Improper Access Control,nan
CVE-2016-0182,12/10/2018 22:11,11/05/2016 1:59,9.3,284, Improper Access Control,nan
CVE-2016-0181,12/10/2018 22:11,11/05/2016 1:59,2.1,254, 7PK – Security Features,nan
CVE-2016-0180,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0179,12/10/2018 22:11,11/05/2016 1:59,9.3,284, Improper Access Control,nan
CVE-2016-0178,12/10/2018 22:11,11/05/2016 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0176,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0175,12/10/2018 22:11,11/05/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-0174,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0173,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0171,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0170,12/10/2018 22:11,11/05/2016 1:59,9.3,284, Improper Access Control,nan
CVE-2016-0169,12/10/2018 22:11,11/05/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-0168,12/10/2018 22:11,11/05/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-0167,12/10/2018 22:11,12/04/2016 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0166,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0165,12/10/2018 22:11,12/04/2016 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0164,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0162,12/10/2018 22:11,12/04/2016 23:59,4.3,200, Information Exposure,nan
CVE-2016-0161,12/10/2018 22:11,12/04/2016 23:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0159,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0158,12/10/2018 22:11,12/04/2016 23:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0157,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0156,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0155,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0154,12/10/2018 22:11,12/04/2016 23:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0153,12/10/2018 22:11,12/04/2016 23:59,9.3,284, Improper Access Control,nan
CVE-2016-0152,12/10/2018 22:11,11/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0151,12/10/2018 22:11,12/04/2016 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0150,12/10/2018 22:11,12/04/2016 23:59,7.8,19, Data Processing Errors,nan
CVE-2016-0149,12/10/2018 22:11,11/05/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-0148,12/10/2018 22:11,12/04/2016 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0147,12/10/2018 22:11,12/04/2016 23:59,9.3,20, Improper Input Validation,nan
CVE-2016-0145,12/10/2018 22:11,12/04/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0143,12/10/2018 22:11,12/04/2016 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0142,12/10/2018 22:11,14/10/2016 2:59,9.3,284, Improper Access Control,nan
CVE-2016-0141,12/10/2018 22:11,14/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-0140,12/10/2018 22:11,11/05/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0139,12/10/2018 22:11,12/04/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0138,12/10/2018 22:11,14/09/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-0137,12/10/2018 22:11,14/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0136,12/10/2018 22:11,12/04/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0135,12/10/2018 22:11,12/04/2016 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0134,12/10/2018 22:11,9/03/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0133,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0132,12/10/2018 22:11,9/03/2016 11:59,10.0,20, Improper Input Validation,nan
CVE-2016-0130,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0129,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0127,12/10/2018 22:11,12/04/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0125,12/10/2018 22:11,9/03/2016 11:59,2.6,200, Information Exposure,nan
CVE-2016-0124,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0123,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0122,12/10/2018 22:11,12/04/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0121,12/10/2018 22:11,9/03/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-0120,12/10/2018 22:11,9/03/2016 11:59,7.1,20, Improper Input Validation,nan
CVE-2016-0118,12/10/2018 22:11,9/03/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-0117,12/10/2018 22:11,9/03/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-0116,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0114,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0113,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0112,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0111,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0110,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0109,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0108,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0107,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0106,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0105,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0104,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0103,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0102,12/10/2018 22:11,9/03/2016 11:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0101,12/10/2018 22:11,9/03/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-0100,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0099,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0098,12/10/2018 22:11,9/03/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-0096,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0095,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0094,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0093,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0092,12/10/2018 22:11,9/03/2016 11:59,9.3,20, Improper Input Validation,nan
CVE-2016-0091,12/10/2018 22:11,9/03/2016 11:59,6.8,20, Improper Input Validation,nan
CVE-2016-0090,12/10/2018 22:11,12/04/2016 23:59,2.1,200, Information Exposure,nan
CVE-2016-0089,12/10/2018 22:11,12/04/2016 23:59,2.1,200, Information Exposure,nan
CVE-2016-0088,12/10/2018 22:11,12/04/2016 23:59,7.2,284, Improper Access Control,nan
CVE-2016-0087,12/10/2018 22:11,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0084,12/10/2018 22:11,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0080,12/10/2018 22:10,10/02/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-0079,12/10/2018 22:10,14/10/2016 2:59,2.1,200, Information Exposure,nan
CVE-2016-0077,12/10/2018 22:10,10/02/2016 11:59,4.3,19, Data Processing Errors,nan
CVE-2016-0075,12/10/2018 22:10,14/10/2016 2:59,2.1,200, Information Exposure,nan
CVE-2016-0073,12/10/2018 22:10,14/10/2016 2:59,2.1,200, Information Exposure,nan
CVE-2016-0072,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0071,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0070,12/10/2018 22:10,14/10/2016 2:59,4.3,200, Information Exposure,nan
CVE-2016-0069,12/10/2018 22:10,18/02/2016 22:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0068,12/10/2018 22:10,18/02/2016 22:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0067,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0064,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0063,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0062,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0061,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0060,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0059,12/10/2018 22:10,10/02/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-0057,12/10/2018 22:10,9/03/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0056,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0055,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0054,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0053,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0052,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0051,12/10/2018 22:10,10/02/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0048,12/10/2018 22:10,10/02/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0047,12/10/2018 22:10,10/02/2016 11:59,5.0,200, Information Exposure,nan
CVE-2016-0040,12/10/2018 22:10,10/02/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0039,12/10/2018 22:10,10/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0035,12/10/2018 22:10,13/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0034,12/10/2018 22:10,13/01/2016 5:59,9.3,20, Improper Input Validation,nan
CVE-2016-0033,12/10/2018 22:10,10/02/2016 11:59,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-0028,12/10/2018 22:10,16/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-0026,12/10/2018 22:10,10/11/2016 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0025,12/10/2018 22:10,16/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-0024,12/10/2018 22:10,13/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0022,12/10/2018 22:10,10/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0021,12/10/2018 22:10,9/03/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0012,12/10/2018 22:10,13/01/2016 5:59,4.3,200, Information Exposure,nan
CVE-2016-0011,12/10/2018 22:10,13/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0010,12/10/2018 22:10,13/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0005,12/10/2018 22:10,13/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2016-0003,12/10/2018 22:10,13/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0002,12/10/2018 22:10,13/01/2016 5:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6177,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6176,12/10/2018 22:10,9/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6172,12/10/2018 22:10,9/12/2015 11:59,9.3,20, Improper Input Validation,nan
CVE-2015-6170,12/10/2018 22:10,9/12/2015 11:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6169,12/10/2018 22:10,9/12/2015 11:59,4.3,20, Improper Input Validation,nan
CVE-2015-6168,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6166,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6165,12/10/2018 22:10,9/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-6164,12/10/2018 22:10,9/12/2015 11:59,6.8,20, Improper Input Validation,nan
CVE-2015-6162,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6161,12/10/2018 22:10,9/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-6160,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6159,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6158,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6157,12/10/2018 22:10,9/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-6156,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6155,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6154,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6153,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6152,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6151,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6150,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6149,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6148,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6147,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6146,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6145,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6144,12/10/2018 22:10,9/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6143,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6142,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6141,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6140,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6139,12/10/2018 22:10,9/12/2015 11:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6138,12/10/2018 22:10,9/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6136,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6135,12/10/2018 22:10,9/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-6134,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6130,12/10/2018 22:10,9/12/2015 11:59,9.3,189, Numeric Errors,nan
CVE-2015-6128,12/10/2018 22:10,9/12/2015 11:59,7.2,20, Improper Input Validation,nan
CVE-2015-6123,12/10/2018 22:10,11/11/2015 12:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6122,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6118,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6117,12/10/2018 22:10,13/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6115,12/10/2018 22:10,11/11/2015 12:59,4.3,200, Information Exposure,nan
CVE-2015-6114,12/10/2018 22:10,9/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-6106,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6099,12/10/2018 22:10,11/11/2015 12:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6098,12/10/2018 22:10,11/11/2015 12:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6097,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6096,12/10/2018 22:10,11/11/2015 12:59,4.3,200, Information Exposure,nan
CVE-2015-6094,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6092,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6091,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6089,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6088,12/10/2018 22:10,11/11/2015 12:59,4.3,200, Information Exposure,nan
CVE-2015-6087,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6086,12/10/2018 22:10,11/11/2015 12:59,4.3,200, Information Exposure,nan
CVE-2015-6085,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6084,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6083,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6082,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6081,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6080,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6079,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6078,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6077,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6076,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6075,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6074,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6073,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6072,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6071,12/10/2018 22:10,11/11/2015 12:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6070,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6069,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6068,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6066,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6065,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6064,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6061,12/10/2018 22:10,11/11/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6059,12/10/2018 22:10,14/10/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-6058,12/10/2018 22:10,14/10/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6057,12/10/2018 22:10,14/10/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-6056,12/10/2018 22:10,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6055,12/10/2018 22:10,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6053,12/10/2018 22:10,14/10/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-6052,12/10/2018 22:10,14/10/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-6051,12/10/2018 22:10,14/10/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6050,12/10/2018 22:10,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6049,12/10/2018 22:10,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6048,12/10/2018 22:10,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6047,12/10/2018 22:10,14/10/2015 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6046,12/10/2018 22:10,14/10/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-6044,12/10/2018 22:10,14/10/2015 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6040,12/10/2018 22:10,9/12/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6039,12/10/2018 22:10,14/10/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6038,12/10/2018 22:10,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6037,12/10/2018 22:10,14/10/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2557,12/10/2018 22:10,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2556,12/10/2018 22:10,14/10/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-2545,12/10/2018 22:10,9/09/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2544,12/10/2018 22:10,9/09/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2543,12/10/2018 22:10,9/09/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2542,12/10/2018 22:10,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2541,12/10/2018 22:10,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2536,12/10/2018 22:10,9/09/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2532,12/10/2018 22:09,9/09/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2531,12/10/2018 22:09,9/09/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2526,12/10/2018 22:09,9/09/2015 0:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-2523,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2522,12/10/2018 22:09,9/09/2015 0:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2521,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2520,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2510,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2508,12/10/2018 22:09,9/09/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2505,12/10/2018 22:09,9/09/2015 0:59,5.0,200, Information Exposure,nan
CVE-2015-2504,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2503,12/10/2018 22:09,11/11/2015 11:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2502,12/10/2018 22:09,19/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2501,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2500,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2499,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2498,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2494,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2493,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2492,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2491,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2490,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2489,12/10/2018 22:09,9/09/2015 0:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2487,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2486,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2485,12/10/2018 22:09,9/09/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2484,12/10/2018 22:09,9/09/2015 0:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-2483,12/10/2018 22:09,9/09/2015 0:59,5.0,200, Information Exposure,nan
CVE-2015-2482,12/10/2018 22:09,14/10/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2481,12/10/2018 22:09,15/08/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2480,12/10/2018 22:09,15/08/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2479,12/10/2018 22:09,15/08/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2477,12/10/2018 22:09,15/08/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2475,12/10/2018 22:09,15/08/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2474,12/10/2018 22:09,15/08/2015 0:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2471,12/10/2018 22:09,15/08/2015 0:59,4.3,310, Cryptographic Issues,nan
CVE-2015-2469,12/10/2018 22:09,15/08/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2468,12/10/2018 22:09,15/08/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2467,12/10/2018 22:09,15/08/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2452,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2451,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2450,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2449,12/10/2018 22:09,14/08/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-2448,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2447,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2446,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2445,12/10/2018 22:09,14/08/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-2444,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2443,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2442,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2441,12/10/2018 22:09,14/08/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2440,12/10/2018 22:09,15/08/2015 0:59,4.3,200, Information Exposure,nan
CVE-2015-2434,12/10/2018 22:09,15/08/2015 0:59,4.3,310, Cryptographic Issues,nan
CVE-2015-2431,12/10/2018 22:09,15/08/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-2427,12/10/2018 22:09,11/11/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2425,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2424,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2422,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2421,12/10/2018 22:09,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-2419,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2415,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2414,12/10/2018 22:09,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-2413,12/10/2018 22:09,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-2412,12/10/2018 22:09,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-2411,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2410,12/10/2018 22:09,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-2408,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2406,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2404,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2403,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2402,12/10/2018 22:09,14/07/2015 21:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-2401,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2398,12/10/2018 22:09,14/07/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2397,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2391,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2390,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2389,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2388,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2385,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2384,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2383,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2380,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2379,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2377,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2376,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2375,12/10/2018 22:09,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-2373,12/10/2018 22:09,14/07/2015 21:59,10.0,19, Data Processing Errors,nan
CVE-2015-2372,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2363,12/10/2018 22:09,14/07/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2359,12/10/2018 22:09,10/06/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1771,12/10/2018 22:09,10/06/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1770,12/10/2018 22:09,10/06/2015 1:59,9.3,19, Data Processing Errors,nan
CVE-2015-1768,12/10/2018 22:09,10/06/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1767,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1766,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1765,12/10/2018 22:09,10/06/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-1763,12/10/2018 22:09,14/07/2015 23:59,8.5,284, Improper Access Control,nan
CVE-2015-1762,12/10/2018 22:09,14/07/2015 23:59,7.1,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-1761,12/10/2018 22:09,14/07/2015 23:59,6.5,284, Improper Access Control,nan
CVE-2015-1759,12/10/2018 22:09,10/06/2015 1:59,9.3,19, Data Processing Errors,nan
CVE-2015-1757,12/10/2018 22:09,10/06/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1755,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1754,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1753,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1752,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1751,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1750,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1748,12/10/2018 22:09,10/06/2015 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1747,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1745,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1744,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1743,12/10/2018 22:09,10/06/2015 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1742,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1741,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1740,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1739,12/10/2018 22:09,10/06/2015 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1738,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1737,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1736,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1735,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1733,12/10/2018 22:09,14/07/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1732,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1731,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1730,12/10/2018 22:09,10/06/2015 1:59,9.3,399, Resource Management Errors,nan
CVE-2015-1729,12/10/2018 22:08,14/07/2015 21:59,4.3,200, Information Exposure,nan
CVE-2015-1728,12/10/2018 22:08,10/06/2015 1:59,9.3,17, DEPRECATED: Code,nan
CVE-2015-1718,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1717,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1715,12/10/2018 22:08,13/05/2015 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1714,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1713,12/10/2018 22:08,13/05/2015 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1712,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1711,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1710,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1709,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1708,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1706,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1705,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1704,12/10/2018 22:08,13/05/2015 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1703,12/10/2018 22:08,13/05/2015 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1701,12/10/2018 22:08,21/04/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1700,12/10/2018 22:08,13/05/2015 10:59,6.0,20, Improper Input Validation,nan
CVE-2015-1694,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1692,12/10/2018 22:08,13/05/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-1691,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1689,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1688,12/10/2018 22:08,13/05/2015 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1687,12/10/2018 22:08,10/06/2015 1:59,9.3,19, Data Processing Errors,nan
CVE-2015-1686,12/10/2018 22:08,13/05/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-1685,12/10/2018 22:08,13/05/2015 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1684,12/10/2018 22:08,13/05/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-1683,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1682,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1673,12/10/2018 22:08,13/05/2015 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1672,12/10/2018 22:08,13/05/2015 10:59,5.0,310, Cryptographic Issues,nan
CVE-2015-1671,12/10/2018 22:08,13/05/2015 10:59,9.3,19, Data Processing Errors,nan
CVE-2015-1670,12/10/2018 22:08,13/05/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-1668,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1667,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1666,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1665,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1662,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1661,12/10/2018 22:08,14/04/2015 20:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1660,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1658,12/10/2018 22:08,13/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1657,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1653,12/10/2018 22:08,14/04/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1652,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1648,12/10/2018 22:08,14/04/2015 20:59,2.6,19, Data Processing Errors,nan
CVE-2015-1646,12/10/2018 22:08,14/04/2015 20:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1645,12/10/2018 22:08,14/04/2015 20:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1642,12/10/2018 22:08,15/08/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1641,12/10/2018 22:08,14/04/2015 20:59,9.3,399, Resource Management Errors,nan
CVE-2015-1640,12/10/2018 22:08,14/04/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1639,12/10/2018 22:08,14/04/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1636,12/10/2018 22:08,11/03/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1634,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-1633,12/10/2018 22:08,11/03/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1632,12/10/2018 22:08,11/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1631,12/10/2018 22:08,11/03/2015 10:59,5.0,284, Improper Access Control,nan
CVE-2015-1630,12/10/2018 22:08,11/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1629,12/10/2018 22:08,11/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1628,12/10/2018 22:08,11/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1627,12/10/2018 22:08,11/03/2015 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1626,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-1625,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-1624,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-1623,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-1622,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-0100,12/10/2018 22:08,11/03/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0099,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-0097,12/10/2018 22:08,11/03/2015 10:59,9.3,19, Data Processing Errors,nan
CVE-2015-0086,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-0075,12/10/2018 22:08,11/03/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0072,12/10/2018 22:08,7/02/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0071,12/10/2018 22:08,11/02/2015 3:01,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0070,12/10/2018 22:08,11/02/2015 3:01,4.3,200, Information Exposure,nan
CVE-2015-0069,12/10/2018 22:08,11/02/2015 3:01,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0068,12/10/2018 22:08,11/02/2015 3:01,9.3,399, Resource Management Errors,nan
CVE-2015-0067,12/10/2018 22:08,11/02/2015 3:01,9.3,399, Resource Management Errors,nan
CVE-2015-0066,12/10/2018 22:08,11/02/2015 3:01,9.3,399, Resource Management Errors,nan
CVE-2015-0065,12/10/2018 22:08,11/02/2015 3:01,9.3,399, Resource Management Errors,nan
CVE-2015-0064,12/10/2018 22:08,11/02/2015 3:01,9.3,399, Resource Management Errors,nan
CVE-2015-0063,12/10/2018 22:08,11/02/2015 3:01,9.3,399, Resource Management Errors,nan
CVE-2015-0056,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-0055,12/10/2018 22:08,11/02/2015 3:01,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0054,12/10/2018 22:08,11/02/2015 3:01,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0053,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0052,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0051,12/10/2018 22:08,11/02/2015 3:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0050,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0049,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0048,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0046,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0045,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0044,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0043,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0042,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0041,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0040,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0039,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0038,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0037,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0036,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0035,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0032,12/10/2018 22:08,11/03/2015 10:59,9.3,399, Resource Management Errors,nan
CVE-2015-0031,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0030,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0029,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0028,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0027,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0026,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0025,12/10/2018 22:08,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0023,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0022,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0021,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0020,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0019,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0018,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0017,12/10/2018 22:07,11/02/2015 3:00,9.3,399, Resource Management Errors,nan
CVE-2015-0016,12/10/2018 22:07,13/01/2015 22:59,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0015,12/10/2018 22:07,13/01/2015 22:59,7.8,399, Resource Management Errors,nan
CVE-2015-0014,12/10/2018 22:07,13/01/2015 22:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0011,12/10/2018 22:07,13/01/2015 22:59,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2015-0006,12/10/2018 22:07,13/01/2015 22:59,6.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-0004,12/10/2018 22:07,13/01/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0002,12/10/2018 22:07,13/01/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0001,12/10/2018 22:07,13/01/2015 22:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-8966,12/10/2018 22:07,11/12/2014 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6376,12/10/2018 22:07,11/12/2014 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6375,12/10/2018 22:07,11/12/2014 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6374,12/10/2018 22:07,11/12/2014 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6373,12/10/2018 22:07,11/12/2014 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6369,12/10/2018 22:07,11/12/2014 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6368,12/10/2018 22:07,11/12/2014 0:59,4.3,20, Improper Input Validation,nan
CVE-2014-6366,12/10/2018 22:07,11/12/2014 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6365,12/10/2018 22:07,11/12/2014 0:59,4.3,20, Improper Input Validation,nan
CVE-2014-6363,12/10/2018 22:07,11/12/2014 0:59,9.3,399, Resource Management Errors,nan
CVE-2014-6361,12/10/2018 22:07,11/12/2014 0:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6360,12/10/2018 22:07,11/12/2014 0:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6356,12/10/2018 22:07,11/12/2014 0:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6355,12/10/2018 22:07,11/12/2014 0:59,5.0,200, Information Exposure,nan
CVE-2014-6354,12/10/2018 22:07,27/06/2017 20:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6353,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6352,12/10/2018 22:07,22/10/2014 14:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6351,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6350,12/10/2018 22:07,11/11/2014 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-6349,12/10/2018 22:07,11/11/2014 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-6348,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6347,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6346,12/10/2018 22:07,11/11/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-6345,12/10/2018 22:07,11/11/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-6344,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6343,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6342,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6341,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6340,12/10/2018 22:07,11/11/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-6339,12/10/2018 22:07,11/11/2014 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6337,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-6336,12/10/2018 22:07,11/12/2014 0:59,3.5,20, Improper Input Validation,nan
CVE-2014-6335,12/10/2018 22:07,11/11/2014 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6334,12/10/2018 22:07,11/11/2014 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6333,12/10/2018 22:07,11/11/2014 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6331,12/10/2018 22:07,11/11/2014 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6330,12/10/2018 22:07,11/12/2014 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6329,12/10/2018 22:07,11/12/2014 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6328,12/10/2018 22:07,11/12/2014 0:59,5.0,20, Improper Input Validation,nan
CVE-2014-6327,12/10/2018 22:07,11/12/2014 0:59,9.3,20, Improper Input Validation,nan
CVE-2014-6326,12/10/2018 22:07,11/12/2014 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6325,12/10/2018 22:07,11/12/2014 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6324,12/10/2018 22:07,18/11/2014 23:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6323,12/10/2018 22:07,11/11/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-6319,12/10/2018 22:07,11/12/2014 0:59,5.0,284, Improper Access Control,nan
CVE-2014-4971,12/10/2018 22:07,26/07/2014 15:55,7.2,20, Improper Input Validation,nan
CVE-2014-4149,12/10/2018 22:07,11/11/2014 22:55,9.3,20, Improper Input Validation,nan
CVE-2014-4148,12/10/2018 22:07,15/10/2014 10:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4143,12/10/2018 22:07,11/11/2014 22:55,9.3,399, Resource Management Errors,nan
CVE-2014-4141,12/10/2018 22:07,15/10/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4140,12/10/2018 22:07,15/10/2014 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4138,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4137,12/10/2018 22:07,15/10/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4134,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4133,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4132,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4130,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4129,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4128,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4127,12/10/2018 22:07,15/10/2014 10:55,9.3,399, Resource Management Errors,nan
CVE-2014-4126,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4124,12/10/2018 22:07,15/10/2014 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-4123,12/10/2018 22:07,15/10/2014 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-4122,12/10/2018 22:07,15/10/2014 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4121,12/10/2018 22:07,15/10/2014 10:55,10.0,399, Resource Management Errors,nan
CVE-2014-4117,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4116,12/10/2018 22:07,11/11/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4115,12/10/2018 22:07,15/10/2014 10:55,7.2,399, Resource Management Errors,nan
CVE-2014-4114,12/10/2018 22:07,15/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4113,12/10/2018 22:07,15/10/2014 10:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-4111,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4110,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4109,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4108,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4107,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4106,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4105,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4104,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4103,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4102,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4101,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4100,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4099,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4098,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4097,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4096,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4095,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4094,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4093,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4092,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4091,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4090,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4089,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4088,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4087,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4086,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4085,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4084,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4083,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4082,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4081,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4080,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4079,12/10/2018 22:07,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4078,12/10/2018 22:07,11/11/2014 22:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4077,12/10/2018 22:07,11/11/2014 22:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4076,12/10/2018 22:07,11/11/2014 22:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-4075,12/10/2018 22:07,15/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4073,12/10/2018 22:06,15/10/2014 10:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4072,12/10/2018 22:06,10/09/2014 1:55,5.0,399, Resource Management Errors,nan
CVE-2014-4070,12/10/2018 22:06,10/09/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4068,12/10/2018 22:06,10/09/2014 1:55,5.0,20, Improper Input Validation,nan
CVE-2014-4067,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4065,12/10/2018 22:06,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4063,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4062,12/10/2018 22:06,12/08/2014 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4061,12/10/2018 22:06,12/08/2014 21:55,6.8,399, Resource Management Errors,nan
CVE-2014-4059,12/10/2018 22:06,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4058,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4057,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4056,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4055,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4052,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4051,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4050,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2827,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2826,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2825,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2824,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2823,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2822,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2821,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2820,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2819,12/10/2018 22:06,12/08/2014 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2818,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2817,12/10/2018 22:06,12/08/2014 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2816,12/10/2018 22:06,12/08/2014 21:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-2815,12/10/2018 22:06,12/08/2014 21:55,9.3,20, Improper Input Validation,nan
CVE-2014-2813,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2811,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2810,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2809,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2808,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2807,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2806,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2804,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2803,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2802,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2801,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2800,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2799,12/10/2018 22:06,10/09/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2798,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2797,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2796,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2795,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2794,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2792,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2791,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2790,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2789,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2788,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2787,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2786,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2785,12/10/2018 22:06,8/07/2014 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2784,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2783,12/10/2018 22:06,8/07/2014 22:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-2782,12/10/2018 22:06,19/06/2014 10:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2778,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2777,12/10/2018 22:06,11/06/2014 4:56,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2776,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2775,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2774,12/10/2018 22:06,12/08/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2773,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2772,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2771,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2770,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2769,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2768,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2767,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2766,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2765,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2764,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2763,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2761,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2760,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2759,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2758,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2757,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2756,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2755,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2754,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2753,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1824,12/10/2018 22:06,8/07/2014 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1823,12/10/2018 22:06,11/06/2014 4:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1820,12/10/2018 22:06,12/08/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1816,12/10/2018 22:06,11/06/2014 4:56,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1815,12/10/2018 22:06,14/05/2014 11:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1813,12/10/2018 22:06,14/05/2014 11:13,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1806,12/10/2018 22:06,14/05/2014 11:13,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1805,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1804,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1803,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1802,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1800,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1799,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1797,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1796,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1795,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1794,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1792,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1791,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1790,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1789,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1788,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1786,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1785,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1784,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1783,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1782,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1781,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1780,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1779,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1778,12/10/2018 22:06,11/06/2014 4:56,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1777,12/10/2018 22:06,11/06/2014 4:56,4.3,200, Information Exposure,nan
CVE-2014-1776,12/10/2018 22:06,27/04/2014 10:55,10.0,416, Use After Free,nan
CVE-2014-1775,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1774,12/10/2018 22:06,11/06/2014 4:56,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1773,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1772,12/10/2018 22:06,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1771,12/10/2018 22:06,11/06/2014 4:56,6.8,310, Cryptographic Issues,nan
CVE-2014-1770,12/10/2018 22:06,22/05/2014 11:14,9.3,399, Resource Management Errors,nan
CVE-2014-1769,12/10/2018 22:06,11/06/2014 4:56,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1767,12/10/2018 22:06,8/07/2014 22:55,7.2,415, Double Free,nan
CVE-2014-1765,12/10/2018 22:05,27/04/2014 10:55,7.6,399, Resource Management Errors,nan
CVE-2014-1764,12/10/2018 22:05,27/04/2014 10:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1763,12/10/2018 22:05,27/04/2014 10:55,10.0,399, Resource Management Errors,nan
CVE-2014-1760,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1758,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1757,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1755,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1754,12/10/2018 22:05,14/05/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1753,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1752,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1751,12/10/2018 22:05,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0324,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0322,12/10/2018 22:05,14/02/2014 16:55,9.3,416, Use After Free,nan
CVE-2014-0321,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0319,12/10/2018 22:05,12/03/2014 5:15,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-0314,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0313,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0312,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0311,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0310,12/10/2018 22:05,14/05/2014 11:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0309,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0308,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0307,12/10/2018 22:05,12/03/2014 5:15,9.3,416, Use After Free,nan
CVE-2014-0306,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0305,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0304,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0303,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0302,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0299,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0298,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0297,12/10/2018 22:05,12/03/2014 5:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0295,12/10/2018 22:05,12/02/2014 4:50,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0294,12/10/2018 22:05,12/02/2014 4:50,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0293,12/10/2018 22:05,12/02/2014 4:50,4.3,200, Information Exposure,nan
CVE-2014-0290,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0289,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0288,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0287,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0286,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0285,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0284,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0283,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0282,12/10/2018 22:05,11/06/2014 4:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0281,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0280,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0279,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0278,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0277,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0276,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0275,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0274,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0273,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0272,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0271,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0270,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0269,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0268,12/10/2018 22:05,12/02/2014 4:50,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0267,12/10/2018 22:05,12/02/2014 4:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0262,12/10/2018 22:05,15/01/2014 16:13,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-0261,12/10/2018 22:05,15/01/2014 16:13,4.0,20, Improper Input Validation,nan
CVE-2014-0259,12/10/2018 22:05,15/01/2014 16:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0258,12/10/2018 22:05,15/01/2014 16:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0257,12/10/2018 22:05,12/02/2014 4:50,9.3,20, Improper Input Validation,nan
CVE-2014-0256,12/10/2018 22:05,14/05/2014 11:13,5.0,20, Improper Input Validation,nan
CVE-2014-0254,12/10/2018 22:05,12/02/2014 4:50,7.8,20, Improper Input Validation,nan
CVE-2014-0253,12/10/2018 22:05,12/02/2014 4:50,5.0,20, Improper Input Validation,nan
CVE-2014-0251,12/10/2018 22:05,14/05/2014 11:13,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5065,12/10/2018 22:05,28/11/2013 0:55,7.2,20, Improper Input Validation,nan
CVE-2013-5059,12/10/2018 22:05,11/12/2013 0:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5057,12/10/2018 22:05,11/12/2013 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5054,12/10/2018 22:05,11/12/2013 0:55,4.3,200, Information Exposure,nan
CVE-2013-5052,12/10/2018 22:05,11/12/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5051,12/10/2018 22:05,11/12/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5049,12/10/2018 22:05,11/12/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5048,12/10/2018 22:05,11/12/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5047,12/10/2018 22:05,11/12/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5046,12/10/2018 22:05,11/12/2013 0:55,6.2,20, Improper Input Validation,nan
CVE-2013-5045,12/10/2018 22:05,11/12/2013 0:55,6.2,20, Improper Input Validation,nan
CVE-2013-5042,12/10/2018 22:05,11/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4015,12/10/2018 22:05,26/07/2013 12:05,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-3917,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3916,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3915,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3914,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3912,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3911,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3910,12/10/2018 22:05,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3909,12/10/2018 22:05,13/11/2013 0:55,4.3,200, Information Exposure,nan
CVE-2013-3908,12/10/2018 22:05,13/11/2013 0:55,4.3,200, Information Exposure,nan
CVE-2013-3907,12/10/2018 22:05,11/12/2013 0:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3906,12/10/2018 22:05,6/11/2013 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3905,12/10/2018 22:05,13/11/2013 0:55,5.0,200, Information Exposure,nan
CVE-2013-3902,12/10/2018 22:05,11/12/2013 0:55,7.2,399, Resource Management Errors,nan
CVE-2013-3898,12/10/2018 22:05,13/11/2013 0:55,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-3897,12/10/2018 22:05,9/10/2013 14:54,9.3,399, Resource Management Errors,nan
CVE-2013-3896,12/10/2018 22:05,9/10/2013 14:53,4.3,20, Improper Input Validation,nan
CVE-2013-3895,12/10/2018 22:05,9/10/2013 14:53,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-3893,12/10/2018 22:05,18/09/2013 10:08,9.3,399, Resource Management Errors,nan
CVE-2013-3892,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3891,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3890,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3889,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3888,12/10/2018 22:05,9/10/2013 14:53,7.2,399, Resource Management Errors,nan
CVE-2013-3886,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3885,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3882,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3881,12/10/2018 22:05,9/10/2013 14:53,7.2,399, Resource Management Errors,nan
CVE-2013-3880,12/10/2018 22:05,9/10/2013 14:53,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3875,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3874,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3873,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3872,12/10/2018 22:05,9/10/2013 14:53,9.3,20, Improper Input Validation,nan
CVE-2013-3871,12/10/2018 22:05,9/10/2013 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3870,12/10/2018 22:05,11/09/2013 14:03,9.3,399, Resource Management Errors,nan
CVE-2013-3868,12/10/2018 22:05,11/09/2013 14:03,5.0,20, Improper Input Validation,nan
CVE-2013-3866,12/10/2018 22:05,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3865,12/10/2018 22:05,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3864,12/10/2018 22:05,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3862,12/10/2018 22:05,11/09/2013 14:03,6.9,399, Resource Management Errors,nan
CVE-2013-3861,12/10/2018 22:05,9/10/2013 14:53,7.8,20, Improper Input Validation,nan
CVE-2013-3860,12/10/2018 22:05,9/10/2013 14:53,7.8,20, Improper Input Validation,nan
CVE-2013-3859,12/10/2018 22:05,11/09/2013 14:03,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-3858,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3857,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3856,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3855,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3854,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3853,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3852,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3851,12/10/2018 22:05,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3850,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3849,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3848,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3847,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3846,12/10/2018 22:04,29/12/2013 4:25,9.3,399, Resource Management Errors,nan
CVE-2013-3845,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3660,12/10/2018 22:04,24/05/2013 20:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3209,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3208,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3207,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3206,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3205,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3204,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3203,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3202,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3201,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3199,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3198,12/10/2018 22:04,14/08/2013 11:10,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3197,12/10/2018 22:04,14/08/2013 11:10,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3196,12/10/2018 22:04,14/08/2013 11:10,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3194,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3193,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3192,12/10/2018 22:04,14/08/2013 11:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3191,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3190,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3189,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3188,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3187,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3186,12/10/2018 22:04,14/08/2013 11:10,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-3185,12/10/2018 22:04,14/08/2013 11:10,5.0,200, Information Exposure,nan
CVE-2013-3184,12/10/2018 22:04,14/08/2013 11:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3183,12/10/2018 22:04,14/08/2013 11:10,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3182,12/10/2018 22:04,14/08/2013 11:10,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3180,12/10/2018 22:04,11/09/2013 14:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3179,12/10/2018 22:04,11/09/2013 14:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3178,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3171,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3166,12/10/2018 22:04,10/07/2013 3:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3164,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3163,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3162,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3161,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3160,12/10/2018 22:04,11/09/2013 14:03,5.0,200, Information Exposure,nan
CVE-2013-3159,12/10/2018 22:04,11/09/2013 14:03,4.3,20, Improper Input Validation,nan
CVE-2013-3158,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3157,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3156,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3155,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3153,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3152,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3151,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3150,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3149,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3148,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3147,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3146,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3145,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3144,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3143,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3142,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3141,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3140,12/10/2018 22:04,16/12/2013 15:14,9.3,399, Resource Management Errors,nan
CVE-2013-3139,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3138,12/10/2018 22:04,12/06/2013 3:30,7.1,189, Numeric Errors,nan
CVE-2013-3137,12/10/2018 22:04,11/09/2013 14:03,4.3,200, Information Exposure,nan
CVE-2013-3136,12/10/2018 22:04,12/06/2013 3:30,4.4,399, Resource Management Errors,nan
CVE-2013-3134,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3133,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3132,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3131,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3127,12/10/2018 22:04,10/07/2013 3:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3126,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3125,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3124,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3123,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3122,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3121,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3120,12/10/2018 22:04,12/06/2013 3:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3119,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3118,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3117,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3116,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3115,12/10/2018 22:04,10/07/2013 3:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3114,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3113,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3112,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3111,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3110,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2551,12/10/2018 22:04,11/03/2013 10:55,9.3,416, Use After Free,nan
CVE-2013-1344,12/10/2018 22:04,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1343,12/10/2018 22:04,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1342,12/10/2018 22:04,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1341,12/10/2018 22:04,11/09/2013 14:03,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1339,12/10/2018 22:04,12/06/2013 3:29,9.0,399, Resource Management Errors,nan
CVE-2013-1338,12/10/2018 22:04,2/05/2013 3:31,9.3,399, Resource Management Errors,nan
CVE-2013-1337,12/10/2018 22:04,15/05/2013 3:36,7.5,287, Improper Authentication,nan
CVE-2013-1336,12/10/2018 22:04,15/05/2013 3:36,5.0,20, Improper Input Validation,nan
CVE-2013-1335,12/10/2018 22:04,15/05/2013 3:36,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1333,12/10/2018 22:04,15/05/2013 3:36,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1332,12/10/2018 22:04,15/05/2013 3:36,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1331,12/10/2018 22:04,12/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1330,12/10/2018 22:04,11/09/2013 14:03,10.0,20, Improper Input Validation,nan
CVE-2013-1329,12/10/2018 22:04,15/05/2013 3:36,9.3,189, Numeric Errors,nan
CVE-2013-1327,12/10/2018 22:04,15/05/2013 3:36,9.3,189, Numeric Errors,nan
CVE-2013-1325,12/10/2018 22:04,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1324,12/10/2018 22:04,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1323,12/10/2018 22:04,15/05/2013 3:36,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1321,12/10/2018 22:04,15/05/2013 3:36,9.3,20, Improper Input Validation,nan
CVE-2013-1320,12/10/2018 22:04,15/05/2013 3:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1318,12/10/2018 22:04,15/05/2013 3:36,10.0,20, Improper Input Validation,nan
CVE-2013-1317,12/10/2018 22:04,15/05/2013 3:36,9.3,190, Integer Overflow or Wraparound,nan
CVE-2013-1316,12/10/2018 22:04,15/05/2013 3:36,9.3,20, Improper Input Validation,nan
CVE-2013-1315,12/10/2018 22:04,11/09/2013 14:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1313,12/10/2018 22:04,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-1312,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1311,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1310,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1309,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1308,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1307,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1306,12/10/2018 22:04,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-1305,12/10/2018 22:04,15/05/2013 3:36,7.8,399, Resource Management Errors,nan
CVE-2013-1304,12/10/2018 22:04,9/04/2013 22:55,9.3,399, Resource Management Errors,nan
CVE-2013-1303,12/10/2018 22:04,9/04/2013 22:55,9.3,399, Resource Management Errors,nan
CVE-2013-1302,12/10/2018 22:04,15/05/2013 3:36,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1301,12/10/2018 22:04,15/05/2013 3:36,4.3,200, Information Exposure,nan
CVE-2013-1297,12/10/2018 22:04,15/05/2013 3:36,4.3,200, Information Exposure,nan
CVE-2013-1296,12/10/2018 22:04,9/04/2013 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1292,12/10/2018 22:04,9/04/2013 22:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1291,12/10/2018 22:04,9/04/2013 22:55,7.1,20, Improper Input Validation,nan
CVE-2013-1290,12/10/2018 22:04,9/04/2013 22:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1289,12/10/2018 22:04,9/04/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1284,12/10/2018 22:04,9/04/2013 22:55,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1282,12/10/2018 22:04,9/04/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-1281,12/10/2018 22:04,13/02/2013 12:04,7.1,399, Resource Management Errors,nan
CVE-2013-0811,12/10/2018 22:03,15/05/2013 3:36,9.3,416, Use After Free,nan
CVE-2013-0096,12/10/2018 22:03,15/05/2013 3:36,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0095,12/10/2018 22:03,13/03/2013 0:55,5.0,200, Information Exposure,nan
CVE-2013-0086,12/10/2018 22:03,13/03/2013 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0085,12/10/2018 22:03,13/03/2013 0:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0084,12/10/2018 22:03,13/03/2013 0:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0083,12/10/2018 22:03,13/03/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0082,12/10/2018 22:03,13/11/2013 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0081,12/10/2018 22:03,11/09/2013 14:03,5.0,20, Improper Input Validation,nan
CVE-2013-0080,12/10/2018 22:03,13/03/2013 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0078,12/10/2018 22:03,9/04/2013 22:55,7.2,20, Improper Input Validation,nan
CVE-2013-0076,12/10/2018 22:03,13/02/2013 12:04,7.2,399, Resource Management Errors,nan
CVE-2013-0028,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0027,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0026,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0025,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0023,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0022,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0021,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0020,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0018,12/10/2018 22:03,13/02/2013 12:04,9.3,399, Resource Management Errors,nan
CVE-2013-0015,12/10/2018 22:03,13/02/2013 12:04,4.3,200, Information Exposure,nan
CVE-2013-0013,12/10/2018 22:03,9/01/2013 18:09,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0011,12/10/2018 22:03,9/01/2013 18:09,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0010,12/10/2018 22:03,9/01/2013 18:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0009,12/10/2018 22:03,9/01/2013 18:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0008,12/10/2018 22:03,9/01/2013 18:09,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-4787,12/10/2018 22:03,12/12/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-4786,12/10/2018 22:03,12/12/2012 0:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4782,12/10/2018 22:03,12/12/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-4781,12/10/2018 22:03,12/12/2012 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4775,12/10/2018 22:03,14/11/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-2557,12/10/2018 22:03,21/09/2012 21:55,9.3,399, Resource Management Errors,nan
CVE-2012-2552,12/10/2018 22:03,9/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2550,12/10/2018 22:03,9/10/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2549,12/10/2018 22:03,12/12/2012 0:55,5.8,20, Improper Input Validation,nan
CVE-2012-2548,12/10/2018 22:03,21/09/2012 21:55,9.3,399, Resource Management Errors,nan
CVE-2012-2546,12/10/2018 22:03,21/09/2012 21:55,9.3,399, Resource Management Errors,nan
CVE-2012-2543,12/10/2018 22:03,14/11/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2539,12/10/2018 22:03,12/12/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-2536,12/10/2018 22:03,11/09/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2532,12/10/2018 22:03,14/11/2012 0:55,5.0,200, Information Exposure,nan
CVE-2012-2528,12/10/2018 22:03,9/10/2012 21:55,9.3,399, Resource Management Errors,nan
CVE-2012-2526,12/10/2018 22:03,15/08/2012 1:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2524,12/10/2018 22:03,15/08/2012 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2523,12/10/2018 22:03,15/08/2012 1:55,9.3,189, Numeric Errors,nan
CVE-2012-2522,12/10/2018 22:03,15/08/2012 1:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2521,12/10/2018 22:03,15/08/2012 1:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2520,12/10/2018 22:03,9/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1894,12/10/2018 22:03,10/07/2012 21:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1892,12/10/2018 22:02,11/09/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1888,12/10/2018 22:02,15/08/2012 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1887,12/10/2018 22:02,14/11/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-1886,12/10/2018 22:02,14/11/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1885,12/10/2018 22:02,14/11/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1868,12/10/2018 22:02,12/06/2012 22:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-1863,12/10/2018 22:02,10/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1862,12/10/2018 22:02,10/07/2012 21:55,6.8,20, Improper Input Validation,nan
CVE-2012-1861,12/10/2018 22:02,10/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1860,12/10/2018 22:02,10/07/2012 21:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1859,12/10/2018 22:02,10/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1857,12/10/2018 22:02,12/06/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1853,12/10/2018 22:02,15/08/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1852,12/10/2018 22:02,15/08/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1847,12/10/2018 22:02,9/05/2012 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1539,12/10/2018 22:02,14/11/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-1538,12/10/2018 22:02,14/11/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-1537,12/10/2018 22:02,12/12/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1529,12/10/2018 22:02,21/09/2012 21:55,9.3,399, Resource Management Errors,nan
CVE-2012-1526,12/10/2018 22:02,15/08/2012 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1515,12/10/2018 22:02,2/04/2012 10:46,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0185,12/10/2018 22:02,9/05/2012 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0184,12/10/2018 22:02,9/05/2012 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0182,12/10/2018 22:02,9/10/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0181,12/10/2018 22:02,9/05/2012 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0179,12/10/2018 22:02,9/05/2012 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0177,12/10/2018 22:02,10/04/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0176,12/10/2018 22:02,9/05/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-0174,12/10/2018 22:02,9/05/2012 0:55,1.7,264, Permissions Privileges and Access Controls,nan
CVE-2012-0172,12/10/2018 22:02,10/04/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0171,12/10/2018 22:02,10/04/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0170,12/10/2018 22:02,10/04/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0169,12/10/2018 22:02,10/04/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0168,12/10/2018 22:02,10/04/2012 21:55,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0167,12/10/2018 22:02,9/05/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0165,12/10/2018 22:02,9/05/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0163,12/10/2018 22:02,10/04/2012 21:55,9.3,20, Improper Input Validation,nan
CVE-2012-0162,12/10/2018 22:02,9/05/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0161,12/10/2018 22:02,9/05/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0160,12/10/2018 22:02,9/05/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0159,12/10/2018 22:02,9/05/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-0158,12/10/2018 22:02,10/04/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0156,12/10/2018 22:02,13/03/2012 21:55,4.3,20, Improper Input Validation,nan
CVE-2012-0155,12/10/2018 22:02,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0152,12/10/2018 22:02,13/03/2012 21:55,4.3,20, Improper Input Validation,nan
CVE-2012-0150,12/10/2018 22:02,14/02/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0147,12/10/2018 22:02,10/04/2012 21:55,5.0,16, Configuration,nan
CVE-2012-0146,12/10/2018 22:02,10/04/2012 21:55,5.8,20, Improper Input Validation,nan
CVE-2012-0145,12/10/2018 22:02,14/02/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0144,12/10/2018 22:02,14/02/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0143,12/10/2018 22:02,9/05/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-0142,12/10/2018 22:02,9/05/2012 0:55,9.3,399, Resource Management Errors,nan
CVE-2012-0141,12/10/2018 22:02,9/05/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0138,12/10/2018 22:02,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0137,12/10/2018 22:02,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0136,12/10/2018 22:02,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0020,12/10/2018 22:02,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0019,12/10/2018 22:02,14/02/2012 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0018,12/10/2018 22:02,9/05/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0017,12/10/2018 22:02,14/02/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0012,12/10/2018 22:02,14/02/2012 22:55,4.3,200, Information Exposure,nan
CVE-2012-0010,12/10/2018 22:01,14/02/2012 22:55,4.3,200, Information Exposure,nan
CVE-2012-0007,12/10/2018 22:01,10/01/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5046,12/10/2018 22:01,30/12/2011 19:55,9.3,20, Improper Input Validation,nan
CVE-2011-3413,12/10/2018 22:01,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3412,12/10/2018 22:01,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3411,12/10/2018 22:01,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3410,12/10/2018 22:01,14/12/2011 0:55,9.3,20, Improper Input Validation,nan
CVE-2011-3403,12/10/2018 22:01,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3389,12/10/2018 22:01,6/09/2011 19:55,4.3,20, Improper Input Validation,nan
CVE-2011-2383,12/10/2018 22:01,3/06/2011 17:55,4.3,20, Improper Input Validation,nan
CVE-2011-2012,12/10/2018 22:01,12/10/2011 2:52,5.0,20, Improper Input Validation,nan
CVE-2011-2010,12/10/2018 22:01,14/12/2011 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-2008,12/10/2018 22:01,12/10/2011 2:52,5.0,20, Improper Input Validation,nan
CVE-2011-2007,12/10/2018 22:01,12/10/2011 2:52,5.0,20, Improper Input Validation,nan
CVE-2011-1990,12/10/2018 22:01,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1989,12/10/2018 22:01,15/09/2011 12:26,9.3,20, Improper Input Validation,nan
CVE-2011-1988,12/10/2018 22:01,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1987,12/10/2018 22:01,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1986,12/10/2018 22:01,15/09/2011 12:26,9.3,399, Resource Management Errors,nan
CVE-2011-1983,12/10/2018 22:01,14/12/2011 0:55,9.3,399, Resource Management Errors,nan
CVE-2011-1982,12/10/2018 22:01,15/09/2011 12:26,9.3,20, Improper Input Validation,nan
CVE-2011-1979,12/10/2018 22:01,10/08/2011 21:55,9.3,20, Improper Input Validation,nan
CVE-2011-1976,12/10/2018 22:01,10/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1972,12/10/2018 22:01,10/08/2011 21:55,9.3,20, Improper Input Validation,nan
CVE-2011-1969,12/10/2018 22:01,12/10/2011 2:52,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1966,12/10/2018 22:01,10/08/2011 21:55,10.0,20, Improper Input Validation,nan
CVE-2011-1897,12/10/2018 22:01,12/10/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1896,12/10/2018 22:01,12/10/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1895,12/10/2018 22:01,12/10/2011 2:52,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1893,12/10/2018 22:01,15/09/2011 12:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1892,12/10/2018 22:01,15/09/2011 12:26,4.0,200, Information Exposure,nan
CVE-2011-1891,12/10/2018 22:01,15/09/2011 12:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1890,12/10/2018 22:01,15/09/2011 12:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1889,12/10/2018 22:01,16/06/2011 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1872,12/10/2018 22:00,16/06/2011 20:55,4.7,399, Resource Management Errors,nan
CVE-2011-1508,12/10/2018 22:00,14/12/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1280,12/10/2018 22:00,16/06/2011 20:55,4.3,200, Information Exposure,nan
CVE-2011-1279,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1278,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1277,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1276,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1275,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1274,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1273,12/10/2018 22:00,16/06/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1272,12/10/2018 22:00,16/06/2011 20:55,9.3,20, Improper Input Validation,nan
CVE-2011-1270,12/10/2018 22:00,13/05/2011 17:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1269,12/10/2018 22:00,13/05/2011 17:05,9.3,20, Improper Input Validation,nan
CVE-2011-1263,12/10/2018 22:00,10/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1243,12/10/2018 22:00,13/04/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0980,12/10/2018 21:59,10/02/2011 19:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0979,12/10/2018 21:59,10/02/2011 19:00,9.3,20, Improper Input Validation,nan
CVE-2011-0978,12/10/2018 21:59,10/02/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0977,12/10/2018 21:59,10/02/2011 19:00,9.3,399, Resource Management Errors,nan
CVE-2011-0976,12/10/2018 21:59,10/02/2011 19:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0656,12/10/2018 21:59,13/04/2011 18:55,9.3,20, Improper Input Validation,nan
CVE-2011-0655,12/10/2018 21:59,13/04/2011 18:55,9.3,20, Improper Input Validation,nan
CVE-2011-0653,12/10/2018 21:59,15/09/2011 12:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0105,12/10/2018 21:59,13/04/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0104,12/10/2018 21:59,13/04/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0103,12/10/2018 21:59,13/04/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0101,12/10/2018 21:59,13/04/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0098,12/10/2018 21:59,13/04/2011 18:55,9.3,189, Numeric Errors,nan
CVE-2011-0097,12/10/2018 21:59,13/04/2011 18:55,9.3,189, Numeric Errors,nan
CVE-2011-0093,12/10/2018 21:59,10/02/2011 16:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0092,12/10/2018 21:59,10/02/2011 16:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0045,12/10/2018 21:59,9/02/2011 1:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0040,12/10/2018 21:59,9/02/2011 1:00,5.0,20, Improper Input Validation,nan
CVE-2011-0039,12/10/2018 21:59,9/02/2011 1:00,7.2,287, Improper Authentication,nan
CVE-2011-0030,12/10/2018 21:59,9/02/2011 1:00,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2010-4398,12/10/2018 21:59,6/12/2010 13:44,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3973,12/10/2018 21:59,23/12/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3971,12/10/2018 21:58,22/12/2010 21:00,9.3,399, Resource Management Errors,nan
CVE-2010-3960,12/10/2018 21:58,16/12/2010 19:33,4.9,20, Improper Input Validation,nan
CVE-2010-3955,12/10/2018 21:58,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3954,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3952,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3951,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3950,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3949,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3947,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3946,12/10/2018 21:58,16/12/2010 19:33,9.3,189, Numeric Errors,nan
CVE-2010-3945,12/10/2018 21:58,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3936,12/10/2018 21:58,10/11/2010 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3336,12/10/2018 21:58,10/11/2010 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3335,12/10/2018 21:58,10/11/2010 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3334,12/10/2018 21:58,10/11/2010 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3333,12/10/2018 21:58,10/11/2010 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3332,12/10/2018 21:58,22/09/2010 19:00,5.0,310, Cryptographic Issues,nan
CVE-2010-3324,12/10/2018 21:58,17/09/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3242,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3241,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3240,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3239,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3238,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3237,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3236,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3235,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3234,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3233,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3232,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3231,12/10/2018 21:58,13/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3230,12/10/2018 21:58,13/10/2010 19:00,9.3,189, Numeric Errors,nan
CVE-2010-3223,12/10/2018 21:58,13/10/2010 19:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3221,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3220,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3219,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3218,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3217,12/10/2018 21:58,13/10/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-3216,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3215,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3214,12/10/2018 21:58,13/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2750,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2748,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2747,12/10/2018 21:58,13/10/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2734,12/10/2018 21:58,10/11/2010 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2733,12/10/2018 21:58,10/11/2010 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2732,12/10/2018 21:58,10/11/2010 3:00,5.8,20, Improper Input Validation,nan
CVE-2010-2728,12/10/2018 21:58,15/09/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2573,12/10/2018 21:58,10/11/2010 3:00,9.3,189, Numeric Errors,nan
CVE-2010-2572,12/10/2018 21:58,10/11/2010 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2571,12/10/2018 21:58,16/12/2010 19:33,9.3,20, Improper Input Validation,nan
CVE-2010-2570,12/10/2018 21:57,16/12/2010 19:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2569,12/10/2018 21:57,16/12/2010 19:33,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2564,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2562,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2561,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1903,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1902,12/10/2018 21:57,11/08/2010 18:47,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1901,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1900,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1898,12/10/2018 21:57,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1889,12/10/2018 21:57,11/08/2010 18:47,7.2,399, Resource Management Errors,nan
CVE-2010-1888,12/10/2018 21:57,11/08/2010 18:47,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1881,12/10/2018 21:57,15/07/2010 12:57,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1880,12/10/2018 21:57,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1879,12/10/2018 21:57,8/06/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1263,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1254,12/10/2018 21:57,8/06/2010 20:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1253,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1252,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1251,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1250,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1249,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1248,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1247,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1246,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1245,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0824,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0823,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0822,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0821,12/10/2018 21:57,8/06/2010 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0817,12/10/2018 21:57,29/04/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0815,12/10/2018 21:57,12/05/2010 11:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0814,12/10/2018 21:57,15/07/2010 12:57,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0808,12/10/2018 21:57,13/10/2010 19:00,2.6,200, Information Exposure,nan
CVE-2010-0805,12/10/2018 21:57,31/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0484,12/10/2018 21:56,8/06/2010 22:30,6.8,20, Improper Input Validation,nan
CVE-2010-0479,12/10/2018 21:56,14/04/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0266,12/10/2018 21:56,15/07/2010 12:57,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0264,12/10/2018 21:56,10/03/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0263,12/10/2018 21:56,10/03/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0262,12/10/2018 21:56,10/03/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0261,12/10/2018 21:56,10/03/2010 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0260,12/10/2018 21:56,10/03/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0258,12/10/2018 21:56,10/03/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0257,12/10/2018 21:56,10/03/2010 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0256,12/10/2018 21:56,14/04/2010 16:00,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0254,12/10/2018 21:56,14/04/2010 16:00,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0243,12/10/2018 21:56,10/02/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0242,12/10/2018 21:56,10/02/2010 18:30,7.8,399, Resource Management Errors,nan
CVE-2010-0241,12/10/2018 21:56,10/02/2010 18:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0240,12/10/2018 21:56,10/02/2010 18:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0239,12/10/2018 21:56,10/02/2010 18:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0237,12/10/2018 21:56,14/04/2010 16:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0034,12/10/2018 21:56,10/02/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0033,12/10/2018 21:56,10/02/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0032,12/10/2018 21:56,10/02/2010 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0031,12/10/2018 21:56,10/02/2010 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0030,12/10/2018 21:56,10/02/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0029,12/10/2018 21:56,10/02/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0026,12/10/2018 21:56,10/02/2010 18:30,4.0,20, Improper Input Validation,nan
CVE-2010-0023,12/10/2018 21:56,10/02/2010 18:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0019,12/10/2018 21:56,11/08/2010 18:47,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3735,12/10/2018 21:56,11/02/2010 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3135,12/10/2018 21:52,11/11/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3134,12/10/2018 21:52,11/11/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3133,12/10/2018 21:52,11/11/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3132,12/10/2018 21:52,11/11/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3131,12/10/2018 21:52,11/11/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3130,12/10/2018 21:52,11/11/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3129,12/10/2018 21:52,11/11/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3128,12/10/2018 21:52,11/11/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3127,12/10/2018 21:52,11/11/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3126,12/10/2018 21:52,14/10/2009 10:30,9.3,189, Numeric Errors,nan
CVE-2009-3103,12/10/2018 21:52,8/09/2009 22:30,10.0,399, Resource Management Errors,nan
CVE-2009-2570,12/10/2018 21:52,22/07/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2528,12/10/2018 21:52,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2518,12/10/2018 21:52,14/10/2009 10:30,9.3,189, Numeric Errors,nan
CVE-2009-2517,12/10/2018 21:52,14/10/2009 10:30,4.9,399, Resource Management Errors,nan
CVE-2009-2514,12/10/2018 21:51,11/11/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2513,12/10/2018 21:51,11/11/2009 19:30,7.2,20, Improper Input Validation,nan
CVE-2009-2512,12/10/2018 21:51,11/11/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2505,12/10/2018 21:51,9/12/2009 18:30,10.0,287, Improper Authentication,nan
CVE-2009-2504,12/10/2018 21:51,14/10/2009 10:30,9.3,189, Numeric Errors,nan
CVE-2009-2503,12/10/2018 21:51,14/10/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2502,12/10/2018 21:51,14/10/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2501,12/10/2018 21:51,14/10/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2500,12/10/2018 21:51,14/10/2009 10:30,9.3,189, Numeric Errors,nan
CVE-2009-2496,12/10/2018 21:51,12/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2495,12/10/2018 21:51,29/07/2009 17:30,7.8,200, Information Exposure,nan
CVE-2009-2493,12/10/2018 21:51,29/07/2009 17:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1542,12/10/2018 21:51,15/07/2009 15:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1536,12/10/2018 21:51,12/08/2009 17:30,2.6,20, Improper Input Validation,nan
CVE-2009-1534,12/10/2018 21:51,12/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1533,12/10/2018 21:51,10/06/2009 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1137,12/10/2018 21:51,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1136,12/10/2018 21:51,15/07/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1135,12/10/2018 21:51,15/07/2009 15:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1134,12/10/2018 21:51,10/06/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1131,12/10/2018 21:50,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1130,12/10/2018 21:50,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1129,12/10/2018 21:50,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1128,12/10/2018 21:50,12/05/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1127,12/10/2018 21:50,11/11/2009 19:30,7.2,20, Improper Input Validation,nan
CVE-2009-1122,12/10/2018 21:50,10/06/2009 18:30,7.6,287, Improper Authentication,nan
CVE-2009-0901,12/10/2018 21:50,29/07/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0568,12/10/2018 21:50,10/06/2009 18:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0566,12/10/2018 21:50,15/07/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0565,12/10/2018 21:50,10/06/2009 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0563,12/10/2018 21:50,10/06/2009 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0562,12/10/2018 21:50,12/08/2009 17:30,9.3,399, Resource Management Errors,nan
CVE-2009-0561,12/10/2018 21:50,10/06/2009 18:30,9.3,189, Numeric Errors,nan
CVE-2009-0560,12/10/2018 21:50,10/06/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-0559,12/10/2018 21:50,10/06/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0558,12/10/2018 21:50,10/06/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0557,12/10/2018 21:50,10/06/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0556,12/10/2018 21:50,3/04/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0549,12/10/2018 21:50,10/06/2009 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0238,12/10/2018 21:50,25/02/2009 16:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0237,12/10/2018 21:50,15/04/2009 8:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0235,12/10/2018 21:50,15/04/2009 8:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0230,12/10/2018 21:50,10/06/2009 18:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0228,12/10/2018 21:50,10/06/2009 18:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0227,12/10/2018 21:50,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0226,12/10/2018 21:50,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0225,12/10/2018 21:50,12/05/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0224,12/10/2018 21:50,12/05/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0223,12/10/2018 21:50,12/05/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0222,12/10/2018 21:50,12/05/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0221,12/10/2018 21:50,12/05/2009 22:30,9.3,189, Numeric Errors,nan
CVE-2009-0220,12/10/2018 21:50,12/05/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0102,12/10/2018 21:49,9/12/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-0100,12/10/2018 21:49,15/04/2009 8:00,9.3,399, Resource Management Errors,nan
CVE-2009-0099,12/10/2018 21:49,10/02/2009 22:30,5.0,20, Improper Input Validation,nan
CVE-2009-0098,12/10/2018 21:49,10/02/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-0097,12/10/2018 21:49,10/02/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-0096,12/10/2018 21:49,10/02/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2009-0095,12/10/2018 21:49,10/02/2009 22:30,9.3,399, Resource Management Errors,nan
CVE-2008-5416,12/10/2018 21:49,10/12/2008 14:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4844,12/10/2018 21:49,11/12/2008 15:30,9.3,399, Resource Management Errors,nan
CVE-2008-4269,12/10/2018 21:48,10/12/2008 14:00,8.5,399, Resource Management Errors,nan
CVE-2008-4268,12/10/2018 21:48,10/12/2008 14:00,8.5,399, Resource Management Errors,nan
CVE-2008-4266,12/10/2018 21:48,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4265,12/10/2018 21:48,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4264,12/10/2018 21:48,10/12/2008 14:00,9.3,399, Resource Management Errors,nan
CVE-2008-4256,12/10/2018 21:48,10/12/2008 14:00,8.5,399, Resource Management Errors,nan
CVE-2008-4255,12/10/2018 21:48,10/12/2008 14:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4254,12/10/2018 21:48,10/12/2008 14:00,8.5,189, Numeric Errors,nan
CVE-2008-4253,12/10/2018 21:48,10/12/2008 14:00,8.5,399, Resource Management Errors,nan
CVE-2008-4252,12/10/2018 21:48,10/12/2008 14:00,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4033,12/10/2018 21:48,12/11/2008 23:30,4.3,200, Information Exposure,nan
CVE-2008-4032,12/10/2018 21:48,10/12/2008 14:00,7.5,287, Improper Authentication,nan
CVE-2008-4023,12/10/2018 21:48,15/10/2008 0:12,10.0,399, Resource Management Errors,nan
CVE-2008-4020,12/10/2018 21:48,15/10/2008 0:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4019,12/10/2018 21:48,15/10/2008 0:12,9.3,189, Numeric Errors,nan
CVE-2008-3704,12/10/2018 21:48,18/08/2008 19:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3479,12/10/2018 21:48,15/10/2008 0:12,10.0,20, Improper Input Validation,nan
CVE-2008-3471,12/10/2018 21:48,15/10/2008 0:12,9.3,399, Resource Management Errors,nan
CVE-2008-3466,12/10/2018 21:48,15/10/2008 0:12,10.0,287, Improper Authentication,nan
CVE-2008-3464,12/10/2018 21:48,15/10/2008 0:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3460,12/10/2018 21:47,12/08/2008 23:41,9.3,399, Resource Management Errors,nan
CVE-2008-3021,12/10/2018 21:47,12/08/2008 23:41,9.3,399, Resource Management Errors,nan
CVE-2008-3020,12/10/2018 21:47,12/08/2008 23:41,9.3,399, Resource Management Errors,nan
CVE-2008-3019,12/10/2018 21:47,12/08/2008 23:41,9.3,399, Resource Management Errors,nan
CVE-2008-3018,12/10/2018 21:47,12/08/2008 23:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3015,12/10/2018 21:47,11/09/2008 1:11,9.3,189, Numeric Errors,nan
CVE-2008-3010,12/10/2018 21:47,10/12/2008 14:00,10.0,200, Information Exposure,nan
CVE-2008-3007,12/10/2018 21:47,11/09/2008 1:11,9.3,20, Improper Input Validation,nan
CVE-2008-3003,12/10/2018 21:47,12/08/2008 23:41,6.6,20, Improper Input Validation,nan
CVE-2008-2947,12/10/2018 21:47,30/06/2008 22:41,6.8,284, Improper Access Control,nan
CVE-2008-2540,12/10/2018 21:47,3/06/2008 15:32,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-2259,12/10/2018 21:47,13/08/2008 12:42,9.3,20, Improper Input Validation,nan
CVE-2008-2258,12/10/2018 21:47,13/08/2008 12:42,9.3,399, Resource Management Errors,nan
CVE-2008-2257,12/10/2018 21:47,13/08/2008 12:42,9.3,399, Resource Management Errors,nan
CVE-2008-2256,12/10/2018 21:47,13/08/2008 12:42,9.3,20, Improper Input Validation,nan
CVE-2008-2255,12/10/2018 21:47,13/08/2008 12:42,9.3,399, Resource Management Errors,nan
CVE-2008-2254,12/10/2018 21:47,13/08/2008 12:42,9.3,399, Resource Management Errors,nan
CVE-2008-2247,12/10/2018 21:47,8/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2245,12/10/2018 21:47,13/08/2008 0:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1453,12/10/2018 21:47,12/06/2008 2:32,8.3,20, Improper Input Validation,nan
CVE-2008-1448,12/10/2018 21:47,13/08/2008 0:41,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-1445,12/10/2018 21:45,12/06/2008 2:32,7.1,20, Improper Input Validation,nan
CVE-2008-1444,12/10/2018 21:45,12/06/2008 2:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1442,12/10/2018 21:45,12/06/2008 2:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1441,12/10/2018 21:45,12/06/2008 2:32,5.4,20, Improper Input Validation,nan
CVE-2008-1440,12/10/2018 21:45,12/06/2008 2:32,7.1,20, Improper Input Validation,nan
CVE-2008-1438,12/10/2018 21:45,13/05/2008 22:20,5.0,399, Resource Management Errors,nan
CVE-2008-1437,12/10/2018 21:45,13/05/2008 22:20,5.0,399, Resource Management Errors,nan
CVE-2008-1435,12/10/2018 21:45,8/07/2008 23:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1434,12/10/2018 21:45,13/05/2008 22:20,9.3,399, Resource Management Errors,nan
CVE-2008-1091,12/10/2018 21:45,13/05/2008 22:20,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1090,12/10/2018 21:45,8/04/2008 23:05,9.3,399, Resource Management Errors,nan
CVE-2008-1089,12/10/2018 21:45,8/04/2008 23:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1088,12/10/2018 21:45,8/04/2008 23:05,9.3,399, Resource Management Errors,nan
CVE-2008-1087,12/10/2018 21:45,8/04/2008 23:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1086,12/10/2018 21:45,8/04/2008 23:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1085,12/10/2018 21:45,8/04/2008 23:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1084,12/10/2018 21:45,8/04/2008 23:05,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0956,12/10/2018 21:45,12/06/2008 2:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0951,12/10/2018 21:45,24/03/2008 22:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0121,12/10/2018 21:45,13/08/2008 0:41,9.3,399, Resource Management Errors,nan
CVE-2008-0120,12/10/2018 21:45,13/08/2008 0:41,9.3,399, Resource Management Errors,nan
CVE-2008-0118,12/10/2018 21:45,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0115,12/10/2018 21:44,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0114,12/10/2018 21:44,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0112,12/10/2018 21:44,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0110,12/10/2018 21:44,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0108,12/10/2018 21:44,12/02/2008 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0105,12/10/2018 21:44,12/02/2008 23:00,9.3,20, Improper Input Validation,nan
CVE-2008-0103,12/10/2018 21:44,13/02/2008 0:00,9.3,399, Resource Management Errors,nan
CVE-2008-0102,12/10/2018 21:44,12/02/2008 23:00,10.0,399, Resource Management Errors,nan
CVE-2008-0083,12/10/2018 21:44,8/04/2008 23:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0078,12/10/2018 21:44,12/02/2008 23:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0076,12/10/2018 21:44,12/02/2008 23:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0020,12/10/2018 21:44,7/07/2009 23:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0015,12/10/2018 21:44,7/07/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0011,12/10/2018 21:44,12/06/2008 2:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6255,12/10/2018 21:44,23/04/2008 13:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4790,12/10/2018 21:44,10/09/2007 21:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3036,12/10/2018 21:43,12/09/2007 1:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-3033,12/10/2018 21:43,14/08/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2931,12/10/2018 21:43,31/08/2007 22:17,9.3,20, Improper Input Validation,nan
CVE-2007-1201,12/10/2018 21:43,11/03/2008 23:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0675,12/10/2018 21:42,3/02/2007 1:28,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0216,12/10/2018 21:42,12/02/2008 23:00,9.3,20, Improper Input Validation,nan
CVE-2007-0209,12/10/2018 21:42,13/02/2007 21:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0208,12/10/2018 21:42,13/02/2007 21:28,9.3,20, Improper Input Validation,nan
CVE-2007-0065,12/10/2018 21:42,12/02/2008 23:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0025,12/10/2018 21:42,13/02/2007 20:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5559,12/10/2018 21:41,27/10/2006 16:07,9.3,20, Improper Input Validation,nan
CVE-2006-4695,12/10/2018 21:41,31/12/2006 5:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4640,12/10/2018 21:41,12/09/2006 23:07,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2006-3643,12/10/2018 21:40,9/08/2006 0:04,6.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3281,12/10/2018 21:40,28/06/2006 22:05,5.1,20, Improper Input Validation,nan
CVE-2006-3014,12/10/2018 21:40,22/06/2006 0:06,5.1,20, Improper Input Validation,nan
CVE-2006-2385,12/10/2018 21:40,13/06/2006 19:06,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2384,12/10/2018 21:40,13/06/2006 19:06,4.3,200, Information Exposure,nan
CVE-2006-2374,12/10/2018 21:39,13/06/2006 19:06,2.1,399, Resource Management Errors,nan
CVE-2006-1318,12/10/2018 21:39,19/09/2014 10:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1316,12/10/2018 21:39,11/07/2006 21:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1309,12/10/2018 21:39,13/07/2006 22:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1301,12/10/2018 21:39,13/07/2006 22:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1192,12/10/2018 21:39,11/04/2006 23:02,2.6,20, Improper Input Validation,nan
CVE-2006-1189,12/10/2018 21:39,11/04/2006 23:02,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0025,12/10/2018 21:38,13/06/2006 19:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0020,12/10/2018 21:38,10/01/2006 21:03,9.3,189, Numeric Errors,nan
CVE-2005-4089,12/10/2018 21:37,8/12/2005 11:03,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2005-2087,12/10/2018 21:36,5/07/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2004-0847,12/10/2018 21:35,3/11/2004 5:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-0123,12/10/2018 21:34,1/06/2004 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1048,12/10/2018 21:33,27/07/2004 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1026,12/10/2018 21:33,20/01/2004 5:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2003-1025,12/10/2018 21:33,20/01/2004 5:00,4.3,20, Improper Input Validation,nan
CVE-2003-0904,12/10/2018 21:33,20/01/2004 5:00,6.0,200, Information Exposure,nan
CVE-2003-0903,12/10/2018 21:33,17/02/2004 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0819,12/10/2018 21:33,17/02/2004 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0230,12/10/2018 21:32,27/08/2003 4:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2002-0070,12/10/2018 21:31,15/03/2002 5:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-0053,12/10/2018 21:30,8/03/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-0013,12/10/2018 21:30,13/02/2002 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-0012,12/10/2018 21:30,13/02/2002 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2001-0153,12/10/2018 21:30,3/05/2001 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2000-0305,12/10/2018 21:29,19/05/2000 4:00,7.8,399, Resource Management Errors,nan
CVE-2000-0277,12/10/2018 21:29,3/04/2000 4:00,7.2,254, 7PK – Security Features,nan
CVE-1999-0999,12/10/2018 21:29,19/11/1999 5:00,4.3,20, Improper Input Validation,nan
CVE-1999-0995,12/10/2018 21:29,16/12/1999 5:00,7.8,20, Improper Input Validation,nan
CVE-1999-0994,12/10/2018 21:29,16/12/1999 5:00,5.0,255, Credentials Management,nan
CVE-1999-0981,12/10/2018 21:29,8/12/1999 5:00,5.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-1999-0918,12/10/2018 21:29,3/07/1999 4:00,7.8,20, Improper Input Validation,nan
CVE-1999-0909,12/10/2018 21:29,20/09/1999 4:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-1999-0899,12/10/2018 21:29,4/11/1999 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-1999-0898,12/10/2018 21:29,4/11/1999 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-1999-0891,12/10/2018 21:29,1/09/1999 4:00,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-1999-0886,12/10/2018 21:29,17/09/1999 4:00,9.0,16, Configuration,nan
CVE-1999-0877,12/10/2018 21:29,1/10/1999 4:00,4.3,200, Information Exposure,nan
CVE-1999-0874,12/10/2018 21:29,16/06/1999 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-1999-0867,12/10/2018 21:29,11/08/1999 4:00,5.0,20, Improper Input Validation,nan
CVE-1999-0861,12/10/2018 21:29,11/08/1999 4:00,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-1999-0858,12/10/2018 21:29,2/12/1999 5:00,5.0,16, Configuration,nan
CVE-1999-0839,12/10/2018 21:29,29/11/1999 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-1999-0802,12/10/2018 21:29,27/05/1999 4:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-1999-0794,12/10/2018 21:29,1/10/1999 4:00,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-1999-0777,12/10/2018 21:29,23/09/1999 4:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-1999-0766,12/10/2018 21:29,21/10/1999 4:00,9.3,16, Configuration,nan
CVE-1999-0755,12/10/2018 21:29,27/05/1999 4:00,5.0,255, Credentials Management,nan
CVE-1999-0728,12/10/2018 21:29,6/07/1999 4:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-1999-0726,12/10/2018 21:29,30/06/1999 4:00,7.8,20, Improper Input Validation,nan
CVE-1999-0725,12/10/2018 21:29,19/08/1999 4:00,7.1,16, Configuration,nan
CVE-1999-0721,12/10/2018 21:29,20/07/1999 4:00,7.8,20, Improper Input Validation,nan
CVE-1999-0702,12/10/2018 21:29,10/09/1999 4:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-1999-0701,12/10/2018 21:29,11/04/2000 4:00,7.2,16, Configuration,nan
CVE-1999-0700,12/10/2018 21:29,29/07/1999 4:00,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-1999-0680,12/10/2018 21:29,9/08/1999 4:00,5.0,287, Improper Authentication,nan
CVE-1999-0387,12/10/2018 21:29,29/11/1999 5:00,7.8,255, Credentials Management,nan
CVE-1999-0372,12/10/2018 21:29,12/02/1999 5:00,2.1,200, Information Exposure,nan
CVE-1999-0366,12/10/2018 21:29,8/02/1999 5:00,7.5,287, Improper Authentication,nan
CVE-1999-0349,12/10/2018 21:29,27/01/1999 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15564,12/10/2018 20:49,20/08/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15565,12/10/2018 20:43,20/08/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14057,12/10/2018 20:34,17/08/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13394,12/10/2018 20:34,15/08/2018 12:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13393,12/10/2018 20:33,15/08/2018 12:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15569,12/10/2018 20:29,20/08/2018 1:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8377,12/10/2018 20:26,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14058,12/10/2018 20:22,17/08/2018 18:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8384,12/10/2018 20:20,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7048,12/10/2018 20:12,20/08/2018 21:29,9.3,284, Improper Access Control,nan
CVE-2018-1000653,12/10/2018 20:08,20/08/2018 19:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8388,12/10/2018 19:56,15/08/2018 17:29,4.3,20, Improper Input Validation,nan
CVE-2018-1000635,12/10/2018 19:54,20/08/2018 19:31,7.2,200, Information Exposure,nan
CVE-2018-1000633,12/10/2018 19:49,20/08/2018 19:31,4.0,200, Information Exposure,nan
CVE-2018-8414,12/10/2018 19:47,15/08/2018 17:29,9.3,20, Improper Input Validation,nan
CVE-2018-15501,12/10/2018 19:24,18/08/2018 2:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-1000218,12/10/2018 19:14,20/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000219,12/10/2018 19:13,20/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15559,12/10/2018 19:12,20/08/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15358,12/10/2018 19:06,17/08/2018 15:29,6.5,20, Improper Input Validation,nan
CVE-2018-15357,12/10/2018 19:05,17/08/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-1159,12/10/2018 18:50,23/08/2018 19:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4320,12/10/2018 18:28,10/04/2017 3:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-0211,12/10/2018 18:28,2/05/2005 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8316,12/10/2018 18:22,15/08/2018 17:29,7.6,20, Improper Input Validation,nan
CVE-2018-7889,12/10/2018 18:21,8/03/2018 21:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-8370,12/10/2018 17:46,15/08/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-8382,12/10/2018 17:44,15/08/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-15138,12/10/2018 17:34,15/08/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8403,12/10/2018 17:28,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12256,12/10/2018 17:25,16/08/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-2444,12/10/2018 17:22,14/08/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14878,12/10/2018 17:06,13/08/2018 17:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-17312,12/10/2018 17:02,21/08/2018 13:29,7.8,20, Improper Input Validation,nan
CVE-2017-17311,12/10/2018 17:01,21/08/2018 13:29,7.8,20, Improper Input Validation,nan
CVE-2017-17305,12/10/2018 16:48,21/08/2018 13:29,4.3,310, Cryptographic Issues,nan
CVE-2018-14432,12/10/2018 16:13,31/07/2018 14:29,3.5,200, Information Exposure,nan
CVE-2018-14429,12/10/2018 15:01,14/08/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8302,12/10/2018 14:38,15/08/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8266,12/10/2018 13:42,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17174,12/10/2018 13:37,31/07/2018 14:29,4.3,310, Cryptographic Issues,nan
CVE-2018-15151,12/10/2018 13:11,15/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15150,12/10/2018 13:10,15/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15149,12/10/2018 13:10,15/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15148,12/10/2018 13:08,15/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15147,12/10/2018 13:07,15/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15354,12/10/2018 13:02,17/08/2018 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14888,12/10/2018 12:31,14/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10510,12/10/2018 12:10,15/08/2018 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15494,12/10/2018 11:48,18/08/2018 2:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-15566,12/10/2018 11:44,20/08/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9606,12/10/2018 10:29,9/03/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2015-5700,12/10/2018 10:29,25/08/2017 18:29,5.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-4190,11/10/2018 21:01,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1554,11/10/2018 21:01,13/05/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3267,11/10/2018 21:01,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2009-0542,11/10/2018 21:01,12/02/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0538,11/10/2018 21:01,18/03/2009 15:30,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2009-0537,11/10/2018 21:01,9/03/2009 21:30,4.9,189, Numeric Errors,nan
CVE-2009-0517,11/10/2018 21:01,11/02/2009 0:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0516,11/10/2018 21:01,11/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0497,11/10/2018 21:01,10/02/2009 1:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0496,11/10/2018 21:01,10/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0478,11/10/2018 21:01,8/02/2009 22:30,5.0,20, Improper Input Validation,nan
CVE-2009-0476,11/10/2018 21:01,8/02/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0475,11/10/2018 21:01,11/02/2009 0:30,6.8,189, Numeric Errors,nan
CVE-2009-0471,11/10/2018 21:01,6/02/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0470,11/10/2018 21:01,6/02/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0449,11/10/2018 21:01,10/02/2009 7:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0430,11/10/2018 21:01,5/02/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0429,11/10/2018 21:01,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0422,11/10/2018 21:01,5/02/2009 0:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0412,11/10/2018 21:01,3/02/2009 20:30,7.5,287, Improper Authentication,nan
CVE-2009-0410,11/10/2018 21:01,3/02/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0409,11/10/2018 21:01,3/02/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0397,11/10/2018 21:01,3/02/2009 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0396,11/10/2018 21:01,3/02/2009 1:30,7.8,20, Improper Input Validation,nan
CVE-2009-0393,11/10/2018 21:01,3/02/2009 1:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0392,11/10/2018 21:01,3/02/2009 1:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0390,11/10/2018 21:01,2/02/2009 22:30,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0388,11/10/2018 21:01,4/02/2009 19:30,10.0,189, Numeric Errors,nan
CVE-2009-0387,11/10/2018 21:01,2/02/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0386,11/10/2018 21:01,2/02/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0385,11/10/2018 21:01,2/02/2009 19:30,9.3,189, Numeric Errors,nan
CVE-2009-0378,11/10/2018 21:01,2/02/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0377,11/10/2018 21:01,2/02/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0376,11/10/2018 21:01,8/02/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0375,11/10/2018 21:01,8/02/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0361,11/10/2018 21:01,13/02/2009 17:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-0360,11/10/2018 21:01,13/02/2009 17:30,6.2,287, Improper Authentication,nan
CVE-2009-0359,11/10/2018 21:01,17/02/2009 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0343,11/10/2018 21:01,29/01/2009 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0342,11/10/2018 21:01,29/01/2009 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0341,11/10/2018 21:01,29/01/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0339,11/10/2018 21:01,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0338,11/10/2018 21:01,29/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0323,11/10/2018 21:01,28/01/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0320,11/10/2018 21:01,28/01/2009 18:30,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-0311,11/10/2018 21:01,27/01/2009 22:30,10.0,20, Improper Input Validation,nan
CVE-2009-0302,11/10/2018 21:01,27/01/2009 20:30,4.6,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0294,11/10/2018 21:01,27/01/2009 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0291,11/10/2018 21:01,27/01/2009 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0289,11/10/2018 21:01,27/01/2009 19:30,5.0,20, Improper Input Validation,nan
CVE-2009-0288,11/10/2018 21:01,27/01/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0285,11/10/2018 21:01,27/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0283,11/10/2018 21:01,27/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0280,11/10/2018 21:01,27/01/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-0273,11/10/2018 21:01,2/02/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0272,11/10/2018 21:01,2/02/2009 22:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0270,11/10/2018 21:01,26/01/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0269,11/10/2018 21:01,26/01/2009 15:30,4.9,399, Resource Management Errors,nan
CVE-2009-0260,11/10/2018 21:01,23/01/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0247,11/10/2018 21:01,22/01/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0246,11/10/2018 21:00,22/01/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0244,11/10/2018 21:00,21/01/2009 20:30,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0210,11/10/2018 21:00,8/02/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0209,11/10/2018 21:00,1/10/2009 15:30,6.4,310, Cryptographic Issues,nan
CVE-2009-0202,11/10/2018 21:00,11/06/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0201,11/10/2018 21:00,2/09/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0200,11/10/2018 21:00,2/09/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-0199,11/10/2018 21:00,8/09/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0198,11/10/2018 21:00,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0197,11/10/2018 21:00,9/04/2009 15:08,9.3,189, Numeric Errors,nan
CVE-2009-0196,11/10/2018 21:00,16/04/2009 15:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0194,11/10/2018 21:00,11/05/2009 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-0192,11/10/2018 21:00,14/07/2009 20:30,5.0,189, Numeric Errors,nan
CVE-2009-0191,11/10/2018 21:00,10/03/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0187,11/10/2018 21:00,26/02/2009 16:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0186,11/10/2018 21:00,5/03/2009 2:30,9.3,189, Numeric Errors,nan
CVE-2009-0184,11/10/2018 21:00,3/02/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0183,11/10/2018 21:00,3/02/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0181,11/10/2018 21:00,20/01/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0164,11/10/2018 21:00,24/04/2009 15:30,6.4,20, Improper Input Validation,nan
CVE-2009-0163,11/10/2018 21:00,23/04/2009 17:30,6.8,189, Numeric Errors,nan
CVE-2009-0159,11/10/2018 21:00,14/04/2009 15:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0154,11/10/2018 21:00,13/05/2009 15:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0136,11/10/2018 20:59,16/01/2009 18:30,9.3,189, Numeric Errors,nan
CVE-2009-0135,11/10/2018 20:59,16/01/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0120,11/10/2018 20:59,15/01/2009 0:30,7.8,20, Improper Input Validation,nan
CVE-2009-0051,11/10/2018 20:59,7/01/2009 18:30,5.0,287, Improper Authentication,nan
CVE-2009-0050,11/10/2018 20:59,7/01/2009 18:30,4.3,20, Improper Input Validation,nan
CVE-2009-0049,11/10/2018 20:59,7/01/2009 18:30,5.0,287, Improper Authentication,nan
CVE-2009-0048,11/10/2018 20:59,7/01/2009 18:30,5.0,287, Improper Authentication,nan
CVE-2009-0047,11/10/2018 20:59,7/01/2009 18:30,5.0,310, Cryptographic Issues,nan
CVE-2009-0046,11/10/2018 20:59,7/01/2009 18:30,5.0,287, Improper Authentication,nan
CVE-2009-0043,11/10/2018 20:59,8/01/2009 19:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0041,11/10/2018 20:59,14/01/2009 23:30,5.0,200, Information Exposure,nan
CVE-2009-0040,11/10/2018 20:59,22/02/2009 22:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0039,11/10/2018 20:59,17/04/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0038,11/10/2018 20:59,17/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0037,11/10/2018 20:59,5/03/2009 2:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0034,11/10/2018 20:59,30/01/2009 19:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-0028,11/10/2018 20:58,27/02/2009 17:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-0026,11/10/2018 20:58,21/01/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0025,11/10/2018 20:58,7/01/2009 17:30,6.8,287, Improper Authentication,nan
CVE-2009-0023,11/10/2018 20:58,8/06/2009 1:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0021,11/10/2018 20:58,7/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2009-0016,11/10/2018 20:58,14/03/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2009-0010,11/10/2018 20:58,13/05/2009 15:30,9.3,189, Numeric Errors,nan
CVE-2009-0006,11/10/2018 20:58,21/01/2009 20:30,9.3,189, Numeric Errors,nan
CVE-2008-7269,11/10/2018 20:58,1/12/2010 16:06,5.8,20, Improper Input Validation,nan
CVE-2008-7268,11/10/2018 20:58,1/12/2010 16:06,5.0,200, Information Exposure,nan
CVE-2008-7267,11/10/2018 20:58,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7266,11/10/2018 20:58,26/11/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7257,11/10/2018 20:58,29/06/2010 18:30,4.3,20, Improper Input Validation,nan
CVE-2008-7249,11/10/2018 20:58,30/12/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7246,11/10/2018 20:58,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2008-7245,11/10/2018 20:58,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2008-7244,11/10/2018 20:58,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2008-7243,11/10/2018 20:58,17/09/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7242,11/10/2018 20:58,17/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7225,11/10/2018 20:58,14/09/2009 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7222,11/10/2018 20:58,14/09/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7221,11/10/2018 20:58,14/09/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7216,11/10/2018 20:58,11/09/2009 16:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-7215,11/10/2018 20:58,11/09/2009 16:30,5.8,20, Improper Input Validation,nan
CVE-2008-7214,11/10/2018 20:58,11/09/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7213,11/10/2018 20:58,11/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7212,11/10/2018 20:58,11/09/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7209,11/10/2018 20:58,11/09/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7208,11/10/2018 20:58,11/09/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7193,11/10/2018 20:58,9/09/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7192,11/10/2018 20:58,9/09/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7187,11/10/2018 20:58,9/09/2009 17:30,5.0,200, Information Exposure,nan
CVE-2008-7186,11/10/2018 20:58,9/09/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7185,11/10/2018 20:58,8/09/2009 23:30,4.3,20, Improper Input Validation,nan
CVE-2008-7184,11/10/2018 20:58,8/09/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7175,11/10/2018 20:58,8/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7174,11/10/2018 20:58,8/09/2009 10:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7173,11/10/2018 20:58,8/09/2009 10:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7170,11/10/2018 20:58,8/09/2009 10:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7165,11/10/2018 20:58,4/09/2009 10:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7161,11/10/2018 20:58,4/09/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7145,11/10/2018 20:58,1/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7143,11/10/2018 20:58,1/09/2009 16:30,6.8,200, Information Exposure,nan
CVE-2008-7142,11/10/2018 20:58,1/09/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7139,11/10/2018 20:58,1/09/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7138,11/10/2018 20:58,1/09/2009 16:30,5.0,310, Cryptographic Issues,nan
CVE-2008-7111,11/10/2018 20:58,28/08/2009 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-7110,11/10/2018 20:58,28/08/2009 15:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7109,11/10/2018 20:58,28/08/2009 15:30,10.0,287, Improper Authentication,nan
CVE-2008-7108,11/10/2018 20:58,28/08/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7095,11/10/2018 20:58,27/08/2009 18:30,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7091,11/10/2018 20:58,26/08/2009 14:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7090,11/10/2018 20:58,26/08/2009 14:24,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7089,11/10/2018 20:58,26/08/2009 14:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7087,11/10/2018 20:58,26/08/2009 14:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7084,11/10/2018 20:58,26/08/2009 14:24,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7082,11/10/2018 20:58,25/08/2009 10:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7078,11/10/2018 20:58,25/08/2009 10:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7070,11/10/2018 20:58,25/08/2009 10:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7061,11/10/2018 20:58,24/08/2009 19:30,4.3,399, Resource Management Errors,nan
CVE-2008-7060,11/10/2018 20:58,24/08/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7059,11/10/2018 20:58,24/08/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7055,11/10/2018 20:58,24/08/2009 19:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7054,11/10/2018 20:58,24/08/2009 19:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7038,11/10/2018 20:58,24/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7032,11/10/2018 20:58,24/08/2009 10:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7031,11/10/2018 20:58,24/08/2009 10:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7030,11/10/2018 20:58,24/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7029,11/10/2018 20:58,24/08/2009 10:30,6.0,20, Improper Input Validation,nan
CVE-2008-7026,11/10/2018 20:58,21/08/2009 14:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7024,11/10/2018 20:58,21/08/2009 14:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7023,11/10/2018 20:58,21/08/2009 14:30,10.0,310, Cryptographic Issues,nan
CVE-2008-7015,11/10/2018 20:58,19/08/2009 10:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7013,11/10/2018 20:58,19/08/2009 10:30,5.0,189, Numeric Errors,nan
CVE-2008-7011,11/10/2018 20:58,19/08/2009 10:30,4.0,399, Resource Management Errors,nan
CVE-2008-7009,11/10/2018 20:58,19/08/2009 10:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7005,11/10/2018 20:58,19/08/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6994,11/10/2018 20:57,19/08/2009 5:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6989,11/10/2018 20:57,19/08/2009 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6988,11/10/2018 20:57,19/08/2009 5:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6986,11/10/2018 20:57,19/08/2009 5:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6985,11/10/2018 20:57,19/08/2009 5:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6981,11/10/2018 20:57,19/08/2009 5:24,5.0,200, Information Exposure,nan
CVE-2008-6980,11/10/2018 20:57,19/08/2009 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6979,11/10/2018 20:57,19/08/2009 5:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6953,11/10/2018 20:57,12/08/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6949,11/10/2018 20:57,12/08/2009 10:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6948,11/10/2018 20:57,12/08/2009 10:30,6.5,20, Improper Input Validation,nan
CVE-2008-6947,11/10/2018 20:57,12/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-6946,11/10/2018 20:57,12/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6935,11/10/2018 20:57,11/08/2009 21:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6927,11/10/2018 20:57,10/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6926,11/10/2018 20:57,10/08/2009 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6899,11/10/2018 20:57,5/08/2009 22:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6880,11/10/2018 20:57,30/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6866,11/10/2018 20:57,14/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6846,11/10/2018 20:57,2/07/2009 10:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6843,11/10/2018 20:57,2/07/2009 10:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6824,11/10/2018 20:57,4/06/2009 16:30,10.0,310, Cryptographic Issues,nan
CVE-2008-6823,11/10/2018 20:57,4/06/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6816,11/10/2018 20:57,28/05/2009 14:30,10.0,287, Improper Authentication,nan
CVE-2008-6793,11/10/2018 20:57,7/05/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2008-6760,11/10/2018 20:57,28/04/2009 16:30,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6759,11/10/2018 20:57,28/04/2009 16:30,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6758,11/10/2018 20:57,28/04/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6757,11/10/2018 20:57,28/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6754,11/10/2018 20:57,27/04/2009 19:30,4.0,200, Information Exposure,nan
CVE-2008-6748,11/10/2018 20:57,24/04/2009 14:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6736,11/10/2018 20:57,21/04/2009 18:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-6728,11/10/2018 20:57,20/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6713,11/10/2018 20:57,10/04/2009 22:00,5.0,399, Resource Management Errors,nan
CVE-2008-6702,11/10/2018 20:57,10/04/2009 22:00,5.0,20, Improper Input Validation,nan
CVE-2008-6701,11/10/2018 20:57,10/04/2009 22:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6679,11/10/2018 20:57,8/04/2009 16:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6666,11/10/2018 20:57,8/04/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6646,11/10/2018 20:57,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6645,11/10/2018 20:57,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6644,11/10/2018 20:57,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6643,11/10/2018 20:57,7/04/2009 14:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6619,11/10/2018 20:57,6/04/2009 18:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6618,11/10/2018 20:57,6/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6617,11/10/2018 20:57,6/04/2009 18:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6593,11/10/2018 20:57,3/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6592,11/10/2018 20:57,3/04/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6591,11/10/2018 20:57,3/04/2009 18:30,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6590,11/10/2018 20:57,3/04/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6589,11/10/2018 20:57,3/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6587,11/10/2018 20:57,3/04/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6585,11/10/2018 20:57,3/04/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6584,11/10/2018 20:57,3/04/2009 18:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6572,11/10/2018 20:57,31/03/2009 22:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6565,11/10/2018 20:57,31/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6563,11/10/2018 20:57,31/03/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6557,11/10/2018 20:57,30/03/2009 20:30,10.0,20, Improper Input Validation,nan
CVE-2008-6556,11/10/2018 20:57,30/03/2009 20:30,10.0,20, Improper Input Validation,nan
CVE-2008-6555,11/10/2018 20:57,30/03/2009 20:30,10.0,20, Improper Input Validation,nan
CVE-2008-6554,11/10/2018 20:57,30/03/2009 20:30,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-6540,11/10/2018 20:57,30/03/2009 1:30,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-6528,11/10/2018 20:57,26/03/2009 14:30,5.0,20, Improper Input Validation,nan
CVE-2008-6522,11/10/2018 20:57,25/03/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6521,11/10/2018 20:57,25/03/2009 18:30,7.8,200, Information Exposure,nan
CVE-2008-6517,11/10/2018 20:57,25/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6511,11/10/2018 20:57,23/03/2009 20:00,5.8,20, Improper Input Validation,nan
CVE-2008-6510,11/10/2018 20:57,23/03/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6509,11/10/2018 20:57,23/03/2009 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6508,11/10/2018 20:57,23/03/2009 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6503,11/10/2018 20:57,20/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6497,11/10/2018 20:57,20/03/2009 0:30,7.8,20, Improper Input Validation,nan
CVE-2008-6486,11/10/2018 20:57,18/03/2009 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6480,11/10/2018 20:57,16/03/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6479,11/10/2018 20:57,16/03/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6478,11/10/2018 20:57,16/03/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6473,11/10/2018 20:57,16/03/2009 16:30,6.4,255, Credentials Management,nan
CVE-2008-6444,11/10/2018 20:57,9/03/2009 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6441,11/10/2018 20:57,9/03/2009 14:30,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-6439,11/10/2018 20:57,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6438,11/10/2018 20:57,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6437,11/10/2018 20:57,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6435,11/10/2018 20:57,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6431,11/10/2018 20:57,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6427,11/10/2018 20:57,6/03/2009 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6418,11/10/2018 20:57,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6406,11/10/2018 20:57,6/03/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6394,11/10/2018 20:57,4/03/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6359,11/10/2018 20:57,2/03/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6266,11/10/2018 20:57,25/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6256,11/10/2018 20:57,24/02/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6255,11/10/2018 20:57,24/02/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6250,11/10/2018 20:57,23/02/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6234,11/10/2018 20:57,21/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6219,11/10/2018 20:57,20/02/2009 17:30,7.8,399, Resource Management Errors,nan
CVE-2008-6218,11/10/2018 20:57,20/02/2009 17:30,7.1,399, Resource Management Errors,nan
CVE-2008-6200,11/10/2018 20:57,20/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6195,11/10/2018 20:57,20/02/2009 0:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6194,11/10/2018 20:57,19/02/2009 18:30,7.8,399, Resource Management Errors,nan
CVE-2008-6180,11/10/2018 20:57,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6164,11/10/2018 20:57,20/02/2009 6:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6159,11/10/2018 20:57,18/02/2009 16:30,5.0,200, Information Exposure,nan
CVE-2008-6149,11/10/2018 20:56,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6099,11/10/2018 20:56,10/02/2009 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6083,11/10/2018 20:56,6/02/2009 11:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6074,11/10/2018 20:56,6/02/2009 11:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6069,11/10/2018 20:56,10/02/2009 6:59,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6063,11/10/2018 20:56,5/02/2009 1:30,4.3,200, Information Exposure,nan
CVE-2008-6062,11/10/2018 20:56,5/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6061,11/10/2018 20:56,5/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6060,11/10/2018 20:56,5/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6056,11/10/2018 20:56,4/02/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6051,11/10/2018 20:56,4/02/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6045,11/10/2018 20:56,3/02/2009 11:30,6.8,287, Improper Authentication,nan
CVE-2008-6044,11/10/2018 20:56,3/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6043,11/10/2018 20:56,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6039,11/10/2018 20:56,3/02/2009 11:30,6.8,287, Improper Authentication,nan
CVE-2008-6038,11/10/2018 20:56,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6027,11/10/2018 20:56,3/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6008,11/10/2018 20:56,30/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5998,11/10/2018 20:56,28/01/2009 15:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5982,11/10/2018 20:56,27/01/2009 22:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-5964,11/10/2018 20:56,23/01/2009 19:00,6.8,287, Improper Authentication,nan
CVE-2008-5957,11/10/2018 20:56,23/01/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5935,11/10/2018 20:56,21/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5922,11/10/2018 20:56,21/01/2009 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5887,11/10/2018 20:56,12/01/2009 20:00,5.0,20, Improper Input Validation,nan
CVE-2008-5870,11/10/2018 20:56,8/01/2009 18:30,4.3,20, Improper Input Validation,nan
CVE-2008-5869,11/10/2018 20:56,8/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5866,11/10/2018 20:56,7/01/2009 20:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5853,11/10/2018 20:56,6/01/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5828,11/10/2018 20:56,2/01/2009 19:30,5.0,200, Information Exposure,nan
CVE-2008-5810,11/10/2018 20:56,2/01/2009 18:11,10.0,20, Improper Input Validation,nan
CVE-2008-5792,11/10/2018 20:56,31/12/2008 11:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5787,11/10/2018 20:56,31/12/2008 11:30,5.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5757,11/10/2018 20:56,30/12/2008 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5750,11/10/2018 20:56,29/12/2008 15:24,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5749,11/10/2018 20:56,29/12/2008 15:24,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5747,11/10/2018 20:56,29/12/2008 15:24,5.0,399, Resource Management Errors,nan
CVE-2008-5745,11/10/2018 20:56,29/12/2008 15:24,4.3,189, Numeric Errors,nan
CVE-2008-5735,11/10/2018 20:56,26/12/2008 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5731,11/10/2018 20:56,26/12/2008 17:30,4.9,399, Resource Management Errors,nan
CVE-2008-5715,11/10/2018 20:56,24/12/2008 18:29,5.0,20, Improper Input Validation,nan
CVE-2008-5707,11/10/2018 20:56,24/12/2008 18:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5700,11/10/2018 20:56,22/12/2008 15:30,1.9,399, Resource Management Errors,nan
CVE-2008-5693,11/10/2018 20:56,19/12/2008 18:30,5.0,20, Improper Input Validation,nan
CVE-2008-5692,11/10/2018 20:56,19/12/2008 18:30,5.0,287, Improper Authentication,nan
CVE-2008-5689,11/10/2018 20:56,19/12/2008 17:30,7.2,399, Resource Management Errors,nan
CVE-2008-5680,11/10/2018 20:56,19/12/2008 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5679,11/10/2018 20:56,19/12/2008 16:30,9.3,399, Resource Management Errors,nan
CVE-2008-5674,11/10/2018 20:56,19/12/2008 1:52,9.4,20, Improper Input Validation,nan
CVE-2008-5671,11/10/2018 20:56,19/12/2008 1:52,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5670,11/10/2018 20:56,19/12/2008 1:52,6.8,255, Credentials Management,nan
CVE-2008-5669,11/10/2018 20:56,19/12/2008 1:52,5.0,20, Improper Input Validation,nan
CVE-2008-5668,11/10/2018 20:56,19/12/2008 1:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5660,11/10/2018 20:56,17/12/2008 20:30,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-5658,11/10/2018 20:56,17/12/2008 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5625,11/10/2018 20:56,17/12/2008 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5624,11/10/2018 20:56,17/12/2008 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5619,11/10/2018 20:56,17/12/2008 2:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5616,11/10/2018 20:56,17/12/2008 1:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5584,11/10/2018 20:56,15/12/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5583,11/10/2018 20:56,15/12/2008 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5581,11/10/2018 20:56,15/12/2008 18:00,7.5,20, Improper Input Validation,nan
CVE-2008-5580,11/10/2018 20:56,15/12/2008 18:00,7.5,20, Improper Input Validation,nan
CVE-2008-5579,11/10/2018 20:56,15/12/2008 18:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5575,11/10/2018 20:56,15/12/2008 18:00,7.5,287, Improper Authentication,nan
CVE-2008-5569,11/10/2018 20:56,15/12/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5563,11/10/2018 20:56,15/12/2008 18:00,7.8,399, Resource Management Errors,nan
CVE-2008-5558,11/10/2018 20:56,17/12/2008 17:30,4.3,287, Improper Authentication,nan
CVE-2008-5557,11/10/2018 20:56,23/12/2008 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5556,11/10/2018 20:56,12/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5555,11/10/2018 20:56,12/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5554,11/10/2018 20:56,12/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5553,11/10/2018 20:56,12/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5552,11/10/2018 20:56,12/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5551,11/10/2018 20:56,12/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5548,11/10/2018 20:56,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5547,11/10/2018 20:56,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5546,11/10/2018 20:56,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5545,11/10/2018 20:56,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5544,11/10/2018 20:56,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5543,11/10/2018 20:56,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5542,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5541,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5540,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5539,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5538,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5537,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5536,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5535,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5534,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5533,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5532,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5531,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5530,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5529,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5528,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5527,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5526,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5525,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5524,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5523,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5522,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5521,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5520,11/10/2018 20:55,12/12/2008 18:30,9.3,20, Improper Input Validation,nan
CVE-2008-5518,11/10/2018 20:55,17/04/2009 14:30,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5517,11/10/2018 20:55,13/01/2009 17:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5516,11/10/2018 20:55,20/01/2009 16:30,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-5431,11/10/2018 20:55,11/12/2008 15:30,5.0,20, Improper Input Validation,nan
CVE-2008-5429,11/10/2018 20:55,11/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5428,11/10/2018 20:55,11/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5427,11/10/2018 20:55,11/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5426,11/10/2018 20:55,11/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5425,11/10/2018 20:55,11/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5424,11/10/2018 20:55,11/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5420,11/10/2018 20:55,10/12/2008 14:00,7.8,200, Information Exposure,nan
CVE-2008-5419,11/10/2018 20:55,10/12/2008 14:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5403,11/10/2018 20:55,10/12/2008 6:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5402,11/10/2018 20:55,10/12/2008 6:44,10.0,399, Resource Management Errors,nan
CVE-2008-5401,11/10/2018 20:55,10/12/2008 6:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5400,11/10/2018 20:55,10/12/2008 6:44,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5399,11/10/2018 20:55,10/12/2008 6:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5394,11/10/2018 20:55,9/12/2008 0:30,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5393,11/10/2018 20:55,9/12/2008 0:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5381,11/10/2018 20:55,9/12/2008 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5336,11/10/2018 20:54,5/12/2008 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5315,11/10/2018 20:54,3/12/2008 17:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5303,11/10/2018 20:54,1/12/2008 17:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-5302,11/10/2018 20:54,1/12/2008 17:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-5300,11/10/2018 20:54,1/12/2008 17:30,4.9,399, Resource Management Errors,nan
CVE-2008-5285,11/10/2018 20:54,1/12/2008 15:30,5.0,399, Resource Management Errors,nan
CVE-2008-5284,11/10/2018 20:54,29/11/2008 2:30,10.0,189, Numeric Errors,nan
CVE-2008-5282,11/10/2018 20:54,29/11/2008 2:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5276,11/10/2018 20:54,3/12/2008 17:30,9.3,189, Numeric Errors,nan
CVE-2008-5268,11/10/2018 20:54,28/11/2008 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5266,11/10/2018 20:54,28/11/2008 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5264,11/10/2018 20:54,28/11/2008 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5263,11/10/2018 20:54,26/02/2009 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5260,11/10/2018 20:54,26/01/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5259,11/10/2018 20:54,16/04/2009 15:12,9.3,189, Numeric Errors,nan
CVE-2008-5247,11/10/2018 20:54,26/11/2008 1:30,4.3,189, Numeric Errors,nan
CVE-2008-5243,11/10/2018 20:54,26/11/2008 1:30,4.3,20, Improper Input Validation,nan
CVE-2008-5242,11/10/2018 20:54,26/11/2008 1:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5241,11/10/2018 20:54,26/11/2008 1:30,4.3,189, Numeric Errors,nan
CVE-2008-5240,11/10/2018 20:54,26/11/2008 1:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5239,11/10/2018 20:54,26/11/2008 1:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5238,11/10/2018 20:54,26/11/2008 1:30,7.1,189, Numeric Errors,nan
CVE-2008-5237,11/10/2018 20:54,26/11/2008 1:30,10.0,189, Numeric Errors,nan
CVE-2008-5236,11/10/2018 20:54,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5234,11/10/2018 20:54,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5233,11/10/2018 20:54,26/11/2008 1:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5229,11/10/2018 20:54,25/11/2008 23:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5225,11/10/2018 20:54,25/11/2008 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5222,11/10/2018 20:54,25/11/2008 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5211,11/10/2018 20:54,24/11/2008 17:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5176,11/10/2018 20:54,20/11/2008 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5164,11/10/2018 20:54,19/11/2008 18:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5163,11/10/2018 20:54,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5161,11/10/2018 20:54,19/11/2008 17:30,2.6,200, Information Exposure,nan
CVE-2008-5159,11/10/2018 20:54,18/11/2008 21:30,10.0,189, Numeric Errors,nan
CVE-2008-5158,11/10/2018 20:54,18/11/2008 21:30,7.5,287, Improper Authentication,nan
CVE-2008-5124,11/10/2018 20:54,18/11/2008 0:30,7.5,287, Improper Authentication,nan
CVE-2008-5120,11/10/2018 20:54,18/11/2008 0:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5116,11/10/2018 20:54,18/11/2008 0:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5115,11/10/2018 20:54,18/11/2008 0:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5106,11/10/2018 20:54,17/11/2008 18:18,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5105,11/10/2018 20:54,17/11/2008 18:18,5.0,20, Improper Input Validation,nan
CVE-2008-5100,11/10/2018 20:54,17/11/2008 18:18,10.0,310, Cryptographic Issues,nan
CVE-2008-5097,11/10/2018 20:54,14/11/2008 19:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5090,11/10/2018 20:54,14/11/2008 19:20,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5079,11/10/2018 20:54,9/12/2008 0:30,4.9,399, Resource Management Errors,nan
CVE-2008-5077,11/10/2018 20:53,7/01/2009 17:30,5.8,20, Improper Input Validation,nan
CVE-2008-5073,11/10/2018 20:53,14/11/2008 18:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5051,11/10/2018 20:53,13/11/2008 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5050,11/10/2018 20:53,13/11/2008 2:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5044,11/10/2018 20:53,12/11/2008 23:30,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-5043,11/10/2018 20:53,12/11/2008 23:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5036,11/10/2018 20:53,10/11/2008 22:18,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5032,11/10/2018 20:53,10/11/2008 16:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5005,11/10/2018 20:53,10/11/2008 14:12,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4999,11/10/2018 20:53,7/11/2008 19:36,7.8,20, Improper Input Validation,nan
CVE-2008-4990,11/10/2018 20:53,2/02/2009 22:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4989,11/10/2018 20:53,13/11/2008 1:00,4.3,255, Credentials Management,nan
CVE-2008-4932,11/10/2018 20:53,5/11/2008 15:00,9.0,20, Improper Input Validation,nan
CVE-2008-4931,11/10/2018 20:53,5/11/2008 15:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4918,11/10/2018 20:53,4/11/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4876,11/10/2018 20:53,1/11/2008 6:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4875,11/10/2018 20:53,1/11/2008 6:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4874,11/10/2018 20:53,1/11/2008 6:00,5.0,255, Credentials Management,nan
CVE-2008-4871,11/10/2018 20:53,1/11/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4864,11/10/2018 20:53,1/11/2008 0:00,7.5,189, Numeric Errors,nan
CVE-2008-4829,11/10/2018 20:52,25/11/2008 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4828,11/10/2018 20:52,5/05/2009 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4827,11/10/2018 20:52,8/01/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4825,11/10/2018 20:52,1/04/2009 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4800,11/10/2018 20:52,31/10/2008 0:00,5.0,399, Resource Management Errors,nan
CVE-2008-4796,11/10/2018 20:52,30/10/2008 20:56,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4778,11/10/2018 20:52,29/10/2008 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4777,11/10/2018 20:52,29/10/2008 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4775,11/10/2018 20:52,28/10/2008 19:46,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4763,11/10/2018 20:52,28/10/2008 2:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4762,11/10/2018 20:52,28/10/2008 2:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4751,11/10/2018 20:52,27/10/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4742,11/10/2018 20:52,27/10/2008 17:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4741,11/10/2018 20:52,27/10/2008 17:21,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4734,11/10/2018 20:52,24/10/2008 10:30,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4733,11/10/2018 20:52,24/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4732,11/10/2018 20:52,24/10/2008 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4730,11/10/2018 20:52,24/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4727,11/10/2018 20:52,24/10/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4726,11/10/2018 20:52,24/10/2008 0:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4725,11/10/2018 20:52,23/10/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4696,11/10/2018 20:52,23/10/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4685,11/10/2018 20:52,22/10/2008 18:00,5.0,399, Resource Management Errors,nan
CVE-2008-4684,11/10/2018 20:52,22/10/2008 18:00,4.3,399, Resource Management Errors,nan
CVE-2008-4683,11/10/2018 20:52,22/10/2008 18:00,5.0,399, Resource Management Errors,nan
CVE-2008-4682,11/10/2018 20:52,22/10/2008 18:00,5.0,20, Improper Input Validation,nan
CVE-2008-4681,11/10/2018 20:52,22/10/2008 18:00,4.3,399, Resource Management Errors,nan
CVE-2008-4680,11/10/2018 20:52,22/10/2008 18:00,4.3,399, Resource Management Errors,nan
CVE-2008-4662,11/10/2018 20:52,22/10/2008 2:10,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4654,11/10/2018 20:52,22/10/2008 0:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4638,11/10/2018 20:52,21/10/2008 18:00,4.6,200, Information Exposure,nan
CVE-2008-4616,11/10/2018 20:52,20/10/2008 18:14,5.0,20, Improper Input Validation,nan
CVE-2008-4612,11/10/2018 20:52,20/10/2008 18:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4611,11/10/2018 20:52,20/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4589,11/10/2018 20:52,15/10/2008 22:45,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4585,11/10/2018 20:52,15/10/2008 22:45,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4578,11/10/2018 20:52,15/10/2008 20:08,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4558,11/10/2018 20:52,15/10/2008 0:00,6.8,399, Resource Management Errors,nan
CVE-2008-4556,11/10/2018 20:52,14/10/2008 22:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4555,11/10/2018 20:52,14/10/2008 21:10,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4552,11/10/2018 20:52,14/10/2008 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4549,11/10/2018 20:52,14/10/2008 18:12,2.6,20, Improper Input Validation,nan
CVE-2008-4546,11/10/2018 20:52,14/10/2008 15:28,4.3,399, Resource Management Errors,nan
CVE-2008-4540,11/10/2018 20:52,13/10/2008 20:00,2.1,255, Credentials Management,nan
CVE-2008-4532,11/10/2018 20:52,9/10/2008 18:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4512,11/10/2018 20:52,9/10/2008 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4511,11/10/2018 20:52,9/10/2008 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4491,11/10/2018 20:52,8/10/2008 18:00,5.0,200, Information Exposure,nan
CVE-2008-4484,11/10/2018 20:52,8/10/2008 2:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-4478,11/10/2018 20:51,14/10/2008 22:36,10.0,189, Numeric Errors,nan
CVE-2008-4473,11/10/2018 20:51,17/10/2008 19:31,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4472,11/10/2018 20:51,7/10/2008 20:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-4471,11/10/2018 20:51,7/10/2008 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4458,11/10/2018 20:51,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4456,11/10/2018 20:51,6/10/2008 23:25,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4444,11/10/2018 20:51,16/01/2009 21:30,7.1,20, Improper Input Validation,nan
CVE-2008-4441,11/10/2018 20:51,14/10/2008 15:28,7.1,20, Improper Input Validation,nan
CVE-2008-4423,11/10/2018 20:51,3/10/2008 22:22,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4421,11/10/2018 20:51,7/10/2008 20:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4419,11/10/2018 20:51,5/02/2009 0:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4397,11/10/2018 20:51,14/10/2008 21:10,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4382,11/10/2018 20:51,2/10/2008 18:18,5.0,399, Resource Management Errors,nan
CVE-2008-4381,11/10/2018 20:51,2/10/2008 18:18,5.0,399, Resource Management Errors,nan
CVE-2008-4364,11/10/2018 20:51,30/09/2008 23:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4342,11/10/2018 20:51,30/09/2008 17:22,9.3,20, Improper Input Validation,nan
CVE-2008-4340,11/10/2018 20:51,30/09/2008 17:22,4.3,20, Improper Input Validation,nan
CVE-2008-4338,11/10/2018 20:51,30/09/2008 17:22,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4328,11/10/2018 20:51,30/09/2008 17:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4324,11/10/2018 20:51,29/09/2008 20:09,5.0,399, Resource Management Errors,nan
CVE-2008-4322,11/10/2018 20:51,29/09/2008 19:25,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4316,11/10/2018 20:51,14/03/2009 18:30,4.6,189, Numeric Errors,nan
CVE-2008-4309,11/10/2018 20:51,31/10/2008 20:29,5.0,20, Improper Input Validation,nan
CVE-2008-4307,11/10/2018 20:51,13/01/2009 17:00,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-4299,11/10/2018 20:51,29/09/2008 17:17,5.0,189, Numeric Errors,nan
CVE-2008-4298,11/10/2018 20:51,27/09/2008 10:30,5.0,399, Resource Management Errors,nan
CVE-2008-4297,11/10/2018 20:51,27/09/2008 10:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4296,11/10/2018 20:51,27/09/2008 10:30,10.0,255, Credentials Management,nan
CVE-2008-4281,11/10/2018 20:51,10/11/2008 14:12,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4278,11/10/2018 20:51,6/10/2008 19:54,2.1,200, Information Exposure,nan
CVE-2008-4231,11/10/2018 20:51,25/11/2008 23:30,9.3,399, Resource Management Errors,nan
CVE-2008-4207,11/10/2018 20:51,24/09/2008 14:56,5.0,200, Information Exposure,nan
CVE-2008-4206,11/10/2018 20:51,24/09/2008 14:56,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4205,11/10/2018 20:51,24/09/2008 14:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4180,11/10/2018 20:51,23/09/2008 15:25,5.0,200, Information Exposure,nan
CVE-2008-4179,11/10/2018 20:51,23/09/2008 15:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4170,11/10/2018 20:51,22/09/2008 18:34,5.0,200, Information Exposure,nan
CVE-2008-4168,11/10/2018 20:51,22/09/2008 18:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4166,11/10/2018 20:51,22/09/2008 18:34,4.3,189, Numeric Errors,nan
CVE-2008-4162,11/10/2018 20:51,22/09/2008 18:52,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4151,11/10/2018 20:51,24/09/2008 5:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4140,11/10/2018 20:51,24/09/2008 5:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4139,11/10/2018 20:51,24/09/2008 5:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4133,11/10/2018 20:51,19/09/2008 17:15,4.3,20, Improper Input Validation,nan
CVE-2008-4122,11/10/2018 20:51,19/12/2008 17:30,5.0,310, Cryptographic Issues,nan
CVE-2008-4121,11/10/2018 20:50,21/10/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4120,11/10/2018 20:50,29/09/2008 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4119,11/10/2018 20:50,27/09/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4113,11/10/2018 20:50,16/09/2008 23:00,4.7,200, Information Exposure,nan
CVE-2008-4110,11/10/2018 20:50,16/09/2008 22:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4106,11/10/2018 20:50,18/09/2008 17:59,5.1,20, Improper Input Validation,nan
CVE-2008-4102,11/10/2018 20:50,18/09/2008 17:59,7.5,189, Numeric Errors,nan
CVE-2008-4101,11/10/2018 20:50,18/09/2008 17:59,9.3,20, Improper Input Validation,nan
CVE-2008-4080,11/10/2018 20:50,15/09/2008 15:14,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4078,11/10/2018 20:50,15/09/2008 15:14,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4077,11/10/2018 20:50,15/09/2008 15:14,7.8,399, Resource Management Errors,nan
CVE-2008-4072,11/10/2018 20:50,15/09/2008 15:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4041,11/10/2018 20:50,11/09/2008 21:06,4.0,20, Improper Input Validation,nan
CVE-2008-3950,11/10/2018 20:50,16/09/2008 23:00,5.0,189, Numeric Errors,nan
CVE-2008-3948,11/10/2018 20:50,5/09/2008 16:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3936,11/10/2018 20:50,5/09/2008 15:08,7.8,20, Improper Input Validation,nan
CVE-2008-3933,11/10/2018 20:50,4/09/2008 19:41,3.3,20, Improper Input Validation,nan
CVE-2008-3932,11/10/2018 20:50,4/09/2008 19:41,5.0,20, Improper Input Validation,nan
CVE-2008-3922,11/10/2018 20:50,4/09/2008 18:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3921,11/10/2018 20:50,4/09/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3917,11/10/2018 20:50,4/09/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3916,11/10/2018 20:50,4/09/2008 18:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3908,11/10/2018 20:50,4/09/2008 17:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3906,11/10/2018 20:50,4/09/2008 17:41,4.3,20, Improper Input Validation,nan
CVE-2008-3902,11/10/2018 20:50,3/09/2008 19:42,2.1,200, Information Exposure,nan
CVE-2008-3900,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3899,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3898,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3897,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3896,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3895,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3894,11/10/2018 20:50,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3889,11/10/2018 20:50,12/09/2008 16:56,2.1,20, Improper Input Validation,nan
CVE-2008-3888,11/10/2018 20:50,2/09/2008 15:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3881,11/10/2018 20:50,2/09/2008 15:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3880,11/10/2018 20:50,2/09/2008 15:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3874,11/10/2018 20:50,29/08/2008 17:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3871,11/10/2018 20:50,1/04/2009 18:00,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-3870,11/10/2018 20:50,26/05/2009 21:30,10.0,189, Numeric Errors,nan
CVE-2008-3869,11/10/2018 20:50,26/05/2009 21:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3868,11/10/2018 20:50,3/11/2008 19:36,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3867,11/10/2018 20:50,3/11/2008 19:36,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3865,11/10/2018 20:50,21/01/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3864,11/10/2018 20:50,21/01/2009 20:30,5.0,20, Improper Input Validation,nan
CVE-2008-3863,11/10/2018 20:50,23/10/2008 22:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3862,11/10/2018 20:50,23/10/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3854,11/10/2018 20:50,28/08/2008 17:41,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3851,11/10/2018 20:50,27/08/2008 23:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3845,11/10/2018 20:49,27/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3842,11/10/2018 20:49,27/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3841,11/10/2018 20:49,27/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3840,11/10/2018 20:49,27/08/2008 20:41,5.0,255, Credentials Management,nan
CVE-2008-3831,11/10/2018 20:49,20/10/2008 17:59,4.7,399, Resource Management Errors,nan
CVE-2008-3827,11/10/2018 20:49,29/09/2008 19:25,9.3,189, Numeric Errors,nan
CVE-2008-3825,11/10/2018 20:49,3/10/2008 15:07,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-3824,11/10/2018 20:49,12/09/2008 16:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3823,11/10/2018 20:49,12/09/2008 16:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3821,11/10/2018 20:49,16/01/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3775,11/10/2018 20:49,22/08/2008 16:41,2.1,310, Cryptographic Issues,nan
CVE-2008-3770,11/10/2018 20:49,22/08/2008 16:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3769,11/10/2018 20:49,22/08/2008 16:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3768,11/10/2018 20:49,22/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3764,11/10/2018 20:49,21/08/2008 17:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3763,11/10/2018 20:49,21/08/2008 17:41,6.8,20, Improper Input Validation,nan
CVE-2008-3762,11/10/2018 20:49,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3758,11/10/2018 20:49,21/08/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3715,11/10/2018 20:49,19/08/2008 19:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3712,11/10/2018 20:49,19/08/2008 19:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3703,11/10/2018 20:49,18/08/2008 17:41,10.0,287, Improper Authentication,nan
CVE-2008-3697,11/10/2018 20:49,3/09/2008 14:12,5.0,20, Improper Input Validation,nan
CVE-2008-3680,11/10/2018 20:49,14/08/2008 19:41,5.0,20, Improper Input Validation,nan
CVE-2008-3676,11/10/2018 20:49,14/08/2008 19:41,4.3,20, Improper Input Validation,nan
CVE-2008-3664,11/10/2018 20:49,5/09/2008 16:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3663,11/10/2018 20:49,24/09/2008 14:56,5.0,310, Cryptographic Issues,nan
CVE-2008-3662,11/10/2018 20:49,18/09/2008 18:00,5.0,310, Cryptographic Issues,nan
CVE-2008-3661,11/10/2018 20:49,23/09/2008 15:25,5.0,310, Cryptographic Issues,nan
CVE-2008-3660,11/10/2018 20:49,15/08/2008 0:41,5.0,20, Improper Input Validation,nan
CVE-2008-3659,11/10/2018 20:49,15/08/2008 0:41,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3658,11/10/2018 20:49,15/08/2008 0:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3657,11/10/2018 20:49,13/08/2008 1:41,7.5,20, Improper Input Validation,nan
CVE-2008-3656,11/10/2018 20:48,13/08/2008 1:41,7.8,399, Resource Management Errors,nan
CVE-2008-3655,11/10/2018 20:48,13/08/2008 1:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3641,11/10/2018 20:48,10/10/2008 10:30,10.0,399, Resource Management Errors,nan
CVE-2008-3636,11/10/2018 20:48,11/09/2008 1:13,7.2,189, Numeric Errors,nan
CVE-2008-3627,11/10/2018 20:48,11/09/2008 1:13,9.3,399, Resource Management Errors,nan
CVE-2008-3625,11/10/2018 20:48,11/09/2008 1:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3607,11/10/2018 20:48,12/08/2008 19:41,5.0,20, Improper Input Validation,nan
CVE-2008-3606,11/10/2018 20:48,12/08/2008 19:41,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3600,11/10/2018 20:48,12/08/2008 19:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3587,11/10/2018 20:48,11/08/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3582,11/10/2018 20:48,10/08/2008 21:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3575,11/10/2018 20:48,10/08/2008 20:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3574,11/10/2018 20:48,10/08/2008 20:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3569,11/10/2018 20:48,10/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3568,11/10/2018 20:48,10/08/2008 20:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3563,11/10/2018 20:48,10/08/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3556,11/10/2018 20:48,8/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3553,11/10/2018 20:48,8/08/2008 19:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3546,11/10/2018 20:48,7/08/2008 21:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3528,11/10/2018 20:48,27/09/2008 10:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-3514,11/10/2018 20:48,13/08/2008 12:42,5.0,200, Information Exposure,nan
CVE-2008-3513,11/10/2018 20:48,7/08/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3512,11/10/2018 20:48,7/08/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3494,11/10/2018 20:48,6/08/2008 18:41,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-3492,11/10/2018 20:48,6/08/2008 18:41,5.0,20, Improper Input Validation,nan
CVE-2008-3485,11/10/2018 20:48,6/08/2008 17:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3480,11/10/2018 20:48,29/08/2008 17:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3448,11/10/2018 20:48,4/08/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3432,11/10/2018 20:48,10/10/2008 10:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3431,11/10/2018 20:48,5/08/2008 19:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3411,11/10/2018 20:48,31/07/2008 17:41,10.0,287, Improper Authentication,nan
CVE-2008-3410,11/10/2018 20:48,31/07/2008 17:41,5.0,399, Resource Management Errors,nan
CVE-2008-3409,11/10/2018 20:48,31/07/2008 17:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3404,11/10/2018 20:48,31/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3402,11/10/2018 20:48,31/07/2008 16:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3401,11/10/2018 20:48,31/07/2008 16:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3400,11/10/2018 20:48,31/07/2008 16:41,4.3,200, Information Exposure,nan
CVE-2008-3399,11/10/2018 20:48,31/07/2008 16:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3398,11/10/2018 20:48,31/07/2008 16:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3396,11/10/2018 20:48,31/07/2008 16:41,5.0,20, Improper Input Validation,nan
CVE-2008-3390,11/10/2018 20:48,31/07/2008 16:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3389,11/10/2018 20:48,5/08/2008 19:41,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3388,11/10/2018 20:48,30/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3384,11/10/2018 20:48,30/07/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3380,11/10/2018 20:48,30/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3375,11/10/2018 20:48,30/07/2008 17:41,7.5,287, Improper Authentication,nan
CVE-2008-3374,11/10/2018 20:48,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3369,11/10/2018 20:48,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3367,11/10/2018 20:48,30/07/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3365,11/10/2018 20:48,30/07/2008 17:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3363,11/10/2018 20:48,30/07/2008 16:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3358,11/10/2018 20:48,28/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3357,11/10/2018 20:48,5/08/2008 19:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3356,11/10/2018 20:48,5/08/2008 19:41,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-3348,11/10/2018 20:48,28/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3347,11/10/2018 20:48,28/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3343,11/10/2018 20:48,28/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3342,11/10/2018 20:48,28/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3327,11/10/2018 20:48,25/07/2008 16:41,4.3,200, Information Exposure,nan
CVE-2008-3326,11/10/2018 20:47,25/07/2008 16:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3324,11/10/2018 20:47,18/08/2008 17:41,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3323,11/10/2018 20:47,28/07/2008 17:41,7.6,20, Improper Input Validation,nan
CVE-2008-3315,11/10/2018 20:47,25/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3314,11/10/2018 20:47,25/07/2008 16:41,5.0,20, Improper Input Validation,nan
CVE-2008-3311,11/10/2018 20:47,25/07/2008 16:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3298,11/10/2018 20:47,25/07/2008 13:41,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3297,11/10/2018 20:47,25/07/2008 13:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3294,11/10/2018 20:47,24/07/2008 18:41,3.7,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3293,11/10/2018 20:47,24/07/2008 18:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3290,11/10/2018 20:47,24/07/2008 17:41,5.0,399, Resource Management Errors,nan
CVE-2008-3289,11/10/2018 20:47,24/07/2008 17:41,4.3,200, Information Exposure,nan
CVE-2008-3288,11/10/2018 20:47,24/07/2008 17:41,5.0,310, Cryptographic Issues,nan
CVE-2008-3287,11/10/2018 20:47,24/07/2008 17:41,5.0,20, Improper Input Validation,nan
CVE-2008-3285,11/10/2018 20:47,24/07/2008 17:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3281,11/10/2018 20:47,27/08/2008 20:41,4.3,399, Resource Management Errors,nan
CVE-2008-3264,11/10/2018 20:47,24/07/2008 15:41,7.8,287, Improper Authentication,nan
CVE-2008-3263,11/10/2018 20:47,22/07/2008 23:41,7.8,399, Resource Management Errors,nan
CVE-2008-3262,11/10/2018 20:47,22/07/2008 17:41,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3261,11/10/2018 20:47,22/07/2008 17:41,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3260,11/10/2018 20:47,22/07/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3248,11/10/2018 20:47,21/10/2008 18:00,4.6,200, Information Exposure,nan
CVE-2008-3208,11/10/2018 20:47,18/07/2008 15:13,5.0,20, Improper Input Validation,nan
CVE-2008-3206,11/10/2018 20:47,18/07/2008 15:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3185,11/10/2018 20:47,15/07/2008 22:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3184,11/10/2018 20:47,15/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3183,11/10/2018 20:47,15/07/2008 18:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3175,11/10/2018 20:47,1/08/2008 14:41,10.0,189, Numeric Errors,nan
CVE-2008-3151,11/10/2018 20:47,11/07/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3149,11/10/2018 20:47,11/07/2008 19:41,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3147,11/10/2018 20:47,11/07/2008 19:41,4.7,200, Information Exposure,nan
CVE-2008-3146,11/10/2018 20:47,2/09/2008 14:24,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3145,11/10/2018 20:47,16/07/2008 18:41,5.0,20, Improper Input Validation,nan
CVE-2008-3144,11/10/2018 20:47,1/08/2008 14:41,5.0,189, Numeric Errors,nan
CVE-2008-3142,11/10/2018 20:47,1/08/2008 14:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3137,11/10/2018 20:47,10/07/2008 23:41,4.3,20, Improper Input Validation,nan
CVE-2008-3135,11/10/2018 20:46,10/07/2008 23:41,7.8,189, Numeric Errors,nan
CVE-2008-3116,11/10/2018 20:46,10/07/2008 17:41,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-3115,11/10/2018 20:46,9/07/2008 23:41,7.5,16, Configuration,nan
CVE-2008-3110,11/10/2018 20:46,9/07/2008 23:41,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-3109,11/10/2018 20:46,9/07/2008 23:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3106,11/10/2018 20:46,9/07/2008 23:41,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-3105,11/10/2018 20:46,9/07/2008 23:41,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-3102,11/10/2018 20:45,24/09/2008 11:42,5.0,310, Cryptographic Issues,nan
CVE-2008-3101,11/10/2018 20:45,3/09/2008 14:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3100,11/10/2018 20:45,29/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3098,11/10/2018 20:45,24/09/2008 14:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3034,11/10/2018 20:45,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3033,11/10/2018 20:45,7/07/2008 18:41,9.3,287, Improper Authentication,nan
CVE-2008-3024,11/10/2018 20:45,7/07/2008 17:41,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2995,11/10/2018 20:45,3/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2994,11/10/2018 20:45,3/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2988,11/10/2018 20:45,2/07/2008 17:14,7.5,20, Improper Input Validation,nan
CVE-2008-2987,11/10/2018 20:45,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2970,11/10/2018 20:45,2/07/2008 17:14,7.5,20, Improper Input Validation,nan
CVE-2008-2969,11/10/2018 20:45,2/07/2008 17:14,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2968,11/10/2018 20:45,2/07/2008 17:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2967,11/10/2018 20:45,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2956,11/10/2018 20:45,1/07/2008 22:41,5.0,399, Resource Management Errors,nan
CVE-2008-2955,11/10/2018 20:45,1/07/2008 22:41,4.3,20, Improper Input Validation,nan
CVE-2008-2952,11/10/2018 20:45,1/07/2008 21:41,5.0,399, Resource Management Errors,nan
CVE-2008-2950,11/10/2018 20:45,7/07/2008 23:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2942,11/10/2018 20:45,30/06/2008 20:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2937,11/10/2018 20:45,18/08/2008 19:41,1.9,200, Information Exposure,nan
CVE-2008-2936,11/10/2018 20:45,18/08/2008 19:41,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2935,11/10/2018 20:45,1/08/2008 14:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2933,11/10/2018 20:45,17/07/2008 13:41,2.6,20, Improper Input Validation,nan
CVE-2008-2927,11/10/2018 20:44,7/07/2008 23:41,6.8,189, Numeric Errors,nan
CVE-2008-2926,11/10/2018 20:44,12/08/2008 23:41,7.2,20, Improper Input Validation,nan
CVE-2008-2917,11/10/2018 20:44,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2916,11/10/2018 20:44,30/06/2008 18:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2914,11/10/2018 20:44,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2884,11/10/2018 20:44,27/06/2008 18:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2879,11/10/2018 20:44,26/06/2008 17:41,6.4,287, Improper Authentication,nan
CVE-2008-2864,11/10/2018 20:44,25/06/2008 12:36,5.0,200, Information Exposure,nan
CVE-2008-2863,11/10/2018 20:44,25/06/2008 12:36,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2862,11/10/2018 20:44,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2861,11/10/2018 20:44,25/06/2008 12:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2820,11/10/2018 20:44,23/06/2008 17:41,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2811,11/10/2018 20:44,7/07/2008 23:41,10.0,399, Resource Management Errors,nan
CVE-2008-2810,11/10/2018 20:44,7/07/2008 23:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2809,11/10/2018 20:44,8/07/2008 23:41,4.0,20, Improper Input Validation,nan
CVE-2008-2808,11/10/2018 20:44,7/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2807,11/10/2018 20:44,7/07/2008 23:41,5.0,200, Information Exposure,nan
CVE-2008-2805,11/10/2018 20:43,7/07/2008 23:41,5.0,20, Improper Input Validation,nan
CVE-2008-2803,11/10/2018 20:43,7/07/2008 23:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2802,11/10/2018 20:43,7/07/2008 23:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2801,11/10/2018 20:43,7/07/2008 23:41,7.5,287, Improper Authentication,nan
CVE-2008-2800,11/10/2018 20:43,7/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2799,11/10/2018 20:43,7/07/2008 23:41,10.0,399, Resource Management Errors,nan
CVE-2008-2798,11/10/2018 20:43,7/07/2008 23:41,10.0,399, Resource Management Errors,nan
CVE-2008-2787,11/10/2018 20:43,20/06/2008 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2785,11/10/2018 20:42,19/06/2008 21:41,9.3,189, Numeric Errors,nan
CVE-2008-2781,11/10/2018 20:42,19/06/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2769,11/10/2018 20:42,18/06/2008 22:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2751,11/10/2018 20:42,18/06/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2748,11/10/2018 20:42,18/06/2008 19:41,5.0,20, Improper Input Validation,nan
CVE-2008-2747,11/10/2018 20:42,18/06/2008 19:41,2.1,200, Information Exposure,nan
CVE-2008-2744,11/10/2018 20:42,17/06/2008 15:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2718,11/10/2018 20:42,16/06/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2717,11/10/2018 20:42,16/06/2008 22:41,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2711,11/10/2018 20:42,16/06/2008 21:41,4.3,20, Improper Input Validation,nan
CVE-2008-2704,11/10/2018 20:42,13/06/2008 19:41,5.0,20, Improper Input Validation,nan
CVE-2008-2703,11/10/2018 20:42,13/06/2008 19:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2701,11/10/2018 20:42,13/06/2008 19:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2698,11/10/2018 20:42,13/06/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2672,11/10/2018 20:42,12/06/2008 2:32,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2671,11/10/2018 20:42,12/06/2008 2:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2670,11/10/2018 20:42,12/06/2008 2:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2669,11/10/2018 20:42,12/06/2008 2:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2668,11/10/2018 20:42,12/06/2008 2:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2666,11/10/2018 20:42,20/06/2008 1:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2665,11/10/2018 20:42,20/06/2008 1:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2652,11/10/2018 20:42,10/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2644,11/10/2018 20:42,10/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2642,11/10/2018 20:42,10/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2639,11/10/2018 20:42,16/06/2008 18:41,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2637,11/10/2018 20:42,10/06/2008 0:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2636,11/10/2018 20:41,10/06/2008 0:32,7.8,20, Improper Input Validation,nan
CVE-2008-2633,11/10/2018 20:41,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2574,11/10/2018 20:41,6/06/2008 22:32,7.5,20, Improper Input Validation,nan
CVE-2008-2573,11/10/2018 20:41,6/06/2008 18:32,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2572,11/10/2018 20:41,6/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2565,11/10/2018 20:41,6/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2554,11/10/2018 20:41,5/06/2008 21:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2551,11/10/2018 20:41,4/06/2008 23:32,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-2547,11/10/2018 20:41,4/06/2008 19:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2542,11/10/2018 20:41,5/06/2008 20:32,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2541,11/10/2018 20:41,4/06/2008 20:32,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2527,11/10/2018 20:41,3/06/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2511,11/10/2018 20:41,2/06/2008 21:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2510,11/10/2018 20:41,29/05/2008 23:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2509,11/10/2018 20:41,29/05/2008 23:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2507,11/10/2018 20:41,29/05/2008 23:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2495,11/10/2018 20:41,28/05/2008 15:32,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2494,11/10/2018 20:41,28/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2493,11/10/2018 20:41,28/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2492,11/10/2018 20:41,28/05/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2491,11/10/2018 20:41,28/05/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2485,11/10/2018 20:41,28/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2482,11/10/2018 20:41,28/05/2008 15:32,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2479,11/10/2018 20:41,28/05/2008 15:32,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2478,11/10/2018 20:41,28/05/2008 15:32,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2474,11/10/2018 20:41,29/09/2008 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2468,11/10/2018 20:41,18/09/2008 15:04,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2460,11/10/2018 20:41,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2458,11/10/2018 20:41,27/05/2008 14:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2454,11/10/2018 20:41,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2439,11/10/2018 20:41,3/10/2008 15:07,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2438,11/10/2018 20:41,28/04/2009 16:30,10.0,189, Numeric Errors,nan
CVE-2008-2437,11/10/2018 20:41,16/09/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2436,11/10/2018 20:41,5/09/2008 16:08,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2435,11/10/2018 20:41,23/12/2008 18:30,9.3,399, Resource Management Errors,nan
CVE-2008-2434,11/10/2018 20:41,23/12/2008 18:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2433,11/10/2018 20:41,27/08/2008 20:41,7.5,287, Improper Authentication,nan
CVE-2008-2430,11/10/2018 20:41,7/07/2008 23:41,9.3,189, Numeric Errors,nan
CVE-2008-2428,11/10/2018 20:41,18/06/2008 19:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2427,11/10/2018 20:41,24/06/2008 19:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2426,11/10/2018 20:41,2/06/2008 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2421,11/10/2018 20:41,23/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2411,11/10/2018 20:41,22/05/2008 13:09,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2407,11/10/2018 20:41,23/05/2008 15:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2398,11/10/2018 20:41,21/05/2008 13:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2391,11/10/2018 20:41,21/05/2008 13:24,7.8,20, Improper Input Validation,nan
CVE-2008-2382,11/10/2018 20:41,24/12/2008 18:29,5.0,399, Resource Management Errors,nan
CVE-2008-2376,11/10/2018 20:41,9/07/2008 0:41,7.5,189, Numeric Errors,nan
CVE-2008-2371,11/10/2018 20:41,7/07/2008 23:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2364,11/10/2018 20:40,13/06/2008 18:41,5.0,399, Resource Management Errors,nan
CVE-2008-2362,11/10/2018 20:40,16/06/2008 19:41,10.0,189, Numeric Errors,nan
CVE-2008-2361,11/10/2018 20:40,16/06/2008 19:41,6.8,189, Numeric Errors,nan
CVE-2008-2360,11/10/2018 20:40,16/06/2008 19:41,9.0,189, Numeric Errors,nan
CVE-2008-2357,11/10/2018 20:40,21/05/2008 13:24,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2352,11/10/2018 20:40,20/05/2008 17:20,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2339,11/10/2018 20:40,19/05/2008 13:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2333,11/10/2018 20:40,23/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2327,11/10/2018 20:40,27/08/2008 20:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2320,11/10/2018 20:40,4/08/2008 1:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2317,11/10/2018 20:40,14/07/2008 18:41,9.3,399, Resource Management Errors,nan
CVE-2008-2316,11/10/2018 20:40,1/08/2008 14:41,7.5,189, Numeric Errors,nan
CVE-2008-2315,11/10/2018 20:40,1/08/2008 14:41,7.5,189, Numeric Errors,nan
CVE-2008-2304,11/10/2018 20:40,14/07/2008 18:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2301,11/10/2018 20:40,18/05/2008 14:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2286,11/10/2018 20:40,18/05/2008 14:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2272,11/10/2018 20:40,16/05/2008 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2242,11/10/2018 20:39,21/05/2008 13:24,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2241,11/10/2018 20:39,21/05/2008 13:24,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2234,11/10/2018 20:39,18/08/2008 17:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2214,11/10/2018 20:39,14/05/2008 18:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2213,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2212,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2211,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2210,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2209,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2208,11/10/2018 20:39,14/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2207,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2206,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2205,11/10/2018 20:39,14/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2204,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2203,11/10/2018 20:39,14/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2202,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2201,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2200,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2199,11/10/2018 20:39,14/05/2008 17:20,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2198,11/10/2018 20:39,14/05/2008 17:20,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2196,11/10/2018 20:39,14/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2191,11/10/2018 20:39,14/05/2008 17:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2190,11/10/2018 20:39,14/05/2008 17:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2189,11/10/2018 20:39,14/05/2008 17:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2188,11/10/2018 20:39,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2187,11/10/2018 20:39,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2186,11/10/2018 20:39,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2178,11/10/2018 20:39,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2176,11/10/2018 20:39,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2167,11/10/2018 20:39,13/05/2008 20:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2165,11/10/2018 20:39,16/05/2008 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2145,11/10/2018 20:39,12/05/2008 19:20,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2138,11/10/2018 20:39,12/05/2008 16:20,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2135,11/10/2018 20:39,9/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2131,11/10/2018 20:39,9/05/2008 18:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2119,11/10/2018 20:39,4/06/2008 19:32,4.3,20, Improper Input Validation,nan
CVE-2008-2118,11/10/2018 20:39,8/05/2008 16:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2117,11/10/2018 20:39,8/05/2008 16:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2116,11/10/2018 20:39,8/05/2008 16:20,4.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2115,11/10/2018 20:39,8/05/2008 16:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2110,11/10/2018 20:39,7/05/2008 23:20,7.5,20, Improper Input Validation,nan
CVE-2008-2108,11/10/2018 20:39,7/05/2008 21:20,7.5,189, Numeric Errors,nan
CVE-2008-2107,11/10/2018 20:39,7/05/2008 21:20,7.5,189, Numeric Errors,nan
CVE-2008-2106,11/10/2018 20:39,7/05/2008 20:20,6.8,20, Improper Input Validation,nan
CVE-2008-2101,11/10/2018 20:39,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-2099,11/10/2018 20:39,2/06/2008 21:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2098,11/10/2018 20:39,2/06/2008 21:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2097,11/10/2018 20:39,5/06/2008 20:32,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2096,11/10/2018 20:39,7/05/2008 19:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2094,11/10/2018 20:39,6/05/2008 16:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2087,11/10/2018 20:39,6/05/2008 15:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2086,11/10/2018 20:39,5/12/2008 2:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2083,11/10/2018 20:39,5/05/2008 17:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2075,11/10/2018 20:39,5/05/2008 16:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2073,11/10/2018 20:39,5/05/2008 16:20,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2072,11/10/2018 20:39,5/05/2008 16:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2071,11/10/2018 20:39,12/05/2008 16:20,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2070,11/10/2018 20:39,12/05/2008 16:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2069,11/10/2018 20:39,2/05/2008 23:20,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2067,11/10/2018 20:39,2/05/2008 23:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2066,11/10/2018 20:39,2/05/2008 23:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2050,11/10/2018 20:38,5/05/2008 17:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2045,11/10/2018 20:38,1/05/2008 19:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2044,11/10/2018 20:38,1/05/2008 19:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2036,11/10/2018 20:38,30/04/2008 16:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2027,11/10/2018 20:38,30/04/2008 14:10,5.8,200, Information Exposure,nan
CVE-2008-2026,11/10/2018 20:38,30/04/2008 14:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2020,11/10/2018 20:38,30/04/2008 1:07,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2019,11/10/2018 20:38,30/04/2008 1:07,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2017,11/10/2018 20:38,30/04/2008 1:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2016,11/10/2018 20:38,30/04/2008 1:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2014,11/10/2018 20:38,30/04/2008 1:07,5.0,399, Resource Management Errors,nan
CVE-2008-2008,11/10/2018 20:38,29/04/2008 13:09,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2006,11/10/2018 20:38,22/05/2008 13:09,4.3,20, Improper Input Validation,nan
CVE-2008-2005,11/10/2018 20:38,6/05/2008 15:20,5.0,399, Resource Management Errors,nan
CVE-2008-2003,11/10/2018 20:38,28/04/2008 20:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2002,11/10/2018 20:38,28/04/2008 20:05,7.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2001,11/10/2018 20:38,28/04/2008 20:05,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1997,11/10/2018 20:38,28/04/2008 20:05,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1993,11/10/2018 20:38,27/04/2008 21:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1992,11/10/2018 20:38,27/04/2008 21:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1991,11/10/2018 20:38,27/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1990,11/10/2018 20:38,27/04/2008 21:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1979,11/10/2018 20:38,27/04/2008 20:05,5.0,189, Numeric Errors,nan
CVE-2008-1974,11/10/2018 20:38,27/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1969,11/10/2018 20:38,27/04/2008 18:05,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1968,11/10/2018 20:38,27/04/2008 18:05,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1967,11/10/2018 20:38,27/04/2008 18:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1966,11/10/2018 20:38,27/04/2008 18:05,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1965,11/10/2018 20:38,25/04/2008 19:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1964,11/10/2018 20:38,25/04/2008 19:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1956,11/10/2018 20:38,25/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1950,11/10/2018 20:38,21/05/2008 13:24,5.0,189, Numeric Errors,nan
CVE-2008-1949,11/10/2018 20:38,21/05/2008 13:24,9.3,287, Improper Authentication,nan
CVE-2008-1948,11/10/2018 20:38,21/05/2008 13:24,10.0,189, Numeric Errors,nan
CVE-2008-1936,11/10/2018 20:38,25/04/2008 6:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1933,11/10/2018 20:38,25/04/2008 6:05,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1932,11/10/2018 20:38,25/04/2008 6:05,6.8,189, Numeric Errors,nan
CVE-2008-1931,11/10/2018 20:38,25/04/2008 6:05,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1930,11/10/2018 20:38,28/04/2008 20:05,7.5,287, Improper Authentication,nan
CVE-2008-1927,11/10/2018 20:37,24/04/2008 5:05,5.0,399, Resource Management Errors,nan
CVE-2008-1926,11/10/2018 20:37,24/04/2008 5:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1921,11/10/2018 20:37,23/04/2008 13:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1920,11/10/2018 20:37,23/04/2008 13:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1914,11/10/2018 20:37,22/04/2008 4:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1912,11/10/2018 20:37,22/04/2008 4:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1910,11/10/2018 20:37,22/04/2008 4:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1898,11/10/2018 20:37,21/04/2008 17:05,9.3,20, Improper Input Validation,nan
CVE-2008-1897,11/10/2018 20:37,23/04/2008 16:05,4.3,287, Improper Authentication,nan
CVE-2008-1896,11/10/2018 20:37,18/04/2008 22:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1895,11/10/2018 20:37,18/04/2008 22:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1888,11/10/2018 20:37,18/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1887,11/10/2018 20:37,18/04/2008 17:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1883,11/10/2018 20:37,18/04/2008 15:05,6.8,287, Improper Authentication,nan
CVE-2008-1865,11/10/2018 20:37,17/04/2008 19:05,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1860,11/10/2018 20:37,17/04/2008 19:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1846,11/10/2018 20:37,16/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1842,11/10/2018 20:37,16/04/2008 17:05,10.0,189, Numeric Errors,nan
CVE-2008-1808,11/10/2018 20:37,16/06/2008 19:41,7.5,189, Numeric Errors,nan
CVE-2008-1807,11/10/2018 20:36,16/06/2008 19:41,7.5,189, Numeric Errors,nan
CVE-2008-1806,11/10/2018 20:36,16/06/2008 19:41,7.5,189, Numeric Errors,nan
CVE-2008-1795,11/10/2018 20:36,15/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1786,11/10/2018 20:36,16/04/2008 17:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1770,11/10/2018 20:36,4/06/2008 21:32,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1763,11/10/2018 20:36,12/04/2008 20:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1757,11/10/2018 20:36,12/04/2008 20:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1753,11/10/2018 20:36,11/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1738,11/10/2018 20:36,30/04/2008 0:10,2.1,20, Improper Input Validation,nan
CVE-2008-1737,11/10/2018 20:36,30/04/2008 0:10,6.9,20, Improper Input Validation,nan
CVE-2008-1733,11/10/2018 20:36,11/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1724,11/10/2018 20:36,11/04/2008 19:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1721,11/10/2018 20:36,10/04/2008 19:05,7.5,189, Numeric Errors,nan
CVE-2008-1717,11/10/2018 20:36,9/04/2008 21:05,5.0,200, Information Exposure,nan
CVE-2008-1716,11/10/2018 20:36,9/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1708,11/10/2018 20:36,9/04/2008 19:05,4.3,399, Resource Management Errors,nan
CVE-2008-1707,11/10/2018 20:36,9/04/2008 19:05,4.3,399, Resource Management Errors,nan
CVE-2008-1706,11/10/2018 20:36,9/04/2008 19:05,4.3,189, Numeric Errors,nan
CVE-2008-1705,11/10/2018 20:36,9/04/2008 19:05,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-1702,11/10/2018 20:36,8/04/2008 18:05,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1699,11/10/2018 20:36,8/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1686,11/10/2018 20:36,8/04/2008 18:05,9.3,189, Numeric Errors,nan
CVE-2008-1672,11/10/2018 20:36,29/05/2008 16:32,4.3,287, Improper Authentication,nan
CVE-2008-1657,11/10/2018 20:35,2/04/2008 18:44,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1651,11/10/2018 20:35,2/04/2008 17:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1650,11/10/2018 20:35,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1649,11/10/2018 20:35,2/04/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1641,11/10/2018 20:35,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1637,11/10/2018 20:35,2/04/2008 17:44,6.8,189, Numeric Errors,nan
CVE-2008-1631,11/10/2018 20:35,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1630,11/10/2018 20:35,2/04/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1625,11/10/2018 20:35,2/04/2008 17:44,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1620,11/10/2018 20:35,2/04/2008 17:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1613,11/10/2018 20:35,22/04/2008 4:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1609,11/10/2018 20:35,1/04/2008 16:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1602,11/10/2018 20:35,6/04/2008 23:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1585,11/10/2018 20:35,10/06/2008 18:32,6.8,20, Improper Input Validation,nan
CVE-2008-1584,11/10/2018 20:35,10/06/2008 18:32,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1581,11/10/2018 20:35,10/06/2008 18:32,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1565,11/10/2018 20:35,31/03/2008 22:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1560,11/10/2018 20:35,31/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1557,11/10/2018 20:35,31/03/2008 17:44,5.0,200, Information Exposure,nan
CVE-2008-1556,11/10/2018 20:35,31/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1555,11/10/2018 20:35,31/03/2008 17:44,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1554,11/10/2018 20:35,31/03/2008 17:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1552,11/10/2018 20:35,31/03/2008 17:44,6.8,189, Numeric Errors,nan
CVE-2008-1549,11/10/2018 20:35,31/03/2008 17:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1548,11/10/2018 20:35,31/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1547,11/10/2018 20:35,21/10/2008 1:18,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1545,11/10/2018 20:35,28/03/2008 23:44,4.3,20, Improper Input Validation,nan
CVE-2008-1541,11/10/2018 20:35,28/03/2008 18:44,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1537,11/10/2018 20:35,28/03/2008 18:44,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1534,11/10/2018 20:35,28/03/2008 18:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1529,11/10/2018 20:35,26/03/2008 10:44,5.0,255, Credentials Management,nan
CVE-2008-1528,11/10/2018 20:35,26/03/2008 10:44,4.0,287, Improper Authentication,nan
CVE-2008-1527,11/10/2018 20:35,26/03/2008 10:44,7.5,310, Cryptographic Issues,nan
CVE-2008-1526,11/10/2018 20:35,26/03/2008 10:44,5.0,310, Cryptographic Issues,nan
CVE-2008-1525,11/10/2018 20:35,26/03/2008 10:44,5.0,16, Configuration,nan
CVE-2008-1524,11/10/2018 20:35,26/03/2008 10:44,7.5,16, Configuration,nan
CVE-2008-1523,11/10/2018 20:35,26/03/2008 10:44,5.0,200, Information Exposure,nan
CVE-2008-1522,11/10/2018 20:35,26/03/2008 10:44,7.5,16, Configuration,nan
CVE-2008-1521,11/10/2018 20:35,26/03/2008 10:44,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1510,11/10/2018 20:35,25/03/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1499,11/10/2018 20:35,25/03/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1497,11/10/2018 20:35,25/03/2008 19:44,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1494,11/10/2018 20:35,25/03/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1493,11/10/2018 20:35,25/03/2008 19:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1492,11/10/2018 20:35,25/03/2008 19:44,7.5,20, Improper Input Validation,nan
CVE-2008-1491,11/10/2018 20:35,25/03/2008 19:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1484,11/10/2018 20:35,24/03/2008 23:44,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1483,11/10/2018 20:35,24/03/2008 23:44,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-1482,11/10/2018 20:34,24/03/2008 22:44,6.8,189, Numeric Errors,nan
CVE-2008-1478,11/10/2018 20:34,24/03/2008 22:44,5.0,20, Improper Input Validation,nan
CVE-2008-1477,11/10/2018 20:34,24/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1472,11/10/2018 20:34,24/03/2008 22:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1471,11/10/2018 20:34,24/03/2008 22:44,7.2,399, Resource Management Errors,nan
CVE-2008-1470,11/10/2018 20:34,24/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1461,11/10/2018 20:34,24/03/2008 18:44,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1458,11/10/2018 20:34,24/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1431,11/10/2018 20:33,20/03/2008 18:44,2.1,310, Cryptographic Issues,nan
CVE-2008-1426,11/10/2018 20:33,20/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1415,11/10/2018 20:33,20/03/2008 10:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1414,11/10/2018 20:33,20/03/2008 10:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1413,11/10/2018 20:33,20/03/2008 10:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1411,11/10/2018 20:33,20/03/2008 10:44,5.0,20, Improper Input Validation,nan
CVE-2008-1410,11/10/2018 20:33,20/03/2008 10:44,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1403,11/10/2018 20:33,20/03/2008 10:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1402,11/10/2018 20:33,20/03/2008 10:44,7.1,399, Resource Management Errors,nan
CVE-2008-1401,11/10/2018 20:33,20/03/2008 10:44,4.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-1400,11/10/2018 20:33,20/03/2008 10:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1396,11/10/2018 20:33,20/03/2008 0:44,4.3,255, Credentials Management,nan
CVE-2008-1395,11/10/2018 20:33,20/03/2008 0:44,7.5,287, Improper Authentication,nan
CVE-2008-1394,11/10/2018 20:33,20/03/2008 0:44,7.5,255, Credentials Management,nan
CVE-2008-1393,11/10/2018 20:33,20/03/2008 0:44,10.0,255, Credentials Management,nan
CVE-2008-1392,11/10/2018 20:33,20/03/2008 0:44,10.0,16, Configuration,nan
CVE-2008-1391,11/10/2018 20:33,27/03/2008 17:44,7.5,189, Numeric Errors,nan
CVE-2008-1390,11/10/2018 20:33,24/03/2008 17:44,9.3,255, Credentials Management,nan
CVE-2008-1386,11/10/2018 20:33,23/04/2008 13:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1385,11/10/2018 20:33,23/04/2008 13:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1384,11/10/2018 20:33,27/03/2008 17:44,5.0,189, Numeric Errors,nan
CVE-2008-1382,11/10/2018 20:32,14/04/2008 16:05,7.5,189, Numeric Errors,nan
CVE-2008-1380,11/10/2018 20:32,17/04/2008 19:05,9.3,399, Resource Management Errors,nan
CVE-2008-1379,11/10/2018 20:32,16/06/2008 19:41,6.8,189, Numeric Errors,nan
CVE-2008-1377,11/10/2018 20:32,16/06/2008 19:41,9.0,189, Numeric Errors,nan
CVE-2008-1375,11/10/2018 20:32,2/05/2008 16:05,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-1374,11/10/2018 20:32,4/04/2008 0:44,5.4,189, Numeric Errors,nan
CVE-2008-1373,11/10/2018 20:32,4/04/2008 0:44,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1372,11/10/2018 20:32,18/03/2008 21:44,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1368,11/10/2018 20:32,18/03/2008 0:44,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1362,11/10/2018 20:32,20/03/2008 0:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1361,11/10/2018 20:32,20/03/2008 0:44,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1357,11/10/2018 20:31,17/03/2008 17:44,5.4,134, Use of Externally-Controlled Format String,nan
CVE-2008-1352,11/10/2018 20:31,17/03/2008 16:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1350,11/10/2018 20:31,17/03/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1348,11/10/2018 20:31,17/03/2008 16:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1347,11/10/2018 20:31,17/03/2008 16:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1346,11/10/2018 20:31,17/03/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1345,11/10/2018 20:31,17/03/2008 16:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1344,11/10/2018 20:31,17/03/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1340,11/10/2018 20:31,20/03/2008 0:44,7.1,399, Resource Management Errors,nan
CVE-2008-1338,11/10/2018 20:31,14/03/2008 20:44,7.8,189, Numeric Errors,nan
CVE-2008-1337,11/10/2018 20:31,14/03/2008 20:44,5.0,20, Improper Input Validation,nan
CVE-2008-1336,11/10/2018 20:31,13/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1334,11/10/2018 20:31,13/03/2008 18:44,7.5,287, Improper Authentication,nan
CVE-2008-1333,11/10/2018 20:31,20/03/2008 0:44,5.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-1332,11/10/2018 20:31,20/03/2008 0:44,8.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1328,11/10/2018 20:31,7/04/2008 18:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1325,11/10/2018 20:31,13/03/2008 14:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1324,11/10/2018 20:31,13/03/2008 14:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1323,11/10/2018 20:31,13/03/2008 14:44,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1321,11/10/2018 20:31,13/03/2008 14:44,5.0,287, Improper Authentication,nan
CVE-2008-1320,11/10/2018 20:31,13/03/2008 14:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1315,11/10/2018 20:31,13/03/2008 14:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1311,11/10/2018 20:31,12/03/2008 17:44,5.0,20, Improper Input Validation,nan
CVE-2008-1309,11/10/2018 20:31,12/03/2008 17:44,9.3,399, Resource Management Errors,nan
CVE-2008-1304,11/10/2018 20:31,12/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1303,11/10/2018 20:31,12/03/2008 17:44,5.0,20, Improper Input Validation,nan
CVE-2008-1302,11/10/2018 20:31,12/03/2008 17:44,5.0,189, Numeric Errors,nan
CVE-2008-1301,11/10/2018 20:31,12/03/2008 17:44,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1300,11/10/2018 20:31,12/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1298,11/10/2018 20:31,12/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1289,11/10/2018 20:31,24/03/2008 17:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1284,11/10/2018 20:31,11/03/2008 0:44,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1283,11/10/2018 20:31,11/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1281,11/10/2018 20:31,10/03/2008 23:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1280,11/10/2018 20:31,10/03/2008 23:44,5.0,20, Improper Input Validation,nan
CVE-2008-1279,11/10/2018 20:31,10/03/2008 23:44,5.0,20, Improper Input Validation,nan
CVE-2008-1278,11/10/2018 20:31,10/03/2008 23:44,5.0,20, Improper Input Validation,nan
CVE-2008-1277,11/10/2018 20:31,10/03/2008 23:44,9.0,20, Improper Input Validation,nan
CVE-2008-1276,11/10/2018 20:31,10/03/2008 23:44,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1270,11/10/2018 20:31,10/03/2008 21:44,5.0,200, Information Exposure,nan
CVE-2008-1269,11/10/2018 20:31,10/03/2008 17:44,7.1,287, Improper Authentication,nan
CVE-2008-1268,11/10/2018 20:31,10/03/2008 17:44,10.0,287, Improper Authentication,nan
CVE-2008-1267,11/10/2018 20:31,10/03/2008 17:44,7.8,189, Numeric Errors,nan
CVE-2008-1266,11/10/2018 20:31,10/03/2008 17:44,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1265,11/10/2018 20:31,10/03/2008 17:44,7.8,20, Improper Input Validation,nan
CVE-2008-1264,11/10/2018 20:31,10/03/2008 17:44,7.5,287, Improper Authentication,nan
CVE-2008-1263,11/10/2018 20:31,10/03/2008 17:44,4.0,310, Cryptographic Issues,nan
CVE-2008-1262,11/10/2018 20:31,10/03/2008 17:44,10.0,287, Improper Authentication,nan
CVE-2008-1260,11/10/2018 20:31,10/03/2008 17:44,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1259,11/10/2018 20:31,10/03/2008 17:44,9.3,287, Improper Authentication,nan
CVE-2008-1258,11/10/2018 20:31,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1257,11/10/2018 20:31,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1255,11/10/2018 20:31,10/03/2008 17:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1254,11/10/2018 20:31,10/03/2008 17:44,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1253,11/10/2018 20:31,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1252,11/10/2018 20:31,10/03/2008 17:44,10.0,200, Information Exposure,nan
CVE-2008-1251,11/10/2018 20:31,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1250,11/10/2018 20:31,10/03/2008 17:44,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1249,11/10/2018 20:31,10/03/2008 17:44,9.4,20, Improper Input Validation,nan
CVE-2008-1248,11/10/2018 20:31,10/03/2008 17:44,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1247,11/10/2018 20:31,10/03/2008 17:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1246,11/10/2018 20:31,10/03/2008 17:44,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1245,11/10/2018 20:31,10/03/2008 17:44,7.8,20, Improper Input Validation,nan
CVE-2008-1244,11/10/2018 20:31,10/03/2008 17:44,10.0,287, Improper Authentication,nan
CVE-2008-1243,11/10/2018 20:31,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1242,11/10/2018 20:31,10/03/2008 17:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1241,11/10/2018 20:31,27/03/2008 10:44,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1238,11/10/2018 20:31,27/03/2008 10:44,5.0,287, Improper Authentication,nan
CVE-2008-1237,11/10/2018 20:30,27/03/2008 10:44,6.8,399, Resource Management Errors,nan
CVE-2008-1236,11/10/2018 20:30,27/03/2008 10:44,6.8,399, Resource Management Errors,nan
CVE-2008-1234,11/10/2018 20:30,27/03/2008 10:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1233,11/10/2018 20:30,27/03/2008 10:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1221,11/10/2018 20:30,10/03/2008 17:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1219,11/10/2018 20:30,10/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1218,11/10/2018 20:30,10/03/2008 23:44,6.8,255, Credentials Management,nan
CVE-2008-1216,11/10/2018 20:30,9/03/2008 2:44,6.8,20, Improper Input Validation,nan
CVE-2008-1208,11/10/2018 20:30,8/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1202,11/10/2018 20:30,12/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1199,11/10/2018 20:30,6/03/2008 21:44,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1197,11/10/2018 20:30,5/09/2008 16:08,6.3,20, Improper Input Validation,nan
CVE-2008-1181,11/10/2018 20:29,6/03/2008 0:44,5.0,200, Information Exposure,nan
CVE-2008-1180,11/10/2018 20:29,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1178,11/10/2018 20:29,6/03/2008 0:44,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1173,11/10/2018 20:29,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1172,11/10/2018 20:29,6/03/2008 0:44,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1171,11/10/2018 20:29,5/03/2008 23:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1170,11/10/2018 20:29,5/03/2008 23:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1167,11/10/2018 20:29,5/03/2008 23:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1166,11/10/2018 20:29,5/03/2008 23:44,5.0,200, Information Exposure,nan
CVE-2008-1162,11/10/2018 20:29,5/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1145,11/10/2018 20:29,4/03/2008 23:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1144,11/10/2018 20:29,5/09/2008 16:08,6.3,20, Improper Input Validation,nan
CVE-2008-1137,11/10/2018 20:29,4/03/2008 20:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1136,11/10/2018 20:29,4/03/2008 19:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1135,11/10/2018 20:29,4/03/2008 19:44,5.0,200, Information Exposure,nan
CVE-2008-1134,11/10/2018 20:29,4/03/2008 19:44,6.4,287, Improper Authentication,nan
CVE-2008-1129,11/10/2018 20:29,4/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1128,11/10/2018 20:29,3/03/2008 23:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1122,11/10/2018 20:29,3/03/2008 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1118,11/10/2018 20:29,14/03/2008 20:44,7.5,20, Improper Input Validation,nan
CVE-2008-1117,11/10/2018 20:29,14/03/2008 20:44,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1111,11/10/2018 20:29,4/03/2008 23:44,5.0,200, Information Exposure,nan
CVE-2008-1107,11/10/2018 20:29,17/04/2009 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1106,11/10/2018 20:29,9/06/2008 23:32,7.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1105,11/10/2018 20:29,29/05/2008 16:32,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1104,11/10/2018 20:29,21/05/2008 13:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1101,11/10/2018 20:29,10/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1094,11/10/2018 20:29,19/12/2008 17:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1093,11/10/2018 20:29,18/09/2008 15:04,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1078,11/10/2018 20:29,29/02/2008 2:44,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1071,11/10/2018 20:29,28/02/2008 22:44,4.3,399, Resource Management Errors,nan
CVE-2008-1061,11/10/2018 20:29,28/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1060,11/10/2018 20:29,28/02/2008 19:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1059,11/10/2018 20:29,28/02/2008 19:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1055,11/10/2018 20:29,27/02/2008 19:44,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2008-1054,11/10/2018 20:29,27/02/2008 19:44,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1052,11/10/2018 20:29,27/02/2008 19:44,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1050,11/10/2018 20:29,27/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1045,11/10/2018 20:29,27/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1043,11/10/2018 20:29,27/02/2008 19:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1037,11/10/2018 20:29,27/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1035,11/10/2018 20:29,3/06/2008 20:32,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1026,11/10/2018 20:29,17/04/2008 19:05,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1022,11/10/2018 20:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1021,11/10/2018 20:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1020,11/10/2018 20:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1019,11/10/2018 20:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1018,11/10/2018 20:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1017,11/10/2018 20:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2441,11/10/2018 19:54,14/08/2018 16:29,5.5,20, Improper Input Validation,nan
CVE-2018-15183,11/10/2018 19:42,9/08/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2447,11/10/2018 19:01,14/08/2018 16:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8371,11/10/2018 18:27,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8372,11/10/2018 18:19,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8373,11/10/2018 18:15,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10569,11/10/2018 18:14,13/08/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8381,11/10/2018 18:13,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8390,11/10/2018 18:12,15/08/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14735,11/10/2018 17:30,9/08/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-2442,11/10/2018 17:19,14/08/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-2446,11/10/2018 17:12,14/08/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-2448,11/10/2018 16:56,14/08/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-2449,11/10/2018 16:49,14/08/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2018-2450,11/10/2018 16:47,14/08/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15146,11/10/2018 16:41,15/08/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8350,11/10/2018 16:38,15/08/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8351,11/10/2018 16:35,15/08/2018 17:29,4.3,200, Information Exposure,nan
CVE-2017-16790,11/10/2018 16:11,6/08/2018 21:29,4.0,20, Improper Input Validation,nan
CVE-2018-7068,11/10/2018 15:58,6/08/2018 20:29,5.8,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2018-14928,11/10/2018 14:57,3/08/2018 21:29,7.8,200, Information Exposure,nan
CVE-2018-12587,11/10/2018 14:55,13/08/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14922,11/10/2018 14:50,14/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7094,11/10/2018 14:08,14/08/2018 14:29,2.1,200, Information Exposure,nan
CVE-2017-5692,11/10/2018 13:10,1/08/2018 15:29,2.1,125, Out-of-bounds Read,nan
CVE-2014-2533,11/10/2018 10:29,18/03/2014 5:18,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-0984,10/10/2018 21:29,17/04/2014 14:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-7069,10/10/2018 20:23,6/08/2018 20:29,5.0,287, Improper Authentication,nan
CVE-2018-7091,10/10/2018 20:20,6/08/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-4093,10/10/2018 20:09,15/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3740,10/10/2018 20:09,11/09/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0407,10/10/2018 20:09,11/01/2011 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0364,10/10/2018 20:09,19/02/2011 1:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0355,10/10/2018 20:09,17/02/2011 18:00,7.8,399, Resource Management Errors,nan
CVE-2011-0345,10/10/2018 20:09,8/03/2011 21:59,3.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0343,10/10/2018 20:09,28/01/2011 16:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-0285,10/10/2018 20:09,15/04/2011 0:55,10.0,20, Improper Input Validation,nan
CVE-2011-0284,10/10/2018 20:09,20/03/2011 2:00,7.6,399, Resource Management Errors,nan
CVE-2011-0281,10/10/2018 20:09,10/02/2011 18:00,5.0,310, Cryptographic Issues,nan
CVE-2011-0258,10/10/2018 20:09,6/09/2011 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0228,10/10/2018 20:09,29/08/2011 20:55,7.5,20, Improper Input Validation,nan
CVE-2011-0063,10/10/2018 20:09,15/03/2011 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0050,10/10/2018 20:09,19/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0049,10/10/2018 20:09,4/02/2011 1:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0018,10/10/2018 20:09,28/01/2011 16:00,9.0,20, Improper Input Validation,nan
CVE-2011-0005,10/10/2018 20:09,11/01/2011 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5298,10/10/2018 20:09,14/04/2014 22:38,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5280,10/10/2018 20:08,26/11/2012 23:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-5051,10/10/2018 20:08,23/11/2011 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5049,10/10/2018 20:08,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5048,10/10/2018 20:08,23/11/2011 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5046,10/10/2018 20:08,23/11/2011 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5038,10/10/2018 20:08,2/11/2011 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-5030,10/10/2018 20:08,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5029,10/10/2018 20:08,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5025,10/10/2018 20:08,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5024,10/10/2018 20:08,2/11/2011 21:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5002,10/10/2018 20:08,1/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4983,10/10/2018 20:08,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4980,10/10/2018 20:08,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4977,10/10/2018 20:08,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4963,10/10/2018 20:08,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4958,10/10/2018 20:08,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4941,10/10/2018 20:08,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4937,10/10/2018 20:08,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4930,10/10/2018 20:08,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4926,10/10/2018 20:08,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4922,10/10/2018 20:08,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4907,10/10/2018 20:08,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4906,10/10/2018 20:08,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4903,10/10/2018 20:08,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4900,10/10/2018 20:08,8/10/2011 10:55,5.8,20, Improper Input Validation,nan
CVE-2010-4899,10/10/2018 20:08,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4882,10/10/2018 20:08,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4881,10/10/2018 20:08,7/10/2011 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4880,10/10/2018 20:08,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4874,10/10/2018 20:08,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4870,10/10/2018 20:08,7/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4868,10/10/2018 20:08,5/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4867,10/10/2018 20:08,5/10/2011 10:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4865,10/10/2018 20:08,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4848,10/10/2018 20:08,27/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4836,10/10/2018 20:08,14/09/2011 2:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4828,10/10/2018 20:08,24/08/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4790,10/10/2018 20:08,27/04/2011 0:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4784,10/10/2018 20:08,7/04/2011 14:23,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4783,10/10/2018 20:08,7/04/2011 14:23,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4693,10/10/2018 20:08,11/01/2011 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4655,10/10/2018 20:08,18/07/2011 19:55,1.2,200, Information Exposure,nan
CVE-2010-4616,10/10/2018 20:08,29/12/2010 22:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4612,10/10/2018 20:08,29/12/2010 22:33,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4604,10/10/2018 20:08,29/12/2010 18:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4573,10/10/2018 20:08,22/12/2010 21:00,9.3,287, Improper Authentication,nan
CVE-2010-4526,10/10/2018 20:08,11/01/2011 3:00,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4513,10/10/2018 20:08,9/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4408,10/10/2018 20:08,6/12/2010 20:13,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4407,10/10/2018 20:08,6/12/2010 13:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4403,10/10/2018 20:08,6/12/2010 13:37,5.0,200, Information Exposure,nan
CVE-2010-4402,10/10/2018 20:08,6/12/2010 13:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4370,10/10/2018 20:08,2/12/2010 16:22,9.3,189, Numeric Errors,nan
CVE-2010-4363,10/10/2018 20:08,1/12/2010 16:06,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4358,10/10/2018 20:08,1/12/2010 16:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4346,10/10/2018 20:08,22/12/2010 21:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-4345,10/10/2018 20:08,14/12/2010 16:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-4344,10/10/2018 20:08,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4333,10/10/2018 20:08,22/12/2010 3:00,7.5,287, Improper Authentication,nan
CVE-2010-4332,10/10/2018 20:08,22/12/2010 3:00,7.5,287, Improper Authentication,nan
CVE-2010-4331,10/10/2018 20:08,20/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4330,10/10/2018 20:08,7/12/2010 13:53,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4328,10/10/2018 20:08,19/02/2011 1:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4325,10/10/2018 20:08,28/01/2011 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4323,10/10/2018 20:08,19/02/2011 1:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4322,10/10/2018 20:08,7/01/2011 23:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4312,10/10/2018 20:08,26/11/2010 20:00,6.4,16, Configuration,nan
CVE-2010-4311,10/10/2018 20:08,26/11/2010 20:00,5.0,310, Cryptographic Issues,nan
CVE-2010-4298,10/10/2018 20:08,26/11/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4297,10/10/2018 20:08,6/12/2010 21:05,7.2,20, Improper Input Validation,nan
CVE-2010-4296,10/10/2018 20:08,6/12/2010 21:05,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-4295,10/10/2018 20:08,6/12/2010 21:05,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4294,10/10/2018 20:08,6/12/2010 21:05,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4283,10/10/2018 20:08,2/12/2010 17:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4282,10/10/2018 20:07,2/12/2010 17:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4281,10/10/2018 20:07,2/12/2010 17:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4280,10/10/2018 20:07,2/12/2010 17:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4279,10/10/2018 20:07,2/12/2010 17:15,10.0,287, Improper Authentication,nan
CVE-2010-4278,10/10/2018 20:07,2/12/2010 17:13,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-4277,10/10/2018 20:07,22/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4251,10/10/2018 20:07,26/05/2011 16:55,6.1,399, Resource Management Errors,nan
CVE-2010-4249,10/10/2018 20:07,29/11/2010 16:00,4.9,399, Resource Management Errors,nan
CVE-2010-4248,10/10/2018 20:07,30/11/2010 21:38,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4247,10/10/2018 20:07,11/01/2011 3:00,5.5,20, Improper Input Validation,nan
CVE-2010-4243,10/10/2018 20:07,22/01/2011 22:00,4.9,399, Resource Management Errors,nan
CVE-2010-4238,10/10/2018 20:07,22/01/2011 22:00,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4234,10/10/2018 20:07,17/11/2010 1:00,7.8,399, Resource Management Errors,nan
CVE-2010-4233,10/10/2018 20:07,17/11/2010 1:00,10.0,255, Credentials Management,nan
CVE-2010-4232,10/10/2018 20:07,17/11/2010 1:00,10.0,287, Improper Authentication,nan
CVE-2010-4231,10/10/2018 20:07,17/11/2010 1:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4230,10/10/2018 20:07,17/11/2010 1:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4229,10/10/2018 20:07,18/04/2011 18:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4227,10/10/2018 20:07,25/02/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4192,10/10/2018 20:07,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4189,10/10/2018 20:07,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4188,10/10/2018 20:07,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4185,10/10/2018 20:07,5/11/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4172,10/10/2018 20:07,26/11/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4161,10/10/2018 20:07,30/12/2010 19:00,4.9,399, Resource Management Errors,nan
CVE-2010-4158,10/10/2018 20:07,30/12/2010 19:00,2.1,200, Information Exposure,nan
CVE-2010-4157,10/10/2018 20:07,10/12/2010 19:00,6.0,189, Numeric Errors,nan
CVE-2010-4152,10/10/2018 20:07,3/11/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4151,10/10/2018 20:07,3/11/2010 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4149,10/10/2018 20:07,2/11/2010 2:26,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4115,10/10/2018 20:07,17/12/2010 19:00,9.0,255, Credentials Management,nan
CVE-2010-4097,10/10/2018 20:07,27/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4095,10/10/2018 20:07,26/10/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4089,10/10/2018 20:07,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4088,10/10/2018 20:07,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4087,10/10/2018 20:07,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4086,10/10/2018 20:07,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4083,10/10/2018 20:06,30/11/2010 22:14,1.9,200, Information Exposure,nan
CVE-2010-4081,10/10/2018 20:06,30/11/2010 22:14,1.9,200, Information Exposure,nan
CVE-2010-4080,10/10/2018 20:06,30/11/2010 22:14,1.9,200, Information Exposure,nan
CVE-2010-4075,10/10/2018 20:06,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4073,10/10/2018 20:06,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4072,10/10/2018 20:06,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4052,10/10/2018 20:06,13/01/2011 19:00,5.0,399, Resource Management Errors,nan
CVE-2010-4022,10/10/2018 20:06,10/02/2011 18:00,5.0,20, Improper Input Validation,nan
CVE-2010-4021,10/10/2018 20:06,2/12/2010 16:22,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-4020,10/10/2018 20:06,2/12/2010 16:22,3.5,310, Cryptographic Issues,nan
CVE-2010-4006,10/10/2018 20:06,3/11/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3984,10/10/2018 20:06,7/01/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3978,10/10/2018 20:06,17/11/2010 16:00,5.0,200, Information Exposure,nan
CVE-2010-3977,10/10/2018 20:06,3/11/2010 13:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3904,10/10/2018 20:06,6/12/2010 20:13,7.2,20, Improper Input Validation,nan
CVE-2010-3899,10/10/2018 20:06,12/11/2010 22:00,5.0,399, Resource Management Errors,nan
CVE-2010-3898,10/10/2018 20:06,12/11/2010 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3897,10/10/2018 20:06,12/11/2010 22:00,5.0,255, Credentials Management,nan
CVE-2010-3896,10/10/2018 20:06,12/11/2010 22:00,7.5,287, Improper Authentication,nan
CVE-2010-3895,10/10/2018 20:06,12/11/2010 22:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-3894,10/10/2018 20:05,12/11/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3893,10/10/2018 20:05,12/11/2010 22:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3891,10/10/2018 20:05,12/11/2010 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3890,10/10/2018 20:05,12/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3880,10/10/2018 20:05,10/12/2010 19:00,4.9,399, Resource Management Errors,nan
CVE-2010-3877,10/10/2018 20:05,3/01/2011 20:00,1.9,200, Information Exposure,nan
CVE-2010-3876,10/10/2018 20:05,3/01/2011 20:00,1.9,200, Information Exposure,nan
CVE-2010-3865,10/10/2018 20:05,11/01/2011 3:00,7.2,189, Numeric Errors,nan
CVE-2010-3864,10/10/2018 20:05,17/11/2010 16:00,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-3863,10/10/2018 20:05,5/11/2010 17:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3859,10/10/2018 20:05,29/12/2010 18:00,6.9,189, Numeric Errors,nan
CVE-2010-3858,10/10/2018 20:05,30/11/2010 21:38,4.9,399, Resource Management Errors,nan
CVE-2010-3854,10/10/2018 20:05,2/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3847,10/10/2018 20:05,7/01/2011 19:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-3762,10/10/2018 20:05,5/10/2010 22:00,4.3,20, Improper Input Validation,nan
CVE-2010-3759,10/10/2018 20:05,5/10/2010 22:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3758,10/10/2018 20:05,5/10/2010 22:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3757,10/10/2018 20:05,5/10/2010 22:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-3756,10/10/2018 20:05,5/10/2010 22:00,5.0,20, Improper Input Validation,nan
CVE-2010-3755,10/10/2018 20:05,5/10/2010 22:00,5.0,399, Resource Management Errors,nan
CVE-2010-3754,10/10/2018 20:05,5/10/2010 22:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-3743,10/10/2018 20:05,8/10/2010 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3719,10/10/2018 20:05,2/02/2011 1:00,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3700,10/10/2018 20:05,29/10/2010 19:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3699,10/10/2018 20:05,8/12/2010 20:00,2.7,399, Resource Management Errors,nan
CVE-2010-3684,10/10/2018 20:05,29/09/2010 17:00,2.1,255, Credentials Management,nan
CVE-2010-3614,10/10/2018 20:04,6/12/2010 13:44,6.4,20, Improper Input Validation,nan
CVE-2010-3613,10/10/2018 20:04,6/12/2010 13:44,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3490,10/10/2018 20:02,28/09/2010 18:00,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3477,10/10/2018 20:02,21/09/2010 20:00,2.1,399, Resource Management Errors,nan
CVE-2010-3464,10/10/2018 20:02,17/09/2010 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3463,10/10/2018 20:02,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3455,10/10/2018 20:02,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3449,10/10/2018 20:02,6/12/2010 20:13,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3442,10/10/2018 20:01,4/10/2010 21:00,4.7,189, Numeric Errors,nan
CVE-2010-3429,10/10/2018 20:01,30/09/2010 15:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3407,10/10/2018 20:01,16/09/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3321,10/10/2018 20:01,7/10/2010 21:00,1.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3296,10/10/2018 20:01,30/09/2010 15:00,4.9,200, Information Exposure,nan
CVE-2010-3276,10/10/2018 20:01,28/03/2011 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3275,10/10/2018 20:01,28/03/2011 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3274,10/10/2018 20:01,17/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3273,10/10/2018 20:01,17/02/2011 18:00,5.0,20, Improper Input Validation,nan
CVE-2010-3272,10/10/2018 20:01,17/02/2011 18:00,4.3,20, Improper Input Validation,nan
CVE-2010-3271,10/10/2018 20:01,18/07/2011 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3270,10/10/2018 20:01,2/02/2011 23:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3269,10/10/2018 20:01,2/02/2011 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3267,10/10/2018 20:01,2/12/2010 16:22,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3266,10/10/2018 20:01,2/12/2010 16:22,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3262,10/10/2018 20:01,20/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3261,10/10/2018 20:01,24/09/2010 19:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3201,10/10/2018 20:01,7/01/2011 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3199,10/10/2018 20:01,10/09/2010 20:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-3189,10/10/2018 20:01,31/08/2010 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3188,10/10/2018 20:01,31/08/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3096,10/10/2018 20:01,20/08/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3081,10/10/2018 20:01,24/09/2010 20:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3078,10/10/2018 20:01,21/09/2010 18:00,2.1,399, Resource Management Errors,nan
CVE-2010-3067,10/10/2018 20:00,21/09/2010 18:00,4.9,189, Numeric Errors,nan
CVE-2010-3039,10/10/2018 20:00,9/11/2010 21:00,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-3032,10/10/2018 20:00,17/08/2010 20:00,10.0,189, Numeric Errors,nan
CVE-2010-3026,10/10/2018 20:00,16/08/2010 20:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3025,10/10/2018 20:00,16/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3023,10/10/2018 20:00,16/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3015,10/10/2018 20:00,20/08/2010 18:00,4.7,189, Numeric Errors,nan
CVE-2010-3014,10/10/2018 20:00,20/08/2010 20:00,1.2,200, Information Exposure,nan
CVE-2010-3000,10/10/2018 20:00,30/08/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-2996,10/10/2018 20:00,30/08/2010 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2990,10/10/2018 20:00,11/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2989,10/10/2018 20:00,10/08/2010 12:23,5.0,200, Information Exposure,nan
CVE-2010-2986,10/10/2018 20:00,10/08/2010 12:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2952,10/10/2018 20:00,13/09/2010 21:00,4.3,20, Improper Input Validation,nan
CVE-2010-2943,10/10/2018 20:00,30/09/2010 15:00,7.9,200, Information Exposure,nan
CVE-2010-2942,10/10/2018 20:00,21/09/2010 18:00,2.1,399, Resource Management Errors,nan
CVE-2010-2939,10/10/2018 20:00,17/08/2010 20:00,4.3,399, Resource Management Errors,nan
CVE-2010-2938,10/10/2018 20:00,8/10/2010 21:00,4.9,399, Resource Management Errors,nan
CVE-2010-2928,10/10/2018 20:00,16/02/2011 1:00,2.1,255, Credentials Management,nan
CVE-2010-2914,10/10/2018 20:00,30/07/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2909,10/10/2018 20:00,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2892,10/10/2018 20:00,15/11/2010 21:00,8.5,20, Improper Input Validation,nan
CVE-2010-2891,10/10/2018 20:00,28/10/2010 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2882,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2881,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2880,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2879,10/10/2018 20:00,26/08/2010 21:00,9.3,189, Numeric Errors,nan
CVE-2010-2878,10/10/2018 20:00,26/08/2010 21:00,9.3,20, Improper Input Validation,nan
CVE-2010-2877,10/10/2018 20:00,26/08/2010 21:00,9.3,20, Improper Input Validation,nan
CVE-2010-2876,10/10/2018 20:00,26/08/2010 21:00,9.3,20, Improper Input Validation,nan
CVE-2010-2873,10/10/2018 20:00,26/08/2010 21:00,9.3,20, Improper Input Validation,nan
CVE-2010-2872,10/10/2018 20:00,26/08/2010 21:00,9.3,20, Improper Input Validation,nan
CVE-2010-2871,10/10/2018 20:00,26/08/2010 21:00,9.3,189, Numeric Errors,nan
CVE-2010-2870,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2869,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2868,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2867,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2866,10/10/2018 20:00,26/08/2010 21:00,9.3,189, Numeric Errors,nan
CVE-2010-2864,10/10/2018 20:00,26/08/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2860,10/10/2018 20:00,5/08/2010 13:22,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2859,10/10/2018 20:00,25/07/2010 2:04,5.0,200, Information Exposure,nan
CVE-2010-2858,10/10/2018 20:00,25/07/2010 2:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2851,10/10/2018 20:00,25/07/2010 2:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2848,10/10/2018 20:00,25/07/2010 2:04,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2847,10/10/2018 20:00,25/07/2010 2:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2846,10/10/2018 20:00,25/07/2010 2:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2798,10/10/2018 19:59,8/09/2010 20:00,7.2,189, Numeric Errors,nan
CVE-2010-2718,10/10/2018 19:59,13/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2717,10/10/2018 19:59,13/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2704,10/10/2018 19:59,28/07/2010 12:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2703,10/10/2018 19:59,28/07/2010 12:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2695,10/10/2018 19:59,12/07/2010 17:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2686,10/10/2018 19:59,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2679,10/10/2018 19:59,8/07/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2678,10/10/2018 19:59,8/07/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2629,10/10/2018 19:59,6/07/2010 17:17,7.5,20, Improper Input Validation,nan
CVE-2010-2624,10/10/2018 19:59,2/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2615,10/10/2018 19:59,2/07/2010 12:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2614,10/10/2018 19:59,2/07/2010 12:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2590,10/10/2018 19:59,22/12/2010 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2586,10/10/2018 19:59,2/12/2010 16:22,9.3,189, Numeric Errors,nan
CVE-2010-2583,10/10/2018 19:59,3/11/2010 13:37,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2582,10/10/2018 19:59,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2581,10/10/2018 19:59,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2580,10/10/2018 19:59,15/09/2010 18:00,5.0,20, Improper Input Validation,nan
CVE-2010-2576,10/10/2018 19:59,16/08/2010 18:39,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2575,10/10/2018 19:59,30/08/2010 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2574,10/10/2018 19:59,10/08/2010 12:23,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2521,10/10/2018 19:59,7/09/2010 17:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2506,10/10/2018 19:59,28/06/2010 18:30,2.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2492,10/10/2018 19:59,8/09/2010 20:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2453,10/10/2018 19:59,29/09/2010 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2437,10/10/2018 19:59,24/06/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2436,10/10/2018 19:59,24/06/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2435,10/10/2018 19:59,24/06/2010 17:30,5.0,20, Improper Input Validation,nan
CVE-2010-2427,10/10/2018 19:59,22/07/2010 5:43,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-2426,10/10/2018 19:59,24/06/2010 12:17,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2425,10/10/2018 19:59,24/06/2010 12:17,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2347,10/10/2018 19:59,21/06/2010 19:30,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-2306,10/10/2018 19:59,16/06/2010 20:30,4.3,16, Configuration,nan
CVE-2010-2294,10/10/2018 19:59,15/06/2010 14:04,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2293,10/10/2018 19:59,15/06/2010 14:04,6.8,20, Improper Input Validation,nan
CVE-2010-2292,10/10/2018 19:59,15/06/2010 14:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2290,10/10/2018 19:59,15/06/2010 14:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2289,10/10/2018 19:59,15/06/2010 14:04,4.3,20, Improper Input Validation,nan
CVE-2010-2288,10/10/2018 19:59,15/06/2010 14:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2261,10/10/2018 19:59,10/06/2010 0:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2251,10/10/2018 19:59,6/07/2010 17:17,7.5,20, Improper Input Validation,nan
CVE-2010-2248,10/10/2018 19:59,7/09/2010 17:00,7.8,20, Improper Input Validation,nan
CVE-2010-2240,10/10/2018 19:59,3/09/2010 20:00,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2234,10/10/2018 19:59,19/08/2010 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2226,10/10/2018 19:59,3/09/2010 20:00,1.9,20, Improper Input Validation,nan
CVE-2010-2159,10/10/2018 19:58,8/06/2010 0:30,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2145,10/10/2018 19:58,3/06/2010 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2130,10/10/2018 19:58,2/06/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2122,10/10/2018 19:58,1/06/2010 21:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2121,10/10/2018 19:58,1/06/2010 20:30,4.3,399, Resource Management Errors,nan
CVE-2010-2120,10/10/2018 19:58,1/06/2010 20:30,4.3,399, Resource Management Errors,nan
CVE-2010-2119,10/10/2018 19:58,1/06/2010 20:30,4.3,399, Resource Management Errors,nan
CVE-2010-2118,10/10/2018 19:58,1/06/2010 20:30,4.3,399, Resource Management Errors,nan
CVE-2010-2117,10/10/2018 19:58,1/06/2010 20:30,4.3,399, Resource Management Errors,nan
CVE-2010-2104,10/10/2018 19:58,27/05/2010 22:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2103,10/10/2018 19:58,27/05/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2102,10/10/2018 19:58,27/05/2010 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2091,10/10/2018 19:58,27/05/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2068,10/10/2018 19:58,18/06/2010 16:30,5.0,200, Information Exposure,nan
CVE-2010-2066,10/10/2018 19:58,8/09/2010 20:00,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-2059,10/10/2018 19:58,8/06/2010 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2041,10/10/2018 19:58,25/05/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2038,10/10/2018 19:58,25/05/2010 14:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2032,10/10/2018 19:58,24/05/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2027,10/10/2018 19:58,24/05/2010 19:30,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2024,10/10/2018 19:58,7/06/2010 17:12,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2023,10/10/2018 19:58,7/06/2010 17:12,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2013,10/10/2018 19:58,24/05/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2007,10/10/2018 19:58,20/05/2010 21:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2006,10/10/2018 19:58,20/05/2010 21:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2003,10/10/2018 19:58,20/05/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1997,10/10/2018 19:58,20/05/2010 17:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1995,10/10/2018 19:58,20/05/2010 17:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1994,10/10/2018 19:58,20/05/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1993,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1992,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1991,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1990,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1989,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1987,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1986,10/10/2018 19:58,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-1961,10/10/2018 19:58,10/06/2010 0:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1960,10/10/2018 19:58,10/06/2010 0:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1951,10/10/2018 19:58,19/05/2010 12:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1931,10/10/2018 19:58,10/06/2010 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1930,10/10/2018 19:58,28/06/2010 17:30,5.0,189, Numeric Errors,nan
CVE-2010-1929,10/10/2018 19:58,28/06/2010 17:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1922,10/10/2018 19:58,12/05/2010 16:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1913,10/10/2018 19:58,12/05/2010 11:46,9.3,16, Configuration,nan
CVE-2010-1912,10/10/2018 19:57,12/05/2010 11:46,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1911,10/10/2018 19:57,12/05/2010 11:46,9.3,310, Cryptographic Issues,nan
CVE-2010-1910,10/10/2018 19:57,12/05/2010 11:46,5.1,287, Improper Authentication,nan
CVE-2010-1909,10/10/2018 19:57,12/05/2010 11:46,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1908,10/10/2018 19:57,12/05/2010 11:46,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1907,10/10/2018 19:57,12/05/2010 11:46,4.3,200, Information Exposure,nan
CVE-2010-1906,10/10/2018 19:57,12/05/2010 11:46,7.2,310, Cryptographic Issues,nan
CVE-2010-1905,10/10/2018 19:57,12/05/2010 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1904,10/10/2018 19:57,7/06/2010 17:12,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1869,10/10/2018 19:57,12/05/2010 11:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1845,10/10/2018 19:57,16/11/2010 22:00,6.8,20, Improper Input Validation,nan
CVE-2010-1794,10/10/2018 19:57,2/08/2010 20:40,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1749,10/10/2018 19:57,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1724,10/10/2018 19:57,6/05/2010 14:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1681,10/10/2018 19:57,6/05/2010 12:47,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1655,10/10/2018 19:57,3/05/2010 13:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1646,10/10/2018 19:57,7/06/2010 17:12,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1641,10/10/2018 19:57,1/06/2010 20:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-1628,10/10/2018 19:57,19/05/2010 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1610,10/10/2018 19:57,29/04/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1609,10/10/2018 19:57,29/04/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1593,10/10/2018 19:57,28/04/2010 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1587,10/10/2018 19:57,28/04/2010 22:30,5.0,20, Improper Input Validation,nan
CVE-2010-1585,10/10/2018 19:57,28/04/2010 22:30,9.3,20, Improper Input Validation,nan
CVE-2010-1576,10/10/2018 19:57,6/07/2010 17:17,7.5,20, Improper Input Validation,nan
CVE-2010-1575,10/10/2018 19:57,6/07/2010 17:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1573,10/10/2018 19:57,10/06/2010 0:30,10.0,255, Credentials Management,nan
CVE-2010-1555,10/10/2018 19:57,13/05/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1553,10/10/2018 19:57,13/05/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1552,10/10/2018 19:57,13/05/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1551,10/10/2018 19:57,13/05/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1550,10/10/2018 19:57,13/05/2010 17:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2010-1523,10/10/2018 19:57,6/11/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1522,10/10/2018 19:57,2/07/2010 12:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1521,10/10/2018 19:57,30/06/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1520,10/10/2018 19:57,30/06/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1519,10/10/2018 19:57,16/08/2010 15:14,6.8,189, Numeric Errors,nan
CVE-2010-1516,10/10/2018 19:57,17/08/2010 22:00,9.3,189, Numeric Errors,nan
CVE-2010-1513,10/10/2018 19:57,26/05/2010 19:30,6.8,189, Numeric Errors,nan
CVE-2010-1512,10/10/2018 19:57,17/05/2010 21:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1511,10/10/2018 19:57,17/05/2010 21:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-1510,10/10/2018 19:57,14/05/2010 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1509,10/10/2018 19:57,14/05/2010 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1481,10/10/2018 19:57,12/05/2010 11:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1464,10/10/2018 19:57,16/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1463,10/10/2018 19:57,16/04/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1462,10/10/2018 19:57,16/04/2010 19:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1460,10/10/2018 19:57,16/04/2010 18:30,5.0,399, Resource Management Errors,nan
CVE-2010-1454,10/10/2018 19:57,19/05/2010 18:30,6.8,287, Improper Authentication,nan
CVE-2010-1437,10/10/2018 19:57,7/05/2010 18:30,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1436,10/10/2018 19:57,21/05/2010 17:30,4.9,399, Resource Management Errors,nan
CVE-2010-1404,10/10/2018 19:57,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1403,10/10/2018 19:57,11/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1402,10/10/2018 19:57,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2018-7090,10/10/2018 19:56,6/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1401,10/10/2018 19:56,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1398,10/10/2018 19:56,11/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1397,10/10/2018 19:56,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1392,10/10/2018 19:56,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1324,10/10/2018 19:56,2/12/2010 16:22,4.3,310, Cryptographic Issues,nan
CVE-2010-1323,10/10/2018 19:56,2/12/2010 16:22,2.6,310, Cryptographic Issues,nan
CVE-2010-1322,10/10/2018 19:56,7/10/2010 21:00,6.5,20, Improper Input Validation,nan
CVE-2010-1320,10/10/2018 19:56,22/04/2010 14:30,4.0,399, Resource Management Errors,nan
CVE-2010-1299,10/10/2018 19:56,7/04/2010 18:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1292,10/10/2018 19:56,13/05/2010 17:30,9.3,20, Improper Input Validation,nan
CVE-2010-1283,10/10/2018 19:56,13/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1282,10/10/2018 19:56,13/05/2010 17:30,4.3,399, Resource Management Errors,nan
CVE-2010-1281,10/10/2018 19:56,13/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1280,10/10/2018 19:56,13/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1278,10/10/2018 19:56,22/04/2010 14:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1277,10/10/2018 19:56,6/04/2010 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1275,10/10/2018 19:56,6/04/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1227,10/10/2018 19:56,1/04/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1225,10/10/2018 19:56,1/04/2010 22:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1224,10/10/2018 19:56,1/04/2010 21:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1223,10/10/2018 19:56,7/04/2010 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1222,10/10/2018 19:56,7/04/2010 15:30,5.0,287, Improper Authentication,nan
CVE-2010-1221,10/10/2018 19:56,7/04/2010 15:30,5.0,287, Improper Authentication,nan
CVE-2010-1199,10/10/2018 19:56,24/06/2010 12:30,9.3,189, Numeric Errors,nan
CVE-2010-1191,10/10/2018 19:56,31/03/2010 18:00,6.4,287, Improper Authentication,nan
CVE-2010-1185,10/10/2018 19:56,29/03/2010 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1183,10/10/2018 19:56,29/03/2010 22:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-1173,10/10/2018 19:55,7/05/2010 18:30,7.1,20, Improper Input Validation,nan
CVE-2010-1167,10/10/2018 19:55,7/05/2010 18:24,4.3,20, Improper Input Validation,nan
CVE-2010-1163,10/10/2018 19:55,16/04/2010 19:30,6.9,20, Improper Input Validation,nan
CVE-2010-1126,10/10/2018 19:55,26/03/2010 20:30,5.8,200, Information Exposure,nan
CVE-2010-1125,10/10/2018 19:55,26/03/2010 20:30,5.8,200, Information Exposure,nan
CVE-2010-1123,10/10/2018 19:55,26/03/2010 18:30,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1103,10/10/2018 19:55,24/03/2010 22:45,5.0,189, Numeric Errors,nan
CVE-2010-1102,10/10/2018 19:55,24/03/2010 22:45,5.0,189, Numeric Errors,nan
CVE-2010-1101,10/10/2018 19:55,24/03/2010 22:45,5.0,189, Numeric Errors,nan
CVE-2010-1100,10/10/2018 19:55,24/03/2010 22:45,5.0,189, Numeric Errors,nan
CVE-2010-1099,10/10/2018 19:55,24/03/2010 22:45,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1084,10/10/2018 19:55,6/04/2010 22:30,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1083,10/10/2018 19:55,6/04/2010 22:30,4.7,399, Resource Management Errors,nan
CVE-2010-1078,10/10/2018 19:55,23/03/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1054,10/10/2018 19:55,23/03/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1039,10/10/2018 19:55,20/05/2010 17:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2010-1003,10/10/2018 19:55,19/03/2010 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1000,10/10/2018 19:55,17/05/2010 21:00,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0999,10/10/2018 19:55,17/05/2010 21:00,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0998,10/10/2018 19:55,17/05/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0997,10/10/2018 19:55,20/04/2010 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0995,10/10/2018 19:55,6/05/2010 14:53,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0994,10/10/2018 19:55,15/04/2010 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0992,10/10/2018 19:55,9/04/2010 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0991,10/10/2018 19:55,22/04/2010 14:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0990,10/10/2018 19:55,15/06/2010 14:04,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0989,10/10/2018 19:55,26/03/2010 18:30,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0988,10/10/2018 19:55,26/03/2010 18:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0987,10/10/2018 19:55,13/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0986,10/10/2018 19:55,13/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0962,10/10/2018 19:55,10/03/2010 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0959,10/10/2018 19:55,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0950,10/10/2018 19:55,10/03/2010 20:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0949,10/10/2018 19:55,10/03/2010 20:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0947,10/10/2018 19:55,10/03/2010 20:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0833,10/10/2018 19:53,28/07/2010 12:48,9.3,287, Improper Authentication,nan
CVE-2010-0804,10/10/2018 19:53,2/03/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0792,10/10/2018 19:53,5/03/2010 19:30,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0791,10/10/2018 19:53,10/03/2010 20:13,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-0790,10/10/2018 19:53,10/03/2010 20:13,2.1,200, Information Exposure,nan
CVE-2010-0788,10/10/2018 19:53,2/03/2010 18:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0766,10/10/2018 19:53,3/03/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2010-0740,10/10/2018 19:53,26/03/2010 18:30,5.0,20, Improper Input Validation,nan
CVE-2010-0734,10/10/2018 19:53,19/03/2010 19:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-0730,10/10/2018 19:53,12/05/2010 11:46,2.6,20, Improper Input Validation,nan
CVE-2010-0716,10/10/2018 19:53,26/02/2010 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0714,10/10/2018 19:53,26/02/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0713,10/10/2018 19:53,26/02/2010 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0705,10/10/2018 19:53,25/02/2010 18:30,7.2,20, Improper Input Validation,nan
CVE-2010-0703,10/10/2018 19:53,23/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0684,10/10/2018 19:53,5/04/2010 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0671,10/10/2018 19:53,22/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0640,10/10/2018 19:53,24/02/2010 18:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0629,10/10/2018 19:53,7/04/2010 15:30,4.0,399, Resource Management Errors,nan
CVE-2010-0625,10/10/2018 19:53,5/04/2010 16:30,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0624,10/10/2018 19:53,15/03/2010 13:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0620,10/10/2018 19:53,25/02/2010 0:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0619,10/10/2018 19:53,24/03/2010 22:45,7.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0616,10/10/2018 19:53,11/02/2010 17:30,7.5,255, Credentials Management,nan
CVE-2010-0615,10/10/2018 19:53,11/02/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0614,10/10/2018 19:53,11/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0556,10/10/2018 19:53,18/02/2010 17:30,4.3,255, Credentials Management,nan
CVE-2010-0554,10/10/2018 19:53,4/02/2010 20:15,7.5,287, Improper Authentication,nan
CVE-2010-0553,10/10/2018 19:53,4/02/2010 20:15,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0552,10/10/2018 19:53,4/02/2010 20:15,7.5,20, Improper Input Validation,nan
CVE-2010-0551,10/10/2018 19:53,4/02/2010 20:15,5.0,200, Information Exposure,nan
CVE-2010-0550,10/10/2018 19:53,4/02/2010 20:15,4.0,287, Improper Authentication,nan
CVE-2010-0529,10/10/2018 19:53,31/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0528,10/10/2018 19:53,31/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0526,10/10/2018 19:53,30/03/2010 18:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0520,10/10/2018 19:52,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0519,10/10/2018 19:52,30/03/2010 18:30,6.8,189, Numeric Errors,nan
CVE-2010-0517,10/10/2018 19:52,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0516,10/10/2018 19:52,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0505,10/10/2018 19:52,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0468,10/10/2018 19:52,2/02/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0465,10/10/2018 19:52,19/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0460,10/10/2018 19:52,28/01/2010 20:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0454,10/10/2018 19:52,28/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0453,10/10/2018 19:52,3/02/2010 18:30,4.9,20, Improper Input Validation,nan
CVE-2010-0447,10/10/2018 19:52,10/03/2010 22:30,10.0,287, Improper Authentication,nan
CVE-2010-0441,10/10/2018 19:52,4/02/2010 20:15,5.0,20, Improper Input Validation,nan
CVE-2010-0439,10/10/2018 19:52,26/03/2010 18:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0433,10/10/2018 19:52,5/03/2010 19:30,4.3,20, Improper Input Validation,nan
CVE-2010-0427,10/10/2018 19:52,25/02/2010 19:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-0426,10/10/2018 19:52,24/02/2010 18:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0405,10/10/2018 19:52,28/09/2010 18:00,5.1,189, Numeric Errors,nan
CVE-2010-0404,10/10/2018 19:52,19/05/2010 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0403,10/10/2018 19:52,19/05/2010 12:08,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0392,10/10/2018 19:52,26/01/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0370,10/10/2018 19:52,21/01/2010 22:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0317,10/10/2018 19:52,15/01/2010 18:30,7.8,399, Resource Management Errors,nan
CVE-2010-0283,10/10/2018 19:51,22/02/2010 13:00,7.8,20, Improper Input Validation,nan
CVE-2010-0280,10/10/2018 19:51,15/01/2010 17:30,9.3,189, Numeric Errors,nan
CVE-2010-0219,10/10/2018 19:51,18/10/2010 17:00,10.0,255, Credentials Management,nan
CVE-2010-0217,10/10/2018 19:51,20/05/2011 22:55,5.8,310, Cryptographic Issues,nan
CVE-2010-0212,10/10/2018 19:51,28/07/2010 12:48,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0211,10/10/2018 19:51,28/07/2010 12:48,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0164,10/10/2018 19:51,25/03/2010 21:00,9.3,399, Resource Management Errors,nan
CVE-2010-0160,10/10/2018 19:51,22/02/2010 13:00,10.0,399, Resource Management Errors,nan
CVE-2010-0155,10/10/2018 19:51,14/09/2010 17:00,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0154,10/10/2018 19:51,14/09/2010 17:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0153,10/10/2018 19:51,14/09/2010 17:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0152,10/10/2018 19:51,14/09/2010 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0132,10/10/2018 19:51,31/03/2010 18:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0130,10/10/2018 19:51,13/05/2010 17:30,9.3,189, Numeric Errors,nan
CVE-2010-0129,10/10/2018 19:51,13/05/2010 17:30,9.3,189, Numeric Errors,nan
CVE-2010-0128,10/10/2018 19:51,13/05/2010 17:30,9.3,189, Numeric Errors,nan
CVE-2010-0127,10/10/2018 19:51,13/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0124,10/10/2018 19:51,15/03/2010 13:28,2.1,255, Credentials Management,nan
CVE-2010-0123,10/10/2018 19:51,15/03/2010 13:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0122,10/10/2018 19:51,15/03/2010 13:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0119,10/10/2018 19:51,25/02/2010 0:30,2.1,200, Information Exposure,nan
CVE-2010-0118,10/10/2018 19:51,25/02/2010 0:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0107,10/10/2018 19:51,23/02/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0062,10/10/2018 19:49,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0059,10/10/2018 19:49,30/03/2010 17:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0010,10/10/2018 19:49,2/02/2010 16:30,6.8,189, Numeric Errors,nan
CVE-2010-0009,10/10/2018 19:49,5/04/2010 16:30,4.3,200, Information Exposure,nan
CVE-2010-0008,10/10/2018 19:49,19/03/2010 19:30,7.8,399, Resource Management Errors,nan
CVE-2010-0007,10/10/2018 19:49,19/01/2010 16:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-5135,10/10/2018 19:49,2/05/2013 11:44,5.0,20, Improper Input Validation,nan
CVE-2009-5101,10/10/2018 19:49,13/09/2011 19:59,5.0,200, Information Exposure,nan
CVE-2009-5100,10/10/2018 19:49,13/09/2011 19:59,2.1,200, Information Exposure,nan
CVE-2009-5099,10/10/2018 19:49,13/09/2011 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5098,10/10/2018 19:49,13/09/2011 19:59,5.4,399, Resource Management Errors,nan
CVE-2009-5087,10/10/2018 19:49,12/09/2011 12:40,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4988,10/10/2018 19:49,25/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4947,10/10/2018 19:49,22/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4945,10/10/2018 19:49,22/07/2010 5:40,7.5,255, Credentials Management,nan
CVE-2009-4943,10/10/2018 19:49,22/07/2010 5:40,5.0,200, Information Exposure,nan
CVE-2009-4939,10/10/2018 19:49,22/07/2010 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4937,10/10/2018 19:49,22/07/2010 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4936,10/10/2018 19:49,22/07/2010 5:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4930,10/10/2018 19:49,12/07/2010 13:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4925,10/10/2018 19:49,12/07/2010 13:27,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4890,10/10/2018 19:49,11/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4886,10/10/2018 19:49,11/06/2010 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4885,10/10/2018 19:49,11/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4884,10/10/2018 19:49,11/06/2010 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4849,10/10/2018 19:49,7/05/2010 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4848,10/10/2018 19:49,7/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4845,10/10/2018 19:49,7/05/2010 18:24,5.0,310, Cryptographic Issues,nan
CVE-2009-4844,10/10/2018 19:49,7/05/2010 18:24,5.0,200, Information Exposure,nan
CVE-2009-4843,10/10/2018 19:49,7/05/2010 18:24,7.5,287, Improper Authentication,nan
CVE-2009-4831,10/10/2018 19:49,29/04/2010 19:30,5.8,20, Improper Input Validation,nan
CVE-2009-4805,10/10/2018 19:49,23/04/2010 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4801,10/10/2018 19:49,23/04/2010 14:30,7.5,287, Improper Authentication,nan
CVE-2009-4796,10/10/2018 19:49,22/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4794,10/10/2018 19:49,22/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4791,10/10/2018 19:49,22/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4783,10/10/2018 19:49,21/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4782,10/10/2018 19:49,21/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4753,10/10/2018 19:49,29/03/2010 18:30,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4747,10/10/2018 19:49,26/03/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4746,10/10/2018 19:49,26/03/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4745,10/10/2018 19:49,26/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4742,10/10/2018 19:49,26/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4719,10/10/2018 19:49,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4668,10/10/2018 19:49,5/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4654,10/10/2018 19:49,26/02/2010 18:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4653,10/10/2018 19:49,26/02/2010 18:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4611,10/10/2018 19:49,13/01/2010 20:30,7.5,20, Improper Input Validation,nan
CVE-2009-4607,10/10/2018 19:49,13/01/2010 11:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4606,10/10/2018 19:49,13/01/2010 11:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4572,10/10/2018 19:49,5/01/2010 19:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4571,10/10/2018 19:49,5/01/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4570,10/10/2018 19:49,5/01/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4556,10/10/2018 19:49,4/01/2010 21:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4554,10/10/2018 19:49,4/01/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4539,10/10/2018 19:49,4/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4521,10/10/2018 19:49,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4511,10/10/2018 19:49,13/04/2010 17:30,4.0,200, Information Exposure,nan
CVE-2009-4509,10/10/2018 19:49,13/04/2010 17:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4505,10/10/2018 19:49,26/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4496,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4495,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4494,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4493,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4492,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4491,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4490,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4489,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4488,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4487,10/10/2018 19:49,13/01/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-4470,10/10/2018 19:49,30/12/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4463,10/10/2018 19:49,30/12/2009 20:00,10.0,255, Credentials Management,nan
CVE-2009-4462,10/10/2018 19:49,30/12/2009 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4455,10/10/2018 19:49,29/12/2009 23:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4454,10/10/2018 19:49,29/12/2009 22:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4452,10/10/2018 19:49,29/12/2009 20:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-4450,10/10/2018 19:49,29/12/2009 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4422,10/10/2018 19:49,24/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4421,10/10/2018 19:49,24/12/2009 17:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4408,10/10/2018 19:49,23/12/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4407,10/10/2018 19:49,23/12/2009 21:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4406,10/10/2018 19:49,23/12/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4403,10/10/2018 19:49,23/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4402,10/10/2018 19:49,23/12/2009 18:30,7.5,16, Configuration,nan
CVE-2009-4386,10/10/2018 19:49,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4367,10/10/2018 19:49,21/12/2009 16:30,6.8,287, Improper Authentication,nan
CVE-2009-4356,10/10/2018 19:49,18/12/2009 19:30,9.3,189, Numeric Errors,nan
CVE-2009-4351,10/10/2018 19:49,17/12/2009 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4347,10/10/2018 19:49,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4322,10/10/2018 19:49,14/12/2009 23:30,5.0,200, Information Exposure,nan
CVE-2009-4321,10/10/2018 19:49,14/12/2009 23:30,5.0,20, Improper Input Validation,nan
CVE-2009-4310,10/10/2018 19:49,13/12/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4309,10/10/2018 19:49,13/12/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4308,10/10/2018 19:48,13/12/2009 1:30,7.1,399, Resource Management Errors,nan
CVE-2009-4261,10/10/2018 19:48,21/12/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4257,10/10/2018 19:48,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4250,10/10/2018 19:48,10/12/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4249,10/10/2018 19:48,10/12/2009 0:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4246,10/10/2018 19:48,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4244,10/10/2018 19:48,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4242,10/10/2018 19:48,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4241,10/10/2018 19:48,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4215,10/10/2018 19:48,7/12/2009 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4211,10/10/2018 19:48,4/12/2009 22:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-4210,10/10/2018 19:48,13/12/2009 1:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4209,10/10/2018 19:48,4/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4195,10/10/2018 19:48,4/12/2009 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4185,10/10/2018 19:48,5/02/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4181,10/10/2018 19:48,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4180,10/10/2018 19:48,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4179,10/10/2018 19:48,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4178,10/10/2018 19:48,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4177,10/10/2018 19:48,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4176,10/10/2018 19:48,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4175,10/10/2018 19:48,2/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-4174,10/10/2018 19:48,2/12/2009 19:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4173,10/10/2018 19:48,2/12/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4172,10/10/2018 19:48,2/12/2009 19:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4171,10/10/2018 19:48,2/12/2009 19:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4170,10/10/2018 19:48,2/12/2009 18:30,5.0,200, Information Exposure,nan
CVE-2009-4168,10/10/2018 19:48,2/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4155,10/10/2018 19:48,2/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4148,10/10/2018 19:48,4/12/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4116,10/10/2018 19:48,30/11/2009 21:30,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4115,10/10/2018 19:48,30/11/2009 21:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4114,10/10/2018 19:48,30/11/2009 21:30,4.9,20, Improper Input Validation,nan
CVE-2009-4113,10/10/2018 19:48,30/11/2009 21:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4112,10/10/2018 19:48,30/11/2009 21:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4108,10/10/2018 19:48,29/11/2009 13:08,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4105,10/10/2018 19:48,29/11/2009 13:08,3.5,20, Improper Input Validation,nan
CVE-2009-4098,10/10/2018 19:48,29/11/2009 13:08,6.0,20, Improper Input Validation,nan
CVE-2009-4084,10/10/2018 19:48,29/11/2009 13:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4083,10/10/2018 19:48,29/11/2009 13:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4073,10/10/2018 19:48,24/11/2009 17:30,5.0,200, Information Exposure,nan
CVE-2009-4051,10/10/2018 19:48,23/11/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-4049,10/10/2018 19:48,23/11/2009 17:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4034,10/10/2018 19:48,15/12/2009 18:30,5.8,310, Cryptographic Issues,nan
CVE-2009-4032,10/10/2018 19:48,29/11/2009 13:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4029,10/10/2018 19:48,20/12/2009 2:30,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-4009,10/10/2018 19:48,8/01/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4006,10/10/2018 19:48,20/11/2009 11:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4003,10/10/2018 19:48,21/01/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2009-4002,10/10/2018 19:48,21/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4001,10/10/2018 19:47,15/03/2010 13:28,9.3,189, Numeric Errors,nan
CVE-2009-3997,10/10/2018 19:47,18/12/2009 18:30,9.3,189, Numeric Errors,nan
CVE-2009-3996,10/10/2018 19:47,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3995,10/10/2018 19:47,18/12/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3994,10/10/2018 19:47,8/12/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3989,10/10/2018 19:47,3/02/2010 19:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3962,10/10/2018 19:47,17/11/2009 18:30,7.8,20, Improper Input Validation,nan
CVE-2009-3950,10/10/2018 19:47,16/11/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3913,10/10/2018 19:47,9/11/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3909,10/10/2018 19:47,19/11/2009 0:30,9.3,189, Numeric Errors,nan
CVE-2009-3904,10/10/2018 19:47,6/11/2009 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3861,10/10/2018 19:47,4/11/2009 17:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3860,10/10/2018 19:47,4/11/2009 17:30,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3853,10/10/2018 19:47,4/11/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3850,10/10/2018 19:47,6/11/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3849,10/10/2018 19:47,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3848,10/10/2018 19:47,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3846,10/10/2018 19:47,10/12/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3844,10/10/2018 19:47,8/12/2009 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3838,10/10/2018 19:47,2/11/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3837,10/10/2018 19:47,2/11/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3830,10/10/2018 19:47,30/10/2009 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-3828,10/10/2018 19:47,30/10/2009 19:30,5.0,287, Improper Authentication,nan
CVE-2009-3826,10/10/2018 19:47,28/10/2009 14:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3806,10/10/2018 19:47,27/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3787,10/10/2018 19:47,26/10/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3748,10/10/2018 19:47,22/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3743,10/10/2018 19:47,26/08/2010 21:00,9.3,189, Numeric Errors,nan
CVE-2009-3733,10/10/2018 19:47,2/11/2009 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3731,10/10/2018 19:47,16/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3711,10/10/2018 19:47,16/10/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3709,10/10/2018 19:47,16/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3703,10/10/2018 19:47,18/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3702,10/10/2018 19:47,22/12/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3700,10/10/2018 19:47,28/10/2009 14:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3666,10/10/2018 19:47,11/10/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3665,10/10/2018 19:47,11/10/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3664,10/10/2018 19:47,11/10/2009 22:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3658,10/10/2018 19:47,9/10/2009 14:30,9.3,399, Resource Management Errors,nan
CVE-2009-3649,10/10/2018 19:47,9/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3637,10/10/2018 19:47,13/01/2010 11:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3591,10/10/2018 19:47,8/10/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-3586,10/10/2018 19:47,8/12/2009 18:30,7.5,189, Numeric Errors,nan
CVE-2009-3584,10/10/2018 19:47,23/12/2009 18:30,5.0,16, Configuration,nan
CVE-2009-3583,10/10/2018 19:47,23/12/2009 18:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3582,10/10/2018 19:47,23/12/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3581,10/10/2018 19:47,23/12/2009 18:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3580,10/10/2018 19:47,23/12/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3579,10/10/2018 19:47,7/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3578,10/10/2018 19:47,24/11/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3577,10/10/2018 19:47,24/11/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3576,10/10/2018 19:47,24/11/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3566,10/10/2018 19:47,13/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3565,10/10/2018 19:47,13/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3547,10/10/2018 19:43,4/11/2009 15:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-3532,10/10/2018 19:43,2/10/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3522,10/10/2018 19:43,1/10/2009 17:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3494,10/10/2018 19:43,30/09/2009 15:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3489,10/10/2018 19:43,30/09/2009 15:30,6.9,16, Configuration,nan
CVE-2009-3482,10/10/2018 19:43,30/09/2009 15:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3457,10/10/2018 19:43,29/09/2009 18:00,5.0,200, Information Exposure,nan
CVE-2009-3452,10/10/2018 19:43,29/09/2009 15:30,5.0,200, Information Exposure,nan
CVE-2009-3451,10/10/2018 19:43,29/09/2009 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3450,10/10/2018 19:43,29/09/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3447,10/10/2018 19:43,29/09/2009 15:30,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-3444,10/10/2018 19:43,28/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3441,10/10/2018 19:43,28/09/2009 22:30,5.0,287, Improper Authentication,nan
CVE-2009-3440,10/10/2018 19:43,28/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3439,10/10/2018 19:43,28/09/2009 22:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3427,10/10/2018 19:43,25/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3387,10/10/2018 19:43,3/02/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3368,10/10/2018 19:43,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3357,10/10/2018 19:43,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3319,10/10/2018 19:43,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3306,10/10/2018 19:43,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3279,10/10/2018 19:43,21/09/2009 19:30,4.9,310, Cryptographic Issues,nan
CVE-2009-3278,10/10/2018 19:43,21/09/2009 19:30,4.9,310, Cryptographic Issues,nan
CVE-2009-3275,10/10/2018 19:43,21/09/2009 19:30,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-3270,10/10/2018 19:43,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2009-3269,10/10/2018 19:43,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2009-3268,10/10/2018 19:43,18/09/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2009-3265,10/10/2018 19:43,18/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3263,10/10/2018 19:43,18/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3231,10/10/2018 19:43,17/09/2009 10:30,6.8,287, Improper Authentication,nan
CVE-2009-3230,10/10/2018 19:43,17/09/2009 10:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3220,10/10/2018 19:43,16/09/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3215,10/10/2018 19:43,16/09/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3214,10/10/2018 19:43,16/09/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3200,10/10/2018 19:43,21/09/2009 19:30,5.9,310, Cryptographic Issues,nan
CVE-2009-3114,10/10/2018 19:43,9/09/2009 22:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3095,10/10/2018 19:43,8/09/2009 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3068,10/10/2018 19:43,4/09/2009 18:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3042,10/10/2018 19:43,1/09/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3040,10/10/2018 19:43,1/09/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3031,10/10/2018 19:43,3/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3027,10/10/2018 19:42,11/12/2009 16:30,10.0,287, Improper Authentication,nan
CVE-2009-3018,10/10/2018 19:42,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3017,10/10/2018 19:42,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3014,10/10/2018 19:42,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2977,10/10/2018 19:42,27/08/2009 17:30,3.3,310, Cryptographic Issues,nan
CVE-2009-2970,10/10/2018 19:42,19/10/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2968,10/10/2018 19:42,2/09/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2965,10/10/2018 19:42,25/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2960,10/10/2018 19:42,25/08/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2955,10/10/2018 19:42,24/08/2009 15:30,5.0,20, Improper Input Validation,nan
CVE-2009-2954,10/10/2018 19:42,24/08/2009 15:30,5.0,20, Improper Input Validation,nan
CVE-2009-2953,10/10/2018 19:42,24/08/2009 15:30,5.0,399, Resource Management Errors,nan
CVE-2009-2936,10/10/2018 19:42,5/04/2010 16:30,7.5,287, Improper Authentication,nan
CVE-2009-2933,10/10/2018 19:42,21/08/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2932,10/10/2018 19:42,21/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2931,10/10/2018 19:42,21/08/2009 20:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2930,10/10/2018 19:42,21/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2918,10/10/2018 19:42,21/08/2009 11:30,2.1,20, Improper Input Validation,nan
CVE-2009-2898,10/10/2018 19:42,13/10/2009 10:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2897,10/10/2018 19:42,13/10/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2813,10/10/2018 19:42,14/09/2009 16:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2793,10/10/2018 19:42,18/09/2009 22:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2754,10/10/2018 19:42,5/03/2010 16:30,10.0,189, Numeric Errors,nan
CVE-2009-2753,10/10/2018 19:42,5/03/2010 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2740,10/10/2018 19:42,19/08/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2009-2734,10/10/2018 19:42,16/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2733,10/10/2018 19:42,16/10/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2732,10/10/2018 19:42,21/08/2009 11:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2730,10/10/2018 19:42,12/08/2009 10:30,7.5,310, Cryptographic Issues,nan
CVE-2009-2726,10/10/2018 19:42,12/08/2009 10:30,7.8,399, Resource Management Errors,nan
CVE-2009-2724,10/10/2018 19:42,10/08/2009 20:30,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2719,10/10/2018 19:42,10/08/2009 20:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2718,10/10/2018 19:42,10/08/2009 20:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-2692,10/10/2018 19:41,14/08/2009 15:16,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2685,10/10/2018 19:41,6/11/2009 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2684,10/10/2018 19:41,13/10/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2675,10/10/2018 19:41,5/08/2009 19:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2673,10/10/2018 19:41,5/08/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2672,10/10/2018 19:41,5/08/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2670,10/10/2018 19:41,5/08/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2666,10/10/2018 19:41,7/08/2009 19:00,6.4,310, Cryptographic Issues,nan
CVE-2009-2631,10/10/2018 19:41,4/12/2009 11:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-2628,10/10/2018 19:41,8/09/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2625,10/10/2018 19:40,6/08/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2608,10/10/2018 19:40,27/07/2009 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2598,10/10/2018 19:40,27/07/2009 14:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2582,10/10/2018 19:40,23/07/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2579,10/10/2018 19:40,5/08/2009 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2578,10/10/2018 19:40,22/07/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2577,10/10/2018 19:40,22/07/2009 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-2576,10/10/2018 19:40,22/07/2009 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-2574,10/10/2018 19:40,22/07/2009 17:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2573,10/10/2018 19:40,22/07/2009 17:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2564,10/10/2018 19:40,21/07/2009 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-2557,10/10/2018 19:40,21/07/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2542,10/10/2018 19:40,20/07/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2009-2541,10/10/2018 19:40,20/07/2009 18:30,7.8,399, Resource Management Errors,nan
CVE-2009-2539,10/10/2018 19:40,20/07/2009 18:30,7.8,189, Numeric Errors,nan
CVE-2009-2538,10/10/2018 19:40,20/07/2009 18:30,7.1,399, Resource Management Errors,nan
CVE-2009-2537,10/10/2018 19:40,20/07/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2009-2536,10/10/2018 19:40,20/07/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2009-2534,10/10/2018 19:40,20/07/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-2533,10/10/2018 19:40,20/07/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-2479,10/10/2018 19:40,16/07/2009 15:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2461,10/10/2018 19:40,14/07/2009 20:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-2460,10/10/2018 19:40,14/07/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2451,10/10/2018 19:40,14/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2432,10/10/2018 19:40,10/07/2009 21:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2431,10/10/2018 19:40,10/07/2009 21:00,5.0,20, Improper Input Validation,nan
CVE-2009-2421,10/10/2018 19:40,9/07/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2009-2420,10/10/2018 19:40,9/07/2009 16:30,5.8,20, Improper Input Validation,nan
CVE-2009-2417,10/10/2018 19:40,14/08/2009 15:16,7.5,310, Cryptographic Issues,nan
CVE-2009-2416,10/10/2018 19:40,11/08/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2009-2414,10/10/2018 19:40,11/08/2009 18:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2409,10/10/2018 19:40,30/07/2009 19:30,5.1,310, Cryptographic Issues,nan
CVE-2009-2407,10/10/2018 19:40,31/07/2009 19:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2381,10/10/2018 19:39,8/07/2009 15:30,5.0,255, Credentials Management,nan
CVE-2009-2377,10/10/2018 19:39,8/07/2009 15:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2375,10/10/2018 19:39,8/07/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2361,10/10/2018 19:39,8/07/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2359,10/10/2018 19:39,7/07/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2358,10/10/2018 19:39,7/07/2009 23:30,4.6,255, Credentials Management,nan
CVE-2009-2357,10/10/2018 19:39,7/07/2009 23:30,10.0,16, Configuration,nan
CVE-2009-2356,10/10/2018 19:39,7/07/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2355,10/10/2018 19:39,7/07/2009 23:30,4.0,189, Numeric Errors,nan
CVE-2009-2354,10/10/2018 19:39,7/07/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2353,10/10/2018 19:39,7/07/2009 23:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2352,10/10/2018 19:39,7/07/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2350,10/10/2018 19:39,7/07/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2348,10/10/2018 19:39,17/07/2009 16:30,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2347,10/10/2018 19:39,14/07/2009 20:30,9.3,189, Numeric Errors,nan
CVE-2009-2346,10/10/2018 19:39,8/09/2009 18:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2344,10/10/2018 19:39,7/07/2009 19:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2334,10/10/2018 19:39,10/07/2009 21:00,4.9,287, Improper Authentication,nan
CVE-2009-2324,10/10/2018 19:39,5/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2323,10/10/2018 19:39,5/07/2009 16:30,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2322,10/10/2018 19:39,5/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2320,10/10/2018 19:39,5/07/2009 16:30,7.5,20, Improper Input Validation,nan
CVE-2009-2319,10/10/2018 19:39,5/07/2009 16:30,5.0,310, Cryptographic Issues,nan
CVE-2009-2318,10/10/2018 19:39,5/07/2009 16:30,7.8,20, Improper Input Validation,nan
CVE-2009-2317,10/10/2018 19:39,5/07/2009 16:30,10.0,255, Credentials Management,nan
CVE-2009-2304,10/10/2018 19:39,2/07/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2009-2303,10/10/2018 19:39,2/07/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2009-2302,10/10/2018 19:39,2/07/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2301,10/10/2018 19:39,2/07/2009 10:30,7.8,20, Improper Input Validation,nan
CVE-2009-2300,10/10/2018 19:39,2/07/2009 10:30,10.0,399, Resource Management Errors,nan
CVE-2009-2299,10/10/2018 19:39,2/07/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2009-2295,10/10/2018 19:39,5/07/2009 16:30,7.5,189, Numeric Errors,nan
CVE-2009-2294,10/10/2018 19:39,5/07/2009 16:30,7.5,189, Numeric Errors,nan
CVE-2009-2290,10/10/2018 19:39,1/07/2009 13:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2289,10/10/2018 19:39,1/07/2009 13:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2274,10/10/2018 19:39,1/07/2009 13:00,7.8,200, Information Exposure,nan
CVE-2009-2273,10/10/2018 19:39,1/07/2009 13:00,5.0,310, Cryptographic Issues,nan
CVE-2009-2272,10/10/2018 19:39,1/07/2009 13:00,5.0,310, Cryptographic Issues,nan
CVE-2009-2271,10/10/2018 19:39,1/07/2009 13:00,10.0,255, Credentials Management,nan
CVE-2009-2270,10/10/2018 19:39,1/07/2009 13:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2269,10/10/2018 19:39,1/07/2009 13:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2265,10/10/2018 19:39,5/07/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2262,10/10/2018 19:39,30/06/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2258,10/10/2018 19:39,30/06/2009 10:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2257,10/10/2018 19:39,30/06/2009 10:30,7.8,287, Improper Authentication,nan
CVE-2009-2256,10/10/2018 19:39,30/06/2009 10:30,7.8,20, Improper Input Validation,nan
CVE-2009-2206,10/10/2018 19:39,10/09/2009 21:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2166,10/10/2018 19:39,22/06/2009 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2164,10/10/2018 19:39,22/06/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2163,10/10/2018 19:39,22/06/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2161,10/10/2018 19:39,22/06/2009 19:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2160,10/10/2018 19:39,22/06/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2159,10/10/2018 19:39,22/06/2009 19:30,6.4,287, Improper Authentication,nan
CVE-2009-2158,10/10/2018 19:39,22/06/2009 19:30,7.5,255, Credentials Management,nan
CVE-2009-2157,10/10/2018 19:39,22/06/2009 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2156,10/10/2018 19:39,22/06/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2134,10/10/2018 19:39,19/06/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-2133,10/10/2018 19:39,19/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2119,10/10/2018 19:39,18/06/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2116,10/10/2018 19:39,18/06/2009 21:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2115,10/10/2018 19:39,18/06/2009 21:30,6.8,200, Information Exposure,nan
CVE-2009-2114,10/10/2018 19:39,18/06/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2107,10/10/2018 19:39,17/06/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2097,10/10/2018 19:39,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2036,10/10/2018 19:39,12/06/2009 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2026,10/10/2018 19:39,10/08/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2011,10/10/2018 19:39,16/06/2009 21:00,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-2010,10/10/2018 19:39,8/06/2009 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1955,10/10/2018 19:39,8/06/2009 1:00,7.8,399, Resource Management Errors,nan
CVE-2009-1943,10/10/2018 19:39,5/06/2009 21:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1937,10/10/2018 19:39,5/06/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1915,10/10/2018 19:39,4/06/2009 17:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1911,10/10/2018 19:39,4/06/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1910,10/10/2018 19:39,4/06/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1907,10/10/2018 19:39,4/06/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1894,10/10/2018 19:38,17/07/2009 16:30,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1882,10/10/2018 19:38,2/06/2009 15:30,9.3,189, Numeric Errors,nan
CVE-2009-1879,10/10/2018 19:38,21/08/2009 17:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1874,10/10/2018 19:38,18/08/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1873,10/10/2018 19:38,18/08/2009 22:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1872,10/10/2018 19:38,18/08/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1869,10/10/2018 19:38,31/07/2009 19:30,9.3,189, Numeric Errors,nan
CVE-2009-1857,10/10/2018 19:38,11/06/2009 15:30,9.3,399, Resource Management Errors,nan
CVE-2009-1855,10/10/2018 19:38,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1845,10/10/2018 19:38,1/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1843,10/10/2018 19:38,1/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1837,10/10/2018 19:38,12/06/2009 21:30,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1828,10/10/2018 19:38,29/05/2009 20:30,5.0,399, Resource Management Errors,nan
CVE-2009-1827,10/10/2018 19:38,29/05/2009 20:30,5.0,399, Resource Management Errors,nan
CVE-2009-1792,10/10/2018 19:38,29/05/2009 18:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-1783,10/10/2018 19:38,22/05/2009 20:30,10.0,20, Improper Input Validation,nan
CVE-2009-1778,10/10/2018 19:38,22/05/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1777,10/10/2018 19:38,22/05/2009 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-1776,10/10/2018 19:38,22/05/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1766,10/10/2018 19:38,22/05/2009 18:30,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1762,10/10/2018 19:38,22/05/2009 16:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1761,10/10/2018 19:38,16/06/2009 23:30,5.0,20, Improper Input Validation,nan
CVE-2009-1760,10/10/2018 19:38,11/06/2009 21:30,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1745,10/10/2018 19:38,21/05/2009 15:30,10.0,255, Credentials Management,nan
CVE-2009-1743,10/10/2018 19:38,21/05/2009 0:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1729,10/10/2018 19:38,21/05/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1719,10/10/2018 19:38,16/06/2009 23:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1717,10/10/2018 19:38,5/06/2009 16:00,6.8,189, Numeric Errors,nan
CVE-2009-1701,10/10/2018 19:38,10/06/2009 18:00,9.3,399, Resource Management Errors,nan
CVE-2009-1698,10/10/2018 19:37,10/06/2009 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1692,10/10/2018 19:37,19/06/2009 16:30,7.1,399, Resource Management Errors,nan
CVE-2009-1661,10/10/2018 19:37,18/05/2009 12:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1636,10/10/2018 19:37,26/05/2009 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1635,10/10/2018 19:37,22/05/2009 16:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1630,10/10/2018 19:37,14/05/2009 17:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1629,10/10/2018 19:37,14/05/2009 17:30,6.8,287, Improper Authentication,nan
CVE-2009-1621,10/10/2018 19:37,12/05/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1620,10/10/2018 19:37,12/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1608,10/10/2018 19:37,11/05/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1594,10/10/2018 19:37,21/05/2009 14:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1593,10/10/2018 19:37,21/05/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1586,10/10/2018 19:37,7/05/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1584,10/10/2018 19:37,7/05/2009 23:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1583,10/10/2018 19:37,7/05/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1571,10/10/2018 19:37,22/02/2010 13:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1570,10/10/2018 19:37,13/11/2009 15:30,9.3,189, Numeric Errors,nan
CVE-2009-1569,10/10/2018 19:37,8/12/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1568,10/10/2018 19:37,8/12/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1567,10/10/2018 19:37,3/12/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1566,10/10/2018 19:37,3/12/2009 18:30,9.3,189, Numeric Errors,nan
CVE-2009-1554,10/10/2018 19:37,6/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1553,10/10/2018 19:37,6/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1527,10/10/2018 19:37,5/05/2009 20:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1500,10/10/2018 19:37,1/05/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1497,10/10/2018 19:37,1/05/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1480,10/10/2018 19:37,29/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1479,10/10/2018 19:37,22/10/2009 16:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1477,10/10/2018 19:37,27/05/2009 16:30,10.0,310, Cryptographic Issues,nan
CVE-2009-1474,10/10/2018 19:37,27/05/2009 16:30,7.6,310, Cryptographic Issues,nan
CVE-2009-1473,10/10/2018 19:37,27/05/2009 16:30,10.0,310, Cryptographic Issues,nan
CVE-2009-1472,10/10/2018 19:37,27/05/2009 16:30,10.0,310, Cryptographic Issues,nan
CVE-2009-1469,10/10/2018 19:37,5/05/2009 20:30,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1468,10/10/2018 19:37,5/05/2009 20:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1467,10/10/2018 19:36,5/05/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1466,10/10/2018 19:36,14/05/2009 17:30,2.1,310, Cryptographic Issues,nan
CVE-2009-1465,10/10/2018 19:36,14/05/2009 17:30,7.5,255, Credentials Management,nan
CVE-2009-1464,10/10/2018 19:36,14/05/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1456,10/10/2018 19:36,28/04/2009 16:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1453,10/10/2018 19:36,28/04/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1439,10/10/2018 19:36,27/04/2009 18:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1435,10/10/2018 19:36,27/04/2009 18:00,2.1,399, Resource Management Errors,nan
CVE-2009-1430,10/10/2018 19:36,29/04/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1408,10/10/2018 19:36,24/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1394,10/10/2018 19:36,26/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1388,10/10/2018 19:36,5/07/2009 16:30,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1385,10/10/2018 19:36,4/06/2009 16:30,7.8,189, Numeric Errors,nan
CVE-2009-1384,10/10/2018 19:36,28/05/2009 20:30,5.0,287, Improper Authentication,nan
CVE-2009-1383,10/10/2018 19:36,14/07/2009 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1382,10/10/2018 19:36,14/07/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1357,10/10/2018 19:36,23/04/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2009-1354,10/10/2018 19:36,21/04/2009 16:24,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1353,10/10/2018 19:36,21/04/2009 16:24,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1350,10/10/2018 19:36,21/04/2009 16:24,10.0,20, Improper Input Validation,nan
CVE-2009-1349,10/10/2018 19:36,21/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1348,10/10/2018 19:36,30/04/2009 20:30,7.6,20, Improper Input Validation,nan
CVE-2009-1338,10/10/2018 19:36,22/04/2009 15:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-1337,10/10/2018 19:36,22/04/2009 15:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1336,10/10/2018 19:35,22/04/2009 15:30,4.9,20, Improper Input Validation,nan
CVE-2009-1333,10/10/2018 19:35,17/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1316,10/10/2018 19:35,17/04/2009 14:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1315,10/10/2018 19:35,17/04/2009 14:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1312,10/10/2018 19:35,22/04/2009 18:30,4.3,16, Configuration,nan
CVE-2009-1298,10/10/2018 19:35,8/12/2009 23:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1294,10/10/2018 19:35,16/04/2009 15:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1293,10/10/2018 19:35,16/04/2009 15:12,5.0,200, Information Exposure,nan
CVE-2009-1290,10/10/2018 19:35,13/04/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1289,10/10/2018 19:35,13/04/2009 16:30,4.0,200, Information Exposure,nan
CVE-2009-1288,10/10/2018 19:35,13/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1274,10/10/2018 19:35,8/04/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1268,10/10/2018 19:35,13/04/2009 16:30,4.3,20, Improper Input Validation,nan
CVE-2009-1262,10/10/2018 19:35,7/04/2009 23:30,7.2,134, Use of Externally-Controlled Format String,nan
CVE-2009-1255,10/10/2018 19:35,30/04/2009 20:30,5.0,200, Information Exposure,nan
CVE-2009-1252,10/10/2018 19:35,19/05/2009 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1242,10/10/2018 19:35,6/04/2009 14:30,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-1241,10/10/2018 19:35,3/04/2009 18:30,7.5,20, Improper Input Validation,nan
CVE-2009-1227,10/10/2018 19:35,2/04/2009 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1223,10/10/2018 19:35,2/04/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1222,10/10/2018 19:35,2/04/2009 15:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1220,10/10/2018 19:35,1/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1219,10/10/2018 19:35,1/04/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2009-1218,10/10/2018 19:35,1/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1210,10/10/2018 19:35,1/04/2009 10:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-1204,10/10/2018 19:35,1/04/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1202,10/10/2018 19:35,25/06/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1201,10/10/2018 19:35,25/06/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1194,10/10/2018 19:34,11/05/2009 15:30,6.8,189, Numeric Errors,nan
CVE-2009-1188,10/10/2018 19:34,23/04/2009 19:30,5.0,189, Numeric Errors,nan
CVE-2009-1187,10/10/2018 19:34,23/04/2009 19:30,5.0,189, Numeric Errors,nan
CVE-2009-1186,10/10/2018 19:34,17/04/2009 14:30,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1185,10/10/2018 19:34,17/04/2009 14:30,7.2,20, Improper Input Validation,nan
CVE-2009-1177,10/10/2018 19:34,31/03/2009 18:24,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1176,10/10/2018 19:34,31/03/2009 18:24,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1171,10/10/2018 19:34,30/03/2009 22:30,4.3,20, Improper Input Validation,nan
CVE-2009-1151,10/10/2018 19:34,26/03/2009 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1119,10/10/2018 19:34,15/04/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1106,10/10/2018 19:34,25/03/2009 23:30,6.4,20, Improper Input Validation,nan
CVE-2009-1104,10/10/2018 19:34,25/03/2009 23:30,5.8,16, Configuration,nan
CVE-2009-1102,10/10/2018 19:34,25/03/2009 23:30,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1099,10/10/2018 19:33,25/03/2009 23:30,7.5,189, Numeric Errors,nan
CVE-2009-1098,10/10/2018 19:33,25/03/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1097,10/10/2018 19:33,25/03/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1096,10/10/2018 19:33,25/03/2009 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1095,10/10/2018 19:33,25/03/2009 23:30,10.0,189, Numeric Errors,nan
CVE-2009-1093,10/10/2018 19:33,25/03/2009 23:30,5.0,16, Configuration,nan
CVE-2009-1092,10/10/2018 19:33,25/03/2009 18:30,9.3,399, Resource Management Errors,nan
CVE-2009-1091,10/10/2018 19:33,25/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1090,10/10/2018 19:33,25/03/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1089,10/10/2018 19:33,25/03/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1088,10/10/2018 19:33,25/03/2009 18:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1072,10/10/2018 19:32,25/03/2009 1:30,4.9,16, Configuration,nan
CVE-2009-1070,10/10/2018 19:32,26/03/2009 5:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1068,10/10/2018 19:32,26/03/2009 5:51,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1053,10/10/2018 19:32,24/03/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1052,10/10/2018 19:32,24/03/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1051,10/10/2018 19:32,24/03/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1048,10/10/2018 19:32,14/08/2009 15:16,10.0,287, Improper Authentication,nan
CVE-2009-1044,10/10/2018 19:32,23/03/2009 14:19,9.3,399, Resource Management Errors,nan
CVE-2009-1039,10/10/2018 19:32,20/03/2009 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1030,10/10/2018 19:32,20/03/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1029,10/10/2018 19:32,20/03/2009 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1027,10/10/2018 19:32,20/03/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1022,10/10/2018 19:32,20/03/2009 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0964,10/10/2018 19:32,19/03/2009 10:30,5.0,255, Credentials Management,nan
CVE-2009-0963,10/10/2018 19:32,19/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0950,10/10/2018 19:32,2/06/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0949,10/10/2018 19:32,9/06/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2009-0945,10/10/2018 19:32,13/05/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0941,10/10/2018 19:32,18/03/2009 21:00,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-0940,10/10/2018 19:32,18/03/2009 21:00,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0922,10/10/2018 19:32,17/03/2009 17:30,4.0,399, Resource Management Errors,nan
CVE-2009-0921,10/10/2018 19:32,25/03/2009 1:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0920,10/10/2018 19:32,25/03/2009 1:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0882,10/10/2018 19:32,12/03/2009 15:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0880,10/10/2018 19:32,12/03/2009 15:20,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0879,10/10/2018 19:32,12/03/2009 15:20,5.0,20, Improper Input Validation,nan
CVE-2009-0877,10/10/2018 19:32,12/03/2009 15:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0871,10/10/2018 19:32,11/03/2009 14:19,3.5,20, Improper Input Validation,nan
CVE-2009-0860,10/10/2018 19:32,10/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0858,10/10/2018 19:32,9/03/2009 21:30,5.8,20, Improper Input Validation,nan
CVE-2009-0853,10/10/2018 19:32,9/03/2009 17:30,6.8,287, Improper Authentication,nan
CVE-2009-0852,10/10/2018 19:32,9/03/2009 17:30,5.0,200, Information Exposure,nan
CVE-2009-0851,10/10/2018 19:32,9/03/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0850,10/10/2018 19:32,9/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0847,10/10/2018 19:32,9/04/2009 0:30,4.3,189, Numeric Errors,nan
CVE-2009-0846,10/10/2018 19:31,9/04/2009 0:30,10.0,20, Improper Input Validation,nan
CVE-2009-0845,10/10/2018 19:31,27/03/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2009-0844,10/10/2018 19:31,9/04/2009 0:30,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0843,10/10/2018 19:31,31/03/2009 18:24,7.8,20, Improper Input Validation,nan
CVE-2009-0842,10/10/2018 19:31,31/03/2009 18:24,4.3,200, Information Exposure,nan
CVE-2009-0841,10/10/2018 19:31,31/03/2009 18:24,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0840,10/10/2018 19:31,31/03/2009 18:24,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0839,10/10/2018 19:31,31/03/2009 18:24,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0837,10/10/2018 19:31,10/03/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0836,10/10/2018 19:31,10/03/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0834,10/10/2018 19:31,6/03/2009 11:30,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-0832,10/10/2018 19:31,5/03/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0825,10/10/2018 19:31,9/03/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0824,10/10/2018 19:31,14/03/2009 18:30,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0814,10/10/2018 19:31,5/03/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0812,10/10/2018 19:31,4/03/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0811,10/10/2018 19:31,4/03/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0796,10/10/2018 19:31,7/04/2009 23:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0792,10/10/2018 19:31,14/04/2009 16:26,9.3,189, Numeric Errors,nan
CVE-2009-0787,10/10/2018 19:31,25/03/2009 1:30,4.9,189, Numeric Errors,nan
CVE-2009-0769,10/10/2018 19:31,6/03/2009 6:50,4.3,399, Resource Management Errors,nan
CVE-2009-0748,10/10/2018 19:30,27/02/2009 17:30,4.9,20, Improper Input Validation,nan
CVE-2009-0747,10/10/2018 19:30,27/02/2009 17:30,4.9,399, Resource Management Errors,nan
CVE-2009-0746,10/10/2018 19:30,27/02/2009 17:30,4.9,20, Improper Input Validation,nan
CVE-2009-0745,10/10/2018 19:30,27/02/2009 17:30,4.9,20, Improper Input Validation,nan
CVE-2009-0744,10/10/2018 19:30,27/02/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-0741,10/10/2018 19:30,25/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0734,10/10/2018 19:30,25/02/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0733,10/10/2018 19:30,23/03/2009 14:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0730,10/10/2018 19:30,24/02/2009 23:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0727,10/10/2018 19:30,24/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0723,10/10/2018 19:30,23/03/2009 14:19,9.3,189, Numeric Errors,nan
CVE-2009-0698,10/10/2018 19:30,23/02/2009 15:30,7.5,189, Numeric Errors,nan
CVE-2009-0696,10/10/2018 19:30,29/07/2009 17:30,4.3,16, Configuration,nan
CVE-2009-0686,10/10/2018 19:30,1/04/2009 10:30,7.2,399, Resource Management Errors,nan
CVE-2009-0682,10/10/2018 19:30,19/08/2009 17:30,2.1,20, Improper Input Validation,nan
CVE-2009-0681,10/10/2018 19:30,15/04/2009 10:30,7.2,20, Improper Input Validation,nan
CVE-2009-0678,10/10/2018 19:30,22/02/2009 22:30,5.0,200, Information Exposure,nan
CVE-2009-0677,10/10/2018 19:30,22/02/2009 22:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0676,10/10/2018 19:30,22/02/2009 22:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-0675,10/10/2018 19:30,22/02/2009 22:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-0674,10/10/2018 19:30,22/02/2009 22:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0673,10/10/2018 19:30,22/02/2009 22:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0672,10/10/2018 19:30,22/02/2009 22:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0647,10/10/2018 19:29,19/02/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2009-0646,10/10/2018 19:29,18/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0644,10/10/2018 19:29,18/02/2009 19:30,5.0,255, Credentials Management,nan
CVE-2009-0640,10/10/2018 19:29,20/02/2009 6:47,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0608,10/10/2018 19:29,17/02/2009 17:30,7.2,189, Numeric Errors,nan
CVE-2009-0607,10/10/2018 19:29,17/02/2009 17:30,7.2,189, Numeric Errors,nan
CVE-2009-0606,10/10/2018 19:29,17/02/2009 17:30,7.2,20, Improper Input Validation,nan
CVE-2009-0601,10/10/2018 19:29,16/02/2009 20:30,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2009-0600,10/10/2018 19:29,16/02/2009 20:30,4.3,20, Improper Input Validation,nan
CVE-2009-0599,10/10/2018 19:29,16/02/2009 20:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0590,10/10/2018 19:29,27/03/2009 16:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0587,10/10/2018 19:29,14/03/2009 18:30,7.5,189, Numeric Errors,nan
CVE-2009-0586,10/10/2018 19:29,14/03/2009 18:30,7.5,189, Numeric Errors,nan
CVE-2009-0585,10/10/2018 19:29,14/03/2009 18:30,7.5,189, Numeric Errors,nan
CVE-2009-0584,10/10/2018 19:29,23/03/2009 20:00,9.3,189, Numeric Errors,nan
CVE-2009-0583,10/10/2018 19:29,23/03/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0581,10/10/2018 19:29,23/03/2009 14:19,4.3,399, Resource Management Errors,nan
CVE-2009-0572,10/10/2018 19:29,13/02/2009 17:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0546,10/10/2018 19:29,12/02/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0545,10/10/2018 19:29,12/02/2009 23:30,10.0,20, Improper Input Validation,nan
CVE-2018-5544,10/10/2018 19:26,31/07/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-15139,10/10/2018 18:25,13/08/2018 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-15140,10/10/2018 18:23,13/08/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15142,10/10/2018 18:21,13/08/2018 18:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15141,10/10/2018 18:20,13/08/2018 18:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15143,10/10/2018 18:18,13/08/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7097,10/10/2018 18:13,14/08/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7098,10/10/2018 18:12,14/08/2018 14:29,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15144,10/10/2018 18:12,13/08/2018 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7099,10/10/2018 18:11,14/08/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-15145,10/10/2018 18:11,13/08/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-4832,10/10/2018 17:29,24/04/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2010-3190,10/10/2018 17:29,31/08/2010 20:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-15154,10/10/2018 17:21,15/08/2018 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15153,10/10/2018 17:20,15/08/2018 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15155,10/10/2018 17:19,15/08/2018 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-15156,10/10/2018 17:17,15/08/2018 17:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1999037,10/10/2018 17:04,1/08/2018 13:29,4.0,20, Improper Input Validation,nan
CVE-2017-1286,10/10/2018 16:30,13/08/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-13392,10/10/2018 16:24,13/08/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14850,10/10/2018 15:46,13/08/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15125,10/10/2018 15:43,13/08/2018 21:48,5.0,200, Information Exposure,nan
CVE-2018-15124,10/10/2018 15:35,13/08/2018 21:48,10.0,326, Inadequate Encryption Strength,nan
CVE-2018-14849,10/10/2018 15:27,13/08/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14923,10/10/2018 15:09,3/08/2018 20:29,9.3,20, Improper Input Validation,nan
CVE-2018-14857,10/10/2018 15:05,6/08/2018 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-14911,10/10/2018 15:04,3/08/2018 19:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7060,10/10/2018 13:38,6/08/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14028,10/10/2018 13:06,10/08/2018 16:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7754,10/10/2018 12:59,10/08/2018 16:29,2.1,534, DEPRECATED: Information Exposure Through Debug Log Files,nan
CVE-2018-3615,10/10/2018 10:29,14/08/2018 19:29,5.4,200, Information Exposure,nan
CVE-2017-12478,10/10/2018 10:29,7/08/2017 15:29,10.0,287, Improper Authentication,nan
CVE-2015-5621,10/10/2018 10:29,19/08/2015 15:59,7.5,19, Data Processing Errors,nan
CVE-2012-0711,10/10/2018 10:29,20/03/2012 20:55,7.5,189, Numeric Errors,nan
CVE-2012-0710,10/10/2018 10:29,20/03/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2018-7268,9/10/2018 20:01,21/05/2018 15:29,4.9,200, Information Exposure,nan
CVE-2018-6940,9/10/2018 20:01,20/02/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6563,9/10/2018 20:01,20/06/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11027,9/10/2018 20:01,29/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9802,9/10/2018 20:01,14/08/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9800,9/10/2018 20:01,11/08/2017 21:29,7.5,20, Improper Input Validation,nan
CVE-2017-9767,9/10/2018 20:01,18/08/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9613,9/10/2018 20:01,15/06/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9538,9/10/2018 20:01,3/10/2017 1:29,4.0,20, Improper Input Validation,nan
CVE-2017-9537,9/10/2018 20:01,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8802,9/10/2018 20:01,16/01/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7357,9/10/2018 20:01,14/04/2017 18:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-7185,9/10/2018 20:01,10/04/2017 15:59,5.0,416, Use After Free,nan
CVE-2017-7183,9/10/2018 20:01,27/03/2017 17:59,5.0,20, Improper Input Validation,nan
CVE-2017-6430,9/10/2018 20:01,15/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-6429,9/10/2018 20:01,15/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5359,9/10/2018 20:01,15/03/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2017-15271,9/10/2018 20:01,15/11/2017 16:29,4.3,416, Use After Free,nan
CVE-2017-15270,9/10/2018 20:01,15/11/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-14089,9/10/2018 20:01,6/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14087,9/10/2018 20:01,6/10/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2017-14085,9/10/2018 20:01,6/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-13754,9/10/2018 20:01,7/09/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12815,9/10/2018 20:01,26/03/2018 21:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12410,9/10/2018 20:01,26/03/2018 21:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-11494,9/10/2018 20:01,2/08/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9962,9/10/2018 20:01,31/01/2017 22:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-9832,9/10/2018 20:01,10/12/2016 2:59,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-9795,9/10/2018 20:00,27/01/2017 22:59,7.2,20, Improper Input Validation,nan
CVE-2016-9565,9/10/2018 20:00,15/12/2016 22:59,7.5,284, Improper Access Control,nan
CVE-2016-7955,9/10/2018 20:00,15/03/2017 16:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7866,9/10/2018 20:00,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7442,9/10/2018 20:00,3/10/2016 16:09,2.1,200, Information Exposure,nan
CVE-2016-7397,9/10/2018 20:00,3/10/2016 16:09,2.1,200, Information Exposure,nan
CVE-2016-7140,9/10/2018 20:00,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7139,9/10/2018 20:00,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7138,9/10/2018 20:00,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7137,9/10/2018 20:00,7/03/2017 16:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-7136,9/10/2018 20:00,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7135,9/10/2018 20:00,7/03/2017 16:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6920,9/10/2018 20:00,23/01/2017 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6802,9/10/2018 20:00,20/09/2016 19:59,5.0,284, Improper Access Control,nan
CVE-2016-6668,9/10/2018 20:00,23/01/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-6603,9/10/2018 20:00,23/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2016-6602,9/10/2018 20:00,23/01/2017 21:59,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2016-6601,9/10/2018 20:00,23/01/2017 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6600,9/10/2018 20:00,23/01/2017 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6597,9/10/2018 20:00,10/08/2016 14:59,5.0,254, 7PK – Security Features,nan
CVE-2016-6582,9/10/2018 20:00,23/01/2017 21:59,6.4,254, 7PK – Security Features,nan
CVE-2016-6496,9/10/2018 20:00,9/12/2016 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-6492,9/10/2018 20:00,12/01/2017 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6484,9/10/2018 20:00,23/01/2017 21:59,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2016-6231,9/10/2018 20:00,25/08/2016 18:59,4.3,200, Information Exposure,nan
CVE-2016-6186,9/10/2018 20:00,5/08/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6167,9/10/2018 20:00,30/01/2017 22:59,4.4,426, Untrusted Search Path,nan
CVE-2016-6133,9/10/2018 20:00,25/07/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5847,9/10/2018 20:00,13/08/2016 1:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-5821,9/10/2018 20:00,13/07/2016 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5715,9/10/2018 20:00,12/01/2017 23:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-5672,9/10/2018 20:00,1/08/2016 2:59,5.8,310, Cryptographic Issues,nan
CVE-2016-5648,9/10/2018 20:00,8/06/2017 20:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-5574,9/10/2018 20:00,25/10/2016 14:30,7.5,284, Improper Access Control,nan
CVE-2016-5399,9/10/2018 20:00,21/04/2017 20:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-5331,9/10/2018 20:00,8/08/2016 1:59,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2016-5330,9/10/2018 20:00,8/08/2016 1:59,4.4,426, Untrusted Search Path,nan
CVE-2016-5229,9/10/2018 20:00,2/08/2016 16:59,7.5,284, Improper Access Control,nan
CVE-2016-5000,9/10/2018 20:00,5/08/2016 14:59,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4974,9/10/2018 20:00,13/07/2016 15:59,6.0,20, Improper Input Validation,nan
CVE-2016-4945,9/10/2018 20:00,1/06/2016 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4651,9/10/2018 20:00,22/07/2016 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4590,9/10/2018 20:00,22/07/2016 2:59,4.3,20, Improper Input Validation,nan
CVE-2016-4437,9/10/2018 20:00,7/06/2016 14:06,6.8,284, Improper Access Control,nan
CVE-2016-4434,9/10/2018 20:00,30/09/2017 1:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4432,9/10/2018 20:00,1/06/2016 20:59,5.0,287, Improper Authentication,nan
CVE-2016-4338,9/10/2018 20:00,23/01/2017 21:59,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4327,9/10/2018 20:00,17/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4322,9/10/2018 20:00,13/12/2016 20:59,7.5,287, Improper Authentication,nan
CVE-2016-4316,9/10/2018 20:00,17/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4315,9/10/2018 20:00,17/02/2017 2:59,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4314,9/10/2018 20:00,17/02/2017 2:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4313,9/10/2018 20:00,24/04/2017 18:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4312,9/10/2018 20:00,17/02/2017 2:59,6.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4311,9/10/2018 20:00,17/02/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4264,9/10/2018 20:00,1/09/2016 23:59,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-3996,9/10/2018 20:00,27/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-3718,9/10/2018 20:00,5/05/2016 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-3717,9/10/2018 20:00,5/05/2016 18:59,7.1,200, Information Exposure,nan
CVE-2016-3716,9/10/2018 20:00,5/05/2016 18:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3715,9/10/2018 19:59,5/05/2016 18:59,5.8,284, Improper Access Control,nan
CVE-2016-3685,9/10/2018 19:59,14/12/2016 22:59,1.9,798, Use of Hard-coded Credentials,nan
CVE-2016-3672,9/10/2018 19:59,27/04/2016 17:59,4.6,254, 7PK – Security Features,nan
CVE-2016-3196,9/10/2018 19:59,5/08/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3152,9/10/2018 19:59,12/01/2017 23:59,5.0,200, Information Exposure,nan
CVE-2016-3151,9/10/2018 19:59,12/01/2017 23:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3150,9/10/2018 19:59,12/01/2017 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3109,9/10/2018 19:59,21/04/2017 20:59,10.0,20, Improper Input Validation,nan
CVE-2016-3094,9/10/2018 19:59,1/06/2016 20:59,4.3,287, Improper Authentication,nan
CVE-2016-3089,9/10/2018 19:59,19/08/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3085,9/10/2018 19:59,10/06/2016 15:59,5.8,287, Improper Authentication,nan
CVE-2016-3074,9/10/2018 19:59,26/04/2016 14:59,7.5,189, Numeric Errors,nan
CVE-2016-2803,9/10/2018 19:59,12/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2784,9/10/2018 19:59,26/05/2016 14:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2385,9/10/2018 19:59,11/04/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2345,9/10/2018 19:59,17/03/2016 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2268,9/10/2018 19:59,8/02/2016 19:59,5.8,310, Cryptographic Issues,nan
CVE-2016-2242,9/10/2018 19:59,23/01/2017 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-2212,9/10/2018 19:59,15/04/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2170,9/10/2018 19:59,12/04/2016 14:59,7.5,20, Improper Input Validation,nan
CVE-2016-2164,9/10/2018 19:59,11/04/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2163,9/10/2018 19:59,11/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2078,9/10/2018 19:59,8/06/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2058,9/10/2018 19:59,13/04/2016 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2057,9/10/2018 19:59,13/04/2016 16:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-2056,9/10/2018 19:59,13/04/2016 16:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-2055,9/10/2018 19:59,13/04/2016 16:59,5.0,200, Information Exposure,nan
CVE-2016-2054,9/10/2018 19:59,13/04/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1926,9/10/2018 19:59,26/01/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1920,9/10/2018 19:59,27/01/2017 20:59,4.3,284, Improper Access Control,nan
CVE-2016-1919,9/10/2018 19:59,27/01/2017 20:59,1.9,310, Cryptographic Issues,nan
CVE-2016-1885,9/10/2018 19:59,12/04/2016 2:00,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1786,9/10/2018 19:59,24/03/2016 1:59,5.8,200, Information Exposure,nan
CVE-2016-1785,9/10/2018 19:59,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1782,9/10/2018 19:59,24/03/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2016-1781,9/10/2018 19:59,24/03/2016 1:59,4.3,19, Data Processing Errors,nan
CVE-2016-1779,9/10/2018 19:59,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1778,9/10/2018 19:59,24/03/2016 1:59,9.3,399, Resource Management Errors,nan
CVE-2016-1728,9/10/2018 19:59,1/02/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-1726,9/10/2018 19:59,1/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1725,9/10/2018 19:59,1/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1723,9/10/2018 19:59,1/02/2016 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1596,9/10/2018 19:59,22/04/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1595,9/10/2018 19:59,22/04/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-1594,9/10/2018 19:59,22/04/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-1593,9/10/2018 19:59,22/04/2016 10:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1543,9/10/2018 19:59,13/06/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2016-1542,9/10/2018 19:59,13/06/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-1525,9/10/2018 19:59,13/02/2016 2:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1520,9/10/2018 19:59,21/04/2017 20:59,6.8,254, 7PK – Security Features,nan
CVE-2016-1519,9/10/2018 19:59,21/04/2017 20:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-1518,9/10/2018 19:59,21/04/2017 20:59,6.8,284, Improper Access Control,nan
CVE-2016-1499,9/10/2018 19:59,8/01/2016 21:59,7.5,399, Resource Management Errors,nan
CVE-2016-1493,9/10/2018 19:59,29/01/2016 20:59,7.6,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-1492,9/10/2018 19:59,26/01/2016 19:59,2.9,284, Improper Access Control,nan
CVE-2016-1491,9/10/2018 19:59,26/01/2016 19:59,5.4,255, Credentials Management,nan
CVE-2016-1490,9/10/2018 19:59,26/01/2016 19:59,2.7,200, Information Exposure,nan
CVE-2016-1489,9/10/2018 19:59,26/01/2016 19:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1417,9/10/2018 19:59,23/01/2017 21:59,6.8,426, Untrusted Search Path,nan
CVE-2016-1337,9/10/2018 19:59,3/07/2016 21:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-1336,9/10/2018 19:59,3/07/2016 21:59,7.8,20, Improper Input Validation,nan
CVE-2016-1328,9/10/2018 19:59,3/07/2016 21:59,7.8,20, Improper Input Validation,nan
CVE-2016-1247,9/10/2018 19:59,29/11/2016 17:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-1240,9/10/2018 19:59,3/10/2016 15:59,7.2,20, Improper Input Validation,nan
CVE-2016-10045,9/10/2018 19:59,30/12/2016 19:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-10033,9/10/2018 19:58,30/12/2016 19:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0956,9/10/2018 19:58,10/02/2016 20:59,7.8,200, Information Exposure,nan
CVE-2016-0891,9/10/2018 19:58,20/04/2016 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0784,9/10/2018 19:58,11/04/2016 14:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0783,9/10/2018 19:58,11/04/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-0779,9/10/2018 19:58,11/04/2017 16:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-0392,9/10/2018 19:58,19/06/2016 20:59,4.6,284, Improper Access Control,nan
CVE-2015-8770,9/10/2018 19:58,29/01/2016 19:59,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8603,9/10/2018 19:58,12/01/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8562,9/10/2018 19:58,16/12/2015 21:59,7.5,20, Improper Input Validation,nan
CVE-2015-8399,9/10/2018 19:58,11/04/2016 21:59,4.0,200, Information Exposure,nan
CVE-2015-8398,9/10/2018 19:58,11/04/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8397,9/10/2018 19:58,12/01/2016 20:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8396,9/10/2018 19:58,12/01/2016 20:59,10.0,189, Numeric Errors,nan
CVE-2015-8379,9/10/2018 19:58,26/01/2016 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8370,9/10/2018 19:58,16/12/2015 21:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-8362,9/10/2018 19:58,22/01/2016 11:59,10.0,255, Credentials Management,nan
CVE-2015-8361,9/10/2018 19:58,8/02/2016 19:59,6.4,284, Improper Access Control,nan
CVE-2015-8360,9/10/2018 19:58,8/02/2016 19:59,7.5,20, Improper Input Validation,nan
CVE-2015-8358,9/10/2018 19:58,16/12/2015 21:59,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8357,9/10/2018 19:58,16/12/2015 21:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8356,9/10/2018 19:58,14/04/2017 14:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8355,9/10/2018 19:58,24/08/2017 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8354,9/10/2018 19:58,11/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8353,9/10/2018 19:58,11/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8351,9/10/2018 19:58,11/09/2017 20:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-8350,9/10/2018 19:58,11/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8349,9/10/2018 19:58,11/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8264,9/10/2018 19:58,2/08/2017 19:29,6.8,426, Untrusted Search Path,nan
CVE-2015-8247,9/10/2018 19:58,15/12/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8221,9/10/2018 19:58,17/11/2015 15:59,10.0,189, Numeric Errors,nan
CVE-2015-8131,9/10/2018 19:58,7/12/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8096,9/10/2018 19:58,9/11/2015 16:59,10.0,189, Numeric Errors,nan
CVE-2015-7985,9/10/2018 19:58,24/11/2015 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7815,9/10/2018 19:58,16/11/2015 19:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7724,9/10/2018 19:58,7/06/2017 14:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-7723,9/10/2018 19:58,7/06/2017 14:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-7706,9/10/2018 19:58,11/01/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7683,9/10/2018 19:58,16/10/2015 20:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7682,9/10/2018 19:58,16/10/2015 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7670,9/10/2018 19:58,26/09/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7667,9/10/2018 19:58,27/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7611,9/10/2018 19:58,7/06/2016 14:06,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-7571,9/10/2018 19:58,7/08/2017 20:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-7570,9/10/2018 19:58,24/04/2017 18:59,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-7555,9/10/2018 19:58,13/04/2016 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7527,9/10/2018 19:58,17/12/2015 19:59,7.5,20, Improper Input Validation,nan
CVE-2015-7521,9/10/2018 19:58,29/01/2016 20:59,7.5,287, Improper Authentication,nan
CVE-2015-7392,9/10/2018 19:58,5/10/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7391,9/10/2018 19:58,26/09/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7385,9/10/2018 19:58,19/11/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7377,9/10/2018 19:58,16/10/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7373,9/10/2018 19:58,14/10/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7372,9/10/2018 19:58,14/10/2015 19:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7371,9/10/2018 19:58,14/10/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-7370,9/10/2018 19:58,14/10/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7369,9/10/2018 19:58,14/10/2015 19:59,7.5,284, Improper Access Control,nan
CVE-2015-7368,9/10/2018 19:58,14/10/2015 19:59,2.1,200, Information Exposure,nan
CVE-2015-7367,9/10/2018 19:58,14/10/2015 19:59,7.5,284, Improper Access Control,nan
CVE-2015-7366,9/10/2018 19:58,14/10/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7365,9/10/2018 19:58,14/10/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7364,9/10/2018 19:58,14/10/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7360,9/10/2018 19:58,26/05/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7326,9/10/2018 19:58,7/06/2017 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-7320,9/10/2018 19:58,29/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7319,9/10/2018 19:58,29/09/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7299,9/10/2018 19:58,21/10/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7242,9/10/2018 19:58,12/01/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7241,9/10/2018 19:58,6/09/2017 21:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-6973,9/10/2018 19:57,16/09/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6945,9/10/2018 19:57,15/09/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6944,9/10/2018 19:57,15/09/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6940,9/10/2018 19:57,22/09/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-6913,9/10/2018 19:57,11/09/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6912,9/10/2018 19:57,11/09/2015 16:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-6911,9/10/2018 19:57,11/09/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6910,9/10/2018 19:57,11/09/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6909,9/10/2018 19:57,11/09/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6856,9/10/2018 19:57,8/01/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6584,9/10/2018 19:57,11/09/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6545,9/10/2018 19:57,3/09/2015 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6540,9/10/2018 19:57,7/06/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6535,9/10/2018 19:57,31/08/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6530,9/10/2018 19:57,20/08/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6529,9/10/2018 19:57,20/08/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6516,9/10/2018 19:57,18/08/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6357,9/10/2018 19:57,18/11/2015 11:59,6.8,20, Improper Input Validation,nan
CVE-2015-6306,9/10/2018 19:57,26/09/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6237,9/10/2018 19:57,27/12/2017 19:29,7.5,287, Improper Authentication,nan
CVE-2015-6024,9/10/2018 19:57,9/02/2017 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-6023,9/10/2018 19:57,9/02/2017 15:59,7.5,284, Improper Access Control,nan
CVE-2015-5999,9/10/2018 19:57,18/11/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5956,9/10/2018 19:57,16/09/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5949,9/10/2018 19:57,25/08/2015 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5912,9/10/2018 19:57,18/09/2015 12:00,5.0,17, DEPRECATED: Code,nan
CVE-2015-5742,9/10/2018 19:57,16/10/2015 20:59,2.1,200, Information Exposure,nan
CVE-2015-5737,9/10/2018 19:57,3/09/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5736,9/10/2018 19:57,3/09/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5735,9/10/2018 19:57,3/09/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5718,9/10/2018 19:57,12/08/2015 14:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5703,9/10/2018 19:57,28/09/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5696,9/10/2018 19:57,14/08/2015 18:59,5.0,20, Improper Input Validation,nan
CVE-2015-5675,9/10/2018 19:57,10/10/2017 16:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5603,9/10/2018 19:57,21/09/2015 19:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5535,9/10/2018 19:57,13/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5534,9/10/2018 19:57,2/11/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5533,9/10/2018 19:57,23/10/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5532,9/10/2018 19:57,23/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5531,9/10/2018 19:57,17/08/2015 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5457,9/10/2018 19:57,8/07/2015 15:59,7.5,20, Improper Input Validation,nan
CVE-2015-5456,9/10/2018 19:57,8/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5441,9/10/2018 19:57,12/11/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5379,9/10/2018 19:57,23/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5375,9/10/2018 19:57,28/09/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5372,9/10/2018 19:57,28/09/2015 16:59,5.0,287, Improper Authentication,nan
CVE-2015-5353,9/10/2018 19:57,1/07/2015 16:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5349,9/10/2018 19:57,11/04/2016 21:59,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5256,9/10/2018 19:57,23/11/2015 11:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-5255,9/10/2018 19:57,18/11/2015 21:59,4.3,20, Improper Input Validation,nan
CVE-2015-5208,9/10/2018 19:57,9/05/2016 20:59,4.3,20, Improper Input Validation,nan
CVE-2015-5207,9/10/2018 19:57,9/05/2016 20:59,7.5,284, Improper Access Control,nan
CVE-2015-5076,9/10/2018 19:57,29/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5075,9/10/2018 19:57,29/09/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5074,9/10/2018 19:57,29/09/2015 19:59,7.5,20, Improper Input Validation,nan
CVE-2015-5066,9/10/2018 19:57,24/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5064,9/10/2018 19:57,24/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5063,9/10/2018 19:57,24/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5054,9/10/2018 19:57,11/09/2017 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-4687,9/10/2018 19:57,11/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4685,9/10/2018 19:57,19/09/2017 19:29,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-4684,9/10/2018 19:57,19/09/2017 19:29,5.5,255, Credentials Management,nan
CVE-2015-4683,9/10/2018 19:57,19/09/2017 19:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4682,9/10/2018 19:57,19/09/2017 19:29,4.0,200, Information Exposure,nan
CVE-2015-4681,9/10/2018 19:57,19/09/2017 19:29,7.2,255, Credentials Management,nan
CVE-2015-4680,9/10/2018 19:57,5/04/2017 17:59,5.0,295, Improper Certificate Validation,nan
CVE-2015-4674,9/10/2018 19:57,7/08/2015 1:59,9.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-4670,9/10/2018 19:57,18/08/2015 17:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4669,9/10/2018 19:57,25/09/2017 17:29,7.2,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4668,9/10/2018 19:57,25/09/2017 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-4667,9/10/2018 19:57,25/09/2017 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2015-4624,9/10/2018 19:57,31/03/2017 16:59,4.3,284, Improper Access Control,nan
CVE-2015-4616,9/10/2018 19:57,8/07/2015 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4614,9/10/2018 19:57,8/07/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4464,9/10/2018 19:57,18/08/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2015-4427,9/10/2018 19:57,9/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4415,9/10/2018 19:57,10/06/2015 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4165,9/10/2018 19:57,9/08/2017 16:29,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4153,9/10/2018 19:57,10/06/2015 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4119,9/10/2018 19:57,15/06/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4118,9/10/2018 19:57,15/06/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4109,9/10/2018 19:57,9/06/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4108,9/10/2018 19:57,10/06/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4084,9/10/2018 19:57,28/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4080,9/10/2018 19:57,9/06/2015 14:59,6.8,310, Cryptographic Issues,nan
CVE-2015-4077,9/10/2018 19:57,3/09/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-4038,9/10/2018 19:57,3/06/2015 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3995,9/10/2018 19:57,29/05/2015 15:59,4.0,200, Information Exposure,nan
CVE-2015-3994,9/10/2018 19:57,29/05/2015 15:59,4.0,20, Improper Input Validation,nan
CVE-2015-3986,9/10/2018 19:57,14/05/2015 14:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14941,9/10/2018 19:56,5/08/2018 18:29,4.0,200, Information Exposure,nan
CVE-2015-3903,9/10/2018 19:56,26/05/2015 15:59,4.3,310, Cryptographic Issues,nan
CVE-2015-3897,9/10/2018 19:56,18/06/2015 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3885,9/10/2018 19:56,19/05/2015 18:59,4.3,189, Numeric Errors,nan
CVE-2015-3648,9/10/2018 19:56,9/06/2015 14:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3647,9/10/2018 19:56,21/05/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3624,9/10/2018 19:56,9/06/2015 14:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3620,9/10/2018 19:56,12/05/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3447,9/10/2018 19:56,29/04/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3443,9/10/2018 19:56,2/07/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3442,9/10/2018 19:56,7/09/2017 13:29,7.5,287, Improper Authentication,nan
CVE-2015-3429,9/10/2018 19:56,17/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3422,9/10/2018 19:56,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3319,9/10/2018 19:56,16/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-3302,9/10/2018 19:56,29/12/2017 22:29,5.0,284, Improper Access Control,nan
CVE-2015-3301,9/10/2018 19:56,14/05/2015 14:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3300,9/10/2018 19:56,14/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3294,9/10/2018 19:56,8/05/2015 14:59,6.4,19, Data Processing Errors,nan
CVE-2015-3269,9/10/2018 19:56,25/08/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-3268,9/10/2018 19:56,12/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3252,9/10/2018 19:56,8/02/2016 19:59,6.0,255, Credentials Management,nan
CVE-2015-3251,9/10/2018 19:56,8/02/2016 19:59,4.0,200, Information Exposure,nan
CVE-2015-3188,9/10/2018 19:56,13/01/2017 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3152,9/10/2018 19:56,16/05/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2015-3035,9/10/2018 19:56,22/04/2015 1:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3008,9/10/2018 19:56,10/04/2015 15:00,4.3,310, Cryptographic Issues,nan
CVE-2015-3001,9/10/2018 19:56,8/06/2015 14:59,5.0,255, Credentials Management,nan
CVE-2015-3000,9/10/2018 19:56,8/06/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-2999,9/10/2018 19:56,8/06/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2998,9/10/2018 19:56,8/06/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2997,9/10/2018 19:56,8/06/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2996,9/10/2018 19:56,8/06/2015 14:59,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2995,9/10/2018 19:56,8/06/2015 14:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2993,9/10/2018 19:56,8/06/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2926,9/10/2018 19:56,14/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2878,9/10/2018 19:56,23/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2845,9/10/2018 19:56,12/05/2015 19:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2844,9/10/2018 19:56,12/05/2015 19:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2843,9/10/2018 19:56,12/05/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2840,9/10/2018 19:56,3/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2839,9/10/2018 19:56,3/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2838,9/10/2018 19:56,3/04/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2828,9/10/2018 19:56,8/04/2015 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2827,9/10/2018 19:56,8/04/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2826,9/10/2018 19:56,20/09/2017 18:29,5.0,200, Information Exposure,nan
CVE-2015-2824,9/10/2018 19:56,6/04/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2805,9/10/2018 19:56,16/06/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2804,9/10/2018 19:56,16/06/2015 16:59,4.3,200, Information Exposure,nan
CVE-2015-2803,9/10/2018 19:56,17/06/2015 18:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2791,9/10/2018 19:56,30/03/2015 14:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-2781,9/10/2018 19:56,14/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2755,9/10/2018 19:56,1/04/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2748,9/10/2018 19:56,26/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2747,9/10/2018 19:56,26/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2746,9/10/2018 19:56,26/03/2015 14:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2703,9/10/2018 19:56,25/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2702,9/10/2018 19:56,25/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2690,9/10/2018 19:56,2/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2683,9/10/2018 19:56,26/03/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2677,9/10/2018 19:56,23/03/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2564,9/10/2018 19:56,20/03/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2560,9/10/2018 19:56,2/08/2017 19:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2351,9/10/2018 19:56,19/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2315,9/10/2018 19:56,17/03/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2314,9/10/2018 19:56,17/03/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2289,9/10/2018 19:56,23/03/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2282,9/10/2018 19:56,2/06/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2281,9/10/2018 19:56,19/03/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2280,9/10/2018 19:56,25/07/2017 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2279,9/10/2018 19:56,25/07/2017 1:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2278,9/10/2018 19:56,2/06/2015 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2275,9/10/2018 19:56,12/03/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2250,9/10/2018 19:56,15/05/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2237,9/10/2018 19:56,12/03/2015 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2223,9/10/2018 19:56,14/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2220,9/10/2018 19:56,5/03/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2217,9/10/2018 19:56,10/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2210,9/10/2018 19:56,6/09/2017 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2195,9/10/2018 19:56,3/03/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2154,9/10/2018 19:56,24/03/2015 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2153,9/10/2018 19:56,24/03/2015 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2103,9/10/2018 19:56,27/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2102,9/10/2018 19:56,27/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2082,9/10/2018 19:56,25/02/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2076,9/10/2018 19:56,27/02/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-2075,9/10/2018 19:56,27/02/2015 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2072,9/10/2018 19:56,27/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1833,9/10/2018 19:56,29/05/2015 15:59,6.4,20, Improper Input Validation,nan
CVE-2015-1614,9/10/2018 19:55,19/02/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1600,9/10/2018 19:55,28/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2015-1588,9/10/2018 19:55,8/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1585,9/10/2018 19:55,19/02/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1574,9/10/2018 19:55,15/02/2015 20:59,5.0,19, Data Processing Errors,nan
CVE-2015-1558,9/10/2018 19:55,9/02/2015 11:59,3.5,399, Resource Management Errors,nan
CVE-2015-1518,9/10/2018 19:55,11/02/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1517,9/10/2018 19:55,20/02/2015 16:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1514,9/10/2018 19:55,6/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1482,9/10/2018 19:55,4/02/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-1481,9/10/2018 19:55,4/02/2015 18:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1480,9/10/2018 19:55,4/02/2015 16:59,4.0,200, Information Exposure,nan
CVE-2015-1467,9/10/2018 19:55,6/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1437,9/10/2018 19:55,4/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1428,9/10/2018 19:55,3/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1427,9/10/2018 19:55,17/02/2015 15:59,7.5,284, Improper Access Control,nan
CVE-2015-1415,9/10/2018 19:55,10/04/2015 15:00,2.1,200, Information Exposure,nan
CVE-2015-1385,9/10/2018 19:55,2/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1384,9/10/2018 19:55,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1376,9/10/2018 19:55,28/01/2015 11:59,4.0,284, Improper Access Control,nan
CVE-2015-1375,9/10/2018 19:55,28/01/2015 11:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1368,9/10/2018 19:55,27/01/2015 20:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1367,9/10/2018 19:55,27/01/2015 20:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1366,9/10/2018 19:55,27/01/2015 20:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1365,9/10/2018 19:55,27/01/2015 20:04,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1180,9/10/2018 19:55,23/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1179,9/10/2018 19:55,26/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1178,9/10/2018 19:55,26/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1177,9/10/2018 19:55,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1176,9/10/2018 19:55,23/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1175,9/10/2018 19:55,22/01/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1056,9/10/2018 19:55,16/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1050,9/10/2018 19:55,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1032,9/10/2018 19:55,21/01/2015 15:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1026,9/10/2018 19:55,11/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0866,9/10/2018 19:55,2/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0524,9/10/2018 19:55,12/03/2015 10:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0516,9/10/2018 19:55,21/01/2015 15:17,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0514,9/10/2018 19:55,21/01/2015 15:17,5.0,200, Information Exposure,nan
CVE-2015-0261,9/10/2018 19:55,24/03/2015 17:59,7.5,189, Numeric Errors,nan
CVE-2015-0247,9/10/2018 19:55,17/02/2015 15:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0225,9/10/2018 19:55,3/04/2015 14:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0224,9/10/2018 19:55,30/10/2017 14:29,5.0,19, Data Processing Errors,nan
CVE-2014-9757,9/10/2018 19:55,8/02/2016 19:59,7.5,20, Improper Input Validation,nan
CVE-2014-9755,9/10/2018 19:55,20/01/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2014-9754,9/10/2018 19:55,20/01/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2014-9711,9/10/2018 19:55,25/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9707,9/10/2018 19:55,31/03/2015 14:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-9570,9/10/2018 19:55,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9526,9/10/2018 19:55,5/01/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9522,9/10/2018 19:55,5/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9466,9/10/2018 19:55,17/02/2015 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9433,9/10/2018 19:55,31/12/2014 22:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9432,9/10/2018 19:55,31/12/2014 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9414,9/10/2018 19:55,24/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9408,9/10/2018 19:55,19/12/2014 15:59,5.0,200, Information Exposure,nan
CVE-2014-9387,9/10/2018 19:55,17/12/2014 19:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9381,9/10/2018 19:55,19/12/2014 15:59,5.0,189, Numeric Errors,nan
CVE-2014-9380,9/10/2018 19:55,19/12/2014 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9379,9/10/2018 19:55,19/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9378,9/10/2018 19:55,19/12/2014 15:59,7.5,20, Improper Input Validation,nan
CVE-2014-9377,9/10/2018 19:55,19/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9358,9/10/2018 19:55,16/12/2014 18:59,6.4,20, Improper Input Validation,nan
CVE-2014-9357,9/10/2018 19:55,16/12/2014 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9352,9/10/2018 19:55,9/12/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9342,9/10/2018 19:55,8/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9331,9/10/2018 19:55,4/02/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9303,9/10/2018 19:55,7/12/2014 21:59,7.8,200, Information Exposure,nan
CVE-2014-9226,9/10/2018 19:55,21/01/2015 15:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9225,9/10/2018 19:55,21/01/2015 15:17,4.0,200, Information Exposure,nan
CVE-2014-9224,9/10/2018 19:55,21/01/2015 15:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9215,9/10/2018 19:55,5/12/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9185,9/10/2018 19:55,19/12/2014 15:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9178,9/10/2018 19:54,2/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9144,9/10/2018 19:54,5/12/2014 15:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9143,9/10/2018 19:54,5/12/2014 15:59,4.3,17, DEPRECATED: Code,nan
CVE-2014-9142,9/10/2018 19:54,5/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9140,9/10/2018 19:54,5/12/2014 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9129,9/10/2018 19:54,5/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9118,9/10/2018 19:54,17/10/2017 16:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9104,9/10/2018 19:54,26/11/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9029,9/10/2018 19:54,8/12/2014 16:59,7.5,189, Numeric Errors,nan
CVE-2014-9028,9/10/2018 19:54,26/11/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9021,9/10/2018 19:54,20/11/2014 17:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9020,9/10/2018 19:54,20/11/2014 17:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9019,9/10/2018 19:54,20/11/2014 17:50,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8993,9/10/2018 19:54,7/01/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8962,9/10/2018 19:54,26/11/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8889,9/10/2018 19:54,26/09/2017 1:29,2.6,200, Information Exposure,nan
CVE-2014-8886,9/10/2018 19:54,8/01/2016 20:59,9.3,310, Cryptographic Issues,nan
CVE-2014-8877,9/10/2018 19:54,5/12/2014 18:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8874,9/10/2018 19:54,2/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-8872,9/10/2018 19:54,29/08/2017 1:35,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8869,9/10/2018 19:54,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8868,9/10/2018 19:54,7/12/2014 21:59,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-8826,9/10/2018 19:54,30/01/2015 11:59,5.0,19, Data Processing Errors,nan
CVE-2014-8793,9/10/2018 19:54,19/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8791,9/10/2018 19:54,2/12/2014 1:59,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8779,9/10/2018 19:54,3/02/2015 16:59,7.1,254, 7PK – Security Features,nan
CVE-2014-8778,9/10/2018 19:54,16/09/2015 18:59,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8769,9/10/2018 19:54,20/11/2014 17:50,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8757,9/10/2018 19:54,17/02/2015 15:59,8.3,284, Improper Access Control,nan
CVE-2014-8732,9/10/2018 19:54,17/11/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8731,9/10/2018 19:54,23/03/2017 17:59,10.0,502, Deserialization of Untrusted Data,nan
CVE-2014-8724,9/10/2018 19:54,19/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8683,9/10/2018 19:54,21/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8682,9/10/2018 19:54,21/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8658,9/10/2018 19:54,6/11/2014 15:55,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8612,9/10/2018 19:54,2/02/2015 16:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-8539,9/10/2018 19:54,21/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8487,9/10/2018 19:54,24/02/2015 15:59,4.0,200, Information Exposure,nan
CVE-2014-8429,9/10/2018 19:54,28/11/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8419,9/10/2018 19:54,26/11/2014 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-8393,9/10/2018 19:54,29/08/2017 1:35,4.6,427, Uncontrolled Search Path Element,nan
CVE-2014-8391,9/10/2018 19:54,2/06/2015 14:59,4.0,200, Information Exposure,nan
CVE-2014-8390,9/10/2018 19:54,3/04/2015 10:59,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8389,9/10/2018 19:53,28/12/2017 2:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-8387,9/10/2018 19:53,20/11/2014 13:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-8373,9/10/2018 19:53,11/12/2014 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8371,9/10/2018 19:53,8/12/2014 11:59,4.3,310, Cryptographic Issues,nan
CVE-2014-8357,9/10/2018 19:53,17/10/2017 16:29,4.0,255, Credentials Management,nan
CVE-2014-8340,9/10/2018 19:53,16/12/2014 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8339,9/10/2018 19:53,4/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8334,9/10/2018 19:53,31/10/2014 14:55,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-8324,9/10/2018 19:53,17/10/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2014-8323,9/10/2018 19:53,17/10/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2014-8315,9/10/2018 19:53,16/10/2014 19:55,5.0,200, Information Exposure,nan
CVE-2014-8314,9/10/2018 19:53,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8313,9/10/2018 19:53,16/10/2014 19:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8310,9/10/2018 19:53,16/10/2014 19:55,7.1,20, Improper Input Validation,nan
CVE-2014-8309,9/10/2018 19:53,16/10/2014 19:55,5.0,200, Information Exposure,nan
CVE-2014-8308,9/10/2018 19:53,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8248,9/10/2018 19:53,16/12/2014 23:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8247,9/10/2018 19:53,16/12/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8246,9/10/2018 19:53,16/12/2014 23:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8084,9/10/2018 19:53,5/01/2015 20:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8083,9/10/2018 19:53,5/01/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8082,9/10/2018 19:53,31/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-8081,9/10/2018 19:53,31/10/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7987,9/10/2018 19:53,31/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7986,9/10/2018 19:53,31/10/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7985,9/10/2018 19:53,31/10/2014 14:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-7959,9/10/2018 19:53,6/11/2014 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7958,9/10/2018 19:53,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7957,9/10/2018 19:53,15/01/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7956,9/10/2018 19:53,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7954,9/10/2018 19:53,7/07/2017 17:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-7953,9/10/2018 19:53,7/07/2017 17:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-7952,9/10/2018 19:53,12/01/2018 17:29,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-7871,9/10/2018 19:53,21/11/2014 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7864,9/10/2018 19:53,4/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7862,9/10/2018 19:53,4/01/2018 17:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7860,9/10/2018 19:53,25/08/2017 18:29,5.0,287, Improper Authentication,nan
CVE-2014-7858,9/10/2018 19:53,25/08/2017 18:29,10.0,287, Improper Authentication,nan
CVE-2014-7857,9/10/2018 19:53,25/08/2017 18:29,10.0,287, Improper Authentication,nan
CVE-2014-7809,9/10/2018 19:53,10/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7807,9/10/2018 19:53,10/12/2014 15:59,5.0,287, Improper Authentication,nan
CVE-2014-7289,9/10/2018 19:53,21/01/2015 15:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7216,9/10/2018 19:53,11/09/2015 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7187,9/10/2018 19:52,28/09/2014 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7186,9/10/2018 19:52,28/09/2014 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7183,9/10/2018 19:52,22/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7182,9/10/2018 19:52,22/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7181,9/10/2018 19:52,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7139,9/10/2018 19:51,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7138,9/10/2018 19:51,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7137,9/10/2018 19:51,21/11/2014 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6617,9/10/2018 19:51,9/03/2018 20:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2014-6616,9/10/2018 19:51,31/08/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6603,9/10/2018 19:51,7/10/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-6439,9/10/2018 19:51,10/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6437,9/10/2018 19:51,12/01/2018 17:29,5.0,200, Information Exposure,nan
CVE-2014-6436,9/10/2018 19:51,12/01/2018 17:29,10.0,287, Improper Authentication,nan
CVE-2014-6396,9/10/2018 19:51,19/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6395,9/10/2018 19:51,19/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6315,9/10/2018 19:51,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6308,9/10/2018 19:51,20/10/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6280,9/10/2018 19:51,20/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6243,9/10/2018 19:50,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6242,9/10/2018 19:50,2/10/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6140,9/10/2018 19:50,6/12/2014 15:59,9.3,310, Cryptographic Issues,nan
CVE-2014-5464,9/10/2018 19:50,8/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5460,9/10/2018 19:50,11/09/2014 15:55,6.5,20, Improper Input Validation,nan
CVE-2014-5451,9/10/2018 19:50,6/11/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5393,9/10/2018 19:50,11/09/2014 15:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5391,9/10/2018 19:50,11/09/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5385,9/10/2018 19:50,21/08/2014 23:55,5.0,287, Improper Authentication,nan
CVE-2014-5377,9/10/2018 19:50,4/09/2014 17:55,5.0,200, Information Exposure,nan
CVE-2014-5376,9/10/2018 19:50,8/10/2014 19:55,4.0,20, Improper Input Validation,nan
CVE-2014-5375,9/10/2018 19:50,8/10/2014 19:55,4.0,20, Improper Input Validation,nan
CVE-2014-5362,9/10/2018 19:50,19/09/2017 15:29,6.5,20, Improper Input Validation,nan
CVE-2014-5361,9/10/2018 19:50,21/04/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5340,9/10/2018 19:50,2/09/2014 14:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5338,9/10/2018 19:50,22/08/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5335,9/10/2018 19:50,25/08/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5307,9/10/2018 19:50,26/08/2014 14:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5302,9/10/2018 19:50,28/08/2017 15:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5301,9/10/2018 19:50,28/08/2017 15:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5300,9/10/2018 19:50,8/10/2014 19:55,5.0,287, Improper Authentication,nan
CVE-2014-5298,9/10/2018 19:50,10/10/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5297,9/10/2018 19:50,10/10/2014 1:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5259,9/10/2018 19:50,12/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5258,9/10/2018 19:50,6/11/2014 18:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5257,9/10/2018 19:50,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5247,9/10/2018 19:50,29/08/2014 16:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-5235,9/10/2018 19:50,17/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5234,9/10/2018 19:50,17/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5178,9/10/2018 19:50,6/08/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5173,9/10/2018 19:50,31/07/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5172,9/10/2018 19:50,31/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5171,9/10/2018 19:49,31/07/2014 14:55,2.9,310, Cryptographic Issues,nan
CVE-2014-5137,9/10/2018 19:49,2/09/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-5136,9/10/2018 19:49,2/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5128,9/10/2018 19:49,29/08/2014 13:55,5.0,200, Information Exposure,nan
CVE-2014-5121,9/10/2018 19:49,22/08/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5106,9/10/2018 19:49,28/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5103,9/10/2018 19:49,25/07/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5098,9/10/2018 19:49,20/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5097,9/10/2018 19:49,22/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4980,9/10/2018 19:49,23/07/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-4965,9/10/2018 19:49,15/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4964,9/10/2018 19:49,15/07/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4962,9/10/2018 19:49,15/07/2014 14:55,6.4,189, Numeric Errors,nan
CVE-2014-4737,9/10/2018 19:49,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4736,9/10/2018 19:49,24/07/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4735,9/10/2018 19:49,12/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4734,9/10/2018 19:49,21/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4728,9/10/2018 19:49,30/09/2014 16:55,5.0,399, Resource Management Errors,nan
CVE-2014-4727,9/10/2018 19:49,30/09/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4722,9/10/2018 19:49,7/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4664,9/10/2018 19:49,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4631,9/10/2018 19:49,8/12/2014 11:59,5.0,287, Improper Authentication,nan
CVE-2014-4629,9/10/2018 19:49,6/12/2014 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4624,9/10/2018 19:49,25/10/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4347,9/10/2018 19:49,16/07/2014 14:19,5.0,200, Information Exposure,nan
CVE-2014-4346,9/10/2018 19:49,16/07/2014 14:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4333,9/10/2018 19:49,19/06/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4331,9/10/2018 19:49,19/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4330,9/10/2018 19:49,30/09/2014 16:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4187,9/10/2018 19:47,17/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4045,9/10/2018 19:47,17/06/2014 14:55,4.3,189, Numeric Errors,nan
CVE-2014-4003,9/10/2018 19:47,9/06/2014 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3920,9/10/2018 19:47,3/07/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3863,9/10/2018 19:47,20/10/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3857,9/10/2018 19:47,3/07/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3810,9/10/2018 19:47,19/06/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3806,9/10/2018 19:47,21/05/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3797,9/10/2018 19:47,8/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3783,9/10/2018 19:47,22/05/2014 15:13,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3759,9/10/2018 19:47,16/05/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3758,9/10/2018 19:47,16/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3752,9/10/2018 19:47,1/02/2018 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3749,9/10/2018 19:47,20/05/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3737,9/10/2018 19:47,2/07/2014 20:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3704,9/10/2018 19:47,16/10/2014 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3629,9/10/2018 19:47,17/11/2014 16:59,4.3,19, Data Processing Errors,nan
CVE-2014-3503,9/10/2018 19:44,11/07/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2014-3493,9/10/2018 19:44,23/06/2014 14:55,2.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3451,9/10/2018 19:43,18/08/2017 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2014-3438,9/10/2018 19:43,7/11/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3428,9/10/2018 19:43,16/06/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3419,9/10/2018 19:43,15/07/2014 14:55,7.2,255, Credentials Management,nan
CVE-2014-3418,9/10/2018 19:43,15/07/2014 14:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3225,9/10/2018 19:43,14/05/2014 0:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3210,9/10/2018 19:43,22/05/2014 15:13,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3149,9/10/2018 19:43,3/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3111,9/10/2018 19:43,21/10/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3100,9/10/2018 19:43,2/07/2014 4:14,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3074,9/10/2018 19:43,2/07/2014 10:35,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3006,9/10/2018 19:43,2/05/2014 14:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2996,9/10/2018 19:43,25/04/2014 20:55,7.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2988,9/10/2018 19:43,27/10/2014 1:55,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2987,9/10/2018 19:43,26/10/2014 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2879,9/10/2018 19:43,17/04/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2858,9/10/2018 19:43,15/04/2014 23:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2857,9/10/2018 19:43,15/04/2014 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2846,9/10/2018 19:43,28/04/2014 14:09,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2737,9/10/2018 19:43,22/04/2014 14:23,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2735,9/10/2018 19:43,22/04/2014 13:06,5.8,20, Improper Input Validation,nan
CVE-2014-2730,9/10/2018 19:43,5/04/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-2729,9/10/2018 19:43,25/04/2014 14:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2716,9/10/2018 19:43,19/12/2014 15:59,4.3,310, Cryptographic Issues,nan
CVE-2014-2715,9/10/2018 19:43,28/04/2014 14:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2710,9/10/2018 19:43,13/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2689,9/10/2018 19:43,8/05/2014 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2654,9/10/2018 19:43,22/04/2014 14:23,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2589,9/10/2018 19:43,24/03/2014 16:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2579,9/10/2018 19:43,25/04/2014 20:55,7.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2577,9/10/2018 19:43,5/06/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2575,9/10/2018 19:43,6/06/2014 14:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2570,9/10/2018 19:43,31/08/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2540,9/10/2018 19:43,11/04/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2531,9/10/2018 19:43,21/10/2014 16:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2512,9/10/2018 19:43,1/07/2014 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2508,9/10/2018 19:43,8/06/2014 4:31,7.5,20, Improper Input Validation,nan
CVE-2014-2507,9/10/2018 19:43,8/06/2014 4:31,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2506,9/10/2018 19:43,8/06/2014 4:31,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2388,9/10/2018 19:43,18/08/2014 11:15,6.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-2385,9/10/2018 19:43,22/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2383,9/10/2018 19:43,28/04/2014 14:09,4.3,200, Information Exposure,nan
CVE-2014-2340,9/10/2018 19:43,3/04/2014 16:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2303,9/10/2018 19:43,13/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2301,9/10/2018 19:43,12/05/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-2297,9/10/2018 19:43,19/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2262,9/10/2018 19:43,1/03/2014 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2219,9/10/2018 19:43,20/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2206,9/10/2018 19:43,5/03/2014 16:37,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2205,9/10/2018 19:43,26/02/2014 15:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-2179,9/10/2018 19:43,7/11/2014 11:55,5.0,20, Improper Input Validation,nan
CVE-2014-2178,9/10/2018 19:43,7/11/2014 11:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2177,9/10/2018 19:43,7/11/2014 11:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2087,9/10/2018 19:43,18/03/2014 17:04,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2045,9/10/2018 19:43,20/01/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2044,9/10/2018 19:43,6/10/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2043,9/10/2018 19:43,13/03/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2040,9/10/2018 19:43,3/03/2014 18:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2035,9/10/2018 19:43,27/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2026,9/10/2018 19:43,19/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2024,9/10/2018 19:43,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1944,9/10/2018 19:43,9/03/2014 13:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1903,9/10/2018 19:43,18/02/2014 11:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1855,9/10/2018 19:43,20/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1854,9/10/2018 19:43,27/02/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1677,9/10/2018 19:42,3/04/2017 15:59,5.0,200, Information Exposure,nan
CVE-2014-1664,9/10/2018 19:42,26/01/2014 20:55,5.0,200, Information Exposure,nan
CVE-2014-1612,9/10/2018 19:42,30/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1607,9/10/2018 19:42,26/01/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1599,9/10/2018 19:42,9/03/2014 13:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1492,9/10/2018 19:42,25/03/2014 13:25,4.3,20, Improper Input Validation,nan
CVE-2014-1491,9/10/2018 19:42,6/02/2014 5:44,5.0,310, Cryptographic Issues,nan
CVE-2014-1459,9/10/2018 19:42,11/02/2014 17:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1455,9/10/2018 19:42,10/04/2014 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1401,9/10/2018 19:42,11/02/2014 17:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1226,9/10/2018 19:42,6/04/2018 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-1224,9/10/2018 19:42,6/10/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1222,9/10/2018 19:42,12/08/2014 23:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1217,9/10/2018 19:42,28/04/2014 14:09,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1215,9/10/2018 19:42,20/03/2018 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1213,9/10/2018 19:42,10/02/2014 23:55,5.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1206,9/10/2018 19:42,15/01/2014 16:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1201,9/10/2018 19:42,15/01/2014 16:08,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-100011,9/10/2018 19:42,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100010,9/10/2018 19:42,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100004,9/10/2018 19:42,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0999,9/10/2018 19:42,2/06/2015 14:59,5.0,200, Information Exposure,nan
CVE-2014-0998,9/10/2018 19:42,2/02/2015 16:59,7.2,189, Numeric Errors,nan
CVE-2014-0997,9/10/2018 19:42,26/09/2017 1:29,5.0,19, Data Processing Errors,nan
CVE-2014-0983,9/10/2018 19:42,31/03/2014 14:58,6.9,399, Resource Management Errors,nan
CVE-2014-0981,9/10/2018 19:42,31/03/2014 14:58,4.4,399, Resource Management Errors,nan
CVE-2014-0980,9/10/2018 19:42,11/02/2014 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0915,9/10/2018 19:42,30/07/2014 11:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0914,9/10/2018 19:42,30/07/2014 11:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0894,9/10/2018 19:42,7/07/2014 11:01,3.5,200, Information Exposure,nan
CVE-2014-0871,9/10/2018 19:42,7/07/2014 11:01,4.3,200, Information Exposure,nan
CVE-2014-0870,9/10/2018 19:42,7/07/2014 11:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0869,9/10/2018 19:42,7/07/2014 11:01,4.3,310, Cryptographic Issues,nan
CVE-2014-0868,9/10/2018 19:42,7/07/2014 11:01,4.9,20, Improper Input Validation,nan
CVE-2014-0866,9/10/2018 19:42,7/07/2014 11:01,4.3,310, Cryptographic Issues,nan
CVE-2014-0865,9/10/2018 19:42,7/07/2014 11:01,4.9,20, Improper Input Validation,nan
CVE-2014-0864,9/10/2018 19:42,7/07/2014 11:01,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0794,9/10/2018 19:42,26/01/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0793,9/10/2018 19:42,30/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0749,9/10/2018 19:42,16/05/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0647,9/10/2018 19:42,28/01/2014 0:55,2.1,255, Credentials Management,nan
CVE-2014-0514,9/10/2018 19:42,15/04/2014 23:13,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0244,9/10/2018 19:41,23/06/2014 14:55,3.3,20, Improper Input Validation,nan
CVE-2014-0232,9/10/2018 19:41,22/08/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0228,9/10/2018 19:41,16/11/2014 17:59,3.5,284, Improper Access Control,nan
CVE-2014-0220,9/10/2018 19:38,10/06/2014 14:55,4.0,200, Information Exposure,nan
CVE-2014-0211,9/10/2018 19:38,15/05/2014 14:55,7.5,189, Numeric Errors,nan
CVE-2014-0210,9/10/2018 19:38,15/05/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0209,9/10/2018 19:38,15/05/2014 14:55,4.6,189, Numeric Errors,nan
CVE-2014-0138,9/10/2018 19:36,15/04/2014 14:55,6.4,287, Improper Authentication,nan
CVE-2014-0098,9/10/2018 19:35,18/03/2014 5:18,5.0,20, Improper Input Validation,nan
CVE-2014-0073,9/10/2018 19:35,30/10/2017 19:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0072,9/10/2018 19:35,30/10/2017 19:29,5.0,20, Improper Input Validation,nan
CVE-2014-0053,9/10/2018 19:35,15/04/2014 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0050,9/10/2018 19:35,1/04/2014 6:27,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0015,9/10/2018 19:35,2/02/2014 0:55,4.0,287, Improper Authentication,nan
CVE-2013-7219,9/10/2018 19:35,21/01/2014 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7204,9/10/2018 19:35,17/01/2014 15:18,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7196,9/10/2018 19:35,18/04/2014 22:14,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7195,9/10/2018 19:35,18/04/2014 22:14,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7137,9/10/2018 19:35,26/01/2014 1:55,7.5,287, Improper Authentication,nan
CVE-2013-6997,9/10/2018 19:35,9/01/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6993,9/10/2018 19:35,3/01/2014 18:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6992,9/10/2018 19:35,3/01/2014 18:54,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6991,9/10/2018 19:35,3/01/2014 18:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6876,9/10/2018 19:35,6/04/2018 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6825,9/10/2018 19:34,10/06/2014 14:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6735,9/10/2018 19:34,22/12/2013 15:16,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6480,9/10/2018 19:34,7/01/2014 18:55,2.1,200, Information Exposure,nan
CVE-2013-6450,9/10/2018 19:34,1/01/2014 16:05,5.8,310, Cryptographic Issues,nan
CVE-2013-6449,9/10/2018 19:34,23/12/2013 22:55,4.3,310, Cryptographic Issues,nan
CVE-2013-6438,9/10/2018 19:34,18/03/2014 5:18,5.0,20, Improper Input Validation,nan
CVE-2013-6235,9/10/2018 19:34,31/01/2014 15:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6233,9/10/2018 19:34,9/03/2014 13:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6232,9/10/2018 19:34,9/03/2014 13:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6229,9/10/2018 19:34,12/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5973,9/10/2018 19:34,23/12/2013 15:42,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-5954,9/10/2018 19:34,25/04/2014 14:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5855,9/10/2018 19:34,17/07/2014 5:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5606,9/10/2018 19:34,18/11/2013 5:23,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5605,9/10/2018 19:34,18/11/2013 5:23,7.5,20, Improper Input Validation,nan
CVE-2013-4200,9/10/2018 19:34,21/01/2014 16:06,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2877,9/10/2018 19:34,10/07/2013 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2585,9/10/2018 19:34,12/02/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2187,9/10/2018 19:34,22/04/2014 14:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2172,9/10/2018 19:34,20/08/2013 22:55,4.3,310, Cryptographic Issues,nan
CVE-2013-1741,9/10/2018 19:34,18/11/2013 5:23,7.5,189, Numeric Errors,nan
CVE-2013-1740,9/10/2018 19:33,18/01/2014 22:55,5.8,310, Cryptographic Issues,nan
CVE-2013-1620,9/10/2018 19:33,8/02/2013 19:55,4.3,310, Cryptographic Issues,nan
CVE-2011-5265,9/10/2018 19:33,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5263,9/10/2018 19:33,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5259,9/10/2018 19:33,12/02/2013 20:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5258,9/10/2018 19:33,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5184,9/10/2018 19:33,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5182,9/10/2018 19:33,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5181,9/10/2018 19:33,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5180,9/10/2018 19:33,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5179,9/10/2018 19:33,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5169,9/10/2018 19:33,15/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5110,9/10/2018 19:33,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5109,9/10/2018 19:33,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5107,9/10/2018 19:33,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5106,9/10/2018 19:33,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5105,9/10/2018 19:33,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5001,9/10/2018 19:33,25/12/2011 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4958,9/10/2018 19:33,8/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4926,9/10/2018 19:33,29/08/2012 4:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4918,9/10/2018 19:33,29/08/2012 4:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4834,9/10/2018 19:33,15/12/2011 3:57,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4833,9/10/2018 19:33,15/12/2011 3:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4814,9/10/2018 19:33,14/12/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4805,9/10/2018 19:33,14/12/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4802,9/10/2018 19:33,14/12/2011 0:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4712,9/10/2018 19:33,8/12/2011 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4672,9/10/2018 19:33,2/12/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4670,9/10/2018 19:33,2/12/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4624,9/10/2018 19:33,1/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4564,9/10/2018 19:33,28/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4561,9/10/2018 19:33,28/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4559,9/10/2018 19:33,28/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4275,9/10/2018 19:33,26/11/2011 3:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4063,9/10/2018 19:33,21/10/2011 10:55,6.8,20, Improper Input Validation,nan
CVE-2011-3979,9/10/2018 19:33,4/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3978,9/10/2018 19:33,4/10/2011 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3868,9/10/2018 19:33,7/10/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3828,9/10/2018 19:33,26/11/2011 3:57,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3578,9/10/2018 19:33,21/09/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3390,9/10/2018 19:33,6/09/2011 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3358,9/10/2018 19:33,21/09/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3357,9/10/2018 19:33,21/09/2011 16:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3356,9/10/2018 19:33,21/09/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3340,9/10/2018 19:33,21/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3266,9/10/2018 19:33,24/08/2011 0:55,2.6,399, Resource Management Errors,nan
CVE-2011-3185,9/10/2018 19:33,29/08/2011 17:55,9.3,20, Improper Input Validation,nan
CVE-2011-3140,9/10/2018 19:33,15/08/2011 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3012,9/10/2018 19:33,9/08/2011 20:55,10.0,20, Improper Input Validation,nan
CVE-2011-3011,9/10/2018 19:33,15/08/2011 19:55,5.0,200, Information Exposure,nan
CVE-2011-2928,9/10/2018 19:33,29/08/2011 17:55,4.9,20, Improper Input Validation,nan
CVE-2011-2894,9/10/2018 19:33,4/10/2011 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2780,9/10/2018 19:33,19/07/2011 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2764,9/10/2018 19:33,4/08/2011 2:45,10.0,20, Improper Input Validation,nan
CVE-2011-2763,9/10/2018 19:33,2/09/2011 16:55,7.5,20, Improper Input Validation,nan
CVE-2011-2762,9/10/2018 19:33,2/09/2011 16:55,5.0,287, Improper Authentication,nan
CVE-2011-2750,9/10/2018 19:33,17/07/2011 20:55,5.0,399, Resource Management Errors,nan
CVE-2011-2744,9/10/2018 19:33,19/07/2011 20:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2743,9/10/2018 19:32,19/07/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2737,9/10/2018 19:32,25/08/2011 14:22,5.0,200, Information Exposure,nan
CVE-2011-2736,9/10/2018 19:32,25/08/2011 14:22,5.0,310, Cryptographic Issues,nan
CVE-2011-2735,9/10/2018 19:32,23/08/2011 21:55,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2733,9/10/2018 19:32,18/08/2011 23:55,7.5,287, Improper Authentication,nan
CVE-2011-2719,9/10/2018 19:32,1/08/2011 19:55,6.4,20, Improper Input Validation,nan
CVE-2011-2712,9/10/2018 19:32,29/08/2011 15:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2701,9/10/2018 19:32,4/08/2011 2:45,5.8,287, Improper Authentication,nan
CVE-2011-2667,9/10/2018 19:32,28/07/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2663,9/10/2018 19:32,8/10/2011 2:52,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2544,9/10/2018 19:32,23/09/2011 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2543,9/10/2018 19:32,23/09/2011 10:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2516,9/10/2018 19:32,11/07/2011 20:55,5.0,189, Numeric Errors,nan
CVE-2011-2508,9/10/2018 19:32,14/07/2011 23:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2507,9/10/2018 19:32,14/07/2011 23:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2506,9/10/2018 19:32,14/07/2011 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2505,9/10/2018 19:32,14/07/2011 23:55,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2357,9/10/2018 19:32,12/08/2011 18:55,4.3,20, Improper Input Validation,nan
CVE-2011-2330,9/10/2018 19:32,2/06/2011 20:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2220,9/10/2018 19:32,14/07/2011 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2193,9/10/2018 19:32,24/06/2011 20:55,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2122,9/10/2018 19:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2088,9/10/2018 19:32,13/05/2011 17:05,5.0,200, Information Exposure,nan
CVE-2011-1954,9/10/2018 19:32,6/06/2011 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1953,9/10/2018 19:32,6/06/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1952,9/10/2018 19:32,6/06/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-1950,9/10/2018 19:32,6/06/2011 19:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1949,9/10/2018 19:32,6/06/2011 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1948,9/10/2018 19:32,6/06/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1947,9/10/2018 19:32,2/06/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-1907,9/10/2018 19:32,9/05/2011 22:55,5.0,399, Resource Management Errors,nan
CVE-2011-1899,9/10/2018 19:32,16/05/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1867,9/10/2018 19:32,11/07/2011 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1866,9/10/2018 19:32,1/07/2011 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1838,9/10/2018 19:32,20/05/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1826,9/10/2018 19:32,5/05/2011 13:22,5.8,20, Improper Input Validation,nan
CVE-2011-1825,9/10/2018 19:32,5/05/2011 13:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1824,9/10/2018 19:32,10/05/2011 18:55,4.3,20, Improper Input Validation,nan
CVE-2011-1786,9/10/2018 19:32,3/05/2011 22:55,5.0,399, Resource Management Errors,nan
CVE-2011-1785,9/10/2018 19:32,3/05/2011 22:55,7.8,399, Resource Management Errors,nan
CVE-2011-1741,9/10/2018 19:32,19/07/2011 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1736,9/10/2018 19:31,7/05/2011 19:55,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1735,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1734,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1733,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1732,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1731,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1730,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1729,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1728,9/10/2018 19:31,7/05/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1723,9/10/2018 19:31,19/04/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1721,9/10/2018 19:31,19/04/2011 19:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1720,9/10/2018 19:31,13/05/2011 17:05,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1719,9/10/2018 19:31,27/04/2011 1:25,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1718,9/10/2018 19:31,27/04/2011 1:25,4.3,20, Improper Input Validation,nan
CVE-2011-1716,9/10/2018 19:31,18/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1708,9/10/2018 19:31,9/06/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1707,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1706,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1705,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1704,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1703,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1702,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1701,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1700,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1699,9/10/2018 19:31,9/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1671,9/10/2018 19:31,10/04/2011 2:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1670,9/10/2018 19:31,10/04/2011 2:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1668,9/10/2018 19:31,10/04/2011 2:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1666,9/10/2018 19:31,10/04/2011 2:51,5.0,200, Information Exposure,nan
CVE-2011-1660,9/10/2018 19:31,10/04/2011 2:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1659,9/10/2018 19:31,8/04/2011 15:17,5.0,189, Numeric Errors,nan
CVE-2011-1658,9/10/2018 19:31,8/04/2011 15:17,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2011-1657,9/10/2018 19:31,25/08/2011 14:22,5.0,399, Resource Management Errors,nan
CVE-2011-1655,9/10/2018 19:31,18/04/2011 15:00,7.5,310, Cryptographic Issues,nan
CVE-2011-1654,9/10/2018 19:31,18/04/2011 15:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1653,9/10/2018 19:31,18/04/2011 15:00,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1610,9/10/2018 19:31,3/05/2011 22:55,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1582,9/10/2018 19:31,20/05/2011 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1577,9/10/2018 19:31,3/05/2011 19:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1569,9/10/2018 19:31,5/04/2011 15:19,5.0,200, Information Exposure,nan
CVE-2011-1546,9/10/2018 19:31,4/04/2011 12:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1530,9/10/2018 19:31,8/12/2011 20:55,6.8,399, Resource Management Errors,nan
CVE-2011-1526,9/10/2018 19:31,11/07/2011 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1525,9/10/2018 19:31,6/04/2011 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1524,9/10/2018 19:31,28/03/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1520,9/10/2018 19:31,25/03/2011 19:55,7.2,287, Improper Authentication,nan
CVE-2011-1519,9/10/2018 19:31,25/03/2011 19:55,10.0,287, Improper Authentication,nan
CVE-2011-1516,9/10/2018 19:31,15/11/2011 18:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1512,9/10/2018 19:31,31/05/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1510,9/10/2018 19:31,20/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1509,9/10/2018 19:31,20/09/2011 10:55,5.0,310, Cryptographic Issues,nan
CVE-2011-1495,9/10/2018 19:31,3/05/2011 19:55,7.2,20, Improper Input Validation,nan
CVE-2011-1494,9/10/2018 19:30,3/05/2011 19:55,6.9,189, Numeric Errors,nan
CVE-2011-1427,9/10/2018 19:30,15/03/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1424,9/10/2018 19:30,24/05/2011 23:55,3.5,16, Configuration,nan
CVE-2011-1423,9/10/2018 19:30,5/05/2011 2:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1422,9/10/2018 19:30,22/04/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1421,9/10/2018 19:30,22/04/2011 10:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1420,9/10/2018 19:30,28/03/2011 16:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1412,9/10/2018 19:30,4/08/2011 2:45,7.5,20, Improper Input Validation,nan
CVE-2011-1344,9/10/2018 19:30,10/03/2011 20:55,6.8,399, Resource Management Errors,nan
CVE-2011-1290,9/10/2018 19:30,11/03/2011 21:57,10.0,189, Numeric Errors,nan
CVE-2011-1220,9/10/2018 19:30,2/06/2011 20:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1168,9/10/2018 19:30,18/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1167,9/10/2018 19:30,28/03/2011 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1126,9/10/2018 19:30,4/04/2011 12:27,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1099,9/10/2018 19:30,9/03/2011 23:00,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1095,9/10/2018 19:30,10/04/2011 2:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1090,9/10/2018 19:30,9/05/2011 19:55,4.9,399, Resource Management Errors,nan
CVE-2011-1077,9/10/2018 19:30,2/06/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1074,9/10/2018 19:30,4/03/2011 23:00,1.9,200, Information Exposure,nan
CVE-2011-1073,9/10/2018 19:30,4/03/2011 23:00,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1071,9/10/2018 19:30,8/04/2011 15:17,5.1,399, Resource Management Errors,nan
CVE-2011-1063,9/10/2018 19:30,23/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1061,9/10/2018 19:30,23/02/2011 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1060,9/10/2018 19:30,23/02/2011 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1047,9/10/2018 19:30,21/02/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1038,9/10/2018 19:30,22/02/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1033,9/10/2018 19:30,15/02/2011 1:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1026,9/10/2018 19:30,2/06/2011 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1017,9/10/2018 19:30,1/03/2011 23:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1012,9/10/2018 19:30,1/03/2011 23:00,4.9,20, Improper Input Validation,nan
CVE-2011-1010,9/10/2018 19:30,1/03/2011 23:00,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0994,9/10/2018 19:30,10/04/2011 2:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0975,9/10/2018 19:30,10/02/2011 18:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0926,9/10/2018 19:30,25/02/2011 18:00,9.3,20, Improper Input Validation,nan
CVE-2011-0925,9/10/2018 19:29,28/02/2011 16:00,9.3,20, Improper Input Validation,nan
CVE-2011-0924,9/10/2018 19:29,9/02/2011 1:00,10.0,20, Improper Input Validation,nan
CVE-2011-0922,9/10/2018 19:29,9/02/2011 1:00,10.0,20, Improper Input Validation,nan
CVE-2011-0919,9/10/2018 19:29,8/02/2011 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0915,9/10/2018 19:29,8/02/2011 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0887,9/10/2018 19:29,8/02/2011 22:00,4.3,310, Cryptographic Issues,nan
CVE-2011-0886,9/10/2018 19:29,8/02/2011 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0885,9/10/2018 19:29,8/02/2011 22:00,10.0,255, Credentials Management,nan
CVE-2011-0772,9/10/2018 19:29,4/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0762,9/10/2018 19:29,2/03/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2011-0758,9/10/2018 19:29,10/02/2011 18:00,10.0,189, Numeric Errors,nan
CVE-2011-0751,9/10/2018 19:29,16/03/2011 22:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0748,9/10/2018 19:29,13/04/2011 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0746,9/10/2018 19:29,13/04/2011 14:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0745,9/10/2018 19:29,16/03/2011 22:55,4.0,20, Improper Input Validation,nan
CVE-2011-0742,9/10/2018 19:29,2/02/2011 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0710,9/10/2018 19:29,18/02/2011 20:00,2.1,200, Information Exposure,nan
CVE-2011-0650,9/10/2018 19:29,28/01/2011 16:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0647,9/10/2018 19:29,10/02/2011 18:00,10.0,20, Improper Input Validation,nan
CVE-2011-0636,9/10/2018 19:29,22/01/2011 22:00,2.1,200, Information Exposure,nan
CVE-2011-0635,9/10/2018 19:29,22/01/2011 22:00,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0569,9/10/2018 19:29,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0557,9/10/2018 19:29,10/02/2011 16:00,9.3,189, Numeric Errors,nan
CVE-2011-0556,9/10/2018 19:29,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0555,9/10/2018 19:29,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0545,9/10/2018 19:29,28/03/2011 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0534,9/10/2018 19:29,10/02/2011 18:00,5.0,399, Resource Management Errors,nan
CVE-2011-0533,9/10/2018 19:29,17/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0521,9/10/2018 19:29,2/02/2011 23:00,6.9,189, Numeric Errors,nan
CVE-2011-0508,9/10/2018 19:29,20/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0504,9/10/2018 19:29,20/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0503,9/10/2018 19:29,20/01/2011 19:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0495,9/10/2018 19:29,20/01/2011 19:00,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0487,9/10/2018 19:29,18/01/2011 18:03,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0486,9/10/2018 19:29,18/01/2011 18:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0442,9/10/2018 19:29,16/03/2011 22:55,3.5,310, Cryptographic Issues,nan
CVE-2018-15203,9/10/2018 19:01,8/08/2018 4:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15185,9/10/2018 18:35,10/08/2018 15:29,5.5,20, Improper Input Validation,nan
CVE-2018-15184,9/10/2018 17:58,9/08/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15186,9/10/2018 17:14,10/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16454,9/10/2018 16:38,7/09/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-15188,9/10/2018 15:57,10/08/2018 15:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4430,9/10/2018 15:09,10/10/2012 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5373,9/10/2018 15:08,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5626,9/10/2018 15:08,23/10/2007 16:46,2.1,310, Cryptographic Issues,nan
CVE-2018-1999034,9/10/2018 15:07,1/08/2018 13:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-1000605,9/10/2018 15:07,26/06/2018 17:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-15367,9/10/2018 15:07,7/03/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8527,9/10/2018 15:01,6/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4391,9/10/2018 14:56,6/08/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7464,9/10/2018 13:48,8/08/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7070,9/10/2018 13:36,6/08/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-12941,9/10/2018 13:11,31/07/2018 14:29,9.0,20, Improper Input Validation,nan
CVE-2018-7071,6/10/2018 13:13,6/08/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-15191,6/10/2018 12:32,10/08/2018 17:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15190,6/10/2018 12:14,10/08/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15189,5/10/2018 19:11,10/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14503,5/10/2018 18:57,10/08/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14837,5/10/2018 18:56,10/08/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15187,5/10/2018 18:20,10/08/2018 15:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1999035,5/10/2018 18:10,1/08/2018 13:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-14581,5/10/2018 17:28,31/07/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2016-4405,5/10/2018 17:25,6/08/2018 20:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2017-13652,5/10/2018 16:57,31/07/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2016-4392,5/10/2018 16:46,6/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15182,5/10/2018 16:41,9/08/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15130,5/10/2018 16:19,7/08/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16349,5/10/2018 16:18,2/08/2018 19:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4398,5/10/2018 16:16,6/08/2018 20:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-7748,5/10/2018 16:15,3/08/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-3847,5/10/2018 16:14,1/08/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3939,5/10/2018 16:04,1/08/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-3924,5/10/2018 16:04,1/08/2018 20:29,6.8,416, Use After Free,nan
CVE-2017-8991,5/10/2018 15:44,6/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7075,5/10/2018 15:39,6/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15129,5/10/2018 15:35,7/08/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15168,5/10/2018 15:33,8/08/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-15169,5/10/2018 15:29,8/08/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15177,5/10/2018 15:28,8/08/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1999033,5/10/2018 14:55,1/08/2018 13:29,4.0,200, Information Exposure,nan
CVE-2016-4403,5/10/2018 14:13,6/08/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4404,5/10/2018 14:12,6/08/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4402,5/10/2018 14:02,6/08/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4397,5/10/2018 13:38,6/08/2018 20:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-7092,5/10/2018 13:24,6/08/2018 20:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-15178,5/10/2018 13:18,8/08/2018 0:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-15193,5/10/2018 13:17,8/08/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7686,5/10/2018 12:57,9/08/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-7692,5/10/2018 12:56,9/08/2018 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-14942,5/10/2018 12:40,5/08/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4400,4/10/2018 22:19,6/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4399,4/10/2018 22:19,6/08/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12943,4/10/2018 22:14,31/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3756,4/10/2018 22:07,21/07/2006 14:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2190,4/10/2018 22:05,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2018-3881,4/10/2018 21:48,1/08/2018 20:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7993,4/10/2018 21:46,31/07/2018 14:29,9.3,416, Use After Free,nan
CVE-2018-7992,4/10/2018 21:43,31/07/2018 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7947,4/10/2018 21:39,31/07/2018 14:29,4.4,287, Improper Authentication,nan
CVE-2018-7934,4/10/2018 21:38,31/07/2018 14:29,7.1,20, Improper Input Validation,nan
CVE-2018-14767,4/10/2018 21:29,31/07/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2018-13055,4/10/2018 18:33,3/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4406,4/10/2018 18:29,6/08/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15174,4/10/2018 18:07,8/08/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15175,4/10/2018 18:06,8/08/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15176,4/10/2018 18:05,8/08/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-15197,4/10/2018 17:44,8/08/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-16449,4/10/2018 17:31,4/09/2018 4:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6920,4/10/2018 16:16,6/08/2018 15:29,7.5,19, Data Processing Errors,nan
CVE-2018-14964,4/10/2018 15:55,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14965,4/10/2018 15:54,6/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14966,4/10/2018 15:53,6/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14968,4/10/2018 15:50,6/08/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14967,4/10/2018 15:50,6/08/2018 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1999026,4/10/2018 15:44,1/08/2018 13:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1999025,4/10/2018 15:34,1/08/2018 13:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-14960,4/10/2018 15:25,6/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14961,4/10/2018 15:23,6/08/2018 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14962,4/10/2018 15:20,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14963,4/10/2018 15:14,6/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-15198,4/10/2018 15:12,8/08/2018 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14944,4/10/2018 13:38,5/08/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14945,4/10/2018 13:35,5/08/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14959,4/10/2018 13:30,5/08/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14958,4/10/2018 13:30,5/08/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12614,4/10/2018 13:27,6/08/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14869,4/10/2018 13:17,6/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-15199,4/10/2018 13:12,8/08/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14946,4/10/2018 12:36,5/08/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14947,4/10/2018 12:31,5/08/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14948,4/10/2018 12:26,5/08/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7755,4/10/2018 10:29,8/03/2018 7:29,2.1,200, Information Exposure,nan
CVE-2015-0227,4/10/2018 10:29,12/02/2015 16:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3232,3/10/2018 22:01,17/09/2009 10:30,9.3,287, Improper Authentication,nan
CVE-2009-2687,3/10/2018 22:01,5/08/2009 19:30,4.3,20, Improper Input Validation,nan
CVE-2009-2663,3/10/2018 22:00,4/08/2009 16:30,9.3,399, Resource Management Errors,nan
CVE-2009-2654,3/10/2018 22:00,3/08/2009 14:30,5.8,20, Improper Input Validation,nan
CVE-2009-2408,3/10/2018 22:00,30/07/2009 19:30,6.8,20, Improper Input Validation,nan
CVE-2009-2404,3/10/2018 22:00,3/08/2009 14:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2285,3/10/2018 22:00,1/07/2009 13:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1709,3/10/2018 22:00,10/06/2009 18:00,9.3,399, Resource Management Errors,nan
CVE-2009-1391,3/10/2018 22:00,16/06/2009 23:30,6.8,189, Numeric Errors,nan
CVE-2009-1310,3/10/2018 22:00,22/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1309,3/10/2018 22:00,22/04/2009 18:30,4.3,16, Configuration,nan
CVE-2009-1308,3/10/2018 21:59,22/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1307,3/10/2018 21:59,22/04/2009 18:30,6.8,20, Improper Input Validation,nan
CVE-2009-1306,3/10/2018 21:59,22/04/2009 18:30,4.3,16, Configuration,nan
CVE-2009-1305,3/10/2018 21:59,22/04/2009 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-1304,3/10/2018 21:59,22/04/2009 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-1302,3/10/2018 21:59,22/04/2009 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-1300,3/10/2018 21:59,16/04/2009 15:12,10.0,20, Improper Input Validation,nan
CVE-2009-1189,3/10/2018 21:59,27/04/2009 18:00,3.6,20, Improper Input Validation,nan
CVE-2009-0776,3/10/2018 21:58,5/03/2009 2:30,7.1,200, Information Exposure,nan
CVE-2009-0774,3/10/2018 21:58,5/03/2009 2:30,9.3,399, Resource Management Errors,nan
CVE-2009-0772,3/10/2018 21:58,5/03/2009 2:30,9.3,399, Resource Management Errors,nan
CVE-2009-0754,3/10/2018 21:58,3/03/2009 16:30,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2009-0352,3/10/2018 21:58,4/02/2009 19:30,10.0,399, Resource Management Errors,nan
CVE-2009-0312,3/10/2018 21:58,28/01/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0022,3/10/2018 21:57,5/01/2009 20:30,6.3,20, Improper Input Validation,nan
CVE-2008-5713,3/10/2018 21:57,24/12/2008 18:29,4.9,399, Resource Management Errors,nan
CVE-2008-5702,3/10/2018 21:57,22/12/2008 15:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5505,3/10/2018 21:56,17/12/2008 23:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5317,3/10/2018 21:56,3/12/2008 17:30,10.0,189, Numeric Errors,nan
CVE-2008-5134,3/10/2018 21:56,18/11/2008 16:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3905,3/10/2018 21:55,4/09/2008 17:41,5.8,287, Improper Authentication,nan
CVE-2008-3790,3/10/2018 21:55,27/08/2008 20:41,5.0,20, Improper Input Validation,nan
CVE-2008-3640,3/10/2018 21:55,14/10/2008 21:10,6.8,189, Numeric Errors,nan
CVE-2008-3639,3/10/2018 21:55,14/10/2008 21:10,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3529,3/10/2018 21:55,12/09/2008 16:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3443,3/10/2018 21:55,14/08/2008 23:41,5.0,399, Resource Management Errors,nan
CVE-2008-3422,3/10/2018 21:55,31/07/2008 21:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2383,3/10/2018 21:54,2/01/2009 18:11,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1722,3/10/2018 21:54,10/04/2008 19:05,4.3,20, Improper Input Validation,nan
CVE-2008-1720,3/10/2018 21:54,10/04/2008 19:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1694,3/10/2018 21:54,22/04/2008 4:41,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1502,3/10/2018 21:53,25/03/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1420,3/10/2018 21:53,16/05/2008 12:54,6.8,189, Numeric Errors,nan
CVE-2008-1293,3/10/2018 21:53,29/04/2008 13:09,4.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1099,3/10/2018 21:53,5/03/2008 20:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1098,3/10/2018 21:53,5/03/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0782,3/10/2018 21:53,14/02/2008 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0781,3/10/2018 21:53,14/02/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0780,3/10/2018 21:53,14/02/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0416,3/10/2018 21:53,12/02/2008 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6341,3/10/2018 21:51,20/12/2007 23:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6109,3/10/2018 21:51,7/12/2007 11:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5925,3/10/2018 21:50,10/11/2007 2:46,4.0,20, Improper Input Validation,nan
CVE-2007-5335,3/10/2018 21:49,24/10/2007 0:46,4.3,200, Information Exposure,nan
CVE-2007-5208,3/10/2018 21:49,13/10/2007 0:17,7.6,20, Improper Input Validation,nan
CVE-2007-4662,3/10/2018 21:48,4/09/2007 22:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4661,3/10/2018 21:48,4/09/2007 22:17,7.5,399, Resource Management Errors,nan
CVE-2007-4660,3/10/2018 21:48,4/09/2007 22:17,7.5,399, Resource Management Errors,nan
CVE-2007-4567,3/10/2018 21:48,21/12/2007 0:46,7.8,20, Improper Input Validation,nan
CVE-2007-4351,3/10/2018 21:47,31/10/2007 22:46,10.0,189, Numeric Errors,nan
CVE-2007-3799,3/10/2018 21:47,16/07/2007 22:30,4.3,20, Improper Input Validation,nan
CVE-2007-2583,3/10/2018 21:47,10/05/2007 0:19,4.0,189, Numeric Errors,nan
CVE-2006-7236,3/10/2018 21:45,2/01/2009 18:11,9.3,16, Configuration,nan
CVE-2006-2788,3/10/2018 21:42,2/06/2006 21:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2656,3/10/2018 21:41,30/05/2006 18:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2480,3/10/2018 21:41,19/05/2006 21:02,5.1,134, Use of Externally-Controlled Format String,nan
CVE-2006-2453,3/10/2018 21:40,28/05/2006 10:06,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2006-2276,3/10/2018 21:40,10/05/2006 2:14,4.9,399, Resource Management Errors,nan
CVE-2006-2197,3/10/2018 21:40,15/06/2006 10:02,6.5,189, Numeric Errors,nan
CVE-2006-2026,3/10/2018 21:40,25/04/2006 23:02,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1525,3/10/2018 21:37,19/04/2006 18:18,4.9,399, Resource Management Errors,nan
CVE-2006-1368,3/10/2018 21:36,23/03/2006 23:06,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1057,3/10/2018 21:36,25/04/2006 1:02,3.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-0459,3/10/2018 21:35,29/03/2006 23:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4268,3/10/2018 21:34,15/12/2005 18:11,3.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3662,3/10/2018 21:33,18/11/2005 2:02,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3656,3/10/2018 21:33,31/12/2005 5:00,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2005-3534,3/10/2018 21:32,22/12/2005 21:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3257,3/10/2018 21:31,18/10/2005 22:02,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-3185,3/10/2018 21:31,13/10/2005 22:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3183,3/10/2018 21:31,12/10/2005 22:02,4.3,20, Improper Input Validation,nan
CVE-2005-3088,3/10/2018 21:31,27/10/2005 10:02,2.1,200, Information Exposure,nan
CVE-2005-2972,3/10/2018 21:31,23/10/2005 10:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2959,3/10/2018 21:31,25/10/2005 16:02,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-2548,3/10/2018 21:30,12/08/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2005-0449,3/10/2018 21:29,2/05/2005 4:00,7.1,20, Improper Input Validation,nan
CVE-2004-1267,3/10/2018 21:29,10/01/2005 5:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1125,3/10/2018 21:29,10/01/2005 5:00,9.3,20, Improper Input Validation,nan
CVE-2018-1999022,3/10/2018 20:01,23/07/2018 16:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-5693,3/10/2018 19:32,31/07/2018 19:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-14775,3/10/2018 19:13,1/08/2018 6:29,4.9,20, Improper Input Validation,nan
CVE-2017-9569,3/10/2018 18:18,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2192,3/10/2018 18:18,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2189,3/10/2018 18:18,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-9577,3/10/2018 18:17,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9576,3/10/2018 18:17,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9572,3/10/2018 18:17,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9571,3/10/2018 18:17,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9578,3/10/2018 18:16,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9584,3/10/2018 18:15,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9601,3/10/2018 18:13,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-6519,3/10/2018 18:12,2/02/2018 1:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-4523,3/10/2018 18:06,11/09/2017 17:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-1155,3/10/2018 18:04,2/08/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12607,3/10/2018 17:36,3/08/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12606,3/10/2018 17:36,3/08/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12605,3/10/2018 17:35,3/08/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14876,3/10/2018 17:32,3/08/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14872,3/10/2018 17:23,3/08/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-1999041,3/10/2018 17:19,1/08/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-14977,3/10/2018 15:54,6/08/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14978,3/10/2018 15:52,6/08/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14976,3/10/2018 15:45,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14975,3/10/2018 15:45,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14974,3/10/2018 15:44,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14973,3/10/2018 15:43,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14972,3/10/2018 15:43,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14971,3/10/2018 15:42,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14970,3/10/2018 15:42,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14969,3/10/2018 15:41,6/08/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14858,3/10/2018 13:05,2/08/2018 20:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-15358,2/10/2018 20:55,3/08/2018 18:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-3923,2/10/2018 20:44,1/08/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14417,2/10/2018 20:24,4/08/2018 1:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14504,2/10/2018 20:20,3/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14576,2/10/2018 20:14,3/08/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12483,2/10/2018 19:55,4/08/2018 1:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14715,2/10/2018 19:30,3/08/2018 18:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-14777,2/10/2018 18:54,1/08/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14912,2/10/2018 18:39,3/08/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6972,2/10/2018 18:20,25/07/2018 13:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-0614,2/10/2018 18:02,26/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14929,2/10/2018 15:54,3/08/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14927,2/10/2018 15:54,3/08/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14926,2/10/2018 15:54,3/08/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14910,2/10/2018 15:54,3/08/2018 19:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-9955,2/10/2018 15:52,17/02/2017 2:59,4.0,20, Improper Input Validation,nan
CVE-2016-3124,2/10/2018 15:52,7/02/2017 17:59,5.0,200, Information Exposure,nan
CVE-2017-10934,2/10/2018 14:28,25/07/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-14924,2/10/2018 13:32,3/08/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6420,1/10/2018 21:29,15/12/2015 5:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1999031,1/10/2018 18:27,1/08/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-1999029,1/10/2018 18:09,1/08/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12940,1/10/2018 15:51,31/07/2018 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11044,1/10/2018 13:14,24/07/2018 19:29,4.0,20, Improper Input Validation,nan
CVE-2018-14473,1/10/2018 1:54,4/08/2018 1:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12482,1/10/2018 1:38,4/08/2018 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3670,1/10/2018 1:20,1/08/2018 15:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9068,28/09/2018 20:04,26/07/2018 19:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2018-12942,28/09/2018 19:13,31/07/2018 14:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12944,28/09/2018 19:05,31/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14835,28/09/2018 19:03,2/08/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14838,28/09/2018 18:42,2/08/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12939,28/09/2018 18:34,31/07/2018 14:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14685,28/09/2018 17:27,28/07/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-14686,28/09/2018 17:13,28/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3921,28/09/2018 16:17,1/08/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3922,28/09/2018 16:15,1/08/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7649,28/09/2018 16:10,2/08/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14497,28/09/2018 15:59,4/08/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14404,28/09/2018 10:29,19/07/2018 13:29,5.0,476, NULL Pointer Dereference,nan
CVE-2014-8901,28/09/2018 10:29,18/12/2014 16:59,4.0,399, Resource Management Errors,nan
CVE-2005-4855,27/09/2018 21:38,31/12/2005 5:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-4852,27/09/2018 21:38,31/12/2005 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4526,27/09/2018 21:30,25/08/2007 0:17,2.1,255, Credentials Management,nan
CVE-2016-1592,27/09/2018 21:29,27/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0787,27/09/2018 21:29,27/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14776,27/09/2018 19:29,1/08/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14541,27/09/2018 19:18,4/08/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14444,27/09/2018 18:54,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14446,27/09/2018 18:53,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14445,27/09/2018 18:53,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16339,27/09/2018 18:51,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16338,27/09/2018 18:51,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16340,27/09/2018 18:50,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16341,27/09/2018 18:49,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16342,27/09/2018 18:45,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16343,27/09/2018 18:44,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16344,27/09/2018 18:42,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16345,27/09/2018 18:39,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16346,27/09/2018 18:13,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6213,27/09/2018 17:52,2/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6215,27/09/2018 17:47,2/08/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14873,27/09/2018 17:30,3/08/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14908,27/09/2018 17:21,3/08/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14904,27/09/2018 17:20,3/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14877,27/09/2018 17:17,3/08/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14936,27/09/2018 17:11,5/08/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14937,27/09/2018 17:03,5/08/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14300,27/09/2018 16:11,31/07/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-14295,27/09/2018 16:11,31/07/2018 20:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-9966,27/09/2018 14:30,17/05/2018 15:29,6.8,416, Use After Free,nan
CVE-2016-9444,27/09/2018 10:29,12/01/2017 6:59,5.0,20, Improper Input Validation,nan
CVE-2016-9147,27/09/2018 10:29,12/01/2017 6:59,5.0,20, Improper Input Validation,nan
CVE-2016-9131,27/09/2018 10:29,12/01/2017 6:59,5.0,20, Improper Input Validation,nan
CVE-2016-8864,27/09/2018 10:29,2/11/2016 17:59,5.0,20, Improper Input Validation,nan
CVE-2016-2848,27/09/2018 10:29,21/10/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2014-6210,27/09/2018 10:29,12/12/2014 16:59,4.0,20, Improper Input Validation,nan
CVE-2014-6209,27/09/2018 10:29,12/12/2014 16:59,4.0,20, Improper Input Validation,nan
CVE-2015-8300,26/09/2018 21:29,28/08/2017 21:29,7.2,275, Permission Issues,nan
CVE-2018-14906,26/09/2018 17:29,3/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14905,26/09/2018 17:29,3/08/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14907,26/09/2018 17:28,3/08/2018 18:29,5.0,388, 7PK – Errors,nan
CVE-2005-3498,26/09/2018 15:30,4/11/2005 0:02,4.3,200, Information Exposure,nan
CVE-2018-14737,26/09/2018 15:25,30/07/2018 1:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-14736,26/09/2018 15:25,30/07/2018 1:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-14742,26/09/2018 15:24,30/07/2018 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14741,26/09/2018 15:24,30/07/2018 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14740,26/09/2018 15:24,30/07/2018 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14739,26/09/2018 15:24,30/07/2018 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14738,26/09/2018 15:24,30/07/2018 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14743,26/09/2018 15:23,30/07/2018 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14744,26/09/2018 15:22,30/07/2018 1:29,7.5,416, Use After Free,nan
CVE-2017-16347,26/09/2018 14:49,2/08/2018 19:29,8.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18202,26/09/2018 10:29,27/02/2018 6:29,6.9,416, Use After Free,nan
CVE-2015-1935,26/09/2018 10:29,20/07/2015 1:59,8.0,17, DEPRECATED: Code,nan
CVE-2015-1922,26/09/2018 10:29,20/07/2015 1:59,3.5,284, Improper Access Control,nan
CVE-2016-10593,25/09/2018 18:29,29/05/2018 20:29,9.3,310, Cryptographic Issues,nan
CVE-2013-3475,25/09/2018 10:29,5/06/2013 3:43,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-16771,24/09/2018 20:55,10/09/2018 4:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-16772,24/09/2018 20:54,10/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16773,24/09/2018 20:53,10/09/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-16774,24/09/2018 20:52,10/09/2018 4:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0607,24/09/2018 17:29,26/07/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10860,23/09/2018 10:29,29/06/2018 19:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0622,21/09/2018 19:56,26/07/2018 17:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-14493,21/09/2018 14:39,25/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0655,21/09/2018 14:03,7/09/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0654,21/09/2018 14:03,7/09/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0653,21/09/2018 13:58,7/09/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0652,21/09/2018 13:58,7/09/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14066,21/09/2018 13:47,15/07/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10379,21/09/2018 10:29,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2016-9877,21/09/2018 10:29,29/12/2016 9:59,7.5,284, Improper Access Control,nan
CVE-2013-4276,21/09/2018 10:29,28/09/2013 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14328,20/09/2018 19:57,23/07/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-14570,20/09/2018 19:09,23/07/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-18104,20/09/2018 19:02,24/07/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-0617,20/09/2018 18:58,26/07/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13386,20/09/2018 18:57,24/07/2018 13:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-14579,20/09/2018 18:55,24/07/2018 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14492,20/09/2018 18:49,21/07/2018 12:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14083,20/09/2018 18:44,25/07/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-0619,20/09/2018 18:02,26/07/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0620,20/09/2018 17:57,26/07/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0621,20/09/2018 17:54,26/07/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2017-5461,20/09/2018 16:43,11/05/2017 1:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-1999015,20/09/2018 16:22,23/07/2018 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-1999023,20/09/2018 16:21,23/07/2018 16:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1999020,20/09/2018 16:21,23/07/2018 15:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1999013,20/09/2018 16:21,23/07/2018 15:29,4.3,416, Use After Free,nan
CVE-2018-4010,20/09/2018 15:23,7/09/2018 15:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3952,20/09/2018 15:23,7/09/2018 15:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14573,20/09/2018 14:16,23/07/2018 23:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10936,20/09/2018 14:16,25/07/2018 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1999009,20/09/2018 14:15,23/07/2018 15:29,6.8,200, Information Exposure,nan
CVE-2018-14564,20/09/2018 14:14,23/07/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10937,20/09/2018 13:58,25/07/2018 15:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14563,20/09/2018 13:44,23/07/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14562,20/09/2018 13:42,23/07/2018 14:29,7.5,476, NULL Pointer Dereference,nan
CVE-2016-10728,20/09/2018 13:33,23/07/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-1999017,20/09/2018 13:21,23/07/2018 15:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1999018,20/09/2018 13:13,23/07/2018 15:29,8.5,20, Improper Input Validation,nan
CVE-2018-11491,20/09/2018 12:44,25/07/2018 13:29,10.0,287, Improper Authentication,nan
CVE-2018-14430,20/09/2018 12:08,25/07/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8858,19/09/2018 20:02,9/12/2016 11:59,7.8,399, Resource Management Errors,nan
CVE-2018-1999016,19/09/2018 19:44,23/07/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14531,19/09/2018 19:43,23/07/2018 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1999008,19/09/2018 19:36,23/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1999005,19/09/2018 19:15,23/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1999007,19/09/2018 19:10,23/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11717,19/09/2018 18:31,16/07/2018 14:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1999014,19/09/2018 17:56,23/07/2018 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5537,19/09/2018 17:53,25/07/2018 14:29,2.6,20, Improper Input Validation,nan
CVE-2018-14545,19/09/2018 17:52,23/07/2018 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-14544,19/09/2018 17:52,23/07/2018 8:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-14543,19/09/2018 17:52,23/07/2018 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12475,19/09/2018 17:52,6/09/2017 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14260,19/09/2018 17:50,11/09/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1999024,19/09/2018 16:30,23/07/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14387,19/09/2018 15:03,18/07/2018 19:29,6.8,384, Session Fixation,nan
CVE-2018-14379,19/09/2018 15:02,18/07/2018 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2014-2296,19/09/2018 13:31,20/07/2018 17:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1999021,19/09/2018 12:18,23/07/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14403,18/09/2018 19:46,19/07/2018 5:29,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2018-5530,18/09/2018 19:45,25/07/2018 14:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-14527,18/09/2018 18:36,23/07/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14602,18/09/2018 18:25,27/07/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-5534,18/09/2018 18:17,19/07/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-14603,18/09/2018 18:17,27/07/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14606,18/09/2018 18:16,27/07/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14604,18/09/2018 18:16,27/07/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14605,18/09/2018 18:15,27/07/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5533,18/09/2018 18:11,19/07/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-14586,18/09/2018 18:07,24/07/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14582,18/09/2018 18:06,24/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18343,18/09/2018 17:03,20/07/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5531,18/09/2018 16:30,25/07/2018 14:29,6.1,20, Improper Input Validation,nan
CVE-2018-14583,18/09/2018 14:58,24/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12911,18/09/2018 14:58,19/07/2018 13:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-1529,18/09/2018 14:45,19/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2302,18/09/2018 14:45,19/07/2018 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14505,18/09/2018 13:23,22/07/2018 18:29,6.8,20, Improper Input Validation,nan
CVE-2016-10727,18/09/2018 13:16,20/07/2018 4:29,5.0,200, Information Exposure,nan
CVE-2018-14336,18/09/2018 12:14,19/07/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2014-4150,18/09/2018 12:02,20/07/2018 17:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-14501,17/09/2018 20:20,22/07/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14442,17/09/2018 20:19,20/07/2018 12:29,7.5,416, Use After Free,nan
CVE-2018-14333,17/09/2018 19:51,17/07/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-14514,17/09/2018 19:30,23/07/2018 8:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-14399,17/09/2018 18:32,19/07/2018 5:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0243,17/09/2018 18:04,19/07/2018 17:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-5539,17/09/2018 18:00,25/07/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2013-0522,17/09/2018 17:56,16/07/2018 14:29,1.9,200, Information Exposure,nan
CVE-2018-5007,17/09/2018 17:52,20/07/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12804,17/09/2018 17:41,20/07/2018 19:29,7.5,287, Improper Authentication,nan
CVE-2018-12809,17/09/2018 17:29,20/07/2018 19:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5004,17/09/2018 17:28,20/07/2018 19:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5008,17/09/2018 17:23,20/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5006,17/09/2018 17:23,20/07/2018 19:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5541,17/09/2018 17:17,25/07/2018 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-5542,17/09/2018 17:13,25/07/2018 14:29,6.8,20, Improper Input Validation,nan
CVE-2018-14334,17/09/2018 17:02,17/07/2018 2:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-12584,17/09/2018 17:01,16/07/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14439,17/09/2018 16:58,20/07/2018 0:29,5.0,682, Incorrect Calculation,nan
CVE-2018-11716,17/09/2018 16:53,16/07/2018 14:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-14415,17/09/2018 16:45,20/07/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14337,17/09/2018 16:44,17/07/2018 3:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14444,17/09/2018 16:42,20/07/2018 13:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14446,17/09/2018 16:31,20/07/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13860,17/09/2018 15:07,17/07/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-14338,17/09/2018 14:25,17/07/2018 12:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14418,17/09/2018 14:13,20/07/2018 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14438,17/09/2018 13:56,20/07/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-14371,17/09/2018 13:55,18/07/2018 12:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14402,17/09/2018 13:54,19/07/2018 5:29,5.0,787, Out-of-bounds Write,nan
CVE-2018-14401,17/09/2018 13:54,19/07/2018 5:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-14521,17/09/2018 13:46,23/07/2018 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5232,17/09/2018 13:39,18/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14331,17/09/2018 13:24,17/07/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8895,17/09/2018 13:22,10/05/2017 21:29,10.0,416, Use After Free,nan
CVE-2018-14422,17/09/2018 13:19,20/07/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13387,17/09/2018 13:18,16/07/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10577,16/09/2018 10:29,2/05/2018 21:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10576,16/09/2018 10:29,30/04/2018 22:29,4.6,287, Improper Authentication,nan
CVE-2018-10575,16/09/2018 10:29,30/04/2018 22:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-12959,15/09/2018 14:48,19/07/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-14346,15/09/2018 13:07,17/07/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14364,15/09/2018 12:36,18/07/2018 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2079,15/09/2018 12:31,16/07/2018 14:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2018-14500,15/09/2018 11:56,22/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14381,14/09/2018 19:41,18/07/2018 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-14380,14/09/2018 19:15,18/07/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14441,14/09/2018 18:55,20/07/2018 0:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-14440,14/09/2018 18:53,20/07/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14515,14/09/2018 18:36,23/07/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14512,14/09/2018 18:27,23/07/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13864,14/09/2018 17:46,17/07/2018 12:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12429,14/09/2018 17:26,18/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14082,14/09/2018 17:24,18/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7546,14/09/2018 17:06,18/07/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14513,14/09/2018 16:57,23/07/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14517,14/09/2018 16:50,23/07/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14421,14/09/2018 16:49,20/07/2018 1:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-14420,14/09/2018 16:48,20/07/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14419,14/09/2018 16:48,20/07/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18103,14/09/2018 16:24,18/07/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6832,14/09/2018 14:15,9/07/2018 17:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11045,14/09/2018 14:11,11/07/2018 20:29,4.3,330, Use of Insufficiently Random Values,nan
CVE-2018-14448,14/09/2018 14:04,20/07/2018 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-14472,14/09/2018 14:03,20/07/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14447,14/09/2018 13:15,20/07/2018 13:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14451,13/09/2018 17:51,20/07/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14456,13/09/2018 17:50,20/07/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14455,13/09/2018 17:50,20/07/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14453,13/09/2018 17:50,20/07/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14457,13/09/2018 17:49,20/07/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14458,13/09/2018 17:48,20/07/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14459,13/09/2018 17:46,20/07/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14392,13/09/2018 17:24,19/07/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13832,13/09/2018 13:55,16/07/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7943,13/09/2018 10:29,13/12/2016 20:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7942,13/09/2018 10:29,13/12/2016 20:59,7.5,787, Out-of-bounds Write,nan
CVE-2018-13981,12/09/2018 19:54,16/07/2018 14:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-13980,12/09/2018 19:41,16/07/2018 14:29,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17541,12/09/2018 19:22,16/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14071,12/09/2018 19:06,16/07/2018 13:29,7.5,20, Improper Input Validation,nan
CVE-2018-2439,12/09/2018 19:05,10/07/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-1000618,12/09/2018 19:05,9/07/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14089,12/09/2018 16:55,16/07/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2018-14088,12/09/2018 16:53,16/07/2018 2:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-14087,12/09/2018 16:44,16/07/2018 2:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-14086,12/09/2018 16:42,16/07/2018 2:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-14084,12/09/2018 16:41,16/07/2018 2:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-5229,12/09/2018 16:39,16/07/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14389,12/09/2018 16:31,18/07/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-14361,12/09/2018 16:19,17/07/2018 17:29,7.5,20, Improper Input Validation,nan
CVE-2018-14388,12/09/2018 15:25,18/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14382,12/09/2018 15:18,18/07/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4946,12/09/2018 15:12,9/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14010,12/09/2018 14:33,15/07/2018 3:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14060,12/09/2018 14:30,15/07/2018 3:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-14360,12/09/2018 14:24,17/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14065,12/09/2018 14:22,15/07/2018 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-14085,12/09/2018 14:19,16/07/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2018-14064,12/09/2018 14:18,15/07/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11543,12/09/2018 14:03,9/07/2018 12:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14063,12/09/2018 13:56,15/07/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-14326,12/09/2018 13:16,16/07/2018 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-14325,12/09/2018 13:15,16/07/2018 18:29,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-14395,12/09/2018 12:54,19/07/2018 5:29,4.3,369, Divide By Zero,nan
CVE-2016-5397,12/09/2018 10:29,12/02/2018 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9488,11/09/2018 21:29,5/06/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8310,11/09/2018 19:58,11/07/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2017-14709,11/09/2018 19:58,12/07/2018 16:29,5.8,295, Improper Certificate Validation,nan
CVE-2016-0708,11/09/2018 18:49,11/07/2018 20:29,4.3,200, Information Exposure,nan
CVE-2018-1000210,11/09/2018 18:47,13/07/2018 18:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-10943,11/09/2018 18:44,10/07/2018 15:29,7.8,20, Improper Input Validation,nan
CVE-2018-11316,11/09/2018 18:21,3/07/2018 16:29,9.3,20, Improper Input Validation,nan
CVE-2018-11314,11/09/2018 18:12,3/07/2018 16:29,9.3,20, Improper Input Validation,nan
CVE-2018-14454,11/09/2018 17:39,20/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14452,11/09/2018 17:38,20/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14450,11/09/2018 17:38,20/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14449,11/09/2018 17:37,20/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-13102,11/09/2018 17:23,3/07/2018 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-14612,11/09/2018 17:17,12/07/2018 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-1000619,11/09/2018 17:05,9/07/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-14033,11/09/2018 15:20,13/07/2018 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14034,11/09/2018 15:19,13/07/2018 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14031,11/09/2018 15:19,13/07/2018 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-14035,11/09/2018 15:18,13/07/2018 2:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6969,11/09/2018 14:47,13/07/2018 13:29,4.4,125, Out-of-bounds Read,nan
CVE-2018-10018,11/09/2018 14:39,13/07/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8172,11/09/2018 14:38,11/07/2018 0:29,9.3,20, Improper Input Validation,nan
CVE-2018-10197,11/09/2018 14:01,11/07/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17316,11/09/2018 13:57,2/07/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-1000623,11/09/2018 13:49,9/07/2018 20:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13348,11/09/2018 13:26,6/07/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-8038,11/09/2018 13:11,5/07/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-12230,11/09/2018 12:03,10/07/2018 11:29,5.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-13695,11/09/2018 10:29,25/08/2017 8:29,2.1,200, Information Exposure,nan
CVE-2016-6515,11/09/2018 10:29,7/08/2016 21:59,7.8,20, Improper Input Validation,nan
CVE-2016-1908,11/09/2018 10:29,11/04/2017 18:59,7.5,254, 7PK – Security Features,nan
CVE-2016-10012,11/09/2018 10:29,5/01/2017 2:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10011,11/09/2018 10:29,5/01/2017 2:59,2.1,320, Key Management Errors,nan
CVE-2016-10009,11/09/2018 10:29,5/01/2017 2:59,7.5,426, Untrusted Search Path,nan
CVE-2015-5600,11/09/2018 10:29,3/08/2015 1:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-8311,10/09/2018 19:36,11/07/2018 0:29,6.8,20, Improper Input Validation,nan
CVE-2018-8260,10/09/2018 19:24,11/07/2018 0:29,6.8,20, Improper Input Validation,nan
CVE-2017-7577,10/09/2018 18:59,7/04/2017 4:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8171,10/09/2018 18:53,11/07/2018 0:29,5.0,287, Improper Authentication,nan
CVE-2018-5885,10/09/2018 18:28,6/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5878,10/09/2018 17:50,6/07/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1334,10/09/2018 16:48,12/07/2018 13:29,1.9,200, Information Exposure,nan
CVE-2018-8349,10/09/2018 16:43,15/08/2018 17:29,9.3,502, Deserialization of Untrusted Data,nan
CVE-2018-8398,10/09/2018 16:34,15/08/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-14047,10/09/2018 16:32,13/07/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8394,10/09/2018 16:31,15/08/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-11049,10/09/2018 16:11,11/07/2018 20:29,6.9,427, Uncontrolled Search Path Element,nan
CVE-2018-1000620,10/09/2018 16:07,9/07/2018 20:29,5.0,331, Insufficient Entropy,nan
CVE-2017-18155,10/09/2018 16:06,12/07/2018 14:29,4.6,20, Improper Input Validation,nan
CVE-2018-8356,10/09/2018 15:31,11/07/2018 0:29,2.1,295, Improper Certificate Validation,nan
CVE-2018-1000402,10/09/2018 15:29,9/07/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-14069,10/09/2018 15:19,15/07/2018 17:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10098,10/09/2018 15:04,13/07/2018 17:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14068,10/09/2018 15:00,15/07/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13439,10/09/2018 14:51,8/07/2018 15:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6830,10/09/2018 14:26,9/07/2018 17:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0570,10/09/2018 12:50,13/07/2018 21:29,2.9,200, Information Exposure,nan
CVE-2017-17175,8/09/2018 13:12,2/07/2018 13:29,3.3,20, Improper Input Validation,nan
CVE-2018-1000617,8/09/2018 13:06,9/07/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7783,8/09/2018 12:30,3/07/2018 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10232,8/09/2018 12:16,11/07/2018 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8305,8/09/2018 12:06,11/07/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8284,7/09/2018 20:14,11/07/2018 0:29,9.3,20, Improper Input Validation,nan
CVE-2018-1000208,7/09/2018 19:09,13/07/2018 18:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5781,7/09/2018 18:29,14/03/2018 16:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5780,7/09/2018 18:29,14/03/2018 16:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5779,7/09/2018 18:29,14/03/2018 16:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16251,7/09/2018 18:29,13/03/2018 19:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-16250,7/09/2018 18:29,13/03/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-12499,7/09/2018 16:33,2/07/2018 16:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-13850,7/09/2018 16:15,10/07/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3936,7/09/2018 15:39,11/07/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3933,7/09/2018 15:39,11/07/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-14590,7/09/2018 15:38,24/07/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8345,7/09/2018 15:37,15/08/2018 17:29,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8344,7/09/2018 15:31,15/08/2018 17:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-13875,7/09/2018 15:30,10/07/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-13794,7/09/2018 15:29,9/07/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13793,7/09/2018 15:29,9/07/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13790,7/09/2018 15:28,9/07/2018 20:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-13389,7/09/2018 15:08,10/07/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2018-14054,7/09/2018 14:39,13/07/2018 17:29,7.5,415, Double Free,nan
CVE-2018-12981,7/09/2018 14:39,12/07/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12980,7/09/2018 14:33,12/07/2018 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11640,7/09/2018 14:21,3/07/2018 17:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-11304,7/09/2018 14:20,6/07/2018 19:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-9503,7/09/2018 10:29,16/06/2017 22:29,1.9,476, NULL Pointer Dereference,nan
CVE-2017-7718,7/09/2018 10:29,20/04/2017 17:59,2.1,125, Out-of-bounds Read,nan
CVE-2017-2620,7/09/2018 10:29,27/07/2018 19:29,9.0,787, Out-of-bounds Write,nan
CVE-2017-2615,7/09/2018 10:29,3/07/2018 1:29,9.0,787, Out-of-bounds Write,nan
CVE-2017-18030,7/09/2018 10:29,23/01/2018 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-16845,7/09/2018 10:29,17/11/2017 20:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-15289,7/09/2018 10:29,16/10/2017 18:29,2.1,787, Out-of-bounds Write,nan
CVE-2017-15038,7/09/2018 10:29,10/10/2017 1:30,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14167,7/09/2018 10:29,8/09/2017 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-11434,7/09/2018 10:29,25/07/2017 18:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-10911,7/09/2018 10:29,5/07/2017 1:29,4.9,200, Information Exposure,nan
CVE-2017-10806,7/09/2018 10:29,2/08/2017 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9922,7/09/2018 10:29,27/03/2017 15:59,2.1,369, Divide By Zero,nan
CVE-2016-9921,7/09/2018 10:29,23/12/2016 22:59,2.1,369, Divide By Zero,nan
CVE-2016-9916,7/09/2018 10:29,29/12/2016 22:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2016-9915,7/09/2018 10:29,29/12/2016 22:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2016-9914,7/09/2018 10:29,29/12/2016 22:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2016-9911,7/09/2018 10:29,23/12/2016 22:59,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2016-9907,7/09/2018 10:29,23/12/2016 22:59,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2016-9776,7/09/2018 10:29,29/12/2016 22:59,2.1,399, Resource Management Errors,nan
CVE-2016-9603,7/09/2018 10:29,27/07/2018 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8669,7/09/2018 10:29,4/11/2016 21:59,1.9,369, Divide By Zero,nan
CVE-2016-8667,7/09/2018 10:29,4/11/2016 21:59,1.9,369, Divide By Zero,nan
CVE-2016-6835,7/09/2018 10:29,10/12/2016 0:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6833,7/09/2018 10:29,10/12/2016 0:59,2.1,416, Use After Free,nan
CVE-2016-4963,7/09/2018 10:29,7/06/2016 14:06,1.9,284, Improper Access Control,nan
CVE-2016-2198,7/09/2018 10:29,29/12/2016 22:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-10155,7/09/2018 10:29,15/03/2017 15:59,4.9,399, Resource Management Errors,nan
CVE-2015-8666,7/09/2018 10:29,11/04/2017 19:59,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8341,6/09/2018 20:01,15/08/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-8348,6/09/2018 19:59,15/08/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-13865,6/09/2018 18:54,10/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14009,6/09/2018 18:48,12/07/2018 16:29,10.0,20, Improper Input Validation,nan
CVE-2013-3017,6/09/2018 18:17,9/07/2018 18:29,5.0,310, Cryptographic Issues,nan
CVE-2018-13133,6/09/2018 18:03,4/07/2018 8:29,4.6,426, Untrusted Search Path,nan
CVE-2018-1000611,6/09/2018 17:22,9/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3747,6/09/2018 16:40,3/07/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14036,6/09/2018 16:16,13/07/2018 12:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-14029,6/09/2018 16:16,13/07/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-3931,6/09/2018 16:14,11/07/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3929,6/09/2018 16:14,11/07/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16890,6/09/2018 15:46,9/07/2018 11:29,4.3,369, Divide By Zero,nan
CVE-2018-8278,6/09/2018 15:43,11/07/2018 0:29,5.8,20, Improper Input Validation,nan
CVE-2018-3930,6/09/2018 15:42,11/07/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-11258,6/09/2018 15:34,6/07/2018 17:29,4.6,416, Use After Free,nan
CVE-2013-2951,6/09/2018 15:25,11/07/2018 16:29,2.1,255, Credentials Management,nan
CVE-2018-8281,6/09/2018 15:23,11/07/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13617,6/09/2018 15:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-8232,6/09/2018 15:21,11/07/2018 0:29,4.6,20, Improper Input Validation,nan
CVE-2018-13989,6/09/2018 15:19,11/07/2018 16:29,8.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-14460,6/09/2018 15:17,20/07/2018 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-13833,6/09/2018 15:17,10/07/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13457,6/09/2018 15:17,12/07/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-14015,6/09/2018 15:16,12/07/2018 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13503,6/09/2018 15:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13458,6/09/2018 15:16,12/07/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-6967,6/09/2018 14:59,9/07/2018 20:29,5.5,125, Out-of-bounds Read,nan
CVE-2018-3688,6/09/2018 14:59,10/07/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2016-10726,6/09/2018 14:59,10/07/2018 11:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0038,6/09/2018 13:54,11/07/2018 18:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-13441,6/09/2018 13:29,12/07/2018 18:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-14014,6/09/2018 13:23,12/07/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-2432,6/09/2018 13:21,10/07/2018 18:29,4.9,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2018-2431,6/09/2018 13:09,10/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2440,6/09/2018 13:07,10/07/2018 18:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-2427,6/09/2018 13:04,10/07/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1000550,6/09/2018 10:29,26/06/2018 16:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12976,6/09/2018 10:29,20/08/2017 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-14012,5/09/2018 20:23,12/07/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11349,5/09/2018 19:34,7/07/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11350,5/09/2018 19:33,7/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13449,5/09/2018 19:21,8/07/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13450,5/09/2018 19:20,8/07/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13065,5/09/2018 18:58,3/07/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7778,5/09/2018 18:06,3/07/2018 14:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-12976,5/09/2018 17:48,5/07/2018 18:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13252,5/09/2018 17:10,5/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7636,5/09/2018 17:02,3/07/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13325,5/09/2018 16:45,5/07/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13878,5/09/2018 16:34,11/07/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2435,5/09/2018 16:33,10/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13879,5/09/2018 16:33,11/07/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13849,5/09/2018 15:42,10/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16710,5/09/2018 15:42,11/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12977,5/09/2018 15:41,9/07/2018 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13795,5/09/2018 15:40,9/07/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-3932,5/09/2018 15:39,11/07/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6966,5/09/2018 15:16,9/07/2018 20:29,5.5,125, Out-of-bounds Read,nan
CVE-2018-3687,5/09/2018 15:16,10/07/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-5876,5/09/2018 15:15,6/07/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5874,5/09/2018 15:13,6/07/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-5875,5/09/2018 15:08,6/07/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-5894,5/09/2018 15:07,6/07/2018 17:29,4.3,129, Improper Validation of Array Index,nan
CVE-2018-3684,5/09/2018 15:06,10/07/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-3683,5/09/2018 15:06,10/07/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-3668,5/09/2018 15:06,10/07/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-8242,5/09/2018 14:44,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8287,5/09/2018 14:40,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8283,5/09/2018 14:40,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8298,5/09/2018 14:39,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8296,5/09/2018 14:39,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8291,5/09/2018 14:39,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8288,5/09/2018 14:39,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13997,5/09/2018 14:15,12/07/2018 12:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6965,5/09/2018 14:12,9/07/2018 20:29,5.5,125, Out-of-bounds Read,nan
CVE-2018-8309,5/09/2018 14:09,11/07/2018 0:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12529,5/09/2018 13:18,2/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12528,5/09/2018 13:03,2/07/2018 16:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7635,5/09/2018 12:47,3/07/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-11637,5/09/2018 12:46,3/07/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-8312,5/09/2018 12:45,11/07/2018 0:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11638,5/09/2018 12:44,3/07/2018 17:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-8299,5/09/2018 12:30,11/07/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8323,5/09/2018 12:19,11/07/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8319,5/09/2018 12:19,11/07/2018 0:29,7.5,682, Incorrect Calculation,nan
CVE-2018-8326,5/09/2018 11:59,11/07/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11635,4/09/2018 20:17,3/07/2018 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-11641,4/09/2018 20:07,3/07/2018 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-13998,4/09/2018 20:01,12/07/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13999,4/09/2018 19:51,12/07/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10231,4/09/2018 19:46,11/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5832,4/09/2018 19:31,6/07/2018 17:29,4.4,416, Use After Free,nan
CVE-2018-5834,4/09/2018 19:01,6/07/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8046,4/09/2018 18:38,5/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5838,4/09/2018 18:18,6/07/2018 17:29,4.6,129, Improper Validation of Array Index,nan
CVE-2018-8324,4/09/2018 18:17,11/07/2018 0:29,4.3,200, Information Exposure,nan
CVE-2013-0589,4/09/2018 18:11,11/07/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-5891,4/09/2018 17:49,6/07/2018 17:29,4.6,416, Use After Free,nan
CVE-2013-0594,4/09/2018 17:49,11/07/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2013-0592,4/09/2018 17:39,11/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13388,4/09/2018 17:32,10/07/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2972,4/09/2018 17:23,11/07/2018 16:29,7.8,284, Improper Access Control,nan
CVE-2018-3751,4/09/2018 17:19,3/07/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-12571,4/09/2018 17:18,5/07/2018 20:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-13054,4/09/2018 17:02,2/07/2018 14:29,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-8025,4/09/2018 16:27,27/06/2018 15:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-13123,4/09/2018 16:26,3/07/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-13056,4/09/2018 16:26,2/07/2018 15:29,6.4,20, Improper Input Validation,nan
CVE-2018-12575,4/09/2018 16:14,2/07/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2018-12574,4/09/2018 16:13,2/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5862,4/09/2018 16:10,6/07/2018 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12691,4/09/2018 15:59,5/07/2018 18:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-12018,4/09/2018 15:57,5/07/2018 2:29,5.0,129, Improper Validation of Array Index,nan
CVE-2018-13121,4/09/2018 15:54,3/07/2018 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000500,4/09/2018 15:54,26/06/2018 16:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-1000504,4/09/2018 15:38,26/06/2018 16:29,9.0,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1000615,4/09/2018 15:35,9/07/2018 20:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1000614,4/09/2018 15:35,9/07/2018 20:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000616,4/09/2018 15:34,9/07/2018 20:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-9242,4/09/2018 15:32,3/07/2018 21:29,6.6,20, Improper Input Validation,nan
CVE-2017-11088,4/09/2018 15:31,6/07/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-0929,4/09/2018 15:31,3/07/2018 21:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-0921,4/09/2018 15:30,3/07/2018 21:29,6.8,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-0919,4/09/2018 15:25,3/07/2018 21:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2018-9335,4/09/2018 15:07,3/07/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9337,4/09/2018 15:03,3/07/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13547,4/09/2018 14:59,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13546,4/09/2018 14:59,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13545,4/09/2018 14:59,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13551,4/09/2018 14:58,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13550,4/09/2018 14:58,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13549,4/09/2018 14:58,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13560,4/09/2018 14:57,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13562,4/09/2018 14:55,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13561,4/09/2018 14:55,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13569,4/09/2018 14:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13568,4/09/2018 14:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13567,4/09/2018 14:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13566,4/09/2018 14:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13570,4/09/2018 14:52,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13580,4/09/2018 14:50,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13579,4/09/2018 14:50,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13575,4/09/2018 14:50,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13582,4/09/2018 14:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13583,4/09/2018 14:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13585,4/09/2018 14:39,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13588,4/09/2018 14:38,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13586,4/09/2018 14:38,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13589,4/09/2018 14:32,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13590,4/09/2018 13:54,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13591,4/09/2018 13:48,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13067,4/09/2018 13:47,2/07/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13592,4/09/2018 13:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-3754,4/09/2018 13:17,3/07/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16820,4/09/2018 10:29,14/11/2017 21:29,10.0,415, Double Free,nan
CVE-2017-11175,2/09/2018 15:01,5/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9998,2/09/2018 14:53,5/07/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-13223,2/09/2018 14:35,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-11124,2/09/2018 13:52,6/07/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000539,2/09/2018 10:29,26/06/2018 16:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-8754,1/09/2018 3:29,18/03/2018 3:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-12098,1/09/2018 3:29,19/06/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-12097,1/09/2018 3:29,19/06/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-12096,1/09/2018 3:29,19/06/2018 21:29,1.9,125, Out-of-bounds Read,nan
CVE-2018-11731,1/09/2018 3:29,19/06/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-11730,1/09/2018 3:29,19/06/2018 21:29,1.9,415, Double Free,nan
CVE-2018-11729,1/09/2018 3:29,19/06/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-11728,1/09/2018 3:29,19/06/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-11727,1/09/2018 3:29,19/06/2018 21:29,1.9,200, Information Exposure,nan
CVE-2018-11723,1/09/2018 3:29,19/06/2018 21:29,1.9,125, Out-of-bounds Read,nan
CVE-2018-11636,31/08/2018 20:23,3/07/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13032,31/08/2018 20:07,1/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11643,31/08/2018 19:57,3/07/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13106,31/08/2018 19:56,3/07/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5528,31/08/2018 18:48,27/06/2018 20:29,3.5,20, Improper Input Validation,nan
CVE-2018-13869,31/08/2018 17:10,10/07/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13871,31/08/2018 17:05,10/07/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13872,31/08/2018 17:01,10/07/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13874,31/08/2018 16:55,10/07/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12907,31/08/2018 16:10,27/06/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-13039,31/08/2018 15:06,1/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13473,31/08/2018 15:04,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13544,31/08/2018 15:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13472,31/08/2018 15:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13476,31/08/2018 14:54,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13479,31/08/2018 14:52,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13495,31/08/2018 14:42,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13496,31/08/2018 14:39,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13541,31/08/2018 14:33,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13542,31/08/2018 14:24,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-3840,31/08/2018 14:19,26/06/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-1000559,31/08/2018 13:19,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000537,31/08/2018 12:15,26/06/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12921,31/08/2018 11:56,28/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2014-9222,31/08/2018 10:29,24/12/2014 18:59,10.0,17, DEPRECATED: Code,nan
CVE-2018-1000532,30/08/2018 20:27,26/06/2018 16:29,1.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10076,30/08/2018 19:27,2/07/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000531,30/08/2018 19:23,26/06/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-13050,30/08/2018 19:07,2/07/2018 11:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13049,30/08/2018 19:00,2/07/2018 11:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000527,30/08/2018 18:57,26/06/2018 16:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-13635,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13634,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13633,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13632,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13631,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13630,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13629,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13628,30/08/2018 18:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13627,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13626,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13623,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13622,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13621,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13620,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13619,30/08/2018 18:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13618,30/08/2018 18:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13616,30/08/2018 18:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13615,30/08/2018 18:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13614,30/08/2018 18:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13613,30/08/2018 18:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13612,30/08/2018 18:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13611,30/08/2018 18:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13610,30/08/2018 18:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13609,30/08/2018 18:22,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13608,30/08/2018 18:22,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13607,30/08/2018 18:22,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000519,30/08/2018 18:22,26/06/2018 16:29,4.3,384, Session Fixation,nan
CVE-2018-13606,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13605,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13604,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13603,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13602,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13601,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13600,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13599,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13598,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13553,30/08/2018 18:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13552,30/08/2018 18:20,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13470,30/08/2018 18:20,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13469,30/08/2018 18:20,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13661,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13660,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13659,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13658,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13657,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13656,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13655,30/08/2018 18:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13654,30/08/2018 18:12,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13653,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13652,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13651,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13650,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13649,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13648,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13647,30/08/2018 18:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13646,30/08/2018 18:10,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13644,30/08/2018 18:08,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13643,30/08/2018 18:08,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13642,30/08/2018 18:08,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13641,30/08/2018 18:08,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000523,30/08/2018 18:08,26/06/2018 16:29,5.8,20, Improper Input Validation,nan
CVE-2018-13640,30/08/2018 18:07,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13639,30/08/2018 18:07,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13638,30/08/2018 18:07,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13637,30/08/2018 18:01,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13636,30/08/2018 18:01,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13848,30/08/2018 17:47,10/07/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13847,30/08/2018 17:47,10/07/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11560,30/08/2018 17:35,23/06/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11335,30/08/2018 17:33,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13184,30/08/2018 17:32,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000507,30/08/2018 17:32,26/06/2018 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000506,30/08/2018 17:32,26/06/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000505,30/08/2018 17:32,26/06/2018 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000205,30/08/2018 17:31,26/06/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-1000501,30/08/2018 17:29,26/06/2018 16:29,7.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2012-1790,30/08/2018 17:17,19/03/2012 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8767,30/08/2018 16:53,8/02/2016 3:59,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8890,30/08/2018 16:52,10/05/2017 16:29,7.2,415, Double Free,nan
CVE-2016-2053,30/08/2018 16:52,2/05/2016 10:59,4.7,310, Cryptographic Issues,nan
CVE-2018-8121,30/08/2018 16:50,14/06/2018 12:29,1.9,200, Information Exposure,nan
CVE-2018-6218,30/08/2018 16:50,16/02/2018 22:29,5.1,426, Untrusted Search Path,nan
CVE-2018-1000518,30/08/2018 16:47,26/06/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-12903,30/08/2018 16:36,26/06/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10075,30/08/2018 16:27,2/07/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12255,30/08/2018 16:23,3/07/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000528,30/08/2018 16:06,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000526,30/08/2018 15:15,26/06/2018 16:29,5.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2018-1000516,30/08/2018 14:23,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12927,30/08/2018 13:43,28/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-12926,30/08/2018 13:31,28/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-12923,30/08/2018 13:21,28/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-12640,30/08/2018 13:18,23/06/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12702,30/08/2018 13:17,25/06/2018 10:29,5.0,20, Improper Input Validation,nan
CVE-2018-12706,30/08/2018 13:16,24/06/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12705,30/08/2018 13:16,24/06/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12703,30/08/2018 13:16,25/06/2018 10:29,5.0,20, Improper Input Validation,nan
CVE-2018-11587,30/08/2018 13:08,25/06/2018 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-11046,30/08/2018 13:08,25/06/2018 15:29,4.0,20, Improper Input Validation,nan
CVE-2018-12735,30/08/2018 13:07,25/06/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-0563,30/08/2018 13:07,26/06/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-12889,30/08/2018 13:06,26/06/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13578,30/08/2018 13:03,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13577,30/08/2018 13:03,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13576,30/08/2018 13:03,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13594,30/08/2018 13:02,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13593,30/08/2018 13:02,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13587,30/08/2018 13:02,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13584,30/08/2018 13:02,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13625,30/08/2018 13:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13597,30/08/2018 13:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13596,30/08/2018 13:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13595,30/08/2018 13:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13645,30/08/2018 12:59,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13624,30/08/2018 12:59,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12920,30/08/2018 12:55,28/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-13034,30/08/2018 12:35,9/07/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10328,30/08/2018 12:24,24/04/2018 6:29,3.3,798, Use of Hard-coded Credentials,nan
CVE-2018-4997,29/08/2018 19:24,9/07/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4998,29/08/2018 19:21,9/07/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4999,29/08/2018 18:53,9/07/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-13571,29/08/2018 18:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13572,29/08/2018 18:38,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13573,29/08/2018 18:35,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13574,29/08/2018 18:32,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13581,29/08/2018 18:20,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13522,29/08/2018 18:09,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2013-3000,29/08/2018 18:03,9/07/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13532,29/08/2018 18:01,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2013-3001,29/08/2018 17:47,9/07/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2999,29/08/2018 17:41,9/07/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13513,29/08/2018 17:33,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13514,29/08/2018 17:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13515,29/08/2018 17:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13516,29/08/2018 17:24,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13517,29/08/2018 17:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13518,29/08/2018 17:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13519,29/08/2018 17:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13554,29/08/2018 16:48,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13555,29/08/2018 16:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13217,29/08/2018 16:41,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13221,29/08/2018 16:36,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13482,29/08/2018 16:35,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13564,29/08/2018 16:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13563,29/08/2018 16:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13565,29/08/2018 16:32,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13548,29/08/2018 16:32,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13559,29/08/2018 15:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13558,29/08/2018 15:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13557,29/08/2018 15:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13556,29/08/2018 15:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13483,29/08/2018 15:53,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-5853,29/08/2018 15:41,6/07/2018 19:29,4.4,416, Use After Free,nan
CVE-2018-5831,29/08/2018 15:41,6/07/2018 17:29,7.2,416, Use After Free,nan
CVE-2018-5830,29/08/2018 15:40,6/07/2018 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10299,29/08/2018 15:40,23/04/2018 4:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13512,29/08/2018 15:31,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13543,29/08/2018 15:14,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13531,29/08/2018 15:13,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13498,29/08/2018 15:11,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13499,29/08/2018 15:01,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13500,29/08/2018 15:00,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13523,29/08/2018 14:48,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13486,29/08/2018 14:48,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13497,29/08/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13501,29/08/2018 14:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13511,29/08/2018 14:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13540,29/08/2018 14:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13505,29/08/2018 14:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13510,29/08/2018 14:36,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13504,29/08/2018 14:36,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13509,29/08/2018 14:35,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13502,29/08/2018 14:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13463,29/08/2018 14:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13534,29/08/2018 14:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13533,29/08/2018 14:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13536,29/08/2018 14:25,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13535,29/08/2018 14:25,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13537,29/08/2018 14:24,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13508,29/08/2018 14:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13507,29/08/2018 14:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13520,29/08/2018 14:17,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13538,29/08/2018 14:10,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13539,29/08/2018 14:09,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13521,29/08/2018 14:04,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-5886,29/08/2018 13:49,6/07/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5873,29/08/2018 13:49,6/07/2018 19:29,6.9,416, Use After Free,nan
CVE-2018-5858,29/08/2018 13:49,6/07/2018 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13524,29/08/2018 13:25,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13530,29/08/2018 13:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13506,29/08/2018 12:55,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1108,29/08/2018 10:29,21/05/2018 21:29,4.3,310, Cryptographic Issues,nan
CVE-2018-1093,29/08/2018 10:29,2/04/2018 3:29,7.1,125, Out-of-bounds Read,nan
CVE-2017-17411,28/08/2018 21:29,21/12/2017 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-16850,28/08/2018 21:29,16/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13525,28/08/2018 19:55,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13526,28/08/2018 19:52,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13527,28/08/2018 19:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13528,28/08/2018 19:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13529,28/08/2018 19:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13030,28/08/2018 18:38,30/06/2018 12:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13037,28/08/2018 18:33,1/07/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13038,28/08/2018 18:14,1/07/2018 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11351,28/08/2018 17:57,7/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12990,28/08/2018 17:54,30/06/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-0499,28/08/2018 17:46,2/07/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13478,28/08/2018 17:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13477,28/08/2018 17:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13474,28/08/2018 17:29,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-8399,28/08/2018 17:29,1/05/2017 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4607,28/08/2018 17:29,31/08/2007 0:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13484,28/08/2018 17:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13481,28/08/2018 17:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13480,28/08/2018 17:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13485,28/08/2018 17:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13471,28/08/2018 17:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13489,28/08/2018 17:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13488,28/08/2018 17:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13487,28/08/2018 17:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13490,28/08/2018 17:22,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13867,28/08/2018 17:20,10/07/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11588,28/08/2018 17:17,25/06/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11589,28/08/2018 17:14,25/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000524,28/08/2018 17:02,26/06/2018 16:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-0611,28/08/2018 16:48,26/06/2018 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-13465,28/08/2018 16:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13462,28/08/2018 16:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000529,28/08/2018 16:30,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13467,28/08/2018 16:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13466,28/08/2018 16:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13464,28/08/2018 16:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13468,28/08/2018 16:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-3748,28/08/2018 16:21,3/07/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3608,28/08/2018 16:19,6/07/2018 19:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-3597,28/08/2018 16:18,6/07/2018 17:29,4.6,20, Improper Input Validation,nan
CVE-2018-3587,28/08/2018 16:17,6/07/2018 19:29,4.6,416, Use After Free,nan
CVE-2018-3586,28/08/2018 16:17,6/07/2018 19:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2018-3577,28/08/2018 16:15,6/07/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13475,28/08/2018 15:56,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13491,28/08/2018 15:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13492,28/08/2018 15:25,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13493,28/08/2018 15:21,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13494,28/08/2018 15:18,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-3564,28/08/2018 15:13,6/07/2018 17:29,4.6,416, Use After Free,nan
CVE-2018-13876,28/08/2018 15:13,10/07/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13445,28/08/2018 15:12,8/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13444,28/08/2018 15:12,8/07/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13433,28/08/2018 15:12,8/07/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13340,28/08/2018 15:06,5/07/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7763,28/08/2018 13:50,3/07/2018 14:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5835,28/08/2018 13:50,6/07/2018 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13328,28/08/2018 13:50,5/07/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12113,28/08/2018 13:49,5/07/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18159,28/08/2018 13:49,6/07/2018 17:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-16816,28/08/2018 13:49,5/07/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2018-8901,28/08/2018 13:48,29/06/2018 15:29,2.1,287, Improper Authentication,nan
CVE-2018-8738,28/08/2018 13:45,5/07/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7787,28/08/2018 13:45,3/07/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-7786,28/08/2018 13:44,3/07/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7777,28/08/2018 13:39,3/07/2018 14:29,6.5,20, Improper Input Validation,nan
CVE-2018-7776,28/08/2018 13:38,3/07/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-7772,28/08/2018 13:38,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7771,28/08/2018 13:35,3/07/2018 14:29,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7764,28/08/2018 13:35,3/07/2018 14:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9260,28/08/2018 13:18,5/07/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13339,28/08/2018 13:00,5/07/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15099,28/08/2018 10:29,22/11/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-15098,28/08/2018 10:29,22/11/2017 17:29,5.5,200, Information Exposure,nan
CVE-2015-3405,28/08/2018 10:29,9/08/2017 16:29,5.0,331, Insufficient Entropy,nan
CVE-2014-9751,28/08/2018 10:29,6/10/2015 1:59,6.8,17, DEPRECATED: Code,nan
CVE-2014-9750,28/08/2018 10:29,6/10/2015 1:59,5.8,20, Improper Input Validation,nan
CVE-2018-13422,27/08/2018 21:07,7/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13423,27/08/2018 20:46,7/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12908,27/08/2018 19:46,27/06/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-5899,27/08/2018 18:32,6/07/2018 17:29,4.6,416, Use After Free,nan
CVE-2018-5898,27/08/2018 18:32,6/07/2018 17:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2018-1000536,27/08/2018 18:19,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5896,27/08/2018 18:14,6/07/2018 17:29,6.6,125, Out-of-bounds Read,nan
CVE-2018-5895,27/08/2018 18:14,6/07/2018 17:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-5893,27/08/2018 18:12,6/07/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5889,27/08/2018 18:10,6/07/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5888,27/08/2018 18:10,6/07/2018 17:29,4.6,125, Out-of-bounds Read,nan
CVE-2018-5887,27/08/2018 18:09,6/07/2018 17:29,4.6,125, Out-of-bounds Read,nan
CVE-2018-5872,27/08/2018 18:08,6/07/2018 19:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5865,27/08/2018 18:08,6/07/2018 19:29,2.1,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-1000521,27/08/2018 18:00,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000525,27/08/2018 17:49,26/06/2018 16:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12602,27/08/2018 17:36,25/06/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12603,27/08/2018 17:34,25/06/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5859,27/08/2018 17:20,6/07/2018 19:29,4.4,416, Use After Free,nan
CVE-2018-5836,27/08/2018 17:20,6/07/2018 17:29,2.1,125, Out-of-bounds Read,nan
CVE-2018-0605,27/08/2018 17:13,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10956,27/08/2018 17:05,25/06/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-3570,27/08/2018 15:33,6/07/2018 19:29,4.6,476, NULL Pointer Dereference,nan
CVE-2018-13410,27/08/2018 15:16,6/07/2018 19:29,7.5,416, Use After Free,nan
CVE-2018-9185,27/08/2018 15:03,5/07/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-13251,27/08/2018 13:50,5/07/2018 14:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-13250,27/08/2018 13:31,5/07/2018 14:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-13031,27/08/2018 13:21,5/07/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12739,27/08/2018 13:20,5/07/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18158,27/08/2018 13:15,6/07/2018 17:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15851,27/08/2018 12:36,6/07/2018 19:29,4.6,200, Information Exposure,nan
CVE-2017-15856,27/08/2018 12:33,6/07/2018 17:29,4.4,415, Double Free,nan
CVE-2017-14893,27/08/2018 12:30,6/07/2018 17:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-14872,27/08/2018 12:27,6/07/2018 17:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-1299,27/08/2018 12:25,3/07/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13224,27/08/2018 12:16,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13210,27/08/2018 12:15,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13209,27/08/2018 12:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13222,27/08/2018 12:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13216,27/08/2018 12:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13218,27/08/2018 11:57,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13220,24/08/2018 18:42,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13219,24/08/2018 18:42,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13215,24/08/2018 17:48,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13214,24/08/2018 17:47,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13204,24/08/2018 17:46,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13201,24/08/2018 17:37,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13196,24/08/2018 17:37,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13128,24/08/2018 17:36,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13127,24/08/2018 17:36,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13326,24/08/2018 17:22,5/07/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13327,24/08/2018 15:32,5/07/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13213,24/08/2018 15:29,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13126,24/08/2018 15:27,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13024,24/08/2018 15:16,29/06/2018 17:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-13010,24/08/2018 15:15,29/06/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12924,24/08/2018 15:09,28/06/2018 11:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-12909,24/08/2018 14:53,27/06/2018 16:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12716,24/08/2018 14:53,25/06/2018 2:29,3.3,200, Information Exposure,nan
CVE-2018-12694,24/08/2018 14:32,23/06/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-12693,24/08/2018 14:32,23/06/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11429,24/08/2018 13:58,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-17317,24/08/2018 13:57,2/07/2018 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-14471,24/08/2018 13:47,20/07/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-13212,24/08/2018 13:46,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13211,24/08/2018 13:46,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13208,24/08/2018 13:46,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13207,24/08/2018 13:46,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13206,24/08/2018 13:42,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13205,24/08/2018 13:41,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13203,24/08/2018 13:38,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13202,24/08/2018 13:38,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13200,24/08/2018 13:36,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13199,24/08/2018 13:36,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13198,24/08/2018 13:35,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13197,24/08/2018 13:35,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-9985,24/08/2018 10:29,28/06/2017 6:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-9984,24/08/2018 10:29,28/06/2017 6:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-8831,24/08/2018 10:29,8/05/2017 6:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-6345,24/08/2018 10:29,1/03/2017 20:59,4.6,20, Improper Input Validation,nan
CVE-2017-5897,24/08/2018 10:29,23/03/2017 16:59,7.5,125, Out-of-bounds Read,nan
CVE-2017-5549,24/08/2018 10:29,6/02/2017 6:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-2584,24/08/2018 10:29,15/01/2017 2:59,3.6,416, Use After Free,nan
CVE-2017-16914,24/08/2018 10:29,31/01/2018 22:29,7.1,476, NULL Pointer Dereference,nan
CVE-2017-16913,24/08/2018 10:29,31/01/2018 22:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16912,24/08/2018 10:29,31/01/2018 22:29,7.1,125, Out-of-bounds Read,nan
CVE-2017-16911,24/08/2018 10:29,31/01/2018 22:29,1.9,200, Information Exposure,nan
CVE-2017-16650,24/08/2018 10:29,7/11/2017 23:29,7.2,369, Divide By Zero,nan
CVE-2017-16645,24/08/2018 10:29,7/11/2017 23:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-16644,24/08/2018 10:29,7/11/2017 23:29,7.2,388, 7PK – Errors,nan
CVE-2017-16643,24/08/2018 10:29,7/11/2017 23:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-16538,24/08/2018 10:29,4/11/2017 1:29,7.2,20, Improper Input Validation,nan
CVE-2017-16537,24/08/2018 10:29,4/11/2017 1:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-16536,24/08/2018 10:29,4/11/2017 1:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-16535,24/08/2018 10:29,4/11/2017 1:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-16533,24/08/2018 10:29,4/11/2017 1:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-16532,24/08/2018 10:29,4/11/2017 1:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-16531,24/08/2018 10:29,4/11/2017 1:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16529,24/08/2018 10:29,4/11/2017 1:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-16527,24/08/2018 10:29,4/11/2017 1:29,7.2,416, Use After Free,nan
CVE-2017-16526,24/08/2018 10:29,4/11/2017 1:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15649,24/08/2018 10:29,19/10/2017 22:29,4.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14991,24/08/2018 10:29,4/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-11473,24/08/2018 10:29,20/07/2017 4:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10208,24/08/2018 10:29,6/02/2017 6:59,4.9,125, Out-of-bounds Read,nan
CVE-2014-5462,23/08/2018 18:29,8/12/2014 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12446,23/08/2018 18:21,20/06/2018 12:29,3.3,287, Improper Authentication,nan
CVE-2018-12445,23/08/2018 18:21,20/06/2018 12:29,3.3,287, Improper Authentication,nan
CVE-2018-12592,23/08/2018 18:13,20/06/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-3753,23/08/2018 17:01,3/07/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-11041,23/08/2018 17:00,25/06/2018 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-12689,23/08/2018 16:56,22/06/2018 20:29,7.5,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2018-1000609,23/08/2018 16:48,26/06/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-1000607,23/08/2018 16:47,26/06/2018 17:29,4.0,20, Improper Input Validation,nan
CVE-2018-1000606,23/08/2018 16:44,26/06/2018 17:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000604,23/08/2018 16:41,26/06/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13129,23/08/2018 16:39,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13228,23/08/2018 16:38,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13227,23/08/2018 16:38,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13225,23/08/2018 16:38,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13132,23/08/2018 16:38,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13131,23/08/2018 16:38,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13130,23/08/2018 16:38,4/07/2018 0:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000538,23/08/2018 16:38,26/06/2018 16:29,5.0,774, Allocation of File Descriptors or Handles Without Limits or Throttling,nan
CVE-2018-13229,23/08/2018 16:37,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13231,23/08/2018 16:36,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13230,23/08/2018 16:36,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000533,23/08/2018 16:36,26/06/2018 16:29,7.5,20, Improper Input Validation,nan
CVE-2018-13233,23/08/2018 16:34,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13232,23/08/2018 16:34,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13113,23/08/2018 16:34,3/07/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13145,23/08/2018 16:33,4/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13144,23/08/2018 16:33,4/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-1000520,23/08/2018 16:33,26/06/2018 16:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-13146,23/08/2018 16:32,4/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13073,23/08/2018 16:32,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13072,23/08/2018 16:32,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13071,23/08/2018 16:32,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13070,23/08/2018 16:32,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13069,23/08/2018 16:32,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13068,23/08/2018 16:32,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13081,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13080,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13079,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13078,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13077,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13076,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13075,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13074,23/08/2018 16:31,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13088,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13087,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13086,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13085,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13084,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13083,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13082,23/08/2018 16:30,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13091,23/08/2018 16:29,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13090,23/08/2018 16:29,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13089,23/08/2018 16:29,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13092,23/08/2018 16:28,3/07/2018 1:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13041,23/08/2018 16:25,1/07/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-12532,23/08/2018 15:23,18/06/2018 12:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12557,23/08/2018 15:22,19/06/2018 5:29,5.0,200, Information Exposure,nan
CVE-2018-11537,23/08/2018 14:17,19/06/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-3752,23/08/2018 13:13,3/07/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-3750,23/08/2018 13:12,3/07/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-3749,23/08/2018 13:12,3/07/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-13409,23/08/2018 13:07,6/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13408,23/08/2018 13:07,6/07/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13407,23/08/2018 13:04,6/07/2018 17:29,5.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-13116,23/08/2018 13:02,3/07/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1675,23/08/2018 12:51,8/05/2012 22:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-12331,23/08/2018 12:49,17/06/2018 16:29,5.8,287, Improper Authentication,nan
CVE-2017-16859,23/08/2018 11:38,28/06/2018 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9312,23/08/2018 11:36,25/06/2018 15:29,7.8,20, Improper Input Validation,nan
CVE-2018-14443,23/08/2018 10:42,20/07/2018 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7773,23/08/2018 10:17,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12435,22/08/2018 19:57,15/06/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-8819,22/08/2018 19:24,14/06/2018 20:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2013-0662,22/08/2018 10:29,1/04/2014 6:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8030,21/08/2018 22:09,20/06/2018 1:29,5.0,20, Improper Input Validation,nan
CVE-2018-7774,21/08/2018 17:01,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7769,21/08/2018 17:01,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7767,21/08/2018 17:01,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7768,21/08/2018 17:00,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7766,21/08/2018 17:00,3/07/2018 14:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-13040,21/08/2018 15:58,1/07/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12633,21/08/2018 15:42,22/06/2018 0:29,6.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-12713,21/08/2018 15:41,24/06/2018 22:29,6.4,20, Improper Input Validation,nan
CVE-2016-10723,21/08/2018 15:31,21/06/2018 13:29,4.9,399, Resource Management Errors,nan
CVE-2018-8802,21/08/2018 13:25,26/03/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0575,21/08/2018 12:37,26/06/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-0574,21/08/2018 12:37,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0571,21/08/2018 12:37,26/06/2018 14:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-0570,21/08/2018 12:36,26/06/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0569,21/08/2018 12:36,26/06/2018 14:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12714,21/08/2018 12:16,24/06/2018 23:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-13011,21/08/2018 12:14,29/06/2018 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13009,21/08/2018 12:14,29/06/2018 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13008,21/08/2018 12:14,29/06/2018 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13007,21/08/2018 12:10,29/06/2018 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-13003,21/08/2018 12:08,29/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12973,21/08/2018 12:08,29/06/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12928,21/08/2018 11:55,28/06/2018 14:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-13021,21/08/2018 11:42,29/06/2018 17:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1000534,21/08/2018 11:41,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000513,21/08/2018 11:41,26/06/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0584,21/08/2018 11:32,26/06/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-1059,21/08/2018 10:29,24/04/2018 18:29,2.9,200, Information Exposure,nan
CVE-2013-0657,21/08/2018 10:29,21/01/2013 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10658,20/08/2018 19:27,26/06/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10663,20/08/2018 16:01,26/06/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-10664,20/08/2018 15:56,26/06/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10659,20/08/2018 15:50,26/06/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000540,20/08/2018 15:49,26/06/2018 16:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000514,20/08/2018 15:49,26/06/2018 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000512,20/08/2018 15:48,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000508,20/08/2018 15:48,26/06/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12712,20/08/2018 15:47,26/06/2018 19:29,6.5,20, Improper Input Validation,nan
CVE-2018-1000515,20/08/2018 15:47,26/06/2018 16:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12895,20/08/2018 15:44,26/06/2018 20:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12902,20/08/2018 15:43,26/06/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-14524,20/08/2018 15:42,23/07/2018 8:29,4.3,415, Double Free,nan
CVE-2018-12912,20/08/2018 15:35,27/06/2018 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12905,20/08/2018 15:35,27/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12711,20/08/2018 13:48,26/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12589,20/08/2018 13:46,28/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-1000558,20/08/2018 13:42,26/06/2018 16:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000557,20/08/2018 13:34,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000556,20/08/2018 12:56,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000549,20/08/2018 12:55,26/06/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-1000548,20/08/2018 12:55,26/06/2018 16:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000546,20/08/2018 12:38,26/06/2018 16:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000543,20/08/2018 12:37,26/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000542,20/08/2018 12:28,26/06/2018 16:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1351,20/08/2018 12:07,28/06/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13002,20/08/2018 12:00,29/06/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13001,20/08/2018 11:58,29/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13000,20/08/2018 11:57,29/06/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12999,20/08/2018 11:56,29/06/2018 12:29,6.4,20, Improper Input Validation,nan
CVE-2018-12998,20/08/2018 11:56,29/06/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12997,20/08/2018 11:56,29/06/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-12996,20/08/2018 11:51,29/06/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12995,20/08/2018 11:50,29/06/2018 12:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12994,20/08/2018 11:49,29/06/2018 12:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12992,20/08/2018 11:48,29/06/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12988,20/08/2018 11:47,29/06/2018 5:29,5.0,20, Improper Input Validation,nan
CVE-2018-12984,20/08/2018 11:46,29/06/2018 5:29,7.5,287, Improper Authentication,nan
CVE-2018-12982,20/08/2018 11:42,29/06/2018 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12971,20/08/2018 11:36,29/06/2018 5:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12919,20/08/2018 11:34,27/06/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12914,20/08/2018 11:33,27/06/2018 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-9774,18/08/2018 10:29,21/06/2017 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-9773,18/08/2018 10:29,21/06/2017 18:29,4.3,20, Improper Input Validation,nan
CVE-2017-14650,18/08/2018 10:29,21/09/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-16837,17/08/2018 18:29,16/11/2017 2:29,4.6,20, Improper Input Validation,nan
CVE-2018-13161,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13160,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13159,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13158,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13157,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13156,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13155,17/08/2018 18:13,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13172,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13171,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13168,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13167,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13166,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13165,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13164,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13163,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13162,17/08/2018 18:12,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13175,17/08/2018 18:11,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13174,17/08/2018 18:11,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13173,17/08/2018 18:11,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-0612,17/08/2018 17:23,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0609,17/08/2018 17:23,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0599,17/08/2018 17:23,26/06/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-0608,17/08/2018 17:22,26/06/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0606,17/08/2018 17:22,26/06/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0598,17/08/2018 17:21,26/06/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-0600,17/08/2018 17:19,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0601,17/08/2018 17:17,26/06/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-0602,17/08/2018 17:13,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0603,17/08/2018 17:12,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0596,17/08/2018 17:12,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0595,17/08/2018 17:11,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0594,17/08/2018 17:07,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0593,17/08/2018 17:07,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0592,17/08/2018 17:07,26/06/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2018-12933,17/08/2018 17:06,28/06/2018 14:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-12932,17/08/2018 17:06,28/06/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12916,17/08/2018 17:05,27/06/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12918,17/08/2018 17:04,27/06/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000602,17/08/2018 17:04,26/06/2018 17:29,4.3,384, Session Fixation,nan
CVE-2018-1000601,17/08/2018 17:02,26/06/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-1000554,17/08/2018 16:57,26/06/2018 16:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-1000553,17/08/2018 16:57,26/06/2018 16:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000552,17/08/2018 16:55,26/06/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7246,17/08/2018 10:29,23/03/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7245,17/08/2018 10:29,23/03/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7244,17/08/2018 10:29,23/03/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7186,17/08/2018 10:29,20/03/2017 0:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6004,17/08/2018 10:29,16/02/2017 11:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-16740,16/08/2018 20:29,9/01/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13189,15/08/2018 19:09,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13188,15/08/2018 19:09,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13186,15/08/2018 19:09,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13185,15/08/2018 19:09,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13182,15/08/2018 19:09,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13193,15/08/2018 19:08,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13192,15/08/2018 19:08,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13190,15/08/2018 19:08,5/07/2018 2:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-8046,15/08/2018 10:29,4/01/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2016-9318,15/08/2018 10:29,16/11/2016 0:59,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-12526,14/08/2018 17:46,21/06/2018 15:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-12454,14/08/2018 17:44,17/06/2018 12:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2018-12453,14/08/2018 17:37,16/06/2018 17:29,5.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-12323,14/08/2018 16:58,13/06/2018 16:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-5718,14/08/2018 16:50,12/06/2018 16:29,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5153,14/08/2018 16:32,11/06/2018 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5147,14/08/2018 16:31,11/06/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-5136,14/08/2018 16:30,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-12696,14/08/2018 16:02,23/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12695,14/08/2018 15:54,23/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10969,14/08/2018 14:38,17/06/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11221,14/08/2018 14:34,16/06/2018 1:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11222,14/08/2018 14:33,16/06/2018 1:29,5.0,20, Improper Input Validation,nan
CVE-2018-10377,14/08/2018 14:26,17/06/2018 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-10997,14/08/2018 14:02,17/06/2018 17:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1153,14/08/2018 13:43,18/06/2018 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2015-4043,14/08/2018 13:38,19/06/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11525,14/08/2018 13:30,19/06/2018 19:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-11526,14/08/2018 13:29,19/06/2018 19:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-7760,14/08/2018 12:46,11/06/2018 21:29,4.6,417, Channel and Path Errors,nan
CVE-2017-5395,14/08/2018 12:46,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-7763,14/08/2018 12:40,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-5710,13/08/2018 21:48,16/01/2018 9:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-14006,13/08/2018 21:48,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14005,13/08/2018 21:48,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14004,13/08/2018 21:48,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14002,13/08/2018 21:48,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13836,13/08/2018 21:48,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-6350,13/08/2018 21:47,27/02/2017 7:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-6349,13/08/2018 21:47,27/02/2017 7:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-17555,13/08/2018 21:47,12/12/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17554,13/08/2018 21:47,12/12/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17482,13/08/2018 21:47,7/02/2018 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15328,13/08/2018 21:47,22/12/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-12969,13/08/2018 21:47,10/11/2017 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11185,13/08/2018 21:47,18/08/2017 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-10991,13/08/2018 21:47,7/07/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000098,13/08/2018 21:47,5/10/2017 1:29,5.0,769, DEPRECATED: Uncontrolled File Descriptor Consumption,nan
CVE-2017-1000097,13/08/2018 21:47,5/10/2017 1:29,5.0,295, Improper Certificate Validation,nan
CVE-2016-9755,13/08/2018 21:47,28/12/2016 7:59,4.6,787, Out-of-bounds Write,nan
CVE-2016-9555,13/08/2018 21:47,28/11/2016 3:59,10.0,125, Out-of-bounds Read,nan
CVE-2016-3958,13/08/2018 21:47,23/05/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-8970,13/08/2018 21:47,28/11/2016 3:59,4.9,476, NULL Pointer Dereference,nan
CVE-2015-8023,13/08/2018 21:47,18/11/2015 16:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7565,13/08/2018 21:47,13/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7265,13/08/2018 21:47,10/04/2017 3:59,5.0,284, Improper Access Control,nan
CVE-2015-7264,13/08/2018 21:47,10/04/2017 3:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-7263,13/08/2018 21:47,10/04/2017 3:59,5.0,284, Improper Access Control,nan
CVE-2015-4335,13/08/2018 21:47,9/06/2015 14:59,10.0,17, DEPRECATED: Code,nan
CVE-2015-4017,13/08/2018 21:47,25/08/2017 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2015-3991,13/08/2018 21:47,7/09/2017 20:29,7.5,19, Data Processing Errors,nan
CVE-2015-3631,13/08/2018 21:47,18/05/2015 15:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-3630,13/08/2018 21:47,18/05/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3629,13/08/2018 21:47,18/05/2015 15:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-3627,13/08/2018 21:47,18/05/2015 15:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-3220,13/08/2018 21:47,13/06/2017 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3155,13/08/2018 21:47,14/08/2015 18:59,5.0,284, Improper Access Control,nan
CVE-2015-1844,13/08/2018 21:47,14/08/2015 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1816,13/08/2018 21:47,14/08/2015 18:59,5.0,310, Cryptographic Issues,nan
CVE-2015-0278,13/08/2018 21:47,18/05/2015 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9727,13/08/2018 21:47,29/05/2015 15:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-9649,13/08/2018 21:47,27/01/2015 20:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9494,13/08/2018 21:47,20/01/2015 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9490,13/08/2018 21:47,20/01/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2014-7921,13/08/2018 21:47,13/04/2017 16:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7920,13/08/2018 21:47,13/04/2017 16:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7189,13/08/2018 21:47,7/10/2014 14:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-5277,13/08/2018 21:47,17/11/2014 16:59,5.0,17, DEPRECATED: Code,nan
CVE-2014-3691,13/08/2018 21:47,9/03/2015 14:59,7.5,310, Cryptographic Issues,nan
CVE-2014-1671,13/08/2018 21:47,26/01/2014 1:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0046,13/08/2018 21:47,27/02/2014 15:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0013,13/08/2018 21:47,15/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6043,13/08/2018 21:47,27/12/2014 18:59,5.0,200, Information Exposure,nan
CVE-2013-6042,13/08/2018 21:47,19/11/2013 4:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6041,13/08/2018 21:47,27/12/2014 18:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-5979,13/08/2018 21:47,2/10/2013 22:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5977,13/08/2018 21:47,1/11/2013 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5968,13/08/2018 21:47,29/10/2013 3:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5663,13/08/2018 21:47,31/08/2013 17:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4450,13/08/2018 21:47,21/10/2013 17:55,5.0,20, Improper Input Validation,nan
CVE-2013-4386,13/08/2018 21:47,20/11/2013 14:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4073,13/08/2018 21:47,18/08/2013 2:52,6.8,310, Cryptographic Issues,nan
CVE-2013-3667,13/08/2018 21:47,31/12/2013 20:55,6.4,20, Improper Input Validation,nan
CVE-2013-2944,13/08/2018 21:47,2/05/2013 14:55,4.9,287, Improper Authentication,nan
CVE-2013-2885,13/08/2018 21:47,31/07/2013 13:20,7.5,399, Resource Management Errors,nan
CVE-2013-2630,13/08/2018 21:47,31/07/2013 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2279,13/08/2018 21:47,21/03/2013 17:55,7.5,20, Improper Input Validation,nan
CVE-2013-2121,13/08/2018 21:47,31/07/2013 13:20,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2113,13/08/2018 21:47,31/07/2013 13:20,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1756,13/08/2018 21:47,9/06/2014 19:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0262,13/08/2018 21:47,8/02/2013 20:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0183,13/08/2018 21:47,1/03/2013 5:40,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0175,13/08/2018 21:47,25/04/2013 23:55,7.5,20, Improper Input Validation,nan
CVE-2012-4751,13/08/2018 21:47,22/10/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4745,13/08/2018 21:47,31/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4600,13/08/2018 21:47,31/08/2012 14:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4505,13/08/2018 21:47,11/11/2012 13:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4504,13/08/2018 21:47,11/11/2012 13:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4341,13/08/2018 21:47,15/08/2012 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4052,13/08/2018 21:47,20/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3356,13/08/2018 21:47,22/07/2012 16:55,5.0,287, Improper Authentication,nan
CVE-2012-3268,13/08/2018 21:47,1/02/2013 11:49,8.5,200, Information Exposure,nan
CVE-2012-2972,13/08/2018 21:47,20/10/2012 10:41,5.0,20, Improper Input Validation,nan
CVE-2012-2971,13/08/2018 21:47,20/10/2012 10:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0692,13/08/2018 21:47,2/10/2012 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0691,13/08/2018 21:47,2/10/2012 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4104,13/08/2018 21:47,27/10/2014 1:55,7.5,20, Improper Input Validation,nan
CVE-2011-2939,13/08/2018 21:47,13/01/2012 18:55,5.1,189, Numeric Errors,nan
CVE-2011-2710,13/08/2018 21:47,27/07/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2509,13/08/2018 21:47,27/07/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1562,13/08/2018 21:47,5/04/2011 15:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1482,13/08/2018 21:47,21/06/2011 2:52,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1481,13/08/2018 21:47,21/06/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1480,13/08/2018 21:47,21/06/2011 2:52,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1400,13/08/2018 21:47,25/03/2011 19:55,6.8,16, Configuration,nan
CVE-2011-1055,13/08/2018 21:47,21/02/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0682,13/08/2018 21:47,31/01/2011 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4647,13/08/2018 21:47,13/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4166,13/08/2018 21:47,18/01/2011 18:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3712,13/08/2018 21:47,28/10/2010 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1649,13/08/2018 21:47,8/06/2010 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1355,13/08/2018 21:47,13/04/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0226,13/08/2018 21:47,7/01/2010 19:30,4.6,255, Credentials Management,nan
CVE-2010-0225,13/08/2018 21:47,7/01/2010 19:30,4.6,310, Cryptographic Issues,nan
CVE-2010-0224,13/08/2018 21:47,7/01/2010 19:30,4.6,255, Credentials Management,nan
CVE-2010-0223,13/08/2018 21:47,7/01/2010 19:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-0222,13/08/2018 21:47,7/01/2010 19:30,4.6,310, Cryptographic Issues,nan
CVE-2010-0221,13/08/2018 21:47,7/01/2010 19:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-0004,13/08/2018 21:47,29/01/2010 18:30,5.0,200, Information Exposure,nan
CVE-2009-5030,13/08/2018 21:47,18/07/2012 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5024,13/08/2018 21:47,23/05/2011 22:55,5.0,399, Resource Management Errors,nan
CVE-2009-4510,13/08/2018 21:47,13/04/2010 17:30,8.5,310, Cryptographic Issues,nan
CVE-2009-3618,13/08/2018 21:47,10/11/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2947,13/08/2018 21:47,14/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1639,13/08/2018 21:47,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0894,13/08/2018 21:47,2/06/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0893,13/08/2018 21:47,2/06/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0490,13/08/2018 21:47,10/02/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6048,13/08/2018 21:47,4/02/2009 15:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1606,13/08/2018 21:47,1/04/2008 16:44,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-6772,13/08/2018 21:47,27/12/2006 23:28,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2006-2920,13/08/2018 21:47,9/06/2006 1:02,2.6,20, Improper Input Validation,nan
CVE-1999-0987,13/08/2018 21:47,18/11/1999 5:00,10.0,287, Improper Authentication,nan
CVE-1999-0945,13/08/2018 21:47,12/03/2001 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-1999-0876,13/08/2018 21:47,4/01/2000 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-1999-0348,13/08/2018 21:47,27/01/1999 5:00,5.0,200, Information Exposure,nan
CVE-2017-7764,13/08/2018 19:37,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-12678,13/08/2018 18:58,22/06/2018 18:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-12636,13/08/2018 18:58,22/06/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000201,13/08/2018 18:55,22/06/2018 18:29,6.8,426, Untrusted Search Path,nan
CVE-2017-7568,13/08/2018 18:53,22/06/2018 15:29,3.5,200, Information Exposure,nan
CVE-2017-17173,13/08/2018 18:47,14/06/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2017-7778,13/08/2018 17:14,11/06/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-1254,13/08/2018 16:50,21/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12531,13/08/2018 15:10,18/06/2018 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12578,13/08/2018 15:06,19/06/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12591,13/08/2018 15:04,20/06/2018 12:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-12519,13/08/2018 14:27,19/06/2018 21:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6210,13/08/2018 14:24,19/06/2018 19:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-7770,13/08/2018 13:26,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-7768,13/08/2018 13:18,11/06/2018 21:29,2.1,200, Information Exposure,nan
CVE-2017-17309,13/08/2018 11:46,14/06/2018 14:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3411,13/08/2018 1:29,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1047,12/08/2018 1:29,12/10/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2018-6213,11/08/2018 17:55,20/06/2018 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-6211,11/08/2018 17:54,20/06/2018 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-5488,11/08/2018 17:54,13/06/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-5236,11/08/2018 15:29,20/06/2018 16:29,3.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-12594,11/08/2018 15:29,20/06/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-12292,11/08/2018 15:29,13/06/2018 14:29,7.5,416, Use After Free,nan
CVE-2018-13447,11/08/2018 14:48,8/07/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12580,11/08/2018 14:46,19/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12588,11/08/2018 14:44,19/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12073,11/08/2018 14:44,17/06/2018 20:29,2.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12104,11/08/2018 14:42,17/06/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6212,11/08/2018 14:41,20/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7669,11/08/2018 1:29,27/04/2018 16:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12590,10/08/2018 18:05,20/06/2018 12:29,9.0,134, Use of Externally-Controlled Format String,nan
CVE-2018-12562,10/08/2018 18:05,19/06/2018 5:29,7.5,20, Improper Input Validation,nan
CVE-2018-12271,10/08/2018 16:57,13/06/2018 23:29,6.9,287, Improper Authentication,nan
CVE-2018-12337,10/08/2018 15:11,17/06/2018 16:29,2.1,200, Information Exposure,nan
CVE-2018-12336,10/08/2018 15:10,17/06/2018 16:29,10.0,200, Information Exposure,nan
CVE-2018-12561,10/08/2018 15:06,19/06/2018 5:29,6.5,20, Improper Input Validation,nan
CVE-2018-12560,10/08/2018 15:06,19/06/2018 5:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12559,10/08/2018 15:06,19/06/2018 5:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12564,10/08/2018 15:04,19/06/2018 5:29,4.0,20, Improper Input Validation,nan
CVE-2018-12563,10/08/2018 15:04,19/06/2018 5:29,4.0,20, Improper Input Validation,nan
CVE-2018-5137,10/08/2018 14:35,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2014-3413,10/08/2018 14:34,5/04/2018 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-12530,10/08/2018 14:20,18/06/2018 14:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10945,10/08/2018 14:18,19/06/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-13072,10/08/2018 14:11,21/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9027,10/08/2018 14:07,18/06/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12635,10/08/2018 14:05,22/06/2018 0:29,5.0,20, Improper Input Validation,nan
CVE-2018-13448,10/08/2018 13:59,8/07/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9036,10/08/2018 13:57,20/06/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12604,10/08/2018 13:55,20/06/2018 19:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-10407,10/08/2018 13:52,13/06/2018 22:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-12421,10/08/2018 13:49,14/06/2018 19:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-7683,10/08/2018 13:48,21/06/2018 19:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-12688,10/08/2018 13:48,22/06/2018 19:29,7.5,20, Improper Input Validation,nan
CVE-2018-7682,10/08/2018 13:46,22/06/2018 22:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-7681,10/08/2018 13:44,21/06/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7680,10/08/2018 13:44,21/06/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7679,10/08/2018 13:43,21/06/2018 19:29,7.5,20, Improper Input Validation,nan
CVE-2018-12684,10/08/2018 13:26,22/06/2018 19:29,5.8,200, Information Exposure,nan
CVE-2018-12632,10/08/2018 13:25,21/06/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-12631,10/08/2018 13:25,21/06/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12630,10/08/2018 13:24,21/06/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12581,10/08/2018 13:18,21/06/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12071,10/08/2018 12:47,17/06/2018 20:29,7.5,384, Session Fixation,nan
CVE-2018-10363,9/08/2018 18:45,13/06/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-12329,9/08/2018 18:44,17/06/2018 16:29,4.3,200, Information Exposure,nan
CVE-2016-6639,9/08/2018 18:39,18/09/2016 2:59,5.0,254, 7PK – Security Features,nan
CVE-2017-5425,9/08/2018 18:35,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2015-4664,9/08/2018 18:35,18/06/2018 18:29,7.5,20, Improper Input Validation,nan
CVE-2017-5453,9/08/2018 18:14,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-5452,9/08/2018 18:12,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-7796,9/08/2018 18:11,11/06/2018 21:29,3.3,20, Improper Input Validation,nan
CVE-2017-7788,9/08/2018 18:11,11/06/2018 21:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-5463,9/08/2018 18:11,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-0110,9/08/2018 16:41,17/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0957,9/08/2018 16:40,12/04/2018 1:29,1.9,200, Information Exposure,nan
CVE-2018-0956,9/08/2018 16:40,12/04/2018 1:29,7.8,20, Improper Input Validation,nan
CVE-2017-18250,9/08/2018 16:40,27/03/2018 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-12109,9/08/2018 16:39,11/06/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9902,9/08/2018 16:39,11/06/2018 21:29,5.0,346, Origin Validation Error,nan
CVE-2018-5091,9/08/2018 16:29,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7845,9/08/2018 16:27,11/06/2018 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7824,9/08/2018 16:25,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7823,9/08/2018 16:24,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7819,9/08/2018 16:23,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7818,9/08/2018 16:17,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7798,9/08/2018 16:16,11/06/2018 21:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7793,9/08/2018 16:14,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5466,9/08/2018 15:51,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5454,9/08/2018 15:34,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-5451,9/08/2018 15:34,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-5449,9/08/2018 15:33,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5448,9/08/2018 15:30,11/06/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-5430,9/08/2018 15:28,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5428,9/08/2018 15:27,11/06/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-9905,9/08/2018 15:14,11/06/2018 21:29,6.8,284, Improper Access Control,nan
CVE-2016-9079,9/08/2018 15:12,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2016-9074,9/08/2018 15:12,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2017-5471,9/08/2018 14:37,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5148,9/08/2018 14:26,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7808,9/08/2018 13:42,11/06/2018 21:29,5.0,346, Origin Validation Error,nan
CVE-2017-7799,9/08/2018 13:42,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7848,9/08/2018 13:41,11/06/2018 21:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0527,9/08/2018 13:38,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0528,9/08/2018 13:25,26/06/2018 14:29,4.0,287, Improper Authentication,nan
CVE-2018-10821,9/08/2018 13:23,14/06/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11647,9/08/2018 13:22,17/06/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12422,9/08/2018 11:29,15/06/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12420,9/08/2018 11:29,14/06/2018 21:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-12582,9/08/2018 11:28,19/06/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12438,9/08/2018 11:28,15/06/2018 2:29,1.9,320, Key Management Errors,nan
CVE-2018-12437,9/08/2018 11:28,15/06/2018 2:29,1.9,320, Key Management Errors,nan
CVE-2018-12433,9/08/2018 11:28,15/06/2018 2:29,1.9,320, Key Management Errors,nan
CVE-2018-12583,9/08/2018 11:08,19/06/2018 18:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12600,9/08/2018 11:05,20/06/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-12599,9/08/2018 11:05,20/06/2018 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9029,9/08/2018 11:03,18/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9028,9/08/2018 11:03,18/06/2018 18:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-9026,9/08/2018 11:02,18/06/2018 18:29,5.0,384, Session Fixation,nan
CVE-2018-9025,9/08/2018 11:01,18/06/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-9024,9/08/2018 10:57,18/06/2018 18:29,5.0,287, Improper Authentication,nan
CVE-2018-9023,9/08/2018 10:56,18/06/2018 18:29,9.0,20, Improper Input Validation,nan
CVE-2018-8727,9/08/2018 10:47,19/06/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6278,9/08/2018 1:29,30/09/2014 10:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-6277,9/08/2018 1:29,27/09/2014 22:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-0166,9/08/2018 1:29,8/02/2013 19:55,5.0,310, Cryptographic Issues,nan
CVE-2012-2686,9/08/2018 1:29,8/02/2013 19:55,5.0,310, Cryptographic Issues,nan
CVE-2018-5138,8/08/2018 18:36,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-5134,8/08/2018 18:35,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-0557,8/08/2018 18:35,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12229,8/08/2018 18:32,12/06/2018 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0559,8/08/2018 18:28,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0558,8/08/2018 18:28,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0565,8/08/2018 18:16,26/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0529,8/08/2018 18:06,26/06/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-0526,8/08/2018 18:03,26/06/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-0964,8/08/2018 17:38,12/04/2018 1:29,1.9,200, Information Exposure,nan
CVE-2018-11725,8/08/2018 15:18,19/06/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-12658,8/08/2018 15:14,22/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12654,8/08/2018 15:14,22/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12659,8/08/2018 15:13,22/06/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12534,8/08/2018 15:13,18/06/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11726,8/08/2018 15:08,19/06/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17443,8/08/2018 14:49,13/06/2018 18:29,4.0,20, Improper Input Validation,nan
CVE-2017-7755,8/08/2018 14:47,11/06/2018 21:29,6.8,426, Untrusted Search Path,nan
CVE-2017-7757,8/08/2018 14:45,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7756,8/08/2018 14:44,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-15047,8/08/2018 14:44,6/10/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9077,8/08/2018 14:44,11/06/2018 21:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-9076,8/08/2018 14:43,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-9075,8/08/2018 14:42,11/06/2018 21:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8339,8/08/2018 14:22,28/10/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10517,8/08/2018 14:22,24/10/2017 18:29,4.3,254, 7PK – Security Features,nan
CVE-2015-8080,8/08/2018 13:52,13/04/2016 15:59,5.0,189, Numeric Errors,nan
CVE-2013-7458,8/08/2018 13:49,10/08/2016 14:59,2.1,200, Information Exposure,nan
CVE-2007-4829,8/08/2018 13:48,2/11/2007 16:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5469,7/08/2018 18:44,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5465,7/08/2018 18:44,11/06/2018 21:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-5464,7/08/2018 18:43,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12657,7/08/2018 18:22,22/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12656,7/08/2018 18:21,22/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12655,7/08/2018 18:21,22/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5460,7/08/2018 18:21,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5459,7/08/2018 18:20,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5447,7/08/2018 18:19,11/06/2018 21:29,6.4,416, Use After Free,nan
CVE-2017-5446,7/08/2018 18:19,11/06/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-5445,7/08/2018 18:18,11/06/2018 21:29,5.0,129, Improper Validation of Array Index,nan
CVE-2017-5444,7/08/2018 18:17,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5443,7/08/2018 18:17,11/06/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-5442,7/08/2018 18:16,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5427,7/08/2018 18:06,11/06/2018 21:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-5441,7/08/2018 18:05,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5440,7/08/2018 18:04,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5439,7/08/2018 18:03,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5438,7/08/2018 18:02,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5436,7/08/2018 18:01,11/06/2018 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-5435,7/08/2018 18:01,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5434,7/08/2018 18:00,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5433,7/08/2018 17:58,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5432,7/08/2018 17:56,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5429,7/08/2018 17:53,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5420,7/08/2018 17:51,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-5418,7/08/2018 17:50,11/06/2018 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-5413,7/08/2018 17:46,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5412,7/08/2018 17:45,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5403,7/08/2018 17:42,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5394,7/08/2018 17:38,11/06/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5393,7/08/2018 17:30,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5392,7/08/2018 17:30,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5389,7/08/2018 16:53,11/06/2018 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-9080,7/08/2018 16:52,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12070,7/08/2018 16:50,14/06/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2017-5384,7/08/2018 16:47,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-5132,7/08/2018 16:39,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2017-5421,7/08/2018 15:09,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5382,7/08/2018 15:03,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-5385,7/08/2018 15:01,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-5387,7/08/2018 15:00,11/06/2018 21:29,2.1,538, File and Directory Information Exposure,nan
CVE-2017-5379,7/08/2018 14:55,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2017-5377,7/08/2018 14:52,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5374,7/08/2018 14:50,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11672,7/08/2018 13:22,13/06/2018 18:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-5410,7/08/2018 13:20,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5408,7/08/2018 13:07,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-5404,7/08/2018 13:02,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5402,7/08/2018 13:01,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5401,7/08/2018 13:00,11/06/2018 21:29,7.5,388, 7PK – Errors,nan
CVE-2017-5400,7/08/2018 12:56,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5096,7/08/2018 12:46,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7846,7/08/2018 12:35,11/06/2018 21:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-7847,7/08/2018 12:32,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2017-7829,7/08/2018 12:28,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7780,7/08/2018 12:27,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7759,7/08/2018 12:21,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-5458,7/08/2018 12:20,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5422,7/08/2018 12:17,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5416,7/08/2018 12:08,11/06/2018 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-5415,7/08/2018 11:55,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5406,7/08/2018 11:40,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11808,7/08/2018 1:29,6/06/2018 3:29,10.0,20, Improper Input Validation,nan
CVE-2017-16851,7/08/2018 1:29,16/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16849,7/08/2018 1:29,16/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16847,7/08/2018 1:29,16/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16846,7/08/2018 1:29,16/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16543,7/08/2018 1:29,5/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16542,7/08/2018 1:29,5/11/2017 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9490,7/08/2018 1:29,5/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8277,7/08/2018 1:29,24/02/2016 3:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8244,6/08/2018 19:14,14/06/2018 12:29,4.3,20, Improper Input Validation,nan
CVE-2018-8243,6/08/2018 19:14,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8245,6/08/2018 18:55,14/06/2018 12:29,6.8,20, Improper Input Validation,nan
CVE-2018-8246,6/08/2018 18:49,14/06/2018 12:29,4.3,200, Information Exposure,nan
CVE-2018-8252,6/08/2018 18:10,14/06/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8249,6/08/2018 18:10,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8254,6/08/2018 18:06,14/06/2018 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8267,6/08/2018 18:03,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5128,6/08/2018 17:58,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5126,6/08/2018 17:57,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3582,6/08/2018 17:50,12/06/2018 20:29,4.6,20, Improper Input Validation,nan
CVE-2017-7844,6/08/2018 17:42,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-12440,6/08/2018 16:56,15/06/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-12439,6/08/2018 16:55,15/06/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-12436,6/08/2018 16:55,15/06/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-12434,6/08/2018 16:54,15/06/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-12025,6/08/2018 16:37,11/06/2018 10:29,5.0,20, Improper Input Validation,nan
CVE-2017-7843,6/08/2018 16:35,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-7825,6/08/2018 16:32,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7814,6/08/2018 16:28,11/06/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-7804,6/08/2018 16:27,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-3208,6/08/2018 15:38,11/06/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7164,6/08/2018 14:55,13/06/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-7162,6/08/2018 14:55,13/06/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2018-5863,6/08/2018 14:51,15/06/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5860,6/08/2018 14:45,15/06/2018 20:29,4.9,824, Access of Uninitialized Pointer,nan
CVE-2018-5857,6/08/2018 14:43,15/06/2018 15:29,4.6,416, Use After Free,nan
CVE-2018-5854,6/08/2018 13:32,15/06/2018 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000112,6/08/2018 1:29,5/10/2017 1:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2403,6/08/2018 1:29,7/02/2017 17:59,7.5,287, Improper Authentication,nan
CVE-2017-6335,4/08/2018 1:29,14/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5239,4/08/2018 1:29,15/03/2017 19:59,7.5,284, Improper Access Control,nan
CVE-2018-5847,3/08/2018 18:43,12/06/2018 20:29,4.6,416, Use After Free,nan
CVE-2018-5851,3/08/2018 18:39,12/06/2018 20:29,4.6,129, Improper Validation of Array Index,nan
CVE-2018-5844,3/08/2018 18:38,12/06/2018 20:29,4.6,416, Use After Free,nan
CVE-2018-5843,3/08/2018 18:38,12/06/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5849,3/08/2018 18:37,12/06/2018 20:29,4.4,416, Use After Free,nan
CVE-2018-5842,3/08/2018 18:34,12/06/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5151,3/08/2018 18:33,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5755,3/08/2018 18:28,16/06/2018 1:29,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5753,3/08/2018 18:19,16/06/2018 1:29,4.0,20, Improper Input Validation,nan
CVE-2016-9900,3/08/2018 17:56,11/06/2018 21:29,5.0,254, 7PK – Security Features,nan
CVE-2016-9899,3/08/2018 17:55,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2016-9898,3/08/2018 17:24,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2016-9895,3/08/2018 17:22,11/06/2018 21:29,4.3,254, 7PK – Security Features,nan
CVE-2016-9893,3/08/2018 17:19,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5752,3/08/2018 17:09,16/06/2018 1:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5751,3/08/2018 17:06,16/06/2018 1:29,4.0,200, Information Exposure,nan
CVE-2018-5180,3/08/2018 17:04,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2018-5104,3/08/2018 16:57,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5103,3/08/2018 16:56,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5102,3/08/2018 16:56,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5099,3/08/2018 16:55,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5098,3/08/2018 16:55,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5097,3/08/2018 16:55,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5095,3/08/2018 16:54,11/06/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-5089,3/08/2018 16:53,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1281,3/08/2018 15:53,8/06/2018 19:29,4.0,200, Information Exposure,nan
CVE-2018-5133,3/08/2018 15:52,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-12048,3/08/2018 15:52,8/06/2018 1:29,10.0,287, Improper Authentication,nan
CVE-2018-5182,3/08/2018 15:49,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5181,3/08/2018 15:49,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5177,3/08/2018 15:41,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5176,3/08/2018 15:40,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-7809,3/08/2018 15:26,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7802,3/08/2018 15:14,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7801,3/08/2018 15:14,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7800,3/08/2018 15:13,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7792,3/08/2018 15:12,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7791,3/08/2018 15:11,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7787,3/08/2018 15:10,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-7786,3/08/2018 15:09,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7785,3/08/2018 15:09,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7784,3/08/2018 15:07,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7753,3/08/2018 14:54,11/06/2018 21:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-5173,3/08/2018 14:43,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7758,3/08/2018 14:39,11/06/2018 21:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-7754,3/08/2018 14:31,11/06/2018 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-7752,3/08/2018 14:31,11/06/2018 21:29,6.8,416, Use After Free,nan
CVE-2017-7751,3/08/2018 14:28,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5472,3/08/2018 14:24,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7750,3/08/2018 14:22,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-7749,3/08/2018 14:18,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5470,3/08/2018 14:16,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5172,3/08/2018 14:00,11/06/2018 21:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-5167,3/08/2018 13:41,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-5160,3/08/2018 13:40,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12290,3/08/2018 13:37,13/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12114,3/08/2018 13:31,14/06/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11407,3/08/2018 12:45,13/06/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2018-12263,3/08/2018 12:37,13/06/2018 11:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-0986,3/08/2018 12:19,4/04/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17790,3/08/2018 1:29,20/12/2017 9:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-7828,2/08/2018 20:18,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5396,2/08/2018 19:54,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5383,2/08/2018 19:44,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5380,2/08/2018 19:44,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-5378,2/08/2018 19:43,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5754,2/08/2018 19:42,16/06/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5164,2/08/2018 19:40,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11223,2/08/2018 19:39,16/06/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5376,2/08/2018 19:37,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-12432,2/08/2018 19:36,14/06/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12431,2/08/2018 19:36,14/06/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5375,2/08/2018 19:35,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5373,2/08/2018 19:34,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5143,2/08/2018 19:28,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5141,2/08/2018 19:24,11/06/2018 21:29,6.4,20, Improper Input Validation,nan
CVE-2017-5417,2/08/2018 16:25,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5414,2/08/2018 16:22,11/06/2018 21:29,4.9,200, Information Exposure,nan
CVE-2017-5411,2/08/2018 16:21,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2018-3581,2/08/2018 16:04,12/06/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3572,2/08/2018 16:03,12/06/2018 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3576,2/08/2018 16:02,12/06/2018 20:29,4.6,129, Improper Validation of Array Index,nan
CVE-2018-3571,2/08/2018 16:00,12/06/2018 20:29,4.6,416, Use After Free,nan
CVE-2018-12460,2/08/2018 15:10,15/06/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-12458,2/08/2018 15:10,15/06/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-5169,2/08/2018 15:09,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-5140,2/08/2018 15:08,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-12322,2/08/2018 15:05,13/06/2018 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8289,2/08/2018 14:43,11/07/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8235,2/08/2018 14:43,14/06/2018 12:29,4.3,200, Information Exposure,nan
CVE-2018-8325,2/08/2018 14:42,11/07/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8297,2/08/2018 14:42,11/07/2018 0:29,4.3,200, Information Exposure,nan
CVE-2018-8280,2/08/2018 14:42,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8286,2/08/2018 14:41,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8290,2/08/2018 14:40,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12501,2/08/2018 14:30,16/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12447,2/08/2018 14:28,15/06/2018 13:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-12339,2/08/2018 14:28,13/06/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12257,2/08/2018 14:24,12/06/2018 18:29,2.1,295, Improper Certificate Validation,nan
CVE-2018-8294,2/08/2018 14:23,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8229,2/08/2018 14:23,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12459,2/08/2018 14:18,15/06/2018 15:29,4.3,20, Improper Input Validation,nan
CVE-2018-12254,2/08/2018 14:15,12/06/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8227,2/08/2018 14:00,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8234,2/08/2018 13:59,14/06/2018 12:29,4.3,200, Information Exposure,nan
CVE-2018-8125,2/08/2018 13:49,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8274,2/08/2018 13:48,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8262,2/08/2018 13:48,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8275,2/08/2018 13:46,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8301,2/08/2018 13:45,11/07/2018 0:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8236,2/08/2018 13:44,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12273,2/08/2018 13:41,13/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12089,2/08/2018 13:35,11/06/2018 10:29,3.5,200, Information Exposure,nan
CVE-2018-12272,2/08/2018 13:28,13/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12249,2/08/2018 13:10,12/06/2018 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-12321,2/08/2018 13:06,13/06/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-12320,2/08/2018 12:55,13/06/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-6515,2/08/2018 12:52,11/06/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-6514,2/08/2018 12:51,11/06/2018 20:29,6.8,426, Untrusted Search Path,nan
CVE-2016-9775,2/08/2018 1:29,23/03/2017 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9774,2/08/2018 1:29,23/03/2017 16:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5146,2/08/2018 1:29,24/08/2017 20:29,3.5,20, Improper Input Validation,nan
CVE-2017-9467,1/08/2018 20:01,2/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5513,1/08/2018 18:52,1/06/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-5522,1/08/2018 18:51,1/06/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-5521,1/08/2018 18:51,1/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5525,1/08/2018 18:48,1/06/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-11036,1/08/2018 18:39,31/05/2018 12:29,6.4,200, Information Exposure,nan
CVE-2018-7884,1/08/2018 16:11,5/06/2018 21:29,9.3,426, Untrusted Search Path,nan
CVE-2017-12092,1/08/2018 16:09,4/06/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-9246,1/08/2018 16:00,8/06/2018 1:29,7.5,116, Improper Encoding or Escaping of Output,nan
CVE-2018-12094,1/08/2018 15:11,11/06/2018 11:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6512,1/08/2018 15:09,11/06/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-12095,1/08/2018 15:07,11/06/2018 11:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9064,1/08/2018 14:56,11/06/2018 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-9072,1/08/2018 14:20,11/06/2018 21:29,5.0,254, 7PK – Security Features,nan
CVE-2016-9078,1/08/2018 13:53,11/06/2018 21:29,6.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-9070,1/08/2018 13:50,11/06/2018 21:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-9894,1/08/2018 13:47,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9897,1/08/2018 13:46,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9901,1/08/2018 13:43,11/06/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2016-9903,1/08/2018 13:41,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9904,1/08/2018 13:37,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-15842,1/08/2018 13:35,12/06/2018 20:29,4.6,416, Use After Free,nan
CVE-2017-15854,1/08/2018 13:34,12/06/2018 20:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-15843,1/08/2018 13:34,12/06/2018 20:29,4.4,415, Double Free,nan
CVE-2017-18070,1/08/2018 13:33,12/06/2018 20:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-15857,1/08/2018 13:33,12/06/2018 20:29,4.6,129, Improper Validation of Array Index,nan
CVE-2018-12034,1/08/2018 13:29,15/06/2018 16:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-12030,1/08/2018 13:29,15/06/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12035,1/08/2018 13:23,15/06/2018 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-12049,1/08/2018 12:11,8/06/2018 1:29,10.0,287, Improper Authentication,nan
CVE-2018-12247,1/08/2018 12:08,12/06/2018 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-11711,1/08/2018 12:08,4/06/2018 13:29,10.0,287, Improper Authentication,nan
CVE-2018-12102,1/08/2018 12:07,11/06/2018 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7826,1/08/2018 12:06,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0978,1/08/2018 12:05,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7810,1/08/2018 12:05,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5398,1/08/2018 12:05,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7779,1/08/2018 12:04,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5399,1/08/2018 12:04,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14020,1/08/2018 1:29,13/11/2017 20:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2018-11714,31/07/2018 19:47,4/06/2018 14:29,10.0,384, Session Fixation,nan
CVE-2018-3853,31/07/2018 19:41,4/06/2018 20:29,6.8,416, Use After Free,nan
CVE-2018-11554,31/07/2018 19:40,5/06/2018 11:29,7.5,200, Information Exposure,nan
CVE-2018-1265,31/07/2018 19:34,6/06/2018 20:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-5407,31/07/2018 19:03,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-10198,31/07/2018 17:55,6/06/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-11586,31/07/2018 17:54,5/06/2018 21:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-11553,31/07/2018 17:54,6/06/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18286,31/07/2018 17:43,5/06/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9182,31/07/2018 17:38,8/06/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11409,31/07/2018 17:38,8/06/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-10088,31/07/2018 17:38,8/06/2018 12:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16126,31/07/2018 14:43,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-16031,31/07/2018 14:42,4/06/2018 19:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2016-9063,30/07/2018 18:31,11/06/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5287,30/07/2018 18:29,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2016-5288,30/07/2018 18:28,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-12111,30/07/2018 17:52,11/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12108,30/07/2018 17:29,11/06/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2017-7811,30/07/2018 16:56,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7797,30/07/2018 16:51,11/06/2018 21:29,5.0,346, Origin Validation Error,nan
CVE-2017-7806,30/07/2018 15:27,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2017-7783,30/07/2018 15:24,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7762,30/07/2018 15:23,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-5467,30/07/2018 15:00,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5450,30/07/2018 14:54,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2016-9073,30/07/2018 13:57,11/06/2018 21:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9067,30/07/2018 13:56,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2016-9071,30/07/2018 13:26,11/06/2018 21:29,5.0,254, 7PK – Security Features,nan
CVE-2016-9068,30/07/2018 13:26,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2016-9066,30/07/2018 13:22,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9065,30/07/2018 13:17,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2016-9062,30/07/2018 13:04,11/06/2018 21:29,2.1,200, Information Exposure,nan
CVE-2016-9061,30/07/2018 13:00,11/06/2018 21:29,5.0,275, Permission Issues,nan
CVE-2016-5299,30/07/2018 12:59,11/06/2018 21:29,5.0,275, Permission Issues,nan
CVE-2016-5298,30/07/2018 12:58,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-5297,30/07/2018 12:53,11/06/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5296,30/07/2018 12:49,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5295,30/07/2018 12:46,11/06/2018 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-5294,30/07/2018 12:45,11/06/2018 21:29,2.1,20, Improper Input Validation,nan
CVE-2016-5293,30/07/2018 12:44,11/06/2018 21:29,2.1,20, Improper Input Validation,nan
CVE-2016-5292,30/07/2018 12:43,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-5291,30/07/2018 12:40,11/06/2018 21:29,4.9,20, Improper Input Validation,nan
CVE-2016-5290,30/07/2018 12:35,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5289,30/07/2018 12:34,11/06/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0432,30/07/2018 12:31,15/04/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1171,28/07/2018 1:29,19/03/2018 18:29,6.9,20, Improper Input Validation,nan
CVE-2018-11516,28/07/2018 1:29,28/05/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000119,28/07/2018 1:29,7/03/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-1000049,28/07/2018 1:29,9/02/2018 23:29,6.0,20, Improper Input Validation,nan
CVE-2017-17849,28/07/2018 1:29,27/12/2017 17:08,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16995,28/07/2018 1:29,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0785,28/07/2018 1:29,14/09/2017 19:29,3.3,200, Information Exposure,nan
CVE-2015-5996,28/07/2018 1:29,31/12/2015 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3255,28/07/2018 1:29,26/10/2015 19:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3238,28/07/2018 1:29,18/09/2009 10:30,7.8,310, Cryptographic Issues,nan
CVE-2018-12036,27/07/2018 14:49,7/06/2018 18:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12031,27/07/2018 14:49,7/06/2018 16:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000192,27/07/2018 14:49,5/06/2018 21:29,4.0,200, Information Exposure,nan
CVE-2018-10506,27/07/2018 14:48,8/06/2018 14:29,1.9,125, Out-of-bounds Read,nan
CVE-2018-10058,27/07/2018 14:47,5/06/2018 21:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000195,27/07/2018 14:47,5/06/2018 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000194,27/07/2018 14:47,5/06/2018 21:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10057,27/07/2018 14:46,5/06/2018 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12039,27/07/2018 14:29,7/06/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0871,27/07/2018 14:21,14/06/2018 12:29,4.3,200, Information Exposure,nan
CVE-2018-8111,27/07/2018 14:05,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12491,27/07/2018 14:04,15/06/2018 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-12112,27/07/2018 14:04,11/06/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12354,27/07/2018 14:03,13/06/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12492,27/07/2018 13:51,15/06/2018 18:29,6.4,20, Improper Input Validation,nan
CVE-2018-12110,27/07/2018 13:51,11/06/2018 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12046,27/07/2018 13:51,8/06/2018 1:29,5.0,20, Improper Input Validation,nan
CVE-2018-12045,27/07/2018 13:50,8/06/2018 1:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-8110,27/07/2018 13:45,14/06/2018 12:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12498,27/07/2018 13:45,15/06/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6294,27/07/2018 13:38,7/06/2018 19:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-6292,27/07/2018 13:38,7/06/2018 19:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-6290,27/07/2018 13:37,7/06/2018 19:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-17171,27/07/2018 13:36,1/06/2018 14:29,6.3,20, Improper Input Validation,nan
CVE-2016-8390,27/07/2018 13:25,4/06/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-12266,26/07/2018 13:44,13/06/2018 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11521,26/07/2018 1:29,22/07/2017 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-12355,24/07/2018 18:39,13/06/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12353,24/07/2018 18:39,13/06/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1456,24/07/2018 14:42,6/06/2018 17:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-16206,24/07/2018 14:24,7/06/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-18291,24/07/2018 14:00,12/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7479,24/07/2018 13:58,26/02/2018 3:29,5.0,200, Information Exposure,nan
CVE-2017-18290,24/07/2018 13:58,12/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18289,24/07/2018 13:58,12/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18288,24/07/2018 13:57,12/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18287,24/07/2018 13:56,12/06/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3852,23/07/2018 17:25,6/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-12065,23/07/2018 14:44,8/06/2018 12:29,7.5,20, Improper Input Validation,nan
CVE-2018-12041,23/07/2018 14:22,8/06/2018 1:29,5.0,20, Improper Input Validation,nan
CVE-2018-11736,23/07/2018 13:23,5/06/2018 6:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11735,23/07/2018 13:18,5/06/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11722,23/07/2018 13:17,5/06/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5139,21/07/2018 1:29,7/08/2016 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1239,21/07/2018 1:29,18/10/2017 17:29,4.3,415, Double Free,nan
CVE-2011-1782,21/07/2018 1:29,27/07/2011 2:42,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-13662,20/07/2018 18:57,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13667,20/07/2018 18:56,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13666,20/07/2018 18:56,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13665,20/07/2018 18:56,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13664,20/07/2018 18:56,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13663,20/07/2018 18:56,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10532,20/07/2018 17:54,31/05/2018 20:29,10.0,287, Improper Authentication,nan
CVE-2018-8008,20/07/2018 16:11,5/06/2018 19:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11518,20/07/2018 16:10,30/05/2018 20:29,6.8,20, Improper Input Validation,nan
CVE-2018-7943,20/07/2018 16:00,5/06/2018 15:29,6.5,287, Improper Authentication,nan
CVE-2018-6591,20/07/2018 15:45,19/02/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-11678,20/07/2018 15:44,5/06/2018 11:29,5.0,20, Improper Input Validation,nan
CVE-2018-11548,20/07/2018 15:42,29/05/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-11692,20/07/2018 15:28,4/06/2018 6:29,10.0,287, Improper Authentication,nan
CVE-2018-11743,20/07/2018 15:27,5/06/2018 13:29,7.5,824, Access of Uninitialized Pointer,nan
CVE-2018-12066,20/07/2018 15:25,8/06/2018 14:29,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2015-9240,20/07/2018 15:06,29/05/2018 20:29,5.0,255, Credentials Management,nan
CVE-2018-10813,20/07/2018 14:36,5/06/2018 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-10966,20/07/2018 14:35,5/06/2018 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-10751,20/07/2018 14:29,29/05/2018 20:29,5.4,190, Integer Overflow or Wraparound,nan
CVE-2017-16038,19/07/2018 16:38,4/06/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-13674,19/07/2018 15:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13673,19/07/2018 15:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13672,19/07/2018 15:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13671,19/07/2018 15:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13669,19/07/2018 15:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13668,19/07/2018 15:44,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13685,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13684,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13683,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13681,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13680,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13679,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13678,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13677,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13675,19/07/2018 15:43,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13690,19/07/2018 15:42,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13689,19/07/2018 15:42,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13688,19/07/2018 15:42,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13687,19/07/2018 15:42,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13694,19/07/2018 15:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13693,19/07/2018 15:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13692,19/07/2018 15:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13691,19/07/2018 15:41,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13700,19/07/2018 15:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13698,19/07/2018 15:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13697,19/07/2018 15:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13696,19/07/2018 15:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13695,19/07/2018 15:40,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13682,19/07/2018 15:31,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-16198,19/07/2018 15:17,7/06/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6074,19/07/2018 1:29,18/02/2017 21:59,7.2,415, Double Free,nan
CVE-2017-5662,19/07/2018 1:29,18/04/2017 14:59,7.9,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-13218,19/07/2018 1:29,12/01/2018 23:29,4.7,200, Information Exposure,nan
CVE-2016-9878,19/07/2018 1:29,29/12/2016 9:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2176,19/07/2018 1:29,5/05/2016 1:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2109,19/07/2018 1:29,5/05/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-2106,19/07/2018 1:29,5/05/2016 1:59,5.0,189, Numeric Errors,nan
CVE-2015-5351,19/07/2018 1:29,25/02/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5262,19/07/2018 1:29,27/10/2015 16:59,4.3,399, Resource Management Errors,nan
CVE-2015-3416,19/07/2018 1:29,24/04/2015 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3415,19/07/2018 1:29,24/04/2015 17:59,7.5,20, Improper Input Validation,nan
CVE-2015-3414,19/07/2018 1:29,24/04/2015 17:59,7.5,20, Improper Input Validation,nan
CVE-2015-0204,19/07/2018 1:29,9/01/2015 2:59,4.3,310, Cryptographic Issues,nan
CVE-2014-9746,19/07/2018 1:29,7/06/2016 14:06,7.5,20, Improper Input Validation,nan
CVE-2014-2532,19/07/2018 1:29,18/03/2014 5:18,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-13714,18/07/2018 21:24,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13713,18/07/2018 21:24,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13712,18/07/2018 21:24,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13711,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13710,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13708,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13707,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13706,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13705,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13704,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13703,18/07/2018 21:23,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13702,18/07/2018 21:22,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13701,18/07/2018 21:22,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-11715,18/07/2018 20:11,4/06/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000202,18/07/2018 19:51,5/06/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000198,18/07/2018 19:51,5/06/2018 21:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000196,18/07/2018 19:43,5/06/2018 21:29,4.0,200, Information Exposure,nan
CVE-2018-1000190,18/07/2018 19:35,5/06/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-1000188,18/07/2018 19:34,5/06/2018 20:29,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000187,18/07/2018 19:16,5/06/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-1000186,18/07/2018 19:15,5/06/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-1000185,18/07/2018 19:13,5/06/2018 20:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000184,18/07/2018 18:12,5/06/2018 20:29,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000183,18/07/2018 18:11,5/06/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-1000182,18/07/2018 18:06,5/06/2018 20:29,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-3756,18/07/2018 15:26,1/06/2018 19:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-13746,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13745,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13744,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13742,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13741,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13740,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13739,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13738,18/07/2018 14:47,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13737,18/07/2018 14:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13736,18/07/2018 14:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13735,18/07/2018 14:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13734,18/07/2018 14:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13733,18/07/2018 14:46,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13732,18/07/2018 14:45,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13715,18/07/2018 14:45,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13305,18/07/2018 14:35,5/07/2018 17:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-13303,18/07/2018 14:34,5/07/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-13301,18/07/2018 14:31,5/07/2018 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-13716,17/07/2018 19:51,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13717,17/07/2018 19:35,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13731,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13730,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13729,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13728,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13727,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13726,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13725,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13724,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13722,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13721,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13720,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13719,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13718,17/07/2018 19:34,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13748,17/07/2018 19:33,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13747,17/07/2018 19:33,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13754,17/07/2018 19:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13753,17/07/2018 19:28,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13752,17/07/2018 19:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13751,17/07/2018 19:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13750,17/07/2018 19:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13749,17/07/2018 19:27,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13767,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13766,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13765,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13764,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13763,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13762,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13761,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13760,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13759,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13758,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13757,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13756,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13755,17/07/2018 19:16,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13770,17/07/2018 19:15,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13769,17/07/2018 19:15,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13768,17/07/2018 19:15,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13774,17/07/2018 18:50,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13773,17/07/2018 18:50,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13772,17/07/2018 18:50,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13771,17/07/2018 18:39,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13780,17/07/2018 18:37,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13779,17/07/2018 18:37,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13778,17/07/2018 18:37,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13777,17/07/2018 18:37,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13776,17/07/2018 18:37,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13775,17/07/2018 18:37,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-14001,17/07/2018 18:36,12/07/2018 15:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13783,17/07/2018 18:36,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13782,17/07/2018 18:36,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-13781,17/07/2018 18:36,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-7747,17/07/2018 18:08,20/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3809,17/07/2018 18:08,1/06/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-5845,17/07/2018 17:53,6/06/2018 21:29,7.6,416, Use After Free,nan
CVE-2018-12051,17/07/2018 17:50,8/06/2018 11:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3580,17/07/2018 17:49,6/06/2018 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3578,17/07/2018 17:49,6/06/2018 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3565,17/07/2018 17:48,6/06/2018 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3562,17/07/2018 17:46,6/06/2018 21:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-12042,17/07/2018 17:45,7/06/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12052,17/07/2018 17:44,8/06/2018 11:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12053,17/07/2018 17:39,8/06/2018 11:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-12055,17/07/2018 17:24,8/06/2018 11:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-12054,17/07/2018 17:24,8/06/2018 11:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5850,17/07/2018 16:49,6/06/2018 21:29,9.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2018-5846,17/07/2018 16:47,6/06/2018 21:29,9.3,416, Use After Free,nan
CVE-2018-4252,17/07/2018 16:43,8/06/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-4250,17/07/2018 16:43,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4249,17/07/2018 16:40,8/06/2018 18:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2018-4247,17/07/2018 16:32,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4244,17/07/2018 16:18,8/06/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-4243,17/07/2018 16:17,8/06/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4241,17/07/2018 16:12,8/06/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4235,17/07/2018 16:11,8/06/2018 18:29,2.1,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-4239,17/07/2018 16:01,8/06/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-4224,17/07/2018 15:53,8/06/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-4206,17/07/2018 15:52,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4198,17/07/2018 15:34,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4205,17/07/2018 15:23,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4211,17/07/2018 15:22,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4188,17/07/2018 15:19,8/06/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-4215,17/07/2018 15:18,8/06/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4223,17/07/2018 14:07,8/06/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-1054,17/07/2018 1:29,7/03/2018 13:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-11709,16/07/2018 12:12,4/06/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11710,16/07/2018 12:06,4/06/2018 13:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-0898,15/07/2018 1:29,15/09/2017 19:29,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2016-7798,15/07/2018 1:29,30/01/2017 22:59,5.0,310, Cryptographic Issues,nan
CVE-2016-2339,15/07/2018 1:29,6/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9096,15/07/2018 1:29,12/06/2017 20:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2016-6306,14/07/2018 1:29,26/09/2016 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6302,14/07/2018 1:29,16/09/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-2182,14/07/2018 1:29,16/09/2016 5:59,7.5,787, Out-of-bounds Write,nan
CVE-2012-6662,14/07/2018 1:29,24/11/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4141,13/07/2018 18:23,8/06/2018 18:29,4.3,200, Information Exposure,nan
CVE-2018-4184,13/07/2018 18:22,8/06/2018 18:29,5.0,254, 7PK – Security Features,nan
CVE-2018-4171,13/07/2018 18:22,8/06/2018 18:29,7.1,200, Information Exposure,nan
CVE-2018-4159,13/07/2018 18:22,8/06/2018 18:29,4.3,200, Information Exposure,nan
CVE-2018-4219,13/07/2018 18:21,8/06/2018 18:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4228,13/07/2018 18:20,8/06/2018 18:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4234,13/07/2018 17:58,8/06/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4230,13/07/2018 17:58,8/06/2018 18:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4229,13/07/2018 17:58,8/06/2018 18:29,10.0,254, 7PK – Security Features,nan
CVE-2018-4236,13/07/2018 17:57,8/06/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4253,13/07/2018 17:56,8/06/2018 18:29,7.1,125, Out-of-bounds Read,nan
CVE-2018-11568,13/07/2018 17:51,30/05/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11578,13/07/2018 17:12,31/05/2018 0:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10466,13/07/2018 17:11,29/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1332,13/07/2018 14:41,5/06/2018 19:29,4.0,200, Information Exposure,nan
CVE-2018-11740,13/07/2018 14:38,5/06/2018 11:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11739,13/07/2018 14:38,5/06/2018 11:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11738,13/07/2018 14:37,5/06/2018 11:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11737,13/07/2018 14:24,5/06/2018 11:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-18248,13/07/2018 1:29,26/03/2018 17:29,3.5,20, Improper Input Validation,nan
CVE-2017-15400,13/07/2018 1:29,7/02/2018 23:29,9.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-14106,13/07/2018 1:29,1/09/2017 16:29,4.9,369, Divide By Zero,nan
CVE-2017-12193,13/07/2018 1:29,22/11/2017 18:29,4.9,476, NULL Pointer Dereference,nan
CVE-2016-10087,13/07/2018 1:29,30/01/2017 22:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7639,12/07/2018 18:07,5/06/2018 21:29,5.0,287, Improper Authentication,nan
CVE-2017-7637,12/07/2018 18:06,5/06/2018 21:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7636,12/07/2018 18:00,5/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7635,12/07/2018 17:46,5/06/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-12047,12/07/2018 15:37,8/06/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9177,12/07/2018 14:53,8/06/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12043,12/07/2018 14:44,7/06/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-13723,12/07/2018 13:26,9/07/2018 6:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-10602,12/07/2018 1:29,17/07/2017 13:18,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7052,12/07/2018 1:29,26/09/2016 19:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-6309,12/07/2018 1:29,26/09/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-2180,12/07/2018 1:29,1/08/2016 2:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-2179,12/07/2018 1:29,16/09/2016 5:59,5.0,399, Resource Management Errors,nan
CVE-2016-2178,12/07/2018 1:29,20/06/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-2177,12/07/2018 1:29,20/06/2016 1:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2014-9092,12/07/2018 1:29,10/10/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0595,12/07/2018 1:29,27/08/2013 3:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10692,11/07/2018 16:24,4/06/2018 16:29,9.3,310, Cryptographic Issues,nan
CVE-2016-10253,11/07/2018 15:07,18/03/2017 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15232,11/07/2018 1:29,11/10/2017 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2016-6485,10/07/2018 1:29,1/03/2017 20:59,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2014-10067,9/07/2018 14:27,29/05/2018 20:29,4.3,287, Improper Authentication,nan
CVE-2018-11679,9/07/2018 14:11,2/06/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11680,9/07/2018 14:08,2/06/2018 12:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11626,9/07/2018 13:23,31/05/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11505,9/07/2018 12:12,26/05/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-7672,8/07/2018 1:29,13/07/2017 15:29,4.3,20, Improper Input Validation,nan
CVE-2016-9865,8/07/2018 1:29,11/12/2016 3:00,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-6622,8/07/2018 1:29,11/12/2016 2:59,4.3,399, Resource Management Errors,nan
CVE-2016-6621,8/07/2018 1:29,31/01/2017 19:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-6620,8/07/2018 1:29,11/12/2016 2:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-6619,8/07/2018 1:29,11/12/2016 2:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6616,8/07/2018 1:29,11/12/2016 2:59,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6615,8/07/2018 1:29,11/12/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6614,8/07/2018 1:29,11/12/2016 2:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6609,8/07/2018 1:29,11/12/2016 2:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-18123,7/07/2018 1:29,3/02/2018 15:29,9.3,20, Improper Input Validation,nan
CVE-2017-1677,7/07/2018 1:29,22/03/2018 12:29,4.6,502, Deserialization of Untrusted Data,nan
CVE-2015-7243,6/07/2018 1:29,18/09/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11564,5/07/2018 17:02,2/06/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7976,5/07/2018 17:00,1/06/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11580,5/07/2018 16:57,31/05/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11482,5/07/2018 16:43,30/05/2018 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-11481,5/07/2018 16:43,30/05/2018 21:29,6.5,20, Improper Input Validation,nan
CVE-2018-7534,5/07/2018 16:42,30/05/2018 21:29,1.9,320, Key Management Errors,nan
CVE-2018-11478,5/07/2018 16:12,30/05/2018 21:29,5.8,287, Improper Authentication,nan
CVE-2018-11498,5/07/2018 14:52,26/05/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11476,5/07/2018 14:42,30/05/2018 21:29,5.8,306, Missing Authentication for Critical Function,nan
CVE-2018-11567,5/07/2018 14:40,30/05/2018 22:29,4.3,384, Session Fixation,nan
CVE-2018-11579,5/07/2018 13:55,31/05/2018 1:29,5.0,287, Improper Authentication,nan
CVE-2018-5487,5/07/2018 13:52,24/05/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2018-7949,5/07/2018 13:48,1/06/2018 14:29,4.0,287, Improper Authentication,nan
CVE-2017-2860,5/07/2018 13:45,1/06/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-11315,4/07/2018 1:29,20/05/2018 13:29,3.3,20, Improper Input Validation,nan
CVE-2017-18257,4/07/2018 1:29,4/04/2018 17:29,4.9,190, Integer Overflow or Wraparound,nan
CVE-2017-2858,3/07/2018 18:32,1/06/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-2852,3/07/2018 18:15,1/06/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-11628,3/07/2018 15:56,1/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11652,3/07/2018 15:33,1/06/2018 15:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11538,3/07/2018 15:28,1/06/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11522,3/07/2018 15:26,2/06/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11196,3/07/2018 14:51,1/06/2018 19:29,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11552,3/07/2018 14:50,1/06/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11565,3/07/2018 13:53,30/05/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-11551,3/07/2018 13:38,1/06/2018 17:29,9.3,426, Untrusted Search Path,nan
CVE-2012-5575,3/07/2018 1:29,19/08/2013 23:55,6.4,310, Cryptographic Issues,nan
CVE-2018-12522,2/07/2018 18:52,18/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-12523,2/07/2018 18:51,18/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-12525,2/07/2018 18:49,18/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-11486,2/07/2018 18:09,1/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-12524,2/07/2018 18:06,18/06/2018 11:29,5.0,200, Information Exposure,nan
CVE-2018-11485,2/07/2018 18:04,1/06/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7951,2/07/2018 16:28,1/06/2018 14:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-11707,2/07/2018 16:27,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11706,2/07/2018 16:27,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11705,2/07/2018 16:26,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11703,2/07/2018 16:25,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11704,2/07/2018 16:10,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11702,2/07/2018 16:04,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11701,2/07/2018 16:02,20/06/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7950,2/07/2018 16:01,1/06/2018 14:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-11489,2/07/2018 15:52,26/05/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11140,2/07/2018 15:51,31/05/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11632,2/07/2018 15:36,31/05/2018 20:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10732,2/07/2018 14:20,28/05/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-11445,2/07/2018 14:17,25/05/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10525,2/07/2018 14:17,29/05/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2018-11442,2/07/2018 14:14,25/05/2018 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11405,2/07/2018 14:14,24/05/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10094,2/07/2018 14:14,22/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11371,2/07/2018 14:10,22/05/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8094,2/07/2018 14:10,22/05/2018 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-8898,2/07/2018 14:01,23/05/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2018-10939,2/07/2018 13:54,30/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12868,1/07/2018 1:29,1/09/2017 13:29,7.5,384, Session Fixation,nan
CVE-2016-8738,1/07/2018 1:29,20/09/2017 17:29,4.3,20, Improper Input Validation,nan
CVE-2016-3090,1/07/2018 1:29,30/10/2017 14:29,6.5,20, Improper Input Validation,nan
CVE-2015-5209,1/07/2018 1:29,29/08/2017 15:29,5.0,20, Improper Input Validation,nan
CVE-2015-0899,1/07/2018 1:29,4/07/2016 22:59,5.0,20, Improper Input Validation,nan
CVE-2015-8865,30/06/2018 1:29,20/05/2016 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8325,30/06/2018 1:29,1/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11549,29/06/2018 18:56,29/05/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11633,29/06/2018 18:55,31/05/2018 20:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9322,29/06/2018 18:53,31/05/2018 12:29,7.2,693, Protection Mechanism Failure,nan
CVE-2018-11500,29/06/2018 18:53,26/05/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11141,29/06/2018 18:52,31/05/2018 18:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9320,29/06/2018 18:51,31/05/2018 12:29,7.2,693, Protection Mechanism Failure,nan
CVE-2018-9313,29/06/2018 18:51,31/05/2018 12:29,5.7,693, Protection Mechanism Failure,nan
CVE-2018-9312,29/06/2018 18:51,31/05/2018 12:29,7.2,693, Protection Mechanism Failure,nan
CVE-2018-11494,29/06/2018 18:51,26/05/2018 20:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11136,29/06/2018 18:50,31/05/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11134,29/06/2018 18:50,31/05/2018 18:29,9.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-11495,29/06/2018 18:49,26/05/2018 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11493,29/06/2018 18:06,26/05/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9314,29/06/2018 18:04,31/05/2018 12:29,7.2,693, Protection Mechanism Failure,nan
CVE-2018-11523,29/06/2018 18:04,29/05/2018 7:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9311,29/06/2018 18:03,31/05/2018 12:29,10.0,693, Protection Mechanism Failure,nan
CVE-2018-11562,29/06/2018 18:03,30/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7610,29/06/2018 18:01,30/05/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11583,29/06/2018 17:55,31/05/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11517,29/06/2018 17:55,28/05/2018 16:29,5.0,200, Information Exposure,nan
CVE-2018-9318,29/06/2018 17:48,31/05/2018 12:29,10.0,693, Protection Mechanism Failure,nan
CVE-2018-10379,29/06/2018 17:48,31/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6409,29/06/2018 17:47,26/05/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6411,29/06/2018 17:43,26/05/2018 22:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11547,29/06/2018 13:42,29/05/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11546,29/06/2018 13:42,29/05/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11545,29/06/2018 13:41,29/05/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11512,29/06/2018 13:31,28/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11507,29/06/2018 13:29,28/05/2018 4:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-11532,29/06/2018 13:28,29/05/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11535,29/06/2018 13:27,29/05/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11527,29/06/2018 13:26,29/05/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11670,29/06/2018 12:38,1/06/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11671,29/06/2018 12:37,1/06/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11555,29/06/2018 12:37,30/05/2018 4:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-6850,29/06/2018 1:29,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12824,29/06/2018 1:29,8/11/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9394,29/06/2018 1:29,23/03/2017 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-9390,29/06/2018 1:29,23/03/2017 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-9387,29/06/2018 1:29,23/03/2017 18:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-9262,29/06/2018 1:29,23/03/2017 18:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-8887,29/06/2018 1:29,23/03/2017 18:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8883,29/06/2018 1:29,13/01/2017 16:59,4.3,399, Resource Management Errors,nan
CVE-2016-10250,29/06/2018 1:29,15/03/2017 14:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-10248,29/06/2018 1:29,15/03/2017 14:59,5.0,476, NULL Pointer Dereference,nan
CVE-2015-7519,29/06/2018 1:29,8/01/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2018-6410,28/06/2018 18:11,26/05/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11556,28/06/2018 18:11,30/05/2018 4:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-11133,28/06/2018 17:20,31/05/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11496,28/06/2018 16:17,26/05/2018 20:29,4.3,416, Use After Free,nan
CVE-2018-11135,28/06/2018 16:17,31/05/2018 18:29,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-11576,28/06/2018 16:14,31/05/2018 0:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-11575,28/06/2018 16:14,31/05/2018 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6235,28/06/2018 16:10,25/05/2018 15:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-6234,28/06/2018 16:05,25/05/2018 15:29,2.1,200, Information Exposure,nan
CVE-2018-6236,28/06/2018 16:01,25/05/2018 15:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4943,28/06/2018 15:39,19/05/2018 17:29,6.8,20, Improper Input Validation,nan
CVE-2013-3018,28/06/2018 15:01,24/05/2018 21:29,5.0,200, Information Exposure,nan
CVE-2013-3023,28/06/2018 14:57,24/05/2018 21:29,4.3,200, Information Exposure,nan
CVE-2017-1752,28/06/2018 14:56,25/05/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-9019,28/06/2018 14:45,22/05/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11378,28/06/2018 14:45,22/05/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11474,28/06/2018 14:39,25/05/2018 19:29,6.0,384, Session Fixation,nan
CVE-2018-11475,28/06/2018 14:32,25/05/2018 19:29,6.0,384, Session Fixation,nan
CVE-2018-11514,28/06/2018 13:33,28/05/2018 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11137,28/06/2018 13:31,31/05/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11536,28/06/2018 13:29,29/05/2018 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11309,28/06/2018 13:29,28/05/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11515,28/06/2018 13:28,28/05/2018 14:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11528,28/06/2018 13:23,29/05/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11430,28/06/2018 13:22,28/05/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11557,28/06/2018 13:21,30/05/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8960,28/06/2018 1:29,21/09/2016 2:59,6.8,310, Cryptographic Issues,nan
CVE-2018-11444,27/06/2018 19:31,25/05/2018 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11487,27/06/2018 19:30,26/05/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11571,27/06/2018 19:28,31/05/2018 0:29,6.8,384, Session Fixation,nan
CVE-2018-11572,27/06/2018 19:27,31/05/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11651,27/06/2018 19:26,1/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11649,27/06/2018 19:26,1/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10382,27/06/2018 19:26,1/06/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11650,27/06/2018 19:25,1/06/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11377,27/06/2018 17:52,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11376,27/06/2018 17:52,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11375,27/06/2018 17:52,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11380,27/06/2018 17:17,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11383,27/06/2018 15:30,22/05/2018 19:29,4.3,416, Use After Free,nan
CVE-2018-11379,27/06/2018 15:30,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11384,27/06/2018 15:18,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11381,27/06/2018 15:18,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-8714,27/06/2018 15:17,17/05/2018 19:29,3.6,200, Information Exposure,nan
CVE-2018-11382,27/06/2018 15:17,22/05/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4942,27/06/2018 15:14,19/05/2018 17:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-4941,27/06/2018 14:45,19/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4940,27/06/2018 14:45,19/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4939,27/06/2018 14:24,19/05/2018 17:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2018-4920,27/06/2018 13:39,19/05/2018 17:29,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-4919,27/06/2018 13:38,19/05/2018 17:29,10.0,416, Use After Free,nan
CVE-2018-1309,27/06/2018 12:07,23/05/2018 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-9421,27/06/2018 11:44,24/05/2018 13:29,6.4,287, Improper Authentication,nan
CVE-2018-1000199,27/06/2018 11:43,24/05/2018 13:29,4.9,388, 7PK – Errors,nan
CVE-2018-7942,27/06/2018 11:14,24/05/2018 14:29,5.0,287, Improper Authentication,nan
CVE-2018-11470,27/06/2018 11:14,25/05/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14185,27/06/2018 11:12,25/05/2018 16:29,5.0,200, Information Exposure,nan
CVE-2015-4364,27/06/2018 1:29,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4484,27/06/2018 1:29,31/10/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11472,26/06/2018 18:57,25/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11473,26/06/2018 18:55,25/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11339,26/06/2018 18:55,22/05/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11435,26/06/2018 18:52,30/05/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-11438,26/06/2018 18:48,30/05/2018 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11437,26/06/2018 18:48,30/05/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-11411,26/06/2018 18:44,24/05/2018 12:29,5.0,20, Improper Input Validation,nan
CVE-2018-11239,26/06/2018 18:41,19/05/2018 18:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-17158,26/06/2018 18:36,24/05/2018 14:29,2.1,20, Improper Input Validation,nan
CVE-2018-10357,26/06/2018 18:35,23/05/2018 16:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11415,26/06/2018 18:25,24/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11416,26/06/2018 18:24,24/05/2018 20:29,6.8,415, Double Free,nan
CVE-2018-6963,26/06/2018 18:23,22/05/2018 13:29,2.1,476, NULL Pointer Dereference,nan
CVE-2018-1310,26/06/2018 17:35,23/05/2018 14:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2018-11311,26/06/2018 17:15,20/05/2018 22:29,6.4,798, Use of Hard-coded Credentials,nan
CVE-2018-11320,26/06/2018 17:14,21/05/2018 14:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-8010,26/06/2018 17:13,21/05/2018 19:29,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-11366,26/06/2018 17:03,22/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11231,26/06/2018 14:07,23/05/2018 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11479,26/06/2018 13:58,25/05/2018 19:29,7.2,20, Improper Input Validation,nan
CVE-2018-11373,25/06/2018 21:55,22/05/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11443,25/06/2018 21:54,25/05/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11372,25/06/2018 21:54,22/05/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1137,25/06/2018 21:54,25/05/2018 12:29,5.5,20, Improper Input Validation,nan
CVE-2018-1135,25/06/2018 21:52,25/05/2018 12:29,4.0,200, Information Exposure,nan
CVE-2018-10653,25/06/2018 20:27,23/05/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10651,25/06/2018 19:42,23/05/2018 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7815,25/06/2018 19:22,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7812,25/06/2018 19:19,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-7817,25/06/2018 19:16,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7832,25/06/2018 19:12,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7833,25/06/2018 19:11,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7838,25/06/2018 19:10,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7837,25/06/2018 19:10,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-7842,25/06/2018 18:47,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-7840,25/06/2018 18:47,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7827,25/06/2018 18:47,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7839,25/06/2018 18:46,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7834,25/06/2018 18:46,11/06/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7831,25/06/2018 18:46,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5114,25/06/2018 18:42,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5115,25/06/2018 18:41,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5111,25/06/2018 17:44,11/06/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2018-5110,25/06/2018 17:44,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-5109,25/06/2018 17:43,11/06/2018 21:29,5.0,346, Origin Validation Error,nan
CVE-2018-5108,25/06/2018 17:39,11/06/2018 21:29,4.3,200, Information Exposure,nan
CVE-2018-5107,25/06/2018 17:38,11/06/2018 21:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-5106,25/06/2018 17:37,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5094,25/06/2018 17:31,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5093,25/06/2018 17:31,11/06/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5092,25/06/2018 17:31,11/06/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-5090,25/06/2018 17:28,11/06/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5119,25/06/2018 17:25,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5118,25/06/2018 17:25,11/06/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-5116,25/06/2018 17:25,11/06/2018 21:29,7.5,346, Origin Validation Error,nan
CVE-2018-5121,25/06/2018 17:24,11/06/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2018-5122,25/06/2018 17:23,11/06/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-11225,25/06/2018 17:11,17/05/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11224,25/06/2018 17:10,17/05/2018 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10759,25/06/2018 17:07,16/05/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10240,25/06/2018 17:04,16/05/2018 14:29,5.0,331, Insufficient Entropy,nan
CVE-2018-0591,25/06/2018 17:00,14/05/2018 13:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-10654,25/06/2018 16:08,23/05/2018 17:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-10650,25/06/2018 15:49,23/05/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2018-10649,25/06/2018 15:47,23/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3024,25/06/2018 15:44,24/05/2018 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-10652,25/06/2018 15:42,23/05/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-10648,25/06/2018 15:42,23/05/2018 17:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11332,25/06/2018 15:41,24/05/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11403,25/06/2018 15:11,24/05/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11414,25/06/2018 15:06,24/05/2018 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11413,25/06/2018 15:05,24/05/2018 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-11092,25/06/2018 15:05,21/05/2018 14:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11096,25/06/2018 15:04,21/05/2018 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10350,25/06/2018 14:50,25/05/2018 15:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17315,25/06/2018 14:50,24/05/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-6237,25/06/2018 13:53,25/05/2018 15:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-4992,25/06/2018 13:52,19/05/2018 17:29,4.6,20, Improper Input Validation,nan
CVE-2018-4991,25/06/2018 13:52,19/05/2018 17:29,7.5,295, Improper Certificate Validation,nan
CVE-2018-4918,25/06/2018 13:16,19/05/2018 17:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-4917,25/06/2018 13:16,19/05/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4873,25/06/2018 13:15,19/05/2018 17:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-11471,25/06/2018 12:53,25/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11367,25/06/2018 12:51,22/05/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-5101,22/06/2018 19:55,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2018-5100,22/06/2018 19:53,11/06/2018 21:29,5.0,416, Use After Free,nan
CVE-2018-3611,22/06/2018 17:22,15/05/2018 14:29,4.0,20, Improper Input Validation,nan
CVE-2018-6378,22/06/2018 17:21,22/05/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4931,22/06/2018 17:17,19/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4930,22/06/2018 17:17,19/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4929,22/06/2018 17:17,19/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4923,22/06/2018 17:16,19/05/2018 17:29,6.4,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4921,22/06/2018 17:13,19/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1459,22/06/2018 17:02,25/05/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11094,22/06/2018 16:20,15/05/2018 19:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-11328,22/06/2018 16:17,22/05/2018 15:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11327,22/06/2018 16:16,22/05/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-11326,22/06/2018 16:16,22/05/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11324,22/06/2018 16:13,22/05/2018 15:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-11322,22/06/2018 16:11,22/05/2018 15:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11321,22/06/2018 16:08,22/05/2018 15:29,4.0,20, Improper Input Validation,nan
CVE-2018-10356,22/06/2018 14:37,23/05/2018 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10353,22/06/2018 14:34,23/05/2018 16:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10352,22/06/2018 14:34,23/05/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10351,22/06/2018 14:33,23/05/2018 16:29,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11404,22/06/2018 13:51,24/05/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11369,22/06/2018 13:48,22/05/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-4924,22/06/2018 13:46,19/05/2018 17:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-4928,22/06/2018 13:45,19/05/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4927,22/06/2018 13:45,19/05/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2018-4926,22/06/2018 13:44,19/05/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-4925,22/06/2018 13:37,19/05/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-11331,22/06/2018 13:36,21/05/2018 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11330,22/06/2018 13:36,21/05/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2869,21/06/2018 1:29,5/04/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2868,21/06/2018 1:29,5/04/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2867,21/06/2018 1:29,5/04/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2861,21/06/2018 1:29,5/04/2018 19:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-2853,21/06/2018 1:29,5/04/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0148,21/06/2018 1:29,17/03/2017 0:59,9.3,20, Improper Input Validation,nan
CVE-2017-0147,21/06/2018 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0146,21/06/2018 1:29,17/03/2017 0:59,9.3,20, Improper Input Validation,nan
CVE-2017-0145,21/06/2018 1:29,17/03/2017 0:59,9.3,20, Improper Input Validation,nan
CVE-2017-0144,21/06/2018 1:29,17/03/2017 0:59,9.3,20, Improper Input Validation,nan
CVE-2017-0143,21/06/2018 1:29,17/03/2017 0:59,9.3,20, Improper Input Validation,nan
CVE-2018-10731,20/06/2018 17:38,17/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10729,20/06/2018 17:36,17/05/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-10728,20/06/2018 15:47,17/05/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10252,20/06/2018 15:38,14/05/2018 14:29,6.8,384, Session Fixation,nan
CVE-2018-11091,20/06/2018 15:27,14/05/2018 23:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11128,20/06/2018 15:26,17/05/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0580,20/06/2018 14:50,14/05/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-1276,20/06/2018 14:42,17/05/2018 20:29,4.0,200, Information Exposure,nan
CVE-2018-11248,20/06/2018 14:38,18/05/2018 18:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9250,20/06/2018 14:36,18/05/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-11230,20/06/2018 14:35,17/05/2018 12:29,6.8,416, Use After Free,nan
CVE-2018-11243,20/06/2018 14:34,18/05/2018 17:29,6.8,415, Double Free,nan
CVE-2018-1148,20/06/2018 14:27,18/05/2018 22:29,4.0,384, Session Fixation,nan
CVE-2018-11226,20/06/2018 14:27,17/05/2018 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11253,20/06/2018 14:18,19/05/2018 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-11250,20/06/2018 14:18,19/05/2018 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-11240,20/06/2018 14:18,19/05/2018 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-10241,20/06/2018 14:17,16/05/2018 14:29,4.0,476, NULL Pointer Dereference,nan
CVE-2017-11308,20/06/2018 14:17,19/05/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11307,20/06/2018 14:17,19/05/2018 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-11306,20/06/2018 14:17,19/05/2018 17:29,10.0,125, Out-of-bounds Read,nan
CVE-2018-1263,20/06/2018 12:54,15/05/2018 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1064,20/06/2018 1:29,28/03/2018 18:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7616,20/06/2018 1:29,10/04/2017 14:59,2.1,388, 7PK – Errors,nan
CVE-2017-7308,20/06/2018 1:29,29/03/2017 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6001,20/06/2018 1:29,18/02/2017 21:59,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-18203,20/06/2018 1:29,27/02/2018 20:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15804,20/06/2018 1:29,22/10/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15670,20/06/2018 1:29,20/10/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8650,20/06/2018 1:29,28/11/2016 3:59,4.9,399, Resource Management Errors,nan
CVE-2018-11101,19/06/2018 18:24,17/05/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10990,19/06/2018 17:30,14/05/2018 14:29,7.5,613, Insufficient Session Expiration,nan
CVE-2018-8015,19/06/2018 16:56,18/05/2018 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11031,19/06/2018 16:43,14/05/2018 0:29,10.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-0568,19/06/2018 16:42,14/05/2018 13:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-12126,19/06/2018 16:31,14/05/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11013,19/06/2018 16:24,13/05/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5230,19/06/2018 16:21,14/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0579,19/06/2018 16:21,14/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11127,19/06/2018 16:19,15/05/2018 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11245,19/06/2018 16:02,18/05/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11098,19/06/2018 15:59,15/05/2018 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10326,19/06/2018 15:55,17/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3661,19/06/2018 15:40,15/05/2018 14:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11032,19/06/2018 15:39,14/05/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1147,19/06/2018 15:32,18/05/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11126,19/06/2018 15:32,15/05/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16860,19/06/2018 15:28,14/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10730,19/06/2018 15:26,17/05/2018 19:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-11033,19/06/2018 15:25,14/05/2018 0:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10810,19/06/2018 15:23,16/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11105,19/06/2018 15:13,15/05/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10306,19/06/2018 15:12,18/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11232,19/06/2018 15:07,18/05/2018 4:29,4.9,20, Improper Input Validation,nan
CVE-2017-7583,19/06/2018 15:00,7/04/2017 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15538,19/06/2018 14:59,17/10/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10027,19/06/2018 14:54,17/05/2018 12:29,4.6,426, Untrusted Search Path,nan
CVE-2018-5827,19/06/2018 14:51,17/05/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3568,19/06/2018 14:51,17/05/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10760,19/06/2018 14:51,16/05/2018 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3567,19/06/2018 14:00,17/05/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2815,19/06/2018 13:35,15/05/2018 17:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-15855,19/06/2018 13:35,17/05/2018 22:29,4.6,129, Improper Validation of Array Index,nan
CVE-2015-4666,19/06/2018 1:29,13/08/2015 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4665,19/06/2018 1:29,13/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10682,18/06/2018 17:58,9/05/2018 8:29,10.0,287, Improper Authentication,nan
CVE-2018-10683,18/06/2018 17:55,9/05/2018 8:29,7.5,287, Improper Authentication,nan
CVE-2018-10184,18/06/2018 17:18,9/05/2018 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3612,18/06/2018 17:11,10/05/2018 22:29,7.2,20, Improper Input Validation,nan
CVE-2018-10831,18/06/2018 16:46,9/05/2018 5:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-9112,18/06/2018 16:39,10/05/2018 3:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-8119,18/06/2018 16:39,9/05/2018 19:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-3649,18/06/2018 16:31,10/05/2018 22:29,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0581,18/06/2018 16:24,14/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11004,18/06/2018 16:23,12/05/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-11003,18/06/2018 16:09,12/05/2018 4:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10996,18/06/2018 14:58,12/05/2018 4:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11256,18/06/2018 14:43,18/05/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-0588,18/06/2018 14:40,14/05/2018 13:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0586,18/06/2018 14:35,14/05/2018 13:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14436,18/06/2018 14:22,14/05/2018 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-10994,18/06/2018 14:19,14/05/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11202,18/06/2018 14:02,16/05/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-11090,18/06/2018 14:02,14/05/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12129,18/06/2018 13:52,14/05/2018 20:29,2.9,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-12128,18/06/2018 13:52,14/05/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-10307,18/06/2018 13:51,18/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11018,18/06/2018 13:41,13/05/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8207,18/06/2018 13:33,14/06/2018 12:29,1.9,200, Information Exposure,nan
CVE-2018-8205,18/06/2018 13:29,14/06/2018 12:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15913,16/06/2018 1:29,8/01/2018 3:29,6.8,426, Untrusted Search Path,nan
CVE-2017-15736,16/06/2018 1:29,22/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12942,16/06/2018 1:29,18/08/2017 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12941,16/06/2018 1:29,18/08/2017 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-12940,16/06/2018 1:29,18/08/2017 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-0627,16/06/2018 1:29,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2014-9653,16/06/2018 1:29,30/03/2015 10:59,7.5,20, Improper Input Validation,nan
CVE-2014-9621,16/06/2018 1:29,21/01/2015 18:59,5.0,399, Resource Management Errors,nan
CVE-2014-9620,16/06/2018 1:29,21/01/2015 18:59,5.0,399, Resource Management Errors,nan
CVE-2018-0587,15/06/2018 19:48,14/05/2018 13:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-11118,15/06/2018 19:43,17/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18272,15/06/2018 19:42,18/05/2018 19:29,4.3,416, Use After Free,nan
CVE-2018-11120,15/06/2018 19:39,17/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-11119,15/06/2018 19:39,17/05/2018 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-11035,15/06/2018 19:39,14/05/2018 1:29,6.1,20, Improper Input Validation,nan
CVE-2018-11034,15/06/2018 19:39,14/05/2018 1:29,6.1,20, Improper Input Validation,nan
CVE-2018-11255,15/06/2018 19:38,18/05/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-11117,15/06/2018 19:37,17/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10737,15/06/2018 19:36,16/05/2018 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0583,15/06/2018 19:36,14/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0582,15/06/2018 19:36,14/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10738,15/06/2018 19:35,16/05/2018 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10736,15/06/2018 19:35,16/05/2018 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10735,15/06/2018 19:35,16/05/2018 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1465,15/06/2018 19:33,17/05/2018 21:29,3.5,200, Information Exposure,nan
CVE-2018-1466,15/06/2018 19:31,17/05/2018 21:29,3.5,326, Inadequate Encryption Strength,nan
CVE-2018-1464,15/06/2018 19:30,17/05/2018 21:29,4.0,200, Information Exposure,nan
CVE-2018-11205,15/06/2018 19:27,16/05/2018 15:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11203,15/06/2018 19:27,16/05/2018 15:29,4.3,369, Divide By Zero,nan
CVE-2018-11204,15/06/2018 19:21,16/05/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1438,15/06/2018 19:20,17/05/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-1461,15/06/2018 19:19,17/05/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1433,15/06/2018 19:14,17/05/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-1434,15/06/2018 19:13,17/05/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1261,15/06/2018 19:07,11/05/2018 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14437,15/06/2018 18:59,14/05/2018 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-14439,15/06/2018 18:58,14/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-14438,15/06/2018 18:58,14/05/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-14435,15/06/2018 18:57,14/05/2018 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-14434,15/06/2018 18:56,14/05/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14433,15/06/2018 18:56,14/05/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14432,15/06/2018 18:56,14/05/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12125,15/06/2018 18:56,14/05/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12124,15/06/2018 18:56,14/05/2018 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-12121,15/06/2018 18:55,14/05/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12120,15/06/2018 18:54,14/05/2018 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-7165,15/06/2018 1:29,15/11/2016 19:30,6.9,284, Improper Access Control,nan
CVE-2018-10706,14/06/2018 18:43,10/05/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-6254,14/06/2018 18:16,10/05/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-10655,14/06/2018 18:15,10/05/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7941,14/06/2018 18:06,10/05/2018 14:29,6.5,287, Improper Authentication,nan
CVE-2017-6293,14/06/2018 18:06,10/05/2018 14:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-10770,14/06/2018 18:01,9/05/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-0765,14/06/2018 18:01,9/05/2018 19:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6246,14/06/2018 17:35,10/05/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-10973,14/06/2018 15:24,10/05/2018 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-0961,14/06/2018 14:14,9/05/2018 19:29,7.4,20, Improper Input Validation,nan
CVE-2018-0959,14/06/2018 14:14,9/05/2018 19:29,7.4,20, Improper Input Validation,nan
CVE-2017-18266,14/06/2018 13:33,10/05/2018 14:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1280,14/06/2018 13:19,11/05/2018 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10580,14/06/2018 13:06,11/05/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5151,14/06/2018 13:04,11/05/2018 19:29,7.2,284, Improper Access Control,nan
CVE-2009-5150,14/06/2018 13:01,11/05/2018 19:29,7.2,284, Improper Access Control,nan
CVE-2018-6023,14/06/2018 12:46,11/05/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-5152,14/06/2018 12:44,11/05/2018 19:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-8900,14/06/2018 1:29,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6304,14/06/2018 1:29,13/03/2018 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10571,14/06/2018 1:29,30/04/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9230,14/06/2018 1:29,24/05/2017 16:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-6867,14/06/2018 1:29,11/05/2017 10:29,4.0,20, Improper Input Validation,nan
CVE-2017-14989,14/06/2018 1:29,3/10/2017 1:29,4.3,416, Use After Free,nan
CVE-2017-14682,14/06/2018 1:29,21/09/2017 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14224,14/06/2018 1:29,9/09/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13758,14/06/2018 1:29,29/08/2017 23:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13144,14/06/2018 1:29,23/08/2017 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-13143,14/06/2018 1:29,23/08/2017 6:29,5.0,200, Information Exposure,nan
CVE-2017-13139,14/06/2018 1:29,23/08/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-13061,14/06/2018 1:29,22/08/2017 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-12983,14/06/2018 1:29,21/08/2017 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12877,14/06/2018 1:29,28/08/2017 19:29,4.3,416, Use After Free,nan
CVE-2017-12640,14/06/2018 1:29,7/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12431,14/06/2018 1:29,4/08/2017 10:29,4.3,416, Use After Free,nan
CVE-2017-11640,14/06/2018 1:29,26/07/2017 8:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11352,14/06/2018 1:29,17/07/2017 13:18,4.3,20, Improper Input Validation,nan
CVE-2018-10260,13/06/2018 17:28,1/05/2018 19:29,6.5,20, Improper Input Validation,nan
CVE-2018-10256,13/06/2018 17:24,1/05/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10257,13/06/2018 17:23,1/05/2018 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8072,13/06/2018 17:18,26/04/2018 15:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6242,13/06/2018 17:11,1/05/2018 20:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1277,13/06/2018 17:11,30/04/2018 20:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-5514,13/06/2018 17:10,2/05/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2016-9043,13/06/2018 17:04,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-8732,13/06/2018 17:03,24/04/2018 19:29,4.6,275, Permission Issues,nan
CVE-2017-2802,13/06/2018 17:02,24/04/2018 19:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0578,13/06/2018 16:58,14/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0577,13/06/2018 16:57,14/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000141,13/06/2018 16:54,30/01/2018 19:29,6.4,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2013-0159,13/06/2018 16:51,1/05/2018 19:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-10284,13/06/2018 16:49,21/04/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5517,13/06/2018 16:42,2/05/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2013-4209,13/06/2018 16:16,1/05/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-9919,13/06/2018 15:59,2/05/2018 21:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-3775,13/06/2018 15:58,4/05/2018 17:29,6.9,287, Improper Authentication,nan
CVE-2018-5515,13/06/2018 15:50,2/05/2018 13:29,6.3,20, Improper Input Validation,nan
CVE-2018-6619,13/06/2018 15:45,11/05/2018 21:29,2.1,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-10283,13/06/2018 15:45,21/04/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9038,13/06/2018 15:39,24/04/2018 19:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2840,13/06/2018 15:33,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10376,13/06/2018 15:29,25/04/2018 9:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-10722,13/06/2018 15:27,4/05/2018 0:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-10536,13/06/2018 15:25,29/04/2018 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10972,13/06/2018 15:24,10/05/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10540,13/06/2018 15:24,29/04/2018 15:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-10539,13/06/2018 15:24,29/04/2018 15:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-10537,13/06/2018 15:24,29/04/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10538,13/06/2018 15:23,29/04/2018 15:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-6458,13/06/2018 15:20,11/05/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9063,13/06/2018 15:18,4/05/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10830,13/06/2018 15:15,9/05/2018 7:29,6.1,20, Improper Input Validation,nan
CVE-2018-10809,13/06/2018 15:13,8/05/2018 7:29,6.1,20, Improper Input Validation,nan
CVE-2018-6362,13/06/2018 15:11,11/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8003,13/06/2018 15:09,3/05/2018 23:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6361,13/06/2018 15:09,11/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15043,13/06/2018 15:07,4/05/2018 20:29,9.0,20, Improper Input Validation,nan
CVE-2018-10817,13/06/2018 15:06,9/05/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10806,13/06/2018 15:05,8/05/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000177,13/06/2018 15:05,8/05/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2048,13/06/2018 15:05,26/03/2018 18:29,7.5,284, Improper Access Control,nan
CVE-2018-1000176,13/06/2018 15:04,8/05/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-10803,13/06/2018 15:03,10/05/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000175,13/06/2018 15:02,8/05/2018 15:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000173,13/06/2018 14:56,8/05/2018 15:29,4.3,384, Session Fixation,nan
CVE-2017-2885,13/06/2018 14:55,24/04/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000174,13/06/2018 14:53,8/05/2018 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-8115,13/06/2018 14:50,2/05/2018 19:29,9.3,20, Improper Input Validation,nan
CVE-2017-8896,13/06/2018 14:49,17/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10258,13/06/2018 14:30,1/05/2018 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10255,13/06/2018 14:30,1/05/2018 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10942,13/06/2018 14:28,10/05/2018 3:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9336,13/06/2018 14:27,1/05/2018 18:29,4.6,415, Double Free,nan
CVE-2013-4201,13/06/2018 14:27,1/05/2018 19:29,4.0,275, Permission Issues,nan
CVE-2018-6021,13/06/2018 14:25,9/05/2018 21:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-10036,13/06/2018 14:23,1/05/2018 19:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7933,13/06/2018 14:22,10/05/2018 14:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8060,13/06/2018 14:21,10/05/2018 3:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-8938,13/06/2018 14:20,1/05/2018 16:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10371,13/06/2018 14:20,1/05/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10581,13/06/2018 14:19,1/05/2018 13:29,5.5,200, Information Exposure,nan
CVE-2018-8939,13/06/2018 14:18,1/05/2018 16:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-6020,13/06/2018 14:14,9/05/2018 21:29,6.4,287, Improper Authentication,nan
CVE-2013-0185,13/06/2018 14:13,1/05/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8141,13/06/2018 14:11,9/05/2018 19:29,1.9,200, Information Exposure,nan
CVE-2013-2049,13/06/2018 14:11,1/05/2018 19:29,5.0,384, Session Fixation,nan
CVE-2018-10578,13/06/2018 14:09,2/05/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-10544,13/06/2018 14:08,2/05/2018 7:29,5.0,287, Improper Authentication,nan
CVE-2018-10974,13/06/2018 14:03,10/05/2018 16:29,6.1,20, Improper Input Validation,nan
CVE-2011-3984,13/06/2018 14:03,24/10/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3383,13/06/2018 14:03,24/10/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10975,13/06/2018 14:02,10/05/2018 16:29,6.1,20, Improper Input Validation,nan
CVE-2011-4172,13/06/2018 14:00,24/10/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9232,13/06/2018 13:57,1/05/2018 18:29,9.3,287, Improper Authentication,nan
CVE-2018-10976,13/06/2018 13:57,10/05/2018 16:29,6.1,20, Improper Input Validation,nan
CVE-2018-8136,13/06/2018 13:54,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5304,13/06/2018 13:52,11/05/2018 21:29,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-10977,13/06/2018 13:52,10/05/2018 16:29,6.1,20, Improper Input Validation,nan
CVE-2018-6401,13/06/2018 13:51,2/05/2018 7:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-8061,13/06/2018 13:42,10/05/2018 3:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10992,13/06/2018 13:42,11/05/2018 22:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7940,13/06/2018 13:41,10/05/2018 14:29,7.2,287, Improper Authentication,nan
CVE-2018-5303,13/06/2018 13:40,11/05/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10734,13/06/2018 13:29,8/05/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-7891,13/06/2018 13:17,30/04/2018 15:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-10832,13/06/2018 13:16,11/05/2018 21:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6921,13/06/2018 13:14,8/05/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-6920,13/06/2018 13:14,8/05/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-8860,13/06/2018 13:09,9/05/2018 21:29,3.3,200, Information Exposure,nan
CVE-2018-8824,13/06/2018 12:50,10/05/2018 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8127,13/06/2018 12:50,9/05/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-9111,13/06/2018 12:49,10/05/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10799,13/06/2018 12:21,8/05/2018 4:29,4.3,20, Improper Input Validation,nan
CVE-2018-10798,13/06/2018 12:21,8/05/2018 4:29,4.3,20, Improper Input Validation,nan
CVE-2016-10323,13/06/2018 12:20,10/04/2017 18:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-11017,13/06/2018 12:19,13/05/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10957,13/06/2018 12:19,10/05/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10113,13/06/2018 12:18,16/04/2018 9:58,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0380,13/06/2018 12:18,8/08/2016 1:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2018-10717,13/06/2018 12:16,3/05/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4964,13/06/2018 12:16,6/04/2017 19:59,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1183,13/06/2018 12:09,30/04/2018 20:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10795,13/06/2018 12:08,7/05/2018 13:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10677,13/06/2018 12:08,2/05/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10773,13/06/2018 12:07,7/05/2018 7:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-10115,13/06/2018 12:07,2/05/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10774,13/06/2018 12:06,7/05/2018 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10775,13/06/2018 12:05,7/05/2018 7:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-1248,13/06/2018 12:04,8/05/2018 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1247,13/06/2018 12:04,8/05/2018 13:29,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10796,13/06/2018 12:03,8/05/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-10314,13/06/2018 12:01,10/05/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8728,13/06/2018 11:52,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-8730,13/06/2018 11:51,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-8729,13/06/2018 11:51,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2804,13/06/2018 11:48,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-2803,13/06/2018 11:48,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12107,13/06/2018 11:48,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7245,13/06/2018 11:46,24/04/2018 20:29,5.0,285, Improper Authorization,nan
CVE-2018-10362,13/06/2018 11:34,25/04/2018 5:29,5.0,287, Improper Authentication,nan
CVE-2018-10375,13/06/2018 11:29,25/04/2018 9:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10310,13/06/2018 11:29,25/04/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0872,13/06/2018 11:21,25/04/2018 20:29,1.5,255, Credentials Management,nan
CVE-2018-10429,13/06/2018 11:18,26/04/2018 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7201,13/06/2018 11:13,27/04/2018 16:29,5.8,295, Improper Certificate Validation,nan
CVE-2013-4040,13/06/2018 11:13,1/05/2018 18:29,2.1,275, Permission Issues,nan
CVE-2017-11665,13/06/2018 1:29,27/07/2017 12:29,5.0,20, Improper Input Validation,nan
CVE-2018-10955,12/06/2018 18:52,10/05/2018 2:29,6.1,20, Improper Input Validation,nan
CVE-2018-10952,12/06/2018 18:52,10/05/2018 2:29,6.1,20, Improper Input Validation,nan
CVE-2018-10954,12/06/2018 18:51,10/05/2018 2:29,6.1,20, Improper Input Validation,nan
CVE-2018-10953,12/06/2018 18:51,10/05/2018 2:29,6.1,20, Improper Input Validation,nan
CVE-2018-10827,12/06/2018 18:49,9/05/2018 4:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-10713,12/06/2018 18:36,3/05/2018 16:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10686,12/06/2018 18:36,6/05/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10468,12/06/2018 18:32,28/04/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-10380,12/06/2018 18:32,8/05/2018 12:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-10167,12/06/2018 18:30,3/05/2018 18:29,6.0,798, Use of Hard-coded Credentials,nan
CVE-2018-10166,12/06/2018 18:28,3/05/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10165,12/06/2018 18:28,3/05/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10164,12/06/2018 18:28,3/05/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18262,12/06/2018 18:15,30/04/2018 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-17540,12/06/2018 18:13,8/05/2018 4:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-17539,12/06/2018 18:13,8/05/2018 4:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-1857,12/06/2018 18:03,27/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2015-1503,12/06/2018 18:03,8/05/2018 20:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6272,12/06/2018 18:02,2/05/2018 15:29,6.8,284, Improper Access Control,nan
CVE-2018-10750,12/06/2018 17:59,4/05/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10778,12/06/2018 17:55,7/05/2018 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-10777,12/06/2018 17:53,7/05/2018 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10776,12/06/2018 17:53,7/05/2018 7:29,6.8,20, Improper Input Validation,nan
CVE-2018-10771,12/06/2018 17:52,7/05/2018 2:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10758,12/06/2018 17:41,5/05/2018 19:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10757,12/06/2018 17:36,5/05/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10749,12/06/2018 17:33,4/05/2018 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10747,12/06/2018 17:32,4/05/2018 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10746,12/06/2018 17:32,4/05/2018 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10748,12/06/2018 12:48,4/05/2018 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10723,12/06/2018 12:44,5/05/2018 22:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-5031,12/06/2018 1:29,24/04/2017 23:59,6.8,416, Use After Free,nan
CVE-2016-5278,12/06/2018 1:29,22/09/2016 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5277,12/06/2018 1:29,22/09/2016 22:59,7.5,416, Use After Free,nan
CVE-2016-5276,12/06/2018 1:29,22/09/2016 22:59,7.5,416, Use After Free,nan
CVE-2016-5274,12/06/2018 1:29,22/09/2016 22:59,7.5,416, Use After Free,nan
CVE-2016-5272,12/06/2018 1:29,22/09/2016 22:59,6.8,20, Improper Input Validation,nan
CVE-2016-5270,12/06/2018 1:29,22/09/2016 22:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-5261,12/06/2018 1:29,5/08/2016 1:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5257,12/06/2018 1:29,22/09/2016 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5250,12/06/2018 1:29,5/08/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2827,12/06/2018 1:29,22/09/2016 22:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10196,12/06/2018 1:29,15/03/2017 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17543,11/06/2018 18:44,26/04/2018 20:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-7407,8/06/2018 17:14,24/05/2018 21:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-7406,8/06/2018 17:14,24/05/2018 21:29,6.8,129, Improper Validation of Array Index,nan
CVE-2018-5680,8/06/2018 17:13,24/05/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-5679,8/06/2018 17:12,24/05/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-5678,8/06/2018 17:12,24/05/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5677,8/06/2018 17:12,24/05/2018 21:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-5676,8/06/2018 17:12,24/05/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5675,8/06/2018 17:12,24/05/2018 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-5674,8/06/2018 17:11,24/05/2018 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11598,8/06/2018 17:09,31/05/2018 16:29,5.8,125, Out-of-bounds Read,nan
CVE-2018-11596,8/06/2018 17:09,31/05/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11595,8/06/2018 16:17,31/05/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11594,8/06/2018 16:17,31/05/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11592,8/06/2018 16:16,31/05/2018 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-11591,8/06/2018 16:16,31/05/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-11590,8/06/2018 16:16,31/05/2018 16:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-4657,8/06/2018 1:29,25/08/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4656,8/06/2018 1:29,25/08/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4655,8/06/2018 1:29,25/08/2016 21:59,7.1,200, Information Exposure,nan
CVE-2013-4035,7/06/2018 18:37,1/05/2018 18:29,4.1,310, Cryptographic Issues,nan
CVE-2018-1000172,7/06/2018 18:11,30/04/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10574,7/06/2018 18:10,30/04/2018 20:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10570,7/06/2018 18:10,30/04/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10553,7/06/2018 18:08,30/04/2018 3:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1846,7/06/2018 18:08,27/04/2018 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1845,7/06/2018 18:03,27/04/2018 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-0841,7/06/2018 18:00,27/04/2018 16:29,2.1,326, Inadequate Encryption Strength,nan
CVE-2013-7202,7/06/2018 17:58,27/04/2018 16:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2018-10753,7/06/2018 17:31,5/05/2018 2:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2233,7/06/2018 17:24,4/05/2018 20:29,5.8,320, Key Management Errors,nan
CVE-2012-5628,7/06/2018 17:19,4/05/2018 20:29,3.6,275, Permission Issues,nan
CVE-2011-0704,7/06/2018 17:07,4/05/2018 20:29,4.3,20, Improper Input Validation,nan
CVE-2018-10740,7/06/2018 16:46,4/05/2018 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10665,7/06/2018 15:52,2/05/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10657,7/06/2018 15:49,2/05/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-9302,7/06/2018 15:45,2/05/2018 15:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-7609,7/06/2018 1:29,9/04/2017 14:59,4.3,20, Improper Input Validation,nan
CVE-2016-10255,7/06/2018 1:29,23/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10254,7/06/2018 1:29,23/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17318,6/06/2018 17:37,30/04/2018 14:29,6.1,20, Improper Input Validation,nan
CVE-2017-1255,6/06/2018 17:25,2/05/2018 13:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-1502,6/06/2018 15:17,1/05/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10685,6/06/2018 15:17,2/05/2018 22:29,7.5,416, Use After Free,nan
CVE-2018-1468,6/06/2018 15:13,2/05/2018 13:29,4.0,200, Information Exposure,nan
CVE-2017-1743,6/06/2018 14:46,4/05/2018 14:29,4.0,200, Information Exposure,nan
CVE-2016-10721,6/06/2018 14:46,2/05/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10504,6/06/2018 14:35,27/04/2018 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1430,6/06/2018 14:29,30/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8173,6/06/2018 13:47,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8160,6/06/2018 13:47,9/05/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-8153,6/06/2018 13:46,9/05/2018 19:29,5.8,20, Improper Input Validation,nan
CVE-2018-8114,6/06/2018 13:44,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10316,6/06/2018 13:36,24/04/2018 2:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-8122,6/06/2018 13:29,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17314,6/06/2018 13:29,30/04/2018 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-11624,6/06/2018 13:28,31/05/2018 16:29,6.8,416, Use After Free,nan
CVE-2018-0955,6/06/2018 13:27,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10503,6/06/2018 13:16,27/04/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0711,6/06/2018 13:15,30/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10095,6/06/2018 13:14,22/05/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2552,6/06/2018 13:11,27/04/2018 16:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-0585,6/06/2018 13:06,14/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0576,6/06/2018 13:06,14/05/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5228,6/06/2018 12:56,24/04/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10430,6/06/2018 12:56,26/04/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7465,6/06/2018 12:50,26/04/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10309,6/06/2018 12:44,24/04/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10527,5/06/2018 20:02,28/04/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8149,5/06/2018 19:55,9/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8154,5/06/2018 19:42,9/05/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8156,5/06/2018 19:38,9/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8155,5/06/2018 19:38,9/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8168,5/06/2018 18:48,9/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8157,5/06/2018 18:47,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8176,5/06/2018 18:40,23/05/2018 13:29,9.3,20, Improper Input Validation,nan
CVE-2018-8161,5/06/2018 18:39,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10259,5/06/2018 18:39,1/05/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10726,5/06/2018 18:34,4/05/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10554,5/06/2018 18:34,30/04/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10365,5/06/2018 18:33,1/05/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10364,5/06/2018 18:31,30/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1734,5/06/2018 18:06,24/04/2018 14:29,4.0,200, Information Exposure,nan
CVE-2017-2833,5/06/2018 14:51,24/04/2018 19:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-8179,5/06/2018 14:44,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18263,5/06/2018 14:37,28/04/2018 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2832,5/06/2018 14:34,24/04/2018 19:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-17557,5/06/2018 14:33,24/04/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8163,5/06/2018 14:16,9/05/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-8162,5/06/2018 14:16,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8148,5/06/2018 14:16,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8147,5/06/2018 14:13,9/05/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8133,5/06/2018 14:01,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8130,5/06/2018 14:01,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8128,5/06/2018 13:15,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8123,5/06/2018 13:04,9/05/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-8112,5/06/2018 13:04,9/05/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-0945,5/06/2018 13:04,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10678,5/06/2018 13:03,13/05/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1025,5/06/2018 13:00,9/05/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-1022,5/06/2018 12:59,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1021,5/06/2018 12:58,9/05/2018 19:29,4.3,200, Information Exposure,nan
CVE-2018-0954,5/06/2018 12:58,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0953,5/06/2018 12:52,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0951,5/06/2018 12:52,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0946,5/06/2018 12:52,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0943,5/06/2018 12:50,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8137,4/06/2018 17:35,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8178,4/06/2018 17:13,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8177,4/06/2018 17:13,9/05/2018 19:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10469,4/06/2018 16:49,27/04/2018 4:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-3855,4/06/2018 16:47,26/04/2018 20:29,6.8,415, Double Free,nan
CVE-2018-3851,4/06/2018 16:46,26/04/2018 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3845,4/06/2018 16:45,26/04/2018 20:29,6.8,415, Double Free,nan
CVE-2018-3844,4/06/2018 16:42,26/04/2018 20:29,6.8,416, Use After Free,nan
CVE-2013-5391,4/06/2018 16:23,27/04/2018 16:29,3.5,310, Cryptographic Issues,nan
CVE-2013-5461,4/06/2018 16:22,27/04/2018 16:29,4.0,255, Credentials Management,nan
CVE-2018-10529,4/06/2018 16:21,29/04/2018 3:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-10528,4/06/2018 16:15,29/04/2018 3:29,6.8,125, Out-of-bounds Read,nan
CVE-2013-3947,4/06/2018 16:11,24/04/2018 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-9113,4/06/2018 15:30,26/04/2018 6:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8974,4/06/2018 15:28,26/04/2018 6:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6739,4/06/2018 14:54,27/04/2018 16:29,5.5,284, Improper Access Control,nan
CVE-2017-17254,4/06/2018 14:24,24/04/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-17255,4/06/2018 14:08,24/04/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-17253,4/06/2018 14:07,24/04/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17252,4/06/2018 14:05,24/04/2018 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17251,4/06/2018 14:03,24/04/2018 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-1725,4/06/2018 13:57,24/04/2018 14:29,4.0,200, Information Exposure,nan
CVE-2018-10568,4/06/2018 13:50,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10294,4/06/2018 13:50,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10567,4/06/2018 13:49,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10566,4/06/2018 13:49,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10565,4/06/2018 13:49,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10564,4/06/2018 13:47,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10563,4/06/2018 13:47,2/05/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3841,4/06/2018 13:46,27/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8384,4/06/2018 13:39,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8383,4/06/2018 13:38,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8382,4/06/2018 13:35,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0882,4/06/2018 13:32,25/04/2018 20:29,4.0,200, Information Exposure,nan
CVE-2014-0881,4/06/2018 13:20,25/04/2018 20:29,5.8,284, Improper Access Control,nan
CVE-2016-4979,3/06/2018 1:29,6/07/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2016-1546,3/06/2018 1:29,6/07/2016 14:59,4.3,399, Resource Management Errors,nan
CVE-2015-2177,2/06/2018 1:29,7/03/2015 2:59,7.8,20, Improper Input Validation,nan
CVE-2017-17381,1/06/2018 1:29,7/12/2017 2:29,2.1,369, Divide By Zero,nan
CVE-2016-10010,1/06/2018 1:29,5/01/2017 2:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2018-6249,31/05/2018 1:29,2/04/2018 16:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-18221,31/05/2018 1:29,7/03/2018 8:29,4.9,20, Improper Input Validation,nan
CVE-2017-17449,31/05/2018 1:29,7/12/2017 0:29,1.9,200, Information Exposure,nan
CVE-2017-5571,30/05/2018 1:29,3/03/2017 15:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10395,30/05/2018 1:29,15/06/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4900,30/05/2018 1:29,14/10/2016 16:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2012-3350,29/05/2018 14:16,12/07/2012 21:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7758,29/05/2018 13:59,18/04/2018 20:29,3.3,613, Insufficient Session Expiration,nan
CVE-2014-3110,27/05/2018 1:29,24/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1116,25/05/2018 18:45,27/04/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-1479,25/05/2018 16:24,27/04/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1473,25/05/2018 16:24,27/04/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1363,25/05/2018 16:12,25/04/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1750,25/05/2018 16:11,25/04/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8880,25/05/2018 15:39,23/04/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-9245,25/05/2018 15:33,22/04/2018 13:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2811,25/05/2018 15:27,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-2924,25/05/2018 15:26,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2923,25/05/2018 15:26,24/04/2018 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5014,25/05/2018 15:25,25/04/2018 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-2839,25/05/2018 15:24,24/04/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-2838,25/05/2018 15:22,24/04/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-2837,25/05/2018 15:22,24/04/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-2836,25/05/2018 15:21,24/04/2018 19:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2835,25/05/2018 15:20,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-2834,25/05/2018 15:20,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12087,25/05/2018 14:50,24/04/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2812,25/05/2018 14:39,24/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-9921,25/05/2018 14:35,23/04/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10303,25/05/2018 14:35,23/04/2018 23:29,6.8,416, Use After Free,nan
CVE-2018-10267,25/05/2018 14:33,22/04/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12109,25/05/2018 14:32,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-12108,25/05/2018 14:31,24/04/2018 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2018-3850,25/05/2018 14:25,23/04/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-10295,25/05/2018 14:25,22/04/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14458,25/05/2018 14:24,23/04/2018 15:29,6.8,416, Use After Free,nan
CVE-2018-10265,25/05/2018 14:23,22/04/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-13073,25/05/2018 14:23,23/04/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10268,25/05/2018 13:35,22/04/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10302,25/05/2018 13:32,23/04/2018 19:29,6.8,416, Use After Free,nan
CVE-2018-6518,25/05/2018 12:58,26/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10329,25/05/2018 12:57,24/04/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10266,25/05/2018 12:57,22/04/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1724,25/05/2018 12:57,26/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1723,25/05/2018 12:56,26/04/2018 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-9102,25/05/2018 12:48,25/04/2018 20:29,4.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3836,25/05/2018 12:15,24/04/2018 19:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10366,25/05/2018 12:11,25/04/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10210,25/05/2018 12:08,25/04/2018 18:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-10422,25/05/2018 11:39,26/04/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14740,25/05/2018 11:33,26/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1721,25/05/2018 11:31,26/04/2018 14:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1722,25/05/2018 11:24,26/04/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9092,25/05/2018 1:29,11/05/2017 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8655,25/05/2018 1:29,8/12/2016 8:59,7.2,416, Use After Free,nan
CVE-2014-2908,25/05/2018 1:29,25/04/2014 5:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10312,24/05/2018 18:32,24/04/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10220,24/05/2018 18:32,19/04/2018 8:29,6.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-10368,24/05/2018 18:20,25/04/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10391,24/05/2018 18:14,26/04/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6917,24/05/2018 18:02,4/04/2018 14:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2018-6919,24/05/2018 18:01,4/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2014-0950,24/05/2018 17:54,20/04/2018 21:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10367,24/05/2018 17:42,25/04/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10311,24/05/2018 17:42,24/04/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10213,24/05/2018 17:28,25/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17902,24/05/2018 17:28,22/04/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10209,24/05/2018 17:27,25/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10208,24/05/2018 17:27,25/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10206,24/05/2018 17:27,25/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15640,24/05/2018 17:27,21/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9103,24/05/2018 17:21,25/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9101,24/05/2018 17:21,25/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9846,24/05/2018 17:12,7/04/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-10516,24/05/2018 17:11,27/04/2018 18:29,5.5,200, Information Exposure,nan
CVE-2018-10515,24/05/2018 17:11,27/04/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10234,24/05/2018 17:10,23/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3774,24/05/2018 16:27,19/04/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7762,24/05/2018 16:24,18/04/2018 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7761,24/05/2018 16:23,18/04/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2018-10521,24/05/2018 16:23,27/04/2018 18:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7760,24/05/2018 16:21,18/04/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2018-7759,24/05/2018 16:20,18/04/2018 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10522,24/05/2018 15:45,27/04/2018 18:29,4.0,200, Information Exposure,nan
CVE-2018-10523,24/05/2018 15:44,27/04/2018 18:29,5.0,200, Information Exposure,nan
CVE-2017-17889,24/05/2018 15:36,22/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9104,24/05/2018 15:35,25/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10126,24/05/2018 15:35,21/04/2018 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7930,24/05/2018 15:18,11/04/2018 17:29,2.9,200, Information Exposure,nan
CVE-2016-2169,24/05/2018 15:08,18/04/2018 16:29,5.0,17, DEPRECATED: Code,nan
CVE-2018-6508,24/05/2018 15:07,9/02/2018 20:29,6.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-2294,24/05/2018 14:40,5/07/2017 15:29,5.0,200, Information Exposure,nan
CVE-2015-6501,24/05/2018 14:24,12/01/2017 23:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-0564,24/05/2018 13:42,20/04/2018 13:29,5.8,384, Session Fixation,nan
CVE-2017-2295,24/05/2018 13:36,5/07/2017 15:29,6.0,502, Deserialization of Untrusted Data,nan
CVE-2015-7330,24/05/2018 13:35,11/04/2016 21:59,6.5,254, 7PK – Security Features,nan
CVE-2018-1000161,24/05/2018 12:08,18/04/2018 19:29,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17310,24/05/2018 12:07,19/04/2018 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8826,24/05/2018 12:06,20/04/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2017-18222,24/05/2018 1:29,8/03/2018 14:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18193,24/05/2018 1:29,22/02/2018 15:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17975,24/05/2018 1:29,30/12/2017 1:29,4.9,416, Use After Free,nan
CVE-2013-0663,24/05/2018 1:29,4/04/2013 11:58,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8116,23/05/2018 18:50,12/04/2018 1:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0950,23/05/2018 18:46,12/04/2018 1:29,4.3,200, Information Exposure,nan
CVE-2016-10258,23/05/2018 18:40,11/04/2018 14:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10017,23/05/2018 18:14,11/04/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-10313,23/05/2018 18:10,24/04/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7539,23/05/2018 18:08,17/04/2018 20:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10374,23/05/2018 18:07,25/04/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0900,23/05/2018 18:01,20/04/2018 21:29,6.5,20, Improper Input Validation,nan
CVE-2016-8220,23/05/2018 16:46,18/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2011-5158,23/05/2018 16:46,7/09/2012 10:32,9.3,426, Untrusted Search Path,nan
CVE-2018-9153,23/05/2018 14:53,16/04/2018 9:58,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10189,23/05/2018 14:41,17/04/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-6323,23/05/2018 14:38,16/04/2018 19:29,5.2,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10122,23/05/2018 14:33,16/04/2018 9:58,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17308,23/05/2018 14:28,11/04/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-1701,23/05/2018 14:28,23/04/2018 13:29,4.0,326, Inadequate Encryption Strength,nan
CVE-2017-15327,23/05/2018 14:26,11/04/2018 17:29,4.0,200, Information Exposure,nan
CVE-2017-1473,23/05/2018 14:25,23/04/2018 13:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-9093,23/05/2018 14:22,16/04/2018 19:29,6.9,20, Improper Input Validation,nan
CVE-2018-7244,23/05/2018 13:15,18/04/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-6413,23/05/2018 13:02,18/04/2018 15:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000159,23/05/2018 13:02,18/04/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2018-7502,23/05/2018 1:29,23/03/2018 17:29,7.2,20, Improper Input Validation,nan
CVE-2017-6225,23/05/2018 1:29,8/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10080,22/05/2018 18:46,13/04/2018 4:29,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-9563,22/05/2018 18:39,12/04/2018 21:29,4.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2014-8422,22/05/2018 18:38,12/04/2018 21:29,6.8,331, Insufficient Entropy,nan
CVE-2014-8421,22/05/2018 18:32,12/04/2018 21:29,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-9118,22/05/2018 18:11,12/04/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10074,22/05/2018 18:11,12/04/2018 18:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-6910,22/05/2018 18:11,12/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2014-6633,22/05/2018 17:45,12/04/2018 15:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-6309,22/05/2018 17:34,12/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2016-9094,22/05/2018 17:18,16/04/2018 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-3843,22/05/2018 17:11,19/04/2018 19:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-3842,22/05/2018 17:10,19/04/2018 19:29,6.8,824, Access of Uninitialized Pointer,nan
CVE-2018-10236,22/05/2018 17:10,19/04/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10235,22/05/2018 17:10,19/04/2018 18:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8118,22/05/2018 17:09,19/04/2018 16:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10222,22/05/2018 17:08,19/04/2018 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10219,22/05/2018 17:08,19/04/2018 8:29,5.0,200, Information Exposure,nan
CVE-2018-7899,22/05/2018 16:57,19/04/2018 14:29,7.1,415, Double Free,nan
CVE-2018-8831,22/05/2018 16:55,18/04/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10199,22/05/2018 16:53,18/04/2018 15:29,7.5,416, Use After Free,nan
CVE-2014-0931,22/05/2018 16:45,20/04/2018 21:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7920,22/05/2018 16:39,19/04/2018 14:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-10137,22/05/2018 16:33,16/04/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10178,22/05/2018 16:32,17/04/2018 3:29,5.0,200, Information Exposure,nan
CVE-2015-1952,22/05/2018 16:32,16/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10133,22/05/2018 16:31,16/04/2018 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10132,22/05/2018 16:30,16/04/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9137,22/05/2018 16:21,19/04/2018 8:29,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10070,22/05/2018 16:20,16/04/2018 21:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-1000167,22/05/2018 16:01,18/04/2018 19:29,9.3,502, Deserialization of Untrusted Data,nan
CVE-2017-2871,22/05/2018 15:58,17/04/2018 20:29,5.8,287, Improper Authentication,nan
CVE-2017-17313,22/05/2018 15:57,19/04/2018 14:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9645,22/05/2018 15:57,10/04/2018 22:29,4.0,284, Improper Access Control,nan
CVE-2018-10176,22/05/2018 15:50,20/04/2018 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10175,22/05/2018 15:48,20/04/2018 21:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6960,22/05/2018 15:35,20/04/2018 13:29,6.5,287, Improper Authentication,nan
CVE-2017-8315,22/05/2018 15:33,20/04/2018 19:29,7.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-14459,22/05/2018 15:31,11/04/2018 16:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-10174,22/05/2018 15:25,20/04/2018 21:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-6496,22/05/2018 15:22,24/08/2015 14:59,5.0,17, DEPRECATED: Code,nan
CVE-2018-10173,22/05/2018 15:18,20/04/2018 21:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-10079,22/05/2018 15:18,20/04/2018 21:29,2.1,275, Permission Issues,nan
CVE-2014-0927,22/05/2018 15:17,20/04/2018 21:29,4.3,287, Improper Authentication,nan
CVE-2014-0912,22/05/2018 15:15,20/04/2018 21:29,5.0,200, Information Exposure,nan
CVE-2014-6112,22/05/2018 15:14,20/04/2018 20:29,4.3,200, Information Exposure,nan
CVE-2014-6111,22/05/2018 15:14,20/04/2018 20:29,2.1,255, Credentials Management,nan
CVE-2018-10253,22/05/2018 15:12,21/04/2018 2:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6109,22/05/2018 15:12,20/04/2018 20:29,3.5,284, Improper Access Control,nan
CVE-2014-6108,22/05/2018 15:11,20/04/2018 20:29,4.3,200, Information Exposure,nan
CVE-2014-4782,22/05/2018 15:10,20/04/2018 20:29,4.0,200, Information Exposure,nan
CVE-2017-3776,22/05/2018 15:06,19/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2014-2294,22/05/2018 15:05,17/04/2018 19:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10249,22/05/2018 15:00,20/04/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6306,22/05/2018 14:38,19/04/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-1445,22/05/2018 14:36,17/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1292,22/05/2018 14:34,20/04/2018 18:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1291,22/05/2018 14:29,20/04/2018 18:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1290,22/05/2018 14:25,20/04/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1289,22/05/2018 14:20,20/04/2018 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9285,22/05/2018 13:18,4/04/2018 19:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-9284,22/05/2018 13:17,4/04/2018 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9126,22/05/2018 13:16,4/04/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-9115,22/05/2018 13:10,4/04/2018 19:29,5.0,20, Improper Input Validation,nan
CVE-2018-1028,21/05/2018 17:56,12/04/2018 1:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2069,21/05/2018 17:30,16/04/2018 9:58,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10230,21/05/2018 17:28,19/04/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10221,21/05/2018 17:28,19/04/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10136,21/05/2018 17:23,16/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9990,21/05/2018 17:22,18/04/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9987,21/05/2018 17:22,18/04/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8071,21/05/2018 17:22,18/04/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0560,21/05/2018 17:10,16/04/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-6547,21/05/2018 17:09,13/04/2018 16:29,9.4,287, Improper Authentication,nan
CVE-2018-6546,21/05/2018 17:07,13/04/2018 16:29,10.0,287, Improper Authentication,nan
CVE-2018-10191,21/05/2018 16:58,17/04/2018 21:29,7.5,416, Use After Free,nan
CVE-2018-10250,21/05/2018 16:55,20/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10248,21/05/2018 16:40,20/04/2018 17:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10188,21/05/2018 16:39,19/04/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10185,21/05/2018 16:25,17/04/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10183,21/05/2018 16:21,17/04/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10138,21/05/2018 16:20,16/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10110,21/05/2018 16:19,18/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000163,21/05/2018 16:14,18/04/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000162,21/05/2018 16:13,18/04/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000160,21/05/2018 16:11,18/04/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9275,21/05/2018 15:33,4/04/2018 18:29,6.4,200, Information Exposure,nan
CVE-2017-6148,21/05/2018 15:18,13/04/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2017-6143,21/05/2018 15:16,13/04/2018 13:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-0561,21/05/2018 15:05,16/04/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-0562,21/05/2018 15:04,16/04/2018 14:29,9.3,426, Untrusted Search Path,nan
CVE-2018-9035,21/05/2018 13:44,4/04/2018 19:29,6.8,20, Improper Input Validation,nan
CVE-2018-9119,21/05/2018 13:34,4/04/2018 18:29,3.6,306, Missing Authentication for Critical Function,nan
CVE-2018-9249,21/05/2018 13:15,4/04/2018 15:29,7.5,287, Improper Authentication,nan
CVE-2018-9248,21/05/2018 13:15,4/04/2018 15:29,7.5,287, Improper Authentication,nan
CVE-2018-8941,21/05/2018 13:14,3/04/2018 23:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9240,21/05/2018 13:13,3/04/2018 22:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-8049,21/05/2018 13:12,3/04/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-3689,21/05/2018 13:09,3/04/2018 16:29,2.1,20, Improper Input Validation,nan
CVE-2018-0493,21/05/2018 13:03,3/04/2018 7:29,6.5,416, Use After Free,nan
CVE-2018-9205,21/05/2018 12:37,4/04/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8374,20/05/2018 1:29,1/05/2017 1:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-8373,20/05/2018 1:29,1/05/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12149,20/05/2018 1:29,4/10/2017 21:01,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-5809,20/05/2018 1:29,13/02/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2279,20/05/2018 1:29,2/03/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3246,20/05/2018 1:29,11/08/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3245,20/05/2018 1:29,11/08/2015 14:59,2.1,20, Improper Input Validation,nan
CVE-2017-1486,18/05/2018 17:08,23/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1686,18/05/2018 17:08,16/04/2018 9:58,5.0,200, Information Exposure,nan
CVE-2018-10245,18/05/2018 17:06,20/04/2018 17:29,5.0,200, Information Exposure,nan
CVE-2014-0883,18/05/2018 17:06,20/04/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9169,18/05/2018 17:02,16/04/2018 9:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9646,18/05/2018 16:02,13/04/2018 15:29,5.0,287, Improper Authentication,nan
CVE-2017-0356,18/05/2018 15:40,13/04/2018 15:29,7.5,287, Improper Authentication,nan
CVE-2018-4863,18/05/2018 15:32,5/04/2018 17:29,2.1,254, 7PK – Security Features,nan
CVE-2017-0357,18/05/2018 14:39,13/04/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0150,18/05/2018 14:37,12/04/2018 21:29,7.5,284, Improper Access Control,nan
CVE-2014-1400,18/05/2018 14:31,10/04/2018 15:29,4.0,284, Improper Access Control,nan
CVE-2014-1398,18/05/2018 14:31,10/04/2018 15:29,4.0,284, Improper Access Control,nan
CVE-2015-8235,18/05/2018 14:23,7/06/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1145,18/05/2018 14:21,19/04/2018 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10298,18/05/2018 14:20,22/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10297,18/05/2018 14:18,22/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10117,18/05/2018 14:15,16/04/2018 9:58,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12088,18/05/2018 14:14,5/04/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-10108,18/05/2018 14:13,16/04/2018 9:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10107,18/05/2018 14:13,16/04/2018 9:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10106,18/05/2018 13:59,16/04/2018 9:58,7.5,200, Information Exposure,nan
CVE-2018-10097,18/05/2018 13:54,16/04/2018 9:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10102,18/05/2018 13:50,16/04/2018 9:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10100,18/05/2018 13:49,16/04/2018 9:58,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-5254,18/05/2018 13:35,12/04/2018 21:29,5.0,417, Channel and Path Errors,nan
CVE-2015-0153,18/05/2018 13:35,12/04/2018 21:29,5.0,320, Key Management Errors,nan
CVE-2018-3889,18/05/2018 13:29,12/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2014-8888,18/05/2018 13:29,12/04/2018 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0152,18/05/2018 13:28,12/04/2018 21:29,5.0,200, Information Exposure,nan
CVE-2014-3999,18/05/2018 13:23,10/04/2018 15:29,6.8,287, Improper Authentication,nan
CVE-2014-3114,18/05/2018 13:21,10/04/2018 15:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-2073,18/05/2018 13:20,10/04/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1399,18/05/2018 12:19,10/04/2018 15:29,4.0,284, Improper Access Control,nan
CVE-2013-2250,18/05/2018 12:17,15/08/2013 16:55,10.0,20, Improper Input Validation,nan
CVE-2013-2137,18/05/2018 12:17,15/08/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0177,18/05/2018 12:17,30/01/2014 15:06,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1621,18/05/2018 12:04,19/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7298,18/05/2018 1:29,29/03/2017 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5240,18/05/2018 1:29,27/02/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2016-2518,18/05/2018 1:29,30/01/2017 21:59,5.0,125, Out-of-bounds Read,nan
CVE-2015-8898,18/05/2018 1:29,15/03/2017 19:59,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8897,18/05/2018 1:29,15/03/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2015-8896,18/05/2018 1:29,15/03/2017 19:59,4.3,189, Numeric Errors,nan
CVE-2015-8895,18/05/2018 1:29,15/03/2017 19:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2015-7979,18/05/2018 1:29,30/01/2017 21:59,5.0,19, Data Processing Errors,nan
CVE-2015-7978,18/05/2018 1:29,30/01/2017 21:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2015-7977,18/05/2018 1:29,30/01/2017 21:59,4.3,476, NULL Pointer Dereference,nan
CVE-2015-7852,18/05/2018 1:29,7/08/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2015-7704,18/05/2018 1:29,7/08/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2015-7703,18/05/2018 1:29,24/07/2017 14:29,5.8,20, Improper Input Validation,nan
CVE-2015-7702,18/05/2018 1:29,7/08/2017 20:29,4.0,20, Improper Input Validation,nan
CVE-2015-7701,18/05/2018 1:29,7/08/2017 20:29,7.8,399, Resource Management Errors,nan
CVE-2015-7692,18/05/2018 1:29,7/08/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2015-7691,18/05/2018 1:29,7/08/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2015-5195,18/05/2018 1:29,21/07/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2015-5194,18/05/2018 1:29,21/07/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2015-5073,18/05/2018 1:29,13/12/2016 16:59,6.4,200, Information Exposure,nan
CVE-2015-3217,18/05/2018 1:29,13/12/2016 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1003,17/05/2018 17:44,12/04/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6959,17/05/2018 17:43,13/04/2018 13:29,7.5,384, Session Fixation,nan
CVE-2018-8954,17/05/2018 17:42,11/04/2018 17:29,7.5,20, Improper Input Validation,nan
CVE-2018-8953,17/05/2018 17:42,11/04/2018 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14611,17/05/2018 17:41,10/04/2018 15:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-8092,17/05/2018 17:39,18/04/2018 8:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10225,17/05/2018 17:38,19/04/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10135,17/05/2018 17:38,16/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14323,17/05/2018 17:34,10/04/2018 15:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-0172,17/05/2018 17:34,10/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-10078,17/05/2018 17:16,20/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10077,17/05/2018 17:16,20/04/2018 21:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-10066,17/05/2018 17:15,13/04/2018 13:29,6.8,295, Improper Certificate Validation,nan
CVE-2015-8312,17/05/2018 16:09,13/05/2016 16:59,7.2,189, Numeric Errors,nan
CVE-2017-0372,17/05/2018 15:25,13/04/2018 16:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-10016,17/05/2018 15:19,11/04/2018 5:29,4.3,369, Divide By Zero,nan
CVE-2018-9851,17/05/2018 15:01,8/04/2018 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1037,17/05/2018 14:55,12/04/2018 1:29,4.3,200, Information Exposure,nan
CVE-2018-10111,17/05/2018 14:52,16/04/2018 9:58,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1957,17/05/2018 14:52,10/04/2018 15:29,3.5,200, Information Exposure,nan
CVE-2018-10112,17/05/2018 14:48,16/04/2018 9:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-10114,17/05/2018 14:45,16/04/2018 9:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6412,17/05/2018 14:38,12/04/2018 21:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-9037,17/05/2018 13:59,10/04/2018 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-0998,17/05/2018 13:57,12/04/2018 1:29,4.3,200, Information Exposure,nan
CVE-2014-0158,17/05/2018 13:37,10/04/2018 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5510,17/05/2018 13:35,13/04/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-0551,17/05/2018 13:33,16/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0549,17/05/2018 13:33,16/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0530,17/05/2018 13:24,16/04/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10224,17/05/2018 13:10,19/04/2018 8:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10223,17/05/2018 13:09,19/04/2018 8:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0532,17/05/2018 13:09,16/04/2018 14:29,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9999,17/05/2018 13:08,18/04/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9986,17/05/2018 13:07,18/04/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3163,17/05/2018 1:29,30/08/2017 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16741,17/05/2018 1:29,12/01/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-13011,17/05/2018 1:29,14/09/2017 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11543,17/05/2018 1:29,23/07/2017 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6879,16/05/2018 18:42,12/04/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2018-9841,16/05/2018 18:41,7/04/2018 7:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-6903,16/05/2018 18:41,12/04/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2018-8772,16/05/2018 18:39,10/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3868,16/05/2018 18:39,12/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-10321,16/05/2018 18:37,24/04/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10318,16/05/2018 18:37,24/04/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10320,16/05/2018 18:23,24/04/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10319,16/05/2018 18:22,24/04/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3862,16/05/2018 18:11,12/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3861,16/05/2018 18:10,12/04/2018 19:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-0989,16/05/2018 18:08,12/04/2018 1:29,4.3,200, Information Exposure,nan
CVE-2018-0987,16/05/2018 18:07,12/04/2018 1:29,4.3,200, Information Exposure,nan
CVE-2018-0981,16/05/2018 18:05,12/04/2018 1:29,2.6,200, Information Exposure,nan
CVE-2017-18133,16/05/2018 18:04,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11011,16/05/2018 18:04,11/04/2018 15:29,10.0,416, Use After Free,nan
CVE-2017-1790,16/05/2018 18:01,12/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7660,16/05/2018 17:59,11/04/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7659,16/05/2018 15:41,11/04/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1007,16/05/2018 15:34,12/04/2018 1:29,2.6,200, Information Exposure,nan
CVE-2018-6935,16/05/2018 15:32,12/04/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6904,16/05/2018 15:30,12/04/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9330,16/05/2018 15:29,7/04/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5227,16/05/2018 15:26,10/04/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10026,16/05/2018 15:26,11/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9155,16/05/2018 15:24,12/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10109,16/05/2018 15:21,16/04/2018 9:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6958,16/05/2018 15:20,13/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10121,16/05/2018 15:20,16/04/2018 9:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4557,16/05/2018 14:58,12/04/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13678,16/05/2018 14:56,11/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0151,16/05/2018 14:56,12/04/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10000,16/05/2018 14:55,11/04/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9993,16/05/2018 14:36,10/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6182,16/05/2018 14:34,9/04/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9839,16/05/2018 14:27,11/04/2018 3:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9838,16/05/2018 14:27,11/04/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18259,16/05/2018 14:25,11/04/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18260,16/05/2018 14:24,11/04/2018 3:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0892,16/05/2018 14:10,12/04/2018 1:29,4.3,200, Information Exposure,nan
CVE-2018-0972,16/05/2018 13:48,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0556,16/05/2018 12:53,9/04/2018 13:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0555,16/05/2018 12:52,9/04/2018 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0554,16/05/2018 12:52,9/04/2018 13:29,8.3,306, Missing Authentication for Critical Function,nan
CVE-2018-10201,16/05/2018 1:29,20/04/2018 8:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12090,15/05/2018 18:52,5/04/2018 21:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2014-2359,15/05/2018 18:41,6/04/2018 16:29,4.3,200, Information Exposure,nan
CVE-2014-3539,15/05/2018 18:39,6/04/2018 16:29,7.5,254, 7PK – Security Features,nan
CVE-2018-10068,15/05/2018 18:31,12/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9864,15/05/2018 18:30,9/04/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9838,15/05/2018 18:25,6/04/2018 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-10023,15/05/2018 18:10,11/04/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000153,15/05/2018 18:10,5/04/2018 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6874,15/05/2018 18:08,4/04/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000149,15/05/2018 18:06,5/04/2018 13:29,6.8,320, Key Management Errors,nan
CVE-2018-1284,15/05/2018 17:55,5/04/2018 13:29,4.3,200, Information Exposure,nan
CVE-2018-1282,15/05/2018 17:55,5/04/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000148,15/05/2018 17:17,5/04/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-9127,15/05/2018 16:16,2/04/2018 17:29,7.5,295, Improper Certificate Validation,nan
CVE-2018-1000142,15/05/2018 15:39,5/04/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-9165,15/05/2018 15:35,1/04/2018 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-9158,15/05/2018 15:35,1/04/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-1000150,15/05/2018 15:30,5/04/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-1000143,15/05/2018 15:30,5/04/2018 13:29,2.1,200, Information Exposure,nan
CVE-2018-1000147,15/05/2018 15:19,5/04/2018 13:29,4.0,200, Information Exposure,nan
CVE-2018-1000151,15/05/2018 15:16,5/04/2018 13:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-0997,15/05/2018 14:46,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1018,15/05/2018 14:45,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1001,15/05/2018 14:45,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0996,15/05/2018 14:45,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0991,15/05/2018 14:45,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0988,15/05/2018 14:45,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9856,15/05/2018 14:20,9/04/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0870,15/05/2018 14:06,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1020,15/05/2018 14:05,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1004,15/05/2018 14:05,12/04/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1023,15/05/2018 13:39,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1027,15/05/2018 13:38,12/04/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1011,15/05/2018 13:38,12/04/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0920,15/05/2018 13:38,12/04/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1029,15/05/2018 13:37,12/04/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9985,15/05/2018 13:24,10/04/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0362,15/05/2018 13:21,13/04/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-3593,15/05/2018 13:19,11/04/2018 15:29,10.0,415, Double Free,nan
CVE-2018-3589,15/05/2018 13:19,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3590,15/05/2018 13:18,11/04/2018 15:29,10.0,416, Use After Free,nan
CVE-2018-9157,15/05/2018 13:10,1/04/2018 18:29,7.6,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9156,15/05/2018 13:10,1/04/2018 18:29,7.6,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6849,15/05/2018 13:09,1/04/2018 18:29,4.3,200, Information Exposure,nan
CVE-2018-9852,15/05/2018 12:53,8/04/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-9230,15/05/2018 12:53,2/04/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9162,15/05/2018 12:52,31/03/2018 22:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-0545,15/05/2018 12:52,9/04/2018 13:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1000144,15/05/2018 12:02,5/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1308,14/05/2018 18:38,9/04/2018 13:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-18125,14/05/2018 18:35,11/04/2018 15:29,5.0,384, Session Fixation,nan
CVE-2018-0553,14/05/2018 18:34,9/04/2018 13:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-18072,14/05/2018 17:53,11/04/2018 15:29,5.0,200, Information Exposure,nan
CVE-2017-0361,14/05/2018 17:09,13/04/2018 16:29,2.1,200, Information Exposure,nan
CVE-2017-0370,14/05/2018 15:41,13/04/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-0887,14/05/2018 15:36,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2017-0368,14/05/2018 15:35,13/04/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-9848,14/05/2018 15:30,7/04/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-0366,14/05/2018 15:28,13/04/2018 16:29,4.0,20, Improper Input Validation,nan
CVE-2017-0364,14/05/2018 15:26,13/04/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-9847,14/05/2018 15:25,7/04/2018 21:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-18100,14/05/2018 15:23,10/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0363,14/05/2018 15:20,13/04/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-0960,14/05/2018 14:44,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0970,14/05/2018 14:42,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2017-0365,14/05/2018 14:42,13/04/2018 16:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0971,14/05/2018 14:40,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0969,14/05/2018 14:34,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0968,14/05/2018 14:33,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0973,14/05/2018 14:30,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0974,14/05/2018 14:29,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-0975,14/05/2018 14:27,12/04/2018 1:29,2.1,200, Information Exposure,nan
CVE-2018-9850,14/05/2018 13:56,8/04/2018 2:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10073,14/05/2018 13:49,12/04/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5828,14/05/2018 13:48,3/04/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11075,14/05/2018 13:48,3/04/2018 17:29,4.6,416, Use After Free,nan
CVE-2017-18074,14/05/2018 13:19,11/04/2018 15:29,10.0,20, Improper Input Validation,nan
CVE-2017-18144,14/05/2018 13:06,11/04/2018 15:29,10.0,416, Use After Free,nan
CVE-2017-18146,14/05/2018 13:04,11/04/2018 15:29,10.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-18127,14/05/2018 13:01,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1185,14/05/2018 1:29,3/02/2018 16:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2008-4687,13/05/2018 1:29,22/10/2008 18:00,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5604,12/05/2018 1:29,1/03/2013 5:40,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-18139,11/05/2018 18:15,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18145,11/05/2018 18:12,11/04/2018 15:29,10.0,416, Use After Free,nan
CVE-2017-8275,11/05/2018 18:11,11/04/2018 15:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2017-18140,11/05/2018 18:11,11/04/2018 15:29,10.0,416, Use After Free,nan
CVE-2017-18138,11/05/2018 18:10,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18136,11/05/2018 18:10,11/04/2018 15:29,10.0,416, Use After Free,nan
CVE-2018-10128,11/05/2018 18:09,16/04/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10127,11/05/2018 18:09,16/04/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6251,11/05/2018 17:37,2/04/2018 16:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5825,11/05/2018 17:37,3/04/2018 17:29,4.6,416, Use After Free,nan
CVE-2018-5824,11/05/2018 17:36,3/04/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5823,11/05/2018 17:35,3/04/2018 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9327,11/05/2018 17:33,7/04/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-9325,11/05/2018 17:33,7/04/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-8719,11/05/2018 17:33,4/04/2018 19:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-5826,11/05/2018 17:27,3/04/2018 17:29,4.3,416, Use After Free,nan
CVE-2018-6250,11/05/2018 17:16,2/04/2018 16:29,7.2,476, NULL Pointer Dereference,nan
CVE-2018-6248,11/05/2018 17:16,2/04/2018 16:29,7.2,125, Out-of-bounds Read,nan
CVE-2018-9161,11/05/2018 17:04,31/03/2018 22:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-6247,11/05/2018 14:12,2/04/2018 16:29,7.2,476, NULL Pointer Dereference,nan
CVE-2015-9136,11/05/2018 14:05,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9989,11/05/2018 14:05,18/04/2018 14:29,10.0,129, Improper Validation of Array Index,nan
CVE-2014-9986,11/05/2018 14:05,18/04/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2018-9844,11/05/2018 14:04,7/04/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9166,11/05/2018 14:04,18/04/2018 14:29,5.0,19, Data Processing Errors,nan
CVE-2018-10096,11/05/2018 14:03,13/04/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10028,11/05/2018 14:03,11/04/2018 18:29,5.0,200, Information Exposure,nan
CVE-2014-6169,11/05/2018 14:03,12/04/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6120,11/05/2018 14:00,12/04/2018 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-6934,11/05/2018 13:59,12/04/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6902,11/05/2018 13:16,12/04/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6870,11/05/2018 13:16,12/04/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9992,11/05/2018 13:11,11/04/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6900,11/05/2018 13:11,12/04/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9991,11/05/2018 13:09,11/04/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9137,11/05/2018 12:53,18/04/2018 14:29,5.0,19, Data Processing Errors,nan
CVE-2018-9928,11/05/2018 12:45,10/04/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3888,11/05/2018 12:44,11/04/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3887,11/05/2018 12:44,11/04/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-3886,11/05/2018 12:43,11/04/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-1019,11/05/2018 12:42,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0995,11/05/2018 12:42,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0994,11/05/2018 11:39,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0993,11/05/2018 11:39,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0990,11/05/2018 11:39,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0979,11/05/2018 11:37,12/04/2018 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18142,11/05/2018 11:37,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18135,11/05/2018 11:37,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18134,11/05/2018 11:37,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18132,11/05/2018 11:36,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3592,11/05/2018 11:35,11/04/2018 15:29,10.0,476, NULL Pointer Dereference,nan
CVE-2017-18137,11/05/2018 11:35,11/04/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9101,11/05/2018 1:29,21/05/2017 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-5712,11/05/2018 1:29,21/11/2017 14:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5711,11/05/2018 1:29,21/11/2017 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5707,11/05/2018 1:29,21/11/2017 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5706,11/05/2018 1:29,21/11/2017 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5705,11/05/2018 1:29,21/11/2017 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2680,11/05/2018 1:29,11/05/2017 1:29,6.1,20, Improper Input Validation,nan
CVE-2017-14496,11/05/2018 1:29,3/10/2017 1:29,7.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-14491,11/05/2018 1:29,4/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13704,11/05/2018 1:29,3/10/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2017-12821,11/05/2018 1:29,4/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12820,11/05/2018 1:29,4/10/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12818,11/05/2018 1:29,4/10/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11498,11/05/2018 1:29,3/10/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11497,11/05/2018 1:29,3/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11496,11/05/2018 1:29,3/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2126,11/05/2018 1:29,11/05/2017 14:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10142,11/05/2018 1:29,14/01/2017 7:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-9145,10/05/2018 16:41,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9176,10/05/2018 16:39,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9182,10/05/2018 16:38,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9157,10/05/2018 16:36,18/04/2018 14:29,10.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-9122,10/05/2018 16:34,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9135,10/05/2018 16:24,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9127,10/05/2018 16:24,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2014-10052,10/05/2018 16:24,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9119,10/05/2018 16:23,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9129,10/05/2018 16:22,18/04/2018 14:29,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-13293,10/05/2018 16:17,4/04/2018 16:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-13292,10/05/2018 16:16,4/04/2018 16:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-1000154,10/05/2018 14:43,5/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1975,10/05/2018 14:21,3/04/2018 22:29,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-3624,10/05/2018 14:13,5/04/2018 16:29,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8813,10/05/2018 13:36,4/04/2018 15:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10718,10/05/2018 13:28,4/04/2018 2:29,5.0,20, Improper Input Validation,nan
CVE-2018-9172,10/05/2018 13:14,1/04/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6811,10/05/2018 13:12,11/04/2017 14:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7472,10/05/2018 13:11,3/04/2018 13:29,5.0,20, Improper Input Validation,nan
CVE-2018-9331,10/05/2018 13:02,7/04/2018 2:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18096,10/05/2018 13:02,4/04/2018 12:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-8930,10/05/2018 1:29,22/03/2018 14:29,9.3,20, Improper Input Validation,nan
CVE-2018-1091,10/05/2018 1:29,27/03/2018 21:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9191,10/05/2018 1:29,28/11/2016 3:59,4.9,399, Resource Management Errors,nan
CVE-2016-8207,10/05/2018 1:29,14/01/2017 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8206,10/05/2018 1:29,14/01/2017 19:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8205,10/05/2018 1:29,14/01/2017 19:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8204,10/05/2018 1:29,14/01/2017 19:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0793,10/05/2018 1:29,1/04/2016 19:59,5.0,200, Information Exposure,nan
CVE-2013-4786,10/05/2018 1:29,8/07/2013 22:55,7.8,255, Credentials Management,nan
CVE-2017-7531,9/05/2018 21:46,17/07/2017 17:29,4.0,200, Information Exposure,nan
CVE-2015-9128,9/05/2018 21:11,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9131,9/05/2018 21:09,18/04/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2015-9132,9/05/2018 21:08,18/04/2018 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2015-9133,9/05/2018 21:07,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9138,9/05/2018 21:06,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9134,9/05/2018 21:06,18/04/2018 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2015-9140,9/05/2018 21:05,18/04/2018 14:29,5.0,284, Improper Access Control,nan
CVE-2015-9139,9/05/2018 21:05,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9181,9/05/2018 21:02,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9144,9/05/2018 21:02,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9188,9/05/2018 21:01,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9126,9/05/2018 21:00,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9124,9/05/2018 20:59,18/04/2018 14:29,8.5,476, NULL Pointer Dereference,nan
CVE-2015-9120,9/05/2018 20:59,18/04/2018 14:29,10.0,388, 7PK – Errors,nan
CVE-2014-9997,9/05/2018 20:58,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9988,9/05/2018 20:57,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10063,9/05/2018 20:57,18/04/2018 14:29,5.0,254, 7PK – Security Features,nan
CVE-2014-10062,9/05/2018 20:56,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2014-10057,9/05/2018 20:54,18/04/2018 14:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-10056,9/05/2018 20:53,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10055,9/05/2018 20:53,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2014-10053,9/05/2018 20:52,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2014-10051,9/05/2018 20:52,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2014-10043,9/05/2018 20:51,18/04/2018 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10039,9/05/2018 20:50,18/04/2018 14:29,10.0,19, Data Processing Errors,nan
CVE-2018-8814,9/05/2018 20:40,4/04/2018 15:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5072,9/05/2018 20:40,6/04/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5034,9/05/2018 19:00,6/04/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8908,9/05/2018 18:47,31/03/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10048,9/05/2018 18:45,11/04/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9309,9/05/2018 18:38,5/04/2018 1:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9247,9/05/2018 18:38,4/04/2018 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10050,9/05/2018 18:29,11/04/2018 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-10052,9/05/2018 18:08,11/04/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10051,9/05/2018 18:08,11/04/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9857,9/05/2018 18:07,9/04/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10049,9/05/2018 18:07,11/04/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9328,9/05/2018 18:06,5/04/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7035,9/05/2018 18:05,5/04/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18098,9/05/2018 18:04,6/04/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18097,9/05/2018 18:04,6/04/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9034,9/05/2018 18:00,4/04/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6905,9/05/2018 17:53,8/04/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10046,9/05/2018 17:40,18/04/2018 14:29,10.0,416, Use After Free,nan
CVE-2014-10045,9/05/2018 17:40,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10047,9/05/2018 17:39,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2014-10048,9/05/2018 17:38,18/04/2018 14:29,10.0,129, Improper Validation of Array Index,nan
CVE-2014-10050,9/05/2018 17:37,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2014-10054,9/05/2018 17:36,18/04/2018 14:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-10058,9/05/2018 17:35,18/04/2018 14:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-10059,9/05/2018 17:33,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2014-10044,9/05/2018 17:33,18/04/2018 14:29,5.0,129, Improper Validation of Array Index,nan
CVE-2014-9985,9/05/2018 17:18,18/04/2018 14:29,10.0,388, 7PK – Errors,nan
CVE-2014-9991,9/05/2018 17:17,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9990,9/05/2018 17:17,18/04/2018 14:29,10.0,129, Improper Validation of Array Index,nan
CVE-2014-9987,9/05/2018 17:17,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9996,9/05/2018 17:16,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9995,9/05/2018 17:16,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9994,9/05/2018 17:16,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2014-9993,9/05/2018 17:16,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9108,9/05/2018 17:15,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2014-9998,9/05/2018 17:15,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9109,9/05/2018 17:09,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9111,9/05/2018 17:06,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9110,9/05/2018 17:06,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9149,9/05/2018 17:03,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9113,9/05/2018 16:59,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9112,9/05/2018 16:59,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9115,9/05/2018 16:58,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9114,9/05/2018 16:58,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9116,9/05/2018 16:57,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9118,9/05/2018 16:56,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9123,9/05/2018 16:55,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9141,9/05/2018 16:54,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9142,9/05/2018 16:52,18/04/2018 14:29,10.0,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2015-9143,9/05/2018 16:47,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9147,9/05/2018 16:46,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9146,9/05/2018 16:46,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9148,9/05/2018 16:45,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9150,9/05/2018 16:44,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9170,9/05/2018 16:35,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9169,9/05/2018 16:35,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9167,9/05/2018 16:35,18/04/2018 14:29,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2015-9165,9/05/2018 16:31,18/04/2018 14:29,10.0,415, Double Free,nan
CVE-2015-9164,9/05/2018 16:30,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9163,9/05/2018 16:29,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9162,9/05/2018 16:26,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9161,9/05/2018 16:26,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9160,9/05/2018 16:25,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9159,9/05/2018 16:23,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9158,9/05/2018 16:23,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9156,9/05/2018 16:23,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9153,9/05/2018 16:22,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9152,9/05/2018 16:19,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2015-9151,9/05/2018 16:18,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9172,9/05/2018 15:32,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9173,9/05/2018 15:31,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9171,9/05/2018 15:31,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9174,9/05/2018 15:30,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9175,9/05/2018 15:29,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9177,9/05/2018 15:28,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9178,9/05/2018 15:27,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9183,9/05/2018 15:26,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9180,9/05/2018 15:26,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9179,9/05/2018 15:26,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9184,9/05/2018 15:25,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9187,9/05/2018 15:24,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9186,9/05/2018 15:24,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9185,9/05/2018 15:24,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9190,9/05/2018 15:23,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9189,9/05/2018 15:23,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9191,9/05/2018 15:18,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9192,9/05/2018 15:10,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9193,9/05/2018 15:09,18/04/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2015-9194,9/05/2018 15:05,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9195,9/05/2018 15:01,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9196,9/05/2018 15:00,18/04/2018 14:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9197,9/05/2018 14:59,18/04/2018 14:29,10.0,16, Configuration,nan
CVE-2015-9199,9/05/2018 14:58,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9198,9/05/2018 14:58,18/04/2018 14:29,10.0,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2015-9200,9/05/2018 14:49,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9201,9/05/2018 14:43,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-9203,9/05/2018 14:40,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9202,9/05/2018 14:40,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9204,9/05/2018 14:39,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9205,9/05/2018 14:38,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9206,9/05/2018 14:34,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9208,9/05/2018 14:32,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9207,9/05/2018 14:32,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9209,9/05/2018 14:30,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2015-9211,9/05/2018 14:29,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9210,9/05/2018 14:29,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9212,9/05/2018 14:28,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2015-9213,9/05/2018 14:24,18/04/2018 14:29,5.0,17, DEPRECATED: Code,nan
CVE-2017-13267,9/05/2018 14:09,4/04/2018 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13274,9/05/2018 14:08,4/04/2018 16:29,7.5,346, Origin Validation Error,nan
CVE-2017-13275,9/05/2018 13:59,4/04/2018 16:29,1.9,125, Out-of-bounds Read,nan
CVE-2017-13276,9/05/2018 13:58,4/04/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13277,9/05/2018 13:27,4/04/2018 16:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13278,9/05/2018 13:25,4/04/2018 16:29,7.5,416, Use After Free,nan
CVE-2017-13280,9/05/2018 13:21,4/04/2018 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-13281,9/05/2018 13:15,4/04/2018 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13282,9/05/2018 13:10,4/04/2018 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13284,9/05/2018 13:02,4/04/2018 16:29,10.0,20, Improper Input Validation,nan
CVE-2017-13285,9/05/2018 13:00,4/04/2018 16:29,10.0,787, Out-of-bounds Write,nan
CVE-2017-13287,9/05/2018 12:59,4/04/2018 16:29,7.2,20, Improper Input Validation,nan
CVE-2017-13290,9/05/2018 12:56,4/04/2018 16:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-13291,9/05/2018 12:53,4/04/2018 16:29,7.8,476, NULL Pointer Dereference,nan
CVE-2017-13248,9/05/2018 12:52,4/04/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13250,9/05/2018 12:49,4/04/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13249,9/05/2018 12:49,4/04/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13251,8/05/2018 17:16,4/04/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13253,8/05/2018 16:59,4/04/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13255,8/05/2018 16:58,4/04/2018 17:29,8.3,787, Out-of-bounds Write,nan
CVE-2017-13256,8/05/2018 16:47,4/04/2018 17:29,8.3,787, Out-of-bounds Write,nan
CVE-2017-13257,8/05/2018 16:45,4/04/2018 17:29,4.3,416, Use After Free,nan
CVE-2017-13258,8/05/2018 16:32,4/04/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-13259,8/05/2018 16:30,4/04/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-13260,8/05/2018 16:28,4/04/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-13261,8/05/2018 16:23,4/04/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-13262,8/05/2018 16:21,4/04/2018 17:29,3.3,125, Out-of-bounds Read,nan
CVE-2017-13272,8/05/2018 16:13,4/04/2018 17:29,10.0,416, Use After Free,nan
CVE-2017-13266,8/05/2018 16:13,4/04/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5822,8/05/2018 15:50,3/04/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5821,8/05/2018 15:50,3/04/2018 17:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-5820,8/05/2018 15:49,3/04/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-15822,8/05/2018 15:49,3/04/2018 17:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14894,8/05/2018 15:43,3/04/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14890,8/05/2018 15:43,3/04/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17770,8/05/2018 15:19,3/04/2018 17:29,9.3,476, NULL Pointer Dereference,nan
CVE-2017-15836,8/05/2018 15:18,3/04/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-13304,8/05/2018 15:16,4/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-13303,8/05/2018 15:16,4/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-13302,8/05/2018 15:16,4/04/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2017-13301,8/05/2018 15:16,4/04/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2017-13300,8/05/2018 15:14,4/04/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-13298,8/05/2018 15:13,4/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-13297,8/05/2018 15:13,4/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-13296,8/05/2018 15:13,4/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-13295,8/05/2018 15:12,4/04/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-13294,8/05/2018 15:12,4/04/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-13269,8/05/2018 15:12,4/04/2018 17:29,3.3,200, Information Exposure,nan
CVE-2017-13268,8/05/2018 15:11,4/04/2018 17:29,3.3,200, Information Exposure,nan
CVE-2016-8717,8/05/2018 15:06,2/04/2018 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-9014,8/05/2018 13:34,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9013,8/05/2018 13:33,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9012,8/05/2018 13:33,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9011,8/05/2018 13:33,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9010,8/05/2018 13:32,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9009,8/05/2018 13:32,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9008,8/05/2018 13:31,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9959,8/05/2018 13:30,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9958,8/05/2018 13:30,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9954,8/05/2018 13:30,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-18185,8/05/2018 13:29,13/02/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18184,8/05/2018 13:29,13/02/2018 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12595,8/05/2018 13:29,27/08/2017 15:29,6.8,20, Improper Input Validation,nan
CVE-2015-9252,8/05/2018 13:29,13/02/2018 19:29,4.3,399, Resource Management Errors,nan
CVE-2014-9957,8/05/2018 13:29,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9956,8/05/2018 13:29,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9955,8/05/2018 13:28,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9953,8/05/2018 13:28,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-9130,8/05/2018 13:01,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2017-15126,7/05/2018 1:29,14/01/2018 6:29,9.3,416, Use After Free,nan
CVE-2016-10231,4/05/2018 19:14,4/04/2018 18:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10230,4/05/2018 19:14,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10232,4/05/2018 19:13,4/04/2018 18:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10234,4/05/2018 19:12,4/04/2018 18:29,4.3,200, Information Exposure,nan
CVE-2016-10233,4/05/2018 19:12,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10236,4/05/2018 19:11,4/04/2018 18:29,4.3,200, Information Exposure,nan
CVE-2016-10235,4/05/2018 19:11,4/04/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2016-10299,4/05/2018 19:10,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10298,4/05/2018 19:10,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8486,4/05/2018 19:09,4/04/2018 18:29,5.0,200, Information Exposure,nan
CVE-2016-8485,4/05/2018 19:09,4/04/2018 18:29,5.0,200, Information Exposure,nan
CVE-2016-8484,4/05/2018 19:09,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8488,4/05/2018 19:08,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8487,4/05/2018 19:08,4/04/2018 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-6426,4/05/2018 19:04,4/04/2018 18:29,4.3,200, Information Exposure,nan
CVE-2017-6425,4/05/2018 19:04,4/04/2018 18:29,4.3,200, Information Exposure,nan
CVE-2018-4094,4/05/2018 18:30,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4092,4/05/2018 18:30,3/04/2018 6:29,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-13890,4/05/2018 18:27,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-13877,4/05/2018 18:26,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2017-13863,4/05/2018 18:25,3/04/2018 6:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-13850,4/05/2018 18:25,3/04/2018 6:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7004,4/05/2018 16:04,3/04/2018 6:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-4086,4/05/2018 16:00,3/04/2018 6:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-13839,4/05/2018 15:19,3/04/2018 6:29,2.1,200, Information Exposure,nan
CVE-2018-4105,4/05/2018 15:05,3/04/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2018-4107,4/05/2018 14:58,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2018-4108,4/05/2018 14:55,3/04/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2018-4111,4/05/2018 14:45,3/04/2018 6:29,4.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-4149,4/05/2018 14:44,3/04/2018 6:29,6.8,20, Improper Input Validation,nan
CVE-2018-4160,4/05/2018 14:42,3/04/2018 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2018-4168,4/05/2018 14:37,3/04/2018 6:29,2.1,200, Information Exposure,nan
CVE-2018-4175,4/05/2018 14:25,3/04/2018 6:29,6.8,20, Improper Input Validation,nan
CVE-2018-4176,4/05/2018 14:11,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2018-4148,4/05/2018 13:46,3/04/2018 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4137,4/05/2018 13:26,3/04/2018 6:29,5.0,200, Information Exposure,nan
CVE-2015-9015,4/05/2018 13:22,4/04/2018 18:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-4136,4/05/2018 13:16,3/04/2018 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2018-4134,4/05/2018 13:16,3/04/2018 6:29,6.8,20, Improper Input Validation,nan
CVE-2018-4123,4/05/2018 13:08,3/04/2018 6:29,2.1,200, Information Exposure,nan
CVE-2017-7167,4/05/2018 13:06,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4878,4/05/2018 1:29,6/02/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-9229,4/05/2018 1:29,24/05/2017 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-9228,4/05/2018 1:29,24/05/2017 15:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-9227,4/05/2018 1:29,24/05/2017 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-7890,4/05/2018 1:29,2/08/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-5340,4/05/2018 1:29,11/01/2017 6:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-15531,4/05/2018 1:29,23/01/2018 20:29,5.0,287, Improper Authentication,nan
CVE-2017-15129,4/05/2018 1:29,9/01/2018 19:29,4.9,416, Use After Free,nan
CVE-2017-12934,4/05/2018 1:29,18/08/2017 3:29,5.0,416, Use After Free,nan
CVE-2017-12932,4/05/2018 1:29,18/08/2017 3:29,7.5,416, Use After Free,nan
CVE-2017-11628,4/05/2018 1:29,25/07/2017 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11145,4/05/2018 1:29,10/07/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-11144,4/05/2018 1:29,10/07/2017 14:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-11143,4/05/2018 1:29,10/07/2017 14:29,5.0,502, Deserialization of Untrusted Data,nan
CVE-2016-9936,4/05/2018 1:29,4/01/2017 20:59,7.5,416, Use After Free,nan
CVE-2016-9935,4/05/2018 1:29,4/01/2017 20:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-9934,4/05/2018 1:29,4/01/2017 20:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9933,4/05/2018 1:29,4/01/2017 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7479,4/05/2018 1:29,12/01/2017 0:59,7.5,416, Use After Free,nan
CVE-2016-7418,4/05/2018 1:29,17/09/2016 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7417,4/05/2018 1:29,17/09/2016 21:59,7.5,20, Improper Input Validation,nan
CVE-2016-7416,4/05/2018 1:29,17/09/2016 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7414,4/05/2018 1:29,17/09/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7413,4/05/2018 1:29,17/09/2016 21:59,7.5,416, Use After Free,nan
CVE-2016-7412,4/05/2018 1:29,17/09/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10168,4/05/2018 1:29,15/03/2017 15:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10167,4/05/2018 1:29,15/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2016-10162,4/05/2018 1:29,24/01/2017 21:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-10161,4/05/2018 1:29,24/01/2017 21:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-10160,4/05/2018 1:29,24/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10159,4/05/2018 1:29,24/01/2017 21:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10158,4/05/2018 1:29,24/01/2017 21:59,5.0,189, Numeric Errors,nan
CVE-2018-4140,3/05/2018 19:20,3/04/2018 6:29,7.8,476, NULL Pointer Dereference,nan
CVE-2017-7075,3/05/2018 18:59,3/04/2018 6:29,2.1,200, Information Exposure,nan
CVE-2018-9238,3/05/2018 15:06,4/04/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18224,3/05/2018 1:29,12/03/2018 3:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-18218,3/05/2018 1:29,5/03/2018 20:29,7.2,416, Use After Free,nan
CVE-2015-9016,3/05/2018 1:29,5/04/2018 18:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2004-0416,3/05/2018 1:29,6/08/2004 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0545,3/05/2018 1:29,17/11/2003 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0542,3/05/2018 1:29,3/11/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0015,3/05/2018 1:29,7/02/2003 5:00,7.5,415, Double Free,nan
CVE-2002-1365,3/05/2018 1:29,23/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-0361,3/05/2018 1:29,27/06/2001 4:00,4.0,310, Cryptographic Issues,nan
CVE-2016-9731,2/05/2018 15:25,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4677,2/05/2018 15:25,22/02/2017 16:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6103,2/05/2018 15:24,2/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000114,2/05/2018 15:24,6/10/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0204,2/05/2018 15:23,16/10/2016 21:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-1000118,2/05/2018 15:22,21/10/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5598,2/05/2018 15:20,25/10/2016 14:31,6.8,284, Improper Access Control,nan
CVE-2015-2181,2/05/2018 15:19,30/01/2017 22:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9739,2/05/2018 15:15,1/02/2017 22:59,2.1,255, Credentials Management,nan
CVE-2018-9237,2/05/2018 15:13,4/04/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9236,2/05/2018 15:13,4/04/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9235,2/05/2018 15:12,4/04/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9183,2/05/2018 15:12,2/04/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9173,2/05/2018 14:59,2/04/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9175,2/05/2018 14:38,2/04/2018 3:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-9174,2/05/2018 14:37,2/04/2018 3:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-2869,2/05/2018 14:11,19/04/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2868,2/05/2018 14:11,19/04/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2863,2/05/2018 14:10,19/04/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-2858,2/05/2018 14:10,19/04/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2864,2/05/2018 14:09,19/04/2018 2:29,5.0,200, Information Exposure,nan
CVE-2016-1000113,2/05/2018 13:07,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1000119,2/05/2018 13:05,21/10/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9218,2/05/2018 13:04,18/04/2018 14:29,4.9,388, 7PK – Errors,nan
CVE-2015-9220,2/05/2018 12:59,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10410,2/05/2018 12:58,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9222,2/05/2018 12:58,18/04/2018 14:29,7.8,399, Resource Management Errors,nan
CVE-2016-10416,2/05/2018 12:57,18/04/2018 14:29,7.8,399, Resource Management Errors,nan
CVE-2016-10415,2/05/2018 12:57,18/04/2018 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2016-10420,2/05/2018 12:55,18/04/2018 14:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10447,2/05/2018 12:54,18/04/2018 14:29,5.0,824, Access of Uninitialized Pointer,nan
CVE-2016-10441,2/05/2018 12:54,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10449,2/05/2018 12:53,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2016-10456,2/05/2018 12:45,18/04/2018 14:29,7.5,20, Improper Input Validation,nan
CVE-2016-10457,2/05/2018 12:44,18/04/2018 14:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10451,2/05/2018 12:44,18/04/2018 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10466,2/05/2018 12:43,18/04/2018 14:29,10.0,388, 7PK – Errors,nan
CVE-2016-10464,2/05/2018 12:43,18/04/2018 14:29,7.8,20, Improper Input Validation,nan
CVE-2016-10459,2/05/2018 12:43,18/04/2018 14:29,7.8,399, Resource Management Errors,nan
CVE-2016-10476,2/05/2018 12:42,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10473,2/05/2018 12:42,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10472,2/05/2018 12:42,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2016-10480,2/05/2018 12:41,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10482,2/05/2018 12:27,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2016-10481,2/05/2018 12:27,18/04/2018 14:29,10.0,17, DEPRECATED: Code,nan
CVE-2016-10485,2/05/2018 12:26,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10491,2/05/2018 12:25,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10492,2/05/2018 12:23,18/04/2018 14:29,6.4,20, Improper Input Validation,nan
CVE-2017-6512,2/05/2018 1:29,1/06/2017 16:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6185,2/05/2018 1:29,2/08/2016 14:59,4.6,284, Improper Access Control,nan
CVE-2016-10317,2/05/2018 1:29,3/04/2017 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8853,2/05/2018 1:29,25/05/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2015-9221,1/05/2018 21:05,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2016-10483,1/05/2018 21:04,18/04/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2016-10478,1/05/2018 21:04,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10454,1/05/2018 21:04,18/04/2018 14:29,10.0,129, Improper Validation of Array Index,nan
CVE-2016-10440,1/05/2018 21:04,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2016-10460,1/05/2018 21:03,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10458,1/05/2018 21:01,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9219,1/05/2018 21:01,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10477,1/05/2018 20:59,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10475,1/05/2018 20:55,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10407,1/05/2018 20:54,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10411,1/05/2018 20:51,18/04/2018 14:29,7.8,399, Resource Management Errors,nan
CVE-2016-10461,1/05/2018 20:48,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10406,1/05/2018 20:47,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2016-10442,1/05/2018 20:46,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2016-10419,1/05/2018 20:45,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10496,1/05/2018 20:42,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9223,1/05/2018 20:42,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9215,1/05/2018 20:42,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2016-10479,1/05/2018 20:39,18/04/2018 14:29,10.0,787, Out-of-bounds Write,nan
CVE-2016-10417,1/05/2018 17:51,18/04/2018 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10484,1/05/2018 17:48,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10474,1/05/2018 17:48,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10493,1/05/2018 17:41,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10487,1/05/2018 17:40,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2016-10443,1/05/2018 17:40,18/04/2018 14:29,4.0,254, 7PK – Security Features,nan
CVE-2016-10469,1/05/2018 17:39,18/04/2018 14:29,5.0,20, Improper Input Validation,nan
CVE-2016-10435,1/05/2018 17:38,18/04/2018 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10431,1/05/2018 17:27,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2016-10418,1/05/2018 17:27,18/04/2018 14:29,5.0,284, Improper Access Control,nan
CVE-2016-10446,1/05/2018 17:26,18/04/2018 14:29,5.0,16, Configuration,nan
CVE-2016-10444,1/05/2018 17:25,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2016-10425,1/05/2018 17:25,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10433,1/05/2018 17:24,18/04/2018 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-9224,1/05/2018 17:19,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10434,1/05/2018 17:17,18/04/2018 14:29,5.0,287, Improper Authentication,nan
CVE-2016-10430,1/05/2018 17:15,18/04/2018 14:29,7.5,200, Information Exposure,nan
CVE-2016-10423,1/05/2018 17:14,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2016-10439,1/05/2018 17:12,18/04/2018 14:29,9.3,476, NULL Pointer Dereference,nan
CVE-2016-10428,1/05/2018 17:09,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2016-10409,1/05/2018 17:08,18/04/2018 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10452,1/05/2018 17:06,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2016-10432,1/05/2018 17:06,18/04/2018 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10426,1/05/2018 17:06,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10445,1/05/2018 16:55,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2016-10467,1/05/2018 16:54,18/04/2018 14:29,10.0,320, Key Management Errors,nan
CVE-2016-10462,1/05/2018 16:54,18/04/2018 14:29,10.0,284, Improper Access Control,nan
CVE-2016-10486,1/05/2018 16:51,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10429,1/05/2018 16:07,18/04/2018 14:29,5.0,19, Data Processing Errors,nan
CVE-2016-10422,1/05/2018 16:06,18/04/2018 14:29,7.5,284, Improper Access Control,nan
CVE-2016-10436,1/05/2018 16:04,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10438,1/05/2018 16:02,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2016-10450,1/05/2018 16:01,18/04/2018 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10412,1/05/2018 16:00,18/04/2018 14:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-10437,1/05/2018 15:59,18/04/2018 14:29,5.0,200, Information Exposure,nan
CVE-2015-9259,1/05/2018 15:50,31/03/2018 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-8893,1/05/2018 15:40,31/03/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-4102,1/05/2018 15:38,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2015-9258,1/05/2018 13:21,31/03/2018 21:29,5.0,310, Cryptographic Issues,nan
CVE-2017-2887,1/05/2018 1:29,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15528,28/04/2018 1:29,22/11/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-12883,28/04/2018 1:29,19/09/2017 18:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12837,28/04/2018 1:29,19/09/2017 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12814,28/04/2018 1:29,28/09/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2929,28/04/2018 1:29,9/12/2013 18:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2018-4112,27/04/2018 18:43,3/04/2018 6:29,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-4109,27/04/2018 18:20,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4095,27/04/2018 18:18,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4087,27/04/2018 18:18,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4093,27/04/2018 18:17,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2018-4085,27/04/2018 18:16,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4082,27/04/2018 18:16,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4090,27/04/2018 18:14,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2018-4116,27/04/2018 18:02,3/04/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-7071,27/04/2018 18:01,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7000,27/04/2018 18:00,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7002,27/04/2018 17:59,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7001,27/04/2018 17:59,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4088,27/04/2018 17:50,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4096,27/04/2018 17:48,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4089,27/04/2018 17:40,3/04/2018 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13853,27/04/2018 17:23,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4098,27/04/2018 17:22,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4097,27/04/2018 17:22,3/04/2018 6:29,9.3,20, Improper Input Validation,nan
CVE-2018-4083,27/04/2018 17:22,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7173,27/04/2018 17:22,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2017-7170,27/04/2018 17:22,3/04/2018 6:29,9.3,20, Improper Input Validation,nan
CVE-2018-4135,27/04/2018 17:21,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4132,27/04/2018 17:21,3/04/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4084,27/04/2018 17:21,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2018-4138,27/04/2018 17:20,3/04/2018 6:29,4.3,200, Information Exposure,nan
CVE-2014-5170,27/04/2018 16:05,29/03/2018 18:29,7.5,20, Improper Input Validation,nan
CVE-2017-9723,27/04/2018 15:35,30/03/2018 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14911,27/04/2018 15:29,30/03/2018 15:29,10.0,287, Improper Authentication,nan
CVE-2017-14912,27/04/2018 15:26,30/03/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14913,27/04/2018 15:23,30/03/2018 15:29,10.0,20, Improper Input Validation,nan
CVE-2017-14915,27/04/2018 15:22,30/03/2018 15:29,10.0,416, Use After Free,nan
CVE-2018-2867,27/04/2018 14:51,19/04/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2820,27/04/2018 14:17,19/04/2018 2:29,4.0,200, Information Exposure,nan
CVE-2016-0898,27/04/2018 12:12,29/03/2018 22:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-8885,27/04/2018 11:58,28/03/2018 20:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8311,27/04/2018 1:29,23/05/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9583,27/04/2018 1:29,8/01/2015 20:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5019,27/04/2018 1:29,31/07/2013 13:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14877,25/04/2018 18:26,30/03/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-18147,25/04/2018 18:25,3/04/2018 17:29,7.5,20, Improper Input Validation,nan
CVE-2017-9693,25/04/2018 18:24,30/03/2018 21:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3563,25/04/2018 18:22,3/04/2018 17:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-3566,25/04/2018 18:20,3/04/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-3584,25/04/2018 18:14,3/04/2018 17:29,5.0,416, Use After Free,nan
CVE-2018-3598,25/04/2018 18:13,3/04/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-3599,25/04/2018 18:12,3/04/2018 17:29,7.5,416, Use After Free,nan
CVE-2017-17766,25/04/2018 15:03,30/03/2018 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-14883,25/04/2018 15:03,30/03/2018 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14881,25/04/2018 15:02,30/03/2018 21:29,7.5,416, Use After Free,nan
CVE-2017-14876,25/04/2018 15:02,30/03/2018 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-11087,25/04/2018 15:00,30/03/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-17741,25/04/2018 1:29,18/12/2017 8:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-16994,25/04/2018 1:29,27/11/2017 19:29,2.1,200, Information Exposure,nan
CVE-2016-8743,25/04/2018 1:29,27/07/2017 21:29,5.0,19, Data Processing Errors,nan
CVE-2016-8740,25/04/2018 1:29,5/12/2016 19:59,5.0,399, Resource Management Errors,nan
CVE-2016-2161,25/04/2018 1:29,27/07/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2016-0736,25/04/2018 1:29,27/07/2017 21:29,5.0,310, Cryptographic Issues,nan
CVE-2018-8970,24/04/2018 16:40,24/03/2018 21:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-8972,24/04/2018 16:39,24/03/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5039,24/04/2018 16:32,26/03/2018 18:29,5.8,310, Cryptographic Issues,nan
CVE-2018-9032,24/04/2018 16:31,27/03/2018 3:29,7.5,287, Improper Authentication,nan
CVE-2018-7658,24/04/2018 16:31,26/03/2018 21:29,5.0,20, Improper Input Validation,nan
CVE-2015-2020,24/04/2018 15:28,29/03/2018 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-6658,24/04/2018 15:27,29/03/2018 22:29,4.0,200, Information Exposure,nan
CVE-2015-4953,24/04/2018 15:20,29/03/2018 18:29,5.8,326, Inadequate Encryption Strength,nan
CVE-2018-7445,24/04/2018 14:53,19/03/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5045,24/04/2018 13:01,26/03/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-5224,24/04/2018 12:58,29/03/2018 13:29,9.0,20, Improper Input Validation,nan
CVE-2014-5028,24/04/2018 12:58,29/03/2018 18:29,4.0,200, Information Exposure,nan
CVE-2014-2293,24/04/2018 12:57,26/03/2018 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14875,24/04/2018 12:55,30/03/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-8823,24/04/2018 12:54,28/03/2018 2:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5223,24/04/2018 12:54,29/03/2018 13:29,6.5,20, Improper Input Validation,nan
CVE-2018-1237,24/04/2018 12:22,27/03/2018 21:29,5.0,287, Improper Authentication,nan
CVE-2018-8048,24/04/2018 12:19,27/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15846,24/04/2018 12:19,30/03/2018 21:29,4.6,476, NULL Pointer Dereference,nan
CVE-2018-1205,24/04/2018 12:16,27/03/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9057,24/04/2018 12:08,27/03/2018 18:29,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2018-9056,24/04/2018 12:05,27/03/2018 17:29,4.7,200, Information Exposure,nan
CVE-2016-10427,24/04/2018 12:04,18/04/2018 14:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10421,24/04/2018 12:03,18/04/2018 14:29,10.0,320, Key Management Errors,nan
CVE-2016-10490,24/04/2018 11:59,18/04/2018 14:29,10.0,189, Numeric Errors,nan
CVE-2016-10489,24/04/2018 11:56,18/04/2018 14:29,10.0,476, NULL Pointer Dereference,nan
CVE-2016-10414,24/04/2018 11:56,18/04/2018 14:29,10.0,388, 7PK – Errors,nan
CVE-2016-10498,24/04/2018 11:55,18/04/2018 14:29,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10495,24/04/2018 11:52,18/04/2018 14:29,10.0,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2016-10494,24/04/2018 11:52,18/04/2018 14:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2018-9147,23/04/2018 20:34,30/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9134,23/04/2018 20:34,30/03/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2009,23/04/2018 20:34,29/03/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10501,23/04/2018 20:31,18/04/2018 14:29,10.0,20, Improper Input Validation,nan
CVE-2016-10499,23/04/2018 20:28,18/04/2018 14:29,7.8,399, Resource Management Errors,nan
CVE-2016-10497,23/04/2018 20:26,18/04/2018 14:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10455,23/04/2018 20:26,18/04/2018 14:29,7.8,19, Data Processing Errors,nan
CVE-2016-10448,23/04/2018 20:25,18/04/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4987,23/04/2018 20:24,27/03/2018 17:29,6.4,287, Improper Authentication,nan
CVE-2015-4954,23/04/2018 20:24,27/03/2018 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-2001,23/04/2018 19:10,29/03/2018 18:29,7.5,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2015-2000,23/04/2018 19:10,29/03/2018 18:29,7.5,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2014-4959,23/04/2018 19:10,27/03/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2004,23/04/2018 19:05,29/03/2018 18:29,7.5,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2017-14891,23/04/2018 19:04,30/03/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-14892,23/04/2018 19:03,30/03/2018 21:29,4.6,20, Improper Input Validation,nan
CVE-2017-15826,23/04/2018 19:02,30/03/2018 21:29,4.4,415, Double Free,nan
CVE-2017-15823,23/04/2018 19:02,30/03/2018 21:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2003,23/04/2018 14:16,29/03/2018 18:29,7.5,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2017-9691,23/04/2018 14:01,30/03/2018 21:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-2002,23/04/2018 13:29,29/03/2018 18:29,7.5,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2017-16614,23/04/2018 13:13,30/03/2018 21:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-6608,23/04/2018 13:10,28/03/2018 21:29,4.3,200, Information Exposure,nan
CVE-2017-17769,23/04/2018 13:05,30/03/2018 21:29,2.1,200, Information Exposure,nan
CVE-2018-8820,23/04/2018 13:03,28/03/2018 20:29,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9692,23/04/2018 13:01,30/03/2018 21:29,4.6,476, NULL Pointer Dereference,nan
CVE-2012-4929,22/04/2018 1:29,15/09/2012 18:55,2.6,310, Cryptographic Issues,nan
CVE-2017-9681,20/04/2018 18:00,30/03/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-9014,20/04/2018 17:59,25/03/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-9108,20/04/2018 17:58,28/03/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8937,20/04/2018 17:58,26/03/2018 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-8764,20/04/2018 17:57,27/03/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5509,20/04/2018 17:10,22/03/2018 18:29,7.8,20, Improper Input Validation,nan
CVE-2018-5503,20/04/2018 17:06,22/03/2018 18:29,5.0,20, Improper Input Validation,nan
CVE-2018-5502,20/04/2018 17:04,22/03/2018 18:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-5731,20/04/2018 17:03,22/03/2018 16:29,4.4,20, Improper Input Validation,nan
CVE-2018-5225,20/04/2018 16:57,22/03/2018 13:29,6.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-0552,20/04/2018 16:56,22/03/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0540,20/04/2018 16:55,22/03/2018 13:29,6.8,426, Untrusted Search Path,nan
CVE-2018-8828,20/04/2018 16:42,20/03/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8909,20/04/2018 16:32,22/03/2018 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1221,20/04/2018 16:01,19/03/2018 18:29,5.5,20, Improper Input Validation,nan
CVE-2018-1196,20/04/2018 15:57,19/03/2018 18:29,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-8944,20/04/2018 15:12,22/03/2018 21:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1233,20/04/2018 15:06,30/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5438,20/04/2018 15:02,20/03/2018 17:29,3.3,613, Insufficient Session Expiration,nan
CVE-2018-5717,20/04/2018 14:57,20/03/2018 14:29,7.8,787, Out-of-bounds Write,nan
CVE-2014-5450,20/04/2018 14:56,19/03/2018 21:29,2.1,200, Information Exposure,nan
CVE-2014-5443,20/04/2018 14:55,19/03/2018 21:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-2885,20/04/2018 14:36,19/03/2018 21:29,3.6,400, Uncontrolled Resource Consumption,nan
CVE-2014-2884,20/04/2018 14:25,19/03/2018 21:29,2.1,284, Improper Access Control,nan
CVE-2014-2652,20/04/2018 14:22,19/03/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9010,20/04/2018 14:19,25/03/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1266,20/04/2018 14:16,27/03/2018 16:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1234,20/04/2018 14:13,30/03/2018 21:29,2.1,200, Information Exposure,nan
CVE-2018-1232,20/04/2018 14:13,30/03/2018 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5016,20/04/2018 13:36,27/03/2018 17:29,4.0,200, Information Exposure,nan
CVE-2015-7424,20/04/2018 13:35,26/03/2018 18:29,4.0,200, Information Exposure,nan
CVE-2018-7171,20/04/2018 13:16,30/03/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8074,20/04/2018 13:08,21/03/2018 18:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1000118,20/04/2018 13:07,7/03/2018 14:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7269,20/04/2018 13:03,21/03/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17562,20/04/2018 1:29,12/12/2017 19:29,6.8,20, Improper Input Validation,nan
CVE-2016-6308,20/04/2018 1:29,26/09/2016 19:59,7.1,399, Resource Management Errors,nan
CVE-2016-6307,20/04/2018 1:29,26/09/2016 19:59,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2016-6305,20/04/2018 1:29,26/09/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-6304,20/04/2018 1:29,26/09/2016 19:59,7.8,399, Resource Management Errors,nan
CVE-2016-6303,20/04/2018 1:29,16/09/2016 5:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-5007,20/04/2018 1:29,25/05/2017 17:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2181,20/04/2018 1:29,16/09/2016 5:59,5.0,189, Numeric Errors,nan
CVE-2014-0054,20/04/2018 1:29,17/04/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1768,20/04/2018 1:29,11/07/2013 22:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-8949,19/04/2018 19:21,23/03/2018 17:29,5.5,749, Exposed Dangerous Method or Function,nan
CVE-2018-8763,19/04/2018 19:19,27/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5799,19/04/2018 19:16,30/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6604,19/04/2018 19:16,29/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1142,19/04/2018 19:15,28/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7203,19/04/2018 17:55,30/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17750,19/04/2018 17:29,24/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17749,19/04/2018 17:29,24/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7401,19/04/2018 17:29,26/03/2018 18:29,4.0,200, Information Exposure,nan
CVE-2018-9106,19/04/2018 17:28,28/03/2018 4:29,6.8,20, Improper Input Validation,nan
CVE-2018-7700,19/04/2018 17:28,27/03/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7423,19/04/2018 17:28,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0486,19/04/2018 17:28,27/03/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-9139,19/04/2018 17:27,30/03/2018 8:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9143,19/04/2018 17:26,30/03/2018 8:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-9142,19/04/2018 17:26,30/03/2018 8:29,7.6,20, Improper Input Validation,nan
CVE-2018-9141,19/04/2018 17:26,30/03/2018 8:29,9.3,20, Improper Input Validation,nan
CVE-2018-9140,19/04/2018 17:26,30/03/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17215,19/04/2018 15:04,20/03/2018 15:29,6.5,20, Improper Input Validation,nan
CVE-2018-1218,19/04/2018 14:59,19/03/2018 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1213,19/04/2018 14:58,26/03/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1211,19/04/2018 14:55,23/03/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1207,19/04/2018 14:55,23/03/2018 14:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1204,19/04/2018 14:38,26/03/2018 18:29,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1202,19/04/2018 14:20,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1201,19/04/2018 14:20,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1189,19/04/2018 14:14,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1188,19/04/2018 14:14,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1187,19/04/2018 14:14,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1186,19/04/2018 14:12,26/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15326,19/04/2018 14:04,23/03/2018 16:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-15325,19/04/2018 14:02,23/03/2018 16:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-0101,19/04/2018 1:29,17/03/2017 0:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7786,19/04/2018 1:29,7/04/2017 21:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5348,19/04/2018 1:29,10/10/2016 10:59,7.1,399, Resource Management Errors,nan
CVE-2016-10392,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10390,19/04/2018 1:29,18/08/2017 18:29,10.0,399, Resource Management Errors,nan
CVE-2016-10387,19/04/2018 1:29,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2016-10386,19/04/2018 1:29,18/08/2017 18:29,10.0,129, Improper Validation of Array Index,nan
CVE-2016-10385,19/04/2018 1:29,18/08/2017 18:29,10.0,416, Use After Free,nan
CVE-2016-10384,19/04/2018 1:29,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2016-10381,19/04/2018 1:29,18/08/2017 18:29,10.0,1, DEPRECATED: Location,nan
CVE-2016-10380,19/04/2018 1:29,18/08/2017 18:29,10.0,1, DEPRECATED: Location,nan
CVE-2015-9066,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9065,19/04/2018 1:29,18/08/2017 18:29,10.0,254, 7PK – Security Features,nan
CVE-2015-9064,19/04/2018 1:29,18/08/2017 18:29,10.0,284, Improper Access Control,nan
CVE-2015-9063,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8594,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8593,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0576,19/04/2018 1:29,18/08/2017 18:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0574,19/04/2018 1:29,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2014-9981,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9976,19/04/2018 1:29,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9972,19/04/2018 1:29,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2014-9971,19/04/2018 1:29,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2014-2674,18/04/2018 18:26,19/03/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2032,18/04/2018 18:25,20/03/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2014-2031,18/04/2018 18:25,20/03/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2014-2675,18/04/2018 18:23,19/03/2018 21:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4912,18/04/2018 18:06,22/03/2018 4:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-9151,18/04/2018 18:05,30/03/2018 19:29,4.9,476, NULL Pointer Dereference,nan
CVE-2018-7422,18/04/2018 18:03,19/03/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3626,18/04/2018 16:16,19/03/2018 13:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18240,18/04/2018 16:14,19/03/2018 2:29,4.9,20, Improper Input Validation,nan
CVE-2017-17743,18/04/2018 16:11,22/03/2018 5:29,6.5,287, Improper Authentication,nan
CVE-2017-7632,18/04/2018 16:05,27/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7543,18/04/2018 15:37,26/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7630,18/04/2018 15:37,27/03/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-7631,18/04/2018 15:36,27/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5350,18/04/2018 15:27,19/03/2018 13:29,5.0,284, Improper Access Control,nan
CVE-2018-8973,18/04/2018 15:22,24/03/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7719,18/04/2018 15:20,25/03/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8979,18/04/2018 15:06,25/03/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8978,18/04/2018 15:06,25/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9130,18/04/2018 15:05,30/03/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9020,18/04/2018 14:31,26/03/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9257,18/04/2018 14:20,24/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8943,18/04/2018 14:06,22/03/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3626,18/04/2018 13:49,20/03/2018 20:29,1.9,200, Information Exposure,nan
CVE-2018-5768,18/04/2018 13:46,20/03/2018 19:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-18244,18/04/2018 13:23,22/03/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18243,18/04/2018 13:23,22/03/2018 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18242,18/04/2018 13:23,22/03/2018 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2016-10717,18/04/2018 13:22,21/03/2018 21:29,4.6,254, 7PK – Security Features,nan
CVE-2018-8957,18/04/2018 1:41,23/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8942,18/04/2018 1:38,22/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8903,18/04/2018 1:32,22/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2274,18/04/2018 1:30,19/03/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8906,18/04/2018 1:29,22/03/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2919,18/04/2018 1:29,20/11/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2897,18/04/2018 1:29,20/11/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-2896,18/04/2018 1:29,20/11/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12111,18/04/2018 1:29,20/11/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12110,18/04/2018 1:29,20/11/2017 22:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10713,18/04/2018 1:29,13/02/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8899,18/04/2018 1:28,22/03/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18094,18/04/2018 1:28,22/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9017,18/04/2018 1:27,25/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9016,18/04/2018 1:27,25/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9307,18/04/2018 1:26,4/04/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9015,18/04/2018 1:25,25/03/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7434,18/04/2018 0:45,26/03/2018 18:29,2.1,200, Information Exposure,nan
CVE-2015-7433,18/04/2018 0:43,26/03/2018 18:29,2.1,200, Information Exposure,nan
CVE-2015-7432,18/04/2018 0:43,26/03/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-9123,18/04/2018 0:36,29/03/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9122,18/04/2018 0:36,29/03/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9121,18/04/2018 0:36,29/03/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9120,18/04/2018 0:35,29/03/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8969,17/04/2018 19:17,24/03/2018 18:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8968,17/04/2018 19:17,24/03/2018 18:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8966,17/04/2018 18:53,24/03/2018 18:29,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8965,17/04/2018 18:53,24/03/2018 18:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8967,17/04/2018 18:52,24/03/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7196,17/04/2018 18:46,27/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7194,17/04/2018 18:46,27/03/2018 17:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2018-7193,17/04/2018 18:46,27/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0748,17/04/2018 18:46,5/04/2018 18:29,5.0,200, Information Exposure,nan
CVE-2018-7192,17/04/2018 18:43,27/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10081,17/04/2018 17:00,13/04/2018 5:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2018-9925,17/04/2018 16:59,10/04/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9924,17/04/2018 16:59,10/04/2018 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-9923,17/04/2018 16:59,10/04/2018 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-9922,17/04/2018 16:47,10/04/2018 6:29,5.0,200, Information Exposure,nan
CVE-2016-8482,17/04/2018 16:46,5/04/2018 18:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-8073,17/04/2018 16:07,21/03/2018 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8832,17/04/2018 15:17,20/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4928,17/04/2018 15:16,20/03/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1457,17/04/2018 15:15,20/03/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17307,17/04/2018 15:05,20/03/2018 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17306,17/04/2018 15:05,20/03/2018 15:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5233,17/04/2018 15:01,19/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2550,17/04/2018 14:57,19/03/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0541,17/04/2018 14:39,22/03/2018 13:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0538,17/04/2018 14:38,22/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0534,17/04/2018 14:38,22/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12169,17/04/2018 1:29,10/01/2018 15:29,4.0,200, Information Exposure,nan
CVE-2018-1000123,16/04/2018 13:24,13/03/2018 21:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-1000125,16/04/2018 13:15,13/03/2018 21:29,7.5,20, Improper Input Validation,nan
CVE-2018-10083,13/04/2018 19:28,13/04/2018 5:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-10082,13/04/2018 19:28,13/04/2018 5:29,5.0,200, Information Exposure,nan
CVE-2018-10033,13/04/2018 19:28,11/04/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10031,13/04/2018 19:28,11/04/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-10085,13/04/2018 19:27,13/04/2018 5:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-10029,13/04/2018 19:27,11/04/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10032,13/04/2018 19:26,11/04/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-10030,13/04/2018 19:26,11/04/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-8737,13/04/2018 18:48,17/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8948,13/04/2018 18:43,23/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18247,13/04/2018 18:43,23/03/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-0535,13/04/2018 18:42,22/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0542,13/04/2018 18:40,22/03/2018 13:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8805,13/04/2018 16:47,20/03/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8815,13/04/2018 16:44,20/03/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8811,13/04/2018 16:44,20/03/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17320,13/04/2018 16:31,20/03/2018 15:29,9.3,415, Double Free,nan
CVE-2017-17319,13/04/2018 16:31,20/03/2018 15:29,7.1,200, Information Exposure,nan
CVE-2014-1665,13/04/2018 16:26,20/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7449,13/04/2018 16:12,20/03/2018 21:29,2.1,326, Inadequate Encryption Strength,nan
CVE-2018-8767,13/04/2018 15:54,18/03/2018 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8766,13/04/2018 15:51,18/03/2018 6:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1206,13/04/2018 14:51,12/03/2018 17:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2018-1000097,13/04/2018 14:50,13/03/2018 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000090,13/04/2018 14:37,13/03/2018 15:29,7.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000124,13/04/2018 14:26,13/03/2018 21:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-8099,13/04/2018 14:00,14/03/2018 0:29,4.3,415, Double Free,nan
CVE-2018-1000131,13/04/2018 13:45,14/03/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0922,13/04/2018 13:36,14/03/2018 17:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000138,13/04/2018 13:16,23/03/2018 21:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000139,13/04/2018 13:14,23/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0539,13/04/2018 13:14,22/03/2018 13:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8013,13/04/2018 13:08,16/03/2018 20:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2014-3623,13/04/2018 13:00,30/10/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2012-2625,13/04/2018 13:00,31/10/2012 16:55,2.7,20, Improper Input Validation,nan
CVE-2016-1000009,13/04/2018 12:50,6/10/2016 14:59,5.0,254, 7PK – Security Features,nan
CVE-2017-17967,13/04/2018 12:44,28/12/2017 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-17959,13/04/2018 12:44,28/12/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17958,13/04/2018 12:44,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17957,13/04/2018 12:44,28/12/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17956,13/04/2018 12:44,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17955,13/04/2018 12:44,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17954,13/04/2018 12:44,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17953,13/04/2018 12:42,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17952,13/04/2018 12:42,28/12/2017 18:29,5.0,20, Improper Input Validation,nan
CVE-2017-17951,13/04/2018 12:42,28/12/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17950,13/04/2018 12:42,28/12/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17949,13/04/2018 12:41,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17948,13/04/2018 12:40,28/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15667,13/04/2018 12:40,28/12/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-13711,13/04/2018 1:29,1/09/2017 13:29,5.0,416, Use After Free,nan
CVE-2017-17960,12/04/2018 18:31,28/12/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000137,12/04/2018 16:30,23/03/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0536,12/04/2018 16:18,22/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0537,12/04/2018 16:17,22/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2585,12/04/2018 15:14,12/03/2018 15:29,4.3,200, Information Exposure,nan
CVE-2018-8711,12/04/2018 15:06,14/03/2018 19:29,7.5,20, Improper Input Validation,nan
CVE-2018-8904,12/04/2018 14:18,22/03/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-8050,12/04/2018 14:18,11/03/2018 6:29,4.3,20, Improper Input Validation,nan
CVE-2018-8876,12/04/2018 13:34,20/03/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2018-8875,12/04/2018 13:34,20/03/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2018-8874,12/04/2018 13:34,20/03/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2018-8873,12/04/2018 13:34,20/03/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2015-7461,12/04/2018 13:34,20/03/2018 21:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-7458,12/04/2018 13:34,20/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7756,12/04/2018 13:17,15/03/2018 1:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8964,12/04/2018 13:16,23/03/2018 21:29,4.3,416, Use After Free,nan
CVE-2018-8963,12/04/2018 13:16,23/03/2018 21:29,4.3,416, Use After Free,nan
CVE-2018-8962,12/04/2018 13:16,23/03/2018 21:29,4.3,416, Use After Free,nan
CVE-2018-8961,12/04/2018 13:16,23/03/2018 21:29,4.3,416, Use After Free,nan
CVE-2018-8807,12/04/2018 13:16,20/03/2018 5:29,4.3,416, Use After Free,nan
CVE-2018-8806,12/04/2018 13:16,20/03/2018 5:29,4.3,416, Use After Free,nan
CVE-2018-8896,12/04/2018 13:14,22/03/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-8895,12/04/2018 13:12,22/03/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-8894,12/04/2018 13:11,22/03/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2015-7460,12/04/2018 13:10,20/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6843,12/04/2018 13:09,19/03/2018 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8765,12/04/2018 13:07,18/03/2018 6:29,6.1,20, Improper Input Validation,nan
CVE-2015-7459,12/04/2018 12:44,20/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8732,12/04/2018 12:43,19/03/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14384,12/04/2018 12:38,16/03/2018 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8059,12/04/2018 12:37,11/03/2018 19:29,5.8,295, Improper Certificate Validation,nan
CVE-2018-8882,12/04/2018 12:34,20/03/2018 23:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6842,12/04/2018 12:26,19/03/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18227,12/04/2018 11:27,12/03/2018 4:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-1063,12/04/2018 1:29,2/03/2018 15:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-7294,12/04/2018 1:29,29/03/2017 2:59,7.2,787, Out-of-bounds Write,nan
CVE-2017-6464,12/04/2018 1:29,27/03/2017 17:59,4.0,20, Improper Input Validation,nan
CVE-2017-15116,12/04/2018 1:29,30/11/2017 18:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-14140,12/04/2018 1:29,5/09/2017 6:29,2.1,200, Information Exposure,nan
CVE-2017-11671,12/04/2018 1:29,26/07/2017 21:29,2.1,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2015-5180,12/04/2018 1:29,27/06/2017 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-1000070,11/04/2018 17:42,13/03/2018 15:29,6.8,20, Improper Input Validation,nan
CVE-2018-7474,11/04/2018 17:37,14/03/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6016,11/04/2018 17:20,12/03/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-1319,11/04/2018 17:14,15/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17442,11/04/2018 15:58,13/03/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0787,11/04/2018 15:07,14/03/2018 17:29,6.8,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2015-7440,11/04/2018 15:03,15/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-7562,11/04/2018 15:02,12/03/2018 21:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7563,11/04/2018 15:01,12/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8065,11/04/2018 14:58,12/03/2018 4:29,5.0,20, Improper Input Validation,nan
CVE-2018-8728,11/04/2018 14:38,15/03/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000089,11/04/2018 14:12,13/03/2018 15:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-8076,11/04/2018 13:56,15/03/2018 4:29,5.0,704, Incorrect Type Conversion or Cast,nan
CVE-2018-1000088,11/04/2018 13:48,13/03/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000126,11/04/2018 13:47,13/03/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-1000096,11/04/2018 13:46,13/03/2018 1:29,6.8,295, Improper Certificate Validation,nan
CVE-2017-16612,11/04/2018 1:29,1/12/2017 17:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-1000255,11/04/2018 1:29,30/10/2017 20:29,6.6,787, Out-of-bounds Write,nan
CVE-2018-0875,10/04/2018 18:50,14/03/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-5758,10/04/2018 18:49,12/03/2018 21:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000087,10/04/2018 18:48,13/03/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8712,10/04/2018 18:46,14/03/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-8097,10/04/2018 18:46,14/03/2018 12:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-8720,10/04/2018 18:44,15/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8098,10/04/2018 18:44,14/03/2018 0:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-1000092,10/04/2018 18:34,13/03/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-2400,10/04/2018 18:26,14/03/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-6321,10/04/2018 18:21,12/03/2018 21:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-1200,10/04/2018 18:21,16/03/2018 20:29,4.3,200, Information Exposure,nan
CVE-2011-2530,10/04/2018 15:53,22/06/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9204,10/04/2018 15:44,17/05/2015 1:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12590,10/04/2018 15:31,16/03/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9952,10/04/2018 15:29,12/03/2018 21:29,6.8,295, Improper Certificate Validation,nan
CVE-2016-9953,10/04/2018 15:28,12/03/2018 21:29,7.5,125, Out-of-bounds Read,nan
CVE-2018-7538,10/04/2018 15:22,12/03/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7544,10/04/2018 15:15,16/03/2018 15:29,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2018-0888,10/04/2018 15:13,14/03/2018 17:29,4.7,200, Information Exposure,nan
CVE-2018-1000091,10/04/2018 15:04,13/03/2018 15:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7463,10/04/2018 14:53,15/03/2018 22:29,5.5,285, Improper Authorization,nan
CVE-2015-7471,10/04/2018 14:51,15/03/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7453,10/04/2018 14:15,15/03/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9880,10/04/2018 13:38,16/03/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2018-7405,9/04/2018 17:41,13/03/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0919,9/04/2018 17:34,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-0885,9/04/2018 17:31,14/03/2018 17:29,6.3,20, Improper Input Validation,nan
CVE-2016-10716,9/04/2018 17:09,16/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0250,9/04/2018 17:09,12/03/2018 21:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-8108,9/04/2018 17:05,14/03/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10715,9/04/2018 15:13,16/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0261,9/04/2018 14:57,12/03/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4612,9/04/2018 13:58,16/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6299,9/04/2018 13:50,13/03/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-6298,9/04/2018 13:50,13/03/2018 17:29,10.0,20, Improper Input Validation,nan
CVE-2018-6297,9/04/2018 13:46,13/03/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4613,9/04/2018 13:03,16/03/2018 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6294,9/04/2018 12:48,13/03/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-0941,9/04/2018 12:29,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-8045,9/04/2018 12:25,15/03/2018 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-8717,9/04/2018 12:23,15/03/2018 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0223,9/04/2018 12:23,15/03/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18228,9/04/2018 12:17,12/03/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18223,9/04/2018 12:03,10/03/2018 22:29,6.8,287, Improper Authentication,nan
CVE-2018-6526,8/04/2018 1:29,2/02/2018 9:29,5.0,200, Information Exposure,nan
CVE-2017-18046,8/04/2018 1:29,21/01/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17862,7/04/2018 1:29,27/12/2017 17:08,4.9,20, Improper Input Validation,nan
CVE-2017-16646,7/04/2018 1:29,7/11/2017 23:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-16528,7/04/2018 1:29,4/11/2017 1:29,7.2,416, Use After Free,nan
CVE-2015-3391,7/04/2018 1:29,21/04/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-1418,7/04/2018 1:29,5/02/2018 16:29,9.3,200, Information Exposure,nan
CVE-2018-1000083,6/04/2018 18:05,13/03/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-1000081,6/04/2018 18:04,13/03/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2018-0903,6/04/2018 18:01,14/03/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0876,6/04/2018 18:01,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7705,6/04/2018 17:59,15/03/2018 1:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0904,6/04/2018 17:58,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0889,6/04/2018 17:32,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18067,6/04/2018 16:07,15/03/2018 21:29,10.0,20, Improper Input Validation,nan
CVE-2017-18064,6/04/2018 16:07,15/03/2018 21:29,7.2,20, Improper Input Validation,nan
CVE-2018-0879,6/04/2018 15:56,14/03/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-18063,6/04/2018 15:47,15/03/2018 21:29,7.2,20, Improper Input Validation,nan
CVE-2018-7707,6/04/2018 14:40,15/03/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7703,6/04/2018 14:40,15/03/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7704,6/04/2018 14:37,15/03/2018 1:29,4.0,200, Information Exposure,nan
CVE-2018-1000082,6/04/2018 14:37,13/03/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15815,6/04/2018 14:35,15/03/2018 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18056,6/04/2018 14:10,15/03/2018 21:29,7.2,20, Improper Input Validation,nan
CVE-2018-7706,6/04/2018 14:09,15/03/2018 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15821,6/04/2018 14:09,15/03/2018 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14885,6/04/2018 14:06,15/03/2018 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14882,6/04/2018 14:00,15/03/2018 21:29,7.8,200, Information Exposure,nan
CVE-2017-14878,6/04/2018 14:00,15/03/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2016-10393,6/04/2018 13:59,15/03/2018 21:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2018-7701,6/04/2018 13:30,15/03/2018 1:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8129,6/04/2018 13:02,12/03/2018 2:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-8722,6/04/2018 12:55,15/03/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8721,6/04/2018 12:54,15/03/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0932,6/04/2018 12:54,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-1000084,6/04/2018 12:51,13/03/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0929,6/04/2018 12:51,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-0927,6/04/2018 12:51,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-0891,6/04/2018 12:50,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2017-18068,6/04/2018 12:47,15/03/2018 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16647,6/04/2018 1:29,7/11/2017 23:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-12762,6/04/2018 1:29,9/08/2017 21:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000093,5/04/2018 21:17,13/03/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0939,5/04/2018 21:14,14/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2018-0873,5/04/2018 21:14,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0872,5/04/2018 21:14,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8130,5/04/2018 21:07,12/03/2018 2:29,4.3,369, Divide By Zero,nan
CVE-2018-0893,5/04/2018 21:06,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0930,5/04/2018 17:08,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0874,5/04/2018 17:08,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0937,5/04/2018 17:04,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0936,5/04/2018 17:04,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0931,5/04/2018 17:02,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0925,5/04/2018 17:02,14/03/2018 17:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5314,5/04/2018 16:56,12/03/2018 2:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-0814,5/04/2018 15:35,14/03/2018 17:29,2.1,200, Information Exposure,nan
CVE-2018-0813,5/04/2018 15:35,14/03/2018 17:29,2.1,200, Information Exposure,nan
CVE-2018-0811,5/04/2018 15:35,14/03/2018 17:29,2.1,200, Information Exposure,nan
CVE-2018-0901,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0900,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0899,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0898,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0897,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0896,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0895,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0894,5/04/2018 15:34,14/03/2018 17:29,1.9,200, Information Exposure,nan
CVE-2018-0926,5/04/2018 15:28,14/03/2018 17:29,2.1,200, Information Exposure,nan
CVE-2017-15830,5/04/2018 14:36,16/03/2018 22:29,4.6,129, Improper Validation of Array Index,nan
CVE-2017-15814,5/04/2018 14:31,16/03/2018 22:29,2.1,200, Information Exposure,nan
CVE-2017-14887,5/04/2018 13:19,16/03/2018 22:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-11082,5/04/2018 13:19,16/03/2018 22:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14889,5/04/2018 13:17,16/03/2018 22:29,4.6,129, Improper Validation of Array Index,nan
CVE-2017-18237,4/04/2018 17:49,15/03/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-18235,4/04/2018 17:48,15/03/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-18059,4/04/2018 17:48,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-15833,4/04/2018 17:47,16/03/2018 22:29,4.6,476, NULL Pointer Dereference,nan
CVE-2017-15831,4/04/2018 17:47,16/03/2018 22:29,4.6,20, Improper Input Validation,nan
CVE-2017-18051,4/04/2018 17:39,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-18050,4/04/2018 17:39,16/03/2018 22:29,4.6,20, Improper Input Validation,nan
CVE-2017-15834,4/04/2018 17:39,16/03/2018 22:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-18058,4/04/2018 17:38,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-18055,4/04/2018 17:37,16/03/2018 22:29,4.6,20, Improper Input Validation,nan
CVE-2017-18054,4/04/2018 17:37,16/03/2018 22:29,4.6,20, Improper Input Validation,nan
CVE-2017-18053,4/04/2018 17:37,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-18052,4/04/2018 17:37,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-18057,4/04/2018 17:36,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-8100,4/04/2018 17:05,14/03/2018 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0237,4/04/2018 17:04,12/03/2018 21:29,2.1,200, Information Exposure,nan
CVE-2016-0235,4/04/2018 17:04,12/03/2018 21:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2017-18062,4/04/2018 17:01,16/03/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18065,4/04/2018 16:52,16/03/2018 22:29,4.6,20, Improper Input Validation,nan
CVE-2017-18061,4/04/2018 16:51,16/03/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18060,4/04/2018 15:09,16/03/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2018-6221,4/04/2018 15:01,15/03/2018 19:29,9.3,295, Improper Certificate Validation,nan
CVE-2017-6288,4/04/2018 15:01,12/03/2018 13:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-6287,4/04/2018 15:01,12/03/2018 13:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-6286,4/04/2018 15:01,12/03/2018 13:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-6285,4/04/2018 15:01,12/03/2018 13:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-6281,4/04/2018 15:00,12/03/2018 13:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-1000113,4/04/2018 14:49,13/03/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000108,4/04/2018 14:49,13/03/2018 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6219,4/04/2018 14:20,15/03/2018 19:29,6.4,295, Improper Certificate Validation,nan
CVE-2018-6224,4/04/2018 14:19,15/03/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6220,4/04/2018 14:16,15/03/2018 19:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-6223,4/04/2018 14:09,15/03/2018 19:29,5.0,287, Improper Authentication,nan
CVE-2018-6226,4/04/2018 13:59,15/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6227,4/04/2018 13:35,15/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3561,4/04/2018 13:33,16/03/2018 22:29,4.4,416, Use After Free,nan
CVE-2018-3560,4/04/2018 13:33,16/03/2018 22:29,4.6,415, Double Free,nan
CVE-2017-18066,4/04/2018 13:33,16/03/2018 22:29,4.6,416, Use After Free,nan
CVE-2018-6228,4/04/2018 13:26,15/03/2018 19:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6225,4/04/2018 13:25,15/03/2018 19:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6230,4/04/2018 13:22,15/03/2018 19:29,8.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6229,4/04/2018 13:21,15/03/2018 19:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-0196,4/04/2018 1:29,28/03/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2017-8269,4/04/2018 1:29,11/08/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-17712,4/04/2018 1:29,16/12/2017 1:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14461,4/04/2018 1:29,2/03/2018 15:29,5.5,200, Information Exposure,nan
CVE-2016-1713,2/04/2018 1:29,14/04/2017 18:59,8.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1000006,1/04/2018 1:29,24/01/2018 23:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12627,31/03/2018 1:29,1/03/2018 14:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-17226,30/03/2018 19:10,9/03/2018 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-18253,30/03/2018 18:49,27/03/2018 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-8069,30/03/2018 18:21,12/03/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8070,30/03/2018 18:20,12/03/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-9044,30/03/2018 18:09,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9043,30/03/2018 18:09,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9042,30/03/2018 18:09,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9040,30/03/2018 18:09,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9007,30/03/2018 18:09,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9004,30/03/2018 18:09,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8998,30/03/2018 18:09,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9041,30/03/2018 18:08,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9006,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9005,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9003,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9002,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9001,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9000,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8999,30/03/2018 18:08,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9045,30/03/2018 18:00,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8991,30/03/2018 18:00,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8990,30/03/2018 18:00,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8989,30/03/2018 18:00,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8988,30/03/2018 18:00,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9049,30/03/2018 17:58,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9048,30/03/2018 17:58,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9047,30/03/2018 17:58,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9046,30/03/2018 17:58,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8997,30/03/2018 17:58,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8996,30/03/2018 17:58,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8995,30/03/2018 17:58,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8994,30/03/2018 17:58,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8993,30/03/2018 17:58,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-8992,30/03/2018 17:58,25/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9054,30/03/2018 17:57,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9053,30/03/2018 17:57,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9052,30/03/2018 17:57,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9051,30/03/2018 17:57,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2018-9050,30/03/2018 17:57,27/03/2018 3:29,6.1,20, Improper Input Validation,nan
CVE-2017-2147,30/03/2018 17:46,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000116,30/03/2018 1:29,7/03/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1343,29/03/2018 16:10,6/03/2018 20:29,7.5,287, Improper Authentication,nan
CVE-2015-5377,29/03/2018 15:40,6/03/2018 20:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-1000101,29/03/2018 15:34,6/03/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7711,29/03/2018 15:24,5/03/2018 22:29,6.8,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-17200,29/03/2018 15:07,9/03/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17169,29/03/2018 14:54,9/03/2018 17:29,5.5,20, Improper Input Validation,nan
CVE-2018-1216,29/03/2018 14:53,8/03/2018 15:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-7661,29/03/2018 14:42,4/03/2018 22:29,2.9,200, Information Exposure,nan
CVE-2018-7567,29/03/2018 14:40,4/03/2018 20:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7652,29/03/2018 14:38,4/03/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8165,29/03/2018 14:21,5/03/2018 19:29,4.3,200, Information Exposure,nan
CVE-2017-17144,29/03/2018 14:21,5/03/2018 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000425,29/03/2018 14:21,2/01/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8164,29/03/2018 14:15,5/03/2018 19:29,4.3,20, Improper Input Validation,nan
CVE-2014-4861,29/03/2018 14:10,9/03/2018 20:29,7.5,255, Credentials Management,nan
CVE-2018-6916,29/03/2018 14:03,9/03/2018 15:29,9.0,416, Use After Free,nan
CVE-2017-17147,29/03/2018 14:02,9/03/2018 17:29,4.9,190, Integer Overflow or Wraparound,nan
CVE-2017-17148,29/03/2018 13:55,9/03/2018 17:29,4.9,20, Improper Input Validation,nan
CVE-2017-17328,29/03/2018 13:54,9/03/2018 17:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2017-17170,29/03/2018 13:54,9/03/2018 17:29,5.5,20, Improper Input Validation,nan
CVE-2018-7753,29/03/2018 13:50,7/03/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2017-17168,29/03/2018 13:50,9/03/2018 17:29,5.5,20, Improper Input Validation,nan
CVE-2017-17324,29/03/2018 13:49,9/03/2018 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-17199,29/03/2018 13:49,9/03/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2016-8783,29/03/2018 13:48,9/03/2018 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1215,29/03/2018 13:47,8/03/2018 15:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1000117,29/03/2018 13:25,7/03/2018 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17250,29/03/2018 13:10,9/03/2018 17:29,7.1,787, Out-of-bounds Write,nan
CVE-2017-7633,29/03/2018 13:06,5/03/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-17281,29/03/2018 12:47,9/03/2018 17:29,4.0,125, Out-of-bounds Read,nan
CVE-2017-17304,29/03/2018 12:46,9/03/2018 17:29,5.5,20, Improper Input Validation,nan
CVE-2017-17303,29/03/2018 12:45,9/03/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-8058,29/03/2018 12:05,12/03/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7893,29/03/2018 12:05,12/03/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-8078,29/03/2018 12:04,13/03/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0114,29/03/2018 1:29,4/01/2018 6:29,5.0,320, Key Management Errors,nan
CVE-2017-17167,29/03/2018 1:29,9/03/2018 17:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2018-7473,28/03/2018 22:13,7/03/2018 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-7720,28/03/2018 22:09,7/03/2018 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7307,28/03/2018 22:04,6/03/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7654,28/03/2018 22:00,4/03/2018 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0547,28/03/2018 21:53,9/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2645,28/03/2018 1:29,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-9147,28/03/2018 1:29,22/05/2017 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-18013,28/03/2018 1:29,1/01/2018 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14937,28/03/2018 1:29,20/10/2017 14:29,1.9,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-12631,28/03/2018 1:29,30/11/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11463,28/03/2018 1:29,11/12/2017 6:29,6.5,275, Permission Issues,nan
CVE-2017-0280,28/03/2018 1:29,12/05/2017 14:29,7.1,20, Improper Input Validation,nan
CVE-2017-0276,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0275,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0274,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0273,28/03/2018 1:29,12/05/2017 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-0271,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0270,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0269,28/03/2018 1:29,12/05/2017 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-0268,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0267,28/03/2018 1:29,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2016-5318,28/03/2018 1:29,20/01/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5102,28/03/2018 1:29,6/02/2017 17:59,4.3,20, Improper Input Validation,nan
CVE-2016-1549,28/03/2018 1:29,6/01/2017 21:59,4.0,19, Data Processing Errors,nan
CVE-2015-7551,28/03/2018 1:29,24/03/2016 1:59,4.6,20, Improper Input Validation,nan
CVE-2014-7233,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2014-7232,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2013-7442,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2013-7404,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2012-6695,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2012-6694,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2012-6693,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2012-6660,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2011-5322,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2010-5310,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2010-5309,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2010-5307,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2010-5306,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2009-5147,28/03/2018 1:29,29/03/2017 14:59,7.5,20, Improper Input Validation,nan
CVE-2009-5143,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2007-6757,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2004-2777,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2003-1603,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2002-2446,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2001-1594,28/03/2018 1:29,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2018-0546,28/03/2018 0:00,9/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18215,27/03/2018 23:55,5/03/2018 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-16922,27/03/2018 23:54,5/03/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5179,27/03/2018 23:52,7/03/2018 2:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7272,27/03/2018 23:50,8/03/2018 20:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-7271,27/03/2018 23:50,8/03/2018 20:29,4.6,306, Missing Authentication for Critical Function,nan
CVE-2014-5044,27/03/2018 23:48,7/03/2018 15:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-17221,27/03/2018 20:42,9/03/2018 17:29,6.5,20, Improper Input Validation,nan
CVE-2017-17143,27/03/2018 20:41,5/03/2018 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17142,27/03/2018 20:40,5/03/2018 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17140,27/03/2018 20:40,5/03/2018 19:29,4.3,200, Information Exposure,nan
CVE-2017-17139,27/03/2018 20:40,5/03/2018 19:29,4.3,200, Information Exposure,nan
CVE-2017-17225,27/03/2018 20:37,9/03/2018 17:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17222,27/03/2018 20:37,9/03/2018 17:29,6.5,20, Improper Input Validation,nan
CVE-2017-17282,27/03/2018 20:33,9/03/2018 21:29,2.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17220,27/03/2018 20:33,9/03/2018 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17219,27/03/2018 20:33,9/03/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-6527,27/03/2018 20:30,6/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1316,27/03/2018 20:30,5/03/2018 14:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6529,27/03/2018 20:29,6/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6283,27/03/2018 20:29,6/03/2018 16:29,4.9,200, Information Exposure,nan
CVE-2017-15323,27/03/2018 20:28,9/03/2018 21:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2018-6528,27/03/2018 20:27,6/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6295,27/03/2018 20:27,6/03/2018 16:29,3.6,125, Out-of-bounds Read,nan
CVE-2014-2592,27/03/2018 19:59,9/03/2018 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7560,27/03/2018 18:11,4/03/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-6530,27/03/2018 18:09,6/03/2018 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7662,27/03/2018 18:05,4/03/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-7663,27/03/2018 17:59,5/03/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7668,27/03/2018 17:57,5/03/2018 7:29,5.0,200, Information Exposure,nan
CVE-2018-7229,27/03/2018 17:44,9/03/2018 23:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2018-7717,27/03/2018 17:43,5/03/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17280,27/03/2018 17:43,9/03/2018 17:29,2.9,200, Information Exposure,nan
CVE-2017-11649,27/03/2018 17:43,7/03/2018 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7230,27/03/2018 17:37,9/03/2018 23:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7641,27/03/2018 17:16,8/03/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7640,27/03/2018 17:16,8/03/2018 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7638,27/03/2018 17:16,8/03/2018 14:29,6.4,287, Improper Authentication,nan
CVE-2017-6280,27/03/2018 17:13,6/03/2018 16:29,5.0,200, Information Exposure,nan
CVE-2017-17137,27/03/2018 17:13,5/03/2018 19:29,2.1,787, Out-of-bounds Write,nan
CVE-2018-7237,27/03/2018 17:12,9/03/2018 23:29,6.4,20, Improper Input Validation,nan
CVE-2017-6282,27/03/2018 17:12,6/03/2018 16:29,7.2,123, Write-what-where Condition,nan
CVE-2017-6296,27/03/2018 17:11,6/03/2018 16:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-0525,27/03/2018 16:42,9/03/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0275,27/03/2018 16:41,9/03/2018 19:29,2.1,200, Information Exposure,nan
CVE-2018-7998,27/03/2018 16:34,9/03/2018 19:29,5.1,476, NULL Pointer Dereference,nan
CVE-2018-7650,27/03/2018 15:41,6/03/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9783,27/03/2018 15:39,6/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9786,27/03/2018 15:38,6/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17133,27/03/2018 15:38,5/03/2018 19:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-17138,27/03/2018 15:33,5/03/2018 19:29,2.1,20, Improper Input Validation,nan
CVE-2017-11650,27/03/2018 15:32,7/03/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7741,27/03/2018 15:31,7/03/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17136,27/03/2018 15:30,5/03/2018 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17135,27/03/2018 15:29,5/03/2018 19:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-7634,27/03/2018 15:19,8/03/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17132,27/03/2018 15:13,5/03/2018 19:29,2.1,134, Use of Externally-Controlled Format String,nan
CVE-2018-7894,27/03/2018 15:12,9/03/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7996,27/03/2018 15:10,9/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7997,27/03/2018 15:09,9/03/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7290,27/03/2018 15:07,9/03/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7234,27/03/2018 15:06,9/03/2018 23:29,7.8,295, Improper Certificate Validation,nan
CVE-2018-7233,27/03/2018 15:05,9/03/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-7666,27/03/2018 14:49,5/03/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7665,27/03/2018 14:49,5/03/2018 7:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7664,27/03/2018 14:48,5/03/2018 7:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7651,27/03/2018 14:46,4/03/2018 1:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-7232,27/03/2018 14:40,9/03/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-7231,27/03/2018 14:39,9/03/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-7236,27/03/2018 14:10,9/03/2018 23:29,5.8,287, Improper Authentication,nan
CVE-2018-7235,27/03/2018 13:56,9/03/2018 23:29,7.8,20, Improper Input Validation,nan
CVE-2018-7238,27/03/2018 13:42,9/03/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7227,27/03/2018 13:42,9/03/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-7228,27/03/2018 13:35,9/03/2018 23:29,7.5,287, Improper Authentication,nan
CVE-2018-7667,27/03/2018 13:32,5/03/2018 7:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-10854,27/03/2018 13:31,9/03/2018 16:29,5.8,306, Missing Authentication for Critical Function,nan
CVE-2017-10853,27/03/2018 13:31,9/03/2018 16:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10852,27/03/2018 13:31,9/03/2018 16:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-8001,26/03/2018 19:05,9/03/2018 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2018-7877,26/03/2018 19:02,8/03/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7735,26/03/2018 18:59,6/03/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7734,26/03/2018 18:59,6/03/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7733,26/03/2018 18:58,6/03/2018 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7732,26/03/2018 18:57,6/03/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-3674,26/03/2018 18:47,17/05/2016 14:08,5.0,200, Information Exposure,nan
CVE-2018-7565,26/03/2018 18:20,7/03/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7564,26/03/2018 18:17,7/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0253,26/03/2018 18:12,9/03/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0272,26/03/2018 18:10,9/03/2018 19:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0268,26/03/2018 18:09,9/03/2018 19:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-17227,26/03/2018 18:05,9/03/2018 17:29,9.3,787, Out-of-bounds Write,nan
CVE-2018-1220,26/03/2018 17:50,8/03/2018 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-1219,26/03/2018 17:46,8/03/2018 15:29,4.0,200, Information Exposure,nan
CVE-2016-0274,26/03/2018 17:45,9/03/2018 19:29,3.5,254, 7PK – Security Features,nan
CVE-2018-7721,26/03/2018 17:42,7/03/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6811,26/03/2018 17:39,6/03/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0276,26/03/2018 17:32,9/03/2018 19:29,6.5,20, Improper Input Validation,nan
CVE-2016-0286,26/03/2018 17:31,9/03/2018 19:29,4.0,200, Information Exposure,nan
CVE-2018-7724,26/03/2018 17:30,6/03/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7723,26/03/2018 17:30,6/03/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7722,26/03/2018 17:30,6/03/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17223,26/03/2018 17:26,9/03/2018 17:29,8.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17322,26/03/2018 16:48,9/03/2018 17:29,4.3,200, Information Exposure,nan
CVE-2017-17216,26/03/2018 16:45,9/03/2018 17:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17217,26/03/2018 16:43,9/03/2018 17:29,4.3,787, Out-of-bounds Write,nan
CVE-2018-7583,26/03/2018 16:38,4/03/2018 1:29,5.0,20, Improper Input Validation,nan
CVE-2017-17321,26/03/2018 16:37,9/03/2018 17:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6810,26/03/2018 16:32,6/03/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-0544,26/03/2018 16:25,9/03/2018 16:29,9.3,426, Untrusted Search Path,nan
CVE-2018-6808,26/03/2018 16:13,6/03/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-0543,26/03/2018 16:12,9/03/2018 16:29,9.3,426, Untrusted Search Path,nan
CVE-2018-0523,26/03/2018 16:10,9/03/2018 16:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0522,26/03/2018 16:09,9/03/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0521,26/03/2018 16:06,9/03/2018 16:29,8.3,306, Missing Authentication for Critical Function,nan
CVE-2016-8782,26/03/2018 16:01,9/03/2018 21:29,5.0,399, Resource Management Errors,nan
CVE-2016-8784,26/03/2018 16:00,9/03/2018 21:29,3.3,399, Resource Management Errors,nan
CVE-2016-8785,26/03/2018 15:24,9/03/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-8786,26/03/2018 15:23,9/03/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-7239,26/03/2018 15:22,9/03/2018 23:29,6.8,426, Untrusted Search Path,nan
CVE-2013-7291,25/03/2018 1:29,13/01/2014 21:55,1.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7290,25/03/2018 1:29,13/01/2014 21:55,1.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7239,25/03/2018 1:29,13/01/2014 21:55,4.8,287, Improper Authentication,nan
CVE-2013-0179,25/03/2018 1:29,13/01/2014 21:55,1.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4971,25/03/2018 1:29,12/12/2013 18:55,5.0,189, Numeric Errors,nan
CVE-2018-7874,23/03/2018 18:25,8/03/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2365,23/03/2018 16:45,1/03/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2367,23/03/2018 16:44,1/03/2018 17:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-2368,23/03/2018 16:41,1/03/2018 17:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2018-2380,23/03/2018 16:39,1/03/2018 17:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7556,23/03/2018 16:28,28/02/2018 7:29,6.4,200, Information Exposure,nan
CVE-2018-7482,23/03/2018 16:13,28/02/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9447,23/03/2018 16:03,28/02/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7264,23/03/2018 16:02,28/02/2018 17:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-18207,23/03/2018 15:57,1/03/2018 5:29,4.3,369, Divide By Zero,nan
CVE-2015-4117,23/03/2018 15:57,28/02/2018 22:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7561,23/03/2018 15:46,1/03/2018 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7490,23/03/2018 15:24,26/02/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-4897,23/03/2018 15:22,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-15692,23/03/2018 15:20,27/02/2018 15:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-15693,23/03/2018 15:19,27/02/2018 15:29,6.0,502, Deserialization of Untrusted Data,nan
CVE-2018-0489,23/03/2018 15:18,27/02/2018 15:29,6.4,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-7172,23/03/2018 15:06,27/02/2018 15:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6481,23/03/2018 14:59,27/02/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6532,23/03/2018 14:56,27/02/2018 19:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7671,23/03/2018 14:39,27/02/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2018-7467,23/03/2018 14:03,27/02/2018 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5501,23/03/2018 13:40,1/03/2018 16:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-5500,23/03/2018 13:39,1/03/2018 16:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-6154,23/03/2018 13:38,1/03/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-6150,23/03/2018 13:35,1/03/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2017-1000474,23/03/2018 1:29,24/01/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7114,23/03/2018 1:29,6/09/2016 0:59,9.0,287, Improper Authentication,nan
CVE-2016-7113,23/03/2018 1:29,6/09/2016 0:59,7.8,399, Resource Management Errors,nan
CVE-2016-7112,23/03/2018 1:29,6/09/2016 0:59,10.0,287, Improper Authentication,nan
CVE-2016-4785,23/03/2018 1:29,31/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-4784,23/03/2018 1:29,31/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2074,23/03/2018 1:29,3/07/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5374,23/03/2018 1:29,18/07/2015 10:59,7.8,19, Data Processing Errors,nan
CVE-2017-6927,22/03/2018 17:28,1/03/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6926,22/03/2018 17:20,1/03/2018 23:29,5.5,200, Information Exposure,nan
CVE-2018-7579,22/03/2018 16:51,1/03/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7648,22/03/2018 14:38,2/03/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7634,22/03/2018 13:59,1/03/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6932,22/03/2018 13:53,1/03/2018 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-7249,22/03/2018 13:26,26/02/2018 20:29,6.9,416, Use After Free,nan
CVE-2017-18195,22/03/2018 13:26,26/02/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-11635,22/03/2018 13:21,26/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-11634,22/03/2018 13:02,26/02/2018 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2013-5913,22/03/2018 12:56,15/10/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7491,22/03/2018 12:55,26/02/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2018-7448,22/03/2018 12:52,26/02/2018 17:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7602,22/03/2018 1:29,9/04/2017 14:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-7601,22/03/2018 1:29,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-7600,22/03/2018 1:29,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-7599,22/03/2018 1:29,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-7598,22/03/2018 1:29,9/04/2017 14:59,4.3,369, Divide By Zero,nan
CVE-2017-7597,22/03/2018 1:29,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-7596,22/03/2018 1:29,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-7595,22/03/2018 1:29,9/04/2017 14:59,4.3,369, Divide By Zero,nan
CVE-2017-7593,22/03/2018 1:29,9/04/2017 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7592,22/03/2018 1:29,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-11335,22/03/2018 1:29,17/07/2017 13:18,6.8,787, Out-of-bounds Write,nan
CVE-2017-10688,22/03/2018 1:29,29/06/2017 23:29,5.0,20, Improper Input Validation,nan
CVE-2016-10371,22/03/2018 1:29,10/05/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2016-10269,22/03/2018 1:29,24/03/2017 19:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-10268,22/03/2018 1:29,24/03/2017 19:59,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2016-10267,22/03/2018 1:29,24/03/2017 19:59,4.3,369, Divide By Zero,nan
CVE-2016-10266,22/03/2018 1:29,24/03/2017 19:59,4.3,369, Divide By Zero,nan
CVE-2017-6929,21/03/2018 16:54,1/03/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7250,21/03/2018 16:45,26/02/2018 20:29,2.1,200, Information Exposure,nan
CVE-2017-5660,21/03/2018 16:16,27/02/2018 20:29,5.0,20, Improper Input Validation,nan
CVE-2011-3477,21/03/2018 14:35,19/02/2018 19:29,4.9,20, Improper Input Validation,nan
CVE-2016-9568,21/03/2018 14:29,19/02/2018 19:29,10.0,254, 7PK – Security Features,nan
CVE-2018-7271,21/03/2018 13:33,21/02/2018 0:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-7277,21/03/2018 13:31,21/02/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7278,21/03/2018 13:21,21/02/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5314,21/03/2018 13:07,21/02/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5316,21/03/2018 13:06,21/02/2018 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-5315,21/03/2018 13:06,21/02/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7285,21/03/2018 12:56,22/02/2018 0:29,5.0,476, NULL Pointer Dereference,nan
CVE-2014-10070,21/03/2018 1:29,27/02/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-6489,20/03/2018 19:17,22/02/2018 22:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-0518,20/03/2018 19:16,23/02/2018 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2012-6709,20/03/2018 19:14,23/02/2018 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-5763,20/03/2018 17:26,19/02/2018 21:29,4.3,20, Improper Input Validation,nan
CVE-2014-2839,20/03/2018 1:29,12/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2838,20/03/2018 1:29,12/01/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7263,19/03/2018 18:34,20/02/2018 21:29,6.8,415, Double Free,nan
CVE-2018-4905,19/03/2018 17:42,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2014-2016,19/03/2018 17:37,25/03/2014 18:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4903,19/03/2018 17:14,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4900,19/03/2018 17:14,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4898,19/03/2018 17:14,27/02/2018 5:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4899,19/03/2018 17:01,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7265,19/03/2018 16:18,20/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7441,19/03/2018 16:17,23/02/2018 21:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2004-2779,19/03/2018 16:15,20/02/2018 21:29,5.0,399, Resource Management Errors,nan
CVE-2015-6569,19/03/2018 16:12,21/02/2018 15:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-18192,19/03/2018 16:09,20/02/2018 6:29,5.0,200, Information Exposure,nan
CVE-2018-6356,19/03/2018 16:05,20/02/2018 15:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3206,19/03/2018 15:27,23/02/2018 17:29,10.0,20, Improper Input Validation,nan
CVE-2017-16670,19/03/2018 15:26,19/02/2018 19:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-0519,19/03/2018 15:24,23/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2081,19/03/2018 15:24,20/02/2018 6:29,7.5,20, Improper Input Validation,nan
CVE-2015-9256,19/03/2018 15:21,20/02/2018 6:29,5.0,200, Information Exposure,nan
CVE-2015-9254,19/03/2018 15:21,20/02/2018 6:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2015-9255,19/03/2018 15:20,20/02/2018 6:29,5.0,200, Information Exposure,nan
CVE-2018-7212,19/03/2018 15:08,18/02/2018 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3972,19/03/2018 15:07,19/02/2018 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0109,18/03/2018 16:20,19/02/2018 19:29,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3205,18/03/2018 15:13,23/02/2018 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2009-4267,18/03/2018 14:22,19/02/2018 16:29,4.0,116, Improper Encoding or Escaping of Output,nan
CVE-2012-0771,18/03/2018 14:21,19/02/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7217,18/03/2018 14:20,18/02/2018 6:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7301,18/03/2018 14:18,22/02/2018 19:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2017-7375,18/03/2018 14:17,19/02/2018 19:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7272,18/03/2018 14:08,21/02/2018 0:29,4.0,200, Information Exposure,nan
CVE-2015-0203,18/03/2018 14:05,21/02/2018 15:29,4.0,19, Data Processing Errors,nan
CVE-2018-7339,18/03/2018 14:04,23/02/2018 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5716,18/03/2018 14:02,21/02/2018 15:29,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-7276,18/03/2018 11:08,21/02/2018 1:29,5.0,200, Information Exposure,nan
CVE-2017-10963,18/03/2018 11:05,20/02/2018 19:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-7477,18/03/2018 10:53,28/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6883,17/03/2018 10:40,24/02/2018 16:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-4875,17/03/2018 10:40,27/02/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7966,17/03/2018 10:40,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7967,17/03/2018 10:39,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7965,17/03/2018 10:39,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7964,17/03/2018 10:39,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-7463,17/03/2018 10:38,26/02/2018 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7963,17/03/2018 10:38,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7962,17/03/2018 10:37,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7961,17/03/2018 10:37,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7598,17/03/2018 10:37,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7597,17/03/2018 10:37,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7596,17/03/2018 10:36,2/03/2018 22:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2018-7289,17/03/2018 10:35,21/02/2018 18:29,4.3,172, Encoding Error,nan
CVE-2018-7471,17/03/2018 10:33,25/02/2018 7:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-0291,17/03/2018 10:33,28/02/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-7442,17/03/2018 10:30,23/02/2018 21:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0369,17/03/2018 10:29,21/02/2018 16:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7454,17/03/2018 10:23,24/02/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7452,17/03/2018 10:23,24/02/2018 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2018-7455,17/03/2018 10:22,24/02/2018 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7470,17/03/2018 10:19,25/02/2018 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7049,17/03/2018 10:18,1/03/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1774,17/03/2018 10:18,26/02/2018 14:29,5.0,200, Information Exposure,nan
CVE-2018-4906,17/03/2018 10:17,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4904,17/03/2018 10:17,27/02/2018 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0299,17/03/2018 10:17,28/02/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-4902,17/03/2018 10:16,27/02/2018 5:29,6.8,416, Use After Free,nan
CVE-2018-4901,17/03/2018 10:16,27/02/2018 5:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-6272,17/03/2018 10:12,20/02/2018 15:29,5.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2017-9425,17/03/2018 10:08,26/02/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7433,17/03/2018 0:42,2/03/2018 20:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2018-7484,17/03/2018 0:22,26/02/2018 2:29,9.3,426, Untrusted Search Path,nan
CVE-2018-6640,17/03/2018 0:19,28/02/2018 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6641,17/03/2018 0:18,28/02/2018 5:29,7.5,416, Use After Free,nan
CVE-2018-6639,17/03/2018 0:18,28/02/2018 5:29,7.5,787, Out-of-bounds Write,nan
CVE-2018-6638,17/03/2018 0:18,28/02/2018 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1399,17/03/2018 0:13,27/02/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15696,16/03/2018 19:39,26/02/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-7469,16/03/2018 19:03,28/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7586,16/03/2018 19:02,1/03/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12415,16/03/2018 18:59,20/02/2018 23:29,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6534,16/03/2018 18:57,27/02/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9426,16/03/2018 18:56,26/02/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7476,16/03/2018 18:28,25/02/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16814,16/03/2018 18:22,26/02/2018 22:29,3.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16813,16/03/2018 18:22,26/02/2018 22:29,2.9,20, Improper Input Validation,nan
CVE-2018-1416,16/03/2018 18:21,27/02/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7590,16/03/2018 17:52,1/03/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0295,16/03/2018 17:52,28/02/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0520,16/03/2018 17:51,23/02/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7308,16/03/2018 17:48,21/02/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7305,16/03/2018 17:45,21/02/2018 20:29,4.0,20, Improper Input Validation,nan
CVE-2017-18210,16/03/2018 17:43,1/03/2018 21:29,7.5,476, NULL Pointer Dereference,nan
CVE-2012-3536,16/03/2018 17:39,27/02/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-4889,16/03/2018 17:35,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4887,16/03/2018 17:35,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-7216,16/03/2018 17:32,18/02/2018 6:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1425,16/03/2018 17:24,27/02/2018 17:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2017-18200,16/03/2018 17:24,26/02/2018 3:29,4.9,20, Improper Input Validation,nan
CVE-2018-4888,16/03/2018 17:22,27/02/2018 5:29,6.8,416, Use After Free,nan
CVE-2018-4884,16/03/2018 17:18,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4916,16/03/2018 17:03,27/02/2018 5:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4915,16/03/2018 17:03,27/02/2018 5:29,6.8,787, Out-of-bounds Write,nan
CVE-2018-4914,16/03/2018 17:03,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4913,16/03/2018 17:03,27/02/2018 5:29,6.8,416, Use After Free,nan
CVE-2018-4885,16/03/2018 17:03,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4908,16/03/2018 16:57,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4896,16/03/2018 16:57,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4895,16/03/2018 16:57,27/02/2018 5:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-4894,16/03/2018 16:57,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4893,16/03/2018 16:57,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4892,16/03/2018 16:57,27/02/2018 5:29,6.8,416, Use After Free,nan
CVE-2018-4891,16/03/2018 16:57,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4912,16/03/2018 16:56,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4911,16/03/2018 16:56,27/02/2018 5:29,6.8,416, Use After Free,nan
CVE-2018-4910,16/03/2018 16:56,27/02/2018 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4909,16/03/2018 16:56,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4907,16/03/2018 16:56,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-0866,16/03/2018 16:12,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8985,16/03/2018 16:12,15/02/2018 22:29,4.6,200, Information Exposure,nan
CVE-2018-0862,16/03/2018 16:11,22/01/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0849,16/03/2018 16:11,22/01/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0848,16/03/2018 16:09,22/01/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0845,16/03/2018 16:09,22/01/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0812,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0807,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0806,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0805,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0804,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0802,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0801,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0798,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0796,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0795,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0794,16/03/2018 16:09,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4886,16/03/2018 15:48,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4883,16/03/2018 15:36,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4882,16/03/2018 15:36,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4881,16/03/2018 15:36,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4880,16/03/2018 15:32,27/02/2018 5:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-4879,16/03/2018 15:31,27/02/2018 5:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-4872,16/03/2018 15:31,27/02/2018 5:29,10.0,254, 7PK – Security Features,nan
CVE-2017-15712,16/03/2018 15:18,19/02/2018 14:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15518,16/03/2018 15:05,23/02/2018 23:29,2.1,200, Information Exposure,nan
CVE-2017-6230,16/03/2018 15:03,14/02/2018 19:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14884,16/03/2018 14:55,23/02/2018 23:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17455,16/03/2018 14:38,20/02/2018 22:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-17454,16/03/2018 14:37,20/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6926,16/03/2018 14:32,12/02/2018 17:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6942,16/03/2018 14:20,13/02/2018 5:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11884,16/03/2018 14:07,15/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11825,16/03/2018 14:03,13/10/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6948,16/03/2018 13:46,13/02/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6953,16/03/2018 13:45,13/02/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17863,16/03/2018 1:29,27/12/2017 17:08,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-17512,16/03/2018 1:29,11/12/2017 6:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16789,16/03/2018 1:29,11/12/2017 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16525,16/03/2018 1:29,4/11/2017 1:29,7.2,416, Use After Free,nan
CVE-2017-15274,16/03/2018 1:29,12/10/2017 0:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-14489,16/03/2018 1:29,15/09/2017 10:29,4.9,20, Improper Input Validation,nan
CVE-2017-14156,16/03/2018 1:29,5/09/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-14051,16/03/2018 1:29,31/08/2017 4:29,4.9,190, Integer Overflow or Wraparound,nan
CVE-2017-12794,16/03/2018 1:29,7/09/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12380,16/03/2018 1:29,26/01/2018 20:29,7.8,476, NULL Pointer Dereference,nan
CVE-2017-12379,16/03/2018 1:29,26/01/2018 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12376,16/03/2018 1:29,26/01/2018 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12375,16/03/2018 1:29,26/01/2018 20:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12374,16/03/2018 1:29,26/01/2018 20:29,7.8,416, Use After Free,nan
CVE-2017-12192,16/03/2018 1:29,12/10/2017 0:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-11334,16/03/2018 1:29,2/08/2017 19:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-10790,16/03/2018 1:29,2/07/2017 3:29,5.0,476, NULL Pointer Dereference,nan
CVE-2016-8202,16/03/2018 1:29,8/05/2017 18:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5008,16/03/2018 1:29,13/07/2016 15:59,4.3,284, Improper Access Control,nan
CVE-2016-3948,16/03/2018 1:29,7/04/2016 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2774,16/03/2018 1:29,9/03/2016 15:59,7.1,20, Improper Input Validation,nan
CVE-2016-2571,16/03/2018 1:29,27/02/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-2570,16/03/2018 1:29,27/02/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-2569,16/03/2018 1:29,27/02/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-10169,16/03/2018 1:29,14/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2015-8952,16/03/2018 1:29,16/10/2016 21:59,2.1,19, Data Processing Errors,nan
CVE-2013-6171,16/03/2018 1:29,9/12/2013 16:36,5.8,287, Improper Authentication,nan
CVE-2017-15699,15/03/2018 19:29,13/02/2018 22:29,6.8,20, Improper Input Validation,nan
CVE-2018-2369,15/03/2018 19:13,14/02/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-2370,15/03/2018 19:10,14/02/2018 12:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-2372,15/03/2018 18:34,14/02/2018 12:29,4.0,200, Information Exposure,nan
CVE-2018-2371,15/03/2018 18:34,14/02/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2373,15/03/2018 18:33,14/02/2018 12:29,5.0,200, Information Exposure,nan
CVE-2018-7034,15/03/2018 17:26,14/02/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-7032,15/03/2018 17:26,14/02/2018 15:29,5.1,20, Improper Input Validation,nan
CVE-2018-7039,15/03/2018 17:16,14/02/2018 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0825,15/03/2018 17:11,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18088,15/03/2018 17:02,15/02/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2011-4973,15/03/2018 16:59,15/02/2018 21:29,7.5,287, Improper Authentication,nan
CVE-2017-5788,15/03/2018 16:29,15/02/2018 22:29,4.9,200, Information Exposure,nan
CVE-2017-5797,15/03/2018 16:28,15/02/2018 22:29,7.8,200, Information Exposure,nan
CVE-2017-5799,15/03/2018 16:27,15/02/2018 22:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-5798,15/03/2018 16:27,15/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5801,15/03/2018 16:24,15/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-5803,15/03/2018 15:21,15/02/2018 22:29,7.8,200, Information Exposure,nan
CVE-2017-8944,15/03/2018 15:17,15/02/2018 22:29,7.8,200, Information Exposure,nan
CVE-2017-8947,15/03/2018 15:14,15/02/2018 22:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8969,15/03/2018 15:01,15/02/2018 22:29,3.5,20, Improper Input Validation,nan
CVE-2017-8970,15/03/2018 14:57,15/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-8978,15/03/2018 13:52,15/02/2018 22:29,4.9,200, Information Exposure,nan
CVE-2018-6324,15/03/2018 13:36,16/02/2018 4:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-6189,15/03/2018 13:35,16/02/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000068,15/03/2018 13:31,16/02/2018 0:29,5.0,200, Information Exposure,nan
CVE-2018-1000067,15/03/2018 13:29,16/02/2018 0:29,5.0,200, Information Exposure,nan
CVE-2018-5767,15/03/2018 13:25,15/02/2018 23:29,7.5,20, Improper Input Validation,nan
CVE-2018-4876,14/03/2018 19:15,27/02/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5674,14/03/2018 18:37,5/02/2018 16:29,4.0,20, Improper Input Validation,nan
CVE-2018-7211,14/03/2018 18:29,18/02/2018 4:29,4.3,200, Information Exposure,nan
CVE-2018-7210,14/03/2018 18:29,18/02/2018 4:29,5.0,200, Information Exposure,nan
CVE-2015-5725,14/03/2018 18:29,21/02/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7247,14/03/2018 18:27,19/02/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7219,14/03/2018 18:24,19/02/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-0855,14/03/2018 18:14,15/02/2018 2:29,4.3,200, Information Exposure,nan
CVE-2017-17159,14/03/2018 18:13,15/02/2018 16:29,6.1,20, Improper Input Validation,nan
CVE-2018-7176,14/03/2018 18:09,16/02/2018 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-7186,14/03/2018 18:07,16/02/2018 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17201,14/03/2018 18:06,15/02/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-0847,14/03/2018 18:02,15/02/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-0516,14/03/2018 17:51,16/02/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0515,14/03/2018 17:51,16/02/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2018-0864,14/03/2018 13:50,15/02/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17285,14/03/2018 13:44,15/02/2018 16:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0840,14/03/2018 13:22,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0858,14/03/2018 13:15,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0861,14/03/2018 13:12,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0834,14/03/2018 13:12,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0761,14/03/2018 13:11,15/02/2018 2:29,2.1,200, Information Exposure,nan
CVE-2018-0760,14/03/2018 13:10,15/02/2018 2:29,2.1,200, Information Exposure,nan
CVE-2018-0755,14/03/2018 13:10,15/02/2018 2:29,2.1,200, Information Exposure,nan
CVE-2016-8742,14/03/2018 12:13,12/02/2018 17:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2018-1048,14/03/2018 1:29,24/01/2018 23:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3990,13/03/2018 20:25,20/05/2015 18:59,9.0,19, Data Processing Errors,nan
CVE-2009-5144,13/03/2018 20:16,3/02/2018 15:29,5.0,254, 7PK – Security Features,nan
CVE-2018-1184,13/03/2018 20:09,3/02/2018 16:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-6461,13/03/2018 19:56,5/02/2018 7:29,9.3,426, Untrusted Search Path,nan
CVE-2015-1416,13/03/2018 19:53,5/02/2018 16:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-4412,13/03/2018 19:49,5/02/2018 16:29,7.5,400, Uncontrolled Resource Consumption,nan
CVE-2017-6201,13/03/2018 19:29,6/02/2018 16:29,5.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-6200,13/03/2018 19:29,6/02/2018 16:29,4.0,200, Information Exposure,nan
CVE-2017-6199,13/03/2018 19:27,6/02/2018 16:29,7.5,287, Improper Authentication,nan
CVE-2017-6198,13/03/2018 19:25,6/02/2018 16:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-7394,13/03/2018 19:19,6/02/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4400,13/03/2018 19:13,6/02/2018 16:29,2.1,255, Credentials Management,nan
CVE-2018-6936,13/03/2018 18:51,21/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6941,13/03/2018 18:43,20/02/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1711,13/03/2018 18:17,13/02/2018 20:29,6.8,426, Untrusted Search Path,nan
CVE-2018-6656,13/03/2018 18:15,6/02/2018 14:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6813,13/03/2018 18:12,6/02/2018 14:29,7.5,320, Key Management Errors,nan
CVE-2017-6169,13/03/2018 18:01,6/02/2018 13:29,4.3,20, Improper Input Validation,nan
CVE-2018-6569,13/03/2018 17:35,6/02/2018 0:29,10.0,287, Improper Authentication,nan
CVE-2017-17552,13/03/2018 16:38,7/02/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6603,13/03/2018 16:27,7/02/2018 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0351,13/03/2018 15:27,21/02/2018 16:29,4.3,200, Information Exposure,nan
CVE-2018-7317,13/03/2018 15:12,22/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-7316,13/03/2018 15:11,22/02/2018 19:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7303,13/03/2018 15:08,21/02/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7188,13/03/2018 15:01,16/02/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1299,13/03/2018 14:54,6/02/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17663,13/03/2018 14:47,6/02/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13238,13/03/2018 14:44,12/02/2018 19:29,4.7,200, Information Exposure,nan
CVE-2017-13228,13/03/2018 14:41,12/02/2018 19:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13230,13/03/2018 14:40,12/02/2018 19:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-13231,13/03/2018 14:38,12/02/2018 19:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-13233,13/03/2018 14:37,12/02/2018 19:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-12555,13/03/2018 14:32,15/02/2018 22:29,6.8,200, Information Exposure,nan
CVE-2016-8520,13/03/2018 14:15,15/02/2018 22:29,6.5,275, Permission Issues,nan
CVE-2016-8511,13/03/2018 14:14,15/02/2018 22:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2018-1000054,13/03/2018 13:54,9/02/2018 23:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-8529,12/03/2018 18:47,15/02/2018 22:29,7.3,284, Improper Access Control,nan
CVE-2016-0367,12/03/2018 18:46,21/02/2018 16:29,4.0,200, Information Exposure,nan
CVE-2016-0366,12/03/2018 18:46,21/02/2018 16:29,4.3,200, Information Exposure,nan
CVE-2018-6859,12/03/2018 18:45,23/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6229,12/03/2018 18:19,14/02/2018 19:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8993,12/03/2018 17:56,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5796,12/03/2018 17:40,15/02/2018 22:29,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2397,12/03/2018 17:31,17/02/2016 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-2396,12/03/2018 17:29,17/02/2016 15:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-7055,12/03/2018 17:27,15/02/2018 10:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2014-8420,12/03/2018 17:25,25/11/2014 15:59,9.0,20, Improper Input Validation,nan
CVE-2014-5024,12/03/2018 17:24,24/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7056,12/03/2018 17:23,15/02/2018 10:29,5.0,200, Information Exposure,nan
CVE-2014-4977,12/03/2018 17:23,16/07/2014 14:19,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4976,12/03/2018 17:23,16/07/2014 14:19,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0332,12/03/2018 17:23,14/02/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7025,12/03/2018 17:22,9/12/2013 16:36,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5800,12/03/2018 17:21,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3951,12/03/2018 17:21,31/07/2012 10:45,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2962,12/03/2018 17:21,30/07/2012 22:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6910,12/03/2018 17:18,13/02/2018 21:29,5.0,200, Information Exposure,nan
CVE-2017-8945,12/03/2018 17:17,15/02/2018 22:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-7057,12/03/2018 17:15,15/02/2018 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8530,12/03/2018 17:14,15/02/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-17478,12/03/2018 17:11,27/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1682,12/03/2018 17:05,14/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17764,12/03/2018 16:51,23/02/2018 23:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-15820,12/03/2018 16:51,23/02/2018 23:29,7.2,416, Use After Free,nan
CVE-2017-17767,12/03/2018 16:48,23/02/2018 23:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15862,12/03/2018 16:48,23/02/2018 23:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-15861,12/03/2018 16:47,23/02/2018 23:29,7.2,129, Improper Validation of Array Index,nan
CVE-2015-2248,12/03/2018 16:47,1/05/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15817,12/03/2018 16:44,23/02/2018 23:29,9.3,20, Improper Input Validation,nan
CVE-2017-15829,12/03/2018 16:36,23/02/2018 23:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-7209,12/03/2018 16:35,18/02/2018 4:29,5.0,200, Information Exposure,nan
CVE-2017-12543,12/03/2018 16:20,15/02/2018 22:29,4.0,200, Information Exposure,nan
CVE-2018-5983,12/03/2018 16:19,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1392,12/03/2018 16:12,22/02/2018 19:29,3.5,200, Information Exposure,nan
CVE-2017-1462,12/03/2018 16:06,21/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6881,12/03/2018 16:05,12/02/2018 3:29,5.0,200, Information Exposure,nan
CVE-2018-6880,12/03/2018 16:04,12/02/2018 3:29,5.0,200, Information Exposure,nan
CVE-2017-18197,12/03/2018 15:56,24/02/2018 2:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7434,12/03/2018 15:55,24/02/2018 3:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1758,12/03/2018 15:39,21/02/2018 21:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-7302,12/03/2018 15:35,21/02/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6193,12/03/2018 15:34,20/02/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-7304,12/03/2018 15:32,21/02/2018 20:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18093,12/03/2018 15:27,19/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18092,12/03/2018 15:25,19/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6192,12/03/2018 15:24,20/02/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1214,12/03/2018 15:14,12/02/2018 21:29,4.4,798, Use of Hard-coded Credentials,nan
CVE-2018-5987,12/03/2018 14:59,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6836,10/03/2018 15:26,8/02/2018 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0513,10/03/2018 15:20,8/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0514,10/03/2018 15:16,8/02/2018 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0517,10/03/2018 15:12,8/02/2018 14:29,6.8,426, Untrusted Search Path,nan
CVE-2011-4889,10/03/2018 15:08,8/02/2018 23:29,7.5,254, 7PK – Security Features,nan
CVE-2012-2166,10/03/2018 15:07,8/02/2018 23:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-1298,10/03/2018 14:36,9/02/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-16756,9/03/2018 18:17,19/02/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16755,9/03/2018 18:17,19/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1604,9/03/2018 18:12,21/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0344,9/03/2018 18:12,21/02/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0839,9/03/2018 18:11,15/02/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-0757,9/03/2018 18:11,15/02/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-0810,9/03/2018 18:10,15/02/2018 2:29,1.9,200, Information Exposure,nan
CVE-2018-0763,9/03/2018 18:10,15/02/2018 2:29,2.6,200, Information Exposure,nan
CVE-2018-7173,9/03/2018 18:08,15/02/2018 21:29,4.3,172, Encoding Error,nan
CVE-2015-6544,9/03/2018 18:08,20/02/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4891,9/03/2018 18:07,21/02/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1415,9/03/2018 18:03,22/02/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0348,9/03/2018 18:03,21/02/2018 16:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0345,9/03/2018 18:03,21/02/2018 16:29,4.0,200, Information Exposure,nan
CVE-2016-0343,9/03/2018 18:03,21/02/2018 16:29,4.0,200, Information Exposure,nan
CVE-2018-1414,9/03/2018 18:02,22/02/2018 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8512,9/03/2018 17:39,15/02/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18194,9/03/2018 17:36,22/02/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9970,9/03/2018 16:37,12/02/2018 23:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-18188,9/03/2018 16:30,14/02/2018 20:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-9968,9/03/2018 14:56,12/02/2018 23:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8976,9/03/2018 14:50,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-8971,9/03/2018 14:49,15/02/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2017-8972,9/03/2018 14:46,15/02/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2017-17297,9/03/2018 14:45,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17295,9/03/2018 14:39,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17299,9/03/2018 14:36,15/02/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-17298,9/03/2018 14:27,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8977,9/03/2018 13:29,15/02/2018 22:29,8.5,20, Improper Input Validation,nan
CVE-2017-8975,9/03/2018 13:29,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-8973,9/03/2018 13:26,15/02/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2017-1499,9/03/2018 13:12,14/02/2018 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-2575,9/03/2018 2:29,18/01/2018 2:29,2.1,200, Information Exposure,nan
CVE-2017-16894,9/03/2018 2:29,20/11/2017 1:29,5.0,200, Information Exposure,nan
CVE-2012-2626,8/03/2018 19:03,31/07/2012 10:45,5.0,287, Improper Authentication,nan
CVE-2012-3848,8/03/2018 18:30,31/07/2012 10:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6846,8/03/2018 17:23,8/02/2018 16:29,5.0,200, Information Exposure,nan
CVE-2014-4112,8/03/2018 17:15,8/02/2018 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4145,8/03/2018 17:14,8/02/2018 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4066,8/03/2018 17:14,8/02/2018 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6825,8/03/2018 16:50,9/02/2018 15:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-6827,8/03/2018 16:48,9/02/2018 15:29,6.8,295, Improper Certificate Validation,nan
CVE-2018-6876,8/03/2018 16:37,9/02/2018 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1307,8/03/2018 16:36,9/02/2018 19:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-1862,8/03/2018 16:03,9/02/2018 22:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-1000029,8/03/2018 15:44,9/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000050,8/03/2018 15:27,9/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000053,8/03/2018 15:23,9/02/2018 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000059,8/03/2018 15:21,9/02/2018 23:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-13235,8/03/2018 15:18,12/02/2018 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7310,8/03/2018 2:29,29/03/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12188,8/03/2018 2:29,11/10/2017 15:29,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17725,7/03/2018 21:01,12/02/2018 22:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9570,7/03/2018 20:41,12/02/2018 18:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-7321,7/03/2018 20:40,23/02/2018 22:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-13232,7/03/2018 20:37,12/02/2018 19:29,7.8,787, Out-of-bounds Write,nan
CVE-2016-8513,7/03/2018 20:37,15/02/2018 22:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8525,7/03/2018 20:34,15/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-14535,7/03/2018 20:33,16/02/2018 4:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-8528,7/03/2018 20:33,15/02/2018 22:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-8953,7/03/2018 20:31,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0869,7/03/2018 19:21,15/02/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0860,7/03/2018 19:20,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0859,7/03/2018 19:20,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0857,7/03/2018 19:20,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0856,7/03/2018 19:19,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0838,7/03/2018 19:18,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0837,7/03/2018 19:18,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0836,7/03/2018 19:18,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0835,7/03/2018 19:18,15/02/2018 2:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9569,7/03/2018 19:10,12/02/2018 18:29,4.9,125, Out-of-bounds Read,nan
CVE-2018-2364,7/03/2018 19:05,14/02/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5814,7/03/2018 18:58,15/02/2018 22:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5812,7/03/2018 17:49,15/02/2018 22:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5811,7/03/2018 17:49,15/02/2018 22:29,7.8,200, Information Exposure,nan
CVE-2017-5810,7/03/2018 17:48,15/02/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5808,7/03/2018 17:47,15/02/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2017-5809,7/03/2018 17:41,15/02/2018 22:29,4.9,275, Permission Issues,nan
CVE-2017-5807,7/03/2018 17:33,15/02/2018 22:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5794,7/03/2018 17:32,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-5793,7/03/2018 16:02,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-5790,7/03/2018 16:02,15/02/2018 22:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2017-17165,7/03/2018 15:09,15/02/2018 16:29,7.8,125, Out-of-bounds Read,nan
CVE-2017-17202,7/03/2018 15:08,15/02/2018 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-15330,7/03/2018 15:08,15/02/2018 16:29,7.1,415, Double Free,nan
CVE-2017-17286,7/03/2018 15:07,15/02/2018 16:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-17287,7/03/2018 15:00,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13240,7/03/2018 14:59,12/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-13242,7/03/2018 14:55,12/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-13241,7/03/2018 14:55,12/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-13239,7/03/2018 14:55,12/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-6928,7/03/2018 14:07,13/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8260,7/03/2018 2:29,18/08/2017 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2013-7329,7/03/2018 2:29,6/10/2014 23:55,5.0,200, Information Exposure,nan
CVE-2017-14537,6/03/2018 19:54,16/02/2018 4:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14536,6/03/2018 19:54,16/02/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13229,6/03/2018 19:52,12/02/2018 19:29,10.0,20, Improper Input Validation,nan
CVE-2018-0852,6/03/2018 19:50,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0851,6/03/2018 19:49,15/02/2018 2:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18091,6/03/2018 19:49,16/02/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8952,6/03/2018 19:41,15/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-1000023,6/03/2018 19:40,9/02/2018 23:29,5.0,20, Improper Input Validation,nan
CVE-2017-18090,6/03/2018 19:36,16/02/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000021,6/03/2018 19:34,9/02/2018 23:29,6.8,20, Improper Input Validation,nan
CVE-2017-18089,6/03/2018 19:19,16/02/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8951,6/03/2018 19:10,15/02/2018 22:29,4.6,200, Information Exposure,nan
CVE-2017-8950,6/03/2018 19:04,15/02/2018 22:29,2.1,200, Information Exposure,nan
CVE-2017-5795,6/03/2018 19:00,15/02/2018 22:29,7.1,200, Information Exposure,nan
CVE-2018-1000058,6/03/2018 15:56,9/02/2018 23:29,6.5,502, Deserialization of Untrusted Data,nan
CVE-2018-6893,6/03/2018 15:42,12/02/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6888,6/03/2018 15:40,12/02/2018 3:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6889,6/03/2018 15:39,12/02/2018 3:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-1000056,6/03/2018 15:31,9/02/2018 23:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-1000055,6/03/2018 15:28,9/02/2018 23:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-8514,6/03/2018 15:27,15/02/2018 22:29,4.0,200, Information Exposure,nan
CVE-2018-7175,6/03/2018 15:12,15/02/2018 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8515,6/03/2018 15:11,15/02/2018 22:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-7260,6/03/2018 15:07,21/02/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8957,6/03/2018 15:05,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5804,6/03/2018 15:05,15/02/2018 22:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2017-8955,6/03/2018 15:02,15/02/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2017-8954,6/03/2018 14:55,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5806,6/03/2018 14:48,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5805,6/03/2018 14:45,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2018-6506,6/03/2018 14:10,12/02/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7314,6/03/2018 13:58,22/02/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6890,6/03/2018 13:53,22/02/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8983,6/03/2018 13:45,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-8981,6/03/2018 13:45,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2018-0512,6/03/2018 13:41,8/02/2018 14:29,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8956,6/03/2018 13:39,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-12554,6/03/2018 13:38,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2018-6293,6/03/2018 13:30,13/02/2018 13:29,5.0,200, Information Exposure,nan
CVE-2017-12520,6/03/2018 13:28,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-18179,5/03/2018 19:58,12/02/2018 14:29,6.5,287, Improper Authentication,nan
CVE-2017-18178,5/03/2018 19:57,12/02/2018 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-18175,5/03/2018 19:57,12/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18177,5/03/2018 19:17,12/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18176,5/03/2018 19:03,12/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5785,5/03/2018 19:02,15/02/2018 22:29,6.4,200, Information Exposure,nan
CVE-2017-5784,5/03/2018 18:18,15/02/2018 22:29,5.8,20, Improper Input Validation,nan
CVE-2017-5783,5/03/2018 18:18,15/02/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2017-5782,5/03/2018 18:15,15/02/2018 22:29,5.8,20, Improper Input Validation,nan
CVE-2017-5781,5/03/2018 18:15,15/02/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5780,5/03/2018 18:09,15/02/2018 22:29,4.3,20, Improper Input Validation,nan
CVE-2017-12561,5/03/2018 17:43,15/02/2018 22:29,10.0,824, Access of Uninitialized Pointer,nan
CVE-2017-12558,5/03/2018 17:42,15/02/2018 22:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2017-12556,5/03/2018 17:37,15/02/2018 22:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2016-8523,5/03/2018 17:37,15/02/2018 22:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-8522,5/03/2018 17:21,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8521,5/03/2018 17:20,15/02/2018 22:29,4.3,20, Improper Input Validation,nan
CVE-2016-8519,5/03/2018 17:19,15/02/2018 22:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2016-5308,5/03/2018 16:24,12/07/2016 2:00,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000062,5/03/2018 16:18,9/02/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8517,5/03/2018 16:07,15/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7198,5/03/2018 16:05,18/02/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6006,5/03/2018 16:05,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5994,5/03/2018 16:05,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5991,5/03/2018 16:05,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6368,5/03/2018 16:04,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10007,5/03/2018 16:04,19/02/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6370,5/03/2018 16:02,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6583,5/03/2018 16:01,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6396,5/03/2018 16:01,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6372,5/03/2018 16:01,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6585,5/03/2018 16:00,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7197,5/03/2018 15:59,18/02/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-7313,5/03/2018 15:57,22/02/2018 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7280,5/03/2018 15:56,21/02/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6584,5/03/2018 15:53,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16356,5/03/2018 15:48,20/02/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10008,5/03/2018 15:48,19/02/2018 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5638,4/03/2018 2:29,11/03/2017 2:59,10.0,20, Improper Input Validation,nan
CVE-2017-14494,4/03/2018 2:29,3/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-14493,4/03/2018 2:29,3/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14492,4/03/2018 2:29,3/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9814,4/03/2018 2:29,17/02/2017 2:59,8.5,399, Resource Management Errors,nan
CVE-2018-6193,3/03/2018 2:29,24/01/2018 21:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6186,3/03/2018 2:29,1/02/2018 14:29,9.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-12721,2/03/2018 16:10,15/02/2018 10:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-12722,2/03/2018 16:09,15/02/2018 10:29,5.0,125, Out-of-bounds Read,nan
CVE-2018-5975,2/03/2018 15:52,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5974,2/03/2018 15:52,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5971,2/03/2018 15:52,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5970,2/03/2018 15:52,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5980,2/03/2018 15:51,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5992,2/03/2018 15:31,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5990,2/03/2018 15:31,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6004,2/03/2018 15:30,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6005,2/03/2018 15:22,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6394,2/03/2018 15:21,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6373,2/03/2018 15:21,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7178,2/03/2018 15:20,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7177,2/03/2018 15:20,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7179,2/03/2018 15:00,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7312,2/03/2018 14:56,22/02/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6024,2/03/2018 14:56,18/02/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7315,2/03/2018 14:52,22/02/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7318,2/03/2018 14:51,22/02/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-7319,2/03/2018 14:49,22/02/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12723,2/03/2018 14:48,15/02/2018 10:29,4.3,200, Information Exposure,nan
CVE-2018-5981,2/03/2018 14:47,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12725,2/03/2018 14:40,15/02/2018 10:29,6.8,798, Use of Hard-coded Credentials,nan
CVE-2017-12724,2/03/2018 14:40,15/02/2018 10:29,6.8,798, Use of Hard-coded Credentials,nan
CVE-2017-12726,2/03/2018 14:39,15/02/2018 10:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-8535,2/03/2018 14:39,15/02/2018 22:29,3.5,20, Improper Input Validation,nan
CVE-2016-8534,2/03/2018 14:38,15/02/2018 22:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8533,2/03/2018 14:38,15/02/2018 22:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8531,2/03/2018 14:36,15/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-6912,2/03/2018 14:33,12/02/2018 2:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-2186,2/03/2018 14:18,3/02/2018 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-12549,2/03/2018 14:14,15/02/2018 22:29,5.5,287, Improper Authentication,nan
CVE-2017-12546,2/03/2018 14:07,15/02/2018 22:29,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12545,2/03/2018 14:06,15/02/2018 22:29,7.8,476, NULL Pointer Dereference,nan
CVE-2017-12544,2/03/2018 14:03,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6596,2/03/2018 13:56,3/02/2018 21:29,6.4,200, Information Exposure,nan
CVE-2018-7180,2/03/2018 13:11,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5982,1/03/2018 20:03,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1720,1/03/2018 20:03,13/02/2018 20:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-5993,1/03/2018 20:02,17/02/2018 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-13246,1/03/2018 20:02,12/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2017-13243,1/03/2018 20:01,12/02/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-6866,1/03/2018 19:26,23/02/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000045,1/03/2018 19:25,9/02/2018 23:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-1000046,1/03/2018 19:16,9/02/2018 23:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-6867,1/03/2018 18:59,23/02/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6868,1/03/2018 16:14,23/02/2018 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000047,1/03/2018 16:12,9/02/2018 23:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-6610,1/03/2018 16:11,5/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-1000048,1/03/2018 16:11,9/02/2018 23:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2018-2393,1/03/2018 15:39,14/02/2018 12:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-2392,1/03/2018 15:39,14/02/2018 12:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-8532,1/03/2018 15:38,15/02/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6279,1/03/2018 15:32,6/02/2018 13:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-6258,1/03/2018 15:32,6/02/2018 13:29,7.2,787, Out-of-bounds Write,nan
CVE-2018-1000043,1/03/2018 15:31,9/02/2018 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-1000042,1/03/2018 15:31,9/02/2018 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6609,1/03/2018 15:26,5/02/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6792,1/03/2018 15:25,7/02/2018 2:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3605,1/03/2018 15:18,9/02/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000020,1/03/2018 15:16,9/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000019,1/03/2018 15:16,9/02/2018 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6758,1/03/2018 15:06,6/02/2018 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15331,1/03/2018 14:46,15/02/2018 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-17160,1/03/2018 14:45,15/02/2018 16:29,7.1,787, Out-of-bounds Write,nan
CVE-2018-6795,1/03/2018 14:40,7/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6288,1/03/2018 14:40,6/02/2018 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-4877,1/03/2018 14:28,6/02/2018 21:29,10.0,416, Use After Free,nan
CVE-2018-6878,1/03/2018 14:26,9/02/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17294,1/03/2018 14:26,15/02/2018 16:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-17293,1/03/2018 14:24,15/02/2018 16:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17292,1/03/2018 14:24,15/02/2018 16:29,2.1,20, Improper Input Validation,nan
CVE-2017-2681,1/03/2018 2:29,11/05/2017 10:29,6.1,20, Improper Input Validation,nan
CVE-2017-12629,1/03/2018 2:29,14/10/2017 23:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000044,28/02/2018 19:26,9/02/2018 23:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6863,28/02/2018 19:24,12/02/2018 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6582,28/02/2018 19:03,5/02/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6605,28/02/2018 19:02,5/02/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6604,28/02/2018 19:02,5/02/2018 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6468,28/02/2018 18:43,6/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6467,28/02/2018 18:43,6/02/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6466,28/02/2018 18:43,6/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6469,28/02/2018 18:28,6/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6460,28/02/2018 17:19,31/01/2018 17:29,5.0,200, Information Exposure,nan
CVE-2018-1192,28/02/2018 16:39,1/02/2018 20:29,6.5,200, Information Exposure,nan
CVE-2018-3607,27/02/2018 19:45,9/02/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6824,27/02/2018 19:44,7/02/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5306,27/02/2018 19:44,9/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0941,27/02/2018 19:44,8/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6346,27/02/2018 19:43,9/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3606,27/02/2018 19:40,9/02/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5307,27/02/2018 19:39,9/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6891,27/02/2018 19:38,11/02/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3604,27/02/2018 19:29,9/02/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3603,27/02/2018 19:29,9/02/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3602,27/02/2018 19:28,9/02/2018 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3600,27/02/2018 19:25,9/02/2018 22:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-3601,27/02/2018 19:23,9/02/2018 22:29,7.5,287, Improper Authentication,nan
CVE-2014-9503,27/02/2018 18:58,1/02/2018 17:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9502,27/02/2018 18:55,1/02/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9504,27/02/2018 18:45,1/02/2018 17:29,5.0,284, Improper Access Control,nan
CVE-2017-4951,27/02/2018 18:41,29/01/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-4947,27/02/2018 18:38,29/01/2018 16:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2014-3519,27/02/2018 18:37,1/02/2018 17:29,4.9,284, Improper Access Control,nan
CVE-2017-15653,27/02/2018 18:31,31/01/2018 20:29,6.5,613, Insufficient Session Expiration,nan
CVE-2018-2389,27/02/2018 18:22,14/02/2018 12:29,4.0,20, Improper Input Validation,nan
CVE-2018-2387,27/02/2018 18:09,14/02/2018 12:29,4.0,200, Information Exposure,nan
CVE-2018-2386,27/02/2018 18:09,14/02/2018 12:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2385,27/02/2018 18:06,14/02/2018 12:29,4.0,369, Divide By Zero,nan
CVE-2018-2384,27/02/2018 17:52,14/02/2018 12:29,4.0,476, NULL Pointer Dereference,nan
CVE-2018-2382,27/02/2018 17:52,14/02/2018 12:29,4.0,200, Information Exposure,nan
CVE-2017-17996,27/02/2018 16:20,6/02/2018 16:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6408,27/02/2018 16:12,30/01/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6407,27/02/2018 16:12,30/01/2018 21:29,7.8,20, Improper Input Validation,nan
CVE-2018-6644,27/02/2018 16:00,8/02/2018 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15338,27/02/2018 15:59,15/02/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6347,27/02/2018 15:59,9/02/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15339,27/02/2018 15:29,15/02/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15337,27/02/2018 15:28,15/02/2018 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15334,27/02/2018 15:25,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15336,27/02/2018 15:20,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15335,27/02/2018 15:18,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15333,27/02/2018 15:17,15/02/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2018-2383,27/02/2018 15:15,14/02/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2388,27/02/2018 15:04,14/02/2018 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2395,27/02/2018 15:03,14/02/2018 12:29,6.5,20, Improper Input Validation,nan
CVE-2016-7565,27/02/2018 2:29,13/02/2017 18:59,7.5,284, Improper Access Control,nan
CVE-2016-7452,27/02/2018 2:29,3/11/2016 10:59,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-7400,27/02/2018 2:29,7/02/2017 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7095,27/02/2018 2:29,3/11/2016 10:59,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-2540,26/02/2018 21:34,7/02/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000506,26/02/2018 21:28,9/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000510,26/02/2018 21:26,9/02/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000509,26/02/2018 21:19,9/02/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000508,26/02/2018 21:02,9/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6611,26/02/2018 21:01,4/02/2018 12:29,6.8,125, Out-of-bounds Read,nan
CVE-2015-4461,26/02/2018 21:01,5/02/2018 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2541,26/02/2018 21:00,7/02/2018 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6796,26/02/2018 20:46,7/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000507,26/02/2018 20:46,9/02/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6655,26/02/2018 20:31,7/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1761,26/02/2018 20:29,9/02/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1382,26/02/2018 20:28,7/02/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6599,26/02/2018 20:05,30/01/2018 20:29,7.5,255, Credentials Management,nan
CVE-2018-6864,26/02/2018 20:01,12/02/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6862,26/02/2018 19:57,12/02/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6861,26/02/2018 19:54,12/02/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6860,26/02/2018 19:53,12/02/2018 3:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6858,26/02/2018 19:50,12/02/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6845,26/02/2018 19:49,12/02/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6598,26/02/2018 19:39,30/01/2018 20:29,10.0,284, Improper Access Control,nan
CVE-2014-4705,26/02/2018 19:31,30/01/2018 17:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1785,26/02/2018 19:25,7/02/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-1401,26/02/2018 19:12,9/02/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000034,26/02/2018 19:11,9/02/2018 23:29,6.4,125, Out-of-bounds Read,nan
CVE-2018-1000032,26/02/2018 19:11,9/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6844,26/02/2018 18:52,8/02/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6834,26/02/2018 18:46,8/02/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1000035,26/02/2018 18:42,9/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-1000033,26/02/2018 18:41,9/02/2018 23:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-7351,26/02/2018 18:41,8/02/2018 15:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-1000031,26/02/2018 18:37,9/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2329,26/02/2018 17:49,8/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4179,26/02/2018 16:33,5/02/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3618,26/02/2018 16:32,6/02/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3619,26/02/2018 16:31,6/02/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4317,26/02/2018 15:42,6/02/2018 14:29,4.0,200, Information Exposure,nan
CVE-2013-2830,26/02/2018 15:41,8/02/2018 23:29,9.3,416, Use After Free,nan
CVE-2017-17166,26/02/2018 15:21,15/02/2018 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-17163,26/02/2018 15:20,15/02/2018 16:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17152,26/02/2018 15:12,15/02/2018 16:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-15351,26/02/2018 15:06,15/02/2018 16:29,7.2,287, Improper Authentication,nan
CVE-2017-15329,26/02/2018 15:05,15/02/2018 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17288,26/02/2018 15:04,15/02/2018 16:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-17185,26/02/2018 14:54,15/02/2018 16:29,4.0,125, Out-of-bounds Read,nan
CVE-2017-17184,26/02/2018 14:50,15/02/2018 16:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2017-17183,26/02/2018 14:48,15/02/2018 16:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2017-15348,26/02/2018 14:46,15/02/2018 16:29,7.8,20, Improper Input Validation,nan
CVE-2017-8980,26/02/2018 14:44,15/02/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-15347,26/02/2018 14:44,15/02/2018 16:29,7.1,416, Use After Free,nan
CVE-2017-17187,26/02/2018 14:31,15/02/2018 16:29,4.0,190, Integer Overflow or Wraparound,nan
CVE-2017-17186,26/02/2018 14:31,15/02/2018 16:29,5.5,20, Improper Input Validation,nan
CVE-2017-7272,26/02/2018 2:29,27/03/2017 17:59,5.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-12560,25/02/2018 22:56,15/02/2018 22:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12559,25/02/2018 22:40,15/02/2018 22:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6169,24/02/2018 21:51,7/02/2018 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6168,24/02/2018 21:50,7/02/2018 17:29,6.8,416, Use After Free,nan
CVE-2017-17157,24/02/2018 21:47,15/02/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2013-3552,24/02/2018 21:47,8/02/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17156,24/02/2018 21:46,15/02/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2013-3553,24/02/2018 21:46,8/02/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17155,24/02/2018 21:45,15/02/2018 16:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-17154,24/02/2018 21:45,15/02/2018 16:29,5.0,20, Improper Input Validation,nan
CVE-2018-6374,24/02/2018 21:37,31/01/2018 21:29,6.4,295, Improper Certificate Validation,nan
CVE-2017-8916,24/02/2018 21:37,31/01/2018 16:29,4.6,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-15346,24/02/2018 21:26,15/02/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-15350,24/02/2018 18:56,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8967,24/02/2018 18:53,15/02/2018 22:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-8966,24/02/2018 18:53,15/02/2018 22:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-8965,24/02/2018 18:53,15/02/2018 22:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-8964,24/02/2018 18:53,15/02/2018 22:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-8963,24/02/2018 18:53,15/02/2018 22:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-8962,24/02/2018 18:53,15/02/2018 22:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-8961,24/02/2018 16:38,15/02/2018 22:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10711,24/02/2018 16:38,29/01/2018 20:29,7.5,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-5819,24/02/2018 16:37,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5818,24/02/2018 16:37,15/02/2018 22:29,7.8,20, Improper Input Validation,nan
CVE-2017-5817,24/02/2018 16:37,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5816,24/02/2018 16:37,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5815,24/02/2018 16:37,15/02/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-5792,24/02/2018 16:37,15/02/2018 22:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-2296,24/02/2018 16:29,1/02/2018 22:29,4.0,20, Improper Input Validation,nan
CVE-2017-18037,24/02/2018 16:26,2/02/2018 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10259,24/02/2018 2:29,11/04/2017 14:59,4.3,399, Resource Management Errors,nan
CVE-2017-17182,23/02/2018 20:06,15/02/2018 16:29,4.0,125, Out-of-bounds Read,nan
CVE-2017-12541,23/02/2018 19:24,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12540,23/02/2018 19:24,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12539,23/02/2018 19:24,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12538,23/02/2018 19:23,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12537,23/02/2018 19:23,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12536,23/02/2018 19:22,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12535,23/02/2018 19:22,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12534,23/02/2018 19:20,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12533,23/02/2018 18:53,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12532,23/02/2018 18:52,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12531,23/02/2018 18:52,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12530,23/02/2018 18:51,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12529,23/02/2018 18:50,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12528,23/02/2018 18:50,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12527,23/02/2018 18:49,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12526,23/02/2018 18:49,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12525,23/02/2018 18:49,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12524,23/02/2018 18:39,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12523,23/02/2018 18:39,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12522,23/02/2018 18:39,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12521,23/02/2018 18:39,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12519,23/02/2018 18:39,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12518,23/02/2018 18:36,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12517,23/02/2018 18:36,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12516,23/02/2018 18:21,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12515,23/02/2018 18:21,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12514,23/02/2018 18:21,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12513,23/02/2018 18:21,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12512,23/02/2018 18:21,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12511,23/02/2018 18:21,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12510,23/02/2018 18:17,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12509,23/02/2018 18:17,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12508,23/02/2018 18:17,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12507,23/02/2018 18:16,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12506,23/02/2018 18:09,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12505,23/02/2018 18:03,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12504,23/02/2018 18:02,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12503,23/02/2018 18:02,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12502,23/02/2018 18:02,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12501,23/02/2018 18:02,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12499,23/02/2018 18:01,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12498,23/02/2018 18:01,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12497,23/02/2018 18:01,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12496,23/02/2018 18:01,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12495,23/02/2018 18:01,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12494,23/02/2018 17:57,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12493,23/02/2018 17:57,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12492,23/02/2018 17:56,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12491,23/02/2018 17:56,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12490,23/02/2018 17:55,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12489,23/02/2018 17:48,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2014-8985,23/02/2018 17:47,8/02/2018 23:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12488,23/02/2018 17:35,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-12487,23/02/2018 17:35,15/02/2018 22:29,9.0,20, Improper Input Validation,nan
CVE-2018-6291,23/02/2018 16:02,6/02/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6289,23/02/2018 15:59,6/02/2018 15:29,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2012-5360,23/02/2018 15:59,8/02/2018 23:29,9.3,20, Improper Input Validation,nan
CVE-2012-5359,23/02/2018 15:58,8/02/2018 23:29,9.3,20, Improper Input Validation,nan
CVE-2011-2902,23/02/2018 15:57,30/01/2018 20:29,6.4,20, Improper Input Validation,nan
CVE-2017-5132,23/02/2018 15:56,7/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5128,23/02/2018 15:56,7/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5127,23/02/2018 15:55,7/02/2018 23:29,6.8,416, Use After Free,nan
CVE-2017-5125,23/02/2018 15:55,7/02/2018 23:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5124,23/02/2018 15:54,7/02/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15395,23/02/2018 15:48,7/02/2018 23:29,4.3,416, Use After Free,nan
CVE-2017-15394,23/02/2018 15:47,7/02/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2017-15392,23/02/2018 15:45,7/02/2018 23:29,4.0,20, Improper Input Validation,nan
CVE-2017-15390,23/02/2018 15:38,7/02/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2017-15386,23/02/2018 15:37,7/02/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2017-9414,23/02/2018 15:15,5/02/2018 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8783,23/02/2018 15:14,4/02/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17703,23/02/2018 15:13,4/02/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12470,23/02/2018 15:12,7/02/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-12469,23/02/2018 15:10,7/02/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12468,23/02/2018 15:10,7/02/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12466,23/02/2018 15:09,7/02/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12465,23/02/2018 15:09,7/02/2018 17:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2018-0001,23/02/2018 2:29,10/01/2018 22:29,7.5,416, Use After Free,nan
CVE-2016-6319,23/02/2018 2:29,19/08/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4451,23/02/2018 2:29,19/08/2016 21:59,6.0,254, 7PK – Security Features,nan
CVE-2016-3704,23/02/2018 2:29,13/06/2017 17:29,5.0,255, Credentials Management,nan
CVE-2016-3696,23/02/2018 2:29,13/06/2017 16:29,2.1,200, Information Exposure,nan
CVE-2016-3693,23/02/2018 2:29,20/05/2016 14:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6459,23/02/2018 2:29,31/12/2013 16:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12473,22/02/2018 18:48,7/02/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2012-3331,22/02/2018 18:47,8/02/2018 23:29,5.0,200, Information Exposure,nan
CVE-2017-12472,22/02/2018 18:46,7/02/2018 17:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-12471,22/02/2018 18:42,7/02/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12464,22/02/2018 18:42,7/02/2018 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2018-6612,22/02/2018 18:05,4/02/2018 15:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-5131,22/02/2018 17:33,7/02/2018 23:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-5129,22/02/2018 17:32,7/02/2018 23:29,6.8,416, Use After Free,nan
CVE-2017-5126,22/02/2018 17:32,7/02/2018 23:29,6.8,416, Use After Free,nan
CVE-2017-15389,22/02/2018 17:30,7/02/2018 23:29,4.3,20, Improper Input Validation,nan
CVE-2017-15388,22/02/2018 17:28,7/02/2018 23:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-17151,22/02/2018 17:05,15/02/2018 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-15356,22/02/2018 17:04,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15355,22/02/2018 17:02,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15354,22/02/2018 17:01,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15353,22/02/2018 17:00,15/02/2018 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2018-5788,22/02/2018 16:51,5/02/2018 4:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5790,22/02/2018 16:50,5/02/2018 4:29,2.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5789,22/02/2018 16:50,5/02/2018 4:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5791,22/02/2018 16:49,5/02/2018 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5793,22/02/2018 16:48,5/02/2018 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5792,22/02/2018 16:48,5/02/2018 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14699,22/02/2018 16:35,29/01/2018 16:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5794,22/02/2018 16:25,5/02/2018 4:29,5.0,287, Improper Authentication,nan
CVE-2018-5796,22/02/2018 16:06,5/02/2018 4:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6625,22/02/2018 15:28,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6632,22/02/2018 14:54,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6631,22/02/2018 14:54,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6630,22/02/2018 14:54,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6629,22/02/2018 14:53,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6628,22/02/2018 14:53,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6627,22/02/2018 14:52,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2018-6626,22/02/2018 14:52,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2017-15345,22/02/2018 14:41,15/02/2018 16:29,5.7,400, Uncontrolled Resource Consumption,nan
CVE-2017-15344,22/02/2018 14:40,15/02/2018 16:29,7.8,190, Integer Overflow or Wraparound,nan
CVE-2017-15343,22/02/2018 14:39,15/02/2018 16:29,7.8,190, Integer Overflow or Wraparound,nan
CVE-2017-15342,22/02/2018 14:38,15/02/2018 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15341,22/02/2018 14:36,15/02/2018 16:29,5.0,295, Improper Certificate Validation,nan
CVE-2018-6787,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6786,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6785,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6784,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6783,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6782,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6781,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6780,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6779,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6778,22/02/2018 14:27,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6788,22/02/2018 14:26,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6777,22/02/2018 14:26,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6776,22/02/2018 14:26,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6775,22/02/2018 14:26,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6774,22/02/2018 14:21,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6773,22/02/2018 14:21,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6772,22/02/2018 14:21,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6771,22/02/2018 14:20,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6770,22/02/2018 14:20,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6769,22/02/2018 14:20,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6768,22/02/2018 14:20,6/02/2018 23:29,6.1,20, Improper Input Validation,nan
CVE-2018-6633,22/02/2018 14:04,5/02/2018 18:29,6.1,20, Improper Input Validation,nan
CVE-2017-17413,22/02/2018 12:54,8/02/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5310,22/02/2018 2:29,6/01/2016 19:59,3.3,200, Information Exposure,nan
CVE-2009-1437,22/02/2018 2:29,27/04/2009 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6525,21/02/2018 16:54,2/02/2018 1:29,6.1,20, Improper Input Validation,nan
CVE-2018-6524,21/02/2018 16:54,2/02/2018 1:29,6.1,20, Improper Input Validation,nan
CVE-2018-6523,21/02/2018 16:54,2/02/2018 1:29,6.1,20, Improper Input Validation,nan
CVE-2018-6522,21/02/2018 16:53,2/02/2018 1:29,6.1,20, Improper Input Validation,nan
CVE-2017-2750,21/02/2018 15:57,23/01/2018 16:29,7.5,20, Improper Input Validation,nan
CVE-2017-15655,21/02/2018 15:45,31/01/2018 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3005,21/02/2018 14:57,1/02/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2011-4069,21/02/2018 14:53,1/02/2018 17:29,7.5,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2011-4068,21/02/2018 14:53,1/02/2018 17:29,7.5,287, Improper Authentication,nan
CVE-2018-6548,21/02/2018 14:19,2/02/2018 9:29,7.5,416, Use After Free,nan
CVE-2018-6480,21/02/2018 14:05,31/01/2018 20:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-6383,21/02/2018 13:50,29/01/2018 18:29,6.5,184, Incomplete Blacklist,nan
CVE-2018-6355,21/02/2018 13:47,30/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5720,21/02/2018 13:47,29/01/2018 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0759,20/02/2018 2:29,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3315,19/02/2018 2:29,26/06/2017 15:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-5791,17/02/2018 2:29,11/10/2017 21:29,10.0,287, Improper Authentication,nan
CVE-2017-2252,17/02/2018 2:29,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-1000251,17/02/2018 2:29,12/09/2017 17:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000250,17/02/2018 2:29,12/09/2017 17:29,3.3,200, Information Exposure,nan
CVE-2016-4385,17/02/2018 2:29,29/09/2016 14:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-5727,16/02/2018 19:25,2/02/2018 15:29,7.2,476, NULL Pointer Dereference,nan
CVE-2016-0329,16/02/2018 16:28,2/02/2018 21:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2013-7435,16/02/2018 16:23,1/02/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-3835,16/02/2018 13:05,29/01/2018 20:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-4319,16/02/2018 2:29,10/04/2017 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4318,16/02/2018 2:29,10/04/2017 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4317,16/02/2018 2:29,10/04/2017 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6195,15/02/2018 18:30,30/01/2018 20:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5761,15/02/2018 18:26,22/01/2018 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-1000354,15/02/2018 18:25,29/01/2018 17:29,6.5,287, Improper Authentication,nan
CVE-2018-0486,15/02/2018 18:24,13/01/2018 18:29,6.4,347, Improper Verification of Cryptographic Signature,nan
CVE-2018-6354,15/02/2018 18:23,27/01/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18077,15/02/2018 18:14,27/01/2018 12:29,5.0,20, Improper Input Validation,nan
CVE-2016-0342,15/02/2018 18:12,2/02/2018 21:29,5.5,284, Improper Access Control,nan
CVE-2017-3768,15/02/2018 18:06,26/01/2018 19:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2018-5749,15/02/2018 17:49,23/01/2018 19:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-6008,15/02/2018 17:42,29/01/2018 5:29,5.0,200, Information Exposure,nan
CVE-2015-1142857,15/02/2018 17:23,23/01/2018 14:29,5.0,254, 7PK – Security Features,nan
CVE-2018-5703,15/02/2018 17:09,16/01/2018 9:29,10.0,787, Out-of-bounds Write,nan
CVE-2018-6357,15/02/2018 17:08,27/01/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6397,15/02/2018 16:58,30/01/2018 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1773,15/02/2018 16:51,31/01/2018 15:29,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2018-6465,15/02/2018 16:44,31/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2796,15/02/2018 16:36,2/02/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5701,15/02/2018 16:35,31/01/2018 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2203,15/02/2018 16:34,1/02/2018 17:29,4.0,200, Information Exposure,nan
CVE-2018-6353,15/02/2018 16:32,27/01/2018 15:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3244,15/02/2018 16:23,1/02/2018 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6537,15/02/2018 16:14,2/02/2018 9:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-18083,15/02/2018 15:55,2/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6352,15/02/2018 15:51,27/01/2018 15:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2018-1364,15/02/2018 15:46,29/01/2018 16:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-6390,15/02/2018 15:45,29/01/2018 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6318,15/02/2018 15:41,2/02/2018 21:29,9.3,426, Untrusted Search Path,nan
CVE-2018-6561,15/02/2018 15:36,2/02/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6007,15/02/2018 15:28,29/01/2018 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0303,15/02/2018 15:28,2/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18034,15/02/2018 15:26,2/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6388,15/02/2018 15:24,29/01/2018 18:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6387,15/02/2018 15:24,29/01/2018 18:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2018-6470,15/02/2018 15:22,1/02/2018 13:29,5.0,200, Information Exposure,nan
CVE-2018-6520,15/02/2018 15:21,2/02/2018 1:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-6317,15/02/2018 15:14,2/02/2018 21:29,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2017-15546,15/02/2018 13:26,25/01/2018 3:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000353,15/02/2018 13:22,29/01/2018 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-14180,15/02/2018 13:21,2/02/2018 14:29,7.2,400, Uncontrolled Resource Consumption,nan
CVE-2017-14179,15/02/2018 13:21,2/02/2018 14:29,7.2,400, Uncontrolled Resource Consumption,nan
CVE-2015-2204,15/02/2018 13:21,1/02/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-14177,15/02/2018 13:20,2/02/2018 14:29,7.2,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000356,15/02/2018 13:15,29/01/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000355,15/02/2018 13:14,29/01/2018 17:29,4.0,502, Deserialization of Untrusted Data,nan
CVE-2016-7034,15/02/2018 2:29,7/09/2016 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-18120,14/02/2018 18:21,2/02/2018 9:29,6.8,415, Double Free,nan
CVE-2018-6579,14/02/2018 18:19,2/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6194,14/02/2018 17:08,30/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6464,14/02/2018 16:28,31/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6577,14/02/2018 16:26,2/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6575,14/02/2018 16:26,2/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0311,14/02/2018 16:09,2/02/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6391,14/02/2018 15:46,29/01/2018 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6395,14/02/2018 15:39,30/01/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0312,14/02/2018 15:39,2/02/2018 21:29,5.0,200, Information Exposure,nan
CVE-2018-0510,14/02/2018 15:25,1/02/2018 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0508,14/02/2018 15:25,1/02/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0509,14/02/2018 15:24,1/02/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0300,14/02/2018 15:24,2/02/2018 21:29,5.5,20, Improper Input Validation,nan
CVE-2018-6398,14/02/2018 15:16,30/01/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6550,14/02/2018 15:14,2/02/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1835,14/02/2018 15:12,2/02/2018 21:29,2.1,255, Credentials Management,nan
CVE-2014-1834,14/02/2018 15:12,2/02/2018 21:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2018-6545,14/02/2018 15:08,2/02/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6580,14/02/2018 15:05,2/02/2018 17:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14190,14/02/2018 15:05,29/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6576,14/02/2018 15:04,2/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-2675,14/02/2018 14:56,18/01/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-6581,14/02/2018 14:14,2/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6578,14/02/2018 14:13,2/02/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6363,14/02/2018 14:09,29/01/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18038,14/02/2018 14:09,2/02/2018 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-6367,14/02/2018 14:06,29/01/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6365,14/02/2018 14:06,29/01/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6364,14/02/2018 14:06,29/01/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9970,14/02/2018 2:29,21/05/2017 18:29,5.0,200, Information Exposure,nan
CVE-2018-6377,13/02/2018 18:48,30/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18082,13/02/2018 18:47,2/02/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18080,13/02/2018 18:46,2/02/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1342,13/02/2018 18:34,26/01/2018 2:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-5727,13/02/2018 18:33,16/01/2018 22:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-0506,13/02/2018 18:31,26/01/2018 16:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6376,13/02/2018 18:10,30/01/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-6380,13/02/2018 18:09,30/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6379,13/02/2018 17:56,30/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0507,13/02/2018 17:54,26/01/2018 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2743,13/02/2018 17:46,23/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6475,13/02/2018 16:20,31/01/2018 19:29,9.3,426, Untrusted Search Path,nan
CVE-2017-1000417,13/02/2018 16:18,22/01/2018 23:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-18049,13/02/2018 16:17,23/01/2018 6:29,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-6471,13/02/2018 16:13,31/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-6476,13/02/2018 16:12,31/01/2018 19:29,10.0,20, Improper Input Validation,nan
CVE-2018-6474,13/02/2018 16:12,31/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-6473,13/02/2018 16:12,31/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-6472,13/02/2018 16:12,31/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2017-12632,13/02/2018 15:44,23/01/2018 22:29,5.0,20, Improper Input Validation,nan
CVE-2016-10710,13/02/2018 15:39,25/01/2018 23:29,6.5,20, Improper Input Validation,nan
CVE-2018-6014,13/02/2018 15:37,23/01/2018 0:29,4.3,200, Information Exposure,nan
CVE-2017-13696,13/02/2018 15:35,24/01/2018 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9965,13/02/2018 2:29,2/01/2018 3:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9964,13/02/2018 2:29,2/01/2018 3:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000405,13/02/2018 2:29,30/11/2017 22:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1429,13/02/2018 2:29,28/04/2010 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-4950,13/02/2018 0:35,11/01/2018 14:29,6.9,190, Integer Overflow or Wraparound,nan
CVE-2017-4949,13/02/2018 0:34,11/01/2018 14:29,6.9,416, Use After Free,nan
CVE-2018-6217,12/02/2018 19:12,25/01/2018 8:29,4.3,20, Improper Input Validation,nan
CVE-2018-5319,12/02/2018 18:46,24/01/2018 15:29,5.0,200, Information Exposure,nan
CVE-2018-6015,12/02/2018 18:45,26/01/2018 20:29,5.0,200, Information Exposure,nan
CVE-2018-6308,12/02/2018 18:37,25/01/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5345,12/02/2018 18:08,23/01/2018 1:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000502,12/02/2018 18:03,24/01/2018 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-0797,12/02/2018 16:19,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15697,12/02/2018 16:15,23/01/2018 22:29,7.5,20, Improper Input Validation,nan
CVE-2017-1000503,12/02/2018 16:08,24/01/2018 23:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15703,12/02/2018 16:07,25/01/2018 21:29,3.5,502, Deserialization of Untrusted Data,nan
CVE-2018-5997,12/02/2018 15:36,25/01/2018 17:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-5976,12/02/2018 15:34,24/01/2018 10:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2166,12/02/2018 15:34,26/01/2018 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-6184,12/02/2018 15:05,24/01/2018 10:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5969,12/02/2018 15:03,24/01/2018 10:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-6022,12/02/2018 15:01,23/01/2018 6:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000475,12/02/2018 14:53,24/01/2018 14:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2018-6029,12/02/2018 14:43,23/01/2018 6:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5967,12/02/2018 14:31,25/01/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5960,12/02/2018 14:04,22/01/2018 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000389,12/02/2018 12:52,26/01/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17973,12/02/2018 2:29,29/12/2017 21:29,6.8,416, Use After Free,nan
CVE-2017-3066,10/02/2018 2:29,27/04/2017 14:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-1681,10/02/2018 2:29,11/01/2018 17:29,2.1,200, Information Exposure,nan
CVE-2016-10709,9/02/2018 20:18,22/01/2018 4:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-6010,9/02/2018 20:17,22/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-6009,9/02/2018 20:16,22/01/2018 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5962,9/02/2018 20:15,22/01/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17999,9/02/2018 20:11,23/01/2018 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000505,9/02/2018 20:10,25/01/2018 18:29,4.0,200, Information Exposure,nan
CVE-2018-5359,9/02/2018 20:08,23/01/2018 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1653,9/02/2018 20:06,26/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5961,9/02/2018 18:14,22/01/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2744,9/02/2018 18:13,23/01/2018 16:29,2.1,200, Information Exposure,nan
CVE-2018-5299,9/02/2018 18:11,16/01/2018 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-6191,9/02/2018 18:10,24/01/2018 21:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-6190,9/02/2018 18:10,24/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5973,9/02/2018 18:08,25/01/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5778,9/02/2018 18:08,24/01/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5705,9/02/2018 17:55,24/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5704,9/02/2018 17:55,16/01/2018 9:29,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2012-5361,9/02/2018 2:29,20/03/2017 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000404,8/02/2018 19:07,26/01/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6313,8/02/2018 18:45,25/01/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6203,8/02/2018 18:45,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6202,8/02/2018 18:44,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6201,8/02/2018 18:44,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6200,8/02/2018 18:43,25/01/2018 4:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-5972,8/02/2018 18:43,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1279,8/02/2018 17:32,26/01/2018 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000402,8/02/2018 16:56,26/01/2018 2:29,4.3,20, Improper Input Validation,nan
CVE-2017-2746,8/02/2018 16:39,23/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18048,8/02/2018 16:28,23/01/2018 6:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-17976,8/02/2018 16:24,26/01/2018 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1769,8/02/2018 16:22,24/01/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1506,8/02/2018 16:22,26/01/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000414,8/02/2018 16:17,25/01/2018 16:29,5.0,369, Divide By Zero,nan
CVE-2017-1563,8/02/2018 14:48,26/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1540,8/02/2018 14:45,26/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1532,8/02/2018 14:44,26/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1516,8/02/2018 14:44,26/01/2018 21:29,3.5,20, Improper Input Validation,nan
CVE-2017-1515,8/02/2018 14:41,26/01/2018 21:29,4.0,200, Information Exposure,nan
CVE-2017-1000397,8/02/2018 14:36,26/01/2018 2:29,4.3,20, Improper Input Validation,nan
CVE-2016-9637,8/02/2018 2:29,17/02/2017 2:59,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2015-1318,8/02/2018 2:29,17/04/2015 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2001-0136,7/02/2018 16:57,12/03/2001 5:00,5.0,399, Resource Management Errors,nan
CVE-2018-6209,7/02/2018 15:15,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6208,7/02/2018 15:15,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6207,7/02/2018 15:15,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6206,7/02/2018 15:15,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6205,7/02/2018 15:15,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-6204,7/02/2018 15:14,25/01/2018 4:29,6.1,20, Improper Input Validation,nan
CVE-2018-5965,7/02/2018 14:20,25/01/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5964,7/02/2018 14:20,25/01/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5963,7/02/2018 14:20,25/01/2018 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6001,7/02/2018 14:06,22/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6013,7/02/2018 14:05,23/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-6002,7/02/2018 14:05,22/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5988,7/02/2018 14:03,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5986,7/02/2018 14:03,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5985,7/02/2018 14:03,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5984,7/02/2018 14:00,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5979,7/02/2018 13:59,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5978,7/02/2018 13:58,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5977,7/02/2018 13:57,24/01/2018 10:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1204,7/02/2018 12:45,26/01/2018 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-6217,7/02/2018 12:45,26/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2983,7/02/2018 12:45,26/01/2018 21:29,6.8,20, Improper Input Validation,nan
CVE-2018-1000014,7/02/2018 12:22,23/01/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000013,7/02/2018 12:21,23/01/2018 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-1000012,7/02/2018 12:21,23/01/2018 14:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000011,7/02/2018 12:21,23/01/2018 14:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000010,7/02/2018 12:21,23/01/2018 14:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000009,7/02/2018 12:20,23/01/2018 14:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-1000008,7/02/2018 12:18,23/01/2018 14:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-14383,7/02/2018 12:02,4/01/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5696,7/02/2018 11:48,18/01/2018 1:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2745,7/02/2018 11:47,23/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6926,6/02/2018 18:29,19/01/2018 15:29,5.0,287, Improper Authentication,nan
CVE-2014-2017,6/02/2018 17:28,18/01/2018 14:29,5.8,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-17860,6/02/2018 17:11,18/01/2018 22:29,5.7,20, Improper Input Validation,nan
CVE-2014-4919,6/02/2018 15:55,19/01/2018 15:29,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2017-17947,6/02/2018 15:24,16/01/2018 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12130,6/02/2018 15:23,20/01/2018 0:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-18014,6/02/2018 14:56,12/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15713,6/02/2018 14:55,19/01/2018 17:29,4.0,200, Information Exposure,nan
CVE-2017-14457,6/02/2018 14:43,19/01/2018 23:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-13211,6/02/2018 14:42,12/01/2018 23:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-3765,6/02/2018 14:12,10/01/2018 18:29,6.2,287, Improper Authentication,nan
CVE-2018-1000003,6/02/2018 14:06,22/01/2018 18:29,4.3,20, Improper Input Validation,nan
CVE-2018-5370,6/02/2018 14:04,16/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5773,6/02/2018 13:39,18/01/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6142,6/02/2018 13:38,19/01/2018 14:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-18047,6/02/2018 13:35,22/01/2018 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5688,5/02/2018 21:45,14/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5714,5/02/2018 21:41,16/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-5713,5/02/2018 21:41,16/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-5329,5/02/2018 21:35,15/01/2018 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1693,5/02/2018 21:29,19/01/2018 14:29,6.8,613, Insufficient Session Expiration,nan
CVE-2018-1045,5/02/2018 21:27,22/01/2018 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1044,5/02/2018 21:26,22/01/2018 8:29,4.0,200, Information Exposure,nan
CVE-2018-5956,5/02/2018 21:21,21/01/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2018-5958,5/02/2018 21:20,21/01/2018 22:29,6.1,20, Improper Input Validation,nan
CVE-2018-5957,5/02/2018 21:20,21/01/2018 22:29,4.6,20, Improper Input Validation,nan
CVE-2016-0215,5/02/2018 20:12,16/01/2018 19:29,4.0,20, Improper Input Validation,nan
CVE-2018-5724,5/02/2018 20:10,16/01/2018 22:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-5726,5/02/2018 20:07,16/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-5723,5/02/2018 20:07,16/01/2018 22:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-3158,5/02/2018 19:42,18/01/2018 20:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-12119,5/02/2018 15:35,19/01/2018 23:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-7325,5/02/2018 15:31,19/01/2018 17:29,5.0,20, Improper Input Validation,nan
CVE-2016-0219,5/02/2018 15:07,16/01/2018 19:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-9485,5/02/2018 15:06,16/01/2018 19:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-18033,5/02/2018 14:51,18/01/2018 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16863,5/02/2018 14:51,18/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6027,5/02/2018 14:29,16/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3353,5/02/2018 14:28,9/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-5700,5/02/2018 14:26,14/01/2018 20:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5479,5/02/2018 14:24,15/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2816,4/02/2018 2:29,13/09/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17847,4/02/2018 2:29,27/12/2017 17:08,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-17846,4/02/2018 2:29,27/12/2017 17:08,5.0,20, Improper Input Validation,nan
CVE-2017-17845,4/02/2018 2:29,27/12/2017 17:08,7.5,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-17085,4/02/2018 2:29,1/12/2017 8:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-17084,4/02/2018 2:29,1/12/2017 8:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-17083,4/02/2018 2:29,1/12/2017 8:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-16938,4/02/2018 2:29,24/11/2017 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16931,4/02/2018 2:29,23/11/2017 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16898,4/02/2018 2:29,20/11/2017 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16883,4/02/2018 2:29,18/11/2017 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-16853,4/02/2018 2:29,16/11/2017 17:29,6.8,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-16852,4/02/2018 2:29,16/11/2017 17:29,6.8,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-16844,4/02/2018 2:29,16/11/2017 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16663,4/02/2018 2:29,8/11/2017 6:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-16516,4/02/2018 2:29,3/11/2017 15:29,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-16510,4/02/2018 2:29,2/11/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15955,4/02/2018 2:29,28/10/2017 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-15954,4/02/2018 2:29,28/10/2017 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15953,4/02/2018 2:29,28/10/2017 21:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15922,4/02/2018 2:29,26/10/2017 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-15601,4/02/2018 2:29,18/10/2017 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15600,4/02/2018 2:29,18/10/2017 21:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15267,4/02/2018 2:29,11/10/2017 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15266,4/02/2018 2:29,11/10/2017 17:29,4.3,369, Divide By Zero,nan
CVE-2017-15228,4/02/2018 2:29,22/10/2017 20:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-15227,4/02/2018 2:29,22/10/2017 20:29,5.0,416, Use After Free,nan
CVE-2017-14687,4/02/2018 2:29,22/09/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13723,4/02/2018 2:29,10/10/2017 1:30,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11408,4/02/2018 2:29,18/07/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-10672,4/02/2018 2:29,29/06/2017 8:29,7.5,416, Use After Free,nan
CVE-2017-10356,4/02/2018 2:29,19/10/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-1000480,4/02/2018 2:29,3/01/2018 18:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1000472,4/02/2018 2:29,3/01/2018 20:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000231,4/02/2018 2:29,17/11/2017 4:29,7.5,415, Double Free,nan
CVE-2017-1000211,4/02/2018 2:29,17/11/2017 15:29,5.0,416, Use After Free,nan
CVE-2016-3120,4/02/2018 2:29,1/08/2016 2:59,4.0,476, NULL Pointer Dereference,nan
CVE-2016-10516,4/02/2018 2:29,23/10/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5351,4/02/2018 2:29,10/10/2014 1:55,2.1,255, Credentials Management,nan
CVE-2018-0007,2/02/2018 19:25,10/01/2018 22:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-15717,2/02/2018 18:43,10/01/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17662,2/02/2018 18:32,10/01/2018 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5371,2/02/2018 18:23,12/01/2018 9:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2158,2/02/2018 18:22,12/01/2018 14:29,4.3,20, Improper Input Validation,nan
CVE-2018-5301,2/02/2018 18:11,8/01/2018 22:29,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10069,2/02/2018 18:02,7/01/2018 20:29,5.0,310, Cryptographic Issues,nan
CVE-2017-13214,2/02/2018 17:54,12/01/2018 23:29,7.8,20, Improper Input Validation,nan
CVE-2014-5509,2/02/2018 17:39,8/01/2018 19:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-13181,2/02/2018 17:31,12/01/2018 23:29,7.2,415, Double Free,nan
CVE-2017-13180,2/02/2018 17:31,12/01/2018 23:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-13182,2/02/2018 17:30,12/01/2018 23:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-13183,2/02/2018 17:29,12/01/2018 23:29,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10707,2/02/2018 17:26,18/01/2018 23:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2018-5709,2/02/2018 17:24,16/01/2018 9:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-12097,2/02/2018 17:23,19/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12098,2/02/2018 17:22,19/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17946,2/02/2018 17:21,10/01/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13184,2/02/2018 17:10,12/01/2018 23:29,7.2,416, Use After Free,nan
CVE-2017-13206,2/02/2018 17:01,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-5687,2/02/2018 16:56,14/01/2018 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18025,2/02/2018 16:40,9/01/2018 3:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-5715,2/02/2018 16:11,16/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5258,2/02/2018 16:10,17/01/2018 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-5684,2/02/2018 16:04,14/01/2018 2:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9482,2/02/2018 16:03,16/01/2018 19:29,4.3,416, Use After Free,nan
CVE-2017-11072,2/02/2018 16:00,16/01/2018 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5071,2/02/2018 15:56,8/01/2018 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9796,2/02/2018 15:56,10/01/2018 3:29,3.5,200, Information Exposure,nan
CVE-2017-5699,2/02/2018 15:54,18/01/2018 2:29,2.1,20, Improper Input Validation,nan
CVE-2018-5747,2/02/2018 15:48,17/01/2018 19:29,4.3,416, Use After Free,nan
CVE-2018-5195,2/02/2018 15:47,17/01/2018 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16865,2/02/2018 15:24,17/01/2018 14:29,3.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5728,2/02/2018 15:23,16/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-5721,2/02/2018 15:23,17/01/2018 6:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8166,2/02/2018 14:56,12/01/2018 17:29,5.1,20, Improper Input Validation,nan
CVE-2017-13179,2/02/2018 14:49,12/01/2018 23:29,10.0,787, Out-of-bounds Write,nan
CVE-2017-16887,2/02/2018 14:30,12/01/2018 17:29,5.0,275, Permission Issues,nan
CVE-2017-16886,2/02/2018 14:27,12/01/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1290,2/02/2018 14:20,9/01/2018 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16716,2/02/2018 2:29,5/01/2018 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1192,2/02/2018 2:29,10/08/2017 15:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-5063,2/02/2018 2:29,2/05/2017 14:59,5.0,285, Improper Authorization,nan
CVE-2017-13198,1/02/2018 21:18,12/01/2018 23:29,7.8,20, Improper Input Validation,nan
CVE-2017-13197,1/02/2018 21:18,12/01/2018 23:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7327,1/02/2018 21:15,19/01/2018 17:29,6.8,426, Untrusted Search Path,nan
CVE-2017-7326,1/02/2018 21:14,19/01/2018 17:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2018-0785,1/02/2018 21:09,10/01/2018 1:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3888,1/02/2018 21:09,12/01/2018 17:29,5.0,284, Improper Access Control,nan
CVE-2017-1478,1/02/2018 21:06,11/01/2018 17:29,2.1,200, Information Exposure,nan
CVE-2017-13178,1/02/2018 20:49,12/01/2018 23:29,10.0,787, Out-of-bounds Write,nan
CVE-2017-13177,1/02/2018 20:46,12/01/2018 23:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0869,1/02/2018 20:45,12/01/2018 15:29,7.2,416, Use After Free,nan
CVE-2017-0846,1/02/2018 20:44,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2016-0207,1/02/2018 20:42,16/01/2018 19:29,3.5,20, Improper Input Validation,nan
CVE-2015-7484,1/02/2018 20:40,16/01/2018 19:29,4.0,200, Information Exposure,nan
CVE-2015-2981,1/02/2018 20:40,12/01/2018 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-16514,1/02/2018 20:24,10/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000465,1/02/2018 20:22,9/01/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18024,1/02/2018 20:18,10/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14594,1/02/2018 20:17,12/01/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15883,1/02/2018 19:53,8/01/2018 19:29,7.5,287, Improper Authentication,nan
CVE-2017-15664,1/02/2018 19:39,10/01/2018 18:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-15663,1/02/2018 19:39,10/01/2018 18:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-15662,1/02/2018 19:39,10/01/2018 18:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-15665,1/02/2018 19:37,10/01/2018 18:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-7998,1/02/2018 19:11,8/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7997,1/02/2018 19:11,8/01/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12622,1/02/2018 19:05,10/01/2018 3:29,5.5,200, Information Exposure,nan
CVE-2014-4972,1/02/2018 18:41,8/01/2018 19:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2013-4364,1/02/2018 18:38,8/01/2018 19:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2018-5282,1/02/2018 18:35,8/01/2018 9:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5971,1/02/2018 18:27,8/01/2018 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5266,1/02/2018 18:23,8/01/2018 3:29,5.0,200, Information Exposure,nan
CVE-2017-18020,1/02/2018 18:11,4/01/2018 6:29,7.2,20, Improper Input Validation,nan
CVE-2017-11879,1/02/2018 17:06,15/11/2017 3:29,4.3,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10207,1/02/2018 17:05,28/02/2017 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7485,1/02/2018 15:39,16/01/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18023,1/02/2018 15:32,10/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14082,1/02/2018 15:23,19/01/2018 19:29,5.0,200, Information Exposure,nan
CVE-2018-5696,1/02/2018 15:20,14/01/2018 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14096,1/02/2018 15:19,19/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5695,1/02/2018 15:18,14/01/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-18032,1/02/2018 15:10,16/01/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7486,1/02/2018 15:08,16/01/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5697,1/02/2018 15:07,14/01/2018 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5776,1/02/2018 15:06,18/01/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7474,1/02/2018 15:06,16/01/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16864,31/01/2018 18:32,12/01/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5692,31/01/2018 18:31,14/01/2018 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5689,31/01/2018 18:30,14/01/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5690,31/01/2018 18:29,14/01/2018 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17970,31/01/2018 18:09,12/01/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16862,31/01/2018 18:08,12/01/2018 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16878,31/01/2018 18:05,10/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1740,31/01/2018 16:25,11/01/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1739,31/01/2018 16:25,11/01/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1671,31/01/2018 16:13,9/01/2018 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1670,31/01/2018 16:13,9/01/2018 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1668,31/01/2018 16:12,9/01/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1666,31/01/2018 16:12,9/01/2018 20:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5682,31/01/2018 15:51,13/01/2018 5:29,5.0,200, Information Exposure,nan
CVE-2018-5681,31/01/2018 15:50,13/01/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5316,31/01/2018 15:44,9/01/2018 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5298,31/01/2018 15:42,8/01/2018 8:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2018-5211,31/01/2018 15:39,9/01/2018 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6435,31/01/2018 15:24,12/01/2018 17:29,5.0,287, Improper Authentication,nan
CVE-2014-3607,31/01/2018 15:23,8/01/2018 19:29,4.3,295, Improper Certificate Validation,nan
CVE-2014-2071,31/01/2018 15:15,8/01/2018 19:29,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3471,31/01/2018 14:51,12/01/2018 17:29,2.1,416, Use After Free,nan
CVE-2012-6682,31/01/2018 14:48,11/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6671,31/01/2018 14:40,11/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6670,31/01/2018 14:38,11/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6668,31/01/2018 14:35,11/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0699,31/01/2018 14:31,11/01/2018 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9512,31/01/2018 2:29,24/08/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-9511,31/01/2018 2:29,24/08/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9510,31/01/2018 2:29,24/08/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9509,31/01/2018 2:29,24/08/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9508,31/01/2018 2:29,24/08/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9507,31/01/2018 2:29,24/08/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5264,31/01/2018 2:29,14/12/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16570,31/01/2018 2:29,6/11/2017 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-13217,30/01/2018 19:43,12/01/2018 23:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-13216,30/01/2018 19:43,12/01/2018 23:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-13210,30/01/2018 19:34,12/01/2018 23:29,7.2,787, Out-of-bounds Write,nan
CVE-2014-7221,30/01/2018 19:22,8/01/2018 19:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2320,30/01/2018 19:21,8/01/2018 19:29,7.5,295, Improper Certificate Validation,nan
CVE-2014-7222,30/01/2018 19:21,8/01/2018 19:29,4.0,20, Improper Input Validation,nan
CVE-2015-2319,30/01/2018 19:20,8/01/2018 19:29,5.0,295, Improper Certificate Validation,nan
CVE-2015-2318,30/01/2018 19:19,8/01/2018 19:29,6.8,295, Improper Certificate Validation,nan
CVE-2015-1208,30/01/2018 19:19,9/01/2018 16:29,4.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-1000428,30/01/2018 19:16,10/01/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1534,30/01/2018 19:15,10/01/2018 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2014-5004,30/01/2018 19:15,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-5003,30/01/2018 19:13,10/01/2018 18:29,2.1,20, Improper Input Validation,nan
CVE-2014-5001,30/01/2018 19:02,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-5000,30/01/2018 18:20,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-4999,30/01/2018 18:20,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-4998,30/01/2018 18:18,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-4997,30/01/2018 18:17,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2018-5221,30/01/2018 16:11,9/01/2018 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-4871,30/01/2018 16:10,9/01/2018 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2014-4995,30/01/2018 16:03,10/01/2018 18:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15941,30/01/2018 15:56,10/01/2018 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4996,30/01/2018 15:52,10/01/2018 18:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-5069,30/01/2018 15:48,8/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4991,30/01/2018 15:16,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-4992,30/01/2018 15:15,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-4993,30/01/2018 15:11,10/01/2018 18:29,2.1,200, Information Exposure,nan
CVE-2014-4994,30/01/2018 14:47,10/01/2018 18:29,2.1,20, Improper Input Validation,nan
CVE-2014-1858,30/01/2018 14:44,8/01/2018 19:29,2.1,20, Improper Input Validation,nan
CVE-2017-1000455,30/01/2018 14:25,2/01/2018 17:29,2.1,346, Origin Validation Error,nan
CVE-2014-5071,30/01/2018 14:23,8/01/2018 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1881,30/01/2018 2:29,15/02/2017 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3418,30/01/2018 2:29,13/12/2016 16:59,5.0,369, Divide By Zero,nan
CVE-2016-10256,29/01/2018 19:33,10/01/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10257,29/01/2018 19:31,10/01/2018 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11066,29/01/2018 19:25,10/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2018-5331,29/01/2018 19:14,10/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-1361,29/01/2018 19:09,11/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5070,29/01/2018 19:07,11/01/2018 16:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2018-2360,29/01/2018 19:05,9/01/2018 15:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2014-5394,29/01/2018 19:03,8/01/2018 19:29,4.3,200, Information Exposure,nan
CVE-2014-5068,29/01/2018 18:57,11/01/2018 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15849,29/01/2018 18:44,10/01/2018 19:29,9.3,416, Use After Free,nan
CVE-2017-11069,29/01/2018 18:39,10/01/2018 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13176,29/01/2018 18:36,12/01/2018 23:29,9.3,20, Improper Input Validation,nan
CVE-2018-0799,29/01/2018 15:58,10/01/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0792,29/01/2018 14:37,10/01/2018 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0327,29/01/2018 13:35,12/01/2018 17:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-0324,29/01/2018 13:32,12/01/2018 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2298,29/01/2018 13:31,12/01/2018 17:29,5.0,200, Information Exposure,nan
CVE-2014-5334,29/01/2018 13:17,8/01/2018 19:29,10.0,254, 7PK – Security Features,nan
CVE-2016-0332,29/01/2018 13:10,12/01/2018 17:29,5.0,254, 7PK – Security Features,nan
CVE-2016-0336,29/01/2018 13:08,12/01/2018 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0335,29/01/2018 13:07,12/01/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6667,29/01/2018 13:07,11/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-2363,29/01/2018 13:04,9/01/2018 15:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5210,29/01/2018 13:02,4/01/2018 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5369,29/01/2018 12:56,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5368,29/01/2018 12:55,12/01/2018 9:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5315,29/01/2018 12:41,12/01/2018 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5310,29/01/2018 12:38,9/01/2018 5:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5309,29/01/2018 12:35,9/01/2018 5:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2018-5308,29/01/2018 12:34,9/01/2018 5:29,6.8,476, NULL Pointer Dereference,nan
CVE-2018-5283,29/01/2018 12:33,8/01/2018 9:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5285,29/01/2018 12:32,8/01/2018 7:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5284,29/01/2018 12:31,8/01/2018 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5263,29/01/2018 12:26,8/01/2018 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5262,29/01/2018 12:26,12/01/2018 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17081,29/01/2018 2:29,30/11/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11357,28/01/2018 2:29,23/08/2017 17:29,7.5,20, Improper Input Validation,nan
CVE-2017-14604,27/01/2018 2:29,20/09/2017 8:29,4.0,20, Improper Input Validation,nan
CVE-2017-14143,27/01/2018 2:29,19/09/2017 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-1000415,26/01/2018 19:58,9/01/2018 20:29,4.3,295, Improper Certificate Validation,nan
CVE-2018-5295,26/01/2018 18:50,8/01/2018 7:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-1000429,26/01/2018 18:41,9/01/2018 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13207,26/01/2018 16:19,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2017-13205,26/01/2018 16:16,12/01/2018 23:29,8.5,200, Information Exposure,nan
CVE-2014-8579,26/01/2018 15:13,5/01/2018 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13200,26/01/2018 15:05,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2017-13187,26/01/2018 15:03,12/01/2018 23:29,8.5,200, Information Exposure,nan
CVE-2018-2700,26/01/2018 14:18,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2673,26/01/2018 13:36,18/01/2018 2:29,4.3,200, Information Exposure,nan
CVE-2018-2672,26/01/2018 13:36,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2632,26/01/2018 13:35,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-2631,26/01/2018 13:35,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-5312,26/01/2018 12:52,9/01/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5311,26/01/2018 12:51,9/01/2018 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14869,26/01/2018 12:43,10/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-11079,26/01/2018 12:43,10/01/2018 22:29,7.5,200, Information Exposure,nan
CVE-2017-14873,26/01/2018 12:42,10/01/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14870,26/01/2018 12:42,10/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-15850,26/01/2018 12:41,10/01/2018 22:29,5.0,200, Information Exposure,nan
CVE-2017-15848,26/01/2018 12:41,10/01/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15847,26/01/2018 12:41,10/01/2018 22:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9705,26/01/2018 12:40,10/01/2018 22:29,4.6,415, Double Free,nan
CVE-2017-9689,26/01/2018 12:39,10/01/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11080,26/01/2018 12:35,10/01/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14879,26/01/2018 12:34,10/01/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11081,26/01/2018 12:34,10/01/2018 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2362,25/01/2018 16:54,9/01/2018 15:29,5.0,200, Information Exposure,nan
CVE-2017-13185,25/01/2018 16:49,12/01/2018 23:29,8.5,200, Information Exposure,nan
CVE-2018-2577,25/01/2018 16:47,18/01/2018 2:29,2.1,200, Information Exposure,nan
CVE-2018-2560,25/01/2018 16:46,18/01/2018 2:29,1.2,200, Information Exposure,nan
CVE-2017-13204,25/01/2018 16:36,12/01/2018 23:29,8.5,200, Information Exposure,nan
CVE-2017-13203,25/01/2018 15:17,12/01/2018 23:29,8.5,200, Information Exposure,nan
CVE-2017-13188,25/01/2018 15:12,12/01/2018 23:29,8.5,200, Information Exposure,nan
CVE-2017-13186,25/01/2018 15:04,12/01/2018 23:29,7.8,20, Improper Input Validation,nan
CVE-2017-13202,25/01/2018 14:54,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2017-13201,25/01/2018 14:50,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2018-2624,25/01/2018 14:49,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2617,25/01/2018 14:46,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2017-13225,25/01/2018 14:42,12/01/2018 23:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-2614,25/01/2018 14:39,18/01/2018 2:29,3.5,200, Information Exposure,nan
CVE-2018-2684,25/01/2018 14:07,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-5658,25/01/2018 13:59,13/01/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-2604,25/01/2018 13:56,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2584,25/01/2018 13:54,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-10273,25/01/2018 13:52,18/01/2018 2:29,3.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10262,25/01/2018 13:52,18/01/2018 2:29,4.3,200, Information Exposure,nan
CVE-2017-4948,25/01/2018 13:51,5/01/2018 14:29,6.6,200, Information Exposure,nan
CVE-2016-9159,25/01/2018 2:29,17/12/2016 3:59,4.3,200, Information Exposure,nan
CVE-2016-9158,25/01/2018 2:29,17/12/2016 3:59,7.8,20, Improper Input Validation,nan
CVE-2018-2625,24/01/2018 21:13,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2715,24/01/2018 21:12,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-2606,24/01/2018 21:12,18/01/2018 2:29,2.1,200, Information Exposure,nan
CVE-2018-2589,24/01/2018 21:12,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-5374,24/01/2018 21:05,12/01/2018 9:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-2619,24/01/2018 21:05,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2018-2608,24/01/2018 21:05,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-5376,24/01/2018 20:29,12/01/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16905,24/01/2018 20:29,5/01/2018 8:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5375,24/01/2018 20:28,12/01/2018 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5373,24/01/2018 20:28,12/01/2018 9:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-5372,24/01/2018 20:10,12/01/2018 9:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1623,24/01/2018 19:43,10/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15714,24/01/2018 19:03,4/01/2018 15:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-9250,24/01/2018 17:51,12/01/2018 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9249,24/01/2018 17:25,12/01/2018 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9248,24/01/2018 17:25,12/01/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9247,24/01/2018 17:25,12/01/2018 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9246,24/01/2018 17:24,12/01/2018 22:29,10.0,20, Improper Input Validation,nan
CVE-2017-13222,24/01/2018 16:09,12/01/2018 23:29,5.0,200, Information Exposure,nan
CVE-2017-1533,24/01/2018 16:08,10/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10706,24/01/2018 15:31,12/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10705,24/01/2018 15:31,12/01/2018 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4599,24/01/2018 15:31,21/06/2012 15:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-5656,24/01/2018 15:28,13/01/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5655,24/01/2018 15:28,13/01/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5654,24/01/2018 15:28,13/01/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5653,24/01/2018 15:27,13/01/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000486,24/01/2018 14:05,3/01/2018 20:29,7.5,326, Inadequate Encryption Strength,nan
CVE-2018-5652,24/01/2018 13:50,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5651,24/01/2018 13:50,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15374,24/01/2018 2:29,16/10/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5366,23/01/2018 23:08,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5365,23/01/2018 23:08,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5364,23/01/2018 23:08,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5363,23/01/2018 23:07,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5362,23/01/2018 23:07,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5361,23/01/2018 23:07,12/01/2018 9:29,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5367,23/01/2018 23:03,12/01/2018 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5669,23/01/2018 19:12,13/01/2018 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5668,23/01/2018 19:03,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5667,23/01/2018 18:40,13/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13878,22/01/2018 2:29,25/12/2017 21:29,5.6,125, Out-of-bounds Read,nan
CVE-2018-2709,20/01/2018 2:29,18/01/2018 2:29,3.5,200, Information Exposure,nan
CVE-2017-5116,20/01/2018 2:29,27/10/2017 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2018-5288,19/01/2018 18:40,8/01/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5286,19/01/2018 18:39,8/01/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5291,19/01/2018 18:32,8/01/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5290,19/01/2018 18:28,8/01/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5289,19/01/2018 18:21,8/01/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5287,19/01/2018 18:13,8/01/2018 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2018-5293,19/01/2018 17:48,8/01/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5292,19/01/2018 17:46,8/01/2018 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000473,19/01/2018 17:41,3/01/2018 20:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-2708,19/01/2018 16:29,18/01/2018 2:29,3.5,200, Information Exposure,nan
CVE-2018-2702,19/01/2018 16:02,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-18018,19/01/2018 15:46,4/01/2018 4:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-18019,19/01/2018 15:45,4/01/2018 4:29,3.6,20, Improper Input Validation,nan
CVE-2018-2653,19/01/2018 15:44,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2652,19/01/2018 15:43,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2651,19/01/2018 15:43,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2610,19/01/2018 15:42,18/01/2018 2:29,5.0,200, Information Exposure,nan
CVE-2018-2671,19/01/2018 15:36,18/01/2018 2:29,4.0,200, Information Exposure,nan
CVE-2017-17837,19/01/2018 15:28,4/01/2018 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8335,19/01/2018 14:47,5/01/2018 16:29,2.1,255, Credentials Management,nan
CVE-2017-17097,18/01/2018 23:25,2/01/2018 15:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-15548,18/01/2018 23:24,5/01/2018 17:29,10.0,287, Improper Authentication,nan
CVE-2017-15550,18/01/2018 23:23,5/01/2018 17:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15549,18/01/2018 23:23,5/01/2018 17:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2018-1190,18/01/2018 22:52,4/01/2018 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8540,18/01/2018 22:48,5/01/2018 16:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-1000481,18/01/2018 22:47,3/01/2018 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10244,18/01/2018 22:45,6/03/2017 6:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-1000484,18/01/2018 22:39,3/01/2018 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-0741,18/01/2018 22:33,4/01/2018 14:29,2.6,200, Information Exposure,nan
CVE-2017-18021,18/01/2018 22:32,5/01/2018 19:29,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2017-1000418,18/01/2018 22:32,2/01/2018 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8336,18/01/2018 22:16,5/01/2018 16:29,4.0,20, Improper Input Validation,nan
CVE-2017-9072,18/01/2018 18:18,18/05/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7511,18/01/2018 18:18,30/05/2017 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-0783,18/01/2018 18:18,14/09/2017 19:29,6.1,200, Information Exposure,nan
CVE-2016-7977,18/01/2018 18:18,23/05/2017 4:29,4.3,200, Information Exposure,nan
CVE-2016-5387,18/01/2018 18:18,19/07/2016 2:00,5.1,284, Improper Access Control,nan
CVE-2016-4449,18/01/2018 18:18,9/06/2016 16:59,5.8,20, Improper Input Validation,nan
CVE-2016-2550,18/01/2018 18:18,27/04/2016 17:59,4.9,399, Resource Management Errors,nan
CVE-2016-0704,18/01/2018 18:18,2/03/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-0703,18/01/2018 18:18,2/03/2016 11:59,4.3,200, Information Exposure,nan
CVE-2015-2808,18/01/2018 18:18,1/04/2015 2:00,4.3,310, Cryptographic Issues,nan
CVE-2015-0293,18/01/2018 18:18,19/03/2015 22:59,5.0,20, Improper Input Validation,nan
CVE-2013-2566,18/01/2018 18:18,15/03/2013 21:55,4.3,310, Cryptographic Issues,nan
CVE-2017-17098,18/01/2018 15:58,2/01/2018 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2018-5214,18/01/2018 15:32,4/01/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2311,18/01/2018 2:29,11/05/2012 10:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1902,18/01/2018 2:29,6/04/2012 19:55,4.3,200, Information Exposure,nan
CVE-2012-1823,18/01/2018 2:29,11/05/2012 10:15,7.5,20, Improper Input Validation,nan
CVE-2012-1667,18/01/2018 2:29,5/06/2012 16:55,8.5,189, Numeric Errors,nan
CVE-2012-1573,18/01/2018 2:29,26/03/2012 19:55,5.0,310, Cryptographic Issues,nan
CVE-2012-1569,18/01/2018 2:29,26/03/2012 19:55,5.0,189, Numeric Errors,nan
CVE-2012-1497,18/01/2018 2:29,3/03/2012 4:04,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1459,18/01/2018 2:29,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1458,18/01/2018 2:29,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1457,18/01/2018 2:29,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1262,18/01/2018 2:29,3/03/2012 4:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1190,18/01/2018 2:29,3/05/2012 4:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1178,18/01/2018 2:29,15/03/2012 10:55,5.0,399, Resource Management Errors,nan
CVE-2012-1173,18/01/2018 2:29,4/06/2012 20:55,6.8,189, Numeric Errors,nan
CVE-2012-1172,18/01/2018 2:29,24/05/2012 0:55,5.8,20, Improper Input Validation,nan
CVE-2012-1144,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1143,18/01/2018 2:29,25/04/2012 10:10,4.3,189, Numeric Errors,nan
CVE-2012-1142,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1141,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1140,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1139,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1138,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1137,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1136,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1135,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1134,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1133,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1132,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1131,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1130,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1129,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1128,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1127,18/01/2018 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1126,18/01/2018 2:29,25/04/2012 10:10,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1090,18/01/2018 2:29,17/05/2012 11:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0879,18/01/2018 2:29,17/05/2012 11:00,4.9,20, Improper Input Validation,nan
CVE-2012-0831,18/01/2018 2:29,10/02/2012 20:55,6.8,20, Improper Input Validation,nan
CVE-2012-0817,18/01/2018 2:29,30/01/2012 17:55,5.0,200, Information Exposure,nan
CVE-2012-0815,18/01/2018 2:29,4/06/2012 20:55,6.8,189, Numeric Errors,nan
CVE-2012-0807,18/01/2018 2:29,27/01/2012 0:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0805,18/01/2018 2:29,5/06/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0804,18/01/2018 2:29,29/05/2012 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0791,18/01/2018 2:29,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0477,18/01/2018 2:29,25/04/2012 10:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0471,18/01/2018 2:29,25/04/2012 10:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0470,18/01/2018 2:29,25/04/2012 10:10,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0464,18/01/2018 2:29,14/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2012-0460,18/01/2018 2:29,14/03/2012 19:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-0459,18/01/2018 2:29,14/03/2012 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0458,18/01/2018 2:29,14/03/2012 19:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-0457,18/01/2018 2:29,14/03/2012 19:55,9.3,399, Resource Management Errors,nan
CVE-2012-0456,18/01/2018 2:29,14/03/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-0455,18/01/2018 2:29,14/03/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0451,18/01/2018 2:29,14/03/2012 19:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0441,18/01/2018 2:29,5/06/2012 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0319,18/01/2018 2:29,3/03/2012 4:04,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0318,18/01/2018 2:29,3/03/2012 4:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0317,18/01/2018 2:29,3/03/2012 4:04,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0255,18/01/2018 2:29,5/04/2012 13:25,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0250,18/01/2018 2:29,5/04/2012 13:25,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0249,18/01/2018 2:29,5/04/2012 13:25,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0061,18/01/2018 2:29,4/06/2012 20:55,6.8,20, Improper Input Validation,nan
CVE-2012-0060,18/01/2018 2:29,4/06/2012 20:55,6.8,20, Improper Input Validation,nan
CVE-2012-0057,18/01/2018 2:29,2/02/2012 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-0056,18/01/2018 2:29,27/01/2012 15:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0053,18/01/2018 2:29,28/01/2012 4:05,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0031,18/01/2018 2:29,18/01/2012 20:55,4.6,399, Resource Management Errors,nan
CVE-2012-0021,18/01/2018 2:29,28/01/2012 4:05,2.6,20, Improper Input Validation,nan
CVE-2011-5084,18/01/2018 2:29,2/04/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4939,18/01/2018 2:29,15/03/2012 10:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-4153,18/01/2018 2:29,18/01/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2011-4140,18/01/2018 2:29,19/10/2011 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4139,18/01/2018 2:29,19/10/2011 10:55,5.0,20, Improper Input Validation,nan
CVE-2011-4138,18/01/2018 2:29,19/10/2011 10:55,5.0,20, Improper Input Validation,nan
CVE-2011-4137,18/01/2018 2:29,19/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-4136,18/01/2018 2:29,19/10/2011 10:55,5.8,20, Improper Input Validation,nan
CVE-2017-1000434,17/01/2018 18:23,2/01/2018 23:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2018-0773,17/01/2018 18:22,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0772,17/01/2018 18:22,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0768,17/01/2018 18:22,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0762,17/01/2018 18:21,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14960,17/01/2018 18:20,4/01/2018 17:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17888,17/01/2018 18:16,27/12/2017 17:08,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2018-3813,17/01/2018 18:15,1/01/2018 20:29,5.0,200, Information Exposure,nan
CVE-2017-1000431,17/01/2018 18:13,2/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3814,17/01/2018 18:12,1/01/2018 20:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-1000423,17/01/2018 18:12,2/01/2018 20:29,7.5,20, Improper Input Validation,nan
CVE-2017-1000498,17/01/2018 18:06,3/01/2018 14:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1000432,17/01/2018 18:04,2/01/2018 23:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000497,17/01/2018 18:01,3/01/2018 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-7889,17/01/2018 18:00,28/12/2017 2:29,4.3,275, Permission Issues,nan
CVE-2017-1000463,17/01/2018 17:59,3/01/2018 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4578,17/01/2018 17:59,29/12/2017 22:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-1000492,17/01/2018 17:58,3/01/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000412,17/01/2018 17:54,2/01/2018 17:29,5.0,200, Information Exposure,nan
CVE-2017-1000477,17/01/2018 17:51,3/01/2018 18:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2018-5073,17/01/2018 17:48,3/01/2018 20:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000459,17/01/2018 17:47,3/01/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0766,17/01/2018 17:46,4/01/2018 14:29,4.3,200, Information Exposure,nan
CVE-2018-0758,17/01/2018 17:45,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0767,17/01/2018 17:42,4/01/2018 14:29,2.6,200, Information Exposure,nan
CVE-2017-1000457,17/01/2018 17:39,2/01/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18015,17/01/2018 17:38,2/01/2018 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000443,17/01/2018 17:37,2/01/2018 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9099,17/01/2018 17:17,11/05/2017 14:30,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-9100,17/01/2018 17:16,11/05/2017 14:30,2.1,255, Credentials Management,nan
CVE-2017-18011,17/01/2018 17:15,1/01/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18010,17/01/2018 17:14,1/01/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4914,17/01/2018 16:50,29/12/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9608,17/01/2018 16:41,27/12/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17875,17/01/2018 16:31,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17872,17/01/2018 16:30,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17832,17/01/2018 16:27,27/12/2017 17:08,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1365,17/01/2018 16:23,27/12/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-18005,17/01/2018 16:14,31/12/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-1000413,17/01/2018 16:14,2/01/2018 17:29,4.3,200, Information Exposure,nan
CVE-2016-9266,17/01/2018 16:08,23/03/2017 18:59,4.3,189, Numeric Errors,nan
CVE-2016-8493,17/01/2018 16:07,26/06/2017 17:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2018-0800,17/01/2018 16:06,4/01/2018 14:29,4.3,200, Information Exposure,nan
CVE-2017-1000496,17/01/2018 15:43,3/01/2018 14:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1000469,17/01/2018 15:42,3/01/2018 20:29,10.0,20, Improper Input Validation,nan
CVE-2017-1000462,17/01/2018 15:42,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000471,17/01/2018 15:40,3/01/2018 20:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-1000452,17/01/2018 15:37,2/01/2018 17:29,6.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2017-1000482,17/01/2018 15:06,3/01/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000430,17/01/2018 14:56,2/01/2018 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000495,17/01/2018 14:54,3/01/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000467,17/01/2018 14:54,3/01/2018 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000478,17/01/2018 14:51,3/01/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5249,17/01/2018 14:50,5/01/2018 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5077,17/01/2018 14:50,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5076,17/01/2018 14:50,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17901,17/01/2018 2:29,29/12/2017 22:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-15324,17/01/2018 2:29,22/12/2017 17:29,7.8,20, Improper Input Validation,nan
CVE-2018-5078,16/01/2018 19:24,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000427,16/01/2018 19:08,2/01/2018 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-3811,16/01/2018 18:39,1/01/2018 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2018-3810,16/01/2018 18:38,1/01/2018 6:29,7.5,287, Improper Authentication,nan
CVE-2017-1000420,16/01/2018 18:38,2/01/2018 19:29,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-1000491,16/01/2018 18:36,3/01/2018 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000466,16/01/2018 18:36,3/01/2018 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000454,16/01/2018 18:24,2/01/2018 17:29,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-18006,16/01/2018 18:19,1/01/2018 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000453,16/01/2018 18:19,2/01/2018 17:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-1000458,16/01/2018 18:15,2/01/2018 18:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-1000448,16/01/2018 18:15,2/01/2018 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000419,16/01/2018 18:12,2/01/2018 19:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2018-5074,16/01/2018 18:03,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5072,16/01/2018 18:03,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-0803,16/01/2018 18:02,4/01/2018 14:29,5.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2018-0781,16/01/2018 17:47,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000489,16/01/2018 17:45,3/01/2018 17:29,6.8,287, Improper Authentication,nan
CVE-2017-1673,16/01/2018 17:36,4/01/2018 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1672,16/01/2018 17:36,4/01/2018 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2018-5216,16/01/2018 16:19,4/01/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5215,16/01/2018 16:19,4/01/2018 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5213,16/01/2018 16:18,4/01/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5212,16/01/2018 16:18,4/01/2018 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000437,16/01/2018 16:01,2/01/2018 23:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17971,16/01/2018 15:24,29/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17968,16/01/2018 15:21,29/12/2017 15:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17933,16/01/2018 15:18,29/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17859,16/01/2018 15:18,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000442,16/01/2018 15:17,2/01/2018 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10704,16/01/2018 15:16,30/12/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15591,16/01/2018 2:29,18/10/2017 8:29,4.9,20, Improper Input Validation,nan
CVE-2016-8939,16/01/2018 2:29,7/06/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-8759,14/01/2018 2:29,13/09/2017 1:29,9.3,20, Improper Input Validation,nan
CVE-2017-11142,14/01/2018 2:29,10/07/2017 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-7480,14/01/2018 2:29,11/01/2017 7:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5873,14/01/2018 2:29,23/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10397,14/01/2018 2:29,10/07/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-7395,13/01/2018 2:29,1/04/2017 2:59,4.0,190, Integer Overflow or Wraparound,nan
CVE-2017-7394,13/01/2018 2:29,1/04/2017 2:59,5.0,20, Improper Input Validation,nan
CVE-2017-7393,13/01/2018 2:29,1/04/2017 2:59,6.5,415, Double Free,nan
CVE-2017-17864,13/01/2018 2:29,27/12/2017 17:08,2.1,200, Information Exposure,nan
CVE-2017-15537,13/01/2018 2:29,17/10/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-14497,13/01/2018 2:29,15/09/2017 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13999,13/01/2018 2:29,17/10/2017 22:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1165,13/01/2018 2:29,15/03/2012 17:55,5.0,399, Resource Management Errors,nan
CVE-2012-0358,13/01/2018 2:29,15/03/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0356,13/01/2018 2:29,15/03/2012 0:55,7.8,20, Improper Input Validation,nan
CVE-2012-0355,13/01/2018 2:29,15/03/2012 0:55,7.8,20, Improper Input Validation,nan
CVE-2011-3047,13/01/2018 2:29,10/03/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3046,13/01/2018 2:29,9/03/2012 0:55,10.0,20, Improper Input Validation,nan
CVE-2011-3044,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3043,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3042,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3041,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3040,13/01/2018 2:29,5/03/2012 19:55,4.3,399, Resource Management Errors,nan
CVE-2011-3039,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3038,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3035,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3034,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3033,13/01/2018 2:29,5/03/2012 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3032,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3031,13/01/2018 2:29,5/03/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2010-0754,13/01/2018 2:29,27/02/2010 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5075,12/01/2018 20:21,3/01/2018 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15317,12/01/2018 20:18,22/12/2017 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2017-1727,12/01/2018 20:14,4/01/2018 17:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-1669,12/01/2018 20:14,4/01/2018 17:29,4.3,200, Information Exposure,nan
CVE-2017-1664,12/01/2018 20:09,4/01/2018 17:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2018-0778,12/01/2018 20:08,4/01/2018 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2018-0750,12/01/2018 20:02,4/01/2018 14:29,2.1,200, Information Exposure,nan
CVE-2018-5085,12/01/2018 19:32,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2017-16725,12/01/2018 19:31,20/12/2017 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14385,12/01/2018 19:30,20/12/2017 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17537,12/01/2018 18:28,13/12/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-5663,12/01/2018 18:12,14/12/2017 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14101,12/01/2018 16:35,15/12/2017 18:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-17649,12/01/2018 16:24,18/12/2017 9:29,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11562,12/01/2018 15:57,19/12/2017 2:29,6.8,384, Session Fixation,nan
CVE-2017-16949,12/01/2018 15:40,19/12/2017 2:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-17107,12/01/2018 15:36,19/12/2017 2:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-17777,12/01/2018 15:04,20/12/2017 3:29,7.5,287, Improper Authentication,nan
CVE-2017-17793,12/01/2018 14:36,20/12/2017 9:29,5.0,200, Information Exposure,nan
CVE-2017-17089,12/01/2018 12:55,30/12/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000490,12/01/2018 12:55,3/01/2018 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000488,12/01/2018 12:54,3/01/2018 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000470,12/01/2018 12:52,3/01/2018 20:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-9554,12/01/2018 2:29,24/07/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-6134,12/01/2018 2:29,21/12/2017 17:29,3.3,20, Improper Input Validation,nan
CVE-2017-6133,12/01/2018 2:29,21/12/2017 17:29,7.8,20, Improper Input Validation,nan
CVE-2012-1836,12/01/2018 2:29,22/03/2012 3:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1795,12/01/2018 2:29,20/03/2012 18:55,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-1469,12/01/2018 2:29,6/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5088,12/01/2018 1:30,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5087,12/01/2018 1:30,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5086,12/01/2018 1:29,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5084,12/01/2018 1:15,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5083,12/01/2018 1:15,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5082,12/01/2018 1:15,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5081,12/01/2018 1:15,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5080,12/01/2018 1:07,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2018-5079,12/01/2018 1:02,3/01/2018 21:29,6.1,20, Improper Input Validation,nan
CVE-2017-12811,11/01/2018 20:18,30/12/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12810,11/01/2018 20:18,30/12/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12813,11/01/2018 20:17,30/12/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12812,11/01/2018 20:17,30/12/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17878,11/01/2018 20:12,27/12/2017 17:08,10.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-18012,11/01/2018 20:10,1/01/2018 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5220,11/01/2018 20:09,4/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-5219,11/01/2018 20:09,4/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2017-18004,11/01/2018 20:08,31/12/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2018-5218,11/01/2018 20:05,4/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2018-5217,11/01/2018 20:00,4/01/2018 19:29,6.1,20, Improper Input Validation,nan
CVE-2017-4933,11/01/2018 19:29,20/12/2017 15:29,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000444,11/01/2018 19:26,2/01/2018 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-4941,11/01/2018 19:19,20/12/2017 15:29,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17840,11/01/2018 18:52,27/12/2017 17:08,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7324,11/01/2018 18:21,27/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3637,11/01/2018 18:17,28/12/2017 2:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3651,11/01/2018 18:16,29/12/2017 15:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-17870,11/01/2018 16:04,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17874,11/01/2018 16:03,27/12/2017 17:08,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-8008,11/01/2018 16:03,29/12/2017 22:29,5.0,284, Improper Access Control,nan
CVE-2017-6094,11/01/2018 15:10,20/12/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-17911,11/01/2018 14:58,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2576,11/01/2018 14:26,20/12/2017 21:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17010,11/01/2018 14:22,27/12/2017 17:08,6.8,426, Untrusted Search Path,nan
CVE-2014-0121,11/01/2018 13:49,29/12/2017 22:29,7.5,287, Improper Authentication,nan
CVE-2014-0120,11/01/2018 13:46,29/12/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1839,11/01/2018 2:29,22/03/2012 10:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1788,11/01/2018 2:29,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1787,11/01/2018 2:29,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1784,11/01/2018 2:29,19/03/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1779,11/01/2018 2:29,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1557,11/01/2018 2:29,12/03/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1209,11/01/2018 2:29,24/02/2012 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1039,11/01/2018 2:29,19/03/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0865,11/01/2018 2:29,21/02/2012 13:31,5.8,20, Improper Input Validation,nan
CVE-2012-0463,11/01/2018 2:29,14/03/2012 19:55,7.5,20, Improper Input Validation,nan
CVE-2012-0453,11/01/2018 2:29,25/02/2012 4:21,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0359,11/01/2018 2:29,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2012-0326,11/01/2018 2:29,17/03/2012 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0316,11/01/2018 2:29,2/03/2012 0:55,5.0,200, Information Exposure,nan
CVE-2012-0293,11/01/2018 2:29,17/03/2012 10:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0231,11/01/2018 2:29,15/03/2012 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0230,11/01/2018 2:29,15/03/2012 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4189,11/01/2018 2:29,2/03/2012 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2640,11/01/2018 2:29,28/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14589,10/01/2018 23:43,13/12/2017 15:29,6.8,20, Improper Input Validation,nan
CVE-2017-17809,10/01/2018 23:06,20/12/2017 23:29,6.8,426, Untrusted Search Path,nan
CVE-2017-17821,10/01/2018 23:05,21/12/2017 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17905,10/01/2018 19:43,27/12/2017 17:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17869,10/01/2018 19:42,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6914,10/01/2018 19:41,27/12/2017 17:29,7.2,275, Permission Issues,nan
CVE-2017-17876,10/01/2018 19:22,27/12/2017 17:08,5.0,275, Permission Issues,nan
CVE-2014-4978,10/01/2018 19:21,29/12/2017 22:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-17909,10/01/2018 17:58,27/12/2017 17:08,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17931,10/01/2018 17:48,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17908,10/01/2018 17:48,27/12/2017 17:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11698,10/01/2018 17:48,27/12/2017 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11697,10/01/2018 17:48,27/12/2017 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11696,10/01/2018 17:47,27/12/2017 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11695,10/01/2018 17:46,27/12/2017 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16876,10/01/2018 17:15,29/12/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16768,10/01/2018 16:52,27/12/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3695,10/01/2018 16:44,29/12/2017 15:29,2.1,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17920,10/01/2018 15:31,29/12/2017 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17919,10/01/2018 15:31,29/12/2017 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17917,10/01/2018 15:18,29/12/2017 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17916,10/01/2018 15:16,29/12/2017 16:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17937,10/01/2018 15:15,28/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17936,10/01/2018 15:15,28/12/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17929,10/01/2018 15:14,27/12/2017 17:08,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17925,10/01/2018 15:13,27/12/2017 17:08,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17924,10/01/2018 15:13,27/12/2017 17:08,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17930,10/01/2018 15:12,27/12/2017 17:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17926,10/01/2018 15:12,27/12/2017 17:08,5.0,200, Information Exposure,nan
CVE-2017-17928,10/01/2018 15:07,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17927,10/01/2018 15:03,27/12/2017 17:08,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1846,10/01/2018 2:29,22/03/2012 16:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1845,10/01/2018 2:29,22/03/2012 16:55,10.0,399, Resource Management Errors,nan
CVE-2012-1844,10/01/2018 2:29,22/03/2012 10:17,7.5,255, Credentials Management,nan
CVE-2012-1843,10/01/2018 2:29,22/03/2012 10:17,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1842,10/01/2018 2:29,22/03/2012 10:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1841,10/01/2018 2:29,22/03/2012 10:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1840,10/01/2018 2:29,22/03/2012 10:17,7.5,287, Improper Authentication,nan
CVE-2012-1838,10/01/2018 2:29,22/03/2012 10:17,5.0,287, Improper Authentication,nan
CVE-2012-1837,10/01/2018 2:29,22/03/2012 3:28,5.0,200, Information Exposure,nan
CVE-2012-1797,10/01/2018 2:29,20/03/2012 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0884,10/01/2018 2:29,13/03/2012 3:12,5.0,310, Cryptographic Issues,nan
CVE-2012-0777,10/01/2018 2:29,10/04/2012 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0775,10/01/2018 2:29,10/04/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0774,10/01/2018 2:29,10/04/2012 23:55,10.0,189, Numeric Errors,nan
CVE-2012-0452,10/01/2018 2:29,11/02/2012 2:55,7.5,399, Resource Management Errors,nan
CVE-2012-0195,10/01/2018 2:29,13/03/2012 3:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0036,10/01/2018 2:29,13/04/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4819,10/01/2018 2:29,13/03/2012 3:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4818,10/01/2018 2:29,13/03/2012 3:12,4.3,20, Improper Input Validation,nan
CVE-2011-4817,10/01/2018 2:29,13/03/2012 3:12,4.0,200, Information Exposure,nan
CVE-2011-4816,10/01/2018 2:29,13/03/2012 3:12,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3056,10/01/2018 2:29,22/03/2012 16:55,7.5,20, Improper Input Validation,nan
CVE-2011-3054,10/01/2018 2:29,22/03/2012 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3053,10/01/2018 2:29,22/03/2012 16:55,7.5,399, Resource Management Errors,nan
CVE-2011-3052,10/01/2018 2:29,22/03/2012 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3051,10/01/2018 2:29,22/03/2012 16:55,7.5,399, Resource Management Errors,nan
CVE-2011-3050,10/01/2018 2:29,22/03/2012 16:55,7.5,399, Resource Management Errors,nan
CVE-2011-3049,10/01/2018 2:29,23/03/2012 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3045,10/01/2018 2:29,22/03/2012 16:55,6.8,189, Numeric Errors,nan
CVE-2011-3026,10/01/2018 2:29,16/02/2012 20:55,7.5,189, Numeric Errors,nan
CVE-2011-3025,10/01/2018 2:29,16/02/2012 20:55,5.0,125, Out-of-bounds Read,nan
CVE-2011-3024,10/01/2018 2:29,16/02/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2011-3023,10/01/2018 2:29,16/02/2012 20:55,6.8,399, Resource Management Errors,nan
CVE-2011-3022,10/01/2018 2:29,16/02/2012 20:55,5.0,200, Information Exposure,nan
CVE-2011-3021,10/01/2018 2:29,16/02/2012 20:55,7.5,399, Resource Management Errors,nan
CVE-2011-3019,10/01/2018 2:29,16/02/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3018,10/01/2018 2:29,16/02/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3017,10/01/2018 2:29,16/02/2012 20:55,7.5,399, Resource Management Errors,nan
CVE-2011-3016,10/01/2018 2:29,16/02/2012 20:55,7.5,399, Resource Management Errors,nan
CVE-2011-3015,10/01/2018 2:29,16/02/2012 20:55,7.5,189, Numeric Errors,nan
CVE-2011-1778,10/01/2018 2:29,13/04/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1777,10/01/2018 2:29,13/04/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1675,10/01/2018 2:29,10/04/2011 2:55,3.3,399, Resource Management Errors,nan
CVE-2011-1397,10/01/2018 2:29,13/03/2012 3:12,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1396,10/01/2018 2:29,13/03/2012 3:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1395,10/01/2018 2:29,13/03/2012 3:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1394,10/01/2018 2:29,13/03/2012 3:12,5.0,399, Resource Management Errors,nan
CVE-2011-1385,10/01/2018 2:29,2/03/2012 22:55,7.8,399, Resource Management Errors,nan
CVE-2007-6750,10/01/2018 2:29,27/12/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2015-4100,9/01/2018 20:45,21/12/2017 15:29,4.9,295, Improper Certificate Validation,nan
CVE-2015-7224,9/01/2018 19:36,21/12/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2017-6140,9/01/2018 19:13,21/12/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-17692,9/01/2018 19:12,21/12/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-10907,9/01/2018 19:09,22/12/2017 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17988,9/01/2018 18:44,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10909,9/01/2018 18:20,22/12/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-17987,9/01/2018 18:08,30/12/2017 4:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-17986,9/01/2018 18:08,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17985,9/01/2018 18:08,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17984,9/01/2018 18:08,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17983,9/01/2018 18:08,30/12/2017 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17873,9/01/2018 18:07,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17982,9/01/2018 18:02,30/12/2017 4:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17981,9/01/2018 17:59,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17941,9/01/2018 17:59,28/12/2017 6:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17940,9/01/2018 17:57,28/12/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17939,9/01/2018 17:54,28/12/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17938,9/01/2018 17:54,28/12/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16996,9/01/2018 17:48,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3112,9/01/2018 17:47,9/12/2017 6:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-17904,9/01/2018 17:47,27/12/2017 17:08,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17903,9/01/2018 17:45,27/12/2017 17:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17893,9/01/2018 17:42,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17868,9/01/2018 17:40,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17892,9/01/2018 17:36,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17891,9/01/2018 17:36,27/12/2017 17:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-13056,9/01/2018 17:36,27/12/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-15311,9/01/2018 17:22,22/12/2017 17:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6167,9/01/2018 16:58,21/12/2017 17:29,8.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-17907,9/01/2018 16:57,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17906,9/01/2018 16:56,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1698,9/01/2018 16:55,27/12/2017 17:08,5.0,200, Information Exposure,nan
CVE-2017-17896,9/01/2018 16:54,27/12/2017 17:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17895,9/01/2018 16:35,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17900,9/01/2018 16:11,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17899,9/01/2018 16:11,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17898,9/01/2018 16:10,27/12/2017 17:08,5.0,200, Information Exposure,nan
CVE-2017-15322,9/01/2018 16:02,22/12/2017 17:29,3.3,20, Improper Input Validation,nan
CVE-2017-17894,9/01/2018 15:53,27/12/2017 17:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17857,9/01/2018 15:53,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17856,9/01/2018 15:46,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17855,9/01/2018 15:46,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17854,9/01/2018 15:45,27/12/2017 17:08,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-17853,9/01/2018 15:45,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17852,9/01/2018 15:44,27/12/2017 17:08,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17897,9/01/2018 15:43,27/12/2017 17:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6164,9/01/2018 15:30,21/12/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-6129,9/01/2018 15:12,21/12/2017 17:29,7.8,20, Improper Input Validation,nan
CVE-2017-17995,9/01/2018 15:07,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17994,9/01/2018 15:07,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17993,9/01/2018 15:06,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17991,9/01/2018 15:02,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17990,9/01/2018 14:57,30/12/2017 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17992,9/01/2018 14:56,30/12/2017 4:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17989,9/01/2018 14:56,30/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9756,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9755,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9751,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9750,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9749,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9746,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9743,9/01/2018 2:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7227,9/01/2018 2:29,22/03/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7225,9/01/2018 2:29,22/03/2017 16:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7224,9/01/2018 2:29,22/03/2017 16:59,4.3,787, Out-of-bounds Write,nan
CVE-2017-7223,9/01/2018 2:29,22/03/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7210,9/01/2018 2:29,21/03/2017 6:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7209,9/01/2018 2:29,21/03/2017 6:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-15996,9/01/2018 2:29,29/10/2017 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15939,9/01/2018 2:29,27/10/2017 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-15938,9/01/2018 2:29,27/10/2017 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15708,9/01/2018 2:29,11/12/2017 15:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-15023,9/01/2018 2:29,5/10/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14520,9/01/2018 2:29,17/09/2017 23:29,6.8,20, Improper Input Validation,nan
CVE-2017-14518,9/01/2018 2:29,17/09/2017 23:29,6.8,20, Improper Input Validation,nan
CVE-2017-14333,9/01/2018 2:29,12/09/2017 8:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-12799,9/01/2018 2:29,10/08/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12456,9/01/2018 2:29,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11552,9/01/2018 2:29,1/08/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6367,9/01/2018 2:29,14/12/2013 18:08,5.7,189, Numeric Errors,nan
CVE-2013-5607,9/01/2018 2:29,20/11/2013 14:12,7.5,189, Numeric Errors,nan
CVE-2013-4470,9/01/2018 2:29,4/11/2013 15:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4164,9/01/2018 2:29,23/11/2013 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2897,9/01/2018 2:29,16/09/2013 13:01,4.7,20, Improper Input Validation,nan
CVE-2013-2893,9/01/2018 2:29,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2889,9/01/2018 2:29,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2223,9/01/2018 2:29,4/10/2013 17:55,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2222,9/01/2018 2:29,4/10/2013 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2221,9/01/2018 2:29,4/10/2013 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2186,9/01/2018 2:29,28/10/2013 21:55,7.5,20, Improper Input Validation,nan
CVE-2013-2147,9/01/2018 2:29,7/06/2013 14:03,2.1,399, Resource Management Errors,nan
CVE-2013-2141,9/01/2018 2:29,7/06/2013 14:03,2.1,399, Resource Management Errors,nan
CVE-2012-0830,9/01/2018 2:29,6/02/2012 20:55,7.5,399, Resource Management Errors,nan
CVE-2012-0789,9/01/2018 2:29,14/02/2012 15:55,5.0,399, Resource Management Errors,nan
CVE-2012-0788,9/01/2018 2:29,14/02/2012 15:55,5.0,20, Improper Input Validation,nan
CVE-2012-0781,9/01/2018 2:29,18/01/2012 20:55,5.0,399, Resource Management Errors,nan
CVE-2011-4885,9/01/2018 2:29,30/12/2011 1:55,5.0,20, Improper Input Validation,nan
CVE-2011-4858,9/01/2018 2:29,5/01/2012 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-4317,9/01/2018 2:29,30/11/2011 4:05,4.3,20, Improper Input Validation,nan
CVE-2011-3607,9/01/2018 2:29,8/11/2011 11:55,4.4,189, Numeric Errors,nan
CVE-2011-3368,9/01/2018 2:29,5/10/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2017-17744,8/01/2018 23:50,19/12/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17719,8/01/2018 23:50,19/12/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17780,8/01/2018 23:49,20/12/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4940,8/01/2018 23:47,20/12/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15049,8/01/2018 23:40,19/12/2017 15:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-15048,8/01/2018 23:40,19/12/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17798,8/01/2018 23:22,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-14968,8/01/2018 23:22,20/12/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-14967,8/01/2018 23:22,20/12/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-14962,8/01/2018 23:22,20/12/2017 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-14969,8/01/2018 23:21,20/12/2017 18:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-17752,8/01/2018 23:09,20/12/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16786,8/01/2018 15:33,19/12/2017 15:29,6.8,200, Information Exposure,nan
CVE-2017-0304,8/01/2018 15:32,21/12/2017 17:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4338,8/01/2018 15:22,22/06/2014 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4337,8/01/2018 15:22,22/06/2014 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6736,8/01/2018 2:29,17/07/2017 21:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16534,6/01/2018 2:29,4/11/2017 1:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2369,6/01/2018 2:29,23/05/2012 20:55,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2012-1928,6/01/2018 2:29,28/03/2012 3:22,6.4,20, Improper Input Validation,nan
CVE-2012-1927,6/01/2018 2:29,28/03/2012 3:22,6.4,20, Improper Input Validation,nan
CVE-2012-1926,6/01/2018 2:29,28/03/2012 3:22,5.0,200, Information Exposure,nan
CVE-2012-1777,6/01/2018 2:29,5/04/2012 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1776,6/01/2018 2:29,19/03/2012 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1558,6/01/2018 2:29,12/03/2012 19:55,5.0,399, Resource Management Errors,nan
CVE-2012-1513,6/01/2018 2:29,16/03/2012 20:55,4.0,200, Information Exposure,nan
CVE-2012-1512,6/01/2018 2:29,16/03/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0648,6/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0647,6/01/2018 2:29,12/03/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-0640,6/01/2018 2:29,12/03/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-0639,6/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0638,6/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0637,6/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0636,6/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0584,6/01/2018 2:29,12/03/2012 21:55,6.4,20, Improper Input Validation,nan
CVE-2012-0292,6/01/2018 2:29,8/03/2012 4:15,5.0,20, Improper Input Validation,nan
CVE-2012-0291,6/01/2018 2:29,22/02/2012 13:54,5.0,20, Improper Input Validation,nan
CVE-2012-0246,6/01/2018 2:29,2/04/2012 10:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0228,6/01/2018 2:29,2/04/2012 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0226,6/01/2018 2:29,2/04/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0225,6/01/2018 2:29,2/04/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5035,6/01/2018 2:29,30/12/2011 1:55,5.0,20, Improper Input Validation,nan
CVE-2011-4543,6/01/2018 2:29,5/12/2011 11:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4542,6/01/2018 2:29,30/11/2011 4:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4541,6/01/2018 2:29,29/11/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4540,6/01/2018 2:29,1/12/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3928,6/01/2018 2:29,24/01/2012 4:03,7.5,399, Resource Management Errors,nan
CVE-2011-3909,6/01/2018 2:29,13/12/2011 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3908,6/01/2018 2:29,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3897,6/01/2018 2:29,11/11/2011 11:55,6.8,399, Resource Management Errors,nan
CVE-2011-3888,6/01/2018 2:29,25/10/2011 19:55,6.8,399, Resource Management Errors,nan
CVE-2011-3887,6/01/2018 2:29,25/10/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3885,6/01/2018 2:29,25/10/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3844,6/01/2018 2:29,8/03/2012 4:15,4.3,20, Improper Input Validation,nan
CVE-2011-3479,6/01/2018 2:29,25/01/2012 15:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3478,6/01/2018 2:29,25/01/2012 15:55,10.0,287, Improper Authentication,nan
CVE-2011-3453,6/01/2018 2:29,2/02/2012 18:55,7.5,189, Numeric Errors,nan
CVE-2011-3327,6/01/2018 2:29,10/10/2011 10:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3326,6/01/2018 2:29,10/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3325,6/01/2018 2:29,10/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3324,6/01/2018 2:29,10/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3323,6/01/2018 2:29,10/10/2011 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2877,6/01/2018 2:29,4/10/2011 20:55,6.8,20, Improper Input Validation,nan
CVE-2011-2866,6/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2860,6/01/2018 2:29,19/09/2011 12:02,7.5,399, Resource Management Errors,nan
CVE-2011-2857,6/01/2018 2:29,19/09/2011 12:02,7.5,399, Resource Management Errors,nan
CVE-2011-2855,6/01/2018 2:29,19/09/2011 12:02,7.5,20, Improper Input Validation,nan
CVE-2011-2854,6/01/2018 2:29,19/09/2011 12:02,7.5,399, Resource Management Errors,nan
CVE-2011-2847,6/01/2018 2:29,19/09/2011 12:02,6.8,399, Resource Management Errors,nan
CVE-2011-2846,6/01/2018 2:29,19/09/2011 12:02,6.8,399, Resource Management Errors,nan
CVE-2011-2825,6/01/2018 2:29,29/08/2011 15:55,7.5,399, Resource Management Errors,nan
CVE-2011-1928,6/01/2018 2:29,24/05/2011 23:55,4.3,399, Resource Management Errors,nan
CVE-2011-1083,6/01/2018 2:29,4/04/2011 12:27,4.9,399, Resource Management Errors,nan
CVE-2011-0419,6/01/2018 2:29,16/05/2011 17:55,4.3,399, Resource Management Errors,nan
CVE-2010-2948,6/01/2018 2:29,10/09/2010 19:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1675,6/01/2018 2:29,29/03/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2010-0424,6/01/2018 2:29,25/02/2010 19:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1198,6/01/2018 2:29,6/03/2008 21:44,7.1,16, Configuration,nan
CVE-2017-1751,5/01/2018 20:46,20/12/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4955,5/01/2018 20:43,20/12/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17745,5/01/2018 20:35,20/12/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15876,5/01/2018 20:33,19/12/2017 2:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1423,5/01/2018 20:24,20/12/2017 18:29,5.0,200, Information Exposure,nan
CVE-2017-17775,5/01/2018 20:23,20/12/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10872,5/01/2018 20:17,22/12/2017 14:29,4.0,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2017-1746,5/01/2018 20:07,20/12/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1631,5/01/2018 20:07,20/12/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17753,5/01/2018 20:06,19/12/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15532,5/01/2018 19:43,20/12/2017 18:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1696,5/01/2018 19:11,20/12/2017 18:29,9.0,20, Improper Input Validation,nan
CVE-2017-15313,5/01/2018 18:16,22/12/2017 17:29,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17718,5/01/2018 18:12,17/12/2017 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-17645,5/01/2018 16:24,18/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10869,5/01/2018 16:24,22/12/2017 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17643,5/01/2018 16:22,18/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6465,5/01/2018 16:20,19/12/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15320,5/01/2018 16:19,22/12/2017 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2017-15319,5/01/2018 16:19,22/12/2017 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2017-15318,5/01/2018 16:19,22/12/2017 17:29,7.8,125, Out-of-bounds Read,nan
CVE-2017-15310,5/01/2018 16:18,22/12/2017 17:29,5.8,20, Improper Input Validation,nan
CVE-2017-15309,5/01/2018 16:17,22/12/2017 17:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15308,5/01/2018 16:16,22/12/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-15321,5/01/2018 16:01,22/12/2017 17:29,4.3,200, Information Exposure,nan
CVE-2017-15316,5/01/2018 16:00,22/12/2017 17:29,9.3,415, Double Free,nan
CVE-2017-17556,5/01/2018 15:50,15/12/2017 19:29,3.6,200, Information Exposure,nan
CVE-2017-6132,5/01/2018 15:40,21/12/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-6138,5/01/2018 15:33,21/12/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-6136,5/01/2018 15:12,21/12/2017 17:29,4.3,20, Improper Input Validation,nan
CVE-2017-15700,5/01/2018 14:20,18/12/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-14583,5/01/2018 14:13,18/12/2017 14:29,4.0,20, Improper Input Validation,nan
CVE-2017-12630,5/01/2018 14:13,18/12/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17549,5/01/2018 13:56,13/12/2017 16:29,4.3,200, Information Exposure,nan
CVE-2017-9524,5/01/2018 2:31,6/07/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-9287,5/01/2018 2:31,29/05/2017 16:29,4.0,415, Double Free,nan
CVE-2017-9263,5/01/2018 2:31,29/05/2017 4:29,3.3,20, Improper Input Validation,nan
CVE-2017-9242,5/01/2018 2:31,27/05/2017 1:29,4.9,20, Improper Input Validation,nan
CVE-2017-9214,5/01/2018 2:31,23/05/2017 17:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-9148,5/01/2018 2:31,29/05/2017 17:29,7.5,287, Improper Authentication,nan
CVE-2017-8797,5/01/2018 2:31,2/07/2017 17:29,7.8,129, Improper Validation of Array Index,nan
CVE-2017-8291,5/01/2018 2:31,27/04/2017 1:59,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-7870,5/01/2018 2:31,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7869,5/01/2018 2:31,14/04/2017 4:59,5.0,787, Out-of-bounds Write,nan
CVE-2017-7551,5/01/2018 2:31,16/08/2017 18:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-7549,5/01/2018 2:31,21/09/2017 21:29,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-7533,5/01/2018 2:31,5/08/2017 16:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-7529,5/01/2018 2:31,13/07/2017 13:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-7507,5/01/2018 2:31,16/06/2017 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7502,5/01/2018 2:31,30/05/2017 18:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7488,5/01/2018 2:31,16/05/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-7486,5/01/2018 2:31,12/05/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-7484,5/01/2018 2:31,12/05/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-7477,5/01/2018 2:31,25/04/2017 14:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7400,5/01/2018 2:31,3/04/2017 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7214,5/01/2018 2:31,21/03/2017 18:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-7207,5/01/2018 2:31,21/03/2017 6:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7187,5/01/2018 2:31,20/03/2017 14:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6951,5/01/2018 2:31,16/03/2017 18:59,4.9,476, NULL Pointer Dereference,nan
CVE-2017-5885,5/01/2018 2:31,28/02/2017 18:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-5884,5/01/2018 2:31,28/02/2017 18:59,6.8,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2017-5848,5/01/2018 2:31,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5845,5/01/2018 2:31,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5843,5/01/2018 2:31,9/02/2017 15:59,5.0,416, Use After Free,nan
CVE-2017-5842,5/01/2018 2:31,9/02/2017 15:59,4.3,787, Out-of-bounds Write,nan
CVE-2017-5841,5/01/2018 2:31,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5840,5/01/2018 2:31,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5838,5/01/2018 2:31,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5581,5/01/2018 2:31,28/02/2017 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5495,5/01/2018 2:31,24/01/2017 7:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5486,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5485,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5484,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5483,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5482,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5342,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5341,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5110,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5109,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5108,5/01/2018 2:31,27/10/2017 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-5107,5/01/2018 2:31,27/10/2017 5:29,2.6,200, Information Exposure,nan
CVE-2017-5106,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5105,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5104,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5103,5/01/2018 2:31,27/10/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-5102,5/01/2018 2:31,27/10/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-5101,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5100,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5099,5/01/2018 2:31,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-5098,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5097,5/01/2018 2:31,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-5096,5/01/2018 2:31,27/10/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-5095,5/01/2018 2:31,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5094,5/01/2018 2:31,27/10/2017 5:29,4.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-5093,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5092,5/01/2018 2:31,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-5091,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5089,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5088,5/01/2018 2:31,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-5087,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5086,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5085,5/01/2018 2:31,27/10/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5083,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5082,5/01/2018 2:31,27/10/2017 5:29,2.1,200, Information Exposure,nan
CVE-2017-5081,5/01/2018 2:31,27/10/2017 5:29,2.1,20, Improper Input Validation,nan
CVE-2017-5080,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5079,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5077,5/01/2018 2:31,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-5076,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5075,5/01/2018 2:31,27/10/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-5074,5/01/2018 2:31,27/10/2017 5:29,5.4,416, Use After Free,nan
CVE-2017-5073,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5072,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5071,5/01/2018 2:31,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-5070,5/01/2018 2:31,27/10/2017 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-5068,5/01/2018 2:31,27/10/2017 5:29,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-5067,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5066,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5065,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5064,5/01/2018 2:31,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5063,5/01/2018 2:31,27/10/2017 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-5062,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5061,5/01/2018 2:31,27/10/2017 5:29,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-5060,5/01/2018 2:31,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5059,5/01/2018 2:31,27/10/2017 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-5058,5/01/2018 2:31,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-5057,5/01/2018 2:31,27/10/2017 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-5056,5/01/2018 2:31,27/10/2017 5:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-5055,5/01/2018 2:31,27/10/2017 5:29,9.3,416, Use After Free,nan
CVE-2017-5054,5/01/2018 2:31,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5052,5/01/2018 2:31,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5046,5/01/2018 2:31,24/04/2017 23:59,4.3,200, Information Exposure,nan
CVE-2017-5044,5/01/2018 2:31,24/04/2017 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5043,5/01/2018 2:31,24/04/2017 23:59,6.8,416, Use After Free,nan
CVE-2017-5041,5/01/2018 2:31,24/04/2017 23:59,4.3,20, Improper Input Validation,nan
CVE-2017-5040,5/01/2018 2:31,24/04/2017 23:59,4.3,200, Information Exposure,nan
CVE-2017-5039,5/01/2018 2:31,24/04/2017 23:59,6.8,416, Use After Free,nan
CVE-2017-5038,5/01/2018 2:31,24/04/2017 23:59,6.8,416, Use After Free,nan
CVE-2017-5037,5/01/2018 2:31,24/04/2017 23:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-5036,5/01/2018 2:31,24/04/2017 23:59,6.8,416, Use After Free,nan
CVE-2017-5035,5/01/2018 2:31,24/04/2017 23:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-5034,5/01/2018 2:31,24/04/2017 23:59,6.8,416, Use After Free,nan
CVE-2017-5032,5/01/2018 2:31,24/04/2017 23:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-5030,5/01/2018 2:31,24/04/2017 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5029,5/01/2018 2:31,24/04/2017 23:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-5025,5/01/2018 2:31,17/02/2017 7:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5024,5/01/2018 2:31,17/02/2017 7:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5023,5/01/2018 2:31,17/02/2017 7:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5021,5/01/2018 2:31,17/02/2017 7:59,4.3,416, Use After Free,nan
CVE-2017-5020,5/01/2018 2:31,17/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5019,5/01/2018 2:31,17/02/2017 7:59,6.8,416, Use After Free,nan
CVE-2017-5018,5/01/2018 2:31,17/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5017,5/01/2018 2:31,17/02/2017 7:59,4.3,200, Information Exposure,nan
CVE-2017-5014,5/01/2018 2:31,17/02/2017 7:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5012,5/01/2018 2:31,17/02/2017 7:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5011,5/01/2018 2:31,17/02/2017 7:59,4.3,200, Information Exposure,nan
CVE-2017-5010,5/01/2018 2:31,17/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5009,5/01/2018 2:31,17/02/2017 7:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5008,5/01/2018 2:31,17/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5007,5/01/2018 2:31,17/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5006,5/01/2018 2:31,17/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3231,5/01/2018 2:31,27/01/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-3106,5/01/2018 2:31,11/08/2017 19:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-3099,5/01/2018 2:31,17/07/2017 13:18,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3085,5/01/2018 2:31,11/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-3084,5/01/2018 2:31,20/06/2017 17:29,10.0,416, Use After Free,nan
CVE-2017-3083,5/01/2018 2:31,20/06/2017 17:29,10.0,416, Use After Free,nan
CVE-2017-3082,5/01/2018 2:31,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3081,5/01/2018 2:31,20/06/2017 17:29,10.0,416, Use After Free,nan
CVE-2017-3080,5/01/2018 2:31,17/07/2017 13:18,5.0,200, Information Exposure,nan
CVE-2017-3079,5/01/2018 2:31,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3078,5/01/2018 2:31,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3077,5/01/2018 2:31,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3076,5/01/2018 2:31,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3075,5/01/2018 2:31,20/06/2017 17:29,10.0,416, Use After Free,nan
CVE-2017-3074,5/01/2018 2:31,9/05/2017 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3072,5/01/2018 2:31,9/05/2017 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3071,5/01/2018 2:31,9/05/2017 16:29,10.0,416, Use After Free,nan
CVE-2017-3070,5/01/2018 2:31,9/05/2017 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3069,5/01/2018 2:31,9/05/2017 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3068,5/01/2018 2:31,9/05/2017 16:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3064,5/01/2018 2:31,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3063,5/01/2018 2:31,12/04/2017 14:59,10.0,416, Use After Free,nan
CVE-2017-3062,5/01/2018 2:31,12/04/2017 14:59,10.0,416, Use After Free,nan
CVE-2017-3061,5/01/2018 2:31,12/04/2017 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3060,5/01/2018 2:31,12/04/2017 14:59,10.0,125, Out-of-bounds Read,nan
CVE-2017-3059,5/01/2018 2:31,12/04/2017 14:59,10.0,416, Use After Free,nan
CVE-2017-3058,5/01/2018 2:31,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3003,5/01/2018 2:31,14/03/2017 16:59,10.0,416, Use After Free,nan
CVE-2017-3002,5/01/2018 2:31,14/03/2017 16:59,10.0,416, Use After Free,nan
CVE-2017-3001,5/01/2018 2:31,14/03/2017 16:59,10.0,416, Use After Free,nan
CVE-2017-3000,5/01/2018 2:31,14/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2017-2999,5/01/2018 2:31,14/03/2017 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2998,5/01/2018 2:31,14/03/2017 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2997,5/01/2018 2:31,14/03/2017 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2996,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2995,5/01/2018 2:31,15/02/2017 6:59,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-2994,5/01/2018 2:31,15/02/2017 6:59,6.8,416, Use After Free,nan
CVE-2017-2993,5/01/2018 2:31,15/02/2017 6:59,10.0,416, Use After Free,nan
CVE-2017-2992,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2991,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2990,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2988,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2987,5/01/2018 2:31,15/02/2017 6:59,10.0,190, Integer Overflow or Wraparound,nan
CVE-2017-2986,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2985,5/01/2018 2:31,15/02/2017 6:59,10.0,416, Use After Free,nan
CVE-2017-2984,5/01/2018 2:31,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2982,5/01/2018 2:31,15/02/2017 6:59,10.0,416, Use After Free,nan
CVE-2017-2937,5/01/2018 2:31,11/01/2017 4:59,10.0,416, Use After Free,nan
CVE-2017-2936,5/01/2018 2:31,11/01/2017 4:59,10.0,416, Use After Free,nan
CVE-2017-2935,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2934,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2933,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2932,5/01/2018 2:31,11/01/2017 4:59,10.0,416, Use After Free,nan
CVE-2017-2931,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2930,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2928,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2927,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2926,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2925,5/01/2018 2:31,11/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2636,5/01/2018 2:31,7/03/2017 22:59,7.2,415, Double Free,nan
CVE-2017-14694,5/01/2018 2:31,22/09/2017 19:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1289,5/01/2018 2:31,22/05/2017 20:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-10984,5/01/2018 2:31,17/07/2017 17:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-10983,5/01/2018 2:31,17/07/2017 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10979,5/01/2018 2:31,17/07/2017 17:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-10615,5/01/2018 2:31,13/10/2017 17:29,7.5,20, Improper Input Validation,nan
CVE-2017-1000061,5/01/2018 2:31,17/07/2017 13:18,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9879,5/01/2018 2:31,6/01/2017 22:59,5.0,417, Channel and Path Errors,nan
CVE-2016-9813,5/01/2018 2:31,13/01/2017 16:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9812,5/01/2018 2:31,13/01/2017 16:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-9811,5/01/2018 2:31,13/01/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-9810,5/01/2018 2:31,13/01/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-9809,5/01/2018 2:31,13/01/2017 16:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-9808,5/01/2018 2:31,13/01/2017 16:59,5.0,787, Out-of-bounds Write,nan
CVE-2016-9807,5/01/2018 2:31,13/01/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-9806,5/01/2018 2:31,28/12/2016 7:59,7.2,415, Double Free,nan
CVE-2016-9794,5/01/2018 2:31,28/12/2016 7:59,7.2,416, Use After Free,nan
CVE-2016-9793,5/01/2018 2:31,28/12/2016 7:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9685,5/01/2018 2:31,28/12/2016 7:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2016-9675,5/01/2018 2:31,22/12/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9650,5/01/2018 2:31,19/01/2017 5:59,4.3,19, Data Processing Errors,nan
CVE-2016-9636,5/01/2018 2:31,27/01/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9635,5/01/2018 2:31,27/01/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9634,5/01/2018 2:31,27/01/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9576,5/01/2018 2:31,28/12/2016 7:59,7.2,416, Use After Free,nan
CVE-2016-9560,5/01/2018 2:31,15/02/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9540,5/01/2018 2:31,22/11/2016 19:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-9537,5/01/2018 2:31,22/11/2016 19:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-9536,5/01/2018 2:31,22/11/2016 19:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-9535,5/01/2018 2:31,22/11/2016 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9534,5/01/2018 2:31,22/11/2016 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9533,5/01/2018 2:31,22/11/2016 19:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-9447,5/01/2018 2:31,23/01/2017 21:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-9446,5/01/2018 2:31,23/01/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-9445,5/01/2018 2:31,23/01/2017 21:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-9185,5/01/2018 2:31,4/11/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-9177,5/01/2018 2:31,4/11/2016 10:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9084,5/01/2018 2:31,28/11/2016 3:59,4.6,190, Integer Overflow or Wraparound,nan
CVE-2016-9083,5/01/2018 2:31,28/11/2016 3:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-8885,5/01/2018 2:31,23/03/2017 18:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8884,5/01/2018 2:31,28/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8739,5/01/2018 2:31,10/08/2017 18:29,7.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-8705,5/01/2018 2:31,6/01/2017 21:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-8704,5/01/2018 2:31,6/01/2017 21:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-8692,5/01/2018 2:31,15/02/2017 19:59,4.3,369, Divide By Zero,nan
CVE-2016-8691,5/01/2018 2:31,15/02/2017 19:59,4.3,369, Divide By Zero,nan
CVE-2016-8666,5/01/2018 2:31,16/10/2016 21:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-8646,5/01/2018 2:31,28/11/2016 3:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-8645,5/01/2018 2:31,28/11/2016 3:59,4.9,284, Improper Access Control,nan
CVE-2016-8638,5/01/2018 2:31,12/07/2017 13:29,6.4,384, Session Fixation,nan
CVE-2016-8630,5/01/2018 2:31,28/11/2016 3:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-8602,5/01/2018 2:31,14/04/2017 18:59,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2016-8575,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8574,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8399,5/01/2018 2:31,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-7993,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7992,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7986,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7985,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7984,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7983,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7979,5/01/2018 2:31,23/05/2017 4:29,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2016-7978,5/01/2018 2:31,23/05/2017 4:29,7.5,416, Use After Free,nan
CVE-2016-7975,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7974,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7973,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7940,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7939,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7938,5/01/2018 2:31,28/01/2017 1:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-7937,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7936,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7935,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7934,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7933,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7932,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7931,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7930,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7929,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7928,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7927,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7926,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7925,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7924,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7923,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7922,5/01/2018 2:31,28/01/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7915,5/01/2018 2:31,16/11/2016 5:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7914,5/01/2018 2:31,16/11/2016 5:59,7.1,476, NULL Pointer Dereference,nan
CVE-2016-7910,5/01/2018 2:31,16/11/2016 5:59,9.3,416, Use After Free,nan
CVE-2016-7545,5/01/2018 2:31,19/01/2017 20:59,7.2,284, Improper Access Control,nan
CVE-2016-7543,5/01/2018 2:31,19/01/2017 20:59,7.2,20, Improper Input Validation,nan
CVE-2016-7466,5/01/2018 2:31,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-7444,5/01/2018 2:31,27/09/2016 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7433,5/01/2018 2:31,13/01/2017 16:59,5.0,682, Incorrect Calculation,nan
CVE-2016-7429,5/01/2018 2:31,13/01/2017 16:59,4.3,18, DEPRECATED: Source Code,nan
CVE-2016-7422,5/01/2018 2:31,10/12/2016 0:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-7401,5/01/2018 2:31,3/10/2016 18:59,5.0,254, 7PK – Security Features,nan
CVE-2016-7163,5/01/2018 2:31,21/09/2016 14:25,6.8,787, Out-of-bounds Write,nan
CVE-2016-7132,5/01/2018 2:31,12/09/2016 1:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-7131,5/01/2018 2:31,12/09/2016 1:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-7130,5/01/2018 2:31,12/09/2016 1:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-7129,5/01/2018 2:31,12/09/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-7128,5/01/2018 2:31,12/09/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-7127,5/01/2018 2:31,12/09/2016 1:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7126,5/01/2018 2:31,12/09/2016 1:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7125,5/01/2018 2:31,12/09/2016 1:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-7124,5/01/2018 2:31,12/09/2016 1:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-7117,5/01/2018 2:31,10/10/2016 11:00,10.0,19, Data Processing Errors,nan
CVE-2016-7099,5/01/2018 2:31,10/10/2016 16:59,4.3,19, Data Processing Errors,nan
CVE-2016-7097,5/01/2018 2:31,16/10/2016 21:59,3.6,285, Improper Authorization,nan
CVE-2016-7042,5/01/2018 2:31,16/10/2016 21:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7039,5/01/2018 2:31,16/10/2016 21:59,7.8,399, Resource Management Errors,nan
CVE-2016-7033,5/01/2018 2:31,7/09/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7032,5/01/2018 2:31,14/04/2017 18:59,6.9,284, Improper Access Control,nan
CVE-2016-7030,5/01/2018 2:31,28/08/2017 15:29,5.0,255, Credentials Management,nan
CVE-2016-7020,5/01/2018 2:31,5/10/2016 21:59,10.0,416, Use After Free,nan
CVE-2016-6983,5/01/2018 2:31,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6932,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6931,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6930,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6929,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6927,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6926,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6925,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6924,5/01/2018 2:31,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6923,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6922,5/01/2018 2:31,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6921,5/01/2018 2:31,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-6828,5/01/2018 2:31,16/10/2016 21:59,4.9,416, Use After Free,nan
CVE-2016-6812,5/01/2018 2:31,10/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6480,5/01/2018 2:31,6/08/2016 20:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6344,5/01/2018 2:31,7/09/2016 18:59,5.0,200, Information Exposure,nan
CVE-2016-6327,5/01/2018 2:31,16/10/2016 21:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-6325,5/01/2018 2:31,13/10/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6320,5/01/2018 2:31,19/08/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6313,5/01/2018 2:31,13/12/2016 20:59,5.0,200, Information Exposure,nan
CVE-2016-6297,5/01/2018 2:31,25/07/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6296,5/01/2018 2:31,25/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6295,5/01/2018 2:31,25/07/2016 14:59,7.5,416, Use After Free,nan
CVE-2016-6294,5/01/2018 2:31,25/07/2016 14:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-6292,5/01/2018 2:31,25/07/2016 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-6291,5/01/2018 2:31,25/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6290,5/01/2018 2:31,25/07/2016 14:59,7.5,416, Use After Free,nan
CVE-2016-6289,5/01/2018 2:31,25/07/2016 14:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-6288,5/01/2018 2:31,25/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6250,5/01/2018 2:31,21/09/2016 14:25,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-6213,5/01/2018 2:31,28/12/2016 7:59,4.7,400, Uncontrolled Resource Consumption,nan
CVE-2016-6198,5/01/2018 2:31,6/08/2016 20:59,4.9,284, Improper Access Control,nan
CVE-2016-6197,5/01/2018 2:31,6/08/2016 20:59,4.9,20, Improper Input Validation,nan
CVE-2016-6136,5/01/2018 2:31,6/08/2016 20:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-5829,5/01/2018 2:31,27/06/2016 10:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5828,5/01/2018 2:31,27/06/2016 10:59,7.2,20, Improper Input Validation,nan
CVE-2016-5773,5/01/2018 2:31,7/08/2016 10:59,7.5,416, Use After Free,nan
CVE-2016-5772,5/01/2018 2:31,7/08/2016 10:59,7.5,415, Double Free,nan
CVE-2016-5771,5/01/2018 2:31,7/08/2016 10:59,7.5,416, Use After Free,nan
CVE-2016-5770,5/01/2018 2:31,7/08/2016 10:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5768,5/01/2018 2:31,7/08/2016 10:59,7.5,415, Double Free,nan
CVE-2016-5767,5/01/2018 2:31,7/08/2016 10:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5696,5/01/2018 2:31,6/08/2016 20:59,5.8,200, Information Exposure,nan
CVE-2016-5652,5/01/2018 2:31,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5597,5/01/2018 2:31,25/10/2016 14:31,4.3,200, Information Exposure,nan
CVE-2016-5582,5/01/2018 2:31,25/10/2016 14:30,9.3,284, Improper Access Control,nan
CVE-2016-5573,5/01/2018 2:31,25/10/2016 14:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-5556,5/01/2018 2:31,25/10/2016 14:30,9.3,284, Improper Access Control,nan
CVE-2016-5424,5/01/2018 2:31,9/12/2016 23:59,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-5423,5/01/2018 2:31,9/12/2016 23:59,6.5,476, NULL Pointer Dereference,nan
CVE-2016-5412,5/01/2018 2:31,6/08/2016 20:59,4.6,399, Resource Management Errors,nan
CVE-2016-5403,5/01/2018 2:31,2/08/2016 16:59,4.9,399, Resource Management Errors,nan
CVE-2016-5325,5/01/2018 2:31,10/10/2016 16:59,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2016-5226,5/01/2018 2:30,19/01/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5225,5/01/2018 2:30,19/01/2017 5:59,4.3,19, Data Processing Errors,nan
CVE-2016-5224,5/01/2018 2:30,19/01/2017 5:59,4.3,189, Numeric Errors,nan
CVE-2016-5223,5/01/2018 2:30,19/01/2017 5:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-5222,5/01/2018 2:30,19/01/2017 5:59,4.3,20, Improper Input Validation,nan
CVE-2016-5221,5/01/2018 2:30,19/01/2017 5:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5220,5/01/2018 2:30,19/01/2017 5:59,4.3,200, Information Exposure,nan
CVE-2016-5219,5/01/2018 2:30,19/01/2017 5:59,6.8,416, Use After Free,nan
CVE-2016-5218,5/01/2018 2:30,19/01/2017 5:59,4.3,20, Improper Input Validation,nan
CVE-2016-5217,5/01/2018 2:30,19/01/2017 5:59,4.3,284, Improper Access Control,nan
CVE-2016-5216,5/01/2018 2:30,19/01/2017 5:59,6.8,416, Use After Free,nan
CVE-2016-5215,5/01/2018 2:30,19/01/2017 5:59,6.8,416, Use After Free,nan
CVE-2016-5214,5/01/2018 2:30,19/01/2017 5:59,4.3,19, Data Processing Errors,nan
CVE-2016-5213,5/01/2018 2:30,19/01/2017 5:59,6.8,416, Use After Free,nan
CVE-2016-5212,5/01/2018 2:30,19/01/2017 5:59,4.3,200, Information Exposure,nan
CVE-2016-5211,5/01/2018 2:30,19/01/2017 5:59,6.8,416, Use After Free,nan
CVE-2016-5210,5/01/2018 2:30,19/01/2017 5:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-5209,5/01/2018 2:30,19/01/2017 5:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-5208,5/01/2018 2:30,19/01/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5207,5/01/2018 2:30,19/01/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5206,5/01/2018 2:30,19/01/2017 5:59,6.8,284, Improper Access Control,nan
CVE-2016-5205,5/01/2018 2:30,19/01/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5204,5/01/2018 2:30,19/01/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5203,5/01/2018 2:30,19/01/2017 5:59,6.8,416, Use After Free,nan
CVE-2016-5201,5/01/2018 2:30,19/01/2017 5:59,4.3,200, Information Exposure,nan
CVE-2016-5200,5/01/2018 2:30,19/01/2017 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5199,5/01/2018 2:30,19/01/2017 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5198,5/01/2018 2:30,19/01/2017 5:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-5193,5/01/2018 2:30,18/12/2016 3:59,4.3,20, Improper Input Validation,nan
CVE-2016-5192,5/01/2018 2:30,18/12/2016 3:59,4.3,284, Improper Access Control,nan
CVE-2016-5191,5/01/2018 2:30,18/12/2016 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5190,5/01/2018 2:30,18/12/2016 3:59,6.8,416, Use After Free,nan
CVE-2016-5189,5/01/2018 2:30,18/12/2016 3:59,4.3,284, Improper Access Control,nan
CVE-2016-5188,5/01/2018 2:30,18/12/2016 3:59,4.3,20, Improper Input Validation,nan
CVE-2016-5187,5/01/2018 2:30,18/12/2016 3:59,4.3,20, Improper Input Validation,nan
CVE-2016-5186,5/01/2018 2:30,18/12/2016 3:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-5185,5/01/2018 2:30,18/12/2016 3:59,6.8,416, Use After Free,nan
CVE-2016-5184,5/01/2018 2:30,18/12/2016 3:59,6.8,416, Use After Free,nan
CVE-2016-5183,5/01/2018 2:30,18/12/2016 3:59,6.8,416, Use After Free,nan
CVE-2016-5182,5/01/2018 2:30,18/12/2016 3:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5181,5/01/2018 2:30,18/12/2016 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5180,5/01/2018 2:30,3/10/2016 15:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-5176,5/01/2018 2:30,29/09/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-5174,5/01/2018 2:30,25/09/2016 20:59,4.3,20, Improper Input Validation,nan
CVE-2016-5173,5/01/2018 2:30,25/09/2016 20:59,6.8,284, Improper Access Control,nan
CVE-2016-5172,5/01/2018 2:30,25/09/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-5171,5/01/2018 2:30,25/09/2016 20:59,6.8,416, Use After Free,nan
CVE-2016-5170,5/01/2018 2:30,25/09/2016 20:59,6.8,416, Use After Free,nan
CVE-2016-5114,5/01/2018 2:30,7/08/2016 10:59,6.4,125, Out-of-bounds Read,nan
CVE-2016-5096,5/01/2018 2:30,7/08/2016 10:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5094,5/01/2018 2:30,7/08/2016 10:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5093,5/01/2018 2:30,7/08/2016 10:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-4998,5/01/2018 2:30,3/07/2016 21:59,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4997,5/01/2018 2:30,3/07/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4971,5/01/2018 2:30,30/06/2016 17:59,4.3,254, 7PK – Security Features,nan
CVE-2016-4569,5/01/2018 2:30,23/05/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-4565,5/01/2018 2:30,23/05/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4483,5/01/2018 2:30,11/04/2017 16:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-4475,5/01/2018 2:30,19/08/2016 21:59,6.5,254, 7PK – Security Features,nan
CVE-2016-4457,5/01/2018 2:30,8/06/2017 18:29,5.0,310, Cryptographic Issues,nan
CVE-2016-4287,5/01/2018 2:30,14/09/2016 18:59,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-4285,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4284,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4283,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4282,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4281,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4280,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4279,5/01/2018 2:30,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-4278,5/01/2018 2:30,14/09/2016 18:59,5.0,200, Information Exposure,nan
CVE-2016-4277,5/01/2018 2:30,14/09/2016 18:59,5.0,200, Information Exposure,nan
CVE-2016-4276,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4275,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4274,5/01/2018 2:30,14/09/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4272,5/01/2018 2:30,14/09/2016 18:59,10.0,416, Use After Free,nan
CVE-2016-4271,5/01/2018 2:30,14/09/2016 18:59,5.0,200, Information Exposure,nan
CVE-2016-4246,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4245,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4244,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4243,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4242,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4241,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4240,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4239,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4238,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4237,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4236,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4235,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4234,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4233,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4221,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4220,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4219,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4218,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4217,5/01/2018 2:30,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4190,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4189,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4187,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4186,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4184,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4183,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4181,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4180,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4172,5/01/2018 2:30,13/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4163,5/01/2018 2:30,16/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4162,5/01/2018 2:30,16/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4161,5/01/2018 2:30,16/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4160,5/01/2018 2:30,16/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4120,5/01/2018 2:30,16/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4073,5/01/2018 2:30,20/05/2016 11:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4072,5/01/2018 2:30,20/05/2016 11:00,7.5,20, Improper Input Validation,nan
CVE-2016-4071,5/01/2018 2:30,20/05/2016 11:00,7.5,20, Improper Input Validation,nan
CVE-2016-4070,5/01/2018 2:30,20/05/2016 11:00,5.0,189, Numeric Errors,nan
CVE-2016-3841,5/01/2018 2:30,6/08/2016 20:59,7.2,416, Use After Free,nan
CVE-2016-3728,5/01/2018 2:30,20/05/2016 14:59,6.8,284, Improper Access Control,nan
CVE-2016-3727,5/01/2018 2:30,17/05/2016 14:08,4.0,200, Information Exposure,nan
CVE-2016-3725,5/01/2018 2:30,17/05/2016 14:08,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3724,5/01/2018 2:30,17/05/2016 14:08,4.0,200, Information Exposure,nan
CVE-2016-3723,5/01/2018 2:30,17/05/2016 14:08,4.0,200, Information Exposure,nan
CVE-2016-3722,5/01/2018 2:30,17/05/2016 14:08,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3721,5/01/2018 2:30,17/05/2016 14:08,4.0,17, DEPRECATED: Code,nan
CVE-2016-3710,5/01/2018 2:30,11/05/2016 21:59,7.2,284, Improper Access Control,nan
CVE-2016-3699,5/01/2018 2:30,7/10/2016 14:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3191,5/01/2018 2:30,17/03/2016 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3156,5/01/2018 2:30,27/04/2016 17:59,2.1,399, Resource Management Errors,nan
CVE-2016-3142,5/01/2018 2:30,31/03/2016 16:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3141,5/01/2018 2:30,31/03/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3134,5/01/2018 2:30,27/04/2016 17:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3112,5/01/2018 2:30,8/06/2017 18:29,5.0,284, Improper Access Control,nan
CVE-2016-3111,5/01/2018 2:30,8/06/2017 18:29,2.1,200, Information Exposure,nan
CVE-2016-3108,5/01/2018 2:30,8/06/2017 18:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-3107,5/01/2018 2:30,8/06/2017 18:29,2.1,284, Improper Access Control,nan
CVE-2016-3070,5/01/2018 2:30,6/08/2016 20:59,4.6,476, NULL Pointer Dereference,nan
CVE-2016-3044,5/01/2018 2:30,1/12/2016 11:59,4.9,284, Improper Access Control,nan
CVE-2016-2847,5/01/2018 2:30,27/04/2016 17:59,4.9,399, Resource Management Errors,nan
CVE-2016-2842,5/01/2018 2:30,3/03/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2776,5/01/2018 2:30,28/09/2016 10:59,7.8,20, Improper Input Validation,nan
CVE-2016-2775,5/01/2018 2:30,19/07/2016 22:59,4.3,20, Improper Input Validation,nan
CVE-2016-2572,5/01/2018 2:30,27/02/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-2554,5/01/2018 2:30,16/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2342,5/01/2018 2:30,17/03/2016 14:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2143,5/01/2018 2:30,27/04/2016 17:59,6.9,20, Improper Input Validation,nan
CVE-2016-2117,5/01/2018 2:30,2/05/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-2116,5/01/2018 2:30,13/04/2016 14:59,4.3,399, Resource Management Errors,nan
CVE-2016-2108,5/01/2018 2:30,5/05/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2100,5/01/2018 2:30,20/05/2016 14:59,6.5,284, Improper Access Control,nan
CVE-2016-2089,5/01/2018 2:30,8/02/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2016-2069,5/01/2018 2:30,27/04/2016 17:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1981,5/01/2018 2:30,29/12/2016 22:59,2.1,399, Resource Management Errors,nan
CVE-2016-1903,5/01/2018 2:30,19/01/2016 5:59,6.4,200, Information Exposure,nan
CVE-2016-1867,5/01/2018 2:30,20/01/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1835,5/01/2018 2:30,20/05/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1550,5/01/2018 2:30,6/01/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-1548,5/01/2018 2:30,6/01/2017 21:59,6.4,19, Data Processing Errors,nan
CVE-2016-1547,5/01/2018 2:30,6/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2016-1541,5/01/2018 2:30,7/05/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2016-1526,5/01/2018 2:30,13/02/2016 2:59,5.8,200, Information Exposure,nan
CVE-2016-1283,5/01/2018 2:30,3/01/2016 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1245,5/01/2018 2:30,22/02/2017 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10251,5/01/2018 2:30,15/03/2017 14:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10249,5/01/2018 2:30,15/03/2017 14:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10200,5/01/2018 2:30,7/03/2017 21:59,6.9,416, Use After Free,nan
CVE-2016-10199,5/01/2018 2:30,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-10198,5/01/2018 2:30,9/02/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10197,5/01/2018 2:30,15/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-10195,5/01/2018 2:30,15/03/2017 15:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-10164,5/01/2018 2:30,1/02/2017 15:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-10149,5/01/2018 2:30,24/03/2017 14:59,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10147,5/01/2018 2:30,18/01/2017 21:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-10088,5/01/2018 2:30,30/12/2016 18:59,6.9,416, Use After Free,nan
CVE-2016-10002,5/01/2018 2:30,27/01/2017 17:59,5.0,200, Information Exposure,nan
CVE-2016-0959,5/01/2018 2:30,27/06/2017 20:29,10.0,416, Use After Free,nan
CVE-2016-0799,5/01/2018 2:30,3/03/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0795,5/01/2018 2:30,18/02/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0794,5/01/2018 2:30,18/02/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0792,5/01/2018 2:30,7/04/2016 23:59,9.0,20, Improper Input Validation,nan
CVE-2016-0791,5/01/2018 2:30,7/04/2016 23:59,7.5,200, Information Exposure,nan
CVE-2016-0790,5/01/2018 2:30,7/04/2016 23:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0789,5/01/2018 2:30,7/04/2016 23:59,4.3,20, Improper Input Validation,nan
CVE-2016-0788,5/01/2018 2:30,7/04/2016 23:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0702,5/01/2018 2:30,3/03/2016 20:59,1.9,200, Information Exposure,nan
CVE-2016-0634,5/01/2018 2:30,28/08/2017 15:29,6.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-8956,5/01/2018 2:30,10/10/2016 10:59,3.6,476, NULL Pointer Dereference,nan
CVE-2015-8947,5/01/2018 2:30,19/07/2016 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8935,5/01/2018 2:30,7/08/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8934,5/01/2018 2:30,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-8932,5/01/2018 2:30,20/09/2016 14:15,4.3,20, Improper Input Validation,nan
CVE-2015-8931,5/01/2018 2:30,20/09/2016 14:15,6.8,190, Integer Overflow or Wraparound,nan
CVE-2015-8930,5/01/2018 2:30,20/09/2016 14:15,5.0,20, Improper Input Validation,nan
CVE-2015-8928,5/01/2018 2:30,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-8926,5/01/2018 2:30,20/09/2016 14:15,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8925,5/01/2018 2:30,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-8924,5/01/2018 2:30,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-8923,5/01/2018 2:30,20/09/2016 14:15,4.3,20, Improper Input Validation,nan
CVE-2015-8922,5/01/2018 2:30,20/09/2016 14:15,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8921,5/01/2018 2:30,20/09/2016 14:15,5.0,125, Out-of-bounds Read,nan
CVE-2015-8920,5/01/2018 2:30,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-8919,5/01/2018 2:30,20/09/2016 14:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8917,5/01/2018 2:30,20/09/2016 14:15,5.0,476, NULL Pointer Dereference,nan
CVE-2015-8916,5/01/2018 2:30,20/09/2016 14:15,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8879,5/01/2018 2:30,22/05/2016 1:59,5.0,20, Improper Input Validation,nan
CVE-2015-8877,5/01/2018 2:30,22/05/2016 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-8870,5/01/2018 2:30,6/12/2016 18:59,5.8,20, Improper Input Validation,nan
CVE-2015-8868,5/01/2018 2:30,6/05/2016 17:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8845,5/01/2018 2:30,27/04/2016 17:59,4.9,284, Improper Access Control,nan
CVE-2015-8844,5/01/2018 2:30,27/04/2016 17:59,4.7,20, Improper Input Validation,nan
CVE-2015-8839,5/01/2018 2:30,2/05/2016 10:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8818,5/01/2018 2:30,29/12/2016 22:59,2.1,20, Improper Input Validation,nan
CVE-2015-8817,5/01/2018 2:30,29/12/2016 22:59,2.1,787, Out-of-bounds Write,nan
CVE-2015-8786,5/01/2018 2:30,9/12/2016 20:59,6.8,399, Resource Management Errors,nan
CVE-2015-8784,5/01/2018 2:30,13/04/2016 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8783,5/01/2018 2:30,1/02/2016 21:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8782,5/01/2018 2:30,1/02/2016 21:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8781,5/01/2018 2:30,1/02/2016 21:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8777,5/01/2018 2:30,20/01/2016 5:59,2.1,254, 7PK – Security Features,nan
CVE-2015-8683,5/01/2018 2:30,13/04/2016 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8665,5/01/2018 2:30,13/04/2016 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8395,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8392,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8391,5/01/2018 2:30,2/12/2015 1:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8388,5/01/2018 2:30,2/12/2015 1:59,7.5,185, Incorrect Regular Expression,nan
CVE-2015-8386,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8385,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8384,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8383,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8381,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8374,5/01/2018 2:30,28/12/2015 11:59,2.1,200, Information Exposure,nan
CVE-2015-7974,5/01/2018 2:30,26/01/2016 19:59,2.1,254, 7PK – Security Features,nan
CVE-2015-7512,5/01/2018 2:30,8/01/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7504,5/01/2018 2:30,16/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7496,5/01/2018 2:30,24/11/2015 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5560,5/01/2018 2:30,14/08/2015 1:59,10.0,189, Numeric Errors,nan
CVE-2015-5553,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5552,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5549,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5548,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5547,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5546,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5545,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5544,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5541,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5366,5/01/2018 2:30,31/08/2015 10:59,5.0,399, Resource Management Errors,nan
CVE-2015-5364,5/01/2018 2:30,31/08/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-5313,5/01/2018 2:30,11/04/2016 21:59,1.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5223,5/01/2018 2:30,26/10/2015 17:59,5.0,200, Information Exposure,nan
CVE-2015-5162,5/01/2018 2:30,7/10/2016 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-5133,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5132,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5131,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5129,5/01/2018 2:30,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5124,5/01/2018 2:30,20/07/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4148,5/01/2018 2:30,9/06/2015 18:59,5.0,20, Improper Input Validation,nan
CVE-2015-4147,5/01/2018 2:30,9/06/2015 18:59,7.5,19, Data Processing Errors,nan
CVE-2015-3813,5/01/2018 2:30,26/05/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2015-3812,5/01/2018 2:30,26/05/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2015-3811,5/01/2018 2:30,26/05/2015 15:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-3331,5/01/2018 2:30,27/05/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3254,5/01/2018 2:30,16/06/2017 22:29,4.0,20, Improper Input Validation,nan
CVE-2015-3216,5/01/2018 2:30,7/07/2015 10:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-3210,5/01/2018 2:30,13/12/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3209,5/01/2018 2:30,15/06/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3192,5/01/2018 2:30,12/07/2016 19:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3185,5/01/2018 2:30,20/07/2015 23:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3183,5/01/2018 2:30,20/07/2015 23:59,5.0,20, Improper Input Validation,nan
CVE-2015-3143,5/01/2018 2:30,24/04/2015 14:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3142,5/01/2018 2:30,26/06/2017 15:29,1.9,200, Information Exposure,nan
CVE-2015-2925,5/01/2018 2:30,16/11/2015 11:59,6.9,254, 7PK – Security Features,nan
CVE-2015-2922,5/01/2018 2:30,27/05/2015 10:59,3.3,17, DEPRECATED: Code,nan
CVE-2015-2830,5/01/2018 2:30,27/05/2015 10:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2806,5/01/2018 2:30,10/04/2015 15:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2721,5/01/2018 2:30,6/07/2015 2:00,4.3,310, Cryptographic Issues,nan
CVE-2015-2328,5/01/2018 2:30,2/12/2015 1:59,7.5,19, Data Processing Errors,nan
CVE-2015-2327,5/01/2018 2:30,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1870,5/01/2018 2:30,26/06/2017 15:29,2.1,200, Information Exposure,nan
CVE-2015-1856,5/01/2018 2:30,17/04/2015 17:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1805,5/01/2018 2:30,8/08/2015 10:59,7.2,17, DEPRECATED: Code,nan
CVE-2015-1799,5/01/2018 2:30,8/04/2015 10:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-1798,5/01/2018 2:30,8/04/2015 10:59,1.8,17, DEPRECATED: Code,nan
CVE-2015-1593,5/01/2018 2:30,16/03/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1573,5/01/2018 2:30,2/05/2016 10:59,4.9,19, Data Processing Errors,nan
CVE-2015-1547,5/01/2018 2:30,13/04/2016 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1302,5/01/2018 2:29,11/11/2015 11:59,7.5,20, Improper Input Validation,nan
CVE-2015-0286,5/01/2018 2:29,19/03/2015 22:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-0282,5/01/2018 2:29,24/03/2015 17:59,5.0,310, Cryptographic Issues,nan
CVE-2015-0223,5/01/2018 2:29,2/02/2015 16:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9938,5/01/2018 2:29,20/03/2017 0:59,6.8,116, Improper Encoding or Escaping of Output,nan
CVE-2014-9767,5/01/2018 2:29,22/05/2016 1:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9705,5/01/2018 2:29,30/03/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9680,5/01/2018 2:29,24/04/2017 6:59,2.1,200, Information Exposure,nan
CVE-2014-9655,5/01/2018 2:29,13/04/2016 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9644,5/01/2018 2:29,2/03/2015 11:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-9585,5/01/2018 2:29,9/01/2015 21:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-9584,5/01/2018 2:29,9/01/2015 21:59,2.1,20, Improper Input Validation,nan
CVE-2014-9529,5/01/2018 2:29,9/01/2015 21:59,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9420,5/01/2018 2:29,26/12/2014 0:59,4.9,399, Resource Management Errors,nan
CVE-2014-9419,5/01/2018 2:29,26/12/2014 0:59,2.1,200, Information Exposure,nan
CVE-2014-9330,5/01/2018 2:29,20/01/2015 15:59,5.0,189, Numeric Errors,nan
CVE-2014-8884,5/01/2018 2:29,30/11/2014 1:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8714,5/01/2018 2:29,23/11/2014 2:59,5.0,399, Resource Management Errors,nan
CVE-2014-8713,5/01/2018 2:29,23/11/2014 2:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8712,5/01/2018 2:29,23/11/2014 2:59,5.0,399, Resource Management Errors,nan
CVE-2014-8711,5/01/2018 2:29,23/11/2014 2:59,5.0,189, Numeric Errors,nan
CVE-2014-8710,5/01/2018 2:29,23/11/2014 2:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8176,5/01/2018 2:29,12/06/2015 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8165,5/01/2018 2:29,19/02/2015 15:59,10.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-8138,5/01/2018 2:29,24/12/2014 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8117,5/01/2018 2:29,17/12/2014 19:59,5.0,399, Resource Management Errors,nan
CVE-2014-8116,5/01/2018 2:29,17/12/2014 19:59,5.0,399, Resource Management Errors,nan
CVE-2014-7975,5/01/2018 2:29,13/10/2014 10:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-7970,5/01/2018 2:29,13/10/2014 10:55,4.9,399, Resource Management Errors,nan
CVE-2014-7826,5/01/2018 2:29,10/11/2014 11:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-7825,5/01/2018 2:29,10/11/2014 11:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3710,5/01/2018 2:29,5/11/2014 11:55,5.0,20, Improper Input Validation,nan
CVE-2014-3698,5/01/2018 2:29,29/10/2014 10:55,5.0,200, Information Exposure,nan
CVE-2014-3696,5/01/2018 2:29,29/10/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3695,5/01/2018 2:29,29/10/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3690,5/01/2018 2:29,10/11/2014 11:55,4.9,399, Resource Management Errors,nan
CVE-2014-3613,5/01/2018 2:29,18/11/2014 15:59,5.0,310, Cryptographic Issues,nan
CVE-2014-3604,5/01/2018 2:29,25/10/2014 0:55,6.8,310, Cryptographic Issues,nan
CVE-2014-3587,5/01/2018 2:29,23/08/2014 1:55,4.3,189, Numeric Errors,nan
CVE-2014-3538,5/01/2018 2:29,3/07/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-3530,5/01/2018 2:29,22/07/2014 20:55,7.5,200, Information Exposure,nan
CVE-2014-3523,5/01/2018 2:29,20/07/2014 11:12,5.0,399, Resource Management Errors,nan
CVE-2014-2015,5/01/2018 2:29,2/11/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1876,5/01/2018 2:29,10/02/2014 23:55,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-0248,5/01/2018 2:29,7/07/2014 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7456,5/01/2018 2:29,7/08/2016 10:59,6.8,125, Out-of-bounds Read,nan
CVE-2013-7421,5/01/2018 2:29,2/03/2015 11:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-6629,5/01/2018 2:29,19/11/2013 4:50,5.0,200, Information Exposure,nan
CVE-2013-5653,5/01/2018 2:29,7/03/2017 15:59,4.3,200, Information Exposure,nan
CVE-2013-4312,5/01/2018 2:29,8/02/2016 3:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2236,5/01/2018 2:29,24/10/2013 3:48,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6153,5/01/2018 2:29,4/09/2014 17:55,4.3,20, Improper Input Validation,nan
CVE-2012-5783,5/01/2018 2:29,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-3291,5/01/2018 2:29,7/06/2012 20:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2944,5/01/2018 2:29,1/06/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2337,5/01/2018 2:29,18/05/2012 18:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-2336,5/01/2018 2:29,11/05/2012 10:15,5.0,20, Improper Input Validation,nan
CVE-2012-2335,5/01/2018 2:29,11/05/2012 10:15,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2333,5/01/2018 2:29,14/05/2012 22:55,6.8,189, Numeric Errors,nan
CVE-2012-2131,5/01/2018 2:29,24/04/2012 20:55,7.5,189, Numeric Errors,nan
CVE-2012-2121,5/01/2018 2:29,17/05/2012 11:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2111,5/01/2018 2:29,30/04/2012 14:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2110,5/01/2018 2:29,19/04/2012 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2039,5/01/2018 2:29,9/06/2012 0:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2038,5/01/2018 2:29,9/06/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2037,5/01/2018 2:29,9/06/2012 0:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2036,5/01/2018 2:29,9/06/2012 0:55,10.0,189, Numeric Errors,nan
CVE-2012-2035,5/01/2018 2:29,9/06/2012 0:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1947,5/01/2018 2:29,5/06/2012 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1940,5/01/2018 2:29,5/06/2012 23:55,9.3,399, Resource Management Errors,nan
CVE-2012-1931,5/01/2018 2:29,28/03/2012 3:22,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1930,5/01/2018 2:29,28/03/2012 3:22,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1929,5/01/2018 2:29,28/03/2012 3:22,6.4,20, Improper Input Validation,nan
CVE-2012-1924,5/01/2018 2:29,28/03/2012 3:22,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1601,5/01/2018 2:29,17/05/2012 11:00,4.9,399, Resource Management Errors,nan
CVE-2012-1148,5/01/2018 2:29,3/07/2012 19:55,5.0,399, Resource Management Errors,nan
CVE-2012-0876,5/01/2018 2:29,3/07/2012 19:55,4.3,399, Resource Management Errors,nan
CVE-2012-0809,5/01/2018 2:29,1/02/2012 0:55,7.2,134, Use of Externally-Controlled Format String,nan
CVE-2012-0634,5/01/2018 2:29,8/03/2012 22:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0371,5/01/2018 2:29,1/03/2012 1:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0370,5/01/2018 2:29,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2012-0369,5/01/2018 2:29,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2012-0368,5/01/2018 2:29,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2012-0354,5/01/2018 2:29,15/03/2012 0:55,7.1,20, Improper Input Validation,nan
CVE-2012-0244,5/01/2018 2:29,21/02/2012 13:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0243,5/01/2018 2:29,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0242,5/01/2018 2:29,21/02/2012 13:31,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2012-0241,5/01/2018 2:29,21/02/2012 13:31,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0240,5/01/2018 2:29,21/02/2012 13:31,10.0,287, Improper Authentication,nan
CVE-2012-0239,5/01/2018 2:29,21/02/2012 13:31,5.0,287, Improper Authentication,nan
CVE-2012-0238,5/01/2018 2:29,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0237,5/01/2018 2:29,21/02/2012 13:31,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0236,5/01/2018 2:29,21/02/2012 13:31,5.0,200, Information Exposure,nan
CVE-2012-0235,5/01/2018 2:29,21/02/2012 13:31,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0234,5/01/2018 2:29,21/02/2012 13:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0233,5/01/2018 2:29,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4526,5/01/2018 2:29,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4525,5/01/2018 2:29,21/02/2012 13:31,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4524,5/01/2018 2:29,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4523,5/01/2018 2:29,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4522,5/01/2018 2:29,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4521,5/01/2018 2:29,21/02/2012 13:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3845,5/01/2018 2:29,8/03/2012 4:15,7.6,399, Resource Management Errors,nan
CVE-2011-2192,5/01/2018 2:29,7/07/2011 21:55,4.3,255, Credentials Management,nan
CVE-2011-0010,5/01/2018 2:29,18/01/2011 18:03,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-3837,5/01/2018 2:29,14/01/2011 19:02,4.0,399, Resource Management Errors,nan
CVE-2010-3836,5/01/2018 2:29,14/01/2011 19:02,4.0,399, Resource Management Errors,nan
CVE-2010-3835,5/01/2018 2:29,14/01/2011 19:02,4.0,189, Numeric Errors,nan
CVE-2010-3833,5/01/2018 2:29,14/01/2011 19:01,5.0,399, Resource Management Errors,nan
CVE-2010-3679,5/01/2018 2:29,11/01/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2010-3678,5/01/2018 2:29,11/01/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2010-3677,5/01/2018 2:29,11/01/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2010-2971,5/01/2018 2:29,5/08/2010 13:22,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2546,5/01/2018 2:29,5/08/2010 13:22,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2008,5/01/2018 2:29,13/07/2010 20:30,3.5,20, Improper Input Validation,nan
CVE-2010-1850,5/01/2018 2:29,8/06/2010 0:30,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1848,5/01/2018 2:29,8/06/2010 0:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1626,5/01/2018 2:29,21/05/2010 17:30,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-1621,5/01/2018 2:29,14/05/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4484,5/01/2018 2:29,30/12/2009 21:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4030,5/01/2018 2:29,30/11/2009 17:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-7247,5/01/2018 2:29,30/11/2009 17:30,6.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4098,5/01/2018 2:29,18/09/2008 15:04,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3963,5/01/2018 2:29,11/09/2008 1:13,4.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-15312,4/01/2018 20:54,22/12/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10908,4/01/2018 20:52,22/12/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-17774,4/01/2018 20:50,20/12/2017 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-10868,4/01/2018 20:10,22/12/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-17088,4/01/2018 20:09,19/12/2017 15:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16735,4/01/2018 20:08,20/12/2017 19:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16733,4/01/2018 20:07,20/12/2017 19:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16679,4/01/2018 19:40,12/12/2017 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-17792,4/01/2018 18:57,20/12/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17737,4/01/2018 18:57,18/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16680,4/01/2018 18:46,12/12/2017 14:29,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17551,4/01/2018 18:45,11/12/2017 18:29,6.8,20, Improper Input Validation,nan
CVE-2017-17029,4/01/2018 18:45,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17032,4/01/2018 18:44,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17031,4/01/2018 18:44,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17030,4/01/2018 18:44,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17028,4/01/2018 18:43,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17027,4/01/2018 18:43,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16691,4/01/2018 18:39,12/12/2017 14:29,5.8,20, Improper Input Validation,nan
CVE-2017-16689,4/01/2018 18:39,12/12/2017 14:29,6.5,287, Improper Authentication,nan
CVE-2017-14134,4/01/2018 18:34,16/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17033,4/01/2018 17:15,21/12/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8866,4/01/2018 16:23,11/12/2017 21:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-8865,4/01/2018 16:23,11/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-17739,4/01/2018 15:53,18/12/2017 6:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17715,4/01/2018 15:47,16/12/2017 19:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17731,4/01/2018 15:46,18/12/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17727,4/01/2018 15:46,18/12/2017 5:29,6.8,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-17730,4/01/2018 15:43,18/12/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17716,4/01/2018 15:42,17/12/2017 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-17717,4/01/2018 15:40,17/12/2017 17:29,10.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-17714,4/01/2018 15:23,16/12/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17713,4/01/2018 15:23,16/12/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17735,4/01/2018 15:18,18/12/2017 6:29,5.0,200, Information Exposure,nan
CVE-2017-17734,4/01/2018 15:18,18/12/2017 6:29,5.0,200, Information Exposure,nan
CVE-2012-2270,4/01/2018 2:29,20/04/2012 10:55,5.8,20, Improper Input Validation,nan
CVE-2012-2269,4/01/2018 2:29,20/04/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0365,4/01/2018 2:29,25/02/2012 4:21,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0364,4/01/2018 2:29,25/02/2012 4:21,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-0363,4/01/2018 2:29,25/02/2012 4:21,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0353,4/01/2018 2:29,15/03/2012 0:55,7.1,20, Improper Input Validation,nan
CVE-2012-0229,4/01/2018 2:29,15/03/2012 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1600,3/01/2018 19:52,20/12/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1257,3/01/2018 18:16,20/12/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-1261,3/01/2018 18:10,20/12/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-1270,3/01/2018 17:36,20/12/2017 18:29,2.1,384, Session Fixation,nan
CVE-2017-1757,3/01/2018 17:23,20/12/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1262,3/01/2018 17:15,20/12/2017 18:29,5.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2017-17825,3/01/2018 16:57,21/12/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17822,3/01/2018 16:56,21/12/2017 4:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17823,3/01/2018 16:54,21/12/2017 4:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17824,3/01/2018 16:53,21/12/2017 4:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17827,3/01/2018 16:28,21/12/2017 4:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17826,3/01/2018 16:28,21/12/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17779,3/01/2018 15:54,20/12/2017 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17778,3/01/2018 15:54,20/12/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17776,3/01/2018 15:52,20/12/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-17803,3/01/2018 15:33,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17802,3/01/2018 15:33,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17801,3/01/2018 15:32,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17800,3/01/2018 15:31,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17799,3/01/2018 15:28,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17796,3/01/2018 15:27,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17804,3/01/2018 14:55,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17797,3/01/2018 14:55,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-17795,3/01/2018 14:55,20/12/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-14963,3/01/2018 14:54,20/12/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-14966,3/01/2018 14:49,20/12/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-14965,3/01/2018 14:49,20/12/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-14964,3/01/2018 14:49,20/12/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2017-6486,3/01/2018 14:10,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4336,3/01/2018 13:45,22/06/2014 21:55,5.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-17828,3/01/2018 13:21,21/12/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17829,3/01/2018 13:20,21/12/2017 5:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17830,3/01/2018 13:19,21/12/2017 5:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1595,3/01/2018 13:11,20/12/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-1596,3/01/2018 13:10,20/12/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-16788,3/01/2018 13:05,15/12/2017 18:29,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17533,3/01/2018 12:53,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17527,3/01/2018 12:53,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17515,3/01/2018 12:52,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-1833,3/01/2018 2:29,5/02/2014 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1672,3/01/2018 2:29,26/01/2014 1:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1670,3/01/2018 2:29,25/01/2014 16:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1666,3/01/2018 2:29,26/01/2014 16:58,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1643,3/01/2018 2:29,7/02/2014 4:52,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1642,3/01/2018 2:29,26/01/2014 16:58,4.4,399, Resource Management Errors,nan
CVE-2014-1487,3/01/2018 2:29,6/02/2014 5:44,5.0,255, Credentials Management,nan
CVE-2014-1486,3/01/2018 2:29,6/02/2014 5:44,10.0,399, Resource Management Errors,nan
CVE-2014-1482,3/01/2018 2:29,6/02/2014 5:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1481,3/01/2018 2:29,6/02/2014 5:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1479,3/01/2018 2:29,6/02/2014 5:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0833,3/01/2018 2:29,1/02/2014 15:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0831,3/01/2018 2:29,1/02/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0686,3/01/2018 2:29,4/02/2014 5:39,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0682,3/01/2018 2:29,29/01/2014 18:34,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0681,3/01/2018 2:29,29/01/2014 18:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0680,3/01/2018 2:29,29/01/2014 18:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0622,3/01/2018 2:29,6/02/2014 22:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0501,3/01/2018 2:29,12/02/2014 4:50,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0500,3/01/2018 2:29,12/02/2014 4:50,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0330,3/01/2018 2:29,6/02/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0038,3/01/2018 2:29,6/02/2014 22:55,6.9,20, Improper Input Validation,nan
CVE-2013-7294,3/01/2018 2:29,16/01/2014 5:05,5.0,20, Improper Input Validation,nan
CVE-2017-17514,2/01/2018 18:32,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17513,2/01/2018 17:44,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-16678,2/01/2018 17:42,12/12/2017 14:29,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-17671,2/01/2018 17:35,14/12/2017 0:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17664,2/01/2018 17:35,13/12/2017 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15875,2/01/2018 17:32,19/12/2017 2:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11932,2/01/2018 17:25,12/12/2017 21:29,5.8,20, Improper Input Validation,nan
CVE-2017-17672,2/01/2018 16:29,14/12/2017 0:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-16687,2/01/2018 15:47,12/12/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-17624,2/01/2018 15:43,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16950,2/01/2018 15:33,17/12/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17651,2/01/2018 15:30,18/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16723,2/01/2018 14:37,11/12/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7554,31/12/2017 2:29,29/09/2017 1:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7553,31/12/2017 2:29,29/09/2017 1:34,6.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-5119,31/12/2017 2:29,27/10/2017 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5117,31/12/2017 2:29,27/10/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-5115,31/12/2017 2:29,27/10/2017 5:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-5114,31/12/2017 2:29,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5113,31/12/2017 2:29,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5112,31/12/2017 2:29,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5111,31/12/2017 2:29,27/10/2017 5:29,6.8,416, Use After Free,nan
CVE-2017-1000048,31/12/2017 2:29,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-6868,30/12/2017 2:29,7/07/2017 17:29,6.8,287, Improper Authentication,nan
CVE-2017-17439,30/12/2017 2:29,6/12/2017 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-14510,30/12/2017 2:29,17/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14509,30/12/2017 2:29,17/09/2017 21:29,6.5,20, Improper Input Validation,nan
CVE-2017-14508,30/12/2017 2:29,17/09/2017 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-13872,30/12/2017 2:29,29/11/2017 17:29,9.3,287, Improper Authentication,nan
CVE-2017-13090,30/12/2017 2:29,27/10/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13089,30/12/2017 2:29,27/10/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1575,30/12/2017 2:29,22/04/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17632,29/12/2017 19:47,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17625,29/12/2017 19:46,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17623,29/12/2017 19:44,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17631,29/12/2017 19:42,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17634,29/12/2017 19:11,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17633,29/12/2017 19:11,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17637,29/12/2017 19:10,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17636,29/12/2017 19:10,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17635,29/12/2017 19:10,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6904,29/12/2017 16:36,11/12/2017 15:29,4.3,255, Credentials Management,nan
CVE-2017-16787,29/12/2017 16:16,15/12/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-17535,29/12/2017 15:44,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17519,29/12/2017 15:39,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17517,29/12/2017 15:39,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17516,29/12/2017 15:39,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17534,29/12/2017 15:38,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17523,29/12/2017 15:38,11/12/2017 6:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17528,29/12/2017 15:37,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17530,29/12/2017 15:36,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17529,29/12/2017 15:36,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17531,29/12/2017 15:25,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17532,29/12/2017 15:24,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17698,29/12/2017 15:17,15/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15897,29/12/2017 15:12,11/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-11397,29/12/2017 15:12,16/12/2017 2:29,6.8,426, Untrusted Search Path,nan
CVE-2017-16690,29/12/2017 15:07,12/12/2017 14:29,6.8,426, Untrusted Search Path,nan
CVE-2017-11927,29/12/2017 14:42,12/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-11888,29/12/2017 14:39,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7155,29/12/2017 14:31,27/12/2017 17:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7163,29/12/2017 14:19,27/12/2017 17:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7159,29/12/2017 14:18,27/12/2017 17:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7158,29/12/2017 14:18,27/12/2017 17:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8358,29/12/2017 14:18,11/12/2017 21:29,9.3,426, Untrusted Search Path,nan
CVE-2017-13883,29/12/2017 14:04,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13879,29/12/2017 14:04,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8191,29/12/2017 2:29,22/11/2017 19:29,4.3,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2014-4020,29/12/2017 2:29,18/06/2014 16:55,4.3,189, Numeric Errors,nan
CVE-2014-3966,29/12/2017 2:29,6/06/2014 14:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3956,29/12/2017 2:29,4/06/2014 11:19,1.9,200, Information Exposure,nan
CVE-2014-3943,29/12/2017 2:29,3/06/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3942,29/12/2017 2:29,3/06/2014 14:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3941,29/12/2017 2:29,3/06/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-3865,29/12/2017 2:29,30/05/2014 18:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3864,29/12/2017 2:29,30/05/2014 18:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3801,29/12/2017 2:29,23/05/2014 14:55,3.5,200, Information Exposure,nan
CVE-2014-3466,29/12/2017 2:29,3/06/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3430,29/12/2017 2:29,14/05/2014 19:55,5.0,287, Improper Authentication,nan
CVE-2014-3157,29/12/2017 2:29,11/06/2014 10:57,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3156,29/12/2017 2:29,11/06/2014 10:57,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3152,29/12/2017 2:29,21/05/2014 11:14,7.5,189, Numeric Errors,nan
CVE-2014-3145,29/12/2017 2:29,11/05/2014 21:55,4.9,189, Numeric Errors,nan
CVE-2014-3144,29/12/2017 2:29,11/05/2014 21:55,4.9,189, Numeric Errors,nan
CVE-2014-3122,29/12/2017 2:29,11/05/2014 21:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3121,29/12/2017 2:29,14/05/2014 0:55,7.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2894,29/12/2017 2:29,23/04/2014 15:55,7.2,189, Numeric Errors,nan
CVE-2014-2013,29/12/2017 2:29,3/03/2014 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1747,29/12/2017 2:29,21/05/2014 11:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1746,29/12/2017 2:29,21/05/2014 11:14,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1745,29/12/2017 2:29,21/05/2014 11:14,7.5,399, Resource Management Errors,nan
CVE-2014-1744,29/12/2017 2:29,21/05/2014 11:14,7.5,189, Numeric Errors,nan
CVE-2014-1743,29/12/2017 2:29,21/05/2014 11:14,7.5,399, Resource Management Errors,nan
CVE-2012-2612,29/12/2017 2:29,15/05/2012 4:21,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2341,29/12/2017 2:29,18/05/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2318,29/12/2017 2:29,3/07/2012 19:55,5.0,20, Improper Input Validation,nan
CVE-2012-2268,29/12/2017 2:29,17/04/2012 4:26,5.0,20, Improper Input Validation,nan
CVE-2012-2267,29/12/2017 2:29,17/04/2012 4:26,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2214,29/12/2017 2:29,3/07/2012 19:55,3.5,399, Resource Management Errors,nan
CVE-2012-2133,29/12/2017 2:29,3/07/2012 16:40,4.0,399, Resource Management Errors,nan
CVE-2012-2123,29/12/2017 2:29,17/05/2012 11:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-2113,29/12/2017 2:29,22/07/2012 17:55,6.8,189, Numeric Errors,nan
CVE-2012-2088,29/12/2017 2:29,22/07/2012 17:55,7.5,189, Numeric Errors,nan
CVE-2012-1985,29/12/2017 2:29,17/04/2012 4:26,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1984,29/12/2017 2:29,17/04/2012 4:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1966,29/12/2017 2:29,18/07/2012 10:26,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1965,29/12/2017 2:29,18/07/2012 10:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1963,29/12/2017 2:29,18/07/2012 10:26,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1962,29/12/2017 2:29,18/07/2012 10:26,10.0,399, Resource Management Errors,nan
CVE-2012-1961,29/12/2017 2:29,18/07/2012 10:26,4.3,20, Improper Input Validation,nan
CVE-2012-1960,29/12/2017 2:29,18/07/2012 10:26,5.0,200, Information Exposure,nan
CVE-2012-1959,29/12/2017 2:29,18/07/2012 10:26,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1958,29/12/2017 2:29,18/07/2012 10:26,9.3,399, Resource Management Errors,nan
CVE-2012-1957,29/12/2017 2:29,18/07/2012 10:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1954,29/12/2017 2:29,18/07/2012 10:26,10.0,399, Resource Management Errors,nan
CVE-2012-1953,29/12/2017 2:29,18/07/2012 10:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1952,29/12/2017 2:29,18/07/2012 10:26,9.3,399, Resource Management Errors,nan
CVE-2012-1951,29/12/2017 2:29,18/07/2012 10:26,10.0,399, Resource Management Errors,nan
CVE-2012-1946,29/12/2017 2:29,5/06/2012 23:55,9.3,399, Resource Management Errors,nan
CVE-2012-1945,29/12/2017 2:29,5/06/2012 23:55,2.9,200, Information Exposure,nan
CVE-2012-1944,29/12/2017 2:29,5/06/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1942,29/12/2017 2:29,5/06/2012 23:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-1941,29/12/2017 2:29,5/06/2012 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1939,29/12/2017 2:29,5/06/2012 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1923,29/12/2017 2:29,17/04/2012 4:26,2.1,310, Cryptographic Issues,nan
CVE-2012-1596,29/12/2017 2:29,11/04/2012 10:39,5.0,399, Resource Management Errors,nan
CVE-2012-1595,29/12/2017 2:29,11/04/2012 10:39,4.3,399, Resource Management Errors,nan
CVE-2012-1594,29/12/2017 2:29,11/04/2012 10:39,3.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1518,29/12/2017 2:29,17/04/2012 21:55,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1314,29/12/2017 2:29,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-1312,29/12/2017 2:29,29/03/2012 11:01,7.1,399, Resource Management Errors,nan
CVE-2012-1311,29/12/2017 2:29,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-1243,29/12/2017 2:29,22/04/2012 3:44,5.0,200, Information Exposure,nan
CVE-2012-1241,29/12/2017 2:29,16/04/2012 16:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1240,29/12/2017 2:29,16/04/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1179,29/12/2017 2:29,17/05/2012 11:00,5.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0946,29/12/2017 2:29,22/04/2012 18:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-0942,29/12/2017 2:29,17/04/2012 4:26,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0883,29/12/2017 2:29,18/04/2012 10:33,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0478,29/12/2017 2:29,25/04/2012 10:10,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0474,29/12/2017 2:29,25/04/2012 10:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0473,29/12/2017 2:29,25/04/2012 10:10,5.0,189, Numeric Errors,nan
CVE-2012-0472,29/12/2017 2:29,25/04/2012 10:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0469,29/12/2017 2:29,25/04/2012 10:10,10.0,399, Resource Management Errors,nan
CVE-2012-0468,29/12/2017 2:29,25/04/2012 10:10,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0449,29/12/2017 2:29,1/02/2012 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4188,29/12/2017 2:29,9/04/2012 20:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4132,29/12/2017 2:29,27/01/2012 15:55,2.1,20, Improper Input Validation,nan
CVE-2011-4131,29/12/2017 2:29,17/05/2012 11:00,4.6,189, Numeric Errors,nan
CVE-2011-4128,29/12/2017 2:29,8/12/2011 20:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4127,29/12/2017 2:29,3/07/2012 16:40,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4086,29/12/2017 2:29,3/07/2012 16:40,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4024,29/12/2017 2:29,21/10/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3670,29/12/2017 2:29,1/02/2012 16:55,5.0,200, Information Exposure,nan
CVE-2011-3658,29/12/2017 2:29,21/12/2011 4:02,7.5,399, Resource Management Errors,nan
CVE-2011-3639,29/12/2017 2:29,30/11/2011 4:05,4.3,20, Improper Input Validation,nan
CVE-2011-3348,29/12/2017 2:29,20/09/2011 5:55,4.3,399, Resource Management Errors,nan
CVE-2011-3102,29/12/2017 2:29,16/05/2012 0:55,6.8,189, Numeric Errors,nan
CVE-2011-3096,29/12/2017 2:29,16/05/2012 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-3095,29/12/2017 2:29,16/05/2012 0:55,10.0,20, Improper Input Validation,nan
CVE-2011-3094,29/12/2017 2:29,16/05/2012 0:55,5.0,20, Improper Input Validation,nan
CVE-2011-3093,29/12/2017 2:29,16/05/2012 0:55,5.0,20, Improper Input Validation,nan
CVE-2011-3092,29/12/2017 2:29,16/05/2012 0:55,10.0,20, Improper Input Validation,nan
CVE-2011-3091,29/12/2017 2:29,16/05/2012 0:55,10.0,399, Resource Management Errors,nan
CVE-2011-3090,29/12/2017 2:29,16/05/2012 0:55,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-3089,29/12/2017 2:29,16/05/2012 0:55,10.0,399, Resource Management Errors,nan
CVE-2011-3088,29/12/2017 2:29,16/05/2012 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3086,29/12/2017 2:29,16/05/2012 0:55,10.0,399, Resource Management Errors,nan
CVE-2011-3085,29/12/2017 2:29,16/05/2012 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3084,29/12/2017 2:29,16/05/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3083,29/12/2017 2:29,16/05/2012 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3062,29/12/2017 2:29,30/03/2012 22:55,6.8,189, Numeric Errors,nan
CVE-2011-3048,29/12/2017 2:29,29/05/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2494,29/12/2017 2:29,13/06/2012 10:24,2.1,200, Information Exposure,nan
CVE-2009-5114,29/12/2017 2:29,19/03/2012 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-5112,29/12/2017 2:29,19/03/2012 18:55,5.0,200, Information Exposure,nan
CVE-2017-17525,28/12/2017 19:15,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17524,28/12/2017 19:15,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17522,28/12/2017 19:13,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17521,28/12/2017 19:12,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17520,28/12/2017 19:12,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17526,28/12/2017 18:55,14/12/2017 16:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-17497,28/12/2017 18:54,10/12/2017 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13875,28/12/2017 18:33,25/12/2017 21:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-13864,28/12/2017 18:10,25/12/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-13858,28/12/2017 18:09,25/12/2017 21:29,9.3,20, Improper Input Validation,nan
CVE-2017-10904,28/12/2017 17:57,16/12/2017 2:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-5713,28/12/2017 17:50,6/12/2017 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-13848,28/12/2017 16:40,25/12/2017 21:29,9.3,20, Improper Input Validation,nan
CVE-2017-13847,28/12/2017 16:38,25/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16953,28/12/2017 2:29,1/12/2017 17:29,5.0,287, Improper Authentication,nan
CVE-2015-5279,28/12/2017 2:29,28/09/2015 16:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7815,28/12/2017 2:29,14/11/2014 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1742,28/12/2017 2:29,14/05/2014 11:13,7.5,399, Resource Management Errors,nan
CVE-2014-1741,28/12/2017 2:29,14/05/2014 11:13,7.5,189, Numeric Errors,nan
CVE-2014-1740,28/12/2017 2:29,14/05/2014 11:13,7.5,399, Resource Management Errors,nan
CVE-2014-1652,28/12/2017 2:29,18/06/2014 19:55,2.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1651,28/12/2017 2:29,18/06/2014 19:55,5.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1650,28/12/2017 2:29,18/06/2014 19:55,5.2,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1543,28/12/2017 2:29,11/06/2014 10:57,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1539,28/12/2017 2:29,11/06/2014 10:57,5.0,20, Improper Input Validation,nan
CVE-2014-1534,28/12/2017 2:29,11/06/2014 10:57,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8135,27/12/2017 17:08,22/11/2017 19:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-7411,27/12/2017 17:08,30/10/2017 14:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-6166,27/12/2017 17:08,22/11/2017 16:29,4.3,415, Double Free,nan
CVE-2017-5717,27/12/2017 17:08,12/12/2017 20:29,7.2,704, Incorrect Type Conversion or Cast,nan
CVE-2015-8470,27/12/2017 16:36,11/12/2017 17:29,4.3,200, Information Exposure,nan
CVE-2014-3250,27/12/2017 16:31,11/12/2017 17:29,4.0,295, Improper Certificate Validation,nan
CVE-2017-14386,27/12/2017 16:12,7/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14091,27/12/2017 16:12,16/12/2017 2:29,7.6,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-11939,27/12/2017 16:10,12/12/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-11935,27/12/2017 16:09,12/12/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14184,27/12/2017 16:07,15/12/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-15529,27/12/2017 16:00,13/12/2017 19:29,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-15530,27/12/2017 15:59,13/12/2017 19:29,2.1,200, Information Exposure,nan
CVE-2017-14374,27/12/2017 15:51,6/12/2017 0:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-2886,27/12/2017 15:48,11/12/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-1536,27/12/2017 15:42,11/12/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14093,27/12/2017 15:26,16/12/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1546,27/12/2017 14:25,13/12/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1635,27/12/2017 14:12,13/12/2017 18:29,5.2,416, Use After Free,nan
CVE-2017-1558,27/12/2017 14:11,13/12/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14090,26/12/2017 19:45,16/12/2017 2:29,6.4,326, Inadequate Encryption Strength,nan
CVE-2017-11507,26/12/2017 18:10,11/12/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11302,26/12/2017 18:10,9/12/2017 6:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17622,26/12/2017 18:08,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11294,26/12/2017 18:08,9/12/2017 6:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17628,26/12/2017 17:58,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17614,26/12/2017 17:58,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17627,26/12/2017 17:34,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17626,26/12/2017 17:34,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17609,26/12/2017 17:34,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17621,26/12/2017 16:31,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17608,26/12/2017 16:31,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17602,26/12/2017 16:31,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17620,26/12/2017 16:30,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17619,26/12/2017 16:30,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17618,26/12/2017 16:30,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17617,26/12/2017 16:05,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7738,26/12/2017 16:02,13/12/2017 22:29,4.0,200, Information Exposure,nan
CVE-2017-14092,26/12/2017 16:00,16/12/2017 2:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-13070,26/12/2017 16:00,11/12/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-1613,26/12/2017 15:43,11/12/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1632,26/12/2017 15:41,11/12/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1683,26/12/2017 15:40,11/12/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1606,26/12/2017 15:37,11/12/2017 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1421,26/12/2017 15:37,13/12/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17615,26/12/2017 15:36,13/12/2017 9:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17610,26/12/2017 15:36,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17613,26/12/2017 15:35,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17642,26/12/2017 15:34,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17640,26/12/2017 15:33,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17648,26/12/2017 15:31,13/12/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17641,26/12/2017 15:31,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17639,26/12/2017 15:31,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17638,26/12/2017 15:31,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1507,26/12/2017 15:00,11/12/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-11919,26/12/2017 14:58,12/12/2017 21:29,2.6,200, Information Exposure,nan
CVE-2017-11906,26/12/2017 14:56,12/12/2017 21:29,2.6,200, Information Exposure,nan
CVE-2017-11890,26/12/2017 14:56,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11889,26/12/2017 14:55,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11887,26/12/2017 14:55,12/12/2017 21:29,2.6,200, Information Exposure,nan
CVE-2017-11886,26/12/2017 14:52,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17603,22/12/2017 19:59,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17630,22/12/2017 19:58,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17629,22/12/2017 19:58,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17611,22/12/2017 19:58,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17604,22/12/2017 19:58,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17111,22/12/2017 19:57,11/12/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11293,22/12/2017 19:56,9/12/2017 6:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4920,22/12/2017 19:50,5/12/2017 21:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-17616,22/12/2017 19:48,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17607,22/12/2017 19:48,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17606,22/12/2017 19:48,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17605,22/12/2017 19:48,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11295,22/12/2017 19:47,9/12/2017 6:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17600,22/12/2017 19:45,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17601,22/12/2017 19:44,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17463,22/12/2017 18:26,8/12/2017 5:29,5.0,200, Information Exposure,nan
CVE-2017-17435,22/12/2017 17:50,7/12/2017 0:29,8.3,287, Improper Authentication,nan
CVE-2017-17383,22/12/2017 17:16,6/12/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17599,22/12/2017 16:29,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17598,22/12/2017 16:28,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17597,22/12/2017 16:28,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17596,22/12/2017 16:25,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17595,22/12/2017 16:16,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17594,22/12/2017 16:16,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17567,22/12/2017 16:16,13/12/2017 9:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17436,22/12/2017 15:59,7/12/2017 0:29,3.3,326, Inadequate Encryption Strength,nan
CVE-2017-6211,22/12/2017 15:13,5/12/2017 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15940,22/12/2017 15:10,11/12/2017 17:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-16684,22/12/2017 15:06,12/12/2017 14:29,7.5,287, Improper Authentication,nan
CVE-2017-1336,22/12/2017 15:05,7/12/2017 15:29,3.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16884,22/12/2017 14:37,7/12/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11894,22/12/2017 14:37,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16682,22/12/2017 14:34,12/12/2017 14:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11905,22/12/2017 14:27,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11901,22/12/2017 14:26,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17440,22/12/2017 14:20,6/12/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11895,22/12/2017 14:17,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3476,22/12/2017 2:29,17/06/2014 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1402,22/12/2017 2:29,19/05/2014 14:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-0595,22/12/2017 2:29,8/05/2014 10:55,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0536,22/12/2017 2:29,11/06/2014 10:57,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0535,22/12/2017 2:29,11/06/2014 10:57,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0534,22/12/2017 2:29,11/06/2014 10:57,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0533,22/12/2017 2:29,11/06/2014 10:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0532,22/12/2017 2:29,11/06/2014 10:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0531,22/12/2017 2:29,11/06/2014 10:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0478,22/12/2017 2:29,17/06/2014 14:55,4.0,20, Improper Input Validation,nan
CVE-2012-3008,22/12/2017 2:29,20/07/2012 10:40,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2978,22/12/2017 2:29,27/07/2012 10:27,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2977,22/12/2017 2:29,23/07/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2976,22/12/2017 2:29,23/07/2012 17:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2974,22/12/2017 2:29,19/07/2012 15:55,10.0,287, Improper Authentication,nan
CVE-2012-2961,22/12/2017 2:29,23/07/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2957,22/12/2017 2:29,23/07/2012 17:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-2955,22/12/2017 2:29,20/07/2012 10:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2953,22/12/2017 2:29,23/07/2012 17:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2645,22/12/2017 2:29,16/07/2012 20:49,4.3,200, Information Exposure,nan
CVE-2012-2574,22/12/2017 2:29,23/07/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2202,22/12/2017 2:29,27/07/2012 10:27,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2197,22/12/2017 2:29,25/07/2012 10:42,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2196,22/12/2017 2:29,25/07/2012 10:42,5.0,200, Information Exposure,nan
CVE-2012-2194,22/12/2017 2:29,25/07/2012 10:42,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0796,22/12/2017 2:29,17/07/2012 10:20,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0795,22/12/2017 2:29,17/07/2012 10:20,6.5,20, Improper Input Validation,nan
CVE-2012-0794,22/12/2017 2:29,17/07/2012 10:20,5.0,255, Credentials Management,nan
CVE-2012-0793,22/12/2017 2:29,17/07/2012 10:20,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0792,22/12/2017 2:29,17/07/2012 10:20,4.0,200, Information Exposure,nan
CVE-2011-4588,22/12/2017 2:29,20/07/2012 10:40,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4587,22/12/2017 2:29,20/07/2012 10:40,6.8,255, Credentials Management,nan
CVE-2011-4585,22/12/2017 2:29,20/07/2012 10:40,5.0,16, Configuration,nan
CVE-2011-4584,22/12/2017 2:29,20/07/2012 10:40,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4308,22/12/2017 2:29,11/07/2012 10:26,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-17451,21/12/2017 21:18,7/12/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17431,21/12/2017 21:12,5/12/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11913,21/12/2017 21:10,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1255,21/12/2017 20:37,5/12/2017 16:29,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-17591,21/12/2017 20:35,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17592,21/12/2017 20:34,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11908,21/12/2017 20:27,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17569,21/12/2017 20:20,13/12/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6276,21/12/2017 20:18,6/12/2017 18:29,7.2,416, Use After Free,nan
CVE-2017-6263,21/12/2017 20:18,6/12/2017 18:29,7.2,416, Use After Free,nan
CVE-2017-6262,21/12/2017 20:16,6/12/2017 18:29,6.9,416, Use After Free,nan
CVE-2017-16681,21/12/2017 20:13,12/12/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16685,21/12/2017 20:11,12/12/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11912,21/12/2017 20:09,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11930,21/12/2017 20:08,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11916,21/12/2017 19:54,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11910,21/12/2017 19:54,12/12/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17055,21/12/2017 18:54,7/12/2017 2:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8822,21/12/2017 18:30,3/12/2017 7:29,4.3,417, Channel and Path Errors,nan
CVE-2017-8820,21/12/2017 18:07,3/12/2017 7:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-8821,21/12/2017 18:06,3/12/2017 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8823,21/12/2017 18:01,3/12/2017 7:29,6.8,416, Use After Free,nan
CVE-2017-17096,21/12/2017 17:05,3/12/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17112,21/12/2017 17:03,4/12/2017 8:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17113,21/12/2017 17:02,4/12/2017 8:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-17114,21/12/2017 16:55,4/12/2017 8:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17057,21/12/2017 16:53,4/12/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16930,21/12/2017 16:38,5/12/2017 9:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16929,21/12/2017 16:35,5/12/2017 9:29,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17684,21/12/2017 15:30,14/12/2017 6:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3114,21/12/2017 15:29,9/12/2017 6:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-11225,21/12/2017 15:28,9/12/2017 6:29,10.0,416, Use After Free,nan
CVE-2017-11215,21/12/2017 15:28,9/12/2017 6:29,10.0,416, Use After Free,nan
CVE-2017-11213,21/12/2017 15:03,9/12/2017 6:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-17683,21/12/2017 14:51,14/12/2017 6:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15943,21/12/2017 14:51,11/12/2017 17:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-17110,21/12/2017 14:48,11/12/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17695,21/12/2017 14:40,15/12/2017 9:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17694,21/12/2017 14:40,15/12/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17696,21/12/2017 14:39,15/12/2017 9:29,4.0,200, Information Exposure,nan
CVE-2017-9822,21/12/2017 2:29,20/07/2017 12:29,6.5,20, Improper Input Validation,nan
CVE-2014-1739,21/12/2017 2:29,23/06/2014 11:21,1.7,200, Information Exposure,nan
CVE-2014-1738,21/12/2017 2:29,11/05/2014 21:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-1737,21/12/2017 2:29,11/05/2014 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-0240,21/12/2017 2:29,27/05/2014 14:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-14585,20/12/2017 23:37,27/11/2017 16:29,9.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-7268,20/12/2017 23:24,27/11/2017 22:29,1.9,254, 7PK – Security Features,nan
CVE-2016-10702,20/12/2017 23:19,28/11/2017 7:29,5.8,200, Information Exposure,nan
CVE-2017-4995,20/12/2017 22:31,27/11/2017 10:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-16941,20/12/2017 21:49,25/11/2017 5:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14379,20/12/2017 21:29,28/11/2017 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15673,20/12/2017 21:04,28/11/2017 15:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-17052,20/12/2017 20:58,29/11/2017 3:29,7.2,416, Use After Free,nan
CVE-2017-17042,20/12/2017 20:58,28/11/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8818,20/12/2017 20:56,29/11/2017 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7269,20/12/2017 20:46,27/11/2017 22:29,1.9,254, 7PK – Security Features,nan
CVE-2015-7267,20/12/2017 20:45,27/11/2017 22:29,1.9,254, 7PK – Security Features,nan
CVE-2016-1252,20/12/2017 20:44,5/12/2017 16:29,4.3,417, Channel and Path Errors,nan
CVE-2016-1253,20/12/2017 20:43,5/12/2017 16:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9316,20/12/2017 20:40,27/11/2017 17:29,5.8,287, Improper Authentication,nan
CVE-2017-1549,20/12/2017 20:40,11/12/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14586,20/12/2017 20:40,27/11/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14591,20/12/2017 20:37,29/11/2017 21:29,9.3,88, Improper Neutralization of Argument Delimiters in a Command (‘Argument Injection’),nan
CVE-2017-17701,20/12/2017 20:36,15/12/2017 20:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-17700,20/12/2017 20:33,15/12/2017 20:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-17699,20/12/2017 20:33,15/12/2017 20:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-10897,20/12/2017 20:33,8/12/2017 15:29,5.5,20, Improper Input Validation,nan
CVE-2017-14914,20/12/2017 20:32,5/12/2017 19:29,10.0,20, Improper Input Validation,nan
CVE-2017-17069,20/12/2017 20:30,6/12/2017 5:29,9.3,426, Untrusted Search Path,nan
CVE-2017-1548,20/12/2017 20:28,11/12/2017 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-17575,20/12/2017 20:12,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17574,20/12/2017 20:12,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17573,20/12/2017 20:12,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17572,20/12/2017 20:12,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17571,20/12/2017 20:12,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17570,20/12/2017 20:12,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17065,20/12/2017 20:12,30/11/2017 17:29,7.8,20, Improper Input Validation,nan
CVE-2017-17577,20/12/2017 20:09,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17576,20/12/2017 20:09,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17583,20/12/2017 19:17,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17582,20/12/2017 19:17,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17579,20/12/2017 19:17,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17578,20/12/2017 19:17,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17585,20/12/2017 19:16,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17584,20/12/2017 19:16,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17589,20/12/2017 19:13,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17587,20/12/2017 19:13,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17586,20/12/2017 19:13,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3764,20/12/2017 19:04,30/11/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-1000406,20/12/2017 18:52,30/11/2017 21:29,5.0,254, 7PK – Security Features,nan
CVE-2017-17588,20/12/2017 18:51,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17581,20/12/2017 18:40,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17580,20/12/2017 18:40,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17590,20/12/2017 18:39,13/12/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17056,20/12/2017 17:10,4/12/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-17068,20/12/2017 17:03,6/12/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-17465,20/12/2017 16:54,8/12/2017 5:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-17464,20/12/2017 16:54,8/12/2017 5:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-14918,20/12/2017 16:54,5/12/2017 19:29,10.0,416, Use After Free,nan
CVE-2017-14917,20/12/2017 16:53,5/12/2017 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14916,20/12/2017 16:48,5/12/2017 19:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10896,20/12/2017 16:27,8/12/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10893,20/12/2017 15:19,8/12/2017 15:29,9.3,426, Untrusted Search Path,nan
CVE-2015-6502,20/12/2017 15:18,11/12/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17099,20/12/2017 14:40,3/12/2017 21:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12823,20/12/2017 14:29,8/12/2017 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8194,20/12/2017 2:29,22/11/2017 19:29,6.5,287, Improper Authentication,nan
CVE-2017-14016,20/12/2017 2:29,6/11/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12754,20/12/2017 2:29,9/08/2017 15:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11420,20/12/2017 2:29,18/07/2017 5:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11345,20/12/2017 2:29,17/07/2017 13:18,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11344,20/12/2017 2:29,17/07/2017 13:18,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10682,20/12/2017 2:29,29/06/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2230,20/12/2017 2:29,12/04/2012 10:45,6.5,310, Cryptographic Issues,nan
CVE-2012-2225,20/12/2017 2:29,11/04/2012 10:39,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2224,20/12/2017 2:29,11/04/2012 10:39,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2223,20/12/2017 2:29,11/04/2012 10:39,4.3,200, Information Exposure,nan
CVE-2012-2210,20/12/2017 2:29,11/04/2012 10:39,7.8,399, Resource Management Errors,nan
CVE-2012-2156,20/12/2017 2:29,11/04/2012 10:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2055,20/12/2017 2:29,5/04/2012 14:55,5.0,255, Credentials Management,nan
CVE-2012-2053,20/12/2017 2:29,5/04/2012 14:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-1808,20/12/2017 2:29,13/04/2012 17:55,10.0,287, Improper Authentication,nan
CVE-2012-1806,20/12/2017 2:29,13/04/2012 17:55,7.5,287, Improper Authentication,nan
CVE-2012-1805,20/12/2017 2:29,13/04/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1801,20/12/2017 2:29,18/04/2012 10:33,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14909,19/12/2017 21:31,5/12/2017 19:29,10.0,20, Improper Input Validation,nan
CVE-2017-14908,19/12/2017 21:22,5/12/2017 19:29,10.0,20, Improper Input Validation,nan
CVE-2017-11049,19/12/2017 21:06,5/12/2017 17:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-11045,19/12/2017 21:03,5/12/2017 17:29,4.4,416, Use After Free,nan
CVE-2017-11044,19/12/2017 21:02,5/12/2017 17:29,4.4,416, Use After Free,nan
CVE-2017-11033,19/12/2017 20:42,5/12/2017 17:29,4.6,416, Use After Free,nan
CVE-2017-11031,19/12/2017 20:42,5/12/2017 17:29,5.0,416, Use After Free,nan
CVE-2017-11019,19/12/2017 20:41,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17507,19/12/2017 20:38,11/12/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17506,19/12/2017 20:38,11/12/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-17505,19/12/2017 20:36,11/12/2017 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17508,19/12/2017 20:35,11/12/2017 3:29,4.3,369, Divide By Zero,nan
CVE-2017-17509,19/12/2017 20:34,11/12/2017 3:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-10861,19/12/2017 20:25,1/12/2017 14:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16893,19/12/2017 19:59,1/12/2017 17:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17059,19/12/2017 17:04,29/11/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14516,19/12/2017 16:57,3/12/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000214,19/12/2017 16:14,27/11/2017 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-0879,19/12/2017 15:53,6/12/2017 14:29,8.5,200, Information Exposure,nan
CVE-2017-14377,19/12/2017 15:31,29/11/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2017-1482,19/12/2017 15:14,7/12/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1481,19/12/2017 15:13,7/12/2017 15:29,4.0,200, Information Exposure,nan
CVE-2017-1465,19/12/2017 15:11,7/12/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1498,19/12/2017 14:59,7/12/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0878,19/12/2017 14:43,6/12/2017 14:29,9.3,20, Improper Input Validation,nan
CVE-2017-0877,19/12/2017 14:43,6/12/2017 14:29,9.3,20, Improper Input Validation,nan
CVE-2017-0876,19/12/2017 14:43,6/12/2017 14:29,9.3,20, Improper Input Validation,nan
CVE-2017-0872,19/12/2017 14:39,6/12/2017 14:29,9.3,20, Improper Input Validation,nan
CVE-2017-0874,19/12/2017 14:38,6/12/2017 14:29,7.1,20, Improper Input Validation,nan
CVE-2017-0873,19/12/2017 14:38,6/12/2017 14:29,7.1,20, Improper Input Validation,nan
CVE-2017-1271,19/12/2017 13:43,7/12/2017 15:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-1342,19/12/2017 13:41,7/12/2017 15:29,4.0,200, Information Exposure,nan
CVE-2017-1353,19/12/2017 13:38,7/12/2017 15:29,3.5,200, Information Exposure,nan
CVE-2017-1354,19/12/2017 13:37,7/12/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1355,19/12/2017 13:36,7/12/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-1356,19/12/2017 13:35,7/12/2017 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-13175,19/12/2017 13:27,6/12/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-13149,19/12/2017 13:27,6/12/2017 14:29,8.5,200, Information Exposure,nan
CVE-2017-13169,19/12/2017 13:25,6/12/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-13150,19/12/2017 13:24,6/12/2017 14:29,8.5,200, Information Exposure,nan
CVE-2017-16856,19/12/2017 13:16,5/12/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13164,19/12/2017 12:23,6/12/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-7923,19/12/2017 2:29,6/05/2017 0:29,4.0,200, Information Exposure,nan
CVE-2017-7921,19/12/2017 2:29,6/05/2017 0:29,7.5,287, Improper Authentication,nan
CVE-2016-10372,19/12/2017 2:29,16/05/2017 14:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2425,19/12/2017 2:29,25/04/2012 20:55,1.8,20, Improper Input Validation,nan
CVE-2012-2423,19/12/2017 2:29,25/04/2012 20:55,1.8,200, Information Exposure,nan
CVE-2012-2422,19/12/2017 2:29,25/04/2012 20:55,2.9,200, Information Exposure,nan
CVE-2012-2421,19/12/2017 2:29,25/04/2012 20:55,1.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2419,19/12/2017 2:29,25/04/2012 20:55,1.8,399, Resource Management Errors,nan
CVE-2012-2418,19/12/2017 2:29,25/04/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2404,19/12/2017 2:29,21/04/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2403,19/12/2017 2:29,21/04/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2402,19/12/2017 2:29,21/04/2012 23:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2401,19/12/2017 2:29,21/04/2012 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0863,19/12/2017 2:29,30/04/2012 14:55,2.1,310, Cryptographic Issues,nan
CVE-2012-0743,19/12/2017 2:29,22/04/2012 18:55,5.0,399, Resource Management Errors,nan
CVE-2012-0740,19/12/2017 2:29,22/04/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0726,19/12/2017 2:29,22/04/2012 18:55,6.4,310, Cryptographic Issues,nan
CVE-2012-0708,19/12/2017 2:29,22/04/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0475,19/12/2017 2:29,25/04/2012 10:10,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2001-0781,19/12/2017 2:29,30/05/2001 4:00,7.5,284, Improper Access Control,nan
CVE-2001-0576,19/12/2017 2:29,22/08/2001 4:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-0566,19/12/2017 2:29,14/08/2001 4:00,5.0,20, Improper Input Validation,nan
CVE-2001-0103,19/12/2017 2:29,12/02/2001 5:00,4.6,310, Cryptographic Issues,nan
CVE-2017-13664,18/12/2017 22:53,1/12/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-13159,18/12/2017 16:04,6/12/2017 14:29,7.8,200, Information Exposure,nan
CVE-2017-13158,18/12/2017 16:03,6/12/2017 14:29,7.8,200, Information Exposure,nan
CVE-2017-13157,18/12/2017 16:03,6/12/2017 14:29,7.8,200, Information Exposure,nan
CVE-2017-13152,18/12/2017 16:02,6/12/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-13148,18/12/2017 15:05,6/12/2017 14:29,7.1,20, Improper Input Validation,nan
CVE-2017-17470,18/12/2017 14:11,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17471,18/12/2017 14:10,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17469,18/12/2017 14:08,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17467,18/12/2017 14:08,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17475,18/12/2017 13:50,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17474,18/12/2017 13:50,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17473,18/12/2017 13:50,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17472,18/12/2017 13:50,8/12/2017 7:29,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1497,18/12/2017 13:28,7/12/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-1487,18/12/2017 13:24,7/12/2017 15:29,4.0,200, Information Exposure,nan
CVE-2017-12339,17/12/2017 2:29,30/11/2017 9:29,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-10701,17/12/2017 2:29,28/11/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12359,16/12/2017 2:29,30/11/2017 9:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2983,16/12/2017 2:29,23/04/2014 15:55,4.3,200, Information Exposure,nan
CVE-2014-2856,16/12/2017 2:29,18/04/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2855,16/12/2017 2:29,23/04/2014 15:55,7.8,20, Improper Input Validation,nan
CVE-2014-2669,16/12/2017 2:29,31/03/2014 14:58,6.5,189, Numeric Errors,nan
CVE-2014-2668,16/12/2017 2:29,28/03/2014 16:51,5.0,20, Improper Input Validation,nan
CVE-2014-2523,16/12/2017 2:29,24/03/2014 16:40,10.0,20, Improper Input Validation,nan
CVE-2014-1985,16/12/2017 2:29,11/04/2014 14:55,5.8,20, Improper Input Validation,nan
CVE-2014-1514,16/12/2017 2:29,19/03/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1513,16/12/2017 2:29,19/03/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1512,16/12/2017 2:29,19/03/2014 10:55,9.3,399, Resource Management Errors,nan
CVE-2014-1511,16/12/2017 2:29,19/03/2014 10:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1510,16/12/2017 2:29,19/03/2014 10:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1508,16/12/2017 2:29,19/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1505,16/12/2017 2:29,19/03/2014 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1497,16/12/2017 2:29,19/03/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0509,16/12/2017 2:29,8/04/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0508,16/12/2017 2:29,8/04/2014 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0507,16/12/2017 2:29,8/04/2014 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0506,16/12/2017 2:29,27/03/2014 10:55,10.0,399, Resource Management Errors,nan
CVE-2014-0331,16/12/2017 2:29,10/04/2014 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0166,16/12/2017 2:29,10/04/2014 0:55,6.4,287, Improper Authentication,nan
CVE-2014-0165,16/12/2017 2:29,10/04/2014 0:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0139,16/12/2017 2:29,15/04/2014 14:55,5.8,310, Cryptographic Issues,nan
CVE-2014-0106,16/12/2017 2:29,11/03/2014 19:37,6.6,20, Improper Input Validation,nan
CVE-2014-0105,16/12/2017 2:29,15/04/2014 14:55,6.0,255, Credentials Management,nan
CVE-2014-0101,16/12/2017 2:29,11/03/2014 13:01,7.1,20, Improper Input Validation,nan
CVE-2014-0086,16/12/2017 2:29,31/03/2014 14:58,4.3,20, Improper Input Validation,nan
CVE-2014-0076,16/12/2017 2:29,25/03/2014 13:25,1.9,310, Cryptographic Issues,nan
CVE-2014-0069,16/12/2017 2:29,28/02/2014 6:18,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0067,16/12/2017 2:29,31/03/2014 14:58,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-0066,16/12/2017 2:29,31/03/2014 14:58,4.0,20, Improper Input Validation,nan
CVE-2014-0065,16/12/2017 2:29,31/03/2014 14:58,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0064,16/12/2017 2:29,31/03/2014 14:58,6.5,189, Numeric Errors,nan
CVE-2014-0063,16/12/2017 2:29,31/03/2014 14:58,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0062,16/12/2017 2:29,31/03/2014 14:58,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0061,16/12/2017 2:29,31/03/2014 14:58,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0060,16/12/2017 2:29,31/03/2014 14:58,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-7265,16/12/2017 2:29,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7264,16/12/2017 2:29,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7263,16/12/2017 2:29,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-6885,16/12/2017 2:29,29/11/2013 4:33,4.7,399, Resource Management Errors,nan
CVE-2017-1484,15/12/2017 19:19,27/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-14868,15/12/2017 19:18,30/11/2017 18:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-15607,15/12/2017 19:17,1/12/2017 8:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14949,15/12/2017 19:17,30/11/2017 18:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-17043,15/12/2017 19:16,28/11/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16948,15/12/2017 19:16,26/11/2017 21:29,4.6,476, NULL Pointer Dereference,nan
CVE-2017-17049,15/12/2017 19:15,29/11/2017 3:29,4.6,476, NULL Pointer Dereference,nan
CVE-2017-17050,15/12/2017 19:12,29/11/2017 3:29,4.6,476, NULL Pointer Dereference,nan
CVE-2017-10895,15/12/2017 18:30,1/12/2017 14:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-17086,15/12/2017 18:12,1/12/2017 8:29,7.5,20, Improper Input Validation,nan
CVE-2017-17054,15/12/2017 18:07,29/11/2017 7:29,4.3,369, Divide By Zero,nan
CVE-2017-16414,15/12/2017 18:06,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16410,15/12/2017 18:06,9/12/2017 6:29,9.3,129, Improper Validation of Array Index,nan
CVE-2017-16406,15/12/2017 18:06,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16416,15/12/2017 18:05,9/12/2017 6:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-16415,15/12/2017 18:05,9/12/2017 6:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-8019,15/12/2017 17:21,28/11/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-8020,15/12/2017 16:52,28/11/2017 7:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16418,15/12/2017 16:17,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16417,15/12/2017 16:17,9/12/2017 6:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-16413,15/12/2017 16:15,9/12/2017 6:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-16412,15/12/2017 16:15,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16411,15/12/2017 16:12,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16403,15/12/2017 16:10,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-11006,15/12/2017 15:42,5/12/2017 19:29,10.0,416, Use After Free,nan
CVE-2017-11005,15/12/2017 15:42,5/12/2017 19:29,10.0,416, Use After Free,nan
CVE-2017-14900,15/12/2017 15:41,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14899,15/12/2017 15:41,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14898,15/12/2017 15:41,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14897,15/12/2017 15:41,5/12/2017 19:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14896,15/12/2017 15:41,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11007,15/12/2017 15:41,5/12/2017 19:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16405,15/12/2017 15:40,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16404,15/12/2017 15:40,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-14901,15/12/2017 15:40,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16409,15/12/2017 15:34,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16408,15/12/2017 15:34,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16407,15/12/2017 15:33,9/12/2017 6:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-14902,15/12/2017 15:33,5/12/2017 19:29,6.9,416, Use After Free,nan
CVE-2017-16402,15/12/2017 15:32,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16401,15/12/2017 15:31,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16400,15/12/2017 15:31,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16399,15/12/2017 15:30,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-15813,15/12/2017 15:29,5/12/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16398,15/12/2017 15:25,9/12/2017 6:29,9.3,416, Use After Free,nan
CVE-2017-16397,15/12/2017 15:25,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16396,15/12/2017 15:23,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16395,15/12/2017 15:23,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16394,15/12/2017 15:23,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16393,15/12/2017 15:21,9/12/2017 6:29,9.3,416, Use After Free,nan
CVE-2017-16392,15/12/2017 15:21,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16391,15/12/2017 15:20,9/12/2017 6:29,9.3,129, Improper Validation of Array Index,nan
CVE-2017-16373,15/12/2017 15:16,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16390,15/12/2017 15:12,9/12/2017 6:29,9.3,416, Use After Free,nan
CVE-2017-16375,15/12/2017 15:12,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17104,15/12/2017 15:10,4/12/2017 8:29,7.8,200, Information Exposure,nan
CVE-2017-17103,15/12/2017 15:10,4/12/2017 8:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-17129,15/12/2017 15:07,4/12/2017 8:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-17128,15/12/2017 15:07,4/12/2017 8:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-17127,15/12/2017 15:07,4/12/2017 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-17426,15/12/2017 15:06,5/12/2017 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16378,15/12/2017 14:54,9/12/2017 6:29,9.3,824, Access of Uninitialized Pointer,nan
CVE-2017-16377,15/12/2017 14:53,9/12/2017 6:29,9.3,824, Access of Uninitialized Pointer,nan
CVE-2017-16376,15/12/2017 14:52,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16372,15/12/2017 14:52,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16371,15/12/2017 14:52,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9700,15/12/2017 14:51,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9698,15/12/2017 14:51,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16370,15/12/2017 14:51,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16369,15/12/2017 14:51,9/12/2017 6:29,4.3,200, Information Exposure,nan
CVE-2017-9708,15/12/2017 14:50,5/12/2017 17:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9703,15/12/2017 14:50,5/12/2017 17:29,4.4,416, Use After Free,nan
CVE-2017-16387,15/12/2017 14:50,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9718,15/12/2017 14:49,5/12/2017 17:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9710,15/12/2017 14:49,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16386,15/12/2017 14:49,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9722,15/12/2017 14:48,5/12/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16382,15/12/2017 14:46,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16389,15/12/2017 14:09,9/12/2017 6:29,9.3,416, Use After Free,nan
CVE-2017-16388,15/12/2017 14:09,9/12/2017 6:29,9.3,416, Use After Free,nan
CVE-2017-16385,15/12/2017 14:09,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16383,15/12/2017 14:08,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16381,15/12/2017 13:57,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16379,15/12/2017 13:56,9/12/2017 6:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16368,15/12/2017 13:55,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16360,15/12/2017 13:36,9/12/2017 6:29,9.3,416, Use After Free,nan
CVE-2017-12336,15/12/2017 2:29,30/11/2017 9:29,4.6,20, Improper Input Validation,nan
CVE-2017-12334,15/12/2017 2:29,30/11/2017 9:29,7.2,20, Improper Input Validation,nan
CVE-2017-12333,15/12/2017 2:29,30/11/2017 9:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-12332,15/12/2017 2:29,30/11/2017 9:29,4.9,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-12331,15/12/2017 2:29,30/11/2017 9:29,7.2,347, Improper Verification of Cryptographic Signature,nan
CVE-2016-7046,15/12/2017 2:29,3/10/2016 21:59,7.1,399, Resource Management Errors,nan
CVE-2016-6884,15/12/2017 2:29,3/03/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6883,15/12/2017 2:29,3/03/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-6882,15/12/2017 2:29,3/03/2017 16:59,4.3,320, Key Management Errors,nan
CVE-2016-6311,15/12/2017 2:29,22/08/2017 18:29,5.0,200, Information Exposure,nan
CVE-2016-5406,15/12/2017 2:29,26/09/2016 14:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-4993,15/12/2017 2:29,26/09/2016 14:59,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-16364,14/12/2017 18:57,9/12/2017 6:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16362,14/12/2017 18:56,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16367,14/12/2017 18:52,9/12/2017 6:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-16420,14/12/2017 18:44,9/12/2017 6:29,9.3,125, Out-of-bounds Read,nan
CVE-2017-16959,14/12/2017 18:37,27/11/2017 10:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1251,14/12/2017 18:36,27/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-10894,14/12/2017 18:17,1/12/2017 14:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2017-10874,14/12/2017 18:08,1/12/2017 14:29,5.0,330, Use of Insufficiently Random Values,nan
CVE-2017-16951,14/12/2017 18:04,28/11/2017 15:29,4.3,20, Improper Input Validation,nan
CVE-2017-11286,14/12/2017 18:02,1/12/2017 8:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-11284,14/12/2017 18:02,1/12/2017 8:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-11283,14/12/2017 18:01,1/12/2017 8:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-11285,14/12/2017 17:41,1/12/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11282,14/12/2017 17:40,1/12/2017 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11281,14/12/2017 17:40,1/12/2017 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16952,14/12/2017 17:18,28/11/2017 15:29,4.3,20, Improper Input Validation,nan
CVE-2017-3105,14/12/2017 16:53,1/12/2017 8:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-3104,14/12/2017 16:53,1/12/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11273,14/12/2017 16:43,9/12/2017 6:29,4.3,200, Information Exposure,nan
CVE-2017-16841,14/12/2017 16:36,16/11/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11304,14/12/2017 16:32,9/12/2017 6:29,7.5,416, Use After Free,nan
CVE-2017-11303,14/12/2017 16:32,9/12/2017 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6024,14/12/2017 16:18,27/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-1570,14/12/2017 16:17,27/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-14196,14/12/2017 16:16,30/11/2017 2:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14197,14/12/2017 16:12,30/11/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3111,14/12/2017 15:48,9/12/2017 6:29,5.0,200, Information Exposure,nan
CVE-2017-10899,14/12/2017 15:36,1/12/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10898,14/12/2017 15:31,1/12/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10892,14/12/2017 15:28,1/12/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10891,14/12/2017 15:28,1/12/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-1240,14/12/2017 15:00,27/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-11291,14/12/2017 14:57,9/12/2017 6:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-11287,14/12/2017 14:57,9/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11296,14/12/2017 14:43,9/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11289,14/12/2017 14:43,9/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11288,14/12/2017 14:43,9/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3109,14/12/2017 14:29,9/12/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-17102,14/12/2017 13:17,4/12/2017 8:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2449,14/12/2017 2:29,4/05/2012 16:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2448,14/12/2017 2:29,4/05/2012 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2441,14/12/2017 2:29,28/04/2012 0:55,8.5,310, Cryptographic Issues,nan
CVE-2012-2416,14/12/2017 2:29,30/04/2012 20:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2415,14/12/2017 2:29,30/04/2012 20:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2414,14/12/2017 2:29,30/04/2012 20:55,6.5,287, Improper Authentication,nan
CVE-2012-2405,14/12/2017 2:29,22/04/2012 18:55,10.0,310, Cryptographic Issues,nan
CVE-2012-2217,14/12/2017 2:29,1/05/2012 14:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-2002,14/12/2017 2:29,2/05/2012 22:55,8.3,20, Improper Input Validation,nan
CVE-2012-2001,14/12/2017 2:29,2/05/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1936,14/12/2017 2:29,3/05/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1803,14/12/2017 2:29,28/04/2012 0:55,8.5,310, Cryptographic Issues,nan
CVE-2012-1775,14/12/2017 2:29,19/03/2012 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1521,14/12/2017 2:29,1/05/2012 10:12,10.0,399, Resource Management Errors,nan
CVE-2012-1245,14/12/2017 2:29,27/04/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1244,14/12/2017 2:29,27/04/2012 18:55,5.8,310, Cryptographic Issues,nan
CVE-2011-2583,14/12/2017 2:29,2/05/2012 10:09,5.0,20, Improper Input Validation,nan
CVE-2011-2578,14/12/2017 2:29,2/05/2012 10:09,7.8,399, Resource Management Errors,nan
CVE-2016-6338,13/12/2017 2:29,20/04/2017 17:59,4.6,284, Improper Access Control,nan
CVE-2016-0701,13/12/2017 2:29,15/02/2016 2:59,2.6,200, Information Exposure,nan
CVE-2012-2397,13/12/2017 2:29,20/04/2012 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2234,13/12/2017 2:29,22/04/2012 3:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1920,13/12/2017 2:29,27/03/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-1918,13/12/2017 2:29,27/03/2012 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1670,13/12/2017 2:29,31/03/2012 14:55,5.0,200, Information Exposure,nan
CVE-2012-1662,13/12/2017 2:29,22/03/2012 3:28,5.0,20, Improper Input Validation,nan
CVE-2012-1517,13/12/2017 2:29,4/05/2012 16:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1510,13/12/2017 2:29,16/03/2012 20:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1508,13/12/2017 2:29,16/03/2012 20:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-1315,13/12/2017 2:29,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-1310,13/12/2017 2:29,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-1089,13/12/2017 2:29,23/03/2012 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0388,13/12/2017 2:29,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-0387,13/12/2017 2:29,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-0386,13/12/2017 2:29,29/03/2012 11:01,7.8,310, Cryptographic Issues,nan
CVE-2012-0385,13/12/2017 2:29,29/03/2012 11:01,7.8,20, Improper Input Validation,nan
CVE-2009-1329,13/12/2017 2:29,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2135,12/12/2017 18:50,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8148,12/12/2017 18:21,22/11/2017 19:29,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2704,12/12/2017 18:21,22/11/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-8160,12/12/2017 18:14,22/11/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-2697,12/12/2017 18:14,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8172,12/12/2017 18:13,22/11/2017 19:29,7.1,129, Improper Validation of Array Index,nan
CVE-2017-8167,12/12/2017 18:10,22/11/2017 19:29,7.8,20, Improper Input Validation,nan
CVE-2017-8178,12/12/2017 18:09,22/11/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8174,12/12/2017 18:08,22/11/2017 19:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-8202,12/12/2017 18:07,22/11/2017 19:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2713,12/12/2017 18:04,22/11/2017 19:29,4.8,20, Improper Input Validation,nan
CVE-2017-16613,12/12/2017 18:03,21/11/2017 13:29,7.5,287, Improper Authentication,nan
CVE-2017-8044,12/12/2017 18:00,27/11/2017 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8045,12/12/2017 17:59,27/11/2017 10:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-16962,12/12/2017 17:58,27/11/2017 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15527,12/12/2017 17:51,20/11/2017 19:29,5.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8159,12/12/2017 17:40,22/11/2017 19:29,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-2696,12/12/2017 17:36,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2709,12/12/2017 17:13,22/11/2017 19:29,4.3,20, Improper Input Validation,nan
CVE-2008-6046,12/12/2017 17:07,4/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8359,12/12/2017 17:05,30/04/2017 17:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-2711,12/12/2017 16:37,22/11/2017 19:29,7.1,20, Improper Input Validation,nan
CVE-2017-13071,12/12/2017 16:33,22/11/2017 17:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8153,12/12/2017 16:23,22/11/2017 19:29,5.8,275, Permission Issues,nan
CVE-2017-2695,12/12/2017 16:09,22/11/2017 19:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16936,12/12/2017 16:04,24/11/2017 7:29,3.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16902,12/12/2017 15:58,20/11/2017 18:29,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16903,12/12/2017 15:55,20/11/2017 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8864,12/12/2017 15:54,22/11/2017 8:29,10.0,693, Protection Mechanism Failure,nan
CVE-2017-8862,12/12/2017 15:54,22/11/2017 8:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-8860,12/12/2017 15:51,22/11/2017 8:29,5.0,200, Information Exposure,nan
CVE-2017-8863,12/12/2017 15:44,22/11/2017 8:29,5.0,200, Information Exposure,nan
CVE-2017-10903,12/12/2017 15:44,1/12/2017 14:29,10.0,287, Improper Authentication,nan
CVE-2017-10902,12/12/2017 15:44,1/12/2017 14:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-10901,12/12/2017 15:44,1/12/2017 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3934,12/12/2017 15:39,21/11/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16904,12/12/2017 15:32,20/11/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6804,12/12/2017 14:27,20/11/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-16840,12/12/2017 14:21,21/11/2017 8:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-11826,12/12/2017 2:29,13/10/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2722,11/12/2017 19:51,22/11/2017 19:29,6.5,20, Improper Input Validation,nan
CVE-2016-10700,11/12/2017 19:35,24/11/2017 5:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-8204,11/12/2017 19:27,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8203,11/12/2017 19:27,22/11/2017 19:29,6.8,416, Use After Free,nan
CVE-2017-8186,11/12/2017 19:27,22/11/2017 19:29,7.1,20, Improper Input Validation,nan
CVE-2017-8205,11/12/2017 18:57,22/11/2017 19:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-8182,11/12/2017 18:45,22/11/2017 19:29,5.8,125, Out-of-bounds Read,nan
CVE-2017-8177,11/12/2017 18:43,22/11/2017 19:29,5.0,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-8175,11/12/2017 18:41,22/11/2017 19:29,7.1,20, Improper Input Validation,nan
CVE-2017-8156,11/12/2017 18:35,22/11/2017 19:29,7.2,306, Missing Authentication for Critical Function,nan
CVE-2017-8155,11/12/2017 18:34,22/11/2017 19:29,7.2,306, Missing Authentication for Critical Function,nan
CVE-2017-8152,11/12/2017 18:29,22/11/2017 19:29,4.9,358, Improperly Implemented Security Check for Standard,nan
CVE-2017-8151,11/12/2017 18:07,22/11/2017 19:29,7.2,287, Improper Authentication,nan
CVE-2017-8146,11/12/2017 18:07,22/11/2017 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-8145,11/12/2017 18:06,22/11/2017 19:29,4.3,20, Improper Input Validation,nan
CVE-2017-8143,11/12/2017 18:06,22/11/2017 19:29,7.1,20, Improper Input Validation,nan
CVE-2017-8142,11/12/2017 18:05,22/11/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-8141,11/12/2017 18:05,22/11/2017 19:29,9.3,415, Double Free,nan
CVE-2017-8140,11/12/2017 17:59,22/11/2017 19:29,9.3,415, Double Free,nan
CVE-2017-2738,11/12/2017 17:47,22/11/2017 19:29,7.5,287, Improper Authentication,nan
CVE-2017-2737,11/12/2017 17:46,22/11/2017 19:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-2736,11/12/2017 17:44,22/11/2017 19:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-2735,11/12/2017 17:37,22/11/2017 19:29,5.8,749, Exposed Dangerous Method or Function,nan
CVE-2017-2731,11/12/2017 17:35,22/11/2017 19:29,7.1,20, Improper Input Validation,nan
CVE-2017-2734,11/12/2017 17:34,22/11/2017 19:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-2733,11/12/2017 17:32,22/11/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-2730,11/12/2017 17:30,22/11/2017 19:29,2.9,200, Information Exposure,nan
CVE-2017-2729,11/12/2017 17:15,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16899,11/12/2017 17:08,20/11/2017 18:29,5.8,129, Improper Validation of Array Index,nan
CVE-2017-2694,11/12/2017 17:06,22/11/2017 19:29,4.3,275, Permission Issues,nan
CVE-2017-2698,11/12/2017 17:03,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2706,11/12/2017 17:01,22/11/2017 19:29,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2715,11/12/2017 16:55,22/11/2017 19:29,2.1,200, Information Exposure,nan
CVE-2017-2716,11/12/2017 16:53,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2717,11/12/2017 16:51,22/11/2017 19:29,3.3,190, Integer Overflow or Wraparound,nan
CVE-2017-16934,11/12/2017 15:17,24/11/2017 7:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-13766,11/12/2017 2:29,30/08/2017 9:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-7555,9/12/2017 2:29,17/08/2017 19:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5122,9/12/2017 2:29,27/10/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5121,9/12/2017 2:29,27/10/2017 5:29,6.8,20, Improper Input Validation,nan
CVE-2017-1000253,9/12/2017 2:29,5/10/2017 1:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10173,9/12/2017 2:29,1/02/2017 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0773,9/12/2017 2:29,17/02/2016 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0739,9/12/2017 2:29,13/04/2016 17:59,4.3,200, Information Exposure,nan
CVE-2015-4020,9/12/2017 2:29,25/08/2015 17:59,4.3,20, Improper Input Validation,nan
CVE-2014-9130,9/12/2017 2:29,8/12/2014 16:59,5.0,20, Improper Input Validation,nan
CVE-2014-6272,9/12/2017 2:29,24/08/2015 14:59,7.5,189, Numeric Errors,nan
CVE-2014-0226,9/12/2017 2:29,20/07/2014 11:12,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0118,9/12/2017 2:29,20/07/2014 11:12,4.3,399, Resource Management Errors,nan
CVE-2013-4363,9/12/2017 2:29,17/10/2013 23:55,4.3,310, Cryptographic Issues,nan
CVE-2013-0269,9/12/2017 2:29,13/02/2013 1:55,7.5,20, Improper Input Validation,nan
CVE-2010-0156,9/12/2017 2:29,3/03/2010 19:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-3564,9/12/2017 2:29,6/10/2009 17:30,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2017-2714,8/12/2017 19:14,22/11/2017 19:29,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2719,8/12/2017 19:13,22/11/2017 19:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8188,8/12/2017 19:06,22/11/2017 19:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8189,8/12/2017 19:05,22/11/2017 19:29,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8163,8/12/2017 19:05,22/11/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-8190,8/12/2017 19:04,22/11/2017 19:29,4.6,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-8162,8/12/2017 19:03,22/11/2017 19:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8183,8/12/2017 19:02,22/11/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-8184,8/12/2017 19:01,22/11/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8179,8/12/2017 19:01,22/11/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8181,8/12/2017 18:59,22/11/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8180,8/12/2017 18:59,22/11/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2725,8/12/2017 18:58,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2726,8/12/2017 18:53,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2724,8/12/2017 18:52,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2712,8/12/2017 18:43,22/11/2017 19:29,5.0,417, Channel and Path Errors,nan
CVE-2017-8806,8/12/2017 18:42,13/11/2017 9:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-8213,8/12/2017 18:40,22/11/2017 19:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-2701,8/12/2017 18:38,22/11/2017 19:29,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-8193,8/12/2017 18:16,22/11/2017 19:29,7.7,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8195,8/12/2017 18:13,22/11/2017 19:29,6.5,287, Improper Authentication,nan
CVE-2017-8197,8/12/2017 18:01,22/11/2017 19:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8198,8/12/2017 18:00,22/11/2017 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10890,8/12/2017 17:13,17/11/2017 14:29,4.3,384, Session Fixation,nan
CVE-2017-16881,8/12/2017 15:46,18/11/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13701,8/12/2017 15:40,23/11/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-8170,8/12/2017 14:56,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8169,8/12/2017 14:55,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8150,8/12/2017 14:50,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8149,8/12/2017 14:50,22/11/2017 19:29,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8147,8/12/2017 14:47,22/11/2017 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-8139,8/12/2017 14:46,22/11/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8138,8/12/2017 14:45,22/11/2017 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8130,8/12/2017 13:05,22/11/2017 19:29,4.0,200, Information Exposure,nan
CVE-2017-8127,8/12/2017 13:05,22/11/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8121,8/12/2017 13:05,22/11/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-8118,8/12/2017 13:04,22/11/2017 19:29,2.1,200, Information Exposure,nan
CVE-2017-8125,8/12/2017 13:01,22/11/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7541,8/12/2017 2:29,25/07/2017 4:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3319,8/12/2017 2:29,27/01/2017 22:59,3.5,200, Information Exposure,nan
CVE-2017-3256,8/12/2017 2:29,27/01/2017 22:59,4.0,20, Improper Input Validation,nan
CVE-2017-11292,8/12/2017 2:29,22/10/2017 19:29,6.5,129, Improper Validation of Array Index,nan
CVE-2009-3742,7/12/2017 21:36,7/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3257,7/12/2017 21:36,18/09/2009 21:30,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2851,7/12/2017 21:36,18/08/2009 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5973,7/12/2017 21:34,10/12/2012 20:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0882,7/12/2017 21:33,27/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16955,7/12/2017 21:19,27/11/2017 10:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-0851,7/12/2017 21:11,16/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-0850,7/12/2017 21:11,16/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-0849,7/12/2017 21:11,16/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-0848,7/12/2017 21:11,16/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-0840,7/12/2017 21:07,16/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-0839,7/12/2017 21:07,16/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-8137,7/12/2017 21:04,22/11/2017 19:29,9.3,426, Untrusted Search Path,nan
CVE-2017-16946,7/12/2017 20:08,25/11/2017 18:29,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-2732,7/12/2017 19:46,22/11/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-2693,7/12/2017 18:58,22/11/2017 19:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2692,7/12/2017 18:56,22/11/2017 19:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-16566,7/12/2017 18:47,17/11/2017 23:29,10.0,287, Improper Authentication,nan
CVE-2017-16961,7/12/2017 18:41,27/11/2017 10:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15054,7/12/2017 18:28,27/11/2017 19:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-15051,7/12/2017 18:23,27/11/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11833,7/12/2017 17:28,15/11/2017 3:29,2.6,200, Information Exposure,nan
CVE-2017-11791,7/12/2017 17:28,15/11/2017 3:29,2.6,200, Information Exposure,nan
CVE-2017-1689,7/12/2017 16:57,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1688,7/12/2017 16:57,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1650,7/12/2017 16:57,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1607,7/12/2017 16:57,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1678,7/12/2017 16:56,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1593,7/12/2017 16:56,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1560,7/12/2017 16:55,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1461,7/12/2017 16:52,27/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8136,7/12/2017 16:42,22/11/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-8133,7/12/2017 16:34,22/11/2017 19:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-7736,7/12/2017 16:32,22/11/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16956,7/12/2017 16:11,27/11/2017 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14340,7/12/2017 2:29,15/09/2017 11:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-11499,7/12/2017 2:29,25/07/2017 13:29,5.0,20, Improper Input Validation,nan
CVE-2012-1328,7/12/2017 2:29,3/05/2012 23:55,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1327,7/12/2017 2:29,3/05/2012 20:55,6.1,284, Improper Access Control,nan
CVE-2012-1324,7/12/2017 2:29,3/05/2012 20:55,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-1113,7/12/2017 2:29,22/04/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0745,7/12/2017 2:29,4/05/2012 16:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-0672,7/12/2017 2:29,8/05/2012 10:25,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3285,7/12/2017 2:29,2/05/2012 10:09,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3283,7/12/2017 2:29,2/05/2012 10:09,5.0,20, Improper Input Validation,nan
CVE-2011-3081,7/12/2017 2:29,1/05/2012 10:12,10.0,399, Resource Management Errors,nan
CVE-2011-3080,7/12/2017 2:29,1/05/2012 10:12,7.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-3078,7/12/2017 2:29,1/05/2012 10:12,10.0,399, Resource Management Errors,nan
CVE-2011-3077,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3076,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3075,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3074,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3073,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3072,7/12/2017 2:29,5/04/2012 22:02,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3071,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3070,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3069,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3068,7/12/2017 2:29,5/04/2012 22:02,7.5,399, Resource Management Errors,nan
CVE-2011-3067,7/12/2017 2:29,5/04/2012 22:02,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3066,7/12/2017 2:29,5/04/2012 22:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8134,6/12/2017 15:19,22/11/2017 19:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8132,6/12/2017 15:16,22/11/2017 19:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8131,6/12/2017 15:06,22/11/2017 19:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8211,6/12/2017 14:59,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8210,6/12/2017 14:58,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8209,6/12/2017 14:57,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8208,6/12/2017 14:57,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8207,6/12/2017 14:57,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8212,6/12/2017 14:49,22/11/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15110,6/12/2017 14:27,20/11/2017 14:29,4.0,200, Information Exposure,nan
CVE-2017-8199,6/12/2017 14:11,22/11/2017 19:29,4.0,125, Out-of-bounds Read,nan
CVE-2017-8200,6/12/2017 14:10,22/11/2017 19:29,4.0,125, Out-of-bounds Read,nan
CVE-2017-8281,6/12/2017 2:29,21/09/2017 15:29,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8244,6/12/2017 2:29,12/05/2017 20:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1000380,6/12/2017 2:29,17/06/2017 18:29,2.1,200, Information Exposure,nan
CVE-2016-5341,6/12/2017 2:29,6/12/2016 11:59,7.1,284, Improper Access Control,nan
CVE-2012-2514,6/12/2017 2:29,15/05/2012 4:21,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1511,6/12/2017 2:29,16/03/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1499,6/12/2017 2:29,11/04/2012 10:39,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1464,6/12/2017 2:29,19/03/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-1455,6/12/2017 2:29,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1447,6/12/2017 2:29,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0403,6/12/2017 2:29,20/03/2012 15:55,6.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0402,6/12/2017 2:29,20/03/2012 15:55,9.3,255, Credentials Management,nan
CVE-2012-0401,6/12/2017 2:29,20/03/2012 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0400,6/12/2017 2:29,20/03/2012 15:55,7.9,287, Improper Authentication,nan
CVE-2012-0399,6/12/2017 2:29,20/03/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0047,6/12/2017 2:29,23/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5056,6/12/2017 2:29,8/01/2012 0:55,2.1,20, Improper Input Validation,nan
CVE-2011-4863,6/12/2017 2:29,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4773,6/12/2017 2:29,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3063,6/12/2017 2:29,30/03/2012 22:55,10.0,20, Improper Input Validation,nan
CVE-2017-2718,5/12/2017 17:03,22/11/2017 19:29,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-1000209,5/12/2017 14:34,17/11/2017 2:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9806,5/12/2017 13:23,20/11/2017 17:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-16896,5/12/2017 13:15,20/11/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16869,5/12/2017 13:09,17/11/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11832,5/12/2017 12:40,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-11880,5/12/2017 12:34,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-16919,5/12/2017 12:07,21/11/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8368,5/12/2017 2:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2271,5/12/2017 2:29,21/05/2012 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2010,5/12/2017 2:29,18/05/2012 20:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1247,5/12/2017 2:29,15/05/2012 20:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1246,5/12/2017 2:29,15/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0840,5/12/2017 2:29,10/02/2012 19:55,5.0,20, Improper Input Validation,nan
CVE-2012-0780,5/12/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0778,5/12/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0676,5/12/2017 2:29,11/05/2012 3:49,5.0,20, Improper Input Validation,nan
CVE-2012-0665,5/12/2017 2:29,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0661,5/12/2017 2:29,11/05/2012 3:49,6.8,399, Resource Management Errors,nan
CVE-2012-0656,5/12/2017 2:29,11/05/2012 3:49,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-0655,5/12/2017 2:29,11/05/2012 3:49,6.4,310, Cryptographic Issues,nan
CVE-2012-0654,5/12/2017 2:29,11/05/2012 3:49,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0652,5/12/2017 2:29,11/05/2012 3:49,4.9,200, Information Exposure,nan
CVE-2012-0651,5/12/2017 2:29,11/05/2012 3:49,5.0,200, Information Exposure,nan
CVE-2012-0649,5/12/2017 2:29,11/05/2012 3:49,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-0299,5/12/2017 2:29,21/05/2012 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0298,5/12/2017 2:29,21/05/2012 20:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-0297,5/12/2017 2:29,21/05/2012 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3099,5/12/2017 2:29,16/05/2012 0:55,10.0,399, Resource Management Errors,nan
CVE-2011-3097,5/12/2017 2:29,16/05/2012 0:55,10.0,20, Improper Input Validation,nan
CVE-2017-14961,5/12/2017 1:20,15/11/2017 16:29,7.2,20, Improper Input Validation,nan
CVE-2014-3150,5/12/2017 1:01,15/11/2017 18:29,9.0,254, 7PK – Security Features,nan
CVE-2017-8807,5/12/2017 1:00,16/11/2017 2:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000247,4/12/2017 23:26,17/11/2017 4:29,5.0,20, Improper Input Validation,nan
CVE-2017-1000226,4/12/2017 21:33,17/11/2017 5:29,5.0,200, Information Exposure,nan
CVE-2017-1000191,4/12/2017 21:31,17/11/2017 17:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000248,4/12/2017 19:22,17/11/2017 4:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2008-5107,4/12/2017 18:59,17/11/2008 18:18,1.9,200, Information Exposure,nan
CVE-2006-2356,4/12/2017 18:58,15/05/2006 10:02,5.0,200, Information Exposure,nan
CVE-2017-15517,4/12/2017 18:03,17/11/2017 0:29,2.1,200, Information Exposure,nan
CVE-2017-16866,4/12/2017 16:53,16/11/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16877,4/12/2017 16:47,17/11/2017 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10886,4/12/2017 16:46,17/11/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13135,4/12/2017 16:45,16/11/2017 4:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-4927,4/12/2017 16:30,17/11/2017 14:29,5.0,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2017-10887,4/12/2017 16:28,17/11/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10888,4/12/2017 16:11,17/11/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-4936,4/12/2017 16:10,17/11/2017 14:29,6.9,125, Out-of-bounds Read,nan
CVE-2017-4937,4/12/2017 16:08,17/11/2017 14:29,6.9,125, Out-of-bounds Read,nan
CVE-2017-4938,4/12/2017 16:06,17/11/2017 14:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-16819,4/12/2017 14:48,17/11/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10889,4/12/2017 14:45,17/11/2017 14:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-4930,4/12/2017 14:26,16/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4931,4/12/2017 14:16,16/11/2017 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-14251,4/12/2017 2:29,11/09/2017 9:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-4939,3/12/2017 17:38,17/11/2017 21:29,6.8,426, Untrusted Search Path,nan
CVE-2017-4935,3/12/2017 17:36,17/11/2017 14:29,6.9,787, Out-of-bounds Write,nan
CVE-2017-4934,3/12/2017 17:36,17/11/2017 14:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16836,3/12/2017 17:35,16/11/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4929,3/12/2017 17:34,17/11/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16842,3/12/2017 17:34,16/11/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14077,3/12/2017 16:11,18/11/2017 1:29,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11768,3/12/2017 16:05,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-1000224,3/12/2017 15:58,17/11/2017 0:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000163,3/12/2017 15:54,17/11/2017 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7851,3/12/2017 13:54,15/11/2017 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16821,3/12/2017 13:51,15/11/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2334,3/12/2017 2:29,13/12/2016 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16758,2/12/2017 16:17,9/11/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15806,2/12/2017 13:00,15/11/2017 16:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-15516,2/12/2017 12:59,16/11/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1088,2/12/2017 12:57,16/11/2017 20:29,2.1,200, Information Exposure,nan
CVE-2017-1086,2/12/2017 12:57,16/11/2017 20:29,2.1,200, Information Exposure,nan
CVE-2017-1000230,2/12/2017 12:55,17/11/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-13136,2/12/2017 12:48,16/11/2017 4:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-16843,2/12/2017 12:47,16/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000169,2/12/2017 12:47,17/11/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2017-9095,2/12/2017 2:29,8/09/2017 10:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8585,2/12/2017 2:29,11/07/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-13744,2/12/2017 2:29,29/08/2017 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-13743,2/12/2017 2:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13742,2/12/2017 2:29,29/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13741,2/12/2017 2:29,29/08/2017 6:29,4.3,416, Use After Free,nan
CVE-2017-13740,2/12/2017 2:29,29/08/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13738,2/12/2017 2:29,29/08/2017 6:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-1000201,2/12/2017 2:29,17/11/2017 2:29,2.1,20, Improper Input Validation,nan
CVE-2017-1000200,2/12/2017 2:29,17/11/2017 2:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-1000199,2/12/2017 2:29,17/11/2017 2:29,5.0,200, Information Exposure,nan
CVE-2017-1000198,2/12/2017 2:29,17/11/2017 2:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5725,2/12/2017 2:29,19/01/2017 22:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14024,1/12/2017 18:35,13/11/2017 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11851,1/12/2017 18:29,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-11834,1/12/2017 18:27,15/11/2017 3:29,2.6,200, Information Exposure,nan
CVE-2017-11866,1/12/2017 18:14,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11863,1/12/2017 18:14,15/11/2017 3:29,4.3,20, Improper Input Validation,nan
CVE-2017-11858,1/12/2017 16:54,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11853,1/12/2017 16:24,15/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-11852,1/12/2017 16:06,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-11849,1/12/2017 16:04,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-16783,1/12/2017 15:56,10/11/2017 23:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-16801,1/12/2017 15:55,13/11/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11846,1/12/2017 15:34,15/11/2017 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11845,1/12/2017 15:26,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11844,1/12/2017 15:26,15/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-11848,1/12/2017 15:16,15/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-11842,1/12/2017 15:16,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-1000160,1/12/2017 15:14,17/11/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11839,1/12/2017 15:09,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000225,1/12/2017 15:09,17/11/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000223,1/12/2017 15:08,17/11/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11854,1/12/2017 14:47,15/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000206,1/12/2017 14:46,17/11/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000170,1/12/2017 14:18,17/11/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16880,1/12/2017 14:17,17/11/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11843,1/12/2017 14:12,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11841,1/12/2017 14:11,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11840,1/12/2017 14:10,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11838,1/12/2017 14:09,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9719,1/12/2017 14:08,16/11/2017 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9701,1/12/2017 14:08,16/11/2017 22:29,5.0,200, Information Exposure,nan
CVE-2017-11837,1/12/2017 14:08,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11836,1/12/2017 14:03,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16540,1/12/2017 2:29,4/11/2017 19:29,5.0,200, Information Exposure,nan
CVE-2012-3999,1/12/2017 2:29,12/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3397,1/12/2017 2:29,23/07/2012 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3396,1/12/2017 2:29,23/07/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3395,1/12/2017 2:29,23/07/2012 21:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3394,1/12/2017 2:29,23/07/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-3393,1/12/2017 2:29,23/07/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3392,1/12/2017 2:29,23/07/2012 21:55,5.5,16, Configuration,nan
CVE-2012-3391,1/12/2017 2:29,23/07/2012 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3390,1/12/2017 2:29,23/07/2012 21:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3389,1/12/2017 2:29,23/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3388,1/12/2017 2:29,23/07/2012 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3387,1/12/2017 2:29,23/07/2012 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3374,1/12/2017 2:29,7/07/2012 10:21,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3365,1/12/2017 2:29,20/07/2012 10:40,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0987,1/12/2017 2:29,6/10/2012 21:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16815,30/11/2017 19:50,14/11/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12738,30/11/2017 19:46,15/11/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11835,30/11/2017 19:44,15/11/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-11876,30/11/2017 19:40,15/11/2017 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11092,30/11/2017 19:34,16/11/2017 22:29,9.3,416, Use After Free,nan
CVE-2017-11091,30/11/2017 19:32,16/11/2017 22:29,4.6,416, Use After Free,nan
CVE-2017-11085,30/11/2017 19:28,16/11/2017 22:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-11058,30/11/2017 19:26,16/11/2017 22:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11032,30/11/2017 19:23,16/11/2017 22:29,4.6,415, Double Free,nan
CVE-2017-11029,30/11/2017 19:22,16/11/2017 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11028,30/11/2017 19:21,16/11/2017 22:29,5.0,200, Information Exposure,nan
CVE-2017-11027,30/11/2017 19:21,16/11/2017 22:29,4.6,20, Improper Input Validation,nan
CVE-2017-11878,30/11/2017 19:20,15/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11025,30/11/2017 19:16,16/11/2017 22:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1000240,30/11/2017 19:16,17/11/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11024,30/11/2017 19:15,16/11/2017 22:29,4.6,416, Use After Free,nan
CVE-2017-1000238,30/11/2017 19:15,17/11/2017 3:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-11022,30/11/2017 19:14,16/11/2017 22:29,5.0,200, Information Exposure,nan
CVE-2017-11018,30/11/2017 19:13,16/11/2017 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11850,30/11/2017 19:12,15/11/2017 3:29,1.9,200, Information Exposure,nan
CVE-2017-11831,30/11/2017 19:10,15/11/2017 3:29,4.7,200, Information Exposure,nan
CVE-2017-11017,30/11/2017 19:10,16/11/2017 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11827,30/11/2017 19:07,15/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9721,30/11/2017 19:05,16/11/2017 22:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12737,30/11/2017 18:55,15/11/2017 8:29,5.0,200, Information Exposure,nan
CVE-2017-9371,30/11/2017 18:53,14/11/2017 21:29,4.3,332, Insufficient Entropy in PRNG,nan
CVE-2017-9369,30/11/2017 18:52,14/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-3893,30/11/2017 18:31,14/11/2017 21:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3892,30/11/2017 18:29,14/11/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-16810,30/11/2017 18:02,14/11/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10267,30/11/2017 16:46,14/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-10266,30/11/2017 16:46,14/11/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-1000197,30/11/2017 16:43,17/11/2017 2:29,7.5,417, Channel and Path Errors,nan
CVE-2017-1000196,30/11/2017 16:40,17/11/2017 2:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1000194,30/11/2017 16:38,17/11/2017 2:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1000193,30/11/2017 16:26,17/11/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9085,30/11/2017 16:01,14/11/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1477,30/11/2017 15:49,13/11/2017 23:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1453,30/11/2017 15:49,13/11/2017 23:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-8793,30/11/2017 15:47,29/01/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11803,30/11/2017 15:36,15/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2014-5607,30/11/2017 15:26,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5606,30/11/2017 15:26,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2010-4876,30/11/2017 15:25,7/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9758,30/11/2017 15:17,10/11/2017 2:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-16762,30/11/2017 15:15,10/11/2017 9:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11873,30/11/2017 14:31,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2981,30/11/2017 14:01,20/09/2005 0:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11871,30/11/2017 13:32,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11870,30/11/2017 13:32,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11869,30/11/2017 13:21,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11862,30/11/2017 13:21,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11461,30/11/2017 13:21,10/11/2017 2:29,4.3,20, Improper Input Validation,nan
CVE-2014-6006,30/11/2017 12:54,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2017-11861,30/11/2017 12:51,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11856,30/11/2017 12:51,15/11/2017 3:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000228,30/11/2017 12:48,17/11/2017 3:29,10.0,20, Improper Input Validation,nan
CVE-2017-1000218,30/11/2017 12:47,17/11/2017 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000189,30/11/2017 11:58,17/11/2017 3:29,5.0,20, Improper Input Validation,nan
CVE-2017-1000188,30/11/2017 11:57,17/11/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000172,30/11/2017 11:55,17/11/2017 3:29,7.5,416, Use After Free,nan
CVE-2017-14318,30/11/2017 2:29,12/09/2017 15:29,4.9,476, NULL Pointer Dereference,nan
CVE-2015-3193,30/11/2017 2:29,6/12/2015 20:59,5.0,200, Information Exposure,nan
CVE-2013-2616,30/11/2017 2:29,20/03/2013 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5581,30/11/2017 2:29,4/01/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4496,30/11/2017 2:29,31/10/2012 16:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0025,30/11/2017 2:29,2/11/2012 18:55,6.8,399, Resource Management Errors,nan
CVE-2012-0023,30/11/2017 2:29,30/10/2012 19:55,9.3,399, Resource Management Errors,nan
CVE-2017-1000213,29/11/2017 19:38,17/11/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000210,29/11/2017 19:38,17/11/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000237,29/11/2017 19:36,17/11/2017 4:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-1000236,29/11/2017 19:35,17/11/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000235,29/11/2017 19:35,17/11/2017 4:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1000234,29/11/2017 19:35,17/11/2017 4:29,5.0,200, Information Exposure,nan
CVE-2017-1000232,29/11/2017 19:34,17/11/2017 4:29,7.5,415, Double Free,nan
CVE-2017-1000164,29/11/2017 19:17,17/11/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000129,29/11/2017 19:13,17/11/2017 5:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000128,29/11/2017 19:13,17/11/2017 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-1000127,29/11/2017 19:11,17/11/2017 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000126,29/11/2017 19:10,17/11/2017 22:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-16637,29/11/2017 19:06,6/11/2017 22:29,2.1,20, Improper Input Validation,nan
CVE-2017-14388,29/11/2017 19:01,13/11/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-9314,29/11/2017 18:53,13/11/2017 16:29,6.5,287, Improper Authentication,nan
CVE-2017-1000239,29/11/2017 18:34,17/11/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5201,29/11/2017 18:29,10/11/2017 2:29,2.7,200, Information Exposure,nan
CVE-2017-16782,29/11/2017 18:06,10/11/2017 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16561,29/11/2017 18:03,7/11/2017 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4000,29/11/2017 18:00,15/11/2017 16:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-15865,29/11/2017 17:38,8/11/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-1229,29/11/2017 17:28,13/11/2017 23:29,4.3,200, Information Exposure,nan
CVE-2017-10871,29/11/2017 17:18,13/11/2017 14:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6803,29/11/2017 17:15,13/11/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2016-0872,29/11/2017 15:56,7/11/2017 21:29,5.0,255, Credentials Management,nan
CVE-2008-7319,29/11/2017 15:49,7/11/2017 21:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-10875,29/11/2017 15:19,13/11/2017 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7739,29/11/2017 15:18,13/11/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10885,29/11/2017 15:18,13/11/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-16806,29/11/2017 15:16,13/11/2017 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-16765,29/11/2017 15:08,10/11/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11177,29/11/2017 15:07,6/11/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-16524,29/11/2017 14:57,6/11/2017 8:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-16636,29/11/2017 14:56,6/11/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16635,29/11/2017 14:56,6/11/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16802,29/11/2017 14:45,13/11/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16805,29/11/2017 14:43,13/11/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-13700,29/11/2017 14:40,17/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13703,29/11/2017 14:38,17/11/2017 18:29,7.8,20, Improper Input Validation,nan
CVE-2017-13702,29/11/2017 14:38,17/11/2017 18:29,5.0,200, Information Exposure,nan
CVE-2017-15526,29/11/2017 14:36,13/11/2017 22:29,5.2,476, NULL Pointer Dereference,nan
CVE-2017-16833,29/11/2017 14:32,15/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15186,29/11/2017 2:29,24/10/2017 17:29,4.3,415, Double Free,nan
CVE-2016-4118,29/11/2017 2:29,30/05/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6973,29/11/2017 2:29,14/12/2013 22:55,4.3,200, Information Exposure,nan
CVE-2013-6972,29/11/2017 2:29,14/12/2013 22:55,5.0,200, Information Exposure,nan
CVE-2013-6971,29/11/2017 2:29,14/12/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-6970,29/11/2017 2:29,14/12/2013 22:55,5.0,200, Information Exposure,nan
CVE-2013-6969,29/11/2017 2:29,14/12/2013 22:55,4.3,20, Improper Input Validation,nan
CVE-2013-6968,29/11/2017 2:29,14/12/2013 22:55,5.0,200, Information Exposure,nan
CVE-2013-6967,29/11/2017 2:29,14/12/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-6966,29/11/2017 2:29,17/12/2013 4:46,5.8,20, Improper Input Validation,nan
CVE-2013-6965,29/11/2017 2:29,14/12/2013 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6964,29/11/2017 2:29,14/12/2013 22:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6963,29/11/2017 2:29,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6962,29/11/2017 2:29,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6961,29/11/2017 2:29,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6960,29/11/2017 2:29,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6959,29/11/2017 2:29,14/12/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2013-4674,29/11/2017 2:29,31/07/2013 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3656,29/11/2017 2:29,20/07/2013 3:38,5.8,287, Improper Authentication,nan
CVE-2013-3445,29/11/2017 2:29,29/07/2013 13:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3436,29/11/2017 2:29,19/07/2013 14:36,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3235,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3234,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3232,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3231,29/11/2017 2:29,22/04/2013 11:41,4.7,200, Information Exposure,nan
CVE-2013-3229,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3228,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3227,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3225,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3224,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3223,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3222,29/11/2017 2:29,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3076,29/11/2017 2:29,22/04/2013 11:40,4.9,200, Information Exposure,nan
CVE-2013-1979,29/11/2017 2:29,3/05/2013 11:57,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0160,29/11/2017 2:29,18/02/2013 4:41,2.1,200, Information Exposure,nan
CVE-2012-4497,29/11/2017 2:29,2/11/2012 15:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12803,28/11/2017 20:53,10/11/2017 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12779,28/11/2017 19:33,10/11/2017 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-7878,28/11/2017 19:29,6/11/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3933,28/11/2017 19:26,8/11/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16673,28/11/2017 19:03,9/11/2017 4:29,2.9,200, Information Exposure,nan
CVE-2017-16641,28/11/2017 18:48,7/11/2017 20:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-15306,28/11/2017 18:48,6/11/2017 18:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-2922,28/11/2017 18:43,7/11/2017 16:29,7.5,416, Use After Free,nan
CVE-2017-2921,28/11/2017 18:41,7/11/2017 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-2895,28/11/2017 18:32,7/11/2017 16:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-2894,28/11/2017 18:32,7/11/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2893,28/11/2017 18:30,7/11/2017 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-2892,28/11/2017 18:26,7/11/2017 16:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-2891,28/11/2017 18:26,7/11/2017 16:29,7.5,416, Use After Free,nan
CVE-2017-2917,28/11/2017 18:21,7/11/2017 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2916,28/11/2017 18:18,7/11/2017 16:29,9.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-2914,28/11/2017 18:07,7/11/2017 16:29,6.8,287, Improper Authentication,nan
CVE-2017-2913,28/11/2017 18:03,7/11/2017 16:29,2.6,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2017-2912,28/11/2017 18:00,7/11/2017 16:29,2.6,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2017-2911,28/11/2017 17:59,7/11/2017 16:29,2.6,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2017-2898,28/11/2017 17:53,7/11/2017 16:29,8.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2864,28/11/2017 17:47,7/11/2017 16:29,7.5,287, Improper Authentication,nan
CVE-2017-12094,28/11/2017 17:44,7/11/2017 16:29,6.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-12083,28/11/2017 17:30,7/11/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-16568,28/11/2017 17:27,10/11/2017 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16661,28/11/2017 17:26,8/11/2017 5:29,4.0,200, Information Exposure,nan
CVE-2017-16567,28/11/2017 17:26,10/11/2017 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16634,28/11/2017 17:20,10/11/2017 2:29,7.5,287, Improper Authentication,nan
CVE-2017-16633,28/11/2017 17:15,10/11/2017 2:29,4.0,200, Information Exposure,nan
CVE-2017-8811,28/11/2017 17:11,15/11/2017 8:29,4.3,20, Improper Input Validation,nan
CVE-2017-8810,28/11/2017 16:58,15/11/2017 8:29,5.0,200, Information Exposure,nan
CVE-2017-8809,28/11/2017 16:56,15/11/2017 8:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-8808,28/11/2017 16:29,15/11/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8814,28/11/2017 16:24,15/11/2017 8:29,5.0,20, Improper Input Validation,nan
CVE-2017-8815,28/11/2017 16:23,15/11/2017 8:29,5.0,20, Improper Input Validation,nan
CVE-2016-6494,28/11/2017 13:04,3/10/2016 18:59,2.1,200, Information Exposure,nan
CVE-2017-13843,28/11/2017 13:03,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13836,28/11/2017 13:02,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13838,28/11/2017 13:01,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13841,28/11/2017 12:59,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13840,28/11/2017 12:59,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13842,28/11/2017 12:58,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13790,28/11/2017 12:58,13/11/2017 3:29,4.3,20, Improper Input Validation,nan
CVE-2017-13789,28/11/2017 12:57,13/11/2017 3:29,4.3,20, Improper Input Validation,nan
CVE-2017-7113,28/11/2017 12:42,13/11/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-13805,28/11/2017 12:41,13/11/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-2866,27/11/2017 23:32,7/11/2017 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2881,27/11/2017 23:31,7/11/2017 16:29,5.8,20, Improper Input Validation,nan
CVE-2017-2882,27/11/2017 23:30,7/11/2017 16:29,6.8,20, Improper Input Validation,nan
CVE-2017-2884,27/11/2017 23:26,7/11/2017 16:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-2890,27/11/2017 23:25,7/11/2017 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2889,27/11/2017 23:25,7/11/2017 16:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-16565,27/11/2017 23:21,6/11/2017 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-16564,27/11/2017 23:21,6/11/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16563,27/11/2017 23:21,6/11/2017 8:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1197,27/11/2017 23:18,30/10/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-16785,27/11/2017 23:09,10/11/2017 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16848,27/11/2017 23:08,16/11/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-13834,27/11/2017 18:43,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7132,27/11/2017 18:36,13/11/2017 3:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-13820,27/11/2017 18:31,13/11/2017 3:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13822,27/11/2017 18:21,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13821,27/11/2017 18:21,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13823,27/11/2017 18:20,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13825,27/11/2017 18:02,13/11/2017 3:29,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-13824,27/11/2017 18:02,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13829,27/11/2017 18:00,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13830,27/11/2017 17:58,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13831,27/11/2017 17:57,13/11/2017 3:29,5.8,200, Information Exposure,nan
CVE-2017-13819,27/11/2017 17:52,13/11/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13818,27/11/2017 17:51,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-13817,27/11/2017 17:48,13/11/2017 3:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-13816,27/11/2017 17:47,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13814,27/11/2017 17:46,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13813,27/11/2017 17:45,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13812,27/11/2017 17:44,13/11/2017 3:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13811,27/11/2017 17:41,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13810,27/11/2017 17:22,13/11/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-13809,27/11/2017 17:21,13/11/2017 3:29,6.8,20, Improper Input Validation,nan
CVE-2017-13808,27/11/2017 17:21,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13807,27/11/2017 16:34,13/11/2017 3:29,6.8,20, Improper Input Validation,nan
CVE-2017-13801,27/11/2017 16:28,13/11/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-13800,27/11/2017 16:28,13/11/2017 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13782,27/11/2017 16:26,13/11/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-1000383,27/11/2017 16:24,31/10/2017 20:29,2.1,200, Information Exposure,nan
CVE-2017-1000382,27/11/2017 16:24,31/10/2017 20:29,2.1,200, Information Exposure,nan
CVE-2017-16781,27/11/2017 16:04,10/11/2017 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16760,27/11/2017 16:04,10/11/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12802,27/11/2017 16:02,10/11/2017 2:29,4.3,20, Improper Input Validation,nan
CVE-2017-16513,27/11/2017 16:01,3/11/2017 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16539,27/11/2017 15:55,4/11/2017 17:29,4.3,200, Information Exposure,nan
CVE-2017-16761,27/11/2017 14:09,10/11/2017 9:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-16798,27/11/2017 13:56,12/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16799,27/11/2017 13:53,12/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16665,27/11/2017 13:32,8/11/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16796,27/11/2017 13:11,12/11/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16793,27/11/2017 12:59,12/11/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16711,27/11/2017 12:58,9/11/2017 18:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-1000174,27/11/2017 12:50,17/11/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16868,27/11/2017 12:49,17/11/2017 9:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-1000176,27/11/2017 12:42,17/11/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000185,27/11/2017 12:40,17/11/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000186,27/11/2017 12:37,17/11/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000187,27/11/2017 12:36,17/11/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6671,27/11/2017 12:15,13/06/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-15946,25/11/2017 2:29,28/10/2017 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1300,25/11/2017 2:29,1/11/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000242,25/11/2017 2:29,1/11/2017 13:29,2.1,200, Information Exposure,nan
CVE-2017-9299,24/11/2017 2:29,29/05/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9300,23/11/2017 2:29,29/05/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10699,23/11/2017 2:29,30/06/2017 13:29,7.5,787, Out-of-bounds Write,nan
CVE-2016-10089,23/11/2017 2:29,15/02/2017 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-16248,22/11/2017 20:20,1/11/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-14376,22/11/2017 20:17,1/11/2017 1:29,7.2,798, Use of Hard-coded Credentials,nan
CVE-2017-12801,22/11/2017 20:17,10/11/2017 2:29,4.3,20, Improper Input Validation,nan
CVE-2017-12800,22/11/2017 20:17,10/11/2017 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12783,22/11/2017 20:16,10/11/2017 2:29,4.3,20, Improper Input Validation,nan
CVE-2017-12782,22/11/2017 20:16,10/11/2017 2:29,4.3,20, Improper Input Validation,nan
CVE-2017-12781,22/11/2017 20:16,10/11/2017 2:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12780,22/11/2017 20:16,10/11/2017 2:29,4.3,416, Use After Free,nan
CVE-2017-16237,22/11/2017 20:13,3/11/2017 5:29,4.6,20, Improper Input Validation,nan
CVE-2010-2434,22/11/2017 20:10,25/06/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2872,22/11/2017 18:15,23/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14992,22/11/2017 17:54,1/11/2017 17:29,4.3,20, Improper Input Validation,nan
CVE-2017-10873,22/11/2017 17:50,2/11/2017 15:29,6.8,287, Improper Authentication,nan
CVE-2017-15039,22/11/2017 17:39,6/11/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-16569,22/11/2017 17:38,6/11/2017 8:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-16784,22/11/2017 17:25,10/11/2017 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3458,22/11/2017 17:25,4/08/2008 19:41,5.0,200, Information Exposure,nan
CVE-2008-3628,22/11/2017 17:23,11/09/2008 1:13,9.3,399, Resource Management Errors,nan
CVE-2009-2854,22/11/2017 17:17,18/08/2009 21:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-2762,22/11/2017 17:17,13/08/2009 16:30,7.5,255, Credentials Management,nan
CVE-2010-0227,22/11/2017 17:16,7/01/2010 19:30,4.6,255, Credentials Management,nan
CVE-2009-3891,22/11/2017 17:16,17/11/2009 18:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14250,22/11/2017 17:06,31/10/2017 18:29,6.8,20, Improper Input Validation,nan
CVE-2008-2702,22/11/2017 17:04,13/06/2008 19:41,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000171,22/11/2017 16:46,3/11/2017 18:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2009-3251,22/11/2017 16:06,18/09/2009 20:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4679,22/11/2017 16:05,7/12/2011 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1477,22/11/2017 16:05,21/06/2012 23:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-0701,22/11/2017 16:05,14/03/2011 19:55,4.0,200, Information Exposure,nan
CVE-2015-9245,22/11/2017 15:58,31/10/2017 7:29,7.5,284, Improper Access Control,nan
CVE-2012-6512,22/11/2017 15:39,24/01/2013 1:55,5.0,200, Information Exposure,nan
CVE-2012-6511,22/11/2017 15:39,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3935,22/11/2017 15:23,31/10/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-11508,22/11/2017 15:05,2/11/2017 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10870,22/11/2017 14:52,2/11/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3097,22/11/2017 14:51,8/09/2009 18:30,7.8,200, Information Exposure,nan
CVE-2008-6047,22/11/2017 14:49,4/02/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9938,22/11/2017 2:29,8/08/2017 0:29,5.0,20, Improper Input Validation,nan
CVE-2017-11115,22/11/2017 2:29,31/07/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2033,22/11/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2032,22/11/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2031,22/11/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2030,22/11/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2029,22/11/2017 2:29,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2028,22/11/2017 2:29,9/05/2012 4:36,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2009,22/11/2017 2:29,9/05/2012 10:33,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2008,22/11/2017 2:29,9/05/2012 10:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2007,22/11/2017 2:29,9/05/2012 10:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12625,21/11/2017 19:41,1/11/2017 13:29,4.0,200, Information Exposure,nan
CVE-2017-1000121,21/11/2017 19:22,1/11/2017 21:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-1000122,21/11/2017 19:18,1/11/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-14919,21/11/2017 19:13,30/10/2017 19:29,5.0,20, Improper Input Validation,nan
CVE-2014-0818,21/11/2017 18:55,22/02/2014 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0819,21/11/2017 18:53,22/02/2014 21:55,4.4,20, Improper Input Validation,nan
CVE-2017-14373,21/11/2017 18:46,31/10/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5181,21/11/2017 18:25,21/12/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2683,21/11/2017 18:22,23/10/2017 18:29,4.3,254, 7PK – Security Features,nan
CVE-2014-3741,21/11/2017 18:21,23/10/2017 18:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2013-7377,21/11/2017 18:21,23/10/2017 18:29,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2011-2684,21/11/2017 18:13,23/10/2017 18:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-3622,21/11/2017 18:11,23/10/2009 18:30,4.3,310, Cryptographic Issues,nan
CVE-2009-3890,21/11/2017 18:10,17/11/2009 18:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4536,21/11/2017 18:09,3/01/2011 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4257,21/11/2017 18:09,7/12/2010 13:53,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0700,21/11/2017 18:08,14/03/2011 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15990,21/11/2017 18:02,31/10/2017 7:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-3934,21/11/2017 17:54,31/10/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-14358,21/11/2017 17:49,31/10/2017 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2013-4366,21/11/2017 16:28,30/10/2017 19:29,7.5,20, Improper Input Validation,nan
CVE-2017-12796,21/11/2017 16:26,23/10/2017 4:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2017-14357,21/11/2017 15:55,31/10/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4449,21/11/2017 15:53,30/10/2017 19:29,7.5,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2007-4549,21/11/2017 15:44,28/08/2007 0:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0730,21/11/2017 15:42,12/02/2008 21:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7549,21/11/2017 15:31,30/10/2017 14:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-15950,21/11/2017 14:37,31/10/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10825,21/11/2017 14:29,2/11/2017 15:29,6.8,426, Untrusted Search Path,nan
CVE-2017-9841,21/11/2017 2:29,27/06/2017 17:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14797,21/11/2017 2:29,1/10/2017 1:29,7.9,326, Inadequate Encryption Strength,nan
CVE-2016-7434,21/11/2017 2:29,13/01/2017 16:59,5.0,20, Improper Input Validation,nan
CVE-2016-4954,21/11/2017 2:29,5/07/2016 1:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-4953,21/11/2017 2:29,5/07/2016 1:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2519,21/11/2017 2:29,30/01/2017 21:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2517,21/11/2017 2:29,30/01/2017 21:59,4.9,20, Improper Input Validation,nan
CVE-2016-2516,21/11/2017 2:29,30/01/2017 21:59,7.1,20, Improper Input Validation,nan
CVE-2016-1551,21/11/2017 2:29,27/01/2017 17:59,2.6,254, 7PK – Security Features,nan
CVE-2016-1286,21/11/2017 2:29,9/03/2016 23:59,5.0,20, Improper Input Validation,nan
CVE-2016-1285,21/11/2017 2:29,9/03/2016 23:59,4.3,20, Improper Input Validation,nan
CVE-2016-0798,21/11/2017 2:29,3/03/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2015-8140,21/11/2017 2:29,30/01/2017 21:59,5.8,284, Improper Access Control,nan
CVE-2015-8139,21/11/2017 2:29,30/01/2017 21:59,5.0,284, Improper Access Control,nan
CVE-2015-8138,21/11/2017 2:29,30/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2015-7975,21/11/2017 2:29,30/01/2017 21:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7973,21/11/2017 2:29,30/01/2017 21:59,5.8,254, 7PK – Security Features,nan
CVE-2015-3197,21/11/2017 2:29,15/02/2016 2:59,4.3,310, Cryptographic Issues,nan
CVE-2014-5108,20/11/2017 18:44,28/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5107,20/11/2017 18:41,28/07/2014 15:55,5.0,200, Information Exposure,nan
CVE-2014-2268,20/11/2017 18:27,16/11/2014 1:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2258,20/11/2017 14:40,9/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1340,19/11/2017 2:29,1/11/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-0059,19/11/2017 2:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0037,19/11/2017 2:29,26/02/2017 23:59,7.6,704, Incorrect Type Conversion or Cast,nan
CVE-2014-2542,19/11/2017 2:29,8/04/2014 23:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15988,18/11/2017 18:34,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15983,18/11/2017 18:19,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15982,18/11/2017 18:16,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15981,18/11/2017 18:16,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15986,18/11/2017 18:15,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15985,18/11/2017 18:04,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15979,18/11/2017 18:02,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15984,18/11/2017 17:52,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15987,18/11/2017 17:51,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15991,18/11/2017 17:50,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10699,18/11/2017 17:49,31/10/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4246,18/11/2017 17:45,30/10/2017 14:29,6.5,284, Improper Access Control,nan
CVE-2012-5358,18/11/2017 17:40,30/10/2017 14:29,7.5,19, Data Processing Errors,nan
CVE-2012-5357,18/11/2017 17:39,30/10/2017 14:29,7.5,19, Data Processing Errors,nan
CVE-2017-14356,18/11/2017 16:23,31/10/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3933,18/11/2017 16:22,31/10/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12460,18/11/2017 16:21,30/10/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3249,18/11/2017 16:17,30/10/2017 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16227,18/11/2017 16:16,29/10/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-1001001,18/11/2017 16:15,1/11/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5636,18/11/2017 16:08,30/10/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15920,18/11/2017 16:07,30/10/2017 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15921,18/11/2017 16:06,30/10/2017 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2013-4673,18/11/2017 2:29,1/08/2013 13:32,5.8,20, Improper Input Validation,nan
CVE-2013-3441,18/11/2017 2:29,23/07/2013 11:03,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3440,18/11/2017 2:29,23/07/2013 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3439,18/11/2017 2:29,23/07/2013 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2852,18/11/2017 2:29,7/06/2013 14:03,6.9,134, Use of Externally-Controlled Format String,nan
CVE-2013-2219,18/11/2017 2:29,31/07/2013 13:20,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1213,18/11/2017 2:29,24/02/2012 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15980,17/11/2017 18:22,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16230,17/11/2017 18:21,30/10/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3624,17/11/2017 18:20,30/10/2017 14:29,7.5,284, Improper Access Control,nan
CVE-2017-7732,17/11/2017 18:18,26/10/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7335,17/11/2017 18:17,26/10/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15976,17/11/2017 18:16,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15975,17/11/2017 18:14,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15960,17/11/2017 17:05,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15957,17/11/2017 17:05,29/10/2017 6:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-15964,17/11/2017 17:01,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15962,17/11/2017 17:01,29/10/2017 6:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-15961,17/11/2017 16:55,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15958,17/11/2017 16:54,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15956,17/11/2017 16:50,29/10/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-15812,17/11/2017 16:47,23/10/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1198,17/11/2017 16:33,30/10/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15989,17/11/2017 16:22,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15978,17/11/2017 16:21,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15977,17/11/2017 16:20,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15971,17/11/2017 16:17,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15687,17/11/2017 16:13,23/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15992,17/11/2017 16:08,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6839,17/11/2017 16:04,23/10/2017 18:29,2.1,20, Improper Input Validation,nan
CVE-2017-13772,17/11/2017 16:01,23/10/2017 18:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15993,17/11/2017 15:34,31/10/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16244,17/11/2017 15:01,1/11/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14359,17/11/2017 14:57,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4446,17/11/2017 14:55,6/10/2008 19:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3734,17/11/2017 14:09,24/10/2017 15:29,6.0,255, Credentials Management,nan
CVE-2017-16530,17/11/2017 13:52,4/11/2017 1:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-15967,17/11/2017 13:49,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15966,17/11/2017 13:49,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15965,17/11/2017 13:48,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15911,17/11/2017 13:47,26/10/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5331,17/11/2017 13:35,29/10/2017 6:29,4.9,19, Data Processing Errors,nan
CVE-2017-9675,17/11/2017 2:29,15/06/2017 19:29,7.8,20, Improper Input Validation,nan
CVE-2017-8239,17/11/2017 2:29,13/06/2017 20:29,4.3,200, Information Exposure,nan
CVE-2013-6044,17/11/2017 2:29,4/10/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2853,16/11/2017 20:30,18/08/2009 21:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-15928,16/11/2017 20:26,27/10/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-15968,16/11/2017 20:24,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15969,16/11/2017 20:23,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6162,16/11/2017 20:21,27/10/2017 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6161,16/11/2017 19:31,27/10/2017 14:29,2.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-6163,16/11/2017 19:18,27/10/2017 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1554,16/11/2017 19:11,1/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15882,16/11/2017 19:09,26/10/2017 5:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-5996,16/11/2017 19:00,26/10/2017 18:29,9.3,426, Untrusted Search Path,nan
CVE-2017-15970,16/11/2017 19:00,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4550,16/11/2017 18:55,28/08/2007 0:17,5.1,134, Use of Externally-Controlled Format String,nan
CVE-2017-1553,16/11/2017 18:54,1/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3255,16/11/2017 18:54,22/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1552,16/11/2017 18:52,1/11/2017 21:29,4.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1835,16/11/2017 18:45,27/10/2017 19:29,2.6,20, Improper Input Validation,nan
CVE-2017-15963,16/11/2017 18:23,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3604,16/11/2017 18:23,12/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15959,16/11/2017 18:22,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15974,16/11/2017 17:18,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-16000,16/11/2017 17:16,29/10/2017 17:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1290,16/11/2017 17:14,1/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1333,16/11/2017 17:13,1/11/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1148,16/11/2017 17:12,1/11/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1147,16/11/2017 16:58,1/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3048,16/11/2017 16:57,1/11/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15973,16/11/2017 16:39,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15972,16/11/2017 16:39,29/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6820,16/11/2017 2:29,11/01/2017 16:59,5.0,200, Information Exposure,nan
CVE-2016-5372,16/11/2017 2:29,7/02/2017 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3064,16/11/2017 2:29,1/09/2016 1:59,4.0,200, Information Exposure,nan
CVE-2016-3063,16/11/2017 2:29,7/02/2017 17:59,4.4,116, Improper Encoding or Escaping of Output,nan
CVE-2016-1894,16/11/2017 2:29,7/02/2017 17:59,9.3,284, Improper Access Control,nan
CVE-2016-1563,16/11/2017 2:29,7/04/2016 10:59,5.8,200, Information Exposure,nan
CVE-2015-8544,16/11/2017 2:29,7/02/2017 17:59,5.0,200, Information Exposure,nan
CVE-2015-8020,16/11/2017 2:29,11/01/2017 16:59,4.3,200, Information Exposure,nan
CVE-2015-7886,16/11/2017 2:29,18/01/2016 5:59,4.3,200, Information Exposure,nan
CVE-2015-7599,16/11/2017 2:29,7/02/2017 17:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2013-7091,16/11/2017 2:29,13/12/2013 18:07,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0141,16/11/2017 2:29,1/05/2013 12:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0140,16/11/2017 2:29,1/05/2013 12:00,7.9,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3744,15/11/2017 21:44,23/10/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4570,15/11/2017 21:44,23/10/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2402,15/11/2017 20:43,30/01/2017 22:59,4.3,295, Improper Certificate Validation,nan
CVE-2014-2023,15/11/2017 20:34,26/10/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4567,15/11/2017 18:17,23/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6165,15/11/2017 18:09,20/10/2017 15:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-6145,15/11/2017 18:06,20/10/2017 15:29,7.5,613, Insufficient Session Expiration,nan
CVE-2017-6144,15/11/2017 16:22,20/10/2017 15:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-6141,15/11/2017 16:22,20/10/2017 15:29,4.3,20, Improper Input Validation,nan
CVE-2017-15909,15/11/2017 15:43,26/10/2017 3:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-15947,15/11/2017 15:42,28/10/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14696,15/11/2017 15:38,24/10/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2014-1203,15/11/2017 15:37,24/10/2017 14:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-15907,15/11/2017 14:38,26/10/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6765,15/11/2017 14:32,7/08/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000149,15/11/2017 14:13,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000147,15/11/2017 14:13,3/11/2017 18:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000146,15/11/2017 14:12,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000144,15/11/2017 14:11,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000143,15/11/2017 14:11,3/11/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-1000140,15/11/2017 14:10,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000139,15/11/2017 14:09,3/11/2017 18:29,6.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-1000138,15/11/2017 14:09,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000137,15/11/2017 14:09,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000136,15/11/2017 13:58,3/11/2017 18:29,4.3,613, Insufficient Session Expiration,nan
CVE-2017-1000135,15/11/2017 13:56,3/11/2017 18:29,4.0,613, Insufficient Session Expiration,nan
CVE-2017-1000132,15/11/2017 13:41,3/11/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0115,15/11/2017 13:38,30/10/2017 16:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7882,15/11/2017 2:29,15/04/2017 16:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7856,15/11/2017 2:29,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-5673,15/11/2017 2:29,22/03/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12855,15/11/2017 2:29,15/08/2017 16:29,2.1,200, Information Exposure,nan
CVE-2016-10327,15/11/2017 2:29,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-0270,15/11/2017 2:29,8/02/2017 16:59,4.3,200, Information Exposure,nan
CVE-2015-7705,15/11/2017 2:29,7/08/2017 20:29,7.5,20, Improper Input Validation,nan
CVE-2015-4106,15/11/2017 2:29,3/06/2015 20:59,7.2,284, Improper Access Control,nan
CVE-2015-4105,15/11/2017 2:29,3/06/2015 20:59,4.9,399, Resource Management Errors,nan
CVE-2015-4104,15/11/2017 2:29,3/06/2015 20:59,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-4103,15/11/2017 2:29,3/06/2015 20:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-1792,15/11/2017 2:29,12/06/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-1791,15/11/2017 2:29,12/06/2015 19:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1789,15/11/2017 2:29,12/06/2015 19:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1788,15/11/2017 2:29,12/06/2015 19:59,4.3,399, Resource Management Errors,nan
CVE-2015-0292,15/11/2017 2:29,19/03/2015 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0287,15/11/2017 2:29,19/03/2015 22:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-0205,15/11/2017 2:29,9/01/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2014-8275,15/11/2017 2:29,9/01/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2014-3572,15/11/2017 2:29,9/01/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2014-3570,15/11/2017 2:29,9/01/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2014-3568,15/11/2017 2:29,19/10/2014 1:55,4.3,310, Cryptographic Issues,nan
CVE-2014-3567,15/11/2017 2:29,19/10/2014 1:55,7.1,399, Resource Management Errors,nan
CVE-2014-3509,15/11/2017 2:29,13/08/2014 23:55,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3508,15/11/2017 2:29,13/08/2014 23:55,4.3,200, Information Exposure,nan
CVE-2014-0791,15/11/2017 2:29,3/01/2014 18:54,6.8,189, Numeric Errors,nan
CVE-2014-0095,15/11/2017 2:29,31/05/2014 11:17,5.0,20, Improper Input Validation,nan
CVE-2013-3623,15/11/2017 2:29,10/12/2013 16:11,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3622,15/11/2017 2:29,10/12/2013 16:11,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3609,15/11/2017 2:29,8/09/2013 3:17,10.0,20, Improper Input Validation,nan
CVE-2013-3608,15/11/2017 2:29,8/09/2013 3:17,10.0,20, Improper Input Validation,nan
CVE-2013-3607,15/11/2017 2:29,8/09/2013 3:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15863,14/11/2017 22:08,24/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15885,14/11/2017 21:54,25/10/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15881,14/11/2017 21:53,24/10/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15879,14/11/2017 21:52,24/10/2017 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-14695,14/11/2017 21:49,24/10/2017 17:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15810,14/11/2017 21:28,23/10/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15867,14/11/2017 21:26,24/10/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15919,14/11/2017 21:21,26/10/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15880,14/11/2017 21:21,24/10/2017 22:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15933,14/11/2017 19:51,27/10/2017 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15643,14/11/2017 18:56,19/10/2017 22:29,7.6,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-15096,14/11/2017 18:45,26/10/2017 17:29,2.1,476, NULL Pointer Dereference,nan
CVE-2014-0691,14/11/2017 18:38,24/10/2017 14:29,5.0,331, Insufficient Entropy,nan
CVE-2012-4569,14/11/2017 18:37,23/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4568,14/11/2017 18:36,23/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8022,14/11/2017 16:22,18/10/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5090,14/11/2017 16:21,27/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-15949,14/11/2017 15:50,28/10/2017 0:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15948,14/11/2017 15:40,28/10/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15937,14/11/2017 15:30,27/10/2017 20:29,4.0,200, Information Exposure,nan
CVE-2017-15936,14/11/2017 15:24,27/10/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15935,14/11/2017 15:23,27/10/2017 20:29,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-15934,14/11/2017 15:15,27/10/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15878,14/11/2017 15:11,24/10/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15081,14/11/2017 15:10,24/10/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12705,14/11/2017 15:08,25/10/2017 7:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5699,14/11/2017 14:55,22/10/2017 18:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-15811,14/11/2017 14:53,23/10/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11103,14/11/2017 2:29,13/07/2017 13:29,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-4736,14/11/2017 2:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2027,14/11/2017 2:29,31/03/2015 14:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-15359,13/11/2017 17:42,18/10/2017 18:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1583,13/11/2017 17:41,24/10/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1375,13/11/2017 17:39,24/10/2017 21:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-1363,13/11/2017 17:37,25/10/2017 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1295,13/11/2017 17:36,25/10/2017 12:29,4.0,200, Information Exposure,nan
CVE-2017-1241,13/11/2017 17:35,25/10/2017 12:29,4.0,200, Information Exposure,nan
CVE-2017-1169,13/11/2017 17:33,25/10/2017 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1164,13/11/2017 17:33,25/10/2017 12:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3049,13/11/2017 17:32,24/10/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1935,13/11/2017 17:30,20/10/2017 18:29,7.5,19, Data Processing Errors,nan
CVE-2015-5173,13/11/2017 17:29,24/10/2017 17:29,6.8,200, Information Exposure,nan
CVE-2015-5172,13/11/2017 17:28,24/10/2017 17:29,7.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2015-5171,13/11/2017 17:22,24/10/2017 17:29,7.5,613, Insufficient Session Expiration,nan
CVE-2015-5170,13/11/2017 17:21,24/10/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6707,13/11/2017 17:06,19/10/2017 19:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2012-2947,13/11/2017 16:44,2/06/2012 15:55,2.6,284, Improper Access Control,nan
CVE-2016-1246,13/11/2017 16:43,5/10/2016 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4342,13/11/2017 16:40,20/07/2014 11:12,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15951,13/11/2017 16:30,28/10/2017 2:29,7.2,20, Improper Input Validation,nan
CVE-2016-5943,13/11/2017 16:30,26/09/2016 4:59,5.5,284, Improper Access Control,nan
CVE-2017-16357,13/11/2017 16:27,1/11/2017 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-16358,13/11/2017 16:26,1/11/2017 17:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-16359,13/11/2017 16:25,1/11/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2016-1000115,13/11/2017 16:17,21/10/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15273,13/11/2017 16:15,31/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14752,13/11/2017 16:15,31/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000150,13/11/2017 16:00,3/11/2017 18:29,6.5,384, Session Fixation,nan
CVE-2017-1000151,13/11/2017 15:53,3/11/2017 18:29,5.0,200, Information Exposure,nan
CVE-2017-1000154,13/11/2017 15:46,3/11/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2017-1000155,13/11/2017 15:43,3/11/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-1000157,13/11/2017 14:57,3/11/2017 18:29,3.5,200, Information Exposure,nan
CVE-2017-1000133,13/11/2017 13:06,3/11/2017 18:29,5.0,200, Information Exposure,nan
CVE-2017-13722,13/11/2017 2:29,11/10/2017 17:29,3.6,125, Out-of-bounds Read,nan
CVE-2017-13720,13/11/2017 2:29,11/10/2017 17:29,3.6,125, Out-of-bounds Read,nan
CVE-2017-13140,13/11/2017 2:29,23/08/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12876,13/11/2017 2:29,28/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10124,13/11/2017 2:29,9/01/2017 8:59,5.0,284, Improper Access Control,nan
CVE-2015-4170,12/11/2017 2:29,2/05/2016 10:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9048,11/11/2017 2:29,18/05/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9047,11/11/2017 2:29,18/05/2017 6:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5969,11/11/2017 2:29,11/04/2017 16:59,2.6,476, NULL Pointer Dereference,nan
CVE-2017-14354,11/11/2017 2:29,5/10/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14353,11/11/2017 2:29,5/10/2017 15:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14726,10/11/2017 2:29,23/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14725,10/11/2017 2:29,23/09/2017 20:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14724,10/11/2017 2:29,23/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14723,10/11/2017 2:29,23/09/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14722,10/11/2017 2:29,23/09/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14721,10/11/2017 2:29,23/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14720,10/11/2017 2:29,23/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14719,10/11/2017 2:29,23/09/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14718,10/11/2017 2:29,23/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12710,10/11/2017 2:29,30/08/2017 18:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5568,10/11/2017 2:29,25/10/2016 14:30,9.3,284, Improper Access Control,nan
CVE-2015-7871,10/11/2017 2:29,7/08/2017 20:29,7.5,287, Improper Authentication,nan
CVE-2015-7855,10/11/2017 2:29,7/08/2017 20:29,4.0,20, Improper Input Validation,nan
CVE-2015-7854,10/11/2017 2:29,7/08/2017 20:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7853,10/11/2017 2:29,7/08/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7850,10/11/2017 2:29,7/08/2017 20:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7849,10/11/2017 2:29,7/08/2017 20:29,6.5,416, Use After Free,nan
CVE-2015-7848,10/11/2017 2:29,6/01/2017 21:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2015-5477,10/11/2017 2:29,29/07/2015 14:59,7.8,19, Data Processing Errors,nan
CVE-2015-3963,10/11/2017 2:29,4/08/2015 1:59,5.8,20, Improper Input Validation,nan
CVE-2014-9449,10/11/2017 2:29,2/01/2015 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9322,10/11/2017 2:29,17/12/2014 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9296,10/11/2017 2:29,20/12/2014 2:59,5.0,17, DEPRECATED: Code,nan
CVE-2011-5174,10/11/2017 2:29,15/09/2012 17:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1871,10/11/2017 2:29,5/08/2010 13:23,6.8,20, Improper Input Validation,nan
CVE-2017-8994,9/11/2017 2:29,10/10/2017 21:29,7.5,20, Improper Input Validation,nan
CVE-2011-2461,9/11/2017 2:29,1/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9367,8/11/2017 18:45,16/10/2017 21:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9368,8/11/2017 18:44,16/10/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-2132,8/11/2017 18:29,20/10/2017 11:29,6.4,20, Improper Input Validation,nan
CVE-2017-2131,8/11/2017 18:27,20/10/2017 11:29,5.0,200, Information Exposure,nan
CVE-2017-15646,8/11/2017 18:19,19/10/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15578,8/11/2017 18:18,18/10/2017 2:29,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15579,8/11/2017 18:15,18/10/2017 2:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15539,8/11/2017 18:08,17/10/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9697,8/11/2017 18:05,17/10/2017 14:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2014-9678,8/11/2017 18:04,17/10/2017 14:29,4.3,20, Improper Input Validation,nan
CVE-2015-7806,8/11/2017 18:03,17/10/2017 16:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9733,8/11/2017 17:26,17/10/2017 14:29,7.5,20, Improper Input Validation,nan
CVE-2014-2664,8/11/2017 17:25,17/10/2017 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-2277,8/11/2017 17:23,17/10/2017 15:29,3.6,284, Improper Access Control,nan
CVE-2014-9487,8/11/2017 17:09,17/10/2017 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-3759,8/11/2017 17:07,17/10/2017 20:29,6.8,20, Improper Input Validation,nan
CVE-2011-5320,8/11/2017 17:05,18/10/2017 14:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8491,8/11/2017 17:04,18/10/2017 14:29,5.0,200, Information Exposure,nan
CVE-2015-4422,8/11/2017 17:02,19/10/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15805,8/11/2017 16:45,23/10/2017 8:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1023,8/11/2017 16:40,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12628,8/11/2017 16:29,20/10/2017 15:29,7.2,502, Deserialization of Untrusted Data,nan
CVE-2017-8805,8/11/2017 16:26,17/10/2017 18:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15650,8/11/2017 16:21,19/10/2017 23:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9489,8/11/2017 16:20,17/10/2017 14:29,6.5,284, Improper Access Control,nan
CVE-2015-3229,8/11/2017 16:18,16/10/2017 18:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-7242,8/11/2017 16:02,18/10/2017 14:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-15583,8/11/2017 15:57,18/10/2017 8:29,5.0,200, Information Exposure,nan
CVE-2017-9530,8/11/2017 15:54,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2274,8/11/2017 15:54,22/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5164,8/11/2017 15:53,18/10/2017 16:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-11682,8/11/2017 15:49,27/07/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7943,8/11/2017 15:49,18/10/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-6273,8/11/2017 15:26,17/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14327,8/11/2017 14:40,23/10/2017 8:29,4.9,200, Information Exposure,nan
CVE-2013-6049,8/11/2017 14:40,20/10/2017 18:29,4.6,20, Improper Input Validation,nan
CVE-2017-15639,8/11/2017 13:50,19/10/2017 19:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-6033,8/11/2017 13:29,15/02/2017 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-13127,8/11/2017 13:27,20/10/2017 18:29,6.8,200, Information Exposure,nan
CVE-2017-10933,8/11/2017 13:20,19/10/2017 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3400,8/11/2017 13:03,18/10/2017 15:29,3.5,200, Information Exposure,nan
CVE-2016-9882,8/11/2017 12:58,13/01/2017 9:59,5.0,200, Information Exposure,nan
CVE-2016-6655,8/11/2017 12:58,13/06/2017 6:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8035,8/11/2017 12:57,25/07/2017 4:29,5.0,200, Information Exposure,nan
CVE-2017-8033,8/11/2017 12:57,25/07/2017 4:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8218,8/11/2017 12:57,13/06/2017 6:29,7.5,20, Improper Input Validation,nan
CVE-2016-6392,8/11/2017 12:57,5/10/2016 17:59,7.8,399, Resource Management Errors,nan
CVE-2017-6050,8/11/2017 2:29,21/06/2017 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2862,8/11/2017 2:29,5/09/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14032,8/11/2017 2:29,30/08/2017 20:29,6.8,287, Improper Authentication,nan
CVE-2017-11721,8/11/2017 2:29,3/08/2017 8:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000249,8/11/2017 2:29,11/09/2017 19:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4342,8/11/2017 2:29,17/06/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4171,8/11/2017 2:29,10/06/2015 18:59,2.6,200, Information Exposure,nan
CVE-2015-3113,8/11/2017 2:29,23/06/2015 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2754,8/11/2017 2:29,31/03/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-1572,8/11/2017 2:29,24/02/2015 15:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9095,8/11/2017 2:29,26/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5680,8/11/2017 2:29,6/04/2014 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15648,7/11/2017 20:42,19/10/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5227,7/11/2017 20:38,18/10/2017 20:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-7715,7/11/2017 20:36,18/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15644,7/11/2017 20:34,19/10/2017 22:29,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-15612,7/11/2017 20:34,19/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15645,7/11/2017 20:28,19/10/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2133,7/11/2017 20:24,20/10/2017 11:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15291,7/11/2017 20:20,20/10/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3659,7/11/2017 20:14,20/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2780,7/11/2017 20:13,16/10/2017 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-3702,7/11/2017 18:24,16/10/2017 15:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0029,7/11/2017 18:22,16/10/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15376,7/11/2017 18:21,16/10/2017 4:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-15362,7/11/2017 18:19,16/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15303,7/11/2017 18:18,16/10/2017 1:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-15363,7/11/2017 18:16,15/10/2017 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15304,7/11/2017 18:03,15/10/2017 3:29,7.5,384, Session Fixation,nan
CVE-2016-9097,7/11/2017 15:45,11/05/2017 14:30,8.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-15647,7/11/2017 15:02,19/10/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4421,7/11/2017 15:00,19/10/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5636,7/11/2017 13:52,19/10/2017 20:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-3709,7/11/2017 13:21,18/10/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15369,7/11/2017 13:20,16/10/2017 1:29,6.8,416, Use After Free,nan
CVE-2017-8024,7/11/2017 13:16,18/10/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3706,7/11/2017 13:15,18/10/2017 14:29,4.3,295, Improper Certificate Validation,nan
CVE-2014-7813,7/11/2017 13:13,18/10/2017 14:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2014-3164,7/11/2017 13:07,18/10/2017 14:29,5.0,476, NULL Pointer Dereference,nan
CVE-2015-6668,7/11/2017 13:05,19/10/2017 21:29,5.0,200, Information Exposure,nan
CVE-2015-5177,7/11/2017 13:01,22/10/2017 18:29,5.0,415, Double Free,nan
CVE-2017-9771,7/11/2017 2:29,21/06/2017 7:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-12671,7/11/2017 2:29,7/08/2017 21:29,4.3,416, Use After Free,nan
CVE-2017-11719,7/11/2017 2:29,28/07/2017 5:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11576,7/11/2017 2:29,23/07/2017 22:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11574,7/11/2017 2:29,23/07/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11571,7/11/2017 2:29,23/07/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11399,7/11/2017 2:29,17/07/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2015-7601,7/11/2017 2:29,29/09/2015 19:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7714,6/11/2017 19:18,18/10/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15383,6/11/2017 18:32,16/10/2017 17:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-15375,6/11/2017 18:28,16/10/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5376,6/11/2017 18:26,18/10/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14152,6/11/2017 2:29,5/09/2017 16:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14151,6/11/2017 2:29,5/09/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14041,6/11/2017 2:29,30/08/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14040,6/11/2017 2:29,30/08/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14039,6/11/2017 2:29,30/08/2017 22:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-0380,6/11/2017 2:29,18/09/2017 16:29,4.3,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-9118,6/11/2017 2:29,30/10/2016 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1628,6/11/2017 2:29,21/02/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10504,6/11/2017 2:29,30/08/2017 9:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10376,6/11/2017 2:29,28/05/2017 0:29,3.5,310, Cryptographic Issues,nan
CVE-2014-8517,6/11/2017 2:29,17/11/2014 16:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-15185,5/11/2017 23:21,9/10/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-5591,5/11/2017 23:18,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2014-9474,5/11/2017 23:16,10/10/2017 1:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7842,5/11/2017 23:14,10/10/2017 1:30,5.5,275, Permission Issues,nan
CVE-2017-14603,5/11/2017 23:03,10/10/2017 1:30,5.0,200, Information Exposure,nan
CVE-2017-14614,5/11/2017 23:01,10/10/2017 1:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14943,5/11/2017 22:55,10/10/2017 6:29,5.0,200, Information Exposure,nan
CVE-2017-13706,5/11/2017 22:43,10/10/2017 13:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-5639,5/11/2017 22:40,10/10/2017 16:29,5.8,295, Improper Certificate Validation,nan
CVE-2015-8239,5/11/2017 21:23,10/10/2017 16:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7503,5/11/2017 21:23,10/10/2017 16:29,5.0,320, Key Management Errors,nan
CVE-2015-6918,5/11/2017 21:18,10/10/2017 16:29,3.5,200, Information Exposure,nan
CVE-2017-12623,5/11/2017 21:11,10/10/2017 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1503,5/11/2017 21:10,10/10/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10514,5/11/2017 21:08,10/10/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2017-15236,5/11/2017 20:59,11/10/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-9372,5/11/2017 1:29,2/06/2017 14:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9359,5/11/2017 1:29,2/06/2017 5:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-14686,5/11/2017 1:29,22/09/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14685,5/11/2017 1:29,22/09/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10966,5/11/2017 1:29,7/07/2017 14:29,7.5,416, Use After Free,nan
CVE-2017-10965,5/11/2017 1:29,7/07/2017 14:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-9736,4/11/2017 1:29,17/06/2017 16:29,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-9605,4/11/2017 1:29,13/06/2017 19:29,4.9,200, Information Exposure,nan
CVE-2017-9433,4/11/2017 1:29,5/06/2017 3:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9144,4/11/2017 1:29,22/05/2017 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-9031,4/11/2017 1:29,17/05/2017 19:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8911,4/11/2017 1:29,12/05/2017 7:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-8366,4/11/2017 1:29,30/04/2017 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8313,4/11/2017 1:29,23/05/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-8310,4/11/2017 1:29,23/05/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-8295,4/11/2017 1:29,4/05/2017 14:29,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-8064,4/11/2017 1:29,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7976,4/11/2017 1:29,19/04/2017 17:59,5.8,190, Integer Overflow or Wraparound,nan
CVE-2017-7975,4/11/2017 1:29,19/04/2017 16:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-7885,4/11/2017 1:29,17/04/2017 0:59,5.8,190, Integer Overflow or Wraparound,nan
CVE-2017-7853,4/11/2017 1:29,13/04/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7692,4/11/2017 1:29,20/04/2017 14:59,9.0,20, Improper Input Validation,nan
CVE-2017-7606,4/11/2017 1:29,9/04/2017 14:59,4.3,20, Improper Input Validation,nan
CVE-2017-7487,4/11/2017 1:29,14/05/2017 22:29,7.2,416, Use After Free,nan
CVE-2017-7346,4/11/2017 1:29,30/03/2017 23:59,4.9,20, Improper Input Validation,nan
CVE-2017-7234,4/11/2017 1:29,4/04/2017 17:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7208,4/11/2017 1:29,21/03/2017 6:59,5.8,125, Out-of-bounds Read,nan
CVE-2017-7178,4/11/2017 1:29,18/03/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6887,4/11/2017 1:29,16/05/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6886,4/11/2017 1:29,16/05/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6839,4/11/2017 1:29,20/03/2017 16:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-6838,4/11/2017 1:29,20/03/2017 16:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-6837,4/11/2017 1:29,20/03/2017 16:59,4.3,20, Improper Input Validation,nan
CVE-2017-6836,4/11/2017 1:29,20/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6835,4/11/2017 1:29,20/03/2017 16:59,4.3,369, Divide By Zero,nan
CVE-2017-6834,4/11/2017 1:29,20/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6833,4/11/2017 1:29,20/03/2017 16:59,4.3,369, Divide By Zero,nan
CVE-2017-6832,4/11/2017 1:29,20/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6831,4/11/2017 1:29,20/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6830,4/11/2017 1:29,20/03/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6828,4/11/2017 1:29,15/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6827,4/11/2017 1:29,15/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6353,4/11/2017 1:29,1/03/2017 20:59,4.9,415, Double Free,nan
CVE-2017-6346,4/11/2017 1:29,1/03/2017 20:59,6.9,416, Use After Free,nan
CVE-2017-5991,4/11/2017 1:29,15/02/2017 6:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-5980,4/11/2017 1:29,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5979,4/11/2017 1:29,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5978,4/11/2017 1:29,1/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5976,4/11/2017 1:29,1/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5975,4/11/2017 1:29,1/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5974,4/11/2017 1:29,1/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5951,4/11/2017 1:29,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5946,4/11/2017 1:29,27/02/2017 7:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5896,4/11/2017 1:29,15/02/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5847,4/11/2017 1:29,9/02/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5846,4/11/2017 1:29,9/02/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5661,4/11/2017 1:29,18/04/2017 14:59,7.9,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5597,4/11/2017 1:29,25/01/2017 21:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-5511,4/11/2017 1:29,24/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5510,4/11/2017 1:29,24/03/2017 15:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-5508,4/11/2017 1:29,24/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5506,4/11/2017 1:29,24/03/2017 15:59,6.8,415, Double Free,nan
CVE-2017-5492,4/11/2017 1:29,15/01/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5490,4/11/2017 1:29,15/01/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5489,4/11/2017 1:29,15/01/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5488,4/11/2017 1:29,15/01/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5225,4/11/2017 1:29,12/01/2017 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2801,4/11/2017 1:29,24/05/2017 14:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-15596,4/11/2017 1:29,18/10/2017 8:29,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-14693,4/11/2017 1:29,22/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14578,4/11/2017 1:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14540,4/11/2017 1:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14539,4/11/2017 1:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14500,4/11/2017 1:29,17/09/2017 5:29,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14313,4/11/2017 1:29,12/09/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14225,4/11/2017 1:29,9/09/2017 8:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-14099,4/11/2017 1:29,2/09/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-12809,4/11/2017 1:29,23/08/2017 16:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-12425,4/11/2017 1:29,4/08/2017 9:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-10971,4/11/2017 1:29,6/07/2017 11:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10926,4/11/2017 1:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10925,4/11/2017 1:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10924,4/11/2017 1:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10922,4/11/2017 1:29,5/07/2017 1:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-10918,4/11/2017 1:29,5/07/2017 1:29,10.0,20, Improper Input Validation,nan
CVE-2017-10917,4/11/2017 1:29,5/07/2017 1:29,9.4,476, NULL Pointer Dereference,nan
CVE-2017-10916,4/11/2017 1:29,5/07/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-10915,4/11/2017 1:29,5/07/2017 1:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-10914,4/11/2017 1:29,5/07/2017 1:29,6.8,415, Double Free,nan
CVE-2017-10807,4/11/2017 1:29,4/07/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2016-9932,4/11/2017 1:29,26/01/2017 15:59,2.1,200, Information Exposure,nan
CVE-2016-9822,4/11/2017 1:29,1/03/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9821,4/11/2017 1:29,1/03/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9559,4/11/2017 1:29,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9538,4/11/2017 1:29,22/11/2016 19:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-9317,4/11/2017 1:29,26/01/2017 15:59,7.1,20, Improper Input Validation,nan
CVE-2016-9297,4/11/2017 1:29,18/01/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-9273,4/11/2017 1:29,18/01/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-9137,4/11/2017 1:29,4/01/2017 20:59,7.5,416, Use After Free,nan
CVE-2016-9014,4/11/2017 1:29,9/12/2016 20:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-9013,4/11/2017 1:29,9/12/2016 20:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-8882,4/11/2017 1:29,13/01/2017 16:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8714,4/11/2017 1:29,10/03/2017 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8707,4/11/2017 1:29,23/12/2016 22:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-8674,4/11/2017 1:29,15/02/2017 21:59,4.3,416, Use After Free,nan
CVE-2016-8670,4/11/2017 1:29,4/01/2017 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8405,4/11/2017 1:29,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8332,4/11/2017 1:29,28/10/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7997,4/11/2017 1:29,18/01/2017 17:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-7996,4/11/2017 1:29,18/01/2017 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7976,4/11/2017 1:29,7/08/2017 20:29,6.8,20, Improper Input Validation,nan
CVE-2016-7906,4/11/2017 1:29,18/01/2017 17:59,4.3,416, Use After Free,nan
CVE-2016-7799,4/11/2017 1:29,18/01/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7169,4/11/2017 1:29,5/01/2017 2:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7168,4/11/2017 1:29,5/01/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6912,4/11/2017 1:29,26/01/2017 15:59,7.5,415, Double Free,nan
CVE-2016-6911,4/11/2017 1:29,26/01/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6906,4/11/2017 1:29,15/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6787,4/11/2017 1:29,28/12/2016 7:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-6786,4/11/2017 1:29,28/12/2016 7:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-6635,4/11/2017 1:29,7/08/2016 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6634,4/11/2017 1:29,7/08/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6252,4/11/2017 1:29,17/02/2017 17:59,4.6,190, Integer Overflow or Wraparound,nan
CVE-2016-6223,4/11/2017 1:29,23/01/2017 21:59,6.4,189, Numeric Errors,nan
CVE-2016-5844,4/11/2017 1:29,21/09/2016 14:25,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-4809,4/11/2017 1:29,21/09/2016 14:25,5.0,20, Improper Input Validation,nan
CVE-2016-4333,4/11/2017 1:29,18/11/2016 20:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4332,4/11/2017 1:29,18/11/2016 20:59,6.9,20, Improper Input Validation,nan
CVE-2016-4331,4/11/2017 1:29,18/11/2016 20:59,6.9,787, Out-of-bounds Write,nan
CVE-2016-4330,4/11/2017 1:29,18/11/2016 20:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4302,4/11/2017 1:29,21/09/2016 14:25,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4300,4/11/2017 1:29,21/09/2016 14:25,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-4029,4/11/2017 1:29,7/08/2016 16:59,5.0,285, Improper Authorization,nan
CVE-2016-3624,4/11/2017 1:29,3/10/2016 16:09,5.0,787, Out-of-bounds Write,nan
CVE-2016-3622,4/11/2017 1:29,3/10/2016 16:09,4.3,369, Divide By Zero,nan
CVE-2016-2399,4/11/2017 1:29,30/01/2017 22:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-2316,4/11/2017 1:29,22/02/2016 15:59,7.1,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2016-1922,4/11/2017 1:29,29/12/2016 22:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-1714,4/11/2017 1:29,7/04/2016 19:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1564,4/11/2017 1:29,22/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10326,4/11/2017 1:29,13/04/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10325,4/11/2017 1:29,13/04/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10324,4/11/2017 1:29,13/04/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10270,4/11/2017 1:29,24/03/2017 19:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-10252,4/11/2017 1:29,14/03/2017 22:59,7.8,399, Resource Management Errors,nan
CVE-2016-10220,4/11/2017 1:29,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-10219,4/11/2017 1:29,3/04/2017 5:59,4.3,369, Divide By Zero,nan
CVE-2016-10189,4/11/2017 1:29,14/03/2017 14:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-10188,4/11/2017 1:29,14/03/2017 14:59,7.5,416, Use After Free,nan
CVE-2016-10166,4/11/2017 1:29,15/03/2017 15:59,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2016-10146,4/11/2017 1:29,24/03/2017 15:59,7.8,399, Resource Management Errors,nan
CVE-2016-10145,4/11/2017 1:29,24/03/2017 15:59,7.5,189, Numeric Errors,nan
CVE-2016-10144,4/11/2017 1:29,24/03/2017 15:59,7.5,284, Improper Access Control,nan
CVE-2016-10134,4/11/2017 1:29,17/02/2017 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10109,4/11/2017 1:29,23/02/2017 20:59,5.0,416, Use After Free,nan
CVE-2016-10095,4/11/2017 1:29,1/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10094,4/11/2017 1:29,1/03/2017 15:59,6.8,189, Numeric Errors,nan
CVE-2016-10093,4/11/2017 1:29,1/03/2017 15:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10092,4/11/2017 1:29,1/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10074,4/11/2017 1:29,30/12/2016 19:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-10062,4/11/2017 1:29,2/03/2017 21:59,4.3,388, 7PK – Errors,nan
CVE-2016-10026,4/11/2017 1:29,13/02/2017 18:59,5.0,284, Improper Access Control,nan
CVE-2016-10024,4/11/2017 1:29,26/01/2017 15:59,4.9,20, Improper Input Validation,nan
CVE-2016-10013,4/11/2017 1:29,26/01/2017 15:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-8933,4/11/2017 1:29,20/09/2016 14:15,4.3,190, Integer Overflow or Wraparound,nan
CVE-2015-8808,4/11/2017 1:29,13/07/2016 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8745,4/11/2017 1:29,29/12/2016 22:59,2.1,284, Improper Access Control,nan
CVE-2015-8744,4/11/2017 1:29,29/12/2016 22:59,2.1,20, Improper Input Validation,nan
CVE-2015-8743,4/11/2017 1:29,29/12/2016 22:59,3.6,787, Out-of-bounds Write,nan
CVE-2015-8709,4/11/2017 1:29,8/02/2016 3:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-8619,4/11/2017 1:29,13/04/2017 17:59,5.0,787, Out-of-bounds Write,nan
CVE-2015-8613,4/11/2017 1:29,11/04/2017 19:59,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8575,4/11/2017 1:29,8/02/2016 3:59,2.1,200, Information Exposure,nan
CVE-2015-8569,4/11/2017 1:29,28/12/2015 11:59,1.9,200, Information Exposure,nan
CVE-2015-8568,4/11/2017 1:29,11/04/2017 19:59,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8558,4/11/2017 1:29,23/05/2016 19:59,4.9,20, Improper Input Validation,nan
CVE-2015-8552,4/11/2017 1:29,13/04/2016 15:59,1.7,20, Improper Input Validation,nan
CVE-2015-8550,4/11/2017 1:29,14/04/2016 14:59,5.7,284, Improper Access Control,nan
CVE-2015-8540,4/11/2017 1:29,14/04/2016 14:59,9.3,189, Numeric Errors,nan
CVE-2015-8504,4/11/2017 1:29,11/04/2017 19:59,3.5,189, Numeric Errors,nan
CVE-2015-8472,4/11/2017 1:29,21/01/2016 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8365,4/11/2017 1:29,26/11/2015 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8345,4/11/2017 1:29,13/04/2017 17:59,2.1,399, Resource Management Errors,nan
CVE-2015-8272,4/11/2017 1:29,13/04/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8271,4/11/2017 1:29,13/04/2017 14:59,7.5,123, Write-what-where Condition,nan
CVE-2015-8270,4/11/2017 1:29,13/04/2017 14:59,5.0,476, NULL Pointer Dereference,nan
CVE-2015-8215,4/11/2017 1:29,16/11/2015 21:59,5.0,20, Improper Input Validation,nan
CVE-2015-7989,4/11/2017 1:29,22/05/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7945,4/11/2017 1:29,18/08/2017 17:29,5.0,200, Information Exposure,nan
CVE-2015-7944,4/11/2017 1:29,18/08/2017 17:29,5.0,399, Resource Management Errors,nan
CVE-2015-7312,4/11/2017 1:29,16/11/2015 11:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7295,4/11/2017 1:29,9/11/2015 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7182,4/11/2017 1:29,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7181,4/11/2017 1:29,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6833,4/11/2017 1:29,19/01/2016 5:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6500,4/11/2017 1:29,26/10/2015 14:59,7.5,399, Resource Management Errors,nan
CVE-2015-6360,4/11/2017 1:29,21/04/2016 10:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6252,4/11/2017 1:29,19/10/2015 10:59,2.1,399, Resource Management Errors,nan
CVE-2015-5953,4/11/2017 1:29,21/10/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5734,4/11/2017 1:29,9/11/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5732,4/11/2017 1:29,9/11/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5731,4/11/2017 1:29,9/11/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5715,4/11/2017 1:29,22/05/2016 1:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5714,4/11/2017 1:29,22/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5622,4/11/2017 1:29,3/08/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5590,4/11/2017 1:29,19/01/2016 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5589,4/11/2017 1:29,16/05/2016 10:59,10.0,20, Improper Input Validation,nan
CVE-2015-5225,4/11/2017 1:29,6/11/2015 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5156,4/11/2017 1:29,19/10/2015 10:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4454,4/11/2017 1:29,17/06/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3408,4/11/2017 1:29,19/05/2015 18:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-3407,4/11/2017 1:29,19/05/2015 18:59,5.0,284, Improper Access Control,nan
CVE-2015-3214,4/11/2017 1:29,31/08/2015 10:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2665,4/11/2017 1:29,17/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2213,4/11/2017 1:29,9/11/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9940,4/11/2017 1:29,2/05/2017 21:59,7.6,416, Use After Free,nan
CVE-2014-8628,4/11/2017 1:29,24/08/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2014-8088,4/11/2017 1:29,22/10/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2014-5270,4/11/2017 1:29,10/10/2014 1:55,2.1,200, Information Exposure,nan
CVE-2014-3640,4/11/2017 1:29,7/11/2014 19:55,2.1,476, NULL Pointer Dereference,nan
CVE-2014-3615,4/11/2017 1:29,1/11/2014 23:55,2.1,200, Information Exposure,nan
CVE-2014-2685,4/11/2017 1:29,4/09/2014 17:55,7.5,287, Improper Authentication,nan
CVE-2014-2684,4/11/2017 1:29,16/11/2014 0:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-0223,4/11/2017 1:29,4/11/2014 21:55,4.6,189, Numeric Errors,nan
CVE-2014-0222,4/11/2017 1:29,4/11/2014 21:55,7.5,189, Numeric Errors,nan
CVE-2014-0146,4/11/2017 1:29,10/08/2017 15:29,1.9,476, NULL Pointer Dereference,nan
CVE-2014-0145,4/11/2017 1:29,10/08/2017 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0142,4/11/2017 1:29,10/08/2017 15:29,2.1,369, Divide By Zero,nan
CVE-2017-5721,3/11/2017 17:54,11/10/2017 0:29,4.4,20, Improper Input Validation,nan
CVE-2013-6924,3/11/2017 17:44,11/10/2017 12:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8016,3/11/2017 17:19,11/10/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8017,3/11/2017 17:18,11/10/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2988,3/11/2017 17:17,10/10/2017 16:29,4.0,295, Improper Certificate Validation,nan
CVE-2008-7315,3/11/2017 17:15,10/10/2017 16:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8025,3/11/2017 17:13,11/10/2017 19:29,6.8,20, Improper Input Validation,nan
CVE-2017-15285,3/11/2017 16:53,12/10/2017 8:29,6.5,20, Improper Input Validation,nan
CVE-2017-10862,3/11/2017 16:48,12/10/2017 14:29,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-6358,3/11/2017 16:46,12/10/2017 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-12849,3/11/2017 16:45,12/10/2017 15:29,5.0,200, Information Exposure,nan
CVE-2016-5789,3/11/2017 16:31,13/10/2017 3:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5791,3/11/2017 16:30,13/10/2017 3:29,10.0,287, Improper Authentication,nan
CVE-2017-11776,3/11/2017 16:18,13/10/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-11813,3/11/2017 16:17,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11819,3/11/2017 16:15,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6815,3/11/2017 16:02,13/10/2017 14:29,4.0,255, Credentials Management,nan
CVE-2017-7911,3/11/2017 1:29,6/05/2017 0:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-5154,3/11/2017 1:29,13/02/2017 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5152,3/11/2017 1:29,13/02/2017 21:59,6.4,287, Improper Authentication,nan
CVE-2017-15276,3/11/2017 1:29,13/10/2017 16:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-15012,3/11/2017 1:29,13/10/2017 16:29,6.5,20, Improper Input Validation,nan
CVE-2016-8863,3/11/2017 1:29,7/03/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6255,3/11/2017 1:29,7/03/2017 16:59,5.0,284, Improper Access Control,nan
CVE-2016-4472,3/11/2017 1:29,30/06/2016 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4359,3/11/2017 1:29,8/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3737,3/11/2017 1:29,2/08/2016 14:59,9.0,20, Improper Input Validation,nan
CVE-2016-10401,3/11/2017 1:29,25/07/2017 18:29,9.0,255, Credentials Management,nan
CVE-2016-1000000,3/11/2017 1:29,6/10/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0287,3/11/2017 1:29,8/07/2016 1:59,2.1,254, 7PK – Security Features,nan
CVE-2015-1283,3/11/2017 1:29,23/07/2015 0:59,6.8,189, Numeric Errors,nan
CVE-2012-5960,3/11/2017 1:29,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5959,3/11/2017 1:29,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5958,3/11/2017 1:29,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14971,2/11/2017 16:44,9/10/2017 5:29,4.3,200, Information Exposure,nan
CVE-2017-14498,2/11/2017 16:39,15/09/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12620,2/11/2017 16:39,3/10/2017 1:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1541,2/11/2017 16:22,4/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-1000085,2/11/2017 16:06,5/10/2017 1:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000087,2/11/2017 15:17,5/10/2017 1:29,4.0,200, Information Exposure,nan
CVE-2017-1000088,2/11/2017 15:08,5/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000090,2/11/2017 14:58,5/10/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15932,2/11/2017 1:29,27/10/2017 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-15931,2/11/2017 1:29,27/10/2017 18:29,6.8,125, Out-of-bounds Read,nan
CVE-2011-4343,2/11/2017 1:29,8/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1000099,1/11/2017 19:23,5/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-1000103,1/11/2017 19:16,5/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000102,1/11/2017 19:08,5/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000108,1/11/2017 13:54,5/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-15056,1/11/2017 12:56,6/10/2017 7:29,6.8,476, NULL Pointer Dereference,nan
CVE-2015-1206,1/11/2017 12:52,6/10/2017 15:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2158,1/11/2017 12:51,6/10/2017 15:29,6.8,189, Numeric Errors,nan
CVE-2015-5246,1/11/2017 12:50,6/10/2017 15:29,6.8,254, 7PK – Security Features,nan
CVE-2017-13069,1/11/2017 12:49,6/10/2017 18:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0296,1/11/2017 12:46,6/10/2017 22:29,1.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2673,1/11/2017 12:05,6/10/2017 22:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7687,1/11/2017 11:50,16/10/2017 18:29,7.5,416, Use After Free,nan
CVE-2015-4650,1/11/2017 11:48,16/10/2017 18:29,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0208,1/11/2017 11:47,16/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15364,1/11/2017 11:39,15/10/2017 19:29,4.3,415, Double Free,nan
CVE-2017-15360,1/11/2017 11:37,15/10/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6961,31/10/2017 22:09,18/10/2017 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2012-4380,31/10/2017 22:08,19/10/2017 21:29,5.0,284, Improper Access Control,nan
CVE-2012-4379,31/10/2017 22:08,19/10/2017 21:29,4.3,284, Improper Access Control,nan
CVE-2017-15651,31/10/2017 22:07,20/10/2017 0:29,6.5,20, Improper Input Validation,nan
CVE-2012-4382,31/10/2017 22:07,19/10/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-15378,31/10/2017 22:03,23/10/2017 8:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15380,31/10/2017 22:02,23/10/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15381,31/10/2017 21:58,23/10/2017 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15872,31/10/2017 21:53,24/10/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15874,31/10/2017 21:48,24/10/2017 20:29,4.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-1220,31/10/2017 21:41,26/10/2017 21:29,5.0,200, Information Exposure,nan
CVE-2012-4378,31/10/2017 21:41,26/10/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4377,31/10/2017 21:41,26/10/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1225,31/10/2017 21:40,26/10/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1222,31/10/2017 21:40,26/10/2017 21:29,6.4,287, Improper Authentication,nan
CVE-2017-1228,31/10/2017 21:39,26/10/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-1226,31/10/2017 21:39,26/10/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-1230,31/10/2017 21:37,26/10/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-1521,31/10/2017 21:26,26/10/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14182,31/10/2017 21:13,27/10/2017 13:29,4.0,20, Improper Input Validation,nan
CVE-2017-7733,31/10/2017 20:55,27/10/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000058,31/10/2017 1:29,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4430,31/10/2017 1:29,4/07/2016 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6424,31/10/2017 1:29,18/01/2014 19:55,5.0,189, Numeric Errors,nan
CVE-2017-7203,29/10/2017 1:29,21/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6008,29/10/2017 1:29,13/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3222,29/10/2017 1:29,22/07/2017 20:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-3221,29/10/2017 1:29,22/07/2017 20:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5223,28/10/2017 1:29,16/01/2017 6:59,2.1,200, Information Exposure,nan
CVE-2014-3531,27/10/2017 18:55,18/10/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15214,27/10/2017 18:54,11/10/2017 1:32,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15213,27/10/2017 18:54,11/10/2017 1:32,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15215,27/10/2017 18:53,11/10/2017 1:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15216,27/10/2017 18:52,10/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14587,27/10/2017 18:51,11/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15384,27/10/2017 18:50,16/10/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15287,27/10/2017 18:45,12/10/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14973,27/10/2017 18:45,9/10/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15242,27/10/2017 18:28,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6521,27/10/2017 16:54,10/10/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7384,27/10/2017 16:51,10/10/2017 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-10197,27/10/2017 15:07,19/10/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-8703,27/10/2017 14:59,13/10/2017 13:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8693,27/10/2017 14:56,13/10/2017 13:29,2.1,200, Information Exposure,nan
CVE-2014-9677,27/10/2017 14:53,17/10/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15385,27/10/2017 14:49,16/10/2017 22:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6223,27/10/2017 14:39,13/10/2017 17:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1211,27/10/2017 14:38,24/10/2017 21:29,1.9,200, Information Exposure,nan
CVE-2017-1210,27/10/2017 14:28,24/10/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-15373,27/10/2017 14:22,16/10/2017 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15286,27/10/2017 14:18,12/10/2017 8:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-1209,27/10/2017 14:16,24/10/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14588,27/10/2017 14:15,11/10/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14372,27/10/2017 14:11,11/10/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14371,27/10/2017 14:10,11/10/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14370,27/10/2017 14:10,11/10/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7136,27/10/2017 13:53,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7135,27/10/2017 13:53,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7134,27/10/2017 13:52,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7137,27/10/2017 13:49,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7131,27/10/2017 13:43,23/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-1218,27/10/2017 1:29,19/07/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2232,27/10/2017 1:29,23/10/2017 13:29,5.0,284, Improper Access Control,nan
CVE-2017-7148,26/10/2017 18:23,23/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-7144,26/10/2017 18:23,23/10/2017 1:29,4.3,275, Permission Issues,nan
CVE-2017-7145,26/10/2017 18:22,23/10/2017 1:29,5.0,275, Permission Issues,nan
CVE-2017-7139,26/10/2017 18:20,23/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-7138,26/10/2017 18:20,23/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-7142,26/10/2017 18:19,23/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-7141,26/10/2017 18:19,23/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-7140,26/10/2017 18:19,23/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-15220,26/10/2017 16:23,11/10/2017 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9263,26/10/2017 16:22,12/10/2017 16:29,2.6,20, Improper Input Validation,nan
CVE-2015-7778,26/10/2017 15:42,10/10/2017 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-15284,26/10/2017 15:35,12/10/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15278,26/10/2017 15:34,12/10/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7118,26/10/2017 15:01,23/10/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-7106,26/10/2017 14:42,23/10/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-10332,26/10/2017 13:47,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10331,26/10/2017 13:46,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-7088,26/10/2017 13:14,23/10/2017 1:29,7.1,275, Permission Issues,nan
CVE-2017-7085,26/10/2017 12:57,23/10/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-7082,26/10/2017 12:54,23/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-7077,26/10/2017 12:50,23/10/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7076,26/10/2017 12:46,23/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7074,26/10/2017 12:32,23/10/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-7072,26/10/2017 12:31,23/10/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-12477,26/10/2017 1:29,7/08/2017 15:29,10.0,287, Improper Authentication,nan
CVE-2017-7121,25/10/2017 20:12,23/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2014-8621,25/10/2017 20:12,16/10/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7097,25/10/2017 20:10,23/10/2017 1:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8087,25/10/2017 20:07,16/10/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7119,25/10/2017 20:05,23/10/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-1301,25/10/2017 20:03,5/10/2017 17:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-8937,25/10/2017 20:01,5/10/2017 17:29,5.0,287, Improper Authentication,nan
CVE-2017-1522,25/10/2017 19:52,5/10/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9148,25/10/2017 19:45,16/10/2017 15:29,7.5,284, Improper Access Control,nan
CVE-2014-9147,25/10/2017 19:44,16/10/2017 15:29,5.0,200, Information Exposure,nan
CVE-2017-15305,25/10/2017 19:42,15/10/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7126,25/10/2017 19:39,23/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-7125,25/10/2017 19:39,23/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-7124,25/10/2017 19:39,23/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-7123,25/10/2017 19:38,23/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-7122,25/10/2017 19:38,23/10/2017 1:29,7.5,20, Improper Input Validation,nan
CVE-2017-15280,25/10/2017 12:53,12/10/2017 8:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-15279,25/10/2017 12:53,12/10/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15219,25/10/2017 12:45,10/10/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15188,25/10/2017 12:43,11/10/2017 1:32,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10515,25/10/2017 12:08,18/10/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4334,25/10/2017 11:57,23/10/2017 18:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-15610,25/10/2017 11:52,19/10/2017 8:29,4.0,200, Information Exposure,nan
CVE-2017-15809,25/10/2017 8:24,23/10/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15808,25/10/2017 8:24,23/10/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2533,25/10/2017 1:29,22/05/2017 5:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-15240,24/10/2017 19:05,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15251,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15250,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15249,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15248,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15247,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15246,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15245,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15244,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15241,24/10/2017 19:04,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15254,24/10/2017 19:03,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15253,24/10/2017 19:03,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15252,24/10/2017 19:03,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10328,24/10/2017 19:03,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10324,24/10/2017 19:02,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10319,24/10/2017 19:01,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10318,24/10/2017 18:39,19/10/2017 17:29,4.3,200, Information Exposure,nan
CVE-2017-10317,24/10/2017 18:39,19/10/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-10316,24/10/2017 18:38,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-15802,24/10/2017 18:15,22/10/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15801,24/10/2017 18:15,22/10/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15803,24/10/2017 18:14,22/10/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15239,24/10/2017 17:36,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15256,24/10/2017 17:34,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15261,24/10/2017 17:33,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15260,24/10/2017 17:33,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15259,24/10/2017 17:33,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15258,24/10/2017 17:33,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15257,24/10/2017 17:33,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15263,24/10/2017 17:32,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15262,24/10/2017 17:32,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15243,24/10/2017 17:29,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10310,24/10/2017 17:00,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10300,24/10/2017 16:58,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10299,24/10/2017 16:58,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-10287,24/10/2017 16:53,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10280,24/10/2017 16:49,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10261,24/10/2017 16:34,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-10194,24/10/2017 16:19,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-15729,24/10/2017 15:12,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15735,24/10/2017 15:09,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15734,24/10/2017 15:09,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15733,24/10/2017 15:09,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15732,24/10/2017 15:09,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15731,24/10/2017 15:09,22/10/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15264,24/10/2017 15:01,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15255,24/10/2017 14:54,11/10/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15767,24/10/2017 14:48,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15766,24/10/2017 14:48,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15765,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15764,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15763,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15762,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15761,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15760,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15759,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15758,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15757,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15756,24/10/2017 14:47,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15755,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15754,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15753,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15752,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15751,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15750,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15749,24/10/2017 14:46,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15748,24/10/2017 14:45,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15747,24/10/2017 14:45,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15746,24/10/2017 14:45,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15745,24/10/2017 14:45,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15744,24/10/2017 14:44,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15743,24/10/2017 14:40,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15742,24/10/2017 14:40,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15741,24/10/2017 14:40,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15740,24/10/2017 14:39,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15739,24/10/2017 14:39,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15738,24/10/2017 14:39,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15737,24/10/2017 14:38,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15728,24/10/2017 14:37,22/10/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15768,24/10/2017 14:21,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15772,24/10/2017 14:14,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15774,24/10/2017 14:13,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15773,24/10/2017 14:13,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15778,24/10/2017 14:12,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15777,24/10/2017 14:12,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15776,24/10/2017 14:12,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15780,24/10/2017 14:11,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15779,24/10/2017 14:11,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15782,24/10/2017 14:10,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15781,24/10/2017 14:10,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15785,24/10/2017 14:09,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15784,24/10/2017 14:09,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15786,24/10/2017 14:08,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15789,24/10/2017 14:06,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15788,24/10/2017 14:06,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15787,24/10/2017 14:06,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15769,24/10/2017 13:51,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15783,24/10/2017 13:33,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15775,24/10/2017 13:32,22/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6460,24/10/2017 1:29,27/03/2017 17:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6459,24/10/2017 1:29,27/03/2017 17:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6458,24/10/2017 1:29,27/03/2017 17:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6455,24/10/2017 1:29,27/03/2017 17:59,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-6452,24/10/2017 1:29,27/03/2017 17:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6451,24/10/2017 1:29,27/03/2017 17:59,4.6,787, Out-of-bounds Write,nan
CVE-2017-14164,24/10/2017 1:29,6/09/2017 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12982,24/10/2017 1:29,21/08/2017 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000373,24/10/2017 1:29,19/06/2017 16:29,6.4,400, Uncontrolled Resource Consumption,nan
CVE-2016-9117,24/10/2017 1:29,30/10/2016 22:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9116,24/10/2017 1:29,30/10/2016 22:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9115,24/10/2017 1:29,30/10/2016 22:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9114,24/10/2017 1:29,30/10/2016 22:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9113,24/10/2017 1:29,30/10/2016 22:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9112,24/10/2017 1:29,29/10/2016 10:59,5.0,369, Divide By Zero,nan
CVE-2016-10507,24/10/2017 1:29,30/08/2017 9:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-10506,24/10/2017 1:29,30/08/2017 9:29,4.3,369, Divide By Zero,nan
CVE-2016-10505,24/10/2017 1:29,30/08/2017 9:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-2856,23/10/2017 22:02,10/10/2017 13:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10152,23/10/2017 21:59,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-10154,23/10/2017 21:58,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10164,23/10/2017 21:50,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-10259,23/10/2017 21:20,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-1538,23/10/2017 21:16,10/10/2017 21:29,4.0,200, Information Exposure,nan
CVE-2015-1429,23/10/2017 18:06,6/10/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10037,23/10/2017 16:48,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10337,23/10/2017 16:45,19/10/2017 17:29,5.5,200, Information Exposure,nan
CVE-2017-10335,23/10/2017 16:44,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10334,23/10/2017 16:44,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-10339,23/10/2017 16:41,19/10/2017 17:29,4.3,200, Information Exposure,nan
CVE-2017-10343,23/10/2017 16:40,19/10/2017 17:29,4.3,200, Information Exposure,nan
CVE-2017-10351,23/10/2017 16:39,19/10/2017 17:29,2.1,200, Information Exposure,nan
CVE-2015-7843,23/10/2017 13:03,3/10/2017 1:29,4.0,254, 7PK – Security Features,nan
CVE-2015-7841,23/10/2017 12:57,3/10/2017 1:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-6806,23/10/2017 12:27,3/10/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7359,23/10/2017 12:22,3/10/2017 1:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-14995,23/10/2017 11:47,4/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8047,23/10/2017 11:18,4/10/2017 1:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14619,23/10/2017 1:29,20/09/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14618,23/10/2017 1:29,20/09/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10422,23/10/2017 1:29,19/10/2017 17:29,4.3,200, Information Exposure,nan
CVE-2017-10421,23/10/2017 1:29,19/10/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-10383,23/10/2017 1:29,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-10373,23/10/2017 1:29,19/10/2017 17:29,5.0,200, Information Exposure,nan
CVE-2016-4477,23/10/2017 1:29,9/05/2016 10:59,4.4,19, Data Processing Errors,nan
CVE-2016-4476,23/10/2017 1:29,9/05/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2017-11462,20/10/2017 17:43,13/09/2017 16:29,7.5,415, Double Free,nan
CVE-2017-11809,20/10/2017 16:59,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11808,20/10/2017 16:59,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11807,20/10/2017 16:59,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11805,20/10/2017 16:59,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11802,20/10/2017 16:59,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11812,20/10/2017 16:58,13/10/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11806,20/10/2017 16:58,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11799,20/10/2017 16:58,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11796,20/10/2017 16:58,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9272,20/10/2017 14:58,6/10/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-14980,20/10/2017 14:41,10/10/2017 1:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10513,20/10/2017 14:36,10/10/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15194,20/10/2017 14:29,11/10/2017 1:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10863,20/10/2017 14:27,12/10/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10864,20/10/2017 14:26,12/10/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-7352,20/10/2017 14:25,11/10/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10865,20/10/2017 14:24,12/10/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-11765,20/10/2017 13:48,13/10/2017 13:29,2.1,200, Information Exposure,nan
CVE-2017-11772,20/10/2017 13:37,13/10/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-11777,20/10/2017 13:27,13/10/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11775,20/10/2017 13:27,13/10/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11784,20/10/2017 13:07,13/10/2017 13:29,2.1,200, Information Exposure,nan
CVE-2017-11781,20/10/2017 13:03,13/10/2017 13:29,7.8,20, Improper Input Validation,nan
CVE-2017-11790,20/10/2017 13:02,13/10/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-11785,20/10/2017 13:00,13/10/2017 13:29,2.1,200, Information Exposure,nan
CVE-2017-11814,20/10/2017 12:56,13/10/2017 13:29,2.1,200, Information Exposure,nan
CVE-2017-11820,20/10/2017 12:55,13/10/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11800,20/10/2017 12:52,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11798,20/10/2017 12:52,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11794,20/10/2017 12:51,13/10/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-11821,20/10/2017 12:46,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11792,20/10/2017 12:46,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8717,20/10/2017 12:42,13/10/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8718,20/10/2017 12:41,13/10/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2381,20/10/2017 1:29,8/04/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2015-7183,20/10/2017 1:29,5/11/2015 5:59,7.5,189, Numeric Errors,nan
CVE-2015-0206,20/10/2017 1:29,9/01/2015 2:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4345,20/10/2017 1:29,14/08/2014 5:01,8.5,189, Numeric Errors,nan
CVE-2013-1903,20/10/2017 1:29,4/04/2013 17:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1900,20/10/2017 1:29,4/04/2013 17:55,8.5,189, Numeric Errors,nan
CVE-2013-0255,20/10/2017 1:29,13/02/2013 1:55,6.8,20, Improper Input Validation,nan
CVE-2013-0248,20/10/2017 1:29,15/03/2013 20:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2003-1418,20/10/2017 1:29,31/12/2003 5:00,4.3,200, Information Exposure,nan
CVE-2017-15212,19/10/2017 22:40,11/10/2017 1:32,4.0,200, Information Exposure,nan
CVE-2017-15210,19/10/2017 22:40,11/10/2017 1:32,4.0,200, Information Exposure,nan
CVE-2017-15205,19/10/2017 22:37,11/10/2017 1:32,4.0,200, Information Exposure,nan
CVE-2017-15198,19/10/2017 22:28,11/10/2017 1:32,4.0,200, Information Exposure,nan
CVE-2017-1000109,19/10/2017 20:52,5/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11801,19/10/2017 20:37,13/10/2017 13:29,7.6,200, Information Exposure,nan
CVE-2017-11797,19/10/2017 20:37,13/10/2017 13:29,7.6,200, Information Exposure,nan
CVE-2017-11804,19/10/2017 19:37,13/10/2017 13:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11051,19/10/2017 18:03,10/10/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-11050,19/10/2017 18:03,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11048,19/10/2017 18:03,10/10/2017 20:29,4.6,416, Use After Free,nan
CVE-2017-11046,19/10/2017 18:03,10/10/2017 20:29,4.6,787, Out-of-bounds Write,nan
CVE-2017-11053,19/10/2017 18:01,10/10/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11056,19/10/2017 18:00,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11059,19/10/2017 17:59,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11057,19/10/2017 17:59,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9683,19/10/2017 17:23,10/10/2017 20:29,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-11067,19/10/2017 17:23,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9687,19/10/2017 17:19,10/10/2017 20:29,4.6,415, Double Free,nan
CVE-2017-9686,19/10/2017 17:19,10/10/2017 20:29,4.6,415, Double Free,nan
CVE-2017-9697,19/10/2017 17:18,10/10/2017 20:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9706,19/10/2017 17:17,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9714,19/10/2017 17:16,10/10/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0326,19/10/2017 1:30,7/07/2017 14:29,4.3,200, Information Exposure,nan
CVE-2016-8449,19/10/2017 1:30,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8430,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8429,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8428,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8427,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8426,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8425,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8424,19/10/2017 1:30,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8400,19/10/2017 1:30,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8397,19/10/2017 1:30,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-6917,19/10/2017 1:30,24/04/2017 19:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6916,19/10/2017 1:30,24/04/2017 19:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-6915,19/10/2017 1:30,24/04/2017 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6789,19/10/2017 1:30,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6777,19/10/2017 1:30,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6776,19/10/2017 1:30,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6775,19/10/2017 1:30,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-3930,19/10/2017 1:30,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3873,19/10/2017 1:30,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3847,19/10/2017 1:30,5/08/2016 20:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3815,19/10/2017 1:30,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3814,19/10/2017 1:30,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3793,19/10/2017 1:30,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2491,19/10/2017 1:30,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2434,19/10/2017 1:30,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0834,19/10/2017 1:30,18/04/2016 0:59,10.0,20, Improper Input Validation,nan
CVE-2009-2649,19/10/2017 1:30,30/07/2009 19:30,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2009-0865,19/10/2017 1:30,10/03/2009 14:30,8.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0461,19/10/2017 1:30,10/02/2009 7:00,7.5,287, Improper Authentication,nan
CVE-2009-0460,19/10/2017 1:30,10/02/2009 7:00,7.5,287, Improper Authentication,nan
CVE-2009-0459,19/10/2017 1:30,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0458,19/10/2017 1:30,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0428,19/10/2017 1:30,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0427,19/10/2017 1:30,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0426,19/10/2017 1:30,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0333,19/10/2017 1:30,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0263,19/10/2017 1:30,23/01/2009 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0262,19/10/2017 1:30,23/01/2009 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0177,19/10/2017 1:30,20/01/2009 16:00,5.0,399, Resource Management Errors,nan
CVE-2009-0107,19/10/2017 1:30,9/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0106,19/10/2017 1:30,9/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6247,19/10/2017 1:30,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6246,19/10/2017 1:30,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6224,19/10/2017 1:30,20/02/2009 23:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6223,19/10/2017 1:30,20/02/2009 23:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6222,19/10/2017 1:30,20/02/2009 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6201,19/10/2017 1:30,20/02/2009 1:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6188,19/10/2017 1:30,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6187,19/10/2017 1:30,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6157,19/10/2017 1:30,17/02/2009 17:30,5.0,310, Cryptographic Issues,nan
CVE-2008-6150,19/10/2017 1:30,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6148,19/10/2017 1:30,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6012,19/10/2017 1:30,30/01/2009 18:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5968,19/10/2017 1:30,26/01/2009 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5967,19/10/2017 1:30,26/01/2009 20:30,7.5,287, Improper Authentication,nan
CVE-2008-5838,19/10/2017 1:30,5/01/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5654,19/10/2017 1:30,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5653,19/10/2017 1:30,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5651,19/10/2017 1:30,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5648,19/10/2017 1:30,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5629,19/10/2017 1:30,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5409,19/10/2017 1:30,10/12/2008 6:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5365,19/10/2017 1:30,8/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5271,19/10/2017 1:30,28/11/2008 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5178,19/10/2017 1:30,20/11/2008 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5069,19/10/2017 1:30,14/11/2008 18:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5058,19/10/2017 1:30,13/11/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5054,19/10/2017 1:30,13/11/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4902,19/10/2017 1:30,4/11/2008 0:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4901,19/10/2017 1:30,4/11/2008 0:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4894,19/10/2017 1:30,4/11/2008 0:58,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4455,19/10/2017 1:30,6/10/2008 23:25,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4091,19/10/2017 1:30,15/09/2008 17:12,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3322,19/10/2017 1:30,25/07/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3321,19/10/2017 1:30,25/07/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3320,19/10/2017 1:30,25/07/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3319,19/10/2017 1:30,25/07/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3318,19/10/2017 1:30,25/07/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3304,19/10/2017 1:30,25/07/2008 13:41,5.0,200, Information Exposure,nan
CVE-2008-3301,19/10/2017 1:30,25/07/2008 13:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3203,19/10/2017 1:30,17/07/2008 13:41,7.5,287, Improper Authentication,nan
CVE-2008-3189,19/10/2017 1:30,16/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3125,19/10/2017 1:30,10/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3031,19/10/2017 1:30,7/07/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2972,19/10/2017 1:30,2/07/2008 17:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2909,19/10/2017 1:30,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2895,19/10/2017 1:30,27/06/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2890,19/10/2017 1:30,27/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2887,19/10/2017 1:30,27/06/2008 18:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2882,19/10/2017 1:30,26/06/2008 17:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2873,19/10/2017 1:30,26/06/2008 17:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2872,19/10/2017 1:30,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2697,19/10/2017 1:30,13/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2568,19/10/2017 1:30,6/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2269,19/10/2017 1:30,16/05/2008 12:54,7.5,287, Improper Authentication,nan
CVE-2008-1788,19/10/2017 1:30,15/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1730,19/10/2017 1:30,11/04/2008 19:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0916,19/10/2017 1:30,22/02/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0360,19/10/2017 1:30,18/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0359,19/10/2017 1:30,18/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0224,19/10/2017 1:30,10/01/2008 23:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0148,19/10/2017 1:30,9/01/2008 0:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0139,19/10/2017 1:30,8/01/2008 19:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6668,19/10/2017 1:30,8/01/2008 2:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6615,19/10/2017 1:30,3/01/2008 23:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6614,19/10/2017 1:30,3/01/2008 23:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6347,19/10/2017 1:30,13/12/2007 22:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6172,19/10/2017 1:30,30/11/2007 0:46,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6147,19/10/2017 1:30,27/11/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6137,19/10/2017 1:30,27/11/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6134,19/10/2017 1:30,27/11/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6133,19/10/2017 1:30,27/11/2007 19:46,5.8,20, Improper Input Validation,nan
CVE-2007-5487,19/10/2017 1:30,16/10/2007 23:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5321,19/10/2017 1:30,9/10/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5300,19/10/2017 1:30,9/10/2007 18:17,5.0,189, Numeric Errors,nan
CVE-2007-5231,19/10/2017 1:30,5/10/2007 23:17,4.6,20, Improper Input Validation,nan
CVE-2007-5230,19/10/2017 1:30,5/10/2007 23:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5174,19/10/2017 1:30,3/10/2007 14:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5117,19/10/2017 1:30,27/09/2007 17:17,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5102,19/10/2017 1:30,26/09/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5099,19/10/2017 1:30,26/09/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4966,19/10/2017 1:30,18/09/2007 22:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0983,19/10/2017 1:30,16/02/2007 11:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0887,19/10/2017 1:30,12/02/2007 23:28,7.8,476, NULL Pointer Dereference,nan
CVE-2007-0886,19/10/2017 1:30,12/02/2007 23:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0582,19/10/2017 1:30,30/01/2007 17:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0501,19/10/2017 1:30,25/01/2007 21:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0499,19/10/2017 1:30,25/01/2007 21:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-0355,19/10/2017 1:29,19/01/2007 1:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0344,19/10/2017 1:29,18/01/2007 2:28,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-0196,19/10/2017 1:29,11/01/2007 11:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6976,19/10/2017 1:29,8/02/2007 17:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6962,19/10/2017 1:29,29/01/2007 16:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6880,19/10/2017 1:29,31/12/2006 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6848,19/10/2017 1:29,31/12/2006 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6760,19/10/2017 1:29,27/12/2006 1:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6740,19/10/2017 1:29,26/12/2006 23:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6739,19/10/2017 1:29,26/12/2006 23:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6738,19/10/2017 1:29,26/12/2006 23:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6732,19/10/2017 1:29,26/12/2006 23:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6726,19/10/2017 1:29,26/12/2006 21:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6723,19/10/2017 1:29,26/12/2006 20:28,7.8,399, Resource Management Errors,nan
CVE-2006-6720,19/10/2017 1:29,23/12/2006 11:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6710,19/10/2017 1:29,23/12/2006 1:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6462,19/10/2017 1:29,11/12/2006 18:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6396,19/10/2017 1:29,8/12/2006 1:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6242,19/10/2017 1:29,3/12/2006 19:28,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-6199,19/10/2017 1:29,1/12/2006 1:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6086,19/10/2017 1:29,24/11/2006 18:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6038,19/10/2017 1:29,22/11/2006 0:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-5865,19/10/2017 1:29,11/11/2006 1:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5851,19/10/2017 1:29,10/11/2006 2:07,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2006-5767,19/10/2017 1:29,6/11/2006 23:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5728,19/10/2017 1:29,6/11/2006 17:07,4.0,399, Resource Management Errors,nan
CVE-2006-5725,19/10/2017 1:29,4/11/2006 1:07,5.0,200, Information Exposure,nan
CVE-2006-5634,19/10/2017 1:29,1/11/2006 0:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5621,19/10/2017 1:29,31/10/2006 20:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5552,19/10/2017 1:29,26/10/2006 17:07,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5519,19/10/2017 1:29,26/10/2006 16:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5506,19/10/2017 1:29,25/10/2006 22:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5494,19/10/2017 1:29,25/10/2006 10:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5480,19/10/2017 1:29,24/10/2006 20:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5390,19/10/2017 1:29,18/10/2006 19:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5302,19/10/2017 1:29,17/10/2006 15:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5301,19/10/2017 1:29,17/10/2006 15:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5280,19/10/2017 1:29,13/10/2006 19:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5191,19/10/2017 1:29,10/10/2006 4:06,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5093,19/10/2017 1:29,29/09/2006 21:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5055,19/10/2017 1:29,28/09/2006 0:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5048,19/10/2017 1:29,27/09/2006 23:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4944,19/10/2017 1:29,23/09/2006 0:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4869,19/10/2017 1:29,19/09/2006 19:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4671,19/10/2017 1:29,11/09/2006 16:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4288,19/10/2017 1:29,22/08/2006 17:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4204,19/10/2017 1:29,17/08/2006 21:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4159,19/10/2017 1:29,16/08/2006 22:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4074,19/10/2017 1:29,11/08/2006 1:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3995,19/10/2017 1:29,5/08/2006 0:04,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3912,19/10/2017 1:29,28/07/2006 0:04,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3904,19/10/2017 1:29,27/07/2006 22:04,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3773,19/10/2017 1:29,24/07/2006 12:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3751,19/10/2017 1:29,21/07/2006 14:03,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3750,19/10/2017 1:29,21/07/2006 14:03,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3749,19/10/2017 1:29,21/07/2006 14:03,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3748,19/10/2017 1:29,21/07/2006 14:03,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3401,19/10/2017 1:29,6/07/2006 20:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3193,19/10/2017 1:29,23/06/2006 0:02,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2767,19/10/2017 1:29,2/06/2006 10:18,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2686,19/10/2017 1:29,31/05/2006 10:06,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2685,19/10/2017 1:29,31/05/2006 10:06,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2521,19/10/2017 1:29,22/05/2006 22:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0961,19/10/2017 1:29,2/03/2006 23:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0179,19/10/2017 1:29,11/01/2006 21:03,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0064,19/10/2017 1:29,3/01/2006 22:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-2466,19/10/2017 1:29,31/12/2004 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14758,18/10/2017 1:29,3/10/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14757,18/10/2017 1:29,3/10/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15193,17/10/2017 20:01,10/10/2017 21:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-15035,17/10/2017 17:25,5/10/2017 7:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000091,17/10/2017 17:12,5/10/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000092,17/10/2017 17:02,5/10/2017 1:29,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000114,17/10/2017 16:28,5/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8018,17/10/2017 16:25,3/10/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2015-7358,17/10/2017 16:09,3/10/2017 1:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-2903,17/10/2017 15:59,6/10/2017 15:29,4.3,310, Cryptographic Issues,nan
CVE-2015-6971,17/10/2017 15:48,3/10/2017 1:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-3321,17/10/2017 15:31,3/10/2017 1:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-1000093,17/10/2017 14:18,5/10/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1000094,17/10/2017 14:14,5/10/2017 1:29,4.0,200, Information Exposure,nan
CVE-2017-12424,17/10/2017 1:29,4/08/2017 9:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11394,14/10/2017 1:29,3/08/2017 15:29,10.0,20, Improper Input Validation,nan
CVE-2017-13068,13/10/2017 20:03,6/10/2017 17:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-15037,13/10/2017 19:58,5/10/2017 7:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-2297,13/10/2017 19:58,6/10/2017 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-15084,13/10/2017 19:57,6/10/2017 21:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1315,13/10/2017 19:53,12/02/2016 1:59,5.0,284, Improper Access Control,nan
CVE-2015-7980,13/10/2017 19:23,3/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000118,13/10/2017 18:07,5/10/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14088,13/10/2017 18:05,6/10/2017 1:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-15079,13/10/2017 17:57,6/10/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12792,13/10/2017 14:40,3/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2880,13/10/2017 14:36,5/10/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12106,13/10/2017 14:28,5/10/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8492,13/10/2017 13:46,6/10/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000120,13/10/2017 13:36,5/10/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1126,13/10/2017 13:14,4/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-9807,13/10/2017 1:29,22/06/2017 3:29,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8957,12/10/2017 17:41,6/10/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9017,12/10/2017 17:40,11/03/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12166,12/10/2017 16:52,4/10/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7240,12/10/2017 16:47,6/10/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8758,12/10/2017 16:45,6/10/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2142,12/10/2017 16:43,6/10/2017 22:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-15009,12/10/2017 15:45,4/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15008,12/10/2017 15:45,4/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0825,12/10/2017 15:43,4/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-15019,12/10/2017 14:19,5/10/2017 1:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-15046,12/10/2017 14:17,6/10/2017 4:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0815,12/10/2017 13:58,4/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-0816,12/10/2017 13:56,4/10/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-0823,12/10/2017 13:55,4/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-0817,12/10/2017 13:55,4/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-0808,12/10/2017 13:30,4/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2009-1642,12/10/2017 1:29,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8156,11/10/2017 19:23,26/09/2017 1:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3643,11/10/2017 18:36,28/09/2017 1:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-14756,11/10/2017 18:28,3/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14755,11/10/2017 18:22,3/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14759,11/10/2017 18:21,3/10/2017 1:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-7256,11/10/2017 17:59,28/09/2017 1:29,4.3,310, Cryptographic Issues,nan
CVE-2015-2146,11/10/2017 17:59,6/10/2017 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2144,11/10/2017 17:59,6/10/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2143,11/10/2017 17:59,6/10/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14754,11/10/2017 17:57,3/10/2017 1:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2148,11/10/2017 17:56,6/10/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2145,11/10/2017 17:56,6/10/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2147,11/10/2017 17:55,6/10/2017 22:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8251,11/10/2017 17:53,25/09/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-1311,11/10/2017 17:50,3/10/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1345,11/10/2017 17:46,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-15025,11/10/2017 17:38,5/10/2017 1:29,4.3,369, Divide By Zero,nan
CVE-2017-15022,11/10/2017 17:37,5/10/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14981,11/10/2017 17:37,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6089,11/10/2017 17:34,3/10/2017 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0043,11/10/2017 17:32,3/10/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-10932,11/10/2017 17:28,28/09/2017 1:29,10.0,502, Deserialization of Untrusted Data,nan
CVE-2017-14770,11/10/2017 17:26,3/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-14772,11/10/2017 17:23,3/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-14771,11/10/2017 17:20,3/10/2017 1:29,3.6,20, Improper Input Validation,nan
CVE-2016-10512,11/10/2017 15:59,30/09/2017 1:29,10.0,255, Credentials Management,nan
CVE-2015-7544,11/10/2017 15:54,25/09/2017 21:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-7357,11/10/2017 15:37,3/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11191,11/10/2017 15:36,28/09/2017 1:29,6.5,384, Session Fixation,nan
CVE-2014-8170,11/10/2017 14:40,26/09/2017 1:29,9.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-14944,11/10/2017 13:47,30/09/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2015-1336,11/10/2017 13:47,28/09/2017 1:29,7.2,284, Improper Access Control,nan
CVE-2017-14620,11/10/2017 13:16,30/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13982,11/10/2017 1:32,30/09/2017 1:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2008-7203,11/10/2017 1:32,11/09/2009 16:30,5.0,399, Resource Management Errors,nan
CVE-2008-6253,11/10/2017 1:32,24/02/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5198,11/10/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3954,11/10/2017 1:32,11/09/2008 1:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2815,11/10/2017 1:32,23/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1551,11/10/2017 1:32,31/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0249,11/10/2017 1:32,12/01/2008 2:46,5.0,200, Information Exposure,nan
CVE-2007-3448,11/10/2017 1:32,27/06/2007 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3447,11/10/2017 1:32,27/06/2007 0:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3410,11/10/2017 1:32,26/06/2007 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3400,11/10/2017 1:32,26/06/2007 17:30,9.3,20, Improper Input Validation,nan
CVE-2007-3391,11/10/2017 1:32,26/06/2007 0:30,7.8,20, Improper Input Validation,nan
CVE-2007-3389,11/10/2017 1:32,26/06/2007 0:30,5.0,20, Improper Input Validation,nan
CVE-2007-3380,11/10/2017 1:32,20/07/2007 23:30,5.0,16, Configuration,nan
CVE-2007-3374,11/10/2017 1:32,25/06/2007 20:30,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3294,11/10/2017 1:32,20/06/2007 21:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3291,11/10/2017 1:32,20/06/2007 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3169,11/10/2017 1:32,11/06/2007 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3119,11/10/2017 1:32,7/06/2007 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3105,11/10/2017 1:32,27/07/2007 21:30,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3104,11/10/2017 1:32,26/06/2007 18:30,4.9,399, Resource Management Errors,nan
CVE-2007-2985,11/10/2017 1:32,1/06/2007 10:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-2900,11/10/2017 1:32,30/05/2007 10:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2899,11/10/2017 1:32,30/05/2007 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2884,11/10/2017 1:32,30/05/2007 1:30,9.3,399, Resource Management Errors,nan
CVE-2007-2826,11/10/2017 1:32,22/05/2007 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2816,11/10/2017 1:32,22/05/2007 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2803,11/10/2017 1:32,22/05/2007 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2673,11/10/2017 1:32,14/05/2007 23:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2668,11/10/2017 1:32,14/05/2007 23:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2609,11/10/2017 1:32,11/05/2007 10:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2589,11/10/2017 1:32,11/05/2007 4:20,5.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-2586,11/10/2017 1:32,10/05/2007 0:19,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-2575,11/10/2017 1:32,9/05/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2572,11/10/2017 1:32,9/05/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2571,11/10/2017 1:32,9/05/2007 21:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2521,11/10/2017 1:32,8/05/2007 18:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2458,11/10/2017 1:32,2/05/2007 18:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2435,11/10/2017 1:32,2/05/2007 10:19,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-2365,11/10/2017 1:32,30/04/2007 22:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2340,11/10/2017 1:32,27/04/2007 16:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2319,11/10/2017 1:32,26/04/2007 21:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2274,11/10/2017 1:32,25/04/2007 20:19,7.8,399, Resource Management Errors,nan
CVE-2007-2244,11/10/2017 1:32,25/04/2007 16:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2185,11/10/2017 1:32,24/04/2007 17:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2144,11/10/2017 1:32,19/04/2007 10:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2091,11/10/2017 1:32,18/04/2007 10:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2070,11/10/2017 1:32,18/04/2007 3:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2027,11/10/2017 1:32,13/04/2007 18:19,4.4,134, Use of Externally-Controlled Format String,nan
CVE-2007-2022,11/10/2017 1:32,13/04/2007 18:19,6.8,200, Information Exposure,nan
CVE-2007-2005,11/10/2017 1:32,12/04/2007 19:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2000,11/10/2017 1:32,12/04/2007 19:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1995,11/10/2017 1:32,12/04/2007 10:19,6.3,20, Improper Input Validation,nan
CVE-2007-1993,11/10/2017 1:32,12/04/2007 10:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1962,11/10/2017 1:32,11/04/2007 10:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1960,11/10/2017 1:32,11/04/2007 10:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1920,11/10/2017 1:32,10/04/2007 23:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1899,11/10/2017 1:32,9/07/2008 0:41,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1897,11/10/2017 1:32,9/04/2007 20:19,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1859,11/10/2017 1:32,2/05/2007 20:19,4.6,287, Improper Authentication,nan
CVE-2007-1797,11/10/2017 1:31,2/04/2007 22:19,6.8,189, Numeric Errors,nan
CVE-2007-1790,11/10/2017 1:31,31/03/2007 10:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1776,11/10/2017 1:31,30/03/2007 1:19,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1643,11/10/2017 1:31,24/03/2007 0:19,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1592,11/10/2017 1:31,22/03/2007 19:19,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1580,11/10/2017 1:31,21/03/2007 23:19,6.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1579,11/10/2017 1:31,21/03/2007 23:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1564,11/10/2017 1:31,21/03/2007 19:19,6.8,200, Information Exposure,nan
CVE-2007-1482,11/10/2017 1:31,16/03/2007 21:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1480,11/10/2017 1:31,16/03/2007 21:19,7.5,287, Improper Authentication,nan
CVE-2007-1478,11/10/2017 1:31,16/03/2007 21:19,5.0,20, Improper Input Validation,nan
CVE-2007-1413,11/10/2017 1:31,12/03/2007 23:19,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1388,11/10/2017 1:31,10/03/2007 19:19,4.4,399, Resource Management Errors,nan
CVE-2007-1349,11/10/2017 1:31,30/03/2007 0:19,4.3,399, Resource Management Errors,nan
CVE-2007-1347,11/10/2017 1:31,8/03/2007 22:19,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1321,11/10/2017 1:31,30/10/2007 22:46,6.6,189, Numeric Errors,nan
CVE-2007-1320,11/10/2017 1:31,2/05/2007 17:19,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1262,11/10/2017 1:31,11/05/2007 4:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1257,11/10/2017 1:31,3/03/2007 20:19,10.0,20, Improper Input Validation,nan
CVE-2007-1233,11/10/2017 1:31,3/03/2007 19:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1218,11/10/2017 1:31,2/03/2007 21:18,6.8,189, Numeric Errors,nan
CVE-2007-1167,11/10/2017 1:31,2/03/2007 21:18,5.0,200, Information Exposure,nan
CVE-2007-1165,11/10/2017 1:31,2/03/2007 21:18,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1163,11/10/2017 1:31,2/03/2007 21:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-1152,11/10/2017 1:31,2/03/2007 21:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1082,11/10/2017 1:31,22/02/2007 23:28,7.1,399, Resource Management Errors,nan
CVE-2007-1041,11/10/2017 1:31,21/02/2007 17:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1031,11/10/2017 1:31,21/02/2007 11:28,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1006,11/10/2017 1:31,20/02/2007 1:28,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2007-0985,11/10/2017 1:31,16/02/2007 11:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0984,11/10/2017 1:31,16/02/2007 11:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0790,11/10/2017 1:31,6/02/2007 19:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0494,11/10/2017 1:31,25/01/2007 20:28,4.3,19, Data Processing Errors,nan
CVE-2007-0464,11/10/2017 1:31,30/01/2007 17:28,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0451,11/10/2017 1:31,16/02/2007 19:28,4.3,399, Resource Management Errors,nan
CVE-2007-0236,11/10/2017 1:31,16/01/2007 18:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0235,11/10/2017 1:31,16/01/2007 18:28,3.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0017,11/10/2017 1:31,3/01/2007 2:28,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2007-0016,11/10/2017 1:31,3/01/2007 2:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-7230,11/10/2017 1:31,15/11/2007 19:46,4.3,189, Numeric Errors,nan
CVE-2006-7227,11/10/2017 1:31,14/11/2007 21:46,6.8,189, Numeric Errors,nan
CVE-2006-7225,11/10/2017 1:31,3/12/2007 20:46,4.3,20, Improper Input Validation,nan
CVE-2006-7147,11/10/2017 1:31,7/03/2007 20:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7127,11/10/2017 1:31,6/03/2007 1:19,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7117,11/10/2017 1:31,6/03/2007 1:19,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-7116,11/10/2017 1:31,6/03/2007 1:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-7112,11/10/2017 1:31,6/03/2007 1:19,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-7108,11/10/2017 1:31,4/03/2007 22:19,4.1,264, Permissions Privileges and Access Controls,nan
CVE-2006-7106,11/10/2017 1:31,3/03/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7102,11/10/2017 1:31,3/03/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6304,11/10/2017 1:31,14/12/2006 20:28,7.5,399, Resource Management Errors,nan
CVE-2006-6303,11/10/2017 1:31,6/12/2006 19:28,5.0,399, Resource Management Errors,nan
CVE-2006-5757,11/10/2017 1:31,6/11/2006 20:07,1.2,399, Resource Management Errors,nan
CVE-2006-5467,11/10/2017 1:31,27/10/2006 18:07,5.0,399, Resource Management Errors,nan
CVE-2006-5051,11/10/2017 1:31,27/09/2006 23:07,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-4814,11/10/2017 1:31,20/12/2006 2:28,4.6,399, Resource Management Errors,nan
CVE-2006-4535,11/10/2017 1:31,19/09/2006 19:07,4.9,399, Resource Management Errors,nan
CVE-2006-4262,11/10/2017 1:31,23/08/2006 10:04,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4227,11/10/2017 1:31,18/08/2006 20:04,6.5,20, Improper Input Validation,nan
CVE-2006-4146,11/10/2017 1:31,31/08/2006 22:04,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3744,11/10/2017 1:31,25/08/2006 1:04,5.1,189, Numeric Errors,nan
CVE-2006-3469,11/10/2017 1:31,21/07/2006 14:03,4.0,134, Use of Externally-Controlled Format String,nan
CVE-2006-3464,11/10/2017 1:31,3/08/2006 1:04,7.5,189, Numeric Errors,nan
CVE-2006-3463,11/10/2017 1:31,3/08/2006 1:04,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3462,11/10/2017 1:31,3/08/2006 1:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3460,11/10/2017 1:31,3/08/2006 1:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3459,11/10/2017 1:31,3/08/2006 1:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1858,11/10/2017 1:30,22/05/2006 16:06,7.8,20, Improper Input Validation,nan
CVE-2006-1857,11/10/2017 1:30,22/05/2006 16:06,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1781,11/10/2017 1:30,13/04/2006 10:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1522,11/10/2017 1:30,10/04/2006 20:02,4.9,20, Improper Input Validation,nan
CVE-2006-1371,11/10/2017 1:30,23/03/2006 23:06,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1154,11/10/2017 1:30,10/03/2006 11:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0996,11/10/2017 1:30,10/04/2006 18:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0481,11/10/2017 1:30,31/01/2006 18:03,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0354,11/10/2017 1:30,22/01/2006 20:03,5.5,399, Resource Management Errors,nan
CVE-2006-0308,11/10/2017 1:30,19/01/2006 0:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0039,11/10/2017 1:30,19/05/2006 22:02,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-0038,11/10/2017 1:30,22/03/2006 20:06,6.9,189, Numeric Errors,nan
CVE-2005-4881,11/10/2017 1:30,19/10/2009 20:00,4.9,200, Information Exposure,nan
CVE-2005-4872,11/10/2017 1:30,31/12/2005 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4837,11/10/2017 1:30,31/12/2005 5:00,10.0,189, Numeric Errors,nan
CVE-2005-3631,11/10/2017 1:30,22/12/2005 11:03,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-3623,11/10/2017 1:30,31/12/2005 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2005-3119,11/10/2017 1:30,12/10/2005 13:03,2.1,399, Resource Management Errors,nan
CVE-2005-2922,11/10/2017 1:30,31/12/2005 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2703,11/10/2017 1:30,23/09/2005 19:03,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-2666,11/10/2017 1:30,23/08/2005 4:00,1.2,255, Credentials Management,nan
CVE-2005-2368,11/10/2017 1:30,26/07/2005 4:00,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2005-1852,11/10/2017 1:30,26/07/2005 4:00,7.5,189, Numeric Errors,nan
CVE-2005-1532,11/10/2017 1:30,12/05/2005 4:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-1462,11/10/2017 1:30,5/05/2005 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-1426,11/10/2017 1:30,3/05/2005 4:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2005-1155,11/10/2017 1:30,2/05/2005 4:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-1021,11/10/2017 1:30,2/05/2005 4:00,7.1,399, Resource Management Errors,nan
CVE-2005-1020,11/10/2017 1:30,2/05/2005 4:00,7.1,287, Improper Authentication,nan
CVE-2005-0739,11/10/2017 1:29,2/05/2005 4:00,5.0,189, Numeric Errors,nan
CVE-2005-0504,11/10/2017 1:29,14/03/2005 5:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-0413,11/10/2017 1:29,27/04/2005 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-0256,11/10/2017 1:29,2/05/2005 4:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-0247,11/10/2017 1:29,2/05/2005 4:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-0244,11/10/2017 1:29,2/05/2005 4:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-0227,11/10/2017 1:29,2/05/2005 4:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-0210,11/10/2017 1:29,2/05/2005 4:00,4.9,399, Resource Management Errors,nan
CVE-2005-0209,11/10/2017 1:29,2/05/2005 4:00,7.8,20, Improper Input Validation,nan
CVE-2005-0197,11/10/2017 1:29,2/05/2005 4:00,6.1,16, Configuration,nan
CVE-2005-0177,11/10/2017 1:29,7/03/2005 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-0103,11/10/2017 1:29,24/01/2005 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-2719,11/10/2017 1:29,31/12/2004 5:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2693,11/10/2017 1:29,31/12/2004 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2004-2685,11/10/2017 1:29,31/12/2004 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2541,11/10/2017 1:29,31/12/2004 5:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1553,11/10/2017 1:29,31/12/2004 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-1029,11/10/2017 1:29,1/03/2005 5:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2004-0967,11/10/2017 1:29,9/02/2005 5:00,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2004-0918,11/10/2017 1:29,27/01/2005 5:00,5.0,399, Resource Management Errors,nan
CVE-2004-0772,11/10/2017 1:29,20/10/2004 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0694,11/10/2017 1:29,4/02/2011 1:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0643,11/10/2017 1:29,28/09/2004 4:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0642,11/10/2017 1:29,28/09/2004 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0368,11/10/2017 1:29,4/05/2004 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0244,11/10/2017 1:29,23/11/2004 5:00,4.7,20, Improper Input Validation,nan
CVE-2004-0234,11/10/2017 1:29,18/08/2004 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0175,11/10/2017 1:29,18/08/2004 4:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1571,11/10/2017 1:29,2/04/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1461,11/10/2017 1:29,31/12/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1375,11/10/2017 1:29,31/12/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1359,11/10/2017 1:29,31/12/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1356,11/10/2017 1:29,31/12/2003 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2003-1339,11/10/2017 1:29,31/12/2003 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0858,11/10/2017 1:29,15/12/2003 5:00,2.1,399, Resource Management Errors,nan
CVE-2003-0512,11/10/2017 1:29,27/08/2003 4:00,5.0,310, Cryptographic Issues,nan
CVE-2002-2270,11/10/2017 1:29,31/12/2002 5:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2002-2261,11/10/2017 1:29,31/12/2002 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2002-1360,11/10/2017 1:29,23/12/2002 5:00,10.0,20, Improper Input Validation,nan
CVE-2002-1359,11/10/2017 1:29,23/12/2002 5:00,10.0,20, Improper Input Validation,nan
CVE-2002-1358,11/10/2017 1:29,23/12/2002 5:00,10.0,20, Improper Input Validation,nan
CVE-2002-1357,11/10/2017 1:29,23/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13684,10/10/2017 18:44,30/09/2017 1:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12621,10/10/2017 18:29,28/09/2017 1:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-14738,10/10/2017 18:20,30/09/2017 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14582,10/10/2017 18:15,30/09/2017 1:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-12639,10/10/2017 17:56,3/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12638,10/10/2017 17:52,3/10/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8707,10/10/2017 17:50,26/09/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-14527,10/10/2017 17:49,28/09/2017 1:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1429,10/10/2017 15:08,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1369,10/10/2017 15:08,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1364,10/10/2017 15:08,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1359,10/10/2017 15:08,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1335,10/10/2017 15:08,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1334,10/10/2017 15:07,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1324,10/10/2017 15:06,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3248,10/10/2017 14:55,26/09/2017 15:29,4.7,400, Uncontrolled Resource Consumption,nan
CVE-2015-5070,10/10/2017 14:54,26/09/2017 14:29,3.5,200, Information Exposure,nan
CVE-2015-5069,10/10/2017 14:54,26/09/2017 14:29,4.0,200, Information Exposure,nan
CVE-2017-14984,10/10/2017 14:49,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0874,10/10/2017 14:49,26/09/2017 14:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-14985,10/10/2017 14:14,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14983,10/10/2017 14:12,3/10/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14704,10/10/2017 12:58,26/09/2017 14:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14743,10/10/2017 12:50,26/09/2017 6:29,9.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7846,10/10/2017 12:26,25/09/2017 21:29,2.1,200, Information Exposure,nan
CVE-2017-14775,10/10/2017 12:25,28/09/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-14507,10/10/2017 12:14,29/09/2017 1:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14766,10/10/2017 12:10,27/09/2017 8:29,6.4,287, Improper Authentication,nan
CVE-2015-0238,10/10/2017 11:57,26/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2015-1027,10/10/2017 11:56,29/09/2017 1:34,4.3,200, Information Exposure,nan
CVE-2017-2551,10/10/2017 11:52,28/09/2017 1:29,5.0,552, Files or Directories Accessible to External Parties,nan
CVE-2014-2029,10/10/2017 11:51,29/09/2017 1:34,6.8,200, Information Exposure,nan
CVE-2017-14622,10/10/2017 11:37,28/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8786,10/10/2017 1:30,5/05/2017 0:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4924,10/10/2017 1:30,15/09/2017 13:29,7.2,787, Out-of-bounds Write,nan
CVE-2017-3823,10/10/2017 1:30,1/02/2017 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1867,10/10/2017 1:30,12/08/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2004-0276,10/10/2017 1:30,23/11/2004 5:00,5.0,20, Improper Input Validation,nan
CVE-2004-0273,10/10/2017 1:30,23/11/2004 5:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-1111,10/10/2017 1:30,4/10/2002 4:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2001-0819,10/10/2017 1:29,6/12/2001 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-0803,10/10/2017 1:29,6/12/2001 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-0629,10/10/2017 1:29,14/08/2001 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-0537,10/10/2017 1:29,21/07/2001 4:00,9.3,287, Improper Authentication,nan
CVE-2001-0427,10/10/2017 1:29,18/06/2001 4:00,7.1,20, Improper Input Validation,nan
CVE-2001-0054,10/10/2017 1:29,16/02/2001 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2001-0041,10/10/2017 1:29,16/02/2001 5:00,7.8,399, Resource Management Errors,nan
CVE-2000-0876,10/10/2017 1:29,14/11/2000 5:00,5.0,200, Information Exposure,nan
CVE-2000-0864,10/10/2017 1:29,14/11/2000 5:00,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14352,7/10/2017 1:29,30/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000035,7/10/2017 1:29,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14749,6/10/2017 19:43,26/09/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14935,6/10/2017 19:40,30/09/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2017-9794,6/10/2017 19:37,30/09/2017 1:29,4.0,200, Information Exposure,nan
CVE-2017-1591,6/10/2017 19:34,28/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8878,6/10/2017 19:13,28/09/2017 1:29,4.3,310, Cryptographic Issues,nan
CVE-2017-13676,6/10/2017 19:04,28/09/2017 1:29,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-5192,6/10/2017 18:46,26/09/2017 14:29,6.5,287, Improper Authentication,nan
CVE-2017-14924,6/10/2017 18:10,30/09/2017 1:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14925,6/10/2017 18:09,30/09/2017 1:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7510,6/10/2017 18:06,25/09/2017 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9686,6/10/2017 18:03,28/09/2017 1:29,4.3,399, Resource Management Errors,nan
CVE-2011-4667,6/10/2017 17:30,25/09/2017 21:29,4.3,310, Cryptographic Issues,nan
CVE-2017-14703,6/10/2017 17:24,26/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7349,6/10/2017 17:22,28/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12905,6/10/2017 17:15,25/09/2017 17:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-1526,6/10/2017 17:13,28/09/2017 1:29,7.1,190, Integer Overflow or Wraparound,nan
CVE-2017-1577,6/10/2017 17:12,28/09/2017 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7317,6/10/2017 17:09,25/09/2017 17:29,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-6696,6/10/2017 17:06,25/09/2017 21:29,7.5,20, Improper Input Validation,nan
CVE-2015-5181,6/10/2017 17:04,25/09/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9234,6/10/2017 16:56,30/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14941,6/10/2017 16:54,2/10/2017 1:29,4.0,200, Information Exposure,nan
CVE-2015-6592,6/10/2017 16:53,25/09/2017 21:29,7.2,254, 7PK – Security Features,nan
CVE-2017-14957,6/10/2017 16:50,2/10/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1537,6/10/2017 16:50,28/09/2017 1:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-14958,6/10/2017 16:49,2/10/2017 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14702,6/10/2017 16:49,30/09/2017 1:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2015-5613,6/10/2017 16:48,28/09/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14760,6/10/2017 16:34,27/09/2017 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1407,6/10/2017 16:29,28/09/2017 1:29,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-1483,6/10/2017 16:25,28/09/2017 1:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2015-9233,6/10/2017 15:44,30/09/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14526,6/10/2017 15:30,28/09/2017 1:29,6.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-14525,6/10/2017 15:29,28/09/2017 1:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14524,6/10/2017 15:28,28/09/2017 1:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-8249,6/10/2017 15:25,28/09/2017 1:29,10.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-10701,6/10/2017 15:23,29/09/2017 1:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14751,6/10/2017 15:22,26/09/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7785,6/10/2017 15:18,25/09/2017 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-5666,6/10/2017 15:18,25/09/2017 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-14744,6/10/2017 15:05,26/09/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8375,6/10/2017 14:57,25/09/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14748,6/10/2017 14:47,26/09/2017 17:29,3.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14839,6/10/2017 14:42,28/09/2017 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14838,6/10/2017 14:42,28/09/2017 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14840,6/10/2017 14:40,28/09/2017 1:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14954,6/10/2017 14:06,2/10/2017 1:29,2.1,200, Information Exposure,nan
CVE-2015-7293,6/10/2017 14:05,25/09/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5704,6/10/2017 13:56,25/09/2017 21:29,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-14753,6/10/2017 13:10,27/09/2017 3:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14717,6/10/2017 1:29,22/09/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14712,6/10/2017 1:29,22/09/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12069,6/10/2017 1:29,30/08/2017 19:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-7748,6/10/2017 1:29,19/10/2015 18:59,5.0,20, Improper Input Validation,nan
CVE-2017-9551,5/10/2017 18:59,25/09/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5263,5/10/2017 18:58,25/09/2017 21:29,6.8,295, Improper Certificate Validation,nan
CVE-2017-13991,5/10/2017 18:57,30/09/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-13990,5/10/2017 18:44,30/09/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-14922,5/10/2017 18:43,30/09/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13986,5/10/2017 18:43,30/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14350,5/10/2017 18:42,30/09/2017 1:29,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-14921,5/10/2017 18:41,30/09/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14844,5/10/2017 18:41,28/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14920,5/10/2017 18:17,30/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14843,5/10/2017 18:15,28/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14842,5/10/2017 18:14,28/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14841,5/10/2017 18:13,28/09/2017 1:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-9231,5/10/2017 17:54,20/09/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-14846,5/10/2017 17:04,28/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14923,5/10/2017 16:49,30/09/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14845,5/10/2017 16:49,28/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14847,5/10/2017 16:44,28/09/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14974,5/10/2017 16:23,2/10/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-8007,5/10/2017 16:21,22/09/2017 1:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4071,5/10/2017 15:39,18/08/2017 18:29,5.0,200, Information Exposure,nan
CVE-2015-3420,5/10/2017 15:17,19/09/2017 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-8559,5/10/2017 15:15,21/09/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-13984,5/10/2017 15:14,30/09/2017 1:29,5.5,287, Improper Authentication,nan
CVE-2017-14947,5/10/2017 14:52,30/09/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14946,5/10/2017 14:44,30/09/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14945,5/10/2017 14:44,30/09/2017 1:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13983,5/10/2017 14:44,30/09/2017 1:29,10.0,287, Improper Authentication,nan
CVE-2017-13985,5/10/2017 14:43,30/09/2017 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7837,5/10/2017 14:43,19/09/2017 16:29,2.1,254, 7PK – Security Features,nan
CVE-2017-14653,5/10/2017 14:31,22/09/2017 7:29,4.0,200, Information Exposure,nan
CVE-2015-5607,5/10/2017 14:31,20/09/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9393,5/10/2017 14:10,22/09/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-14706,5/10/2017 14:07,22/09/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2015-1187,5/10/2017 13:48,21/09/2017 16:29,10.0,287, Improper Authentication,nan
CVE-2017-9292,5/10/2017 1:29,29/05/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4810,5/10/2017 1:29,16/09/2013 13:01,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6534,5/10/2017 1:29,29/03/2013 16:08,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4988,5/10/2017 1:29,9/07/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4902,5/10/2017 1:29,20/05/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4901,5/10/2017 1:29,20/05/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2841,5/10/2017 1:29,19/09/2011 12:02,6.8,20, Improper Input Validation,nan
CVE-2010-4210,5/10/2017 1:29,22/11/2010 12:54,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5229,5/10/2017 1:29,5/10/2007 23:17,6.4,352, Cross-Site Request Forgery (CSRF),nan
CVE-2003-0831,5/10/2017 1:29,17/11/2003 5:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9232,4/10/2017 20:19,20/09/2017 22:29,2.6,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-14321,4/10/2017 18:59,21/09/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14320,4/10/2017 18:59,21/09/2017 16:29,6.0,20, Improper Input Validation,nan
CVE-2017-14866,4/10/2017 17:55,29/09/2017 1:34,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14865,4/10/2017 17:55,29/09/2017 1:34,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14858,4/10/2017 17:38,29/09/2017 1:34,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14857,4/10/2017 17:38,29/09/2017 1:34,4.3,416, Use After Free,nan
CVE-2015-1849,4/10/2017 17:36,19/09/2017 17:29,4.3,200, Information Exposure,nan
CVE-2015-5248,4/10/2017 17:30,20/09/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-14615,4/10/2017 17:18,20/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14616,4/10/2017 17:16,20/09/2017 20:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-10511,4/10/2017 13:25,18/09/2017 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-5284,4/10/2017 13:24,21/09/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-7374,4/10/2017 1:29,31/03/2017 20:59,7.2,476, NULL Pointer Dereference,nan
CVE-2009-1071,4/10/2017 1:29,26/03/2009 5:51,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6976,4/10/2017 1:29,19/08/2009 5:24,6.4,20, Improper Input Validation,nan
CVE-2017-9607,3/10/2017 18:50,20/09/2017 16:29,5.1,190, Integer Overflow or Wraparound,nan
CVE-2017-6272,3/10/2017 18:29,22/09/2017 17:29,7.2,20, Improper Input Validation,nan
CVE-2017-14928,3/10/2017 18:22,30/09/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14926,3/10/2017 18:22,30/09/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14927,3/10/2017 18:20,30/09/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2010-3049,3/10/2017 18:11,25/09/2017 17:29,4.9,20, Improper Input Validation,nan
CVE-2010-3050,3/10/2017 17:50,25/09/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2017-1551,3/10/2017 17:49,25/09/2017 16:29,5.8,20, Improper Input Validation,nan
CVE-2015-3887,3/10/2017 17:47,21/09/2017 16:29,7.2,426, Untrusted Search Path,nan
CVE-2017-14940,3/10/2017 17:37,30/09/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14125,3/10/2017 17:33,25/09/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14647,3/10/2017 17:32,21/09/2017 17:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14648,3/10/2017 17:24,21/09/2017 17:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-14652,3/10/2017 17:15,21/09/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14692,3/10/2017 17:07,22/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14688,3/10/2017 17:05,22/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14680,3/10/2017 17:03,21/09/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-13129,3/10/2017 16:58,26/09/2017 14:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1555,3/10/2017 16:41,25/09/2017 16:29,4.0,20, Improper Input Validation,nan
CVE-2017-1425,3/10/2017 15:59,26/09/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7318,3/10/2017 15:57,25/09/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2015-2927,3/10/2017 15:46,20/09/2017 18:29,6.8,399, Resource Management Errors,nan
CVE-2015-7315,3/10/2017 15:17,25/09/2017 17:29,4.3,284, Improper Access Control,nan
CVE-2015-7316,3/10/2017 14:47,25/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5179,3/10/2017 14:35,20/09/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2015-8768,3/10/2017 1:29,13/02/2017 18:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-5963,3/10/2017 1:29,24/08/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2014-8596,3/10/2017 1:29,17/11/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3583,3/10/2017 1:29,15/12/2014 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6837,3/10/2017 1:29,19/12/2013 4:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4435,2/10/2017 15:28,25/05/2017 17:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-7896,2/10/2017 12:23,24/08/2017 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2809,2/10/2017 12:09,14/09/2017 19:29,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14796,30/09/2017 10:17,28/09/2017 1:29,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-14795,30/09/2017 10:17,28/09/2017 1:29,6.8,125, Out-of-bounds Read,nan
CVE-2015-0276,30/09/2017 10:17,21/09/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7347,30/09/2017 10:15,20/09/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4706,30/09/2017 10:12,21/09/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14765,29/09/2017 22:52,27/09/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14764,29/09/2017 22:52,27/09/2017 8:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14761,29/09/2017 22:52,27/09/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14762,29/09/2017 22:51,27/09/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14078,29/09/2017 22:45,22/09/2017 16:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14080,29/09/2017 22:43,22/09/2017 16:29,7.5,287, Improper Authentication,nan
CVE-2017-14079,29/09/2017 22:36,22/09/2017 16:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-8744,29/09/2017 22:27,13/09/2017 16:29,9.0,502, Deserialization of Untrusted Data,nan
CVE-2017-1002100,29/09/2017 19:03,14/09/2017 13:29,4.0,200, Information Exposure,nan
CVE-2017-8742,29/09/2017 18:58,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14745,29/09/2017 18:37,26/09/2017 16:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-1527,29/09/2017 18:13,26/09/2017 17:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-14727,29/09/2017 18:12,23/09/2017 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1531,29/09/2017 18:11,26/09/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1530,29/09/2017 18:11,26/09/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14081,29/09/2017 18:11,22/09/2017 16:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9463,29/09/2017 18:11,15/09/2017 20:29,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7971,29/09/2017 17:13,26/09/2017 1:29,4.0,295, Improper Certificate Validation,nan
CVE-2017-7969,29/09/2017 17:09,26/09/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-4925,29/09/2017 16:01,15/09/2017 13:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-12929,29/09/2017 15:55,21/09/2017 16:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-5282,29/09/2017 15:23,25/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14691,29/09/2017 15:16,22/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14337,29/09/2017 15:11,12/09/2017 16:29,6.8,287, Improper Authentication,nan
CVE-2017-7649,29/09/2017 15:04,11/09/2017 16:29,10.0,287, Improper Authentication,nan
CVE-2017-14689,29/09/2017 14:29,22/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14690,29/09/2017 14:28,22/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12930,29/09/2017 14:23,21/09/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14142,29/09/2017 13:54,19/09/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12928,29/09/2017 13:52,21/09/2017 16:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2014-9618,29/09/2017 13:47,19/09/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2017-6269,29/09/2017 1:34,22/09/2017 17:29,7.2,20, Improper Input Validation,nan
CVE-2017-6266,29/09/2017 1:34,22/09/2017 17:29,4.9,284, Improper Access Control,nan
CVE-2016-5853,29/09/2017 1:34,16/08/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10351,29/09/2017 1:34,1/05/2017 1:59,2.1,200, Information Exposure,nan
CVE-2015-7875,29/09/2017 1:34,7/08/2017 17:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1528,29/09/2017 1:34,1/10/2015 0:59,9.3,189, Numeric Errors,nan
CVE-2015-1474,29/09/2017 1:34,16/02/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2010-3886,29/09/2017 1:34,8/10/2010 22:00,4.3,200, Information Exposure,nan
CVE-2009-3342,29/09/2017 1:34,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2209,29/09/2017 1:34,25/06/2009 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2184,29/09/2017 1:34,23/06/2009 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2183,29/09/2017 1:34,23/06/2009 21:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2182,29/09/2017 1:34,23/06/2009 21:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2181,29/09/2017 1:34,23/06/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2180,29/09/2017 1:34,23/06/2009 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2179,29/09/2017 1:34,23/06/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2178,29/09/2017 1:34,23/06/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2177,29/09/2017 1:34,23/06/2009 21:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2176,29/09/2017 1:34,23/06/2009 21:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2173,29/09/2017 1:34,23/06/2009 21:30,3.5,399, Resource Management Errors,nan
CVE-2009-2172,29/09/2017 1:34,23/06/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2168,29/09/2017 1:34,22/06/2009 20:30,7.5,287, Improper Authentication,nan
CVE-2009-2167,29/09/2017 1:34,22/06/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2154,29/09/2017 1:34,22/06/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2153,29/09/2017 1:34,22/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2152,29/09/2017 1:34,22/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2151,29/09/2017 1:34,22/06/2009 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2150,29/09/2017 1:34,22/06/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2149,29/09/2017 1:34,22/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2148,29/09/2017 1:34,22/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2147,29/09/2017 1:34,22/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2145,29/09/2017 1:34,22/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2143,29/09/2017 1:34,22/06/2009 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2142,29/09/2017 1:34,22/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2141,29/09/2017 1:34,22/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2138,29/09/2017 1:34,19/06/2009 19:30,4.3,20, Improper Input Validation,nan
CVE-2009-2135,29/09/2017 1:34,19/06/2009 19:30,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2131,29/09/2017 1:34,19/06/2009 18:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2130,29/09/2017 1:34,19/06/2009 18:00,5.0,200, Information Exposure,nan
CVE-2009-2129,29/09/2017 1:34,19/06/2009 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2127,29/09/2017 1:34,19/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2124,29/09/2017 1:34,19/06/2009 18:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2123,29/09/2017 1:34,19/06/2009 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2122,29/09/2017 1:34,19/06/2009 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2120,29/09/2017 1:34,18/06/2009 21:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2117,29/09/2017 1:34,18/06/2009 21:30,7.5,287, Improper Authentication,nan
CVE-2009-2113,29/09/2017 1:34,18/06/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2112,29/09/2017 1:34,18/06/2009 21:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2111,29/09/2017 1:34,18/06/2009 21:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2110,29/09/2017 1:34,18/06/2009 21:30,7.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2109,29/09/2017 1:34,18/06/2009 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2102,29/09/2017 1:34,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2101,29/09/2017 1:34,17/06/2009 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2100,29/09/2017 1:34,17/06/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2099,29/09/2017 1:34,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2098,29/09/2017 1:34,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2096,29/09/2017 1:34,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2095,29/09/2017 1:34,17/06/2009 17:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2081,29/09/2017 1:34,16/06/2009 19:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2080,29/09/2017 1:34,16/06/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2049,29/09/2017 1:34,30/07/2009 18:30,5.4,16, Configuration,nan
CVE-2009-2040,29/09/2017 1:34,12/06/2009 18:00,7.5,287, Improper Authentication,nan
CVE-2009-2037,29/09/2017 1:34,12/06/2009 18:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2034,29/09/2017 1:34,12/06/2009 18:00,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2033,29/09/2017 1:34,12/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2025,29/09/2017 1:34,9/06/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2024,29/09/2017 1:34,9/06/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2023,29/09/2017 1:34,9/06/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2022,29/09/2017 1:34,9/06/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2021,29/09/2017 1:34,9/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2020,29/09/2017 1:34,9/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2019,29/09/2017 1:34,9/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2018,29/09/2017 1:34,9/06/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2017,29/09/2017 1:34,9/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2016,29/09/2017 1:34,9/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2015,29/09/2017 1:34,9/06/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2014,29/09/2017 1:34,9/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2013,29/09/2017 1:34,9/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2003,29/09/2017 1:34,8/06/2009 19:30,7.5,287, Improper Authentication,nan
CVE-2009-1960,29/09/2017 1:34,8/06/2009 1:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1956,29/09/2017 1:34,8/06/2009 1:00,6.4,189, Numeric Errors,nan
CVE-2009-1952,29/09/2017 1:34,5/06/2009 21:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1951,29/09/2017 1:34,5/06/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1950,29/09/2017 1:34,5/06/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1949,29/09/2017 1:34,5/06/2009 21:30,7.8,200, Information Exposure,nan
CVE-2009-1948,29/09/2017 1:34,5/06/2009 21:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1947,29/09/2017 1:34,5/06/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1946,29/09/2017 1:34,5/06/2009 21:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1945,29/09/2017 1:34,5/06/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1944,29/09/2017 1:34,5/06/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1941,29/09/2017 1:34,5/06/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1936,29/09/2017 1:34,5/06/2009 18:30,6.8,20, Improper Input Validation,nan
CVE-2009-1932,29/09/2017 1:34,4/06/2009 20:30,6.8,189, Numeric Errors,nan
CVE-2009-1916,29/09/2017 1:34,4/06/2009 17:30,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-1913,29/09/2017 1:34,4/06/2009 16:30,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1912,29/09/2017 1:34,4/06/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1904,29/09/2017 1:34,11/06/2009 21:30,5.0,189, Numeric Errors,nan
CVE-2009-1893,29/09/2017 1:34,17/07/2009 16:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1889,29/09/2017 1:34,1/07/2009 13:00,5.0,399, Resource Management Errors,nan
CVE-2009-1887,29/09/2017 1:34,26/06/2009 18:30,5.0,189, Numeric Errors,nan
CVE-2009-1883,29/09/2017 1:34,18/09/2009 10:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1870,29/09/2017 1:34,31/07/2009 19:30,4.9,200, Information Exposure,nan
CVE-2009-1868,29/09/2017 1:34,31/07/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1867,29/09/2017 1:34,31/07/2009 19:30,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1866,29/09/2017 1:34,31/07/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1864,29/09/2017 1:34,31/07/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1863,29/09/2017 1:34,31/07/2009 19:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1854,29/09/2017 1:34,1/06/2009 19:30,7.5,287, Improper Authentication,nan
CVE-2009-1853,29/09/2017 1:34,1/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1852,29/09/2017 1:34,1/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1850,29/09/2017 1:34,1/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1848,29/09/2017 1:34,1/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1847,29/09/2017 1:34,1/06/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1846,29/09/2017 1:34,1/06/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1840,29/09/2017 1:34,12/06/2009 21:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1839,29/09/2017 1:34,12/06/2009 21:30,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1831,29/09/2017 1:34,29/05/2009 22:30,9.3,189, Numeric Errors,nan
CVE-2009-1830,29/09/2017 1:34,29/05/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1826,29/09/2017 1:34,29/05/2009 20:30,6.5,287, Improper Authentication,nan
CVE-2009-1825,29/09/2017 1:34,29/05/2009 20:30,4.0,287, Improper Authentication,nan
CVE-2009-1824,29/09/2017 1:34,29/05/2009 18:30,7.2,20, Improper Input Validation,nan
CVE-2009-1822,29/09/2017 1:34,29/05/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1821,29/09/2017 1:34,29/05/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1820,29/09/2017 1:34,29/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1819,29/09/2017 1:34,29/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1818,29/09/2017 1:34,29/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1817,29/09/2017 1:34,29/05/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1816,29/09/2017 1:34,29/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1815,29/09/2017 1:34,29/05/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1814,29/09/2017 1:34,29/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1813,29/09/2017 1:34,29/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1812,29/09/2017 1:34,29/05/2009 16:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1811,29/09/2017 1:34,29/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1810,29/09/2017 1:34,29/05/2009 16:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1809,29/09/2017 1:34,29/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1804,29/09/2017 1:34,28/05/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1799,29/09/2017 1:34,28/05/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1787,29/09/2017 1:34,26/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1786,29/09/2017 1:34,26/05/2009 15:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1781,29/09/2017 1:34,22/05/2009 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1780,29/09/2017 1:34,22/05/2009 20:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1779,29/09/2017 1:34,22/05/2009 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1774,29/09/2017 1:34,22/05/2009 18:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1771,29/09/2017 1:34,22/05/2009 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1770,29/09/2017 1:34,22/05/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1768,29/09/2017 1:34,22/05/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1767,29/09/2017 1:34,22/05/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1765,29/09/2017 1:34,22/05/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1764,29/09/2017 1:34,22/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1759,29/09/2017 1:34,22/05/2009 11:52,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1758,29/09/2017 1:34,22/05/2009 11:52,5.0,399, Resource Management Errors,nan
CVE-2009-1752,29/09/2017 1:34,22/05/2009 11:52,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1751,29/09/2017 1:34,22/05/2009 11:52,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1749,29/09/2017 1:34,22/05/2009 11:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1748,29/09/2017 1:34,22/05/2009 11:52,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1747,29/09/2017 1:34,22/05/2009 11:52,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1746,29/09/2017 1:34,21/05/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1744,29/09/2017 1:34,21/05/2009 1:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1742,29/09/2017 1:34,20/05/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1741,29/09/2017 1:34,20/05/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1739,29/09/2017 1:34,20/05/2009 19:30,7.5,20, Improper Input Validation,nan
CVE-2009-1736,29/09/2017 1:34,20/05/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1735,29/09/2017 1:34,20/05/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1734,29/09/2017 1:34,20/05/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1726,29/09/2017 1:34,6/08/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1725,29/09/2017 1:34,9/07/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-1724,29/09/2017 1:34,9/07/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1699,29/09/2017 1:34,10/06/2009 18:00,7.1,200, Information Exposure,nan
CVE-2009-1687,29/09/2017 1:34,10/06/2009 14:30,9.3,399, Resource Management Errors,nan
CVE-2009-1678,29/09/2017 1:34,18/05/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1677,29/09/2017 1:34,18/05/2009 18:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1675,29/09/2017 1:34,18/05/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1674,29/09/2017 1:34,18/05/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1672,29/09/2017 1:34,18/05/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1671,29/09/2017 1:34,18/05/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1670,29/09/2017 1:34,18/05/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-1669,29/09/2017 1:34,18/05/2009 18:30,10.0,20, Improper Input Validation,nan
CVE-2009-1668,29/09/2017 1:34,18/05/2009 18:30,4.0,20, Improper Input Validation,nan
CVE-2009-1667,29/09/2017 1:34,18/05/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1665,29/09/2017 1:34,18/05/2009 12:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1664,29/09/2017 1:34,18/05/2009 12:00,7.5,287, Improper Authentication,nan
CVE-2009-1662,29/09/2017 1:34,18/05/2009 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1660,29/09/2017 1:34,18/05/2009 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1658,29/09/2017 1:34,18/05/2009 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1655,29/09/2017 1:34,16/05/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1654,29/09/2017 1:34,16/05/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1653,29/09/2017 1:34,16/05/2009 18:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1652,29/09/2017 1:34,16/05/2009 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1651,29/09/2017 1:34,16/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1650,29/09/2017 1:34,16/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1649,29/09/2017 1:34,16/05/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1647,29/09/2017 1:34,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1646,29/09/2017 1:34,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1645,29/09/2017 1:34,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1644,29/09/2017 1:34,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1643,29/09/2017 1:34,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1641,29/09/2017 1:34,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1638,29/09/2017 1:34,15/05/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2009-1637,29/09/2017 1:34,15/05/2009 15:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1632,29/09/2017 1:34,14/05/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2009-1627,29/09/2017 1:34,12/05/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1626,29/09/2017 1:34,12/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1625,29/09/2017 1:34,12/05/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1624,29/09/2017 1:34,12/05/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1623,29/09/2017 1:34,12/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1622,29/09/2017 1:34,12/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1619,29/09/2017 1:34,12/05/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2009-1618,29/09/2017 1:34,12/05/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2009-1617,29/09/2017 1:34,12/05/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2009-1614,29/09/2017 1:34,11/05/2009 20:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1613,29/09/2017 1:34,11/05/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1612,29/09/2017 1:34,11/05/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1611,29/09/2017 1:34,11/05/2009 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1610,29/09/2017 1:34,11/05/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1609,29/09/2017 1:34,11/05/2009 20:00,6.8,20, Improper Input Validation,nan
CVE-2009-1607,29/09/2017 1:34,11/05/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1602,29/09/2017 1:34,11/05/2009 15:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1592,29/09/2017 1:34,8/05/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1587,29/09/2017 1:34,7/05/2009 23:30,7.5,287, Improper Authentication,nan
CVE-2009-1582,29/09/2017 1:34,7/05/2009 23:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1581,29/09/2017 1:34,14/05/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1580,29/09/2017 1:34,14/05/2009 17:30,5.8,287, Improper Authentication,nan
CVE-2009-1579,29/09/2017 1:34,14/05/2009 17:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1578,29/09/2017 1:34,14/05/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1577,29/09/2017 1:34,7/05/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1551,29/09/2017 1:34,6/05/2009 15:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1550,29/09/2017 1:34,6/05/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1549,29/09/2017 1:34,6/05/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2009-1548,29/09/2017 1:34,6/05/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1519,29/09/2017 1:34,4/05/2009 19:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1516,29/09/2017 1:34,4/05/2009 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1514,29/09/2017 1:34,4/05/2009 16:30,5.0,399, Resource Management Errors,nan
CVE-2009-1512,29/09/2017 1:34,1/05/2009 22:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1511,29/09/2017 1:34,1/05/2009 18:30,7.8,399, Resource Management Errors,nan
CVE-2009-1510,29/09/2017 1:34,1/05/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1509,29/09/2017 1:34,1/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1508,29/09/2017 1:34,1/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1506,29/09/2017 1:34,1/05/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1504,29/09/2017 1:34,1/05/2009 17:30,7.5,287, Improper Authentication,nan
CVE-2009-1503,29/09/2017 1:34,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1502,29/09/2017 1:34,1/05/2009 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1499,29/09/2017 1:34,1/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1498,29/09/2017 1:34,1/05/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1496,29/09/2017 1:34,1/05/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1495,29/09/2017 1:34,1/05/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1493,29/09/2017 1:34,30/04/2009 20:30,6.8,399, Resource Management Errors,nan
CVE-2009-1489,29/09/2017 1:34,29/04/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-1488,29/09/2017 1:34,29/04/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1487,29/09/2017 1:34,29/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1486,29/09/2017 1:34,29/04/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1452,29/09/2017 1:34,28/04/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1451,29/09/2017 1:34,28/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1450,29/09/2017 1:34,28/04/2009 15:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1449,29/09/2017 1:34,27/04/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1446,29/09/2017 1:34,27/04/2009 19:30,6.5,20, Improper Input Validation,nan
CVE-2009-1445,29/09/2017 1:34,27/04/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1444,29/09/2017 1:34,27/04/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1411,29/09/2017 1:34,24/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1410,29/09/2017 1:34,24/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1409,29/09/2017 1:34,24/04/2009 14:30,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1407,29/09/2017 1:34,24/04/2009 14:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1406,29/09/2017 1:34,24/04/2009 14:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1405,29/09/2017 1:34,24/04/2009 14:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1404,29/09/2017 1:34,24/04/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1403,29/09/2017 1:34,24/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1387,29/09/2017 1:34,4/06/2009 16:30,5.0,399, Resource Management Errors,nan
CVE-2009-1379,29/09/2017 1:34,19/05/2009 19:30,5.0,399, Resource Management Errors,nan
CVE-2009-1378,29/09/2017 1:34,19/05/2009 19:30,5.0,399, Resource Management Errors,nan
CVE-2009-1377,29/09/2017 1:34,19/05/2009 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1376,29/09/2017 1:34,26/05/2009 15:30,9.3,189, Numeric Errors,nan
CVE-2009-1375,29/09/2017 1:34,26/05/2009 15:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1374,29/09/2017 1:34,26/05/2009 15:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1373,29/09/2017 1:34,26/05/2009 15:30,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1370,29/09/2017 1:34,22/04/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1369,29/09/2017 1:34,22/04/2009 21:30,5.0,20, Improper Input Validation,nan
CVE-2009-1368,29/09/2017 1:34,22/04/2009 21:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1367,29/09/2017 1:34,22/04/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1356,29/09/2017 1:34,21/04/2009 16:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1355,29/09/2017 1:34,21/04/2009 16:24,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1352,29/09/2017 1:34,21/04/2009 16:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1351,29/09/2017 1:34,21/04/2009 16:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1347,29/09/2017 1:34,20/04/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1346,29/09/2017 1:34,20/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1345,29/09/2017 1:34,20/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1341,29/09/2017 1:34,30/04/2009 20:30,5.0,200, Information Exposure,nan
CVE-2009-1331,29/09/2017 1:34,17/04/2009 14:30,9.3,189, Numeric Errors,nan
CVE-2009-1330,29/09/2017 1:34,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1328,29/09/2017 1:34,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1327,29/09/2017 1:34,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1326,29/09/2017 1:34,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1325,29/09/2017 1:34,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1324,29/09/2017 1:34,17/04/2009 14:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1323,29/09/2017 1:34,17/04/2009 14:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1322,29/09/2017 1:34,17/04/2009 14:08,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1321,29/09/2017 1:34,17/04/2009 14:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1319,29/09/2017 1:34,17/04/2009 14:08,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1318,29/09/2017 1:34,17/04/2009 14:08,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1317,29/09/2017 1:34,17/04/2009 14:08,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1313,29/09/2017 1:34,30/04/2009 21:30,9.3,399, Resource Management Errors,nan
CVE-2009-1283,29/09/2017 1:34,9/04/2009 16:27,6.8,310, Cryptographic Issues,nan
CVE-2009-1282,29/09/2017 1:34,9/04/2009 16:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1278,29/09/2017 1:34,9/04/2009 16:27,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1277,29/09/2017 1:34,9/04/2009 16:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1263,29/09/2017 1:34,7/04/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1260,29/09/2017 1:34,7/04/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1259,29/09/2017 1:34,7/04/2009 23:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1257,29/09/2017 1:34,7/04/2009 23:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1256,29/09/2017 1:34,7/04/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1248,29/09/2017 1:34,6/04/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1247,29/09/2017 1:34,6/04/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1246,29/09/2017 1:34,6/04/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1238,29/09/2017 1:34,2/04/2009 17:30,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1237,29/09/2017 1:34,2/04/2009 17:30,4.9,399, Resource Management Errors,nan
CVE-2009-1236,29/09/2017 1:34,2/04/2009 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1235,29/09/2017 1:34,2/04/2009 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-1234,29/09/2017 1:34,2/04/2009 17:30,4.3,20, Improper Input Validation,nan
CVE-2009-1233,29/09/2017 1:34,2/04/2009 17:30,4.3,20, Improper Input Validation,nan
CVE-2009-1232,29/09/2017 1:34,2/04/2009 17:30,4.3,20, Improper Input Validation,nan
CVE-2009-1230,29/09/2017 1:34,2/04/2009 15:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1229,29/09/2017 1:34,2/04/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1228,29/09/2017 1:34,2/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1226,29/09/2017 1:34,2/04/2009 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1224,29/09/2017 1:34,2/04/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1209,29/09/2017 1:34,1/04/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1207,29/09/2017 1:34,1/04/2009 10:30,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1196,29/09/2017 1:34,9/06/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2009-1191,29/09/2017 1:34,23/04/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-1169,29/09/2017 1:34,27/03/2009 0:30,9.3,399, Resource Management Errors,nan
CVE-2009-1168,29/09/2017 1:34,30/07/2009 18:30,7.1,399, Resource Management Errors,nan
CVE-2009-1087,29/09/2017 1:34,25/03/2009 18:30,9.3,20, Improper Input Validation,nan
CVE-2009-1067,29/09/2017 1:34,26/03/2009 5:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1066,29/09/2017 1:34,26/03/2009 5:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1064,29/09/2017 1:34,26/03/2009 5:51,5.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1063,29/09/2017 1:34,26/03/2009 5:51,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1059,29/09/2017 1:34,24/03/2009 14:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1058,29/09/2017 1:34,24/03/2009 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1057,29/09/2017 1:34,24/03/2009 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1050,29/09/2017 1:34,24/03/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2009-1049,29/09/2017 1:34,24/03/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1045,29/09/2017 1:34,23/03/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2009-1041,29/09/2017 1:34,26/03/2009 5:51,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1040,29/09/2017 1:34,20/03/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1038,29/09/2017 1:34,20/03/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1033,29/09/2017 1:34,20/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1032,29/09/2017 1:34,20/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1031,29/09/2017 1:34,20/03/2009 0:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1028,29/09/2017 1:34,20/03/2009 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1026,29/09/2017 1:34,20/03/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1025,29/09/2017 1:34,20/03/2009 0:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1024,29/09/2017 1:34,20/03/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1023,29/09/2017 1:34,20/03/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0968,29/09/2017 1:34,19/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0967,29/09/2017 1:34,19/03/2009 10:30,4.0,399, Resource Management Errors,nan
CVE-2009-0966,29/09/2017 1:34,19/03/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0965,29/09/2017 1:34,19/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0946,29/09/2017 1:34,17/04/2009 0:30,10.0,189, Numeric Errors,nan
CVE-2009-0914,29/09/2017 1:34,16/03/2009 19:30,9.3,399, Resource Management Errors,nan
CVE-2009-0910,29/09/2017 1:34,6/04/2009 15:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0909,29/09/2017 1:34,6/04/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0886,29/09/2017 1:34,12/03/2009 15:20,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0885,29/09/2017 1:34,12/03/2009 15:20,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0883,29/09/2017 1:34,12/03/2009 15:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0881,29/09/2017 1:34,12/03/2009 15:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0866,29/09/2017 1:34,10/03/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0864,29/09/2017 1:34,10/03/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2009-0863,29/09/2017 1:34,10/03/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0833,29/09/2017 1:34,5/03/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0831,29/09/2017 1:34,5/03/2009 20:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0828,29/09/2017 1:34,5/03/2009 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0827,29/09/2017 1:34,5/03/2009 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0826,29/09/2017 1:34,5/03/2009 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0813,29/09/2017 1:34,5/03/2009 2:30,9.3,20, Improper Input Validation,nan
CVE-2009-0810,29/09/2017 1:34,4/03/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0807,29/09/2017 1:34,4/03/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0798,29/09/2017 1:34,24/04/2009 15:30,5.0,399, Resource Management Errors,nan
CVE-2009-0793,29/09/2017 1:34,9/04/2009 15:08,4.3,20, Improper Input Validation,nan
CVE-2009-0791,29/09/2017 1:34,9/06/2009 17:30,6.8,189, Numeric Errors,nan
CVE-2009-0784,29/09/2017 1:34,25/03/2009 23:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-0777,29/09/2017 1:34,5/03/2009 2:30,5.8,20, Improper Input Validation,nan
CVE-2009-0775,29/09/2017 1:34,5/03/2009 2:30,10.0,399, Resource Management Errors,nan
CVE-2009-0773,29/09/2017 1:34,5/03/2009 2:30,10.0,399, Resource Management Errors,nan
CVE-2009-0771,29/09/2017 1:34,5/03/2009 2:30,10.0,399, Resource Management Errors,nan
CVE-2009-0768,29/09/2017 1:34,6/03/2009 6:50,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0767,29/09/2017 1:34,6/03/2009 6:50,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0765,29/09/2017 1:34,6/03/2009 6:50,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0763,29/09/2017 1:34,6/03/2009 6:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0761,29/09/2017 1:34,6/03/2009 6:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0760,29/09/2017 1:34,6/03/2009 6:50,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0753,29/09/2017 1:34,3/03/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0751,29/09/2017 1:34,2/03/2009 22:30,5.0,399, Resource Management Errors,nan
CVE-2009-0750,29/09/2017 1:33,2/03/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0740,29/09/2017 1:33,25/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0739,29/09/2017 1:33,25/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0738,29/09/2017 1:33,25/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0735,29/09/2017 1:33,25/02/2009 20:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0731,29/09/2017 1:33,24/02/2009 23:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0728,29/09/2017 1:33,24/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0726,29/09/2017 1:33,24/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0722,29/09/2017 1:33,24/02/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0711,29/09/2017 1:33,23/02/2009 15:30,5.0,200, Information Exposure,nan
CVE-2009-0707,29/09/2017 1:33,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0705,29/09/2017 1:33,23/02/2009 15:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0704,29/09/2017 1:33,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0703,29/09/2017 1:33,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0702,29/09/2017 1:33,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0701,29/09/2017 1:33,23/02/2009 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0692,29/09/2017 1:33,14/07/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0688,29/09/2017 1:33,15/05/2009 15:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0687,29/09/2017 1:33,11/08/2009 10:30,7.8,399, Resource Management Errors,nan
CVE-2009-0680,29/09/2017 1:33,22/02/2009 22:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0663,29/09/2017 1:33,30/04/2009 20:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0650,29/09/2017 1:33,20/02/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0645,29/09/2017 1:33,18/02/2009 23:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0643,29/09/2017 1:33,20/02/2009 6:47,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0642,29/09/2017 1:33,20/02/2009 6:47,6.8,287, Improper Authentication,nan
CVE-2009-0641,29/09/2017 1:33,20/02/2009 6:47,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-0639,29/09/2017 1:33,18/02/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0628,29/09/2017 1:33,27/03/2009 16:30,9.0,200, Information Exposure,nan
CVE-2009-0626,29/09/2017 1:33,27/03/2009 16:30,7.8,399, Resource Management Errors,nan
CVE-2009-0604,29/09/2017 1:33,16/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0602,29/09/2017 1:33,16/02/2009 20:30,7.5,20, Improper Input Validation,nan
CVE-2009-0598,29/09/2017 1:33,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0597,29/09/2017 1:33,16/02/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0596,29/09/2017 1:33,16/02/2009 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0595,29/09/2017 1:33,16/02/2009 17:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0594,29/09/2017 1:33,16/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0593,29/09/2017 1:33,16/02/2009 17:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0592,29/09/2017 1:33,16/02/2009 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0582,29/09/2017 1:33,14/03/2009 18:30,5.8,20, Improper Input Validation,nan
CVE-2009-0578,29/09/2017 1:33,5/03/2009 2:30,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0577,29/09/2017 1:33,20/02/2009 19:30,6.8,189, Numeric Errors,nan
CVE-2009-0574,29/09/2017 1:33,13/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0571,29/09/2017 1:33,13/02/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0570,29/09/2017 1:33,13/02/2009 17:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0547,29/09/2017 1:33,12/02/2009 23:30,5.0,310, Cryptographic Issues,nan
CVE-2009-0536,29/09/2017 1:33,11/02/2009 20:30,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-0535,29/09/2017 1:33,11/02/2009 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0534,29/09/2017 1:33,11/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0531,29/09/2017 1:33,11/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0530,29/09/2017 1:33,11/02/2009 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0529,29/09/2017 1:33,11/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0528,29/09/2017 1:33,11/02/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0527,29/09/2017 1:33,11/02/2009 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0526,29/09/2017 1:33,11/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0521,29/09/2017 1:33,26/02/2009 16:17,4.6,200, Information Exposure,nan
CVE-2009-0520,29/09/2017 1:33,26/02/2009 16:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0519,29/09/2017 1:33,26/02/2009 16:17,9.3,20, Improper Input Validation,nan
CVE-2009-0518,29/09/2017 1:33,6/04/2009 15:30,2.1,200, Information Exposure,nan
CVE-2009-0515,29/09/2017 1:33,11/02/2009 0:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0514,29/09/2017 1:33,11/02/2009 0:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0513,29/09/2017 1:33,11/02/2009 0:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0498,29/09/2017 1:33,10/02/2009 1:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0495,29/09/2017 1:33,10/02/2009 1:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0494,29/09/2017 1:33,10/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0493,29/09/2017 1:33,10/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0491,29/09/2017 1:33,10/02/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0480,29/09/2017 1:33,9/02/2009 16:30,4.9,189, Numeric Errors,nan
CVE-2009-0468,29/09/2017 1:33,10/02/2009 7:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0467,29/09/2017 1:33,10/02/2009 7:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0465,29/09/2017 1:33,10/02/2009 7:00,9.3,20, Improper Input Validation,nan
CVE-2009-0464,29/09/2017 1:33,10/02/2009 7:00,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0463,29/09/2017 1:33,10/02/2009 7:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0462,29/09/2017 1:33,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0457,29/09/2017 1:33,10/02/2009 7:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0456,29/09/2017 1:33,10/02/2009 7:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0454,29/09/2017 1:33,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0453,29/09/2017 1:33,10/02/2009 7:00,5.0,200, Information Exposure,nan
CVE-2009-0452,29/09/2017 1:33,10/02/2009 7:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0451,29/09/2017 1:33,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0450,29/09/2017 1:33,10/02/2009 7:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0448,29/09/2017 1:33,10/02/2009 7:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0447,29/09/2017 1:33,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0446,29/09/2017 1:33,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0445,29/09/2017 1:33,10/02/2009 7:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0444,29/09/2017 1:33,10/02/2009 7:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0443,29/09/2017 1:33,10/02/2009 7:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0442,29/09/2017 1:33,10/02/2009 7:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0441,29/09/2017 1:33,10/02/2009 7:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0425,29/09/2017 1:33,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0423,29/09/2017 1:33,5/02/2009 0:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0421,29/09/2017 1:33,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0420,29/09/2017 1:33,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0418,29/09/2017 1:33,4/02/2009 19:30,9.3,20, Improper Input Validation,nan
CVE-2009-0407,29/09/2017 1:33,3/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0406,29/09/2017 1:33,3/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0405,29/09/2017 1:33,3/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0403,29/09/2017 1:33,3/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0400,29/09/2017 1:33,3/02/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0399,29/09/2017 1:33,3/02/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0398,29/09/2017 1:33,3/02/2009 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0395,29/09/2017 1:33,3/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0394,29/09/2017 1:33,3/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0384,29/09/2017 1:33,2/02/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0383,29/09/2017 1:33,2/02/2009 19:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0381,29/09/2017 1:33,2/02/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0380,29/09/2017 1:33,2/02/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0379,29/09/2017 1:33,2/02/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0373,29/09/2017 1:33,30/01/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0372,29/09/2017 1:33,30/01/2009 19:30,6.5,20, Improper Input Validation,nan
CVE-2009-0371,29/09/2017 1:33,30/01/2009 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0365,29/09/2017 1:33,5/03/2009 2:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-0358,29/09/2017 1:33,4/02/2009 19:30,3.3,200, Information Exposure,nan
CVE-2009-0357,29/09/2017 1:33,4/02/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0356,29/09/2017 1:33,4/02/2009 19:30,5.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0355,29/09/2017 1:33,4/02/2009 19:30,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0354,29/09/2017 1:33,4/02/2009 19:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0351,29/09/2017 1:33,29/01/2009 19:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0350,29/09/2017 1:33,29/01/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0349,29/09/2017 1:33,29/01/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0340,29/09/2017 1:33,29/01/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0337,29/09/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0336,29/09/2017 1:33,29/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0335,29/09/2017 1:33,29/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0334,29/09/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0331,29/09/2017 1:33,29/01/2009 18:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0330,29/09/2017 1:33,29/01/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0329,29/09/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0328,29/09/2017 1:33,29/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0327,29/09/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0325,29/09/2017 1:33,29/01/2009 18:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0324,29/09/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0321,29/09/2017 1:33,28/01/2009 18:30,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0299,29/09/2017 1:33,27/01/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0298,29/09/2017 1:33,27/01/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0297,29/09/2017 1:33,27/01/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0296,29/09/2017 1:33,27/01/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0295,29/09/2017 1:33,27/01/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0293,29/09/2017 1:33,27/01/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0292,29/09/2017 1:33,27/01/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0290,29/09/2017 1:33,27/01/2009 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0286,29/09/2017 1:33,27/01/2009 18:30,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0284,29/09/2017 1:33,27/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0281,29/09/2017 1:33,27/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0279,29/09/2017 1:33,27/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0268,29/09/2017 1:33,26/01/2009 15:30,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-0261,29/09/2017 1:33,23/01/2009 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0259,29/09/2017 1:33,22/01/2009 23:30,9.3,399, Resource Management Errors,nan
CVE-2009-0252,29/09/2017 1:33,22/01/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0251,29/09/2017 1:33,22/01/2009 16:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0250,29/09/2017 1:33,22/01/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0249,29/09/2017 1:33,22/01/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0248,29/09/2017 1:33,22/01/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0182,29/09/2017 1:33,20/01/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0175,29/09/2017 1:33,20/01/2009 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0174,29/09/2017 1:33,20/01/2009 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0153,29/09/2017 1:33,13/05/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0148,29/09/2017 1:33,5/05/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0133,29/09/2017 1:33,15/01/2009 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0119,29/09/2017 1:33,14/01/2009 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0115,29/09/2017 1:33,30/03/2009 16:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0113,29/09/2017 1:33,9/01/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0111,29/09/2017 1:33,9/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0110,29/09/2017 1:33,9/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0109,29/09/2017 1:33,9/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0108,29/09/2017 1:33,9/01/2009 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0105,29/09/2017 1:33,9/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0104,29/09/2017 1:33,9/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0103,29/09/2017 1:33,9/01/2009 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0071,29/09/2017 1:33,8/01/2009 19:30,2.6,399, Resource Management Errors,nan
CVE-2009-0070,29/09/2017 1:33,8/01/2009 19:30,9.3,189, Numeric Errors,nan
CVE-2009-0065,29/09/2017 1:33,7/01/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0036,29/09/2017 1:33,11/02/2009 20:30,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0031,29/09/2017 1:33,21/01/2009 2:30,4.9,399, Resource Management Errors,nan
CVE-2009-0030,29/09/2017 1:33,21/01/2009 20:30,6.5,287, Improper Authentication,nan
CVE-2009-0008,29/09/2017 1:33,22/01/2009 18:30,7.6,20, Improper Input Validation,nan
CVE-2009-0007,29/09/2017 1:33,21/01/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7240,29/09/2017 1:33,17/09/2009 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7224,29/09/2017 1:33,14/09/2009 14:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7210,29/09/2017 1:33,11/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7188,29/09/2017 1:33,9/09/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7182,29/09/2017 1:33,8/09/2009 10:30,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7181,29/09/2017 1:33,8/09/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7180,29/09/2017 1:33,8/09/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2008-7179,29/09/2017 1:33,8/09/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-7178,29/09/2017 1:33,8/09/2009 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7176,29/09/2017 1:33,8/09/2009 10:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7172,29/09/2017 1:33,8/09/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7171,29/09/2017 1:33,8/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7169,29/09/2017 1:33,8/09/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7167,29/09/2017 1:33,8/09/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7163,29/09/2017 1:33,4/09/2009 10:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7157,29/09/2017 1:33,2/09/2009 17:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7156,29/09/2017 1:33,2/09/2009 17:30,6.8,287, Improper Authentication,nan
CVE-2008-7154,29/09/2017 1:33,2/09/2009 17:30,5.0,200, Information Exposure,nan
CVE-2008-7153,29/09/2017 1:33,2/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7136,29/09/2017 1:33,1/09/2009 16:30,4.3,20, Improper Input Validation,nan
CVE-2008-7124,29/09/2017 1:33,31/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-7123,29/09/2017 1:33,31/08/2009 10:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7119,29/09/2017 1:33,28/08/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7118,29/09/2017 1:33,28/08/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7117,29/09/2017 1:33,28/08/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7116,29/09/2017 1:33,28/08/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7115,29/09/2017 1:33,28/08/2009 15:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7114,29/09/2017 1:33,28/08/2009 15:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7107,29/09/2017 1:33,28/08/2009 15:30,7.2,20, Improper Input Validation,nan
CVE-2008-7103,29/09/2017 1:33,27/08/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7098,29/09/2017 1:33,27/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7097,29/09/2017 1:33,27/08/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7088,29/09/2017 1:33,26/08/2009 14:24,6.5,20, Improper Input Validation,nan
CVE-2008-7086,29/09/2017 1:33,26/08/2009 14:24,7.5,287, Improper Authentication,nan
CVE-2008-7085,29/09/2017 1:33,26/08/2009 14:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7083,29/09/2017 1:33,25/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7080,29/09/2017 1:33,25/08/2009 10:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7079,29/09/2017 1:33,25/08/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7077,29/09/2017 1:33,25/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7076,29/09/2017 1:33,25/08/2009 10:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7075,29/09/2017 1:33,25/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7074,29/09/2017 1:33,25/08/2009 10:30,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-7073,29/09/2017 1:33,25/08/2009 10:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7072,29/09/2017 1:33,25/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7071,29/09/2017 1:33,25/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7069,29/09/2017 1:33,25/08/2009 10:30,7.5,200, Information Exposure,nan
CVE-2008-7067,29/09/2017 1:33,25/08/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7066,29/09/2017 1:33,25/08/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7064,29/09/2017 1:33,25/08/2009 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7063,29/09/2017 1:33,25/08/2009 10:30,5.0,200, Information Exposure,nan
CVE-2008-7062,29/09/2017 1:33,25/08/2009 10:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7058,29/09/2017 1:33,24/08/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7057,29/09/2017 1:33,24/08/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7056,29/09/2017 1:33,24/08/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7053,29/09/2017 1:33,24/08/2009 19:30,9.3,399, Resource Management Errors,nan
CVE-2008-7052,29/09/2017 1:33,24/08/2009 10:30,6.5,20, Improper Input Validation,nan
CVE-2008-7051,29/09/2017 1:33,24/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-7049,29/09/2017 1:33,24/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7047,29/09/2017 1:33,24/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-7045,29/09/2017 1:33,24/08/2009 10:30,6.4,287, Improper Authentication,nan
CVE-2008-7044,29/09/2017 1:33,24/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7043,29/09/2017 1:33,24/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7042,29/09/2017 1:33,24/08/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7041,29/09/2017 1:33,24/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-7028,29/09/2017 1:33,21/08/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-7027,29/09/2017 1:33,21/08/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-7019,29/09/2017 1:33,21/08/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-7010,29/09/2017 1:33,19/08/2009 10:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7007,29/09/2017 1:33,19/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-7006,29/09/2017 1:33,19/08/2009 10:30,5.0,287, Improper Authentication,nan
CVE-2008-7003,29/09/2017 1:33,19/08/2009 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6998,29/09/2017 1:33,19/08/2009 5:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6995,29/09/2017 1:33,19/08/2009 5:24,4.3,189, Numeric Errors,nan
CVE-2008-6991,29/09/2017 1:33,19/08/2009 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6983,29/09/2017 1:33,19/08/2009 5:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6982,29/09/2017 1:33,19/08/2009 5:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6978,29/09/2017 1:33,19/08/2009 5:24,6.8,20, Improper Input Validation,nan
CVE-2008-6977,29/09/2017 1:33,19/08/2009 5:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6975,29/09/2017 1:33,14/08/2009 15:16,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6974,29/09/2017 1:33,14/08/2009 15:16,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6971,29/09/2017 1:33,13/08/2009 16:30,7.5,255, Credentials Management,nan
CVE-2008-6966,29/09/2017 1:33,13/08/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6965,29/09/2017 1:33,13/08/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2008-6964,29/09/2017 1:33,13/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6963,29/09/2017 1:33,13/08/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6960,29/09/2017 1:33,12/08/2009 10:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6958,29/09/2017 1:33,12/08/2009 10:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6957,29/09/2017 1:33,12/08/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6956,29/09/2017 1:33,12/08/2009 10:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6955,29/09/2017 1:33,12/08/2009 10:30,7.5,200, Information Exposure,nan
CVE-2008-6952,29/09/2017 1:33,12/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6951,29/09/2017 1:33,12/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-6950,29/09/2017 1:33,12/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6944,29/09/2017 1:33,12/08/2009 10:30,6.5,20, Improper Input Validation,nan
CVE-2008-6943,29/09/2017 1:33,12/08/2009 10:30,6.5,20, Improper Input Validation,nan
CVE-2008-6942,29/09/2017 1:33,12/08/2009 10:30,6.5,20, Improper Input Validation,nan
CVE-2008-6941,29/09/2017 1:33,12/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6940,29/09/2017 1:33,12/08/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6939,29/09/2017 1:33,12/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-6938,29/09/2017 1:33,11/08/2009 21:00,4.3,20, Improper Input Validation,nan
CVE-2008-6936,29/09/2017 1:33,11/08/2009 21:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6934,29/09/2017 1:33,11/08/2009 21:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6933,29/09/2017 1:33,11/08/2009 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6932,29/09/2017 1:33,11/08/2009 21:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6931,29/09/2017 1:33,11/08/2009 21:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6930,29/09/2017 1:33,11/08/2009 21:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6929,29/09/2017 1:33,11/08/2009 21:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6928,29/09/2017 1:33,11/08/2009 21:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6923,29/09/2017 1:33,10/08/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6922,29/09/2017 1:33,10/08/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6921,29/09/2017 1:33,10/08/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6920,29/09/2017 1:33,10/08/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6919,29/09/2017 1:33,10/08/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2008-6918,29/09/2017 1:33,10/08/2009 16:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6917,29/09/2017 1:33,7/08/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6916,29/09/2017 1:33,7/08/2009 19:00,10.0,287, Improper Authentication,nan
CVE-2008-6915,29/09/2017 1:33,7/08/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6914,29/09/2017 1:33,7/08/2009 19:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6913,29/09/2017 1:33,7/08/2009 19:00,6.5,20, Improper Input Validation,nan
CVE-2008-6912,29/09/2017 1:33,7/08/2009 19:00,7.5,287, Improper Authentication,nan
CVE-2008-6911,29/09/2017 1:33,6/08/2009 22:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6907,29/09/2017 1:33,6/08/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6906,29/09/2017 1:33,6/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6905,29/09/2017 1:33,6/08/2009 17:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6902,29/09/2017 1:33,6/08/2009 0:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6901,29/09/2017 1:33,6/08/2009 0:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6900,29/09/2017 1:33,6/08/2009 0:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6898,29/09/2017 1:33,5/08/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6897,29/09/2017 1:33,5/08/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6892,29/09/2017 1:33,3/08/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6889,29/09/2017 1:33,3/08/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6884,29/09/2017 1:33,31/07/2009 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6883,29/09/2017 1:33,30/07/2009 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6882,29/09/2017 1:33,30/07/2009 19:30,7.5,20, Improper Input Validation,nan
CVE-2008-6881,29/09/2017 1:33,30/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6878,29/09/2017 1:33,27/07/2009 14:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6877,29/09/2017 1:33,27/07/2009 14:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6874,29/09/2017 1:33,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6873,29/09/2017 1:33,23/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6872,29/09/2017 1:33,23/07/2009 19:30,5.0,200, Information Exposure,nan
CVE-2008-6871,29/09/2017 1:33,23/07/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6870,29/09/2017 1:33,23/07/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6869,29/09/2017 1:33,23/07/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6867,29/09/2017 1:33,14/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6864,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6863,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6862,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6861,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6860,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6859,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6858,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6857,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6856,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6855,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6854,29/09/2017 1:33,14/07/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6853,29/09/2017 1:33,7/07/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6852,29/09/2017 1:33,7/07/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6851,29/09/2017 1:33,7/07/2009 19:00,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6849,29/09/2017 1:33,7/07/2009 19:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6848,29/09/2017 1:33,7/07/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6844,29/09/2017 1:33,2/07/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6842,29/09/2017 1:33,2/07/2009 10:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6841,29/09/2017 1:33,1/07/2009 13:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6834,29/09/2017 1:33,22/06/2009 20:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6833,29/09/2017 1:33,22/06/2009 20:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6829,29/09/2017 1:33,8/06/2009 19:30,5.0,20, Improper Input Validation,nan
CVE-2008-6826,29/09/2017 1:33,8/06/2009 19:30,10.0,20, Improper Input Validation,nan
CVE-2008-6825,29/09/2017 1:33,5/06/2009 21:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6815,29/09/2017 1:33,28/05/2009 14:30,5.0,287, Improper Authentication,nan
CVE-2008-6814,29/09/2017 1:33,28/05/2009 14:30,6.8,20, Improper Input Validation,nan
CVE-2008-6813,29/09/2017 1:33,22/05/2009 11:52,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6812,29/09/2017 1:33,22/05/2009 11:52,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6810,29/09/2017 1:33,18/05/2009 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6809,29/09/2017 1:33,18/05/2009 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6808,29/09/2017 1:33,12/05/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6806,29/09/2017 1:33,12/05/2009 16:30,6.8,20, Improper Input Validation,nan
CVE-2008-6805,29/09/2017 1:33,11/05/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6804,29/09/2017 1:33,11/05/2009 20:30,7.5,287, Improper Authentication,nan
CVE-2008-6798,29/09/2017 1:33,7/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6796,29/09/2017 1:33,7/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6795,29/09/2017 1:33,7/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6794,29/09/2017 1:33,7/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6791,29/09/2017 1:33,4/05/2009 19:00,5.0,20, Improper Input Validation,nan
CVE-2008-6790,29/09/2017 1:33,4/05/2009 19:00,5.1,20, Improper Input Validation,nan
CVE-2008-6789,29/09/2017 1:33,4/05/2009 19:00,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6788,29/09/2017 1:33,4/05/2009 19:00,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6787,29/09/2017 1:33,1/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6785,29/09/2017 1:33,1/05/2009 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6784,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6783,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6782,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6781,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6780,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6778,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6777,29/09/2017 1:33,1/05/2009 17:30,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6776,29/09/2017 1:33,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6773,29/09/2017 1:33,29/04/2009 18:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6772,29/09/2017 1:33,29/04/2009 18:30,7.5,20, Improper Input Validation,nan
CVE-2008-6771,29/09/2017 1:33,29/04/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6770,29/09/2017 1:33,29/04/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6763,29/09/2017 1:33,28/04/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2008-6761,29/09/2017 1:33,28/04/2009 16:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6752,29/09/2017 1:33,24/04/2009 14:30,7.5,20, Improper Input Validation,nan
CVE-2008-6751,29/09/2017 1:33,24/04/2009 14:30,6.8,20, Improper Input Validation,nan
CVE-2008-6750,29/09/2017 1:33,24/04/2009 14:30,6.8,20, Improper Input Validation,nan
CVE-2008-6749,29/09/2017 1:33,24/04/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6745,29/09/2017 1:33,23/04/2009 17:30,7.5,20, Improper Input Validation,nan
CVE-2008-6743,29/09/2017 1:33,22/04/2009 21:30,7.5,287, Improper Authentication,nan
CVE-2008-6742,29/09/2017 1:33,21/04/2009 18:30,4.3,20, Improper Input Validation,nan
CVE-2008-6741,29/09/2017 1:33,21/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6740,29/09/2017 1:33,21/04/2009 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6739,29/09/2017 1:33,21/04/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2008-6738,29/09/2017 1:33,21/04/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2008-6735,29/09/2017 1:33,21/04/2009 18:30,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6734,29/09/2017 1:33,21/04/2009 18:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6731,29/09/2017 1:33,20/04/2009 14:30,9.3,20, Improper Input Validation,nan
CVE-2008-6730,29/09/2017 1:33,20/04/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6729,29/09/2017 1:33,20/04/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6727,29/09/2017 1:33,20/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6726,29/09/2017 1:33,17/04/2009 14:08,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6725,29/09/2017 1:33,17/04/2009 14:08,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6723,29/09/2017 1:33,14/04/2009 16:26,7.5,287, Improper Authentication,nan
CVE-2008-6721,29/09/2017 1:33,14/04/2009 16:26,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6720,29/09/2017 1:33,13/04/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6719,29/09/2017 1:33,13/04/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2008-6718,29/09/2017 1:33,13/04/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2008-6717,29/09/2017 1:33,13/04/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2008-6716,29/09/2017 1:33,13/04/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2008-6715,29/09/2017 1:33,13/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6714,29/09/2017 1:33,10/04/2009 22:00,7.5,287, Improper Authentication,nan
CVE-2008-6700,29/09/2017 1:33,10/04/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6684,29/09/2017 1:33,10/04/2009 22:00,6.8,20, Improper Input Validation,nan
CVE-2008-6683,29/09/2017 1:33,10/04/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6669,29/09/2017 1:33,8/04/2009 10:30,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-6668,29/09/2017 1:33,8/04/2009 10:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6667,29/09/2017 1:33,8/04/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-6665,29/09/2017 1:33,8/04/2009 10:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6664,29/09/2017 1:33,8/04/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2008-6663,29/09/2017 1:33,8/04/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6659,29/09/2017 1:33,7/04/2009 19:30,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6658,29/09/2017 1:33,7/04/2009 19:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6657,29/09/2017 1:33,7/04/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6656,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6653,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6652,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6651,29/09/2017 1:33,7/04/2009 14:17,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6650,29/09/2017 1:33,7/04/2009 14:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6649,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6648,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6647,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6642,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6641,29/09/2017 1:33,7/04/2009 14:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6638,29/09/2017 1:33,7/04/2009 14:17,8.8,16, Configuration,nan
CVE-2008-6636,29/09/2017 1:33,7/04/2009 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6635,29/09/2017 1:33,7/04/2009 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6634,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6633,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6632,29/09/2017 1:33,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6629,29/09/2017 1:33,6/04/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6627,29/09/2017 1:33,6/04/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6626,29/09/2017 1:33,6/04/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6625,29/09/2017 1:33,6/04/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6624,29/09/2017 1:33,6/04/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6623,29/09/2017 1:33,6/04/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6622,29/09/2017 1:33,6/04/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6614,29/09/2017 1:33,6/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6613,29/09/2017 1:33,6/04/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6612,29/09/2017 1:33,6/04/2009 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6611,29/09/2017 1:33,6/04/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6608,29/09/2017 1:33,6/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6607,29/09/2017 1:33,6/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6606,29/09/2017 1:33,6/04/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6605,29/09/2017 1:33,6/04/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6604,29/09/2017 1:33,4/04/2009 22:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6583,29/09/2017 1:33,3/04/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6582,29/09/2017 1:33,2/04/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6581,29/09/2017 1:33,2/04/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2008-6580,29/09/2017 1:33,2/04/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6559,29/09/2017 1:33,30/03/2009 20:30,7.2,20, Improper Input Validation,nan
CVE-2008-6558,29/09/2017 1:33,30/03/2009 20:30,7.2,20, Improper Input Validation,nan
CVE-2008-6553,29/09/2017 1:33,30/03/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2008-6552,29/09/2017 1:33,30/03/2009 16:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6551,29/09/2017 1:33,30/03/2009 16:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6539,29/09/2017 1:33,30/03/2009 1:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6538,29/09/2017 1:33,30/03/2009 1:30,5.0,20, Improper Input Validation,nan
CVE-2008-6537,29/09/2017 1:33,30/03/2009 1:30,5.0,200, Information Exposure,nan
CVE-2008-6535,29/09/2017 1:33,26/03/2009 21:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6534,29/09/2017 1:33,26/03/2009 21:00,7.1,20, Improper Input Validation,nan
CVE-2008-6529,29/09/2017 1:33,26/03/2009 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6527,29/09/2017 1:33,25/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6526,29/09/2017 1:33,25/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6525,29/09/2017 1:33,25/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6524,29/09/2017 1:33,25/03/2009 18:30,6.5,255, Credentials Management,nan
CVE-2008-6523,29/09/2017 1:33,25/03/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2008-6519,29/09/2017 1:33,25/03/2009 18:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-6518,29/09/2017 1:33,25/03/2009 18:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6513,29/09/2017 1:33,24/03/2009 14:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6502,29/09/2017 1:33,20/03/2009 18:30,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6501,29/09/2017 1:33,20/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6499,29/09/2017 1:33,20/03/2009 0:30,5.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6498,29/09/2017 1:33,20/03/2009 0:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6496,29/09/2017 1:33,20/03/2009 0:30,8.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6494,29/09/2017 1:33,20/03/2009 0:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6493,29/09/2017 1:33,20/03/2009 0:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6492,29/09/2017 1:33,20/03/2009 0:30,6.8,20, Improper Input Validation,nan
CVE-2008-6490,29/09/2017 1:33,19/03/2009 10:30,7.5,20, Improper Input Validation,nan
CVE-2008-6489,29/09/2017 1:33,19/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6488,29/09/2017 1:33,18/03/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6487,29/09/2017 1:33,18/03/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6485,29/09/2017 1:33,18/03/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6484,29/09/2017 1:33,18/03/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6483,29/09/2017 1:33,18/03/2009 15:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6482,29/09/2017 1:33,18/03/2009 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6481,29/09/2017 1:33,17/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6477,29/09/2017 1:33,16/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6475,29/09/2017 1:33,16/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6472,29/09/2017 1:33,14/03/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2008-6471,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6469,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6468,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6467,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6466,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6464,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6454,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6453,29/09/2017 1:33,13/03/2009 10:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6452,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6451,29/09/2017 1:33,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6447,29/09/2017 1:33,9/03/2009 14:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6446,29/09/2017 1:33,9/03/2009 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6430,29/09/2017 1:33,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6429,29/09/2017 1:33,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6425,29/09/2017 1:33,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6423,29/09/2017 1:33,6/03/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6422,29/09/2017 1:33,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6421,29/09/2017 1:33,6/03/2009 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6420,29/09/2017 1:33,6/03/2009 18:30,5.0,200, Information Exposure,nan
CVE-2008-6419,29/09/2017 1:33,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6414,29/09/2017 1:33,6/03/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6411,29/09/2017 1:33,6/03/2009 11:30,7.5,287, Improper Authentication,nan
CVE-2008-6410,29/09/2017 1:33,6/03/2009 11:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6409,29/09/2017 1:33,6/03/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6408,29/09/2017 1:33,6/03/2009 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6407,29/09/2017 1:33,6/03/2009 11:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6405,29/09/2017 1:33,6/03/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6403,29/09/2017 1:33,6/03/2009 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6402,29/09/2017 1:33,6/03/2009 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6401,29/09/2017 1:33,6/03/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6393,29/09/2017 1:33,3/03/2009 16:30,10.0,189, Numeric Errors,nan
CVE-2008-6390,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6389,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6388,29/09/2017 1:33,2/03/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6387,29/09/2017 1:33,2/03/2009 19:30,5.0,200, Information Exposure,nan
CVE-2008-6382,29/09/2017 1:33,2/03/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6381,29/09/2017 1:33,2/03/2009 19:30,4.6,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6380,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6379,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6378,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6377,29/09/2017 1:33,2/03/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6374,29/09/2017 1:33,2/03/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6372,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6371,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6370,29/09/2017 1:33,2/03/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6369,29/09/2017 1:33,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6367,29/09/2017 1:33,2/03/2009 19:30,8.5,20, Improper Input Validation,nan
CVE-2008-6366,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6365,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6364,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6363,29/09/2017 1:33,2/03/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6362,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6361,29/09/2017 1:33,2/03/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6358,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6357,29/09/2017 1:33,2/03/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6356,29/09/2017 1:33,2/03/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6355,29/09/2017 1:33,2/03/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6354,29/09/2017 1:33,2/03/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6353,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6352,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6351,29/09/2017 1:33,2/03/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6350,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6349,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6348,29/09/2017 1:33,2/03/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6347,29/09/2017 1:33,2/03/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6345,29/09/2017 1:33,27/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6337,29/09/2017 1:33,27/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6336,29/09/2017 1:33,27/02/2009 17:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6335,29/09/2017 1:33,27/02/2009 17:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6334,29/09/2017 1:33,27/02/2009 17:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6333,29/09/2017 1:33,27/02/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6332,29/09/2017 1:33,27/02/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6330,29/09/2017 1:33,27/02/2009 16:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6329,29/09/2017 1:33,27/02/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6328,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6327,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6324,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6323,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6322,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6321,29/09/2017 1:33,27/02/2009 11:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6320,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6319,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6318,29/09/2017 1:33,27/02/2009 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6317,29/09/2017 1:33,27/02/2009 11:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6316,29/09/2017 1:33,27/02/2009 11:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6315,29/09/2017 1:33,27/02/2009 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6314,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6313,29/09/2017 1:33,27/02/2009 11:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6312,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6311,29/09/2017 1:33,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6310,29/09/2017 1:33,27/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6309,29/09/2017 1:33,27/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6308,29/09/2017 1:33,27/02/2009 1:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6307,29/09/2017 1:33,26/02/2009 23:30,7.5,287, Improper Authentication,nan
CVE-2008-6305,29/09/2017 1:33,26/02/2009 23:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6303,29/09/2017 1:33,26/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6302,29/09/2017 1:33,26/02/2009 23:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6301,29/09/2017 1:33,26/02/2009 16:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6296,29/09/2017 1:33,26/02/2009 16:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6294,29/09/2017 1:33,26/02/2009 16:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6293,29/09/2017 1:33,26/02/2009 16:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6292,29/09/2017 1:33,26/02/2009 16:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6291,29/09/2017 1:33,26/02/2009 16:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6290,29/09/2017 1:33,26/02/2009 16:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6289,29/09/2017 1:33,26/02/2009 16:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6288,29/09/2017 1:33,25/02/2009 23:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6287,29/09/2017 1:33,25/02/2009 23:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6286,29/09/2017 1:33,25/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6285,29/09/2017 1:33,25/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6284,29/09/2017 1:33,25/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6282,29/09/2017 1:33,25/02/2009 23:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6281,29/09/2017 1:33,25/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6277,29/09/2017 1:33,25/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6274,29/09/2017 1:33,25/02/2009 23:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6272,29/09/2017 1:33,25/02/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6271,29/09/2017 1:33,25/02/2009 11:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6270,29/09/2017 1:33,25/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6269,29/09/2017 1:33,25/02/2009 11:30,7.5,287, Improper Authentication,nan
CVE-2008-6268,29/09/2017 1:33,25/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6267,29/09/2017 1:33,25/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6265,29/09/2017 1:33,24/02/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6264,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6263,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6261,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6260,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6259,29/09/2017 1:33,24/02/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6258,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6257,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6254,29/09/2017 1:33,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6252,29/09/2017 1:33,24/02/2009 18:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6251,29/09/2017 1:33,24/02/2009 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6249,29/09/2017 1:33,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6248,29/09/2017 1:33,23/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6245,29/09/2017 1:33,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6244,29/09/2017 1:33,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6243,29/09/2017 1:33,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6242,29/09/2017 1:33,23/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6241,29/09/2017 1:33,23/02/2009 15:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6237,29/09/2017 1:33,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6235,29/09/2017 1:33,21/02/2009 23:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-6233,29/09/2017 1:33,20/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6232,29/09/2017 1:33,20/02/2009 23:30,7.5,255, Credentials Management,nan
CVE-2008-6231,29/09/2017 1:33,20/02/2009 23:30,7.5,255, Credentials Management,nan
CVE-2008-6230,29/09/2017 1:33,20/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6228,29/09/2017 1:33,20/02/2009 23:30,7.5,255, Credentials Management,nan
CVE-2008-6227,29/09/2017 1:33,20/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6226,29/09/2017 1:33,20/02/2009 23:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6225,29/09/2017 1:33,20/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6221,29/09/2017 1:33,20/02/2009 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6220,29/09/2017 1:33,20/02/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6216,29/09/2017 1:33,20/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6215,29/09/2017 1:33,20/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6214,29/09/2017 1:33,20/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6213,29/09/2017 1:33,20/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6210,29/09/2017 1:33,20/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6209,29/09/2017 1:33,20/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6204,29/09/2017 1:33,20/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6202,29/09/2017 1:33,20/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6199,29/09/2017 1:33,20/02/2009 0:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6198,29/09/2017 1:33,20/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6197,29/09/2017 1:33,20/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6193,29/09/2017 1:33,19/02/2009 18:30,5.0,310, Cryptographic Issues,nan
CVE-2008-6186,29/09/2017 1:33,19/02/2009 18:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6185,29/09/2017 1:33,19/02/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2008-6184,29/09/2017 1:33,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6183,29/09/2017 1:33,19/02/2009 18:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6182,29/09/2017 1:33,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6181,29/09/2017 1:33,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6179,29/09/2017 1:33,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6178,29/09/2017 1:33,19/02/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6177,29/09/2017 1:33,19/02/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6175,29/09/2017 1:33,19/02/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2008-6172,29/09/2017 1:33,19/02/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6168,29/09/2017 1:33,19/02/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6167,29/09/2017 1:33,19/02/2009 15:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6166,29/09/2017 1:33,19/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6165,29/09/2017 1:32,19/02/2009 0:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6163,29/09/2017 1:32,20/02/2009 6:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6162,29/09/2017 1:32,20/02/2009 6:46,7.5,287, Improper Authentication,nan
CVE-2008-6156,29/09/2017 1:32,16/02/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6154,29/09/2017 1:32,16/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6153,29/09/2017 1:32,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6152,29/09/2017 1:32,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6151,29/09/2017 1:32,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6147,29/09/2017 1:32,16/02/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6146,29/09/2017 1:32,16/02/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6143,29/09/2017 1:32,16/02/2009 17:30,7.5,287, Improper Authentication,nan
CVE-2008-6142,29/09/2017 1:32,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6139,29/09/2017 1:32,14/02/2009 2:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6138,29/09/2017 1:32,14/02/2009 2:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6133,29/09/2017 1:32,13/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6132,29/09/2017 1:32,13/02/2009 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6123,29/09/2017 1:32,12/02/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2008-6118,29/09/2017 1:32,11/02/2009 17:30,7.5,287, Improper Authentication,nan
CVE-2008-6117,29/09/2017 1:32,11/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6116,29/09/2017 1:32,11/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6115,29/09/2017 1:32,11/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6114,29/09/2017 1:32,11/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6112,29/09/2017 1:32,11/02/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6111,29/09/2017 1:32,11/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6108,29/09/2017 1:32,10/02/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6102,29/09/2017 1:32,10/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6101,29/09/2017 1:32,10/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6100,29/09/2017 1:32,10/02/2009 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6093,29/09/2017 1:32,9/02/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6092,29/09/2017 1:32,9/02/2009 17:30,7.5,287, Improper Authentication,nan
CVE-2008-6091,29/09/2017 1:32,9/02/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6090,29/09/2017 1:32,6/02/2009 19:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6089,29/09/2017 1:32,6/02/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6088,29/09/2017 1:32,6/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6087,29/09/2017 1:32,6/02/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6086,29/09/2017 1:32,6/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6084,29/09/2017 1:32,6/02/2009 11:30,6.8,20, Improper Input Validation,nan
CVE-2008-6082,29/09/2017 1:32,6/02/2009 11:30,5.0,399, Resource Management Errors,nan
CVE-2008-6081,29/09/2017 1:32,6/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6080,29/09/2017 1:32,6/02/2009 11:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6078,29/09/2017 1:32,6/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6077,29/09/2017 1:32,6/02/2009 11:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6076,29/09/2017 1:32,6/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6068,29/09/2017 1:32,10/02/2009 6:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6064,29/09/2017 1:32,5/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6057,29/09/2017 1:32,4/02/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6050,29/09/2017 1:32,4/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6042,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6037,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6036,29/09/2017 1:32,3/02/2009 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6033,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6032,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6031,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6030,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6029,29/09/2017 1:32,3/02/2009 11:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6028,29/09/2017 1:32,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6025,29/09/2017 1:32,3/02/2009 11:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6023,29/09/2017 1:32,2/02/2009 22:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6022,29/09/2017 1:32,2/02/2009 22:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6018,29/09/2017 1:32,2/02/2009 22:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6017,29/09/2017 1:32,2/02/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6014,29/09/2017 1:32,30/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6011,29/09/2017 1:32,30/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6010,29/09/2017 1:32,30/01/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6009,29/09/2017 1:32,30/01/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2008-6007,29/09/2017 1:32,30/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6006,29/09/2017 1:32,30/01/2009 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6004,29/09/2017 1:32,28/01/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6003,29/09/2017 1:32,28/01/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6002,29/09/2017 1:32,28/01/2009 15:30,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6001,29/09/2017 1:32,28/01/2009 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5993,29/09/2017 1:32,28/01/2009 15:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5992,29/09/2017 1:32,28/01/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5991,29/09/2017 1:32,28/01/2009 15:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5990,29/09/2017 1:32,28/01/2009 15:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5989,29/09/2017 1:32,28/01/2009 15:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5988,29/09/2017 1:32,28/01/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5981,29/09/2017 1:32,27/01/2009 1:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5980,29/09/2017 1:32,27/01/2009 1:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5979,29/09/2017 1:32,27/01/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5978,29/09/2017 1:32,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5974,29/09/2017 1:32,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5973,29/09/2017 1:32,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5972,29/09/2017 1:32,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5969,29/09/2017 1:32,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5966,29/09/2017 1:32,26/01/2009 20:30,7.5,20, Improper Input Validation,nan
CVE-2008-5965,29/09/2017 1:32,26/01/2009 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5963,29/09/2017 1:32,23/01/2009 19:00,10.0,20, Improper Input Validation,nan
CVE-2008-5962,29/09/2017 1:32,23/01/2009 19:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5959,29/09/2017 1:32,23/01/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5958,29/09/2017 1:32,23/01/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5956,29/09/2017 1:32,23/01/2009 19:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5955,29/09/2017 1:32,23/01/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5953,29/09/2017 1:32,23/01/2009 19:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5952,29/09/2017 1:32,23/01/2009 19:00,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5951,29/09/2017 1:32,23/01/2009 19:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5950,29/09/2017 1:32,23/01/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5949,29/09/2017 1:32,23/01/2009 19:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5948,29/09/2017 1:32,23/01/2009 19:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5939,29/09/2017 1:32,22/01/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5938,29/09/2017 1:32,22/01/2009 11:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5937,29/09/2017 1:32,22/01/2009 2:30,7.8,20, Improper Input Validation,nan
CVE-2008-5936,29/09/2017 1:32,22/01/2009 2:30,5.0,200, Information Exposure,nan
CVE-2008-5934,29/09/2017 1:32,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5933,29/09/2017 1:32,21/01/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5932,29/09/2017 1:32,21/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5931,29/09/2017 1:32,21/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5930,29/09/2017 1:32,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5929,29/09/2017 1:32,21/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5928,29/09/2017 1:32,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5927,29/09/2017 1:32,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5926,29/09/2017 1:32,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5921,29/09/2017 1:32,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5920,29/09/2017 1:32,21/01/2009 2:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5919,29/09/2017 1:32,21/01/2009 2:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5918,29/09/2017 1:32,21/01/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5901,29/09/2017 1:32,12/01/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5900,29/09/2017 1:32,12/01/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5899,29/09/2017 1:32,12/01/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5898,29/09/2017 1:32,12/01/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5897,29/09/2017 1:32,12/01/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5896,29/09/2017 1:32,12/01/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5895,29/09/2017 1:32,12/01/2009 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5894,29/09/2017 1:32,12/01/2009 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5893,29/09/2017 1:32,12/01/2009 20:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5892,29/09/2017 1:32,12/01/2009 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5890,29/09/2017 1:32,12/01/2009 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5889,29/09/2017 1:32,12/01/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5888,29/09/2017 1:32,12/01/2009 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5886,29/09/2017 1:32,12/01/2009 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5885,29/09/2017 1:32,12/01/2009 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5883,29/09/2017 1:32,12/01/2009 20:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5881,29/09/2017 1:32,9/01/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5880,29/09/2017 1:32,8/01/2009 19:30,7.5,287, Improper Authentication,nan
CVE-2008-5879,29/09/2017 1:32,8/01/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5878,29/09/2017 1:32,8/01/2009 19:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5877,29/09/2017 1:32,8/01/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5875,29/09/2017 1:32,8/01/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5874,29/09/2017 1:32,8/01/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5873,29/09/2017 1:32,8/01/2009 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5868,29/09/2017 1:32,8/01/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5865,29/09/2017 1:32,6/01/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5864,29/09/2017 1:32,6/01/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5863,29/09/2017 1:32,6/01/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5862,29/09/2017 1:32,6/01/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5861,29/09/2017 1:32,6/01/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5860,29/09/2017 1:32,6/01/2009 17:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5859,29/09/2017 1:32,6/01/2009 17:30,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5856,29/09/2017 1:32,6/01/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5855,29/09/2017 1:32,6/01/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5854,29/09/2017 1:32,6/01/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5852,29/09/2017 1:32,6/01/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5851,29/09/2017 1:32,6/01/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5847,29/09/2017 1:32,5/01/2009 20:30,2.6,255, Credentials Management,nan
CVE-2008-5841,29/09/2017 1:32,5/01/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5840,29/09/2017 1:32,5/01/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5820,29/09/2017 1:32,2/01/2009 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5819,29/09/2017 1:32,2/01/2009 18:11,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5818,29/09/2017 1:32,2/01/2009 18:11,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5817,29/09/2017 1:32,2/01/2009 18:11,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5816,29/09/2017 1:32,2/01/2009 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5815,29/09/2017 1:32,2/01/2009 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5811,29/09/2017 1:32,2/01/2009 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5806,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5805,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5804,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5803,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5802,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5794,29/09/2017 1:32,31/12/2008 11:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5793,29/09/2017 1:32,31/12/2008 11:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5790,29/09/2017 1:32,31/12/2008 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5789,29/09/2017 1:32,31/12/2008 11:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5788,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5785,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5784,29/09/2017 1:32,31/12/2008 11:30,7.5,287, Improper Authentication,nan
CVE-2008-5783,29/09/2017 1:32,31/12/2008 11:30,7.5,287, Improper Authentication,nan
CVE-2008-5782,29/09/2017 1:32,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5781,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5780,29/09/2017 1:32,30/12/2008 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5779,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5778,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5777,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5776,29/09/2017 1:32,30/12/2008 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5775,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5774,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5773,29/09/2017 1:32,30/12/2008 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5772,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5771,29/09/2017 1:32,30/12/2008 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5770,29/09/2017 1:32,30/12/2008 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5768,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5767,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5766,29/09/2017 1:32,30/12/2008 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5765,29/09/2017 1:32,30/12/2008 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5764,29/09/2017 1:32,30/12/2008 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5763,29/09/2017 1:32,30/12/2008 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5762,29/09/2017 1:32,30/12/2008 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5761,29/09/2017 1:32,30/12/2008 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5756,29/09/2017 1:32,30/12/2008 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5755,29/09/2017 1:32,30/12/2008 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5754,29/09/2017 1:32,30/12/2008 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5753,29/09/2017 1:32,30/12/2008 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5752,29/09/2017 1:32,30/12/2008 17:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5751,29/09/2017 1:32,30/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5748,29/09/2017 1:32,29/12/2008 15:24,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5742,29/09/2017 1:32,26/12/2008 20:30,4.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5739,29/09/2017 1:32,26/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5738,29/09/2017 1:32,26/12/2008 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5737,29/09/2017 1:32,26/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5732,29/09/2017 1:32,26/12/2008 17:30,7.5,20, Improper Input Validation,nan
CVE-2008-5730,29/09/2017 1:32,26/12/2008 17:30,7.5,20, Improper Input Validation,nan
CVE-2008-5729,29/09/2017 1:32,26/12/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5728,29/09/2017 1:32,26/12/2008 17:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5727,29/09/2017 1:32,26/12/2008 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5726,29/09/2017 1:32,26/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5725,29/09/2017 1:32,26/12/2008 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-5722,29/09/2017 1:32,26/12/2008 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5712,29/09/2017 1:32,24/12/2008 18:29,5.0,20, Improper Input Validation,nan
CVE-2008-5711,29/09/2017 1:32,24/12/2008 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5708,29/09/2017 1:32,24/12/2008 18:29,7.5,287, Improper Authentication,nan
CVE-2008-5706,29/09/2017 1:32,22/12/2008 15:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5705,29/09/2017 1:32,22/12/2008 15:30,9.3,20, Improper Input Validation,nan
CVE-2008-5698,29/09/2017 1:32,22/12/2008 15:30,4.3,399, Resource Management Errors,nan
CVE-2008-5695,29/09/2017 1:32,19/12/2008 18:30,8.5,20, Improper Input Validation,nan
CVE-2008-5691,29/09/2017 1:32,19/12/2008 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5690,29/09/2017 1:32,19/12/2008 17:30,2.1,255, Credentials Management,nan
CVE-2008-5678,29/09/2017 1:32,19/12/2008 1:52,4.0,20, Improper Input Validation,nan
CVE-2008-5677,29/09/2017 1:32,19/12/2008 1:52,7.1,20, Improper Input Validation,nan
CVE-2008-5667,29/09/2017 1:32,19/12/2008 1:52,5.0,399, Resource Management Errors,nan
CVE-2008-5666,29/09/2017 1:32,19/12/2008 1:52,3.5,399, Resource Management Errors,nan
CVE-2008-5665,29/09/2017 1:32,19/12/2008 1:52,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5664,29/09/2017 1:32,19/12/2008 1:52,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5663,29/09/2017 1:32,19/12/2008 1:51,9.0,20, Improper Input Validation,nan
CVE-2008-5652,29/09/2017 1:32,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5650,29/09/2017 1:32,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5649,29/09/2017 1:32,17/12/2008 18:30,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5643,29/09/2017 1:32,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5642,29/09/2017 1:32,17/12/2008 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5641,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5640,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5639,29/09/2017 1:32,17/12/2008 17:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5638,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5637,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5636,29/09/2017 1:32,17/12/2008 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5635,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5634,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5633,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5632,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5631,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5630,29/09/2017 1:32,17/12/2008 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5628,29/09/2017 1:32,17/12/2008 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5627,29/09/2017 1:32,17/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5626,29/09/2017 1:32,17/12/2008 17:30,4.0,399, Resource Management Errors,nan
CVE-2008-5621,29/09/2017 1:32,17/12/2008 2:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5608,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5607,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5606,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5605,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5604,29/09/2017 1:32,16/12/2008 19:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5603,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5602,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5601,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5600,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5599,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5598,29/09/2017 1:32,16/12/2008 19:07,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5597,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5596,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5595,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5594,29/09/2017 1:32,16/12/2008 19:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5593,29/09/2017 1:32,16/12/2008 19:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5592,29/09/2017 1:32,16/12/2008 19:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5591,29/09/2017 1:32,16/12/2008 19:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5590,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5589,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5588,29/09/2017 1:32,16/12/2008 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5587,29/09/2017 1:32,16/12/2008 19:07,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5586,29/09/2017 1:32,16/12/2008 19:07,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5585,29/09/2017 1:32,16/12/2008 19:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5582,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5578,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5577,29/09/2017 1:32,15/12/2008 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5576,29/09/2017 1:32,15/12/2008 18:00,7.5,287, Improper Authentication,nan
CVE-2008-5574,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5573,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5572,29/09/2017 1:32,15/12/2008 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5571,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5570,29/09/2017 1:32,15/12/2008 18:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5568,29/09/2017 1:32,15/12/2008 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5567,29/09/2017 1:32,15/12/2008 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5566,29/09/2017 1:32,15/12/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5565,29/09/2017 1:32,15/12/2008 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5562,29/09/2017 1:32,15/12/2008 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5561,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5560,29/09/2017 1:32,15/12/2008 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5559,29/09/2017 1:32,15/12/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5504,29/09/2017 1:32,17/12/2008 23:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5497,29/09/2017 1:32,12/12/2008 16:30,7.5,287, Improper Authentication,nan
CVE-2008-5496,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5494,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5493,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5492,29/09/2017 1:32,12/12/2008 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5491,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5490,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5489,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5488,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5487,29/09/2017 1:32,12/12/2008 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5486,29/09/2017 1:32,12/12/2008 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5418,29/09/2017 1:32,10/12/2008 14:00,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5410,29/09/2017 1:32,10/12/2008 0:30,7.8,310, Cryptographic Issues,nan
CVE-2008-5406,29/09/2017 1:32,10/12/2008 6:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5405,29/09/2017 1:32,10/12/2008 6:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5387,29/09/2017 1:32,9/12/2008 0:30,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5384,29/09/2017 1:32,9/12/2008 0:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-5383,29/09/2017 1:32,9/12/2008 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5377,29/09/2017 1:32,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5358,29/09/2017 1:32,5/12/2008 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5356,29/09/2017 1:32,5/12/2008 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5355,29/09/2017 1:32,5/12/2008 11:30,10.0,287, Improper Authentication,nan
CVE-2008-5354,29/09/2017 1:32,5/12/2008 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5352,29/09/2017 1:32,5/12/2008 11:30,9.3,189, Numeric Errors,nan
CVE-2008-5351,29/09/2017 1:32,5/12/2008 11:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5350,29/09/2017 1:32,5/12/2008 11:30,5.0,200, Information Exposure,nan
CVE-2008-5347,29/09/2017 1:32,5/12/2008 11:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5342,29/09/2017 1:32,5/12/2008 11:30,5.0,200, Information Exposure,nan
CVE-2008-5341,29/09/2017 1:32,5/12/2008 11:30,5.0,200, Information Exposure,nan
CVE-2008-5340,29/09/2017 1:32,5/12/2008 11:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5338,29/09/2017 1:32,5/12/2008 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5337,29/09/2017 1:32,5/12/2008 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5335,29/09/2017 1:32,5/12/2008 1:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5334,29/09/2017 1:32,5/12/2008 1:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5333,29/09/2017 1:32,5/12/2008 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5332,29/09/2017 1:32,5/12/2008 1:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5323,29/09/2017 1:32,3/12/2008 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5322,29/09/2017 1:32,3/12/2008 19:30,7.8,200, Information Exposure,nan
CVE-2008-5321,29/09/2017 1:32,3/12/2008 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5320,29/09/2017 1:32,3/12/2008 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5316,29/09/2017 1:32,3/12/2008 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5314,29/09/2017 1:32,3/12/2008 17:30,4.3,399, Resource Management Errors,nan
CVE-2008-5311,29/09/2017 1:32,2/12/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5310,29/09/2017 1:32,2/12/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5309,29/09/2017 1:32,2/12/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5308,29/09/2017 1:32,2/12/2008 12:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5307,29/09/2017 1:32,2/12/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5306,29/09/2017 1:32,2/12/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5297,29/09/2017 1:32,1/12/2008 15:30,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5295,29/09/2017 1:32,1/12/2008 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5294,29/09/2017 1:32,1/12/2008 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5293,29/09/2017 1:32,1/12/2008 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5292,29/09/2017 1:32,1/12/2008 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5291,29/09/2017 1:32,1/12/2008 15:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5290,29/09/2017 1:32,1/12/2008 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5289,29/09/2017 1:32,1/12/2008 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5288,29/09/2017 1:32,1/12/2008 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5287,29/09/2017 1:32,1/12/2008 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5286,29/09/2017 1:32,1/12/2008 15:30,7.5,189, Numeric Errors,nan
CVE-2008-5273,29/09/2017 1:32,28/11/2008 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5272,29/09/2017 1:32,28/11/2008 19:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5270,29/09/2017 1:32,28/11/2008 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5269,29/09/2017 1:32,28/11/2008 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5267,29/09/2017 1:32,28/11/2008 19:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5265,29/09/2017 1:32,28/11/2008 19:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5226,29/09/2017 1:32,25/11/2008 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5223,29/09/2017 1:32,25/11/2008 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5221,29/09/2017 1:32,25/11/2008 18:30,7.5,287, Improper Authentication,nan
CVE-2008-5220,29/09/2017 1:32,25/11/2008 18:30,10.0,20, Improper Input Validation,nan
CVE-2008-5219,29/09/2017 1:32,25/11/2008 18:30,7.5,287, Improper Authentication,nan
CVE-2008-5218,29/09/2017 1:32,25/11/2008 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5217,29/09/2017 1:32,24/11/2008 17:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5216,29/09/2017 1:32,24/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5215,29/09/2017 1:32,24/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5214,29/09/2017 1:32,24/11/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5213,29/09/2017 1:32,24/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5212,29/09/2017 1:32,24/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5210,29/09/2017 1:32,24/11/2008 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5209,29/09/2017 1:32,24/11/2008 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5208,29/09/2017 1:32,24/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5204,29/09/2017 1:32,21/11/2008 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5203,29/09/2017 1:32,21/11/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5202,29/09/2017 1:32,21/11/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5201,29/09/2017 1:32,21/11/2008 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5200,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5197,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5196,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5195,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5194,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5193,29/09/2017 1:32,21/11/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5192,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5191,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5190,29/09/2017 1:32,21/11/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5188,29/09/2017 1:32,21/11/2008 2:30,7.2,255, Credentials Management,nan
CVE-2008-5183,29/09/2017 1:32,21/11/2008 2:30,4.3,399, Resource Management Errors,nan
CVE-2008-5180,29/09/2017 1:32,20/11/2008 15:30,5.0,399, Resource Management Errors,nan
CVE-2008-5174,29/09/2017 1:32,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5171,29/09/2017 1:32,19/11/2008 18:11,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5170,29/09/2017 1:32,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5169,29/09/2017 1:32,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5168,29/09/2017 1:32,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5167,29/09/2017 1:32,19/11/2008 18:11,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5166,29/09/2017 1:32,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5132,29/09/2017 1:32,18/11/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5131,29/09/2017 1:32,18/11/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5127,29/09/2017 1:32,18/11/2008 11:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5125,29/09/2017 1:32,18/11/2008 0:30,6.8,287, Improper Authentication,nan
CVE-2008-5123,29/09/2017 1:32,18/11/2008 0:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5121,29/09/2017 1:32,18/11/2008 0:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-5088,29/09/2017 1:32,14/11/2008 19:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5081,29/09/2017 1:32,17/12/2008 2:30,5.0,399, Resource Management Errors,nan
CVE-2008-5078,29/09/2017 1:32,19/12/2008 17:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5075,29/09/2017 1:32,14/11/2008 18:08,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5074,29/09/2017 1:32,14/11/2008 18:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5071,29/09/2017 1:32,14/11/2008 18:07,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5070,29/09/2017 1:32,14/11/2008 18:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5066,29/09/2017 1:32,13/11/2008 17:24,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5065,29/09/2017 1:32,13/11/2008 17:24,7.5,287, Improper Authentication,nan
CVE-2008-5063,29/09/2017 1:32,13/11/2008 11:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5062,29/09/2017 1:32,13/11/2008 11:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5061,29/09/2017 1:32,13/11/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5060,29/09/2017 1:32,13/11/2008 11:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5059,29/09/2017 1:32,13/11/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5053,29/09/2017 1:32,13/11/2008 11:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5049,29/09/2017 1:32,13/11/2008 2:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5047,29/09/2017 1:32,13/11/2008 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5046,29/09/2017 1:32,13/11/2008 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5045,29/09/2017 1:32,13/11/2008 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5042,29/09/2017 1:32,12/11/2008 21:11,7.5,287, Improper Authentication,nan
CVE-2008-5040,29/09/2017 1:32,12/11/2008 21:09,7.5,287, Improper Authentication,nan
CVE-2008-5025,29/09/2017 1:32,17/11/2008 23:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5016,29/09/2017 1:32,13/11/2008 11:30,5.0,399, Resource Management Errors,nan
CVE-2008-5015,29/09/2017 1:32,13/11/2008 11:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5012,29/09/2017 1:32,13/11/2008 11:30,5.0,200, Information Exposure,nan
CVE-2008-5004,29/09/2017 1:32,10/11/2008 14:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5003,29/09/2017 1:32,10/11/2008 14:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5002,29/09/2017 1:32,10/11/2008 14:12,9.3,20, Improper Input Validation,nan
CVE-2008-5000,29/09/2017 1:32,10/11/2008 14:12,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4993,29/09/2017 1:32,7/11/2008 19:36,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4933,29/09/2017 1:32,5/11/2008 15:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4922,29/09/2017 1:32,4/11/2008 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4921,29/09/2017 1:32,4/11/2008 21:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4919,29/09/2017 1:32,4/11/2008 21:00,8.8,20, Improper Input Validation,nan
CVE-2008-4913,29/09/2017 1:32,4/11/2008 0:57,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4912,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4906,29/09/2017 1:32,4/11/2008 0:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4900,29/09/2017 1:32,4/11/2008 0:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4897,29/09/2017 1:32,4/11/2008 0:58,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4895,29/09/2017 1:32,4/11/2008 0:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4890,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4889,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4888,29/09/2017 1:32,4/11/2008 0:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4887,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4886,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4885,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4884,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4883,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4882,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4881,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4880,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4879,29/09/2017 1:32,4/11/2008 0:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4878,29/09/2017 1:32,1/11/2008 6:00,8.5,20, Improper Input Validation,nan
CVE-2008-4877,29/09/2017 1:32,1/11/2008 6:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4870,29/09/2017 1:32,1/11/2008 0:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-4786,29/09/2017 1:32,29/10/2008 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4785,29/09/2017 1:32,29/10/2008 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4784,29/09/2017 1:32,29/10/2008 14:22,7.5,287, Improper Authentication,nan
CVE-2008-4783,29/09/2017 1:32,29/10/2008 14:22,7.5,287, Improper Authentication,nan
CVE-2008-4782,29/09/2017 1:32,29/10/2008 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4781,29/09/2017 1:32,29/10/2008 14:22,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4780,29/09/2017 1:32,29/10/2008 14:22,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4779,29/09/2017 1:32,29/10/2008 14:22,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4774,29/09/2017 1:32,28/10/2008 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4773,29/09/2017 1:32,28/10/2008 19:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4772,29/09/2017 1:32,28/10/2008 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4771,29/09/2017 1:32,28/10/2008 19:20,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4770,29/09/2017 1:32,16/01/2009 21:30,10.0,20, Improper Input Validation,nan
CVE-2008-4765,29/09/2017 1:32,28/10/2008 2:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4764,29/09/2017 1:32,28/10/2008 2:03,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4760,29/09/2017 1:32,28/10/2008 2:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4759,29/09/2017 1:32,28/10/2008 2:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4758,29/09/2017 1:32,28/10/2008 2:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4757,29/09/2017 1:32,28/10/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4756,29/09/2017 1:32,28/10/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4755,29/09/2017 1:32,28/10/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4754,29/09/2017 1:32,27/10/2008 20:00,5.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4753,29/09/2017 1:32,27/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4752,29/09/2017 1:32,27/10/2008 20:00,7.5,287, Improper Authentication,nan
CVE-2008-4750,29/09/2017 1:32,27/10/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4748,29/09/2017 1:32,27/10/2008 20:00,7.6,20, Improper Input Validation,nan
CVE-2008-4740,29/09/2017 1:32,27/10/2008 17:21,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4739,29/09/2017 1:32,24/10/2008 10:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4738,29/09/2017 1:32,24/10/2008 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4736,29/09/2017 1:32,24/10/2008 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4735,29/09/2017 1:32,24/10/2008 10:30,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4729,29/09/2017 1:32,24/10/2008 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4720,29/09/2017 1:32,23/10/2008 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4719,29/09/2017 1:32,23/10/2008 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4718,29/09/2017 1:32,23/10/2008 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4717,29/09/2017 1:32,23/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4716,29/09/2017 1:32,23/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4714,29/09/2017 1:32,23/10/2008 17:17,7.5,287, Improper Authentication,nan
CVE-2008-4713,29/09/2017 1:32,23/10/2008 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4712,29/09/2017 1:32,23/10/2008 17:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4711,29/09/2017 1:32,23/10/2008 17:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4709,29/09/2017 1:32,23/10/2008 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4708,29/09/2017 1:32,23/10/2008 17:17,7.5,287, Improper Authentication,nan
CVE-2008-4707,29/09/2017 1:32,23/10/2008 17:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4706,29/09/2017 1:32,23/10/2008 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4705,29/09/2017 1:32,23/10/2008 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4704,29/09/2017 1:32,23/10/2008 17:17,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4703,29/09/2017 1:32,23/10/2008 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4702,29/09/2017 1:32,22/10/2008 22:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4700,29/09/2017 1:32,22/10/2008 22:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4686,29/09/2017 1:32,22/10/2008 18:00,9.3,189, Numeric Errors,nan
CVE-2008-4675,29/09/2017 1:32,22/10/2008 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4674,29/09/2017 1:32,22/10/2008 10:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4673,29/09/2017 1:32,22/10/2008 10:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4668,29/09/2017 1:32,22/10/2008 10:30,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4667,29/09/2017 1:32,22/10/2008 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4666,29/09/2017 1:32,22/10/2008 10:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4665,29/09/2017 1:32,22/10/2008 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4653,29/09/2017 1:32,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4652,29/09/2017 1:32,22/10/2008 0:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4650,29/09/2017 1:32,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4645,29/09/2017 1:32,22/10/2008 0:11,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4644,29/09/2017 1:32,22/10/2008 0:11,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4643,29/09/2017 1:32,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4642,29/09/2017 1:32,21/10/2008 18:42,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4632,29/09/2017 1:32,21/10/2008 1:18,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4628,29/09/2017 1:32,21/10/2008 1:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4627,29/09/2017 1:32,21/10/2008 1:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4626,29/09/2017 1:32,21/10/2008 1:18,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4625,29/09/2017 1:32,21/10/2008 1:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4624,29/09/2017 1:32,21/10/2008 1:18,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4623,29/09/2017 1:32,21/10/2008 1:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4622,29/09/2017 1:32,21/10/2008 1:18,7.5,287, Improper Authentication,nan
CVE-2008-4621,29/09/2017 1:32,21/10/2008 1:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4620,29/09/2017 1:32,21/10/2008 1:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4617,29/09/2017 1:32,20/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4614,29/09/2017 1:32,20/10/2008 18:14,7.5,287, Improper Authentication,nan
CVE-2008-4613,29/09/2017 1:32,20/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4606,29/09/2017 1:32,18/10/2008 0:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4605,29/09/2017 1:32,18/10/2008 0:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4604,29/09/2017 1:32,18/10/2008 0:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4603,29/09/2017 1:32,18/10/2008 0:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4602,29/09/2017 1:32,18/10/2008 0:18,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4600,29/09/2017 1:32,18/10/2008 0:18,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4599,29/09/2017 1:32,18/10/2008 0:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4591,29/09/2017 1:32,16/10/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4590,29/09/2017 1:32,16/10/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4588,29/09/2017 1:32,15/10/2008 22:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4579,29/09/2017 1:32,15/10/2008 20:08,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4577,29/09/2017 1:32,15/10/2008 20:08,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-4574,29/09/2017 1:32,15/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4573,29/09/2017 1:32,15/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4572,29/09/2017 1:32,15/10/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4570,29/09/2017 1:32,15/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4569,29/09/2017 1:32,15/10/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4557,29/09/2017 1:32,14/10/2008 22:36,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4548,29/09/2017 1:32,14/10/2008 18:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4547,29/09/2017 1:32,14/10/2008 18:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4529,29/09/2017 1:32,9/10/2008 18:14,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4528,29/09/2017 1:32,9/10/2008 18:14,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4527,29/09/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4526,29/09/2017 1:32,9/10/2008 18:14,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4524,29/09/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4523,29/09/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4522,29/09/2017 1:32,9/10/2008 18:14,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4521,29/09/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4519,29/09/2017 1:32,9/10/2008 18:14,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4518,29/09/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4517,29/09/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4516,29/09/2017 1:32,9/10/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4514,29/09/2017 1:32,9/10/2008 18:00,5.0,20, Improper Input Validation,nan
CVE-2008-4510,29/09/2017 1:32,9/10/2008 18:00,4.9,399, Resource Management Errors,nan
CVE-2008-4509,29/09/2017 1:32,9/10/2008 18:00,10.0,20, Improper Input Validation,nan
CVE-2008-4502,29/09/2017 1:32,9/10/2008 0:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4501,29/09/2017 1:32,9/10/2008 0:00,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4500,29/09/2017 1:32,9/10/2008 0:00,4.0,20, Improper Input Validation,nan
CVE-2008-4498,29/09/2017 1:32,9/10/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4497,29/09/2017 1:32,9/10/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4496,29/09/2017 1:32,9/10/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4495,29/09/2017 1:32,9/10/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4494,29/09/2017 1:32,9/10/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4492,29/09/2017 1:32,8/10/2008 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4490,29/09/2017 1:32,8/10/2008 2:00,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4486,29/09/2017 1:32,8/10/2008 2:00,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4483,29/09/2017 1:32,8/10/2008 2:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4470,29/09/2017 1:32,7/10/2008 0:31,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4469,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4468,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4467,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4466,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4465,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4464,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4463,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4462,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4461,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4460,29/09/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4457,29/09/2017 1:32,7/10/2008 0:31,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4453,29/09/2017 1:32,6/10/2008 23:25,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-4452,29/09/2017 1:32,6/10/2008 23:25,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4451,29/09/2017 1:32,6/10/2008 23:25,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4449,29/09/2017 1:32,6/10/2008 19:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4436,29/09/2017 1:32,3/10/2008 22:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4428,29/09/2017 1:32,3/10/2008 22:22,10.0,20, Improper Input Validation,nan
CVE-2008-4427,29/09/2017 1:32,3/10/2008 22:22,7.5,287, Improper Authentication,nan
CVE-2008-4426,29/09/2017 1:32,3/10/2008 22:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4425,29/09/2017 1:32,3/10/2008 22:22,8.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4405,29/09/2017 1:32,3/10/2008 17:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4380,29/09/2017 1:32,1/10/2008 15:38,7.8,20, Improper Input Validation,nan
CVE-2008-4379,29/09/2017 1:32,1/10/2008 15:38,4.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4378,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4377,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4376,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4375,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4374,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4373,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4372,29/09/2017 1:32,1/10/2008 15:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4371,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4370,29/09/2017 1:32,1/10/2008 15:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4369,29/09/2017 1:32,1/10/2008 15:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4366,29/09/2017 1:32,30/09/2008 23:24,6.5,20, Improper Input Validation,nan
CVE-2008-4363,29/09/2017 1:32,30/09/2008 23:24,7.2,20, Improper Input Validation,nan
CVE-2008-4362,29/09/2017 1:32,30/09/2008 23:24,4.9,399, Resource Management Errors,nan
CVE-2008-4361,29/09/2017 1:32,30/09/2008 23:24,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4357,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4356,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4355,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4354,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4353,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4352,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4351,29/09/2017 1:32,30/09/2008 18:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4350,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4347,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4346,29/09/2017 1:32,30/09/2008 18:15,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4345,29/09/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4343,29/09/2017 1:32,30/09/2008 17:22,9.3,20, Improper Input Validation,nan
CVE-2008-4341,29/09/2017 1:32,30/09/2008 17:22,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4336,29/09/2017 1:32,30/09/2008 17:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4335,29/09/2017 1:32,30/09/2008 17:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4334,29/09/2017 1:32,30/09/2008 17:22,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4333,29/09/2017 1:32,30/09/2008 17:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4332,29/09/2017 1:32,30/09/2008 17:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4331,29/09/2017 1:32,30/09/2008 17:22,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4330,29/09/2017 1:32,30/09/2008 17:22,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4329,29/09/2017 1:32,30/09/2008 17:22,10.0,20, Improper Input Validation,nan
CVE-2008-4321,29/09/2017 1:32,29/09/2008 19:25,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4319,29/09/2017 1:32,29/09/2008 19:25,6.4,287, Improper Authentication,nan
CVE-2008-4318,29/09/2017 1:32,29/09/2008 19:25,10.0,20, Improper Input Validation,nan
CVE-2008-4313,29/09/2017 1:32,27/11/2008 0:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4310,29/09/2017 1:32,9/12/2008 0:30,7.8,399, Resource Management Errors,nan
CVE-2008-4302,29/09/2017 1:32,29/09/2008 17:17,4.9,399, Resource Management Errors,nan
CVE-2008-4295,29/09/2017 1:32,27/09/2008 10:30,5.4,20, Improper Input Validation,nan
CVE-2008-4245,29/09/2017 1:32,25/09/2008 19:25,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4244,29/09/2017 1:32,25/09/2008 19:25,7.5,287, Improper Authentication,nan
CVE-2008-4243,29/09/2017 1:32,25/09/2008 19:25,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4241,29/09/2017 1:32,25/09/2008 19:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4226,29/09/2017 1:32,25/11/2008 23:30,10.0,399, Resource Management Errors,nan
CVE-2008-4225,29/09/2017 1:32,25/11/2008 23:30,7.8,189, Numeric Errors,nan
CVE-2008-4210,29/09/2017 1:32,29/09/2008 17:17,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-4204,29/09/2017 1:32,24/09/2008 14:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4203,29/09/2017 1:32,24/09/2008 14:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4202,29/09/2017 1:32,24/09/2008 14:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4193,29/09/2017 1:32,24/09/2008 11:42,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4187,29/09/2017 1:32,23/09/2008 17:01,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4185,29/09/2017 1:32,23/09/2008 15:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4183,29/09/2017 1:32,23/09/2008 15:25,5.0,200, Information Exposure,nan
CVE-2008-4181,29/09/2017 1:32,23/09/2008 15:25,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4178,29/09/2017 1:32,23/09/2008 15:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4177,29/09/2017 1:32,23/09/2008 15:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4176,29/09/2017 1:32,23/09/2008 15:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4175,29/09/2017 1:32,23/09/2008 15:25,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4173,29/09/2017 1:32,22/09/2008 18:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4169,29/09/2017 1:32,22/09/2008 18:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4167,29/09/2017 1:32,22/09/2008 18:34,6.4,287, Improper Authentication,nan
CVE-2008-4164,29/09/2017 1:32,22/09/2008 18:52,2.6,200, Information Exposure,nan
CVE-2008-4161,29/09/2017 1:32,22/09/2008 18:52,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4160,29/09/2017 1:32,22/09/2008 18:52,4.7,399, Resource Management Errors,nan
CVE-2008-4159,29/09/2017 1:32,22/09/2008 18:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4158,29/09/2017 1:32,22/09/2008 18:34,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4157,29/09/2017 1:32,22/09/2008 18:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4156,29/09/2017 1:32,19/09/2008 23:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4155,29/09/2017 1:32,19/09/2008 23:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4154,29/09/2017 1:32,19/09/2008 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4150,29/09/2017 1:32,24/09/2008 5:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4146,29/09/2017 1:32,24/09/2008 5:41,5.0,287, Improper Authentication,nan
CVE-2008-4145,29/09/2017 1:32,24/09/2008 5:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4144,29/09/2017 1:32,24/09/2008 5:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4142,29/09/2017 1:32,24/09/2008 5:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4141,29/09/2017 1:32,24/09/2008 5:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4138,29/09/2017 1:32,24/09/2008 5:41,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4137,29/09/2017 1:32,24/09/2008 5:41,7.5,20, Improper Input Validation,nan
CVE-2008-4136,29/09/2017 1:32,24/09/2008 5:41,5.0,20, Improper Input Validation,nan
CVE-2008-4135,29/09/2017 1:32,19/09/2008 17:15,7.8,399, Resource Management Errors,nan
CVE-2008-4134,29/09/2017 1:32,19/09/2008 17:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4131,29/09/2017 1:32,19/09/2008 17:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4128,29/09/2017 1:32,18/09/2008 20:00,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4116,29/09/2017 1:32,18/09/2008 15:04,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4115,29/09/2017 1:32,16/09/2008 23:00,5.0,200, Information Exposure,nan
CVE-2008-4100,29/09/2017 1:32,18/09/2008 17:59,6.4,16, Configuration,nan
CVE-2008-4093,29/09/2017 1:31,15/09/2008 17:12,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4092,29/09/2017 1:31,15/09/2008 17:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4090,29/09/2017 1:31,15/09/2008 17:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4089,29/09/2017 1:31,15/09/2008 17:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4088,29/09/2017 1:31,15/09/2008 17:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4087,29/09/2017 1:31,15/09/2008 17:12,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4086,29/09/2017 1:31,15/09/2008 17:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4084,29/09/2017 1:31,15/09/2008 17:12,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4083,29/09/2017 1:31,15/09/2008 17:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4082,29/09/2017 1:31,15/09/2008 17:12,4.6,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4081,29/09/2017 1:31,15/09/2008 15:14,7.5,287, Improper Authentication,nan
CVE-2008-4075,29/09/2017 1:31,15/09/2008 15:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4074,29/09/2017 1:31,15/09/2008 15:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4073,29/09/2017 1:31,15/09/2008 15:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4070,29/09/2017 1:31,27/09/2008 10:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4069,29/09/2017 1:31,24/09/2008 20:37,5.0,200, Information Exposure,nan
CVE-2008-4066,29/09/2017 1:31,24/09/2008 20:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4060,29/09/2017 1:31,24/09/2008 20:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4059,29/09/2017 1:31,24/09/2008 20:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4054,29/09/2017 1:31,11/09/2008 21:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4050,29/09/2017 1:31,11/09/2008 21:06,9.3,20, Improper Input Validation,nan
CVE-2008-4049,29/09/2017 1:31,11/09/2008 21:06,6.8,20, Improper Input Validation,nan
CVE-2008-4048,29/09/2017 1:31,11/09/2008 21:06,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4044,29/09/2017 1:31,11/09/2008 21:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4043,29/09/2017 1:31,11/09/2008 21:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4039,29/09/2017 1:31,11/09/2008 21:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4018,29/09/2017 1:31,11/09/2008 1:13,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3955,29/09/2017 1:31,11/09/2008 1:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3953,29/09/2017 1:31,11/09/2008 1:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3952,29/09/2017 1:31,11/09/2008 1:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3951,29/09/2017 1:31,11/09/2008 1:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3945,29/09/2017 1:31,5/09/2008 15:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3944,29/09/2017 1:31,5/09/2008 15:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3943,29/09/2017 1:31,5/09/2008 15:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3926,29/09/2017 1:31,4/09/2008 18:41,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3925,29/09/2017 1:31,4/09/2008 18:41,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3924,29/09/2017 1:31,4/09/2008 18:41,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-3923,29/09/2017 1:31,4/09/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3879,29/09/2017 1:31,2/09/2008 15:41,9.3,20, Improper Input Validation,nan
CVE-2008-3878,29/09/2017 1:31,2/09/2008 15:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3877,29/09/2017 1:31,2/09/2008 15:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3875,29/09/2017 1:31,2/09/2008 14:24,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3861,29/09/2017 1:31,29/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3859,29/09/2017 1:31,29/08/2008 16:41,5.0,255, Credentials Management,nan
CVE-2008-3848,29/09/2017 1:31,27/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3835,29/09/2017 1:31,24/09/2008 20:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3834,29/09/2017 1:31,7/10/2008 21:01,2.1,20, Improper Input Validation,nan
CVE-2008-3833,29/09/2017 1:31,3/10/2008 17:41,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-3817,29/09/2017 1:31,23/10/2008 22:00,7.8,399, Resource Management Errors,nan
CVE-2008-3815,29/09/2017 1:31,23/10/2008 22:00,4.3,287, Improper Authentication,nan
CVE-2008-3812,29/09/2017 1:31,26/09/2008 16:21,7.1,20, Improper Input Validation,nan
CVE-2008-3811,29/09/2017 1:31,26/09/2008 16:21,7.8,20, Improper Input Validation,nan
CVE-2008-3810,29/09/2017 1:31,26/09/2008 16:21,7.8,20, Improper Input Validation,nan
CVE-2008-3807,29/09/2017 1:31,26/09/2008 16:21,9.3,16, Configuration,nan
CVE-2008-3806,29/09/2017 1:31,26/09/2008 16:21,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3805,29/09/2017 1:31,26/09/2008 16:21,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3803,29/09/2017 1:31,26/09/2008 16:21,5.1,20, Improper Input Validation,nan
CVE-2008-3799,29/09/2017 1:31,26/09/2008 16:21,7.8,399, Resource Management Errors,nan
CVE-2008-3795,29/09/2017 1:31,27/08/2008 15:21,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3794,29/09/2017 1:31,26/08/2008 15:41,6.8,189, Numeric Errors,nan
CVE-2008-3788,29/09/2017 1:31,26/08/2008 14:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3787,29/09/2017 1:31,26/08/2008 14:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3785,29/09/2017 1:31,26/08/2008 14:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3784,29/09/2017 1:31,26/08/2008 14:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3783,29/09/2017 1:31,26/08/2008 14:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3780,29/09/2017 1:31,26/08/2008 14:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3779,29/09/2017 1:31,26/08/2008 14:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3772,29/09/2017 1:31,22/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3771,29/09/2017 1:31,22/08/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3767,29/09/2017 1:31,22/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3765,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3761,29/09/2017 1:31,21/08/2008 17:41,4.9,20, Improper Input Validation,nan
CVE-2008-3757,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3756,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3755,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3751,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3750,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3749,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3748,29/09/2017 1:31,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3734,29/09/2017 1:31,20/08/2008 16:41,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-3733,29/09/2017 1:31,20/08/2008 16:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3732,29/09/2017 1:31,20/08/2008 16:41,9.3,189, Numeric Errors,nan
CVE-2008-3727,29/09/2017 1:31,20/08/2008 16:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3725,29/09/2017 1:31,20/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3721,29/09/2017 1:31,20/08/2008 16:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3720,29/09/2017 1:31,20/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3719,29/09/2017 1:31,20/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3718,29/09/2017 1:31,20/08/2008 16:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3716,29/09/2017 1:31,19/08/2008 19:41,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3713,29/09/2017 1:31,19/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3711,29/09/2017 1:31,19/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3708,29/09/2017 1:31,19/08/2008 19:41,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3706,29/09/2017 1:31,19/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3702,29/09/2017 1:31,15/08/2008 20:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3681,29/09/2017 1:31,14/08/2008 19:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3675,29/09/2017 1:31,14/08/2008 19:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3674,29/09/2017 1:31,13/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3673,29/09/2017 1:31,13/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3670,29/09/2017 1:31,13/08/2008 19:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3669,29/09/2017 1:31,13/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3651,29/09/2017 1:31,13/08/2008 1:41,4.0,200, Information Exposure,nan
CVE-2008-3649,29/09/2017 1:31,13/08/2008 0:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3603,29/09/2017 1:31,12/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3602,29/09/2017 1:31,12/08/2008 19:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3601,29/09/2017 1:31,12/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3599,29/09/2017 1:31,12/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3598,29/09/2017 1:31,12/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3595,29/09/2017 1:31,12/08/2008 17:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3594,29/09/2017 1:31,11/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3593,29/09/2017 1:31,11/08/2008 23:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3592,29/09/2017 1:31,11/08/2008 23:41,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3591,29/09/2017 1:31,11/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3589,29/09/2017 1:31,11/08/2008 23:41,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3588,29/09/2017 1:31,11/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3586,29/09/2017 1:31,11/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3585,29/09/2017 1:31,11/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3583,29/09/2017 1:31,10/08/2008 21:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3581,29/09/2017 1:31,10/08/2008 21:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3580,29/09/2017 1:31,10/08/2008 21:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3578,29/09/2017 1:31,10/08/2008 21:41,5.0,20, Improper Input Validation,nan
CVE-2008-3571,29/09/2017 1:31,10/08/2008 20:41,7.8,20, Improper Input Validation,nan
CVE-2008-3570,29/09/2017 1:31,10/08/2008 20:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3567,29/09/2017 1:31,10/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3564,29/09/2017 1:31,10/08/2008 20:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3558,29/09/2017 1:31,8/08/2008 19:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3557,29/09/2017 1:31,8/08/2008 19:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3555,29/09/2017 1:31,8/08/2008 19:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3554,29/09/2017 1:31,8/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3532,29/09/2017 1:31,8/08/2008 19:41,6.8,310, Cryptographic Issues,nan
CVE-2008-3527,29/09/2017 1:31,5/11/2008 15:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-3525,29/09/2017 1:31,3/09/2008 14:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3520,29/09/2017 1:31,2/10/2008 18:18,9.3,189, Numeric Errors,nan
CVE-2008-3509,29/09/2017 1:31,7/08/2008 20:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3508,29/09/2017 1:31,7/08/2008 20:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3507,29/09/2017 1:31,7/08/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3506,29/09/2017 1:31,6/08/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3505,29/09/2017 1:31,6/08/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3498,29/09/2017 1:31,6/08/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3497,29/09/2017 1:31,6/08/2008 18:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3493,29/09/2017 1:31,6/08/2008 18:41,5.0,20, Improper Input Validation,nan
CVE-2008-3491,29/09/2017 1:31,6/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3490,29/09/2017 1:31,6/08/2008 17:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3489,29/09/2017 1:31,6/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3487,29/09/2017 1:31,6/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3486,29/09/2017 1:31,6/08/2008 17:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3484,29/09/2017 1:31,5/08/2008 21:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3481,29/09/2017 1:31,5/08/2008 19:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3455,29/09/2017 1:31,4/08/2008 19:41,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3454,29/09/2017 1:31,4/08/2008 19:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3452,29/09/2017 1:31,4/08/2008 19:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3447,29/09/2017 1:31,4/08/2008 17:41,5.0,399, Resource Management Errors,nan
CVE-2008-3446,29/09/2017 1:31,4/08/2008 17:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3445,29/09/2017 1:31,4/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3434,29/09/2017 1:31,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3420,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3419,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3418,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3417,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3416,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3415,29/09/2017 1:31,31/07/2008 17:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3414,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3413,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3412,29/09/2017 1:31,31/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3408,29/09/2017 1:31,31/07/2008 17:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3407,29/09/2017 1:31,31/07/2008 16:41,5.0,287, Improper Authentication,nan
CVE-2008-3406,29/09/2017 1:31,31/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3405,29/09/2017 1:31,31/07/2008 16:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3403,29/09/2017 1:31,31/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3387,29/09/2017 1:31,30/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3386,29/09/2017 1:31,30/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3385,29/09/2017 1:31,30/07/2008 18:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3383,29/09/2017 1:31,30/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3382,29/09/2017 1:31,30/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3378,29/09/2017 1:31,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3377,29/09/2017 1:31,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3372,29/09/2017 1:31,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3371,29/09/2017 1:31,30/07/2008 17:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3368,29/09/2017 1:31,30/07/2008 17:41,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3366,29/09/2017 1:31,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3364,29/09/2017 1:31,30/07/2008 16:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3362,29/09/2017 1:31,30/07/2008 16:41,10.0,20, Improper Input Validation,nan
CVE-2008-3361,29/09/2017 1:31,29/07/2008 18:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3360,29/09/2017 1:31,29/07/2008 18:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3355,29/09/2017 1:31,28/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3352,29/09/2017 1:31,28/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3351,29/09/2017 1:31,28/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3346,29/09/2017 1:31,28/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3332,29/09/2017 1:31,27/07/2008 23:41,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3331,29/09/2017 1:31,27/07/2008 23:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3317,29/09/2017 1:31,25/07/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3310,29/09/2017 1:31,25/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3309,29/09/2017 1:31,25/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3308,29/09/2017 1:31,25/07/2008 16:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3307,29/09/2017 1:31,25/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3305,29/09/2017 1:31,25/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3303,29/09/2017 1:31,25/07/2008 13:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-3302,29/09/2017 1:31,25/07/2008 13:41,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3292,29/09/2017 1:31,24/07/2008 18:41,6.4,287, Improper Authentication,nan
CVE-2008-3291,29/09/2017 1:31,24/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3283,29/09/2017 1:31,29/08/2008 18:41,7.8,399, Resource Management Errors,nan
CVE-2008-3282,29/09/2017 1:31,29/08/2008 18:41,9.3,189, Numeric Errors,nan
CVE-2008-3279,29/09/2017 1:31,5/04/2010 15:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-3270,29/09/2017 1:31,18/08/2008 17:41,2.6,310, Cryptographic Issues,nan
CVE-2008-3269,29/09/2017 1:31,24/07/2008 15:41,5.0,399, Resource Management Errors,nan
CVE-2008-3267,29/09/2017 1:31,24/07/2008 15:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3266,29/09/2017 1:31,24/07/2008 15:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3265,29/09/2017 1:31,24/07/2008 15:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3257,29/09/2017 1:31,22/07/2008 16:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3256,29/09/2017 1:31,22/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3254,29/09/2017 1:31,22/07/2008 16:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3251,29/09/2017 1:31,21/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3250,29/09/2017 1:31,21/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3245,29/09/2017 1:31,21/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3242,29/09/2017 1:31,21/07/2008 16:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3241,29/09/2017 1:31,21/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3240,29/09/2017 1:31,21/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3239,29/09/2017 1:31,21/07/2008 16:41,9.3,20, Improper Input Validation,nan
CVE-2008-3238,29/09/2017 1:31,21/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3237,29/09/2017 1:31,21/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3234,29/09/2017 1:31,18/07/2008 16:41,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3213,29/09/2017 1:31,18/07/2008 15:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3211,29/09/2017 1:31,18/07/2008 15:13,7.5,287, Improper Authentication,nan
CVE-2008-3210,29/09/2017 1:31,18/07/2008 15:13,5.0,20, Improper Input Validation,nan
CVE-2008-3209,29/09/2017 1:31,18/07/2008 15:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3207,29/09/2017 1:31,18/07/2008 15:13,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3205,29/09/2017 1:31,17/07/2008 13:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3204,29/09/2017 1:31,17/07/2008 13:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3200,29/09/2017 1:31,17/07/2008 13:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3195,29/09/2017 1:31,18/09/2008 15:04,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3194,29/09/2017 1:31,16/07/2008 18:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3193,29/09/2017 1:31,16/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3192,29/09/2017 1:31,16/07/2008 18:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3191,29/09/2017 1:31,16/07/2008 18:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3190,29/09/2017 1:31,16/07/2008 18:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3182,29/09/2017 1:31,15/07/2008 18:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3181,29/09/2017 1:31,15/07/2008 18:41,6.5,20, Improper Input Validation,nan
CVE-2008-3180,29/09/2017 1:31,15/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3179,29/09/2017 1:31,15/07/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3178,29/09/2017 1:31,15/07/2008 18:41,7.5,20, Improper Input Validation,nan
CVE-2008-3167,29/09/2017 1:31,14/07/2008 23:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3166,29/09/2017 1:31,14/07/2008 23:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3165,29/09/2017 1:31,14/07/2008 23:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3164,29/09/2017 1:31,14/07/2008 23:41,7.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3155,29/09/2017 1:31,11/07/2008 22:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3154,29/09/2017 1:31,11/07/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3153,29/09/2017 1:31,11/07/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3152,29/09/2017 1:31,11/07/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3150,29/09/2017 1:31,11/07/2008 19:41,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3148,29/09/2017 1:31,11/07/2008 19:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3136,29/09/2017 1:31,10/07/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3133,29/09/2017 1:31,10/07/2008 23:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3132,29/09/2017 1:31,10/07/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3131,29/09/2017 1:31,10/07/2008 23:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3128,29/09/2017 1:31,10/07/2008 23:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3127,29/09/2017 1:31,10/07/2008 23:41,6.8,20, Improper Input Validation,nan
CVE-2008-3124,29/09/2017 1:31,10/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3123,29/09/2017 1:31,10/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3119,29/09/2017 1:31,10/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3118,29/09/2017 1:31,10/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3117,29/09/2017 1:31,10/07/2008 17:41,6.5,20, Improper Input Validation,nan
CVE-2008-3093,29/09/2017 1:31,9/07/2008 19:33,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3089,29/09/2017 1:31,9/07/2008 19:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3088,29/09/2017 1:31,9/07/2008 19:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3087,29/09/2017 1:31,9/07/2008 19:33,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3083,29/09/2017 1:31,9/07/2008 0:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3080,29/09/2017 1:31,9/07/2008 0:41,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3075,29/09/2017 1:31,21/02/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3074,29/09/2017 1:31,21/02/2009 22:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-3036,29/09/2017 1:31,7/07/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3035,29/09/2017 1:31,7/07/2008 18:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3030,29/09/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3027,29/09/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3026,29/09/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3025,29/09/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3022,29/09/2017 1:31,7/07/2008 17:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2997,29/09/2017 1:31,3/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2996,29/09/2017 1:31,3/07/2008 18:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2993,29/09/2017 1:31,3/07/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2990,29/09/2017 1:31,2/07/2008 17:14,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2989,29/09/2017 1:31,2/07/2008 17:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2986,29/09/2017 1:31,2/07/2008 17:14,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2985,29/09/2017 1:31,2/07/2008 17:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2984,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2983,29/09/2017 1:31,2/07/2008 17:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2982,29/09/2017 1:31,2/07/2008 17:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2981,29/09/2017 1:31,2/07/2008 17:14,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2980,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2979,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2978,29/09/2017 1:31,2/07/2008 17:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2977,29/09/2017 1:31,2/07/2008 17:14,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2976,29/09/2017 1:31,2/07/2008 17:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2975,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2974,29/09/2017 1:31,2/07/2008 17:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2973,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2971,29/09/2017 1:31,2/07/2008 17:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2966,29/09/2017 1:31,2/07/2008 17:14,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2965,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2964,29/09/2017 1:31,2/07/2008 17:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2963,29/09/2017 1:31,2/07/2008 17:14,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2962,29/09/2017 1:31,2/07/2008 17:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2961,29/09/2017 1:31,2/07/2008 17:14,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2959,29/09/2017 1:31,2/07/2008 17:14,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2957,29/09/2017 1:31,1/07/2008 22:41,6.4,20, Improper Input Validation,nan
CVE-2008-2941,29/09/2017 1:31,14/08/2008 20:41,4.9,20, Improper Input Validation,nan
CVE-2008-2940,29/09/2017 1:31,14/08/2008 20:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2930,29/09/2017 1:31,29/08/2008 18:41,7.1,399, Resource Management Errors,nan
CVE-2008-2929,29/09/2017 1:31,29/08/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2928,29/09/2017 1:31,29/08/2008 18:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2922,29/09/2017 1:31,30/06/2008 18:24,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2921,29/09/2017 1:31,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2920,29/09/2017 1:31,30/06/2008 18:24,7.5,287, Improper Authentication,nan
CVE-2008-2919,29/09/2017 1:31,30/06/2008 18:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2918,29/09/2017 1:31,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2915,29/09/2017 1:31,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2913,29/09/2017 1:31,30/06/2008 18:24,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2912,29/09/2017 1:31,30/06/2008 18:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2911,29/09/2017 1:31,30/06/2008 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2910,29/09/2017 1:31,30/06/2008 18:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2907,29/09/2017 1:31,30/06/2008 18:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2906,29/09/2017 1:31,30/06/2008 18:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2905,29/09/2017 1:31,30/06/2008 18:24,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2904,29/09/2017 1:31,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2903,29/09/2017 1:31,30/06/2008 18:24,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2902,29/09/2017 1:31,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2901,29/09/2017 1:31,30/06/2008 18:24,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2900,29/09/2017 1:31,27/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2898,29/09/2017 1:31,27/06/2008 18:41,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2897,29/09/2017 1:31,27/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2896,29/09/2017 1:31,27/06/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2893,29/09/2017 1:31,27/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2892,29/09/2017 1:31,27/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2891,29/09/2017 1:31,27/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2888,29/09/2017 1:31,27/06/2008 18:41,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2886,29/09/2017 1:31,27/06/2008 18:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2885,29/09/2017 1:31,27/06/2008 18:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2883,29/09/2017 1:31,26/06/2008 17:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2881,29/09/2017 1:31,26/06/2008 17:41,5.0,200, Information Exposure,nan
CVE-2008-2877,29/09/2017 1:31,26/06/2008 17:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2876,29/09/2017 1:31,26/06/2008 17:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2875,29/09/2017 1:31,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2874,29/09/2017 1:31,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2870,29/09/2017 1:31,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2869,29/09/2017 1:31,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2868,29/09/2017 1:31,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2867,29/09/2017 1:31,26/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2866,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2865,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2860,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2857,29/09/2017 1:31,25/06/2008 12:36,5.0,255, Credentials Management,nan
CVE-2008-2856,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2855,29/09/2017 1:31,25/06/2008 12:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2854,29/09/2017 1:31,25/06/2008 12:36,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2853,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2847,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2846,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2845,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2844,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2843,29/09/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2842,29/09/2017 1:31,25/06/2008 12:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2841,29/09/2017 1:31,24/06/2008 19:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2839,29/09/2017 1:31,24/06/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2838,29/09/2017 1:31,24/06/2008 19:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2837,29/09/2017 1:31,24/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2836,29/09/2017 1:31,24/06/2008 19:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2835,29/09/2017 1:31,24/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2834,29/09/2017 1:31,24/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2833,29/09/2017 1:31,24/06/2008 19:41,10.0,287, Improper Authentication,nan
CVE-2008-2832,29/09/2017 1:31,24/06/2008 19:41,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2823,29/09/2017 1:31,23/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2818,29/09/2017 1:31,23/06/2008 17:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2817,29/09/2017 1:31,23/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2816,29/09/2017 1:31,23/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2813,29/09/2017 1:31,23/06/2008 17:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2796,29/09/2017 1:31,20/06/2008 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2793,29/09/2017 1:31,20/06/2008 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2792,29/09/2017 1:31,20/06/2008 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2791,29/09/2017 1:31,20/06/2008 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2790,29/09/2017 1:31,20/06/2008 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2789,29/09/2017 1:31,20/06/2008 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2782,29/09/2017 1:31,19/06/2008 20:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2778,29/09/2017 1:31,19/06/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2774,29/09/2017 1:31,19/06/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2770,29/09/2017 1:31,18/06/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2755,29/09/2017 1:31,18/06/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2754,29/09/2017 1:31,18/06/2008 22:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2753,29/09/2017 1:31,18/06/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2746,29/09/2017 1:31,17/06/2008 15:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2745,29/09/2017 1:31,17/06/2008 15:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2742,29/09/2017 1:31,17/06/2008 15:41,7.5,20, Improper Input Validation,nan
CVE-2008-2729,29/09/2017 1:31,30/06/2008 22:41,4.9,200, Information Exposure,nan
CVE-2008-2706,29/09/2017 1:31,16/06/2008 18:41,4.9,399, Resource Management Errors,nan
CVE-2008-2700,29/09/2017 1:31,13/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2699,29/09/2017 1:31,13/06/2008 19:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2695,29/09/2017 1:31,13/06/2008 19:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2694,29/09/2017 1:31,13/06/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2693,29/09/2017 1:31,13/06/2008 19:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2692,29/09/2017 1:31,13/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2691,29/09/2017 1:31,13/06/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2689,29/09/2017 1:31,13/06/2008 19:41,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2688,29/09/2017 1:31,13/06/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2687,29/09/2017 1:31,13/06/2008 18:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2686,29/09/2017 1:31,13/06/2008 18:41,7.5,20, Improper Input Validation,nan
CVE-2008-2684,29/09/2017 1:31,12/06/2008 12:21,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2683,29/09/2017 1:31,12/06/2008 12:21,9.3,20, Improper Input Validation,nan
CVE-2008-2682,29/09/2017 1:31,12/06/2008 12:21,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2681,29/09/2017 1:31,12/06/2008 12:21,5.0,200, Information Exposure,nan
CVE-2008-2680,29/09/2017 1:31,12/06/2008 12:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2679,29/09/2017 1:31,12/06/2008 12:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2678,29/09/2017 1:31,12/06/2008 12:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2677,29/09/2017 1:31,12/06/2008 12:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2676,29/09/2017 1:31,12/06/2008 12:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2673,29/09/2017 1:31,12/06/2008 12:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2651,29/09/2017 1:31,10/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2650,29/09/2017 1:31,10/06/2008 18:32,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2649,29/09/2017 1:31,10/06/2008 18:32,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2648,29/09/2017 1:31,10/06/2008 18:32,6.8,20, Improper Input Validation,nan
CVE-2008-2647,29/09/2017 1:31,10/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2646,29/09/2017 1:31,10/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2645,29/09/2017 1:31,10/06/2008 18:32,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2643,29/09/2017 1:31,10/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2638,29/09/2017 1:31,10/06/2008 0:32,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2634,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2632,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2630,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2629,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2628,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2627,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2626,29/09/2017 1:31,10/06/2008 0:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2569,29/09/2017 1:31,6/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2566,29/09/2017 1:31,6/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2564,29/09/2017 1:31,6/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2562,29/09/2017 1:31,6/06/2008 18:32,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2561,29/09/2017 1:31,6/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2560,29/09/2017 1:31,6/06/2008 18:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2556,29/09/2017 1:31,5/06/2008 21:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2555,29/09/2017 1:31,5/06/2008 21:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2538,29/09/2017 1:31,3/06/2008 15:32,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-2537,29/09/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2536,29/09/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2535,29/09/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2534,29/09/2017 1:31,3/06/2008 15:32,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2533,29/09/2017 1:31,3/06/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2532,29/09/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2530,29/09/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2529,29/09/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2522,29/09/2017 1:31,3/06/2008 15:32,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2521,29/09/2017 1:31,3/06/2008 15:32,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2520,29/09/2017 1:31,3/06/2008 15:32,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2515,29/09/2017 1:31,2/06/2008 21:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2514,29/09/2017 1:31,2/06/2008 21:30,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2513,29/09/2017 1:31,2/06/2008 21:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2506,29/09/2017 1:31,29/05/2008 23:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2505,29/09/2017 1:31,29/05/2008 23:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2504,29/09/2017 1:31,29/05/2008 23:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2501,29/09/2017 1:31,29/05/2008 23:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2496,29/09/2017 1:31,28/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2488,29/09/2017 1:31,28/05/2008 15:32,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2487,29/09/2017 1:31,28/05/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2484,29/09/2017 1:31,28/05/2008 15:32,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2483,29/09/2017 1:31,28/05/2008 15:32,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2481,29/09/2017 1:31,28/05/2008 15:32,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2480,29/09/2017 1:31,28/05/2008 15:32,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2477,29/09/2017 1:31,28/05/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2476,29/09/2017 1:31,3/10/2008 15:07,9.3,20, Improper Input Validation,nan
CVE-2008-2469,29/09/2017 1:31,23/10/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2463,29/09/2017 1:31,7/07/2008 23:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2461,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2459,29/09/2017 1:31,27/05/2008 14:32,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2457,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2456,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2455,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2453,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2448,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2447,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2446,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2445,29/09/2017 1:31,27/05/2008 14:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2444,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2443,29/09/2017 1:31,27/05/2008 14:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2418,29/09/2017 1:31,23/05/2008 15:32,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-2417,29/09/2017 1:31,22/05/2008 13:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2416,29/09/2017 1:31,22/05/2008 13:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2396,29/09/2017 1:31,21/05/2008 13:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2395,29/09/2017 1:31,21/05/2008 13:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2394,29/09/2017 1:31,21/05/2008 13:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2393,29/09/2017 1:31,21/05/2008 13:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2390,29/09/2017 1:31,21/05/2008 13:24,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2379,29/09/2017 1:31,5/12/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2372,29/09/2017 1:31,2/07/2008 16:41,4.9,20, Improper Input Validation,nan
CVE-2008-2366,29/09/2017 1:31,16/06/2008 18:41,4.4,16, Configuration,nan
CVE-2008-2358,29/09/2017 1:31,10/06/2008 0:32,7.2,189, Numeric Errors,nan
CVE-2008-2356,29/09/2017 1:31,20/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2355,29/09/2017 1:31,20/05/2008 17:20,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2353,29/09/2017 1:31,20/05/2008 17:20,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2351,29/09/2017 1:31,20/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2349,29/09/2017 1:31,20/05/2008 17:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2348,29/09/2017 1:31,20/05/2008 17:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2347,29/09/2017 1:31,20/05/2008 17:20,7.5,287, Improper Authentication,nan
CVE-2008-2346,29/09/2017 1:31,20/05/2008 17:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2343,29/09/2017 1:31,19/05/2008 13:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2342,29/09/2017 1:31,19/05/2008 13:20,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2341,29/09/2017 1:31,19/05/2008 13:20,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2340,29/09/2017 1:31,19/05/2008 13:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2338,29/09/2017 1:31,19/05/2008 13:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2337,29/09/2017 1:31,19/05/2008 13:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2336,29/09/2017 1:31,19/05/2008 13:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2335,29/09/2017 1:31,19/05/2008 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2298,29/09/2017 1:31,18/05/2008 14:20,7.5,287, Improper Authentication,nan
CVE-2008-2297,29/09/2017 1:31,18/05/2008 14:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2296,29/09/2017 1:31,18/05/2008 14:20,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2295,29/09/2017 1:31,18/05/2008 14:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2294,29/09/2017 1:31,18/05/2008 14:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2293,29/09/2017 1:31,18/05/2008 14:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2292,29/09/2017 1:31,18/05/2008 14:20,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2283,29/09/2017 1:31,18/05/2008 14:20,9.3,20, Improper Input Validation,nan
CVE-2008-2282,29/09/2017 1:31,18/05/2008 14:20,7.5,287, Improper Authentication,nan
CVE-2008-2279,29/09/2017 1:31,16/05/2008 12:54,5.0,255, Credentials Management,nan
CVE-2008-2278,29/09/2017 1:31,16/05/2008 12:54,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2277,29/09/2017 1:31,16/05/2008 12:54,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2276,29/09/2017 1:31,16/05/2008 12:54,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2270,29/09/2017 1:31,16/05/2008 12:54,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2267,29/09/2017 1:31,16/05/2008 12:54,7.5,20, Improper Input Validation,nan
CVE-2008-2265,29/09/2017 1:31,16/05/2008 12:54,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2263,29/09/2017 1:31,16/05/2008 12:54,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2244,29/09/2017 1:31,9/07/2008 22:41,9.3,399, Resource Management Errors,nan
CVE-2008-2238,29/09/2017 1:31,30/10/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2237,29/09/2017 1:31,30/10/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2228,29/09/2017 1:31,14/05/2008 18:20,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2225,29/09/2017 1:31,14/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2224,29/09/2017 1:31,14/05/2008 18:20,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2223,29/09/2017 1:31,14/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2222,29/09/2017 1:31,14/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2220,29/09/2017 1:31,14/05/2008 18:20,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2217,29/09/2017 1:31,14/05/2008 18:20,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2216,29/09/2017 1:31,14/05/2008 18:20,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2215,29/09/2017 1:31,14/05/2008 18:20,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2197,29/09/2017 1:31,14/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2195,29/09/2017 1:31,14/05/2008 17:20,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2194,29/09/2017 1:31,14/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2193,29/09/2017 1:31,14/05/2008 17:20,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2192,29/09/2017 1:31,14/05/2008 17:20,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2183,29/09/2017 1:31,13/05/2008 22:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2181,29/09/2017 1:31,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2180,29/09/2017 1:31,13/05/2008 22:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2177,29/09/2017 1:31,13/05/2008 22:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2175,29/09/2017 1:31,13/05/2008 22:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2161,29/09/2017 1:31,12/05/2008 22:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2152,29/09/2017 1:31,10/06/2008 18:32,9.3,189, Numeric Errors,nan
CVE-2008-2132,29/09/2017 1:31,9/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2129,29/09/2017 1:31,9/05/2008 18:20,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2128,29/09/2017 1:31,9/05/2008 18:20,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2127,29/09/2017 1:31,9/05/2008 18:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2125,29/09/2017 1:31,9/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2124,29/09/2017 1:31,9/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2114,29/09/2017 1:31,8/05/2008 16:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2113,29/09/2017 1:31,8/05/2008 16:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2095,29/09/2017 1:31,6/05/2008 16:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2093,29/09/2017 1:31,6/05/2008 16:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2091,29/09/2017 1:31,6/05/2008 16:20,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2089,29/09/2017 1:31,6/05/2008 15:20,7.8,16, Configuration,nan
CVE-2008-2088,29/09/2017 1:31,6/05/2008 15:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2084,29/09/2017 1:31,5/05/2008 17:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2082,29/09/2017 1:31,5/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2081,29/09/2017 1:31,5/05/2008 17:20,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2076,29/09/2017 1:31,5/05/2008 16:20,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2074,29/09/2017 1:31,5/05/2008 16:20,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2065,29/09/2017 1:30,2/05/2008 23:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2063,29/09/2017 1:30,2/05/2008 23:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2048,29/09/2017 1:30,1/05/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2047,29/09/2017 1:30,1/05/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2029,29/09/2017 1:30,30/04/2008 16:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2028,29/09/2017 1:30,30/04/2008 16:17,4.3,200, Information Exposure,nan
CVE-2008-2024,29/09/2017 1:30,30/04/2008 12:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2023,29/09/2017 1:30,30/04/2008 12:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2022,29/09/2017 1:30,30/04/2008 12:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2018,29/09/2017 1:30,30/04/2008 1:07,4.0,200, Information Exposure,nan
CVE-2008-2015,29/09/2017 1:30,30/04/2008 1:07,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2013,29/09/2017 1:30,30/04/2008 0:10,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2012,29/09/2017 1:30,30/04/2008 0:10,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2004,29/09/2017 1:30,12/05/2008 22:20,4.9,200, Information Exposure,nan
CVE-2008-1989,29/09/2017 1:30,27/04/2008 21:05,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1982,29/09/2017 1:30,27/04/2008 20:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1975,29/09/2017 1:30,27/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1973,29/09/2017 1:30,27/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1971,29/09/2017 1:30,27/04/2008 18:05,7.5,287, Improper Authentication,nan
CVE-2008-1963,29/09/2017 1:30,25/04/2008 19:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1962,29/09/2017 1:30,25/04/2008 19:05,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1961,29/09/2017 1:30,25/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1958,29/09/2017 1:30,25/04/2008 19:05,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1957,29/09/2017 1:30,25/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1954,29/09/2017 1:30,25/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1952,29/09/2017 1:30,23/06/2008 19:41,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1951,29/09/2017 1:30,25/06/2008 12:36,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-1946,29/09/2017 1:30,28/07/2008 17:41,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-1945,29/09/2017 1:30,8/08/2008 19:41,4.9,200, Information Exposure,nan
CVE-2008-1944,29/09/2017 1:30,14/05/2008 18:20,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1943,29/09/2017 1:30,14/05/2008 18:20,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1939,29/09/2017 1:30,25/04/2008 6:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1935,29/09/2017 1:30,25/04/2008 6:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1934,29/09/2017 1:30,25/04/2008 6:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1919,29/09/2017 1:30,23/04/2008 13:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1918,29/09/2017 1:30,23/04/2008 13:05,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1915,29/09/2017 1:30,23/04/2008 13:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1913,29/09/2017 1:30,22/04/2008 4:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1911,29/09/2017 1:30,22/04/2008 4:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1909,29/09/2017 1:30,22/04/2008 4:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1908,29/09/2017 1:30,22/04/2008 4:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1907,29/09/2017 1:30,22/04/2008 4:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1906,29/09/2017 1:30,22/04/2008 4:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1904,29/09/2017 1:30,22/04/2008 4:41,7.5,287, Improper Authentication,nan
CVE-2008-1903,29/09/2017 1:30,22/04/2008 4:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1889,29/09/2017 1:30,18/04/2008 22:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1886,29/09/2017 1:30,18/04/2008 15:05,7.5,310, Cryptographic Issues,nan
CVE-2008-1885,29/09/2017 1:30,18/04/2008 15:05,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1881,29/09/2017 1:30,17/04/2008 23:05,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1878,29/09/2017 1:30,17/04/2008 22:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1876,29/09/2017 1:30,17/04/2008 19:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1875,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1874,29/09/2017 1:30,17/04/2008 19:05,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1872,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1871,29/09/2017 1:30,17/04/2008 19:05,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1870,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1869,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1868,29/09/2017 1:30,17/04/2008 19:05,7.5,287, Improper Authentication,nan
CVE-2008-1867,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1866,29/09/2017 1:30,17/04/2008 19:05,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1864,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1863,29/09/2017 1:30,17/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1862,29/09/2017 1:30,17/04/2008 19:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1861,29/09/2017 1:30,17/04/2008 19:05,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1859,29/09/2017 1:30,16/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1858,29/09/2017 1:30,16/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1857,29/09/2017 1:30,16/04/2008 19:05,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1856,29/09/2017 1:30,16/04/2008 19:05,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1855,29/09/2017 1:30,16/04/2008 19:05,5.0,399, Resource Management Errors,nan
CVE-2008-1849,29/09/2017 1:30,16/04/2008 17:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1848,29/09/2017 1:30,16/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1847,29/09/2017 1:30,16/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1838,29/09/2017 1:30,16/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1803,29/09/2017 1:30,12/05/2008 22:20,9.3,189, Numeric Errors,nan
CVE-2008-1802,29/09/2017 1:30,12/05/2008 16:20,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1801,29/09/2017 1:30,12/05/2008 16:20,9.3,189, Numeric Errors,nan
CVE-2008-1799,29/09/2017 1:30,15/04/2008 17:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1798,29/09/2017 1:30,15/04/2008 17:05,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1791,29/09/2017 1:30,15/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1790,29/09/2017 1:30,15/04/2008 17:05,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1789,29/09/2017 1:30,15/04/2008 17:05,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1785,29/09/2017 1:30,15/04/2008 10:05,5.5,20, Improper Input Validation,nan
CVE-2008-1784,29/09/2017 1:30,15/04/2008 10:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1783,29/09/2017 1:30,15/04/2008 10:05,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-1782,29/09/2017 1:30,15/04/2008 10:05,5.0,200, Information Exposure,nan
CVE-2008-1779,29/09/2017 1:30,14/04/2008 16:05,6.8,399, Resource Management Errors,nan
CVE-2008-1776,29/09/2017 1:30,14/04/2008 16:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1774,29/09/2017 1:30,14/04/2008 16:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1773,29/09/2017 1:30,14/04/2008 16:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1772,29/09/2017 1:30,14/04/2008 16:05,5.0,310, Cryptographic Issues,nan
CVE-2008-1769,29/09/2017 1:30,25/04/2008 6:05,6.8,399, Resource Management Errors,nan
CVE-2008-1768,29/09/2017 1:30,25/04/2008 6:05,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1767,29/09/2017 1:30,23/05/2008 15:32,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1765,29/09/2017 1:30,23/04/2008 13:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1760,29/09/2017 1:30,12/04/2008 20:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1759,29/09/2017 1:30,12/04/2008 20:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1758,29/09/2017 1:30,12/04/2008 20:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1755,29/09/2017 1:30,11/04/2008 21:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1751,29/09/2017 1:30,11/04/2008 21:05,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1750,29/09/2017 1:30,11/04/2008 21:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1732,29/09/2017 1:30,11/04/2008 19:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1727,29/09/2017 1:30,11/04/2008 19:05,7.5,287, Improper Authentication,nan
CVE-2008-1726,29/09/2017 1:30,11/04/2008 19:05,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1715,29/09/2017 1:30,9/04/2008 21:05,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1714,29/09/2017 1:30,9/04/2008 21:05,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1712,29/09/2017 1:30,9/04/2008 21:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1711,29/09/2017 1:30,9/04/2008 19:05,5.0,310, Cryptographic Issues,nan
CVE-2008-1710,29/09/2017 1:30,9/04/2008 19:05,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1709,29/09/2017 1:30,9/04/2008 19:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1697,29/09/2017 1:30,8/04/2008 17:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1696,29/09/2017 1:30,8/04/2008 17:05,3.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1693,29/09/2017 1:30,18/04/2008 15:05,6.8,20, Improper Input Validation,nan
CVE-2008-1684,29/09/2017 1:30,6/04/2008 23:44,4.7,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1682,29/09/2017 1:30,4/04/2008 19:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1680,29/09/2017 1:30,4/04/2008 0:44,5.0,200, Information Exposure,nan
CVE-2008-1679,29/09/2017 1:30,22/04/2008 4:41,6.8,189, Numeric Errors,nan
CVE-2008-1678,29/09/2017 1:30,10/07/2008 17:41,5.0,399, Resource Management Errors,nan
CVE-2008-1668,29/09/2017 1:30,13/08/2008 18:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1662,29/09/2017 1:30,1/08/2008 14:41,10.0,16, Configuration,nan
CVE-2008-1655,29/09/2017 1:30,9/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1654,29/09/2017 1:30,2/04/2008 18:44,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1647,29/09/2017 1:30,2/04/2008 17:44,9.3,20, Improper Input Validation,nan
CVE-2008-1646,29/09/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1645,29/09/2017 1:30,2/04/2008 17:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1640,29/09/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1639,29/09/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1635,29/09/2017 1:30,2/04/2008 17:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1624,29/09/2017 1:30,2/04/2008 17:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1623,29/09/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1615,29/09/2017 1:30,8/05/2008 0:20,4.9,399, Resource Management Errors,nan
CVE-2008-1612,29/09/2017 1:30,1/04/2008 17:44,4.3,20, Improper Input Validation,nan
CVE-2008-1611,29/09/2017 1:30,1/04/2008 16:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1610,29/09/2017 1:30,1/04/2008 16:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1608,29/09/2017 1:30,1/04/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1601,29/09/2017 1:30,31/03/2008 23:44,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1600,29/09/2017 1:30,31/03/2008 23:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1599,29/09/2017 1:30,31/03/2008 23:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1595,29/09/2017 1:30,31/03/2008 23:44,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-1593,29/09/2017 1:30,31/03/2008 23:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1591,29/09/2017 1:30,31/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1559,29/09/2017 1:30,31/03/2008 17:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1558,29/09/2017 1:30,31/03/2008 17:44,10.0,189, Numeric Errors,nan
CVE-2008-1553,29/09/2017 1:30,31/03/2008 17:44,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1539,29/09/2017 1:30,28/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1535,29/09/2017 1:30,28/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1514,29/09/2017 1:30,26/03/2008 0:44,4.9,399, Resource Management Errors,nan
CVE-2008-1513,29/09/2017 1:30,25/03/2008 23:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1512,29/09/2017 1:30,25/03/2008 23:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1509,29/09/2017 1:30,25/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1507,29/09/2017 1:30,25/03/2008 22:44,7.5,16, Configuration,nan
CVE-2008-1506,29/09/2017 1:30,25/03/2008 22:44,5.0,200, Information Exposure,nan
CVE-2008-1505,29/09/2017 1:30,25/03/2008 19:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1498,29/09/2017 1:30,25/03/2008 19:44,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1496,29/09/2017 1:30,25/03/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1495,29/09/2017 1:30,25/03/2008 19:44,6.5,20, Improper Input Validation,nan
CVE-2008-1489,29/09/2017 1:30,25/03/2008 0:44,6.8,189, Numeric Errors,nan
CVE-2008-1467,29/09/2017 1:30,24/03/2008 21:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1465,29/09/2017 1:30,24/03/2008 21:44,9.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1462,29/09/2017 1:30,24/03/2008 21:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1460,29/09/2017 1:30,24/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1459,29/09/2017 1:30,24/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1430,29/09/2017 1:30,20/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1427,29/09/2017 1:30,20/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1425,29/09/2017 1:30,20/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1423,29/09/2017 1:30,16/05/2008 12:54,9.3,189, Numeric Errors,nan
CVE-2008-1419,29/09/2017 1:30,16/05/2008 12:54,4.3,20, Improper Input Validation,nan
CVE-2008-1416,29/09/2017 1:30,20/03/2008 10:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1409,29/09/2017 1:30,20/03/2008 10:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1408,29/09/2017 1:30,20/03/2008 10:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1407,29/09/2017 1:30,20/03/2008 10:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1406,29/09/2017 1:30,20/03/2008 10:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1405,29/09/2017 1:30,20/03/2008 10:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1404,29/09/2017 1:30,20/03/2008 10:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1398,29/09/2017 1:30,20/03/2008 10:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1376,29/09/2017 1:30,1/08/2008 14:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1367,29/09/2017 1:30,17/03/2008 23:44,7.5,399, Resource Management Errors,nan
CVE-2008-1358,29/09/2017 1:30,17/03/2008 17:44,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1351,29/09/2017 1:30,17/03/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1349,29/09/2017 1:30,17/03/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1316,29/09/2017 1:30,13/03/2008 14:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1313,29/09/2017 1:30,12/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1307,29/09/2017 1:30,12/03/2008 17:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1305,29/09/2017 1:30,12/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1297,29/09/2017 1:30,12/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1295,29/09/2017 1:30,12/03/2008 17:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1272,29/09/2017 1:30,10/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1231,29/09/2017 1:30,10/03/2008 17:44,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1230,29/09/2017 1:30,10/03/2008 17:44,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1229,29/09/2017 1:30,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1177,29/09/2017 1:30,6/03/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1176,29/09/2017 1:30,6/03/2008 0:44,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1164,29/09/2017 1:30,5/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1163,29/09/2017 1:30,5/03/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1156,29/09/2017 1:30,27/03/2008 10:44,5.1,200, Information Exposure,nan
CVE-2008-1152,29/09/2017 1:30,27/03/2008 17:44,7.8,399, Resource Management Errors,nan
CVE-2008-1151,29/09/2017 1:30,27/03/2008 17:44,7.1,399, Resource Management Errors,nan
CVE-2008-1150,29/09/2017 1:30,27/03/2008 17:44,7.1,399, Resource Management Errors,nan
CVE-2008-1141,29/09/2017 1:30,4/03/2008 20:44,4.9,399, Resource Management Errors,nan
CVE-2008-1140,29/09/2017 1:30,4/03/2008 20:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1139,29/09/2017 1:30,4/03/2008 20:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1138,29/09/2017 1:30,4/03/2008 20:44,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1127,29/09/2017 1:30,3/03/2008 23:44,6.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-1126,29/09/2017 1:30,3/03/2008 22:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1125,29/09/2017 1:30,3/03/2008 22:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1124,29/09/2017 1:30,3/03/2008 22:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1123,29/09/2017 1:30,3/03/2008 22:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1121,29/09/2017 1:30,3/03/2008 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1119,29/09/2017 1:30,3/03/2008 22:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1110,29/09/2017 1:30,29/02/2008 19:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1109,29/09/2017 1:30,4/06/2008 20:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1108,29/09/2017 1:30,4/06/2008 20:32,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1097,29/09/2017 1:30,5/03/2008 20:44,6.8,399, Resource Management Errors,nan
CVE-2008-1096,29/09/2017 1:30,5/03/2008 20:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1077,29/09/2017 1:30,29/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1074,29/09/2017 1:30,29/02/2008 0:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1069,29/09/2017 1:30,28/02/2008 21:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1068,29/09/2017 1:30,28/02/2008 21:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1067,29/09/2017 1:30,28/02/2008 21:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1053,29/09/2017 1:30,27/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1051,29/09/2017 1:30,27/02/2008 19:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1046,29/09/2017 1:30,27/02/2008 19:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1044,29/09/2017 1:30,27/02/2008 19:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1042,29/09/2017 1:30,27/02/2008 19:44,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1039,29/09/2017 1:30,27/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1038,29/09/2017 1:30,27/02/2008 19:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1036,29/09/2017 1:30,2/06/2008 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0955,29/09/2017 1:30,29/05/2008 16:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0939,29/09/2017 1:30,25/02/2008 20:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0938,29/09/2017 1:30,25/02/2008 18:44,4.7,200, Information Exposure,nan
CVE-2008-0934,29/09/2017 1:30,25/02/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0933,29/09/2017 1:30,25/02/2008 18:44,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-0928,29/09/2017 1:30,3/03/2008 22:44,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2008-0922,29/09/2017 1:30,22/02/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0921,29/09/2017 1:30,22/02/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0911,29/09/2017 1:30,22/02/2008 23:44,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0907,29/09/2017 1:30,22/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0906,29/09/2017 1:30,22/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0905,29/09/2017 1:30,22/02/2008 21:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0882,29/09/2017 1:30,21/02/2008 19:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0881,29/09/2017 1:30,21/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0880,29/09/2017 1:30,21/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0878,29/09/2017 1:30,21/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0844,29/09/2017 1:30,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0842,29/09/2017 1:30,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0841,29/09/2017 1:30,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0839,29/09/2017 1:30,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0833,29/09/2017 1:30,20/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0832,29/09/2017 1:30,20/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0831,29/09/2017 1:30,20/02/2008 19:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0830,29/09/2017 1:30,19/02/2008 22:44,7.5,20, Improper Input Validation,nan
CVE-2008-0829,29/09/2017 1:30,19/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0827,29/09/2017 1:30,19/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0821,29/09/2017 1:30,19/02/2008 20:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0818,29/09/2017 1:30,19/02/2008 20:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0814,29/09/2017 1:30,19/02/2008 2:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0813,29/09/2017 1:30,19/02/2008 2:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0811,29/09/2017 1:30,19/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0805,29/09/2017 1:30,19/02/2008 0:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-0804,29/09/2017 1:30,19/02/2008 0:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0803,29/09/2017 1:30,15/02/2008 22:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0802,29/09/2017 1:30,15/02/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0801,29/09/2017 1:30,15/02/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0800,29/09/2017 1:30,15/02/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0799,29/09/2017 1:30,15/02/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0796,29/09/2017 1:30,15/02/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0795,29/09/2017 1:30,15/02/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0794,29/09/2017 1:30,15/02/2008 2:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0776,29/09/2017 1:30,14/02/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0773,29/09/2017 1:30,14/02/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0772,29/09/2017 1:30,14/02/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0770,29/09/2017 1:30,14/02/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0761,29/09/2017 1:30,13/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0752,29/09/2017 1:30,13/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0746,29/09/2017 1:30,13/02/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0745,29/09/2017 1:30,13/02/2008 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0735,29/09/2017 1:30,13/02/2008 1:00,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0734,29/09/2017 1:30,13/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0722,29/09/2017 1:30,12/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0721,29/09/2017 1:30,12/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0719,29/09/2017 1:30,12/02/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0718,29/09/2017 1:30,12/02/2008 2:00,4.7,20, Improper Input Validation,nan
CVE-2008-0714,29/09/2017 1:30,12/02/2008 2:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0695,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0692,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0690,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0689,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0686,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0683,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0682,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0679,29/09/2017 1:30,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0678,29/09/2017 1:30,12/02/2008 1:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0677,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0676,29/09/2017 1:30,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0670,29/09/2017 1:30,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0660,29/09/2017 1:30,8/02/2008 2:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0659,29/09/2017 1:30,8/02/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0657,29/09/2017 1:30,7/02/2008 21:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0653,29/09/2017 1:30,7/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0652,29/09/2017 1:30,7/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0649,29/09/2017 1:30,7/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0648,29/09/2017 1:30,7/02/2008 21:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0647,29/09/2017 1:30,7/02/2008 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0634,29/09/2017 1:30,6/02/2008 21:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0631,29/09/2017 1:30,6/02/2008 21:00,4.3,20, Improper Input Validation,nan
CVE-2008-0625,29/09/2017 1:30,6/02/2008 21:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0624,29/09/2017 1:30,6/02/2008 21:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0623,29/09/2017 1:30,6/02/2008 21:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0614,29/09/2017 1:30,6/02/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0611,29/09/2017 1:30,6/02/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0607,29/09/2017 1:30,6/02/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0606,29/09/2017 1:30,6/02/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0603,29/09/2017 1:30,6/02/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0602,29/09/2017 1:30,6/02/2008 12:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0601,29/09/2017 1:30,6/02/2008 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0598,29/09/2017 1:30,30/06/2008 22:41,4.9,200, Information Exposure,nan
CVE-2008-0588,29/09/2017 1:30,5/02/2008 3:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0587,29/09/2017 1:30,5/02/2008 3:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0586,29/09/2017 1:30,5/02/2008 3:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0584,29/09/2017 1:30,5/02/2008 3:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0579,29/09/2017 1:30,5/02/2008 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0573,29/09/2017 1:30,5/02/2008 2:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0572,29/09/2017 1:30,5/02/2008 2:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0567,29/09/2017 1:30,5/02/2008 2:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0566,29/09/2017 1:30,5/02/2008 2:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0565,29/09/2017 1:30,5/02/2008 2:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0562,29/09/2017 1:30,4/02/2008 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0561,29/09/2017 1:30,4/02/2008 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0557,29/09/2017 1:30,4/02/2008 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0554,29/09/2017 1:30,8/02/2008 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0551,29/09/2017 1:30,1/02/2008 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0545,29/09/2017 1:30,1/02/2008 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0542,29/09/2017 1:30,1/02/2008 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0541,29/09/2017 1:30,1/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0521,29/09/2017 1:30,31/01/2008 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0520,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0519,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0518,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0517,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0515,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0514,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0512,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0511,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0510,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0509,29/09/2017 1:30,31/01/2008 20:00,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0507,29/09/2017 1:30,31/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0503,29/09/2017 1:30,31/01/2008 20:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0502,29/09/2017 1:30,31/01/2008 20:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0501,29/09/2017 1:30,30/01/2008 22:00,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0498,29/09/2017 1:30,30/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0493,29/09/2017 1:30,30/01/2008 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0492,29/09/2017 1:30,30/01/2008 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0491,29/09/2017 1:30,30/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0490,29/09/2017 1:30,30/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0478,29/09/2017 1:30,29/01/2008 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0477,29/09/2017 1:30,29/01/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0468,29/09/2017 1:30,29/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0465,29/09/2017 1:30,25/01/2008 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0464,29/09/2017 1:30,25/01/2008 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0461,29/09/2017 1:30,25/01/2008 16:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0459,29/09/2017 1:30,25/01/2008 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0458,29/09/2017 1:30,25/01/2008 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0453,29/09/2017 1:30,25/01/2008 0:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0452,29/09/2017 1:30,25/01/2008 0:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0447,29/09/2017 1:30,25/01/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0446,29/09/2017 1:30,25/01/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0443,29/09/2017 1:30,25/01/2008 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0440,29/09/2017 1:30,23/01/2008 23:00,5.0,255, Credentials Management,nan
CVE-2008-0437,29/09/2017 1:30,23/01/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0435,29/09/2017 1:30,23/01/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0431,29/09/2017 1:30,23/01/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0430,29/09/2017 1:30,23/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0429,29/09/2017 1:30,23/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0425,29/09/2017 1:30,23/01/2008 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0424,29/09/2017 1:30,23/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0423,29/09/2017 1:30,23/01/2008 22:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0421,29/09/2017 1:30,23/01/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0399,29/09/2017 1:30,23/01/2008 12:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0398,29/09/2017 1:30,23/01/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0397,29/09/2017 1:30,23/01/2008 12:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0394,29/09/2017 1:30,23/01/2008 12:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0393,29/09/2017 1:30,23/01/2008 3:00,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0392,29/09/2017 1:30,23/01/2008 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0391,29/09/2017 1:30,23/01/2008 2:00,7.5,287, Improper Authentication,nan
CVE-2008-0390,29/09/2017 1:30,23/01/2008 2:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0388,29/09/2017 1:30,23/01/2008 2:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0380,29/09/2017 1:30,22/01/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0379,29/09/2017 1:30,22/01/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0376,29/09/2017 1:30,22/01/2008 20:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0371,29/09/2017 1:30,22/01/2008 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0358,29/09/2017 1:30,18/01/2008 22:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0357,29/09/2017 1:30,18/01/2008 22:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0355,29/09/2017 1:30,18/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0353,29/09/2017 1:30,18/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0352,29/09/2017 1:30,18/01/2008 0:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0351,29/09/2017 1:30,18/01/2008 0:00,5.0,287, Improper Authentication,nan
CVE-2008-0350,29/09/2017 1:30,18/01/2008 0:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0338,29/09/2017 1:30,17/01/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0337,29/09/2017 1:30,17/01/2008 22:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0333,29/09/2017 1:30,17/01/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0329,29/09/2017 1:30,17/01/2008 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0328,29/09/2017 1:30,17/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0327,29/09/2017 1:30,17/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0326,29/09/2017 1:30,17/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0325,29/09/2017 1:30,17/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0324,29/09/2017 1:30,17/01/2008 3:00,4.9,399, Resource Management Errors,nan
CVE-2008-0320,29/09/2017 1:30,17/04/2008 19:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0310,29/09/2017 1:30,7/04/2008 17:44,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0304,29/09/2017 1:30,29/02/2008 19:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0300,29/09/2017 1:30,11/03/2008 23:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0297,29/09/2017 1:30,16/01/2008 23:00,5.0,200, Information Exposure,nan
CVE-2008-0296,29/09/2017 1:30,16/01/2008 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0295,29/09/2017 1:30,16/01/2008 22:00,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0290,29/09/2017 1:30,16/01/2008 2:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0287,29/09/2017 1:30,16/01/2008 2:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0283,29/09/2017 1:30,15/01/2008 21:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0282,29/09/2017 1:30,15/01/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0279,29/09/2017 1:30,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0278,29/09/2017 1:30,15/01/2008 20:00,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0270,29/09/2017 1:30,15/01/2008 20:00,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0262,29/09/2017 1:30,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0260,29/09/2017 1:30,15/01/2008 20:00,5.0,20, Improper Input Validation,nan
CVE-2008-0259,29/09/2017 1:30,15/01/2008 20:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0256,29/09/2017 1:30,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0255,29/09/2017 1:30,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0254,29/09/2017 1:30,15/01/2008 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0250,29/09/2017 1:30,12/01/2008 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0248,29/09/2017 1:30,12/01/2008 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0246,29/09/2017 1:30,12/01/2008 2:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0245,29/09/2017 1:30,12/01/2008 2:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0237,29/09/2017 1:30,11/01/2008 2:46,6.8,20, Improper Input Validation,nan
CVE-2008-0235,29/09/2017 1:30,11/01/2008 2:46,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0233,29/09/2017 1:30,11/01/2008 2:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0232,29/09/2017 1:30,11/01/2008 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0230,29/09/2017 1:30,11/01/2008 0:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0222,29/09/2017 1:30,10/01/2008 23:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0221,29/09/2017 1:30,10/01/2008 23:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0220,29/09/2017 1:30,10/01/2008 23:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0219,29/09/2017 1:30,10/01/2008 23:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0210,29/09/2017 1:30,10/01/2008 0:46,6.4,287, Improper Authentication,nan
CVE-2008-0187,29/09/2017 1:30,9/01/2008 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0159,29/09/2017 1:30,9/01/2008 0:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0158,29/09/2017 1:30,9/01/2008 0:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0157,29/09/2017 1:30,9/01/2008 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0155,29/09/2017 1:30,9/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0154,29/09/2017 1:30,9/01/2008 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0147,29/09/2017 1:30,9/01/2008 0:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0144,29/09/2017 1:30,8/01/2008 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0143,29/09/2017 1:30,8/01/2008 19:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0142,29/09/2017 1:30,8/01/2008 19:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0141,29/09/2017 1:30,8/01/2008 19:46,7.5,255, Credentials Management,nan
CVE-2008-0140,29/09/2017 1:30,8/01/2008 19:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0138,29/09/2017 1:30,8/01/2008 19:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0137,29/09/2017 1:30,8/01/2008 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0133,29/09/2017 1:30,8/01/2008 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0129,29/09/2017 1:30,8/01/2008 11:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0099,29/09/2017 1:30,8/01/2008 2:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0091,29/09/2017 1:30,4/01/2008 1:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0090,29/09/2017 1:30,4/01/2008 1:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0089,29/09/2017 1:30,4/01/2008 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0069,29/09/2017 1:30,2/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0053,29/09/2017 1:30,18/03/2008 23:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0047,29/09/2017 1:30,18/03/2008 23:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0016,29/09/2017 1:30,24/09/2008 20:37,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6717,29/09/2017 1:30,11/09/2008 1:04,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6712,29/09/2017 1:30,12/04/2008 19:05,4.9,189, Numeric Errors,nan
CVE-2007-6702,29/09/2017 1:30,4/03/2008 19:44,5.0,200, Information Exposure,nan
CVE-2007-6684,29/09/2017 1:30,17/01/2008 1:00,5.0,20, Improper Input Validation,nan
CVE-2007-6681,29/09/2017 1:30,17/01/2008 1:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6667,29/09/2017 1:30,4/01/2008 11:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6666,29/09/2017 1:30,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6665,29/09/2017 1:30,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6664,29/09/2017 1:30,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6663,29/09/2017 1:30,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6657,29/09/2017 1:30,4/01/2008 11:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6656,29/09/2017 1:30,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6655,29/09/2017 1:30,4/01/2008 11:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6654,29/09/2017 1:30,4/01/2008 11:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6653,29/09/2017 1:30,4/01/2008 11:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6652,29/09/2017 1:30,4/01/2008 11:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6649,29/09/2017 1:30,4/01/2008 11:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6648,29/09/2017 1:30,4/01/2008 11:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6647,29/09/2017 1:30,4/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6639,29/09/2017 1:30,4/01/2008 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6638,29/09/2017 1:30,4/01/2008 0:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6637,29/09/2017 1:30,4/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6632,29/09/2017 1:30,4/01/2008 0:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6624,29/09/2017 1:30,4/01/2008 0:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6623,29/09/2017 1:30,4/01/2008 0:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6622,29/09/2017 1:30,4/01/2008 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6621,29/09/2017 1:30,4/01/2008 0:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6620,29/09/2017 1:30,4/01/2008 0:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6605,29/09/2017 1:30,31/12/2007 20:46,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6604,29/09/2017 1:30,31/12/2007 20:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6603,29/09/2017 1:30,31/12/2007 20:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6602,29/09/2017 1:30,31/12/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6589,29/09/2017 1:30,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6586,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6585,29/09/2017 1:30,28/12/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6584,29/09/2017 1:30,28/12/2007 21:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6583,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6582,29/09/2017 1:30,28/12/2007 21:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6581,29/09/2017 1:30,28/12/2007 21:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6580,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6579,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6578,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6577,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6576,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6575,29/09/2017 1:30,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6568,29/09/2017 1:30,28/12/2007 21:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6557,29/09/2017 1:29,28/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6556,29/09/2017 1:29,28/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6555,29/09/2017 1:29,28/12/2007 0:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6554,29/09/2017 1:29,28/12/2007 0:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6553,29/09/2017 1:29,28/12/2007 0:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6551,29/09/2017 1:29,28/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6550,29/09/2017 1:29,28/12/2007 0:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6543,29/09/2017 1:29,28/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6542,29/09/2017 1:29,27/12/2007 23:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6505,29/09/2017 1:29,20/12/2007 23:46,3.5,16, Configuration,nan
CVE-2007-6490,29/09/2017 1:29,20/12/2007 20:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6488,29/09/2017 1:29,20/12/2007 20:46,6.8,20, Improper Input Validation,nan
CVE-2007-6479,29/09/2017 1:29,20/12/2007 20:46,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-6476,29/09/2017 1:29,20/12/2007 20:46,5.0,200, Information Exposure,nan
CVE-2007-6475,29/09/2017 1:29,20/12/2007 20:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6474,29/09/2017 1:29,20/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6473,29/09/2017 1:29,20/12/2007 20:46,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6472,29/09/2017 1:29,20/12/2007 20:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6466,29/09/2017 1:29,20/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6464,29/09/2017 1:29,20/12/2007 0:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6462,29/09/2017 1:29,20/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6458,29/09/2017 1:29,20/12/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6416,29/09/2017 1:29,17/12/2007 23:46,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-6414,29/09/2017 1:29,17/12/2007 23:46,7.5,255, Credentials Management,nan
CVE-2007-6400,29/09/2017 1:29,17/12/2007 18:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6394,29/09/2017 1:29,17/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6393,29/09/2017 1:29,17/12/2007 18:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6392,29/09/2017 1:29,17/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6391,29/09/2017 1:29,17/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6387,29/09/2017 1:29,15/12/2007 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6369,29/09/2017 1:29,15/12/2007 1:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6344,29/09/2017 1:29,13/12/2007 22:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6335,29/09/2017 1:29,20/12/2007 1:46,7.5,189, Numeric Errors,nan
CVE-2007-6327,29/09/2017 1:29,13/12/2007 19:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6326,29/09/2017 1:29,13/12/2007 19:46,5.0,20, Improper Input Validation,nan
CVE-2007-6325,29/09/2017 1:29,13/12/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6324,29/09/2017 1:29,13/12/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6323,29/09/2017 1:29,13/12/2007 19:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6322,29/09/2017 1:29,13/12/2007 19:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6292,29/09/2017 1:29,10/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6290,29/09/2017 1:29,10/12/2007 18:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6289,29/09/2017 1:29,10/12/2007 18:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6285,29/09/2017 1:29,20/12/2007 22:46,6.2,16, Configuration,nan
CVE-2007-6283,29/09/2017 1:29,18/12/2007 1:46,4.9,200, Information Exposure,nan
CVE-2007-6282,29/09/2017 1:29,8/05/2008 0:20,7.1,16, Configuration,nan
CVE-2007-6276,29/09/2017 1:29,7/12/2007 11:46,7.8,189, Numeric Errors,nan
CVE-2007-6246,29/09/2017 1:29,20/12/2007 1:46,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-6243,29/09/2017 1:29,20/12/2007 1:46,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6239,29/09/2017 1:29,4/12/2007 18:46,5.0,20, Improper Input Validation,nan
CVE-2007-6236,29/09/2017 1:29,4/12/2007 18:46,5.0,189, Numeric Errors,nan
CVE-2007-6234,29/09/2017 1:29,4/12/2007 18:46,10.0,287, Improper Authentication,nan
CVE-2007-6233,29/09/2017 1:29,4/12/2007 18:46,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6232,29/09/2017 1:29,4/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6231,29/09/2017 1:29,4/12/2007 18:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6229,29/09/2017 1:29,4/12/2007 18:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6223,29/09/2017 1:29,4/12/2007 17:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6213,29/09/2017 1:29,4/12/2007 15:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6212,29/09/2017 1:29,4/12/2007 15:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6202,29/09/2017 1:29,1/12/2007 6:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6188,29/09/2017 1:29,30/11/2007 1:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6187,29/09/2017 1:29,30/11/2007 1:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6184,29/09/2017 1:29,30/11/2007 0:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6179,29/09/2017 1:29,30/11/2007 0:46,7.5,20, Improper Input Validation,nan
CVE-2007-6178,29/09/2017 1:29,30/11/2007 0:46,7.5,20, Improper Input Validation,nan
CVE-2007-6177,29/09/2017 1:29,30/11/2007 0:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6176,29/09/2017 1:29,30/11/2007 0:46,10.0,20, Improper Input Validation,nan
CVE-2007-6128,29/09/2017 1:29,26/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6127,29/09/2017 1:29,26/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6126,29/09/2017 1:29,26/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6125,29/09/2017 1:29,26/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6124,29/09/2017 1:29,26/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6110,29/09/2017 1:29,23/11/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6089,29/09/2017 1:29,22/11/2007 0:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6088,29/09/2017 1:29,22/11/2007 0:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6084,29/09/2017 1:29,22/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6080,29/09/2017 1:29,21/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6079,29/09/2017 1:29,21/11/2007 22:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6078,29/09/2017 1:29,21/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6063,29/09/2017 1:29,21/11/2007 0:46,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6057,29/09/2017 1:29,20/11/2007 20:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6038,29/09/2017 1:29,20/11/2007 11:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6027,29/09/2017 1:29,20/11/2007 1:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6016,29/09/2017 1:29,29/02/2008 19:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6004,29/09/2017 1:29,15/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5999,29/09/2017 1:29,15/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5998,29/09/2017 1:29,15/11/2007 22:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5997,29/09/2017 1:29,15/11/2007 22:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5996,29/09/2017 1:29,15/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5995,29/09/2017 1:29,15/11/2007 22:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5992,29/09/2017 1:29,15/11/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5974,29/09/2017 1:29,15/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5973,29/09/2017 1:29,15/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5964,29/09/2017 1:29,13/12/2007 18:46,6.9,16, Configuration,nan
CVE-2007-5941,29/09/2017 1:29,14/11/2007 1:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5938,29/09/2017 1:29,6/12/2007 15:46,5.0,189, Numeric Errors,nan
CVE-2007-5912,29/09/2017 1:29,10/11/2007 2:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5911,29/09/2017 1:29,10/11/2007 2:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5907,29/09/2017 1:29,9/11/2007 19:46,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2007-5901,29/09/2017 1:29,6/12/2007 2:46,6.9,399, Resource Management Errors,nan
CVE-2007-5887,29/09/2017 1:29,7/11/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5845,29/09/2017 1:29,6/11/2007 21:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5844,29/09/2017 1:29,6/11/2007 21:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5843,29/09/2017 1:29,6/11/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5842,29/09/2017 1:29,6/11/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5841,29/09/2017 1:29,6/11/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5840,29/09/2017 1:29,6/11/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5826,29/09/2017 1:29,5/11/2007 19:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5821,29/09/2017 1:29,5/11/2007 19:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5820,29/09/2017 1:29,5/11/2007 19:46,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5813,29/09/2017 1:29,5/11/2007 17:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5812,29/09/2017 1:29,5/11/2007 17:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5811,29/09/2017 1:29,5/11/2007 17:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5800,29/09/2017 1:29,3/11/2007 0:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5786,29/09/2017 1:29,1/11/2007 16:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5785,29/09/2017 1:29,1/11/2007 16:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5784,29/09/2017 1:29,1/11/2007 16:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5783,29/09/2017 1:29,1/11/2007 16:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5782,29/09/2017 1:29,1/11/2007 16:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5781,29/09/2017 1:29,1/11/2007 16:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5779,29/09/2017 1:29,1/11/2007 16:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5774,29/09/2017 1:29,1/11/2007 16:46,5.0,200, Information Exposure,nan
CVE-2007-5773,29/09/2017 1:29,1/11/2007 16:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5770,29/09/2017 1:29,14/11/2007 1:46,5.0,287, Improper Authentication,nan
CVE-2007-5764,29/09/2017 1:29,25/01/2008 1:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5754,29/09/2017 1:29,31/10/2007 17:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5747,29/09/2017 1:29,17/04/2008 19:05,6.8,189, Numeric Errors,nan
CVE-2007-5746,29/09/2017 1:29,17/04/2008 19:05,6.8,189, Numeric Errors,nan
CVE-2007-5745,29/09/2017 1:29,17/04/2008 19:05,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5731,29/09/2017 1:29,30/10/2007 23:46,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5730,29/09/2017 1:29,30/10/2007 22:46,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5721,29/09/2017 1:29,30/10/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5720,29/09/2017 1:29,30/10/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5719,29/09/2017 1:29,30/10/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5709,29/09/2017 1:29,30/10/2007 19:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5707,29/09/2017 1:29,30/10/2007 19:46,7.1,399, Resource Management Errors,nan
CVE-2007-5699,29/09/2017 1:29,29/10/2007 21:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5697,29/09/2017 1:29,29/10/2007 21:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5679,29/09/2017 1:29,25/10/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5676,29/09/2017 1:29,24/10/2007 23:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5674,29/09/2017 1:29,24/10/2007 23:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5666,29/09/2017 1:29,12/02/2008 19:00,6.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5663,29/09/2017 1:29,12/02/2008 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5659,29/09/2017 1:29,12/02/2008 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5654,29/09/2017 1:29,23/10/2007 21:47,5.0,200, Information Exposure,nan
CVE-2007-5653,29/09/2017 1:29,23/10/2007 21:47,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2007-5644,29/09/2017 1:29,23/10/2007 21:47,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5643,29/09/2017 1:29,23/10/2007 21:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5642,29/09/2017 1:29,23/10/2007 21:47,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5641,29/09/2017 1:29,23/10/2007 21:47,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5630,29/09/2017 1:29,23/10/2007 17:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5628,29/09/2017 1:29,23/10/2007 16:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5627,29/09/2017 1:29,23/10/2007 16:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5620,29/09/2017 1:29,22/10/2007 19:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5600,29/09/2017 1:29,19/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5592,29/09/2017 1:29,19/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5583,29/09/2017 1:29,18/12/2007 1:46,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5574,29/09/2017 1:29,18/10/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5573,29/09/2017 1:29,18/10/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5498,29/09/2017 1:29,8/05/2008 0:20,4.9,399, Resource Management Errors,nan
CVE-2007-5496,29/09/2017 1:29,23/05/2008 15:32,1.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5495,29/09/2017 1:29,23/05/2008 15:32,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5494,29/09/2017 1:29,30/11/2007 2:46,4.9,399, Resource Management Errors,nan
CVE-2007-5490,29/09/2017 1:29,17/10/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5489,29/09/2017 1:29,17/10/2007 18:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5485,29/09/2017 1:29,16/10/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5467,29/09/2017 1:29,15/10/2007 23:17,10.0,189, Numeric Errors,nan
CVE-2007-5466,29/09/2017 1:29,15/10/2007 23:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5465,29/09/2017 1:29,15/10/2007 23:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5458,29/09/2017 1:29,14/10/2007 19:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5453,29/09/2017 1:29,14/10/2007 18:17,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5452,29/09/2017 1:29,14/10/2007 18:17,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5451,29/09/2017 1:29,14/10/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5450,29/09/2017 1:29,14/10/2007 18:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5449,29/09/2017 1:29,14/10/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5447,29/09/2017 1:29,14/10/2007 18:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-5446,29/09/2017 1:29,14/10/2007 18:17,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5412,29/09/2017 1:29,12/10/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5409,29/09/2017 1:29,12/10/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5408,29/09/2017 1:29,12/10/2007 18:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5407,29/09/2017 1:29,12/10/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5393,29/09/2017 1:29,8/11/2007 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5392,29/09/2017 1:29,8/11/2007 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5390,29/09/2017 1:29,12/10/2007 10:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5388,29/09/2017 1:29,12/10/2007 10:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5387,29/09/2017 1:29,12/10/2007 10:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5374,29/09/2017 1:29,11/10/2007 10:17,6.5,287, Improper Authentication,nan
CVE-2007-5367,29/09/2017 1:29,11/10/2007 10:17,4.9,399, Resource Management Errors,nan
CVE-2007-5322,29/09/2017 1:29,9/10/2007 22:17,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2007-5316,29/09/2017 1:29,9/10/2007 21:17,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5315,29/09/2017 1:29,9/10/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5314,29/09/2017 1:29,9/10/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5313,29/09/2017 1:29,9/10/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5310,29/09/2017 1:29,9/10/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5309,29/09/2017 1:29,9/10/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5308,29/09/2017 1:29,9/10/2007 18:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5302,29/09/2017 1:29,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5299,29/09/2017 1:29,9/10/2007 18:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5278,29/09/2017 1:29,8/10/2007 23:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-5275,29/09/2017 1:29,8/10/2007 23:17,5.0,20, Improper Input Validation,nan
CVE-2007-5272,29/09/2017 1:29,8/10/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5271,29/09/2017 1:29,8/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5261,29/09/2017 1:29,6/10/2007 17:17,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5257,29/09/2017 1:29,6/10/2007 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5237,29/09/2017 1:29,6/10/2007 0:17,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5234,29/09/2017 1:29,5/10/2007 23:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5233,29/09/2017 1:29,5/10/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5222,29/09/2017 1:29,5/10/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5221,29/09/2017 1:29,5/10/2007 0:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5219,29/09/2017 1:29,5/10/2007 0:17,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5187,29/09/2017 1:29,3/10/2007 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5186,29/09/2017 1:29,3/10/2007 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5185,29/09/2017 1:29,3/10/2007 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5178,29/09/2017 1:29,3/10/2007 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5177,29/09/2017 1:29,3/10/2007 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5175,29/09/2017 1:29,3/10/2007 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5157,29/09/2017 1:29,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5140,29/09/2017 1:29,28/09/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5139,29/09/2017 1:29,28/09/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5138,29/09/2017 1:29,28/09/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5137,29/09/2017 1:29,28/09/2007 21:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5132,29/09/2017 1:29,27/09/2007 19:17,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-5123,29/09/2017 1:29,27/09/2007 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5122,29/09/2017 1:29,27/09/2007 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5110,29/09/2017 1:29,26/09/2007 23:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5103,29/09/2017 1:29,26/09/2007 22:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5098,29/09/2017 1:29,26/09/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5094,29/09/2017 1:29,26/09/2007 22:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5081,29/09/2017 1:29,31/10/2007 17:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5070,29/09/2017 1:29,24/09/2007 23:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5068,29/09/2017 1:29,24/09/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5067,29/09/2017 1:29,24/09/2007 23:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5065,29/09/2017 1:29,24/09/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5063,29/09/2017 1:29,24/09/2007 22:17,5.0,255, Credentials Management,nan
CVE-2007-5062,29/09/2017 1:29,24/09/2007 22:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5061,29/09/2017 1:29,24/09/2007 22:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5056,29/09/2017 1:29,24/09/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5055,29/09/2017 1:29,24/09/2007 22:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5054,29/09/2017 1:29,24/09/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5053,29/09/2017 1:29,24/09/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5036,29/09/2017 1:29,24/09/2007 0:17,5.0,20, Improper Input Validation,nan
CVE-2007-5019,29/09/2017 1:29,20/09/2007 21:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5018,29/09/2017 1:29,20/09/2007 21:17,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5017,29/09/2017 1:29,20/09/2007 21:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5016,29/09/2017 1:29,20/09/2007 21:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5015,29/09/2017 1:29,20/09/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5009,29/09/2017 1:29,20/09/2007 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5008,29/09/2017 1:29,20/09/2007 21:17,9.0,287, Improper Authentication,nan
CVE-2007-5001,29/09/2017 1:29,8/05/2008 0:20,4.9,399, Resource Management Errors,nan
CVE-2007-4997,29/09/2017 1:29,6/11/2007 19:46,7.1,189, Numeric Errors,nan
CVE-2007-4984,29/09/2017 1:29,19/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4983,29/09/2017 1:29,19/09/2007 19:17,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4982,29/09/2017 1:29,19/09/2007 18:17,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4979,29/09/2017 1:29,19/09/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4978,29/09/2017 1:29,19/09/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4957,29/09/2017 1:29,18/09/2007 20:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4956,29/09/2017 1:29,18/09/2007 20:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4955,29/09/2017 1:29,18/09/2007 20:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4954,29/09/2017 1:29,18/09/2007 20:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4953,29/09/2017 1:29,18/09/2007 20:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4952,29/09/2017 1:29,18/09/2007 20:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4934,29/09/2017 1:29,18/09/2007 18:17,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4933,29/09/2017 1:29,18/09/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4932,29/09/2017 1:29,18/09/2007 18:17,7.5,20, Improper Input Validation,nan
CVE-2007-4923,29/09/2017 1:29,17/09/2007 17:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4922,29/09/2017 1:29,17/09/2007 17:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4921,29/09/2017 1:29,17/09/2007 17:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4920,29/09/2017 1:29,17/09/2007 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4919,29/09/2017 1:29,17/09/2007 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4911,29/09/2017 1:29,17/09/2007 17:17,5.0,20, Improper Input Validation,nan
CVE-2007-4908,29/09/2017 1:29,17/09/2007 16:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4907,29/09/2017 1:29,17/09/2007 16:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4905,29/09/2017 1:29,17/09/2007 16:17,7.5,20, Improper Input Validation,nan
CVE-2007-4903,29/09/2017 1:29,17/09/2007 16:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4902,29/09/2017 1:29,17/09/2007 16:17,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4895,29/09/2017 1:29,14/09/2007 18:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4891,29/09/2017 1:29,14/09/2007 1:17,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2007-4890,29/09/2017 1:29,14/09/2007 1:17,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4886,29/09/2017 1:29,14/09/2007 0:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4846,29/09/2017 1:29,12/09/2007 20:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4845,29/09/2017 1:29,12/09/2007 20:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4834,29/09/2017 1:29,12/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4821,29/09/2017 1:29,11/09/2007 19:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4820,29/09/2017 1:29,11/09/2007 19:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4817,29/09/2017 1:29,11/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4816,29/09/2017 1:29,11/09/2007 19:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4809,29/09/2017 1:29,11/09/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4808,29/09/2017 1:29,11/09/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4807,29/09/2017 1:29,11/09/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4806,29/09/2017 1:29,11/09/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4805,29/09/2017 1:29,11/09/2007 18:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4804,29/09/2017 1:29,11/09/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4803,29/09/2017 1:29,11/09/2007 18:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4802,29/09/2017 1:29,11/09/2007 18:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4781,29/09/2017 1:29,10/09/2007 21:17,6.6,20, Improper Input Validation,nan
CVE-2007-4776,29/09/2017 1:29,10/09/2007 21:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4763,29/09/2017 1:29,8/09/2007 10:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4757,29/09/2017 1:29,8/09/2007 10:17,7.5,20, Improper Input Validation,nan
CVE-2007-4748,29/09/2017 1:29,6/09/2007 22:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4744,29/09/2017 1:29,6/09/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4737,29/09/2017 1:29,6/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4736,29/09/2017 1:29,6/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4735,29/09/2017 1:29,6/09/2007 19:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4734,29/09/2017 1:29,6/09/2007 19:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4732,29/09/2017 1:29,6/09/2007 19:17,4.9,20, Improper Input Validation,nan
CVE-2007-4730,29/09/2017 1:29,11/09/2007 19:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4726,29/09/2017 1:29,5/09/2007 19:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4722,29/09/2017 1:29,5/09/2007 19:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4714,29/09/2017 1:29,5/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4712,29/09/2017 1:29,5/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4653,29/09/2017 1:29,4/09/2007 22:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4647,29/09/2017 1:29,31/08/2007 23:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4646,29/09/2017 1:29,31/08/2007 23:17,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4645,29/09/2017 1:29,31/08/2007 23:17,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4641,29/09/2017 1:29,31/08/2007 23:17,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4640,29/09/2017 1:29,31/08/2007 23:17,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4636,29/09/2017 1:29,31/08/2007 23:17,7.5,20, Improper Input Validation,nan
CVE-2007-4623,29/09/2017 1:29,5/11/2007 16:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4619,29/09/2017 1:29,12/10/2007 21:17,9.3,189, Numeric Errors,nan
CVE-2007-4606,29/09/2017 1:29,31/08/2007 0:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4605,29/09/2017 1:29,31/08/2007 0:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4604,29/09/2017 1:29,31/08/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4603,29/09/2017 1:29,31/08/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4602,29/09/2017 1:29,31/08/2007 0:17,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4597,29/09/2017 1:29,30/08/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4596,29/09/2017 1:29,30/08/2007 18:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4586,29/09/2017 1:29,29/08/2007 1:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4585,29/09/2017 1:29,29/08/2007 1:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4584,29/09/2017 1:29,29/08/2007 1:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4583,29/09/2017 1:29,29/08/2007 1:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4582,29/09/2017 1:29,29/08/2007 1:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4581,29/09/2017 1:29,29/08/2007 1:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4575,29/09/2017 1:29,6/12/2007 2:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4570,29/09/2017 1:29,10/11/2007 0:46,1.9,20, Improper Input Validation,nan
CVE-2007-4569,29/09/2017 1:29,21/09/2007 19:17,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-4513,29/09/2017 1:29,5/11/2007 16:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4474,29/09/2017 1:29,27/12/2007 22:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4440,29/09/2017 1:29,21/08/2007 0:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4420,29/09/2017 1:29,18/08/2007 21:17,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4258,29/09/2017 1:29,8/08/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4130,29/09/2017 1:29,5/02/2008 0:00,7.2,20, Improper Input Validation,nan
CVE-2007-4129,29/09/2017 1:29,8/11/2007 11:46,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-4066,29/09/2017 1:29,21/09/2007 19:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4058,29/09/2017 1:29,30/07/2007 17:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4056,29/09/2017 1:29,30/07/2007 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4031,29/09/2017 1:29,27/07/2007 22:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4009,29/09/2017 1:29,26/07/2007 0:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4008,29/09/2017 1:29,26/07/2007 0:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4005,29/09/2017 1:29,26/07/2007 0:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3996,29/09/2017 1:29,4/09/2007 18:17,6.8,189, Numeric Errors,nan
CVE-2007-3978,29/09/2017 1:29,25/07/2007 17:30,4.3,255, Credentials Management,nan
CVE-2007-3977,29/09/2017 1:29,25/07/2007 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3938,29/09/2017 1:29,21/07/2007 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3937,29/09/2017 1:29,21/07/2007 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3936,29/09/2017 1:29,21/07/2007 0:30,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3933,29/09/2017 1:29,21/07/2007 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3919,29/09/2017 1:29,28/10/2007 17:08,6.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-3876,29/09/2017 1:29,19/12/2007 21:46,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3851,29/09/2017 1:29,13/08/2007 19:17,6.0,399, Resource Management Errors,nan
CVE-2007-3850,29/09/2017 1:29,23/10/2007 10:46,1.9,200, Information Exposure,nan
CVE-2007-3849,29/09/2017 1:29,5/09/2007 1:17,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-3806,29/09/2017 1:29,17/07/2007 0:30,6.8,399, Resource Management Errors,nan
CVE-2007-3740,29/09/2017 1:29,14/09/2007 1:17,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-3739,29/09/2017 1:29,14/09/2007 1:17,4.7,399, Resource Management Errors,nan
CVE-2007-3687,29/09/2017 1:29,11/07/2007 17:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3586,29/09/2017 1:29,5/07/2007 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3539,29/09/2017 1:29,3/07/2007 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1346,28/09/2017 19:54,25/09/2017 16:29,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8772,28/09/2017 19:25,20/09/2017 14:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-8771,28/09/2017 19:20,20/09/2017 14:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-8770,28/09/2017 19:13,20/09/2017 14:29,7.8,200, Information Exposure,nan
CVE-2014-8684,28/09/2017 18:47,19/09/2017 19:29,7.5,310, Cryptographic Issues,nan
CVE-2016-5868,28/09/2017 18:45,25/09/2017 21:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-3431,28/09/2017 18:33,19/09/2017 15:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-8686,28/09/2017 18:19,19/09/2017 19:29,5.0,310, Cryptographic Issues,nan
CVE-2017-14734,28/09/2017 18:18,25/09/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14530,28/09/2017 18:17,18/09/2017 1:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1424,28/09/2017 18:16,25/09/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12157,28/09/2017 18:15,18/09/2017 4:29,4.0,200, Information Exposure,nan
CVE-2015-1329,28/09/2017 17:55,20/09/2017 16:29,9.3,416, Use After Free,nan
CVE-2017-6271,28/09/2017 17:13,22/09/2017 17:29,4.9,369, Divide By Zero,nan
CVE-2015-3296,28/09/2017 17:06,21/09/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14511,28/09/2017 17:04,17/09/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-14729,28/09/2017 16:51,25/09/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14644,28/09/2017 16:17,21/09/2017 17:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14642,28/09/2017 16:16,21/09/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14641,28/09/2017 16:16,21/09/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14640,28/09/2017 16:16,21/09/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14638,28/09/2017 16:15,21/09/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-14651,28/09/2017 15:46,21/09/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8174,28/09/2017 15:30,19/09/2017 15:29,7.5,200, Information Exposure,nan
CVE-2017-6277,28/09/2017 15:29,22/09/2017 17:29,7.2,20, Improper Input Validation,nan
CVE-2017-14621,28/09/2017 15:22,20/09/2017 23:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5395,28/09/2017 15:13,20/09/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6268,28/09/2017 15:10,22/09/2017 17:29,7.2,20, Improper Input Validation,nan
CVE-2017-6270,28/09/2017 15:04,22/09/2017 17:29,4.9,369, Divide By Zero,nan
CVE-2017-14335,28/09/2017 14:39,12/09/2017 8:29,5.0,20, Improper Input Validation,nan
CVE-2017-9281,28/09/2017 14:25,21/09/2017 22:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-14716,28/09/2017 14:19,22/09/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14715,28/09/2017 14:19,22/09/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14714,28/09/2017 14:19,22/09/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14713,28/09/2017 14:18,22/09/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0022,28/09/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-14398,27/09/2017 22:41,13/09/2017 8:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10931,27/09/2017 21:51,19/09/2017 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1866,27/09/2017 21:11,20/09/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7973,27/09/2017 20:47,26/09/2017 1:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7974,27/09/2017 20:46,26/09/2017 1:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9956,27/09/2017 20:45,26/09/2017 1:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-9957,27/09/2017 20:44,26/09/2017 1:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-9960,27/09/2017 20:39,26/09/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-1002008,27/09/2017 20:33,14/09/2017 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1002003,27/09/2017 20:33,14/09/2017 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1002002,27/09/2017 20:33,14/09/2017 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1002001,27/09/2017 20:33,14/09/2017 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1002000,27/09/2017 20:31,14/09/2017 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1002016,27/09/2017 20:30,14/09/2017 13:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2013-7429,27/09/2017 20:03,14/09/2017 16:29,7.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2014-9611,27/09/2017 20:00,19/09/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2014-9616,27/09/2017 19:49,19/09/2017 15:29,5.0,200, Information Exposure,nan
CVE-2014-9610,27/09/2017 19:49,19/09/2017 15:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9619,27/09/2017 19:48,19/09/2017 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-3165,27/09/2017 17:55,13/09/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14637,27/09/2017 17:43,22/09/2017 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14596,27/09/2017 17:43,20/09/2017 18:29,5.0,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2015-3880,27/09/2017 17:42,19/09/2017 15:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14631,27/09/2017 17:22,21/09/2017 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14617,27/09/2017 17:22,20/09/2017 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-14630,27/09/2017 17:19,21/09/2017 7:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2015-0162,27/09/2017 17:18,20/09/2017 18:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2017-14628,27/09/2017 16:43,21/09/2017 7:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14629,27/09/2017 16:30,21/09/2017 7:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2015-1864,27/09/2017 16:22,19/09/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14636,27/09/2017 16:21,22/09/2017 7:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-6315,27/09/2017 16:15,19/09/2017 17:29,10.0,20, Improper Input Validation,nan
CVE-2015-1865,27/09/2017 16:13,20/09/2017 18:29,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-14608,27/09/2017 15:57,20/09/2017 17:29,6.4,125, Out-of-bounds Read,nan
CVE-2015-3890,27/09/2017 15:25,20/09/2017 18:29,5.0,416, Use After Free,nan
CVE-2015-6673,27/09/2017 15:20,20/09/2017 18:29,7.5,416, Use After Free,nan
CVE-2017-0170,27/09/2017 1:29,11/07/2017 21:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2012-0068,27/09/2017 1:29,11/04/2012 10:39,4.3,20, Improper Input Validation,nan
CVE-2010-1818,27/09/2017 1:29,31/08/2010 20:00,9.3,824, Access of Uninitialized Pointer,nan
CVE-2017-7441,26/09/2017 18:31,13/09/2017 8:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0110,26/09/2017 18:29,15/09/2017 20:29,4.0,284, Improper Access Control,nan
CVE-2017-13761,26/09/2017 17:56,14/09/2017 17:29,4.0,200, Information Exposure,nan
CVE-2014-7808,26/09/2017 17:55,15/09/2017 20:29,5.0,310, Cryptographic Issues,nan
CVE-2015-3419,26/09/2017 17:37,19/09/2017 15:29,4.0,20, Improper Input Validation,nan
CVE-2015-9228,26/09/2017 17:31,12/09/2017 8:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-11040,26/09/2017 17:24,21/09/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-11001,26/09/2017 17:24,21/09/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-10996,26/09/2017 17:22,21/09/2017 15:29,7.1,200, Information Exposure,nan
CVE-2017-9676,26/09/2017 17:08,21/09/2017 15:29,2.6,416, Use After Free,nan
CVE-2017-12612,26/09/2017 16:25,13/09/2017 16:29,7.2,502, Deserialization of Untrusted Data,nan
CVE-2017-14346,26/09/2017 16:23,12/09/2017 18:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-7880,26/09/2017 15:52,13/09/2017 16:29,4.0,200, Information Exposure,nan
CVE-2017-14266,26/09/2017 1:29,12/09/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6160,26/09/2017 1:29,23/01/2017 21:59,5.0,399, Resource Management Errors,nan
CVE-2015-3162,26/09/2017 1:29,6/09/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3299,25/09/2017 21:27,19/09/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1490,23/09/2017 14:46,14/09/2017 14:29,3.5,200, Information Exposure,nan
CVE-2014-6191,23/09/2017 14:45,19/09/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8224,23/09/2017 14:43,20/09/2017 16:29,4.3,200, Information Exposure,nan
CVE-2015-3432,23/09/2017 14:40,19/09/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1159,23/09/2017 1:29,26/06/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1158,23/09/2017 1:29,26/06/2015 10:59,10.0,254, 7PK – Security Features,nan
CVE-2015-0550,23/09/2017 1:29,28/06/2015 19:59,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0549,23/09/2017 1:29,28/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0546,23/09/2017 1:29,17/06/2015 10:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0526,23/09/2017 1:29,22/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0173,23/09/2017 1:29,28/06/2015 14:59,4.3,17, DEPRECATED: Code,nan
CVE-2014-9229,23/09/2017 1:29,20/09/2015 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9228,23/09/2017 1:29,20/09/2015 20:59,4.9,399, Resource Management Errors,nan
CVE-2014-6198,23/09/2017 1:29,28/06/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4074,22/09/2017 23:43,20/09/2017 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4072,22/09/2017 23:42,20/09/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0689,22/09/2017 23:42,19/09/2017 15:29,5.0,19, Data Processing Errors,nan
CVE-2014-9758,22/09/2017 23:18,20/09/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5608,22/09/2017 23:16,20/09/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1556,22/09/2017 23:09,13/09/2017 18:29,4.0,20, Improper Input Validation,nan
CVE-2014-6106,22/09/2017 23:06,18/09/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4073,22/09/2017 17:03,20/09/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14597,22/09/2017 16:55,19/09/2017 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14601,22/09/2017 14:49,19/09/2017 7:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14600,22/09/2017 14:49,19/09/2017 7:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10860,22/09/2017 1:29,15/09/2017 17:29,9.3,426, Untrusted Search Path,nan
CVE-2016-4372,22/09/2017 1:29,15/07/2016 16:59,7.5,20, Improper Input Validation,nan
CVE-2015-5400,22/09/2017 1:29,28/09/2015 20:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5145,22/09/2017 1:29,14/07/2015 17:59,7.8,399, Resource Management Errors,nan
CVE-2015-5144,22/09/2017 1:29,14/07/2015 17:59,4.3,20, Improper Input Validation,nan
CVE-2015-5143,22/09/2017 1:29,14/07/2015 17:59,7.8,399, Resource Management Errors,nan
CVE-2015-5118,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5116,22/09/2017 1:29,9/07/2015 16:59,5.0,284, Improper Access Control,nan
CVE-2015-5115,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5110,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5109,22/09/2017 1:29,15/07/2015 14:59,10.0,189, Numeric Errors,nan
CVE-2015-5108,22/09/2017 1:29,15/07/2015 14:59,10.0,189, Numeric Errors,nan
CVE-2015-5107,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-5106,22/09/2017 1:29,15/07/2015 14:59,7.5,284, Improper Access Control,nan
CVE-2015-5105,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5104,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5103,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5102,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5100,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5098,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5097,22/09/2017 1:29,15/07/2015 14:59,10.0,189, Numeric Errors,nan
CVE-2015-5096,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5094,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5093,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5092,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-5091,22/09/2017 1:29,15/07/2015 14:59,7.8,20, Improper Input Validation,nan
CVE-2015-5090,22/09/2017 1:29,15/07/2015 14:59,7.5,284, Improper Access Control,nan
CVE-2015-5089,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-5088,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-5087,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5086,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-5085,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4695,22/09/2017 1:29,1/07/2015 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4642,22/09/2017 1:29,16/05/2016 10:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4634,22/09/2017 1:29,11/08/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4528,22/09/2017 1:29,16/07/2015 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4458,22/09/2017 1:29,18/07/2015 10:59,4.3,310, Cryptographic Issues,nan
CVE-2015-4452,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4451,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4450,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-4449,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-4447,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4446,22/09/2017 1:29,15/07/2015 14:59,7.5,284, Improper Access Control,nan
CVE-2015-4445,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4441,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4438,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4435,22/09/2017 1:29,15/07/2015 14:59,10.0,254, 7PK – Security Features,nan
CVE-2015-4432,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4431,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4280,22/09/2017 1:29,18/07/2015 10:59,5.0,399, Resource Management Errors,nan
CVE-2015-4279,22/09/2017 1:29,20/07/2015 23:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4276,22/09/2017 1:29,16/07/2015 19:59,6.5,20, Improper Input Validation,nan
CVE-2015-4275,22/09/2017 1:29,16/07/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-4274,22/09/2017 1:29,16/07/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4266,22/09/2017 1:29,16/07/2015 19:59,4.3,20, Improper Input Validation,nan
CVE-2015-4111,22/09/2017 1:29,20/07/2015 1:59,6.8,20, Improper Input Validation,nan
CVE-2015-3721,22/09/2017 1:29,3/07/2015 2:00,4.3,200, Information Exposure,nan
CVE-2015-3719,22/09/2017 1:29,3/07/2015 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3717,22/09/2017 1:29,3/07/2015 2:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3716,22/09/2017 1:29,3/07/2015 2:00,4.4,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-3715,22/09/2017 1:29,3/07/2015 2:00,6.8,254, 7PK – Security Features,nan
CVE-2015-3714,22/09/2017 1:29,3/07/2015 2:00,5.0,254, 7PK – Security Features,nan
CVE-2015-3712,22/09/2017 1:29,3/07/2015 2:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3711,22/09/2017 1:29,3/07/2015 2:00,4.3,200, Information Exposure,nan
CVE-2015-3710,22/09/2017 1:29,3/07/2015 2:00,4.3,254, 7PK – Security Features,nan
CVE-2015-3709,22/09/2017 1:29,3/07/2015 2:00,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-3706,22/09/2017 1:29,3/07/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3705,22/09/2017 1:29,3/07/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3704,22/09/2017 1:29,3/07/2015 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3703,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3702,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3701,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3700,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3699,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3698,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3697,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3696,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3695,22/09/2017 1:29,3/07/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3694,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3691,22/09/2017 1:29,3/07/2015 1:59,9.3,284, Improper Access Control,nan
CVE-2015-3690,22/09/2017 1:29,3/07/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-3689,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3688,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3687,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3686,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3685,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3684,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3683,22/09/2017 1:29,3/07/2015 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3682,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3681,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3680,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3679,22/09/2017 1:29,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3678,22/09/2017 1:29,3/07/2015 1:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-3677,22/09/2017 1:29,3/07/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-3676,22/09/2017 1:29,3/07/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-3675,22/09/2017 1:29,3/07/2015 1:59,5.0,284, Improper Access Control,nan
CVE-2015-3674,22/09/2017 1:29,3/07/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3673,22/09/2017 1:29,3/07/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3672,22/09/2017 1:29,3/07/2015 1:59,7.2,284, Improper Access Control,nan
CVE-2015-3671,22/09/2017 1:29,3/07/2015 1:59,7.2,284, Improper Access Control,nan
CVE-2015-3275,22/09/2017 1:29,22/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3274,22/09/2017 1:29,22/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3273,22/09/2017 1:29,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3135,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3134,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3133,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3130,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3125,22/09/2017 1:29,9/07/2015 16:59,5.0,284, Improper Access Control,nan
CVE-2015-3123,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3120,22/09/2017 1:29,9/07/2015 16:59,10.0,704, Incorrect Type Conversion or Cast,nan
CVE-2015-3117,22/09/2017 1:29,9/07/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3116,22/09/2017 1:29,9/07/2015 16:59,5.0,284, Improper Access Control,nan
CVE-2015-3115,22/09/2017 1:29,9/07/2015 16:59,5.0,284, Improper Access Control,nan
CVE-2015-3114,22/09/2017 1:29,9/07/2015 16:59,5.0,284, Improper Access Control,nan
CVE-2015-3097,22/09/2017 1:29,10/06/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-3095,22/09/2017 1:29,15/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2418,22/09/2017 1:29,20/07/2015 18:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1961,22/09/2017 1:29,13/07/2015 16:59,9.0,284, Improper Access Control,nan
CVE-2015-1944,22/09/2017 1:29,14/07/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1917,22/09/2017 1:29,14/07/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1887,22/09/2017 1:29,14/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1883,22/09/2017 1:29,20/07/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-1485,22/09/2017 1:29,28/06/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1330,22/09/2017 1:29,1/07/2015 14:59,6.8,287, Improper Authentication,nan
CVE-2015-0725,22/09/2017 1:29,16/07/2015 21:59,7.8,20, Improper Input Validation,nan
CVE-2015-0157,22/09/2017 1:29,20/07/2015 1:59,6.8,20, Improper Input Validation,nan
CVE-2014-9230,22/09/2017 1:29,28/06/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8910,22/09/2017 1:29,20/07/2015 1:59,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-8450,22/09/2017 1:29,15/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2014-0611,22/09/2017 1:29,22/07/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0578,22/09/2017 1:29,9/07/2015 16:59,5.0,284, Improper Access Control,nan
CVE-2013-2251,22/09/2017 1:29,20/07/2013 3:37,9.3,20, Improper Input Validation,nan
CVE-2015-7553,21/09/2017 18:58,14/09/2017 16:29,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7225,21/09/2017 18:57,6/09/2017 21:29,3.5,254, 7PK – Security Features,nan
CVE-2017-14513,21/09/2017 18:53,17/09/2017 21:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-9230,21/09/2017 18:50,12/09/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8316,21/09/2017 18:50,6/09/2017 21:29,4.3,129, Improper Validation of Array Index,nan
CVE-2017-8696,21/09/2017 18:47,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9635,21/09/2017 18:47,12/09/2017 14:29,5.0,254, 7PK – Security Features,nan
CVE-2014-9634,21/09/2017 18:47,12/09/2017 14:29,5.0,254, 7PK – Security Features,nan
CVE-2017-8918,21/09/2017 18:46,12/09/2017 18:29,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8737,21/09/2017 18:43,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14345,21/09/2017 18:40,12/09/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1352,21/09/2017 18:38,12/09/2017 21:29,6.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-14396,21/09/2017 18:37,12/09/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8747,21/09/2017 18:36,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11350,21/09/2017 18:35,13/09/2017 8:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11351,21/09/2017 18:34,13/09/2017 8:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-13724,21/09/2017 18:33,13/09/2017 8:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8675,21/09/2017 18:32,13/09/2017 1:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1002010,21/09/2017 18:30,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002009,21/09/2017 18:29,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8743,21/09/2017 18:28,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1002023,21/09/2017 18:27,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8676,21/09/2017 18:26,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-8692,21/09/2017 18:17,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8695,21/09/2017 18:15,13/09/2017 1:29,2.6,200, Information Exposure,nan
CVE-2017-1002025,21/09/2017 18:02,14/09/2017 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8699,21/09/2017 17:22,13/09/2017 1:29,7.6,20, Improper Input Validation,nan
CVE-2015-7877,21/09/2017 17:15,11/09/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8704,21/09/2017 17:14,13/09/2017 1:29,4.9,20, Improper Input Validation,nan
CVE-2017-0161,21/09/2017 17:10,13/09/2017 1:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-9229,21/09/2017 17:08,12/09/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8706,21/09/2017 17:06,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2015-2749,21/09/2017 17:06,13/09/2017 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8707,21/09/2017 17:05,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-1002017,21/09/2017 17:02,14/09/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14579,21/09/2017 16:53,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14577,21/09/2017 16:53,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14295,21/09/2017 16:23,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8728,21/09/2017 16:17,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8630,21/09/2017 16:10,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11761,21/09/2017 16:08,13/09/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-8745,21/09/2017 16:04,13/09/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14575,21/09/2017 16:00,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14576,21/09/2017 15:59,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8737,21/09/2017 15:59,13/09/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8725,21/09/2017 15:58,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14574,21/09/2017 15:57,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14572,21/09/2017 15:57,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14569,21/09/2017 15:57,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14568,21/09/2017 15:57,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14566,21/09/2017 15:50,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14512,21/09/2017 15:47,17/09/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8567,21/09/2017 15:46,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8632,21/09/2017 15:45,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8677,21/09/2017 15:44,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-8678,21/09/2017 15:40,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-14538,21/09/2017 15:34,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14534,21/09/2017 15:34,18/09/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14541,21/09/2017 15:33,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14580,21/09/2017 15:32,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8687,21/09/2017 15:31,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-8681,21/09/2017 15:28,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-6007,21/09/2017 15:28,13/09/2017 8:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1527,21/09/2017 15:23,15/09/2017 20:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-4926,21/09/2017 15:20,15/09/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8708,21/09/2017 15:19,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8709,21/09/2017 15:16,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8749,21/09/2017 15:15,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8719,21/09/2017 15:15,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8679,21/09/2017 15:14,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-14515,21/09/2017 15:14,17/09/2017 22:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8688,21/09/2017 15:13,13/09/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-14514,21/09/2017 15:13,17/09/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12156,21/09/2017 15:11,18/09/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8736,21/09/2017 15:00,13/09/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-14230,21/09/2017 14:19,10/09/2017 7:29,6.4,20, Improper Input Validation,nan
CVE-2017-10859,21/09/2017 13:26,15/09/2017 17:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10858,21/09/2017 13:26,15/09/2017 17:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10855,21/09/2017 13:10,15/09/2017 17:29,9.3,426, Untrusted Search Path,nan
CVE-2017-3086,21/09/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14528,21/09/2017 1:29,18/09/2017 0:29,4.3,416, Use After Free,nan
CVE-2015-5784,21/09/2017 1:29,17/08/2015 0:01,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-5783,21/09/2017 1:29,17/08/2015 0:01,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5779,21/09/2017 1:29,17/08/2015 0:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5772,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5771,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5768,21/09/2017 1:29,17/08/2015 0:00,4.3,200, Information Exposure,nan
CVE-2015-5763,21/09/2017 1:29,17/08/2015 0:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5754,21/09/2017 1:29,17/08/2015 0:00,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-5753,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5751,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5750,21/09/2017 1:29,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5748,21/09/2017 1:29,17/08/2015 0:00,2.1,17, DEPRECATED: Code,nan
CVE-2015-5747,21/09/2017 1:29,17/08/2015 0:00,4.9,399, Resource Management Errors,nan
CVE-2015-5733,21/09/2017 1:29,9/11/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5730,21/09/2017 1:29,9/11/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-5697,21/09/2017 1:29,31/08/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-5623,21/09/2017 1:29,3/08/2015 14:59,4.0,284, Improper Access Control,nan
CVE-2015-5537,21/09/2017 1:29,3/08/2015 1:59,4.3,310, Cryptographic Issues,nan
CVE-2015-5358,21/09/2017 1:29,14/07/2015 17:59,7.1,399, Resource Management Errors,nan
CVE-2015-5125,21/09/2017 1:29,14/08/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5084,21/09/2017 1:29,3/08/2015 1:59,2.1,200, Information Exposure,nan
CVE-2015-4949,21/09/2017 1:29,23/08/2015 1:59,2.1,200, Information Exposure,nan
CVE-2015-4536,21/09/2017 1:29,20/08/2015 10:59,3.5,200, Information Exposure,nan
CVE-2015-4535,21/09/2017 1:29,20/08/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4534,21/09/2017 1:29,20/08/2015 10:59,9.0,20, Improper Input Validation,nan
CVE-2015-4533,21/09/2017 1:29,20/08/2015 10:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4321,21/09/2017 1:29,20/08/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-4320,21/09/2017 1:29,20/08/2015 0:59,4.0,200, Information Exposure,nan
CVE-2015-4318,21/09/2017 1:29,20/08/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2015-4317,21/09/2017 1:29,20/08/2015 0:59,5.0,399, Resource Management Errors,nan
CVE-2015-4316,21/09/2017 1:29,20/08/2015 10:59,5.5,20, Improper Input Validation,nan
CVE-2015-4315,21/09/2017 1:29,20/08/2015 0:59,5.5,20, Improper Input Validation,nan
CVE-2015-4314,21/09/2017 1:29,20/08/2015 0:59,4.0,200, Information Exposure,nan
CVE-2015-4303,21/09/2017 1:29,20/08/2015 10:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4296,21/09/2017 1:29,19/08/2015 23:59,5.0,399, Resource Management Errors,nan
CVE-2015-4284,21/09/2017 1:29,22/07/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-4281,21/09/2017 1:29,22/07/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4277,21/09/2017 1:29,19/08/2015 18:59,4.9,399, Resource Management Errors,nan
CVE-2015-4262,21/09/2017 1:29,24/07/2015 14:59,10.0,255, Credentials Management,nan
CVE-2015-4235,21/09/2017 1:29,24/07/2015 14:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3829,21/09/2017 1:29,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-3828,21/09/2017 1:29,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-3827,21/09/2017 1:29,1/10/2015 0:59,9.3,189, Numeric Errors,nan
CVE-2015-3826,21/09/2017 1:29,1/10/2015 0:59,5.0,189, Numeric Errors,nan
CVE-2015-3824,21/09/2017 1:29,1/10/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3799,21/09/2017 1:29,17/08/2015 0:00,9.3,255, Credentials Management,nan
CVE-2015-3794,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3792,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3791,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3790,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3789,21/09/2017 1:29,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3788,21/09/2017 1:29,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3787,21/09/2017 1:29,16/08/2015 23:59,3.3,20, Improper Input Validation,nan
CVE-2015-3786,21/09/2017 1:29,16/08/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-3783,21/09/2017 1:29,16/08/2015 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3781,21/09/2017 1:29,16/08/2015 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3780,21/09/2017 1:29,16/08/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-3779,21/09/2017 1:29,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3777,21/09/2017 1:29,16/08/2015 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3775,21/09/2017 1:29,16/08/2015 23:59,7.2,287, Improper Authentication,nan
CVE-2015-3774,21/09/2017 1:29,16/08/2015 23:59,4.8,20, Improper Input Validation,nan
CVE-2015-3773,21/09/2017 1:29,16/08/2015 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3772,21/09/2017 1:29,16/08/2015 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3771,21/09/2017 1:29,16/08/2015 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3770,21/09/2017 1:29,16/08/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3769,21/09/2017 1:29,16/08/2015 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3767,21/09/2017 1:29,16/08/2015 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3765,21/09/2017 1:29,16/08/2015 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3764,21/09/2017 1:29,16/08/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-3762,21/09/2017 1:29,16/08/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-3761,21/09/2017 1:29,16/08/2015 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3760,21/09/2017 1:29,16/08/2015 23:59,7.2,20, Improper Input Validation,nan
CVE-2015-3757,21/09/2017 1:29,16/08/2015 23:59,2.1,284, Improper Access Control,nan
CVE-2015-3286,21/09/2017 1:29,12/08/2015 14:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3285,21/09/2017 1:29,12/08/2015 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3284,21/09/2017 1:29,12/08/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-3283,21/09/2017 1:29,12/08/2015 14:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-3282,21/09/2017 1:29,12/08/2015 14:59,4.3,200, Information Exposure,nan
CVE-2015-3228,21/09/2017 1:29,11/08/2015 14:59,6.8,189, Numeric Errors,nan
CVE-2015-2869,21/09/2017 1:29,21/07/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2134,21/09/2017 1:29,21/07/2015 19:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2015,21/09/2017 1:29,23/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1906,21/09/2017 1:29,21/07/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1905,21/09/2017 1:29,21/07/2015 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1904,21/09/2017 1:29,1/08/2015 1:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1539,21/09/2017 1:29,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-1538,21/09/2017 1:29,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-1492,21/09/2017 1:29,1/08/2015 1:59,8.5,20, Improper Input Validation,nan
CVE-2015-1491,21/09/2017 1:29,1/08/2015 1:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1490,21/09/2017 1:29,1/08/2015 1:59,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1489,21/09/2017 1:29,1/08/2015 1:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1488,21/09/2017 1:29,1/08/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-1487,21/09/2017 1:29,1/08/2015 1:59,5.5,20, Improper Input Validation,nan
CVE-2015-1486,21/09/2017 1:29,1/08/2015 1:59,7.5,287, Improper Authentication,nan
CVE-2015-1328,21/09/2017 1:29,28/11/2016 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0681,21/09/2017 1:29,24/07/2015 16:59,7.1,399, Resource Management Errors,nan
CVE-2015-0542,21/09/2017 1:29,20/08/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0537,21/09/2017 1:29,20/08/2015 10:59,7.5,189, Numeric Errors,nan
CVE-2015-0534,21/09/2017 1:29,20/08/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7913,21/09/2017 1:29,30/07/2015 0:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7912,21/09/2017 1:29,30/07/2015 0:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14422,21/09/2017 0:59,13/09/2017 17:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2015-3250,21/09/2017 0:58,7/09/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-14421,21/09/2017 0:51,13/09/2017 17:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-14420,21/09/2017 0:50,13/09/2017 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-14419,21/09/2017 0:50,13/09/2017 17:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-10813,20/09/2017 19:22,15/09/2017 17:29,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-10814,20/09/2017 19:20,15/09/2017 17:29,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2750,20/09/2017 19:15,13/09/2017 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8649,20/09/2017 19:08,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8643,20/09/2017 19:08,13/09/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-14414,20/09/2017 19:07,13/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14413,20/09/2017 19:07,13/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14416,20/09/2017 19:06,13/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14415,20/09/2017 19:06,13/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1002015,20/09/2017 19:04,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11766,20/09/2017 19:03,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1002014,20/09/2017 19:03,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002013,20/09/2017 19:03,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8648,20/09/2017 18:48,13/09/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8629,20/09/2017 18:48,13/09/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8597,20/09/2017 18:48,13/09/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-1434,20/09/2017 18:47,12/09/2017 21:29,2.1,200, Information Exposure,nan
CVE-2017-14348,20/09/2017 18:44,12/09/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8739,20/09/2017 18:38,13/09/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-14573,20/09/2017 18:37,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14570,20/09/2017 18:37,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1002011,20/09/2017 18:32,14/09/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1002028,20/09/2017 18:26,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002027,20/09/2017 18:23,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9624,20/09/2017 18:11,12/09/2017 14:29,5.0,287, Improper Authentication,nan
CVE-2017-14563,20/09/2017 18:05,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14556,20/09/2017 18:03,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14554,20/09/2017 18:03,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14557,20/09/2017 18:01,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14561,20/09/2017 18:00,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14559,20/09/2017 18:00,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14558,20/09/2017 18:00,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14560,20/09/2017 17:57,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14562,20/09/2017 17:53,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14555,20/09/2017 17:53,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14564,20/09/2017 17:50,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14567,20/09/2017 17:36,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14565,20/09/2017 17:36,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14571,20/09/2017 17:35,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14430,20/09/2017 15:29,13/09/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-13693,20/09/2017 14:51,25/08/2017 8:29,4.9,200, Information Exposure,nan
CVE-2017-13694,20/09/2017 14:50,25/08/2017 8:29,2.1,200, Information Exposure,nan
CVE-2016-10229,20/09/2017 1:29,4/04/2017 5:59,10.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2015-6277,20/09/2017 1:29,2/09/2015 16:59,6.1,399, Resource Management Errors,nan
CVE-2015-6274,20/09/2017 1:29,2/09/2015 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6273,20/09/2017 1:29,29/08/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-6272,20/09/2017 1:29,31/08/2015 20:59,7.8,399, Resource Management Errors,nan
CVE-2015-6271,20/09/2017 1:29,31/08/2015 20:59,7.8,399, Resource Management Errors,nan
CVE-2015-6270,20/09/2017 1:29,31/08/2015 20:59,7.8,399, Resource Management Errors,nan
CVE-2015-6269,20/09/2017 1:29,31/08/2015 20:59,7.8,399, Resource Management Errors,nan
CVE-2015-6268,20/09/2017 1:29,29/08/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-6267,20/09/2017 1:29,29/08/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-6266,20/09/2017 1:29,28/08/2015 15:59,5.0,287, Improper Authentication,nan
CVE-2015-5368,20/09/2017 1:29,27/08/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5367,20/09/2017 1:29,27/08/2015 15:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-4323,20/09/2017 1:29,19/08/2015 23:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4322,20/09/2017 1:29,19/08/2015 15:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1932,20/09/2017 1:29,22/08/2015 23:59,5.0,200, Information Exposure,nan
CVE-2014-9468,20/09/2017 1:29,19/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8711,19/09/2017 17:47,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-14399,19/09/2017 17:47,12/09/2017 21:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1002020,19/09/2017 17:44,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14219,19/09/2017 17:38,7/09/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1502,19/09/2017 17:34,7/09/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14114,19/09/2017 17:33,2/09/2017 16:29,6.4,200, Information Exposure,nan
CVE-2017-8040,19/09/2017 17:32,9/09/2017 1:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8041,19/09/2017 17:25,9/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14239,19/09/2017 17:22,11/09/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14261,19/09/2017 17:19,11/09/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14257,19/09/2017 17:10,11/09/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14259,19/09/2017 17:09,11/09/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14258,19/09/2017 17:09,11/09/2017 9:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14231,19/09/2017 16:41,10/09/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2015-7879,19/09/2017 16:41,11/09/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8758,19/09/2017 16:38,13/09/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8756,19/09/2017 16:38,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8752,19/09/2017 16:26,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8738,19/09/2017 16:26,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8753,19/09/2017 16:23,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8748,19/09/2017 16:22,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8741,19/09/2017 16:22,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8712,19/09/2017 16:06,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8713,19/09/2017 16:02,13/09/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-8714,19/09/2017 15:59,13/09/2017 1:29,6.9,20, Improper Input Validation,nan
CVE-2017-14397,19/09/2017 15:29,12/09/2017 21:29,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-8631,19/09/2017 15:16,13/09/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8686,19/09/2017 15:00,13/09/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8015,19/09/2017 14:50,12/09/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14550,19/09/2017 14:36,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14549,19/09/2017 14:36,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14553,19/09/2017 14:34,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14552,19/09/2017 14:34,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14551,19/09/2017 14:34,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14548,19/09/2017 14:31,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14547,19/09/2017 14:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14546,19/09/2017 14:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14545,19/09/2017 14:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14544,19/09/2017 14:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14543,19/09/2017 14:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14542,19/09/2017 14:29,18/09/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9742,19/09/2017 1:36,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9042,19/09/2017 1:36,18/05/2017 1:29,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2017-9041,19/09/2017 1:36,18/05/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9040,19/09/2017 1:36,18/05/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9038,19/09/2017 1:36,18/05/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-8398,19/09/2017 1:36,1/05/2017 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8397,19/09/2017 1:36,1/05/2017 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8396,19/09/2017 1:36,1/05/2017 18:59,5.0,20, Improper Input Validation,nan
CVE-2017-8395,19/09/2017 1:36,1/05/2017 18:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-8394,19/09/2017 1:36,1/05/2017 18:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-8392,19/09/2017 1:36,1/05/2017 18:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7614,19/09/2017 1:36,9/04/2017 14:59,7.5,476, NULL Pointer Dereference,nan
CVE-2017-6966,19/09/2017 1:36,17/03/2017 9:59,4.3,416, Use After Free,nan
CVE-2017-6965,19/09/2017 1:36,17/03/2017 9:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6313,19/09/2017 1:36,10/03/2017 2:59,4.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-6312,19/09/2017 1:36,10/03/2017 2:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-6311,19/09/2017 1:36,10/03/2017 2:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-2538,19/09/2017 1:36,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2424,19/09/2017 1:36,2/04/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-12776,19/09/2017 1:36,18/08/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10243,19/09/2017 1:36,2/05/2017 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-2091,19/09/2017 1:36,13/03/2015 14:59,5.0,310, Cryptographic Issues,nan
CVE-2014-0476,19/09/2017 1:36,25/10/2014 22:55,3.7,20, Improper Input Validation,nan
CVE-2013-6627,19/09/2017 1:36,13/11/2013 15:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6625,19/09/2017 1:36,13/11/2013 15:55,6.8,399, Resource Management Errors,nan
CVE-2013-6624,19/09/2017 1:36,13/11/2013 15:55,7.5,399, Resource Management Errors,nan
CVE-2013-6623,19/09/2017 1:36,13/11/2013 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6622,19/09/2017 1:36,13/11/2013 15:55,6.8,399, Resource Management Errors,nan
CVE-2013-6340,19/09/2017 1:36,4/11/2013 16:55,4.3,20, Improper Input Validation,nan
CVE-2013-6339,19/09/2017 1:36,4/11/2013 16:55,4.3,20, Improper Input Validation,nan
CVE-2013-6338,19/09/2017 1:36,4/11/2013 16:55,4.3,20, Improper Input Validation,nan
CVE-2013-6336,19/09/2017 1:36,4/11/2013 16:55,4.3,20, Improper Input Validation,nan
CVE-2013-6283,19/09/2017 1:36,25/10/2013 23:55,7.5,20, Improper Input Validation,nan
CVE-2013-5598,19/09/2017 1:36,30/10/2013 10:55,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5595,19/09/2017 1:36,30/10/2013 10:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5419,19/09/2017 1:36,4/10/2013 10:44,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5325,19/09/2017 1:36,9/10/2013 14:54,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4935,19/09/2017 1:36,30/07/2013 0:56,4.3,189, Numeric Errors,nan
CVE-2013-4934,19/09/2017 1:36,30/07/2013 0:56,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4933,19/09/2017 1:36,30/07/2013 0:56,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4932,19/09/2017 1:36,30/07/2013 0:56,5.0,20, Improper Input Validation,nan
CVE-2013-4931,19/09/2017 1:36,30/07/2013 0:56,5.0,399, Resource Management Errors,nan
CVE-2013-4930,19/09/2017 1:36,30/07/2013 0:56,5.0,20, Improper Input Validation,nan
CVE-2013-4929,19/09/2017 1:36,30/07/2013 0:56,7.8,189, Numeric Errors,nan
CVE-2013-4928,19/09/2017 1:36,30/07/2013 0:56,7.8,189, Numeric Errors,nan
CVE-2013-4927,19/09/2017 1:36,30/07/2013 0:56,7.8,189, Numeric Errors,nan
CVE-2013-4926,19/09/2017 1:36,30/07/2013 0:56,5.0,20, Improper Input Validation,nan
CVE-2013-4925,19/09/2017 1:36,30/07/2013 0:56,5.0,189, Numeric Errors,nan
CVE-2013-4924,19/09/2017 1:36,30/07/2013 0:56,5.0,20, Improper Input Validation,nan
CVE-2013-4923,19/09/2017 1:36,30/07/2013 0:56,5.0,399, Resource Management Errors,nan
CVE-2013-4922,19/09/2017 1:36,30/07/2013 0:56,5.0,399, Resource Management Errors,nan
CVE-2013-4921,19/09/2017 1:36,30/07/2013 0:56,5.0,189, Numeric Errors,nan
CVE-2013-4920,19/09/2017 1:36,30/07/2013 0:56,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4388,19/09/2017 1:36,11/10/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4277,19/09/2017 1:36,16/09/2013 19:14,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4131,19/09/2017 1:36,31/07/2013 13:20,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4083,19/09/2017 1:36,9/06/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-4080,19/09/2017 1:36,9/06/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3358,19/09/2017 1:36,12/09/2013 13:28,10.0,189, Numeric Errors,nan
CVE-2013-3357,19/09/2017 1:36,12/09/2013 13:28,10.0,189, Numeric Errors,nan
CVE-2013-3356,19/09/2017 1:36,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3355,19/09/2017 1:36,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3354,19/09/2017 1:36,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3353,19/09/2017 1:36,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3352,19/09/2017 1:36,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3351,19/09/2017 1:36,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3346,19/09/2017 1:36,30/08/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3342,19/09/2017 1:36,16/05/2013 11:45,10.0,20, Improper Input Validation,nan
CVE-2013-3341,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3340,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3339,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3338,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3337,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3335,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3334,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3333,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3332,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3331,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3330,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3329,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3328,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3327,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3326,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3325,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3324,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3035,19/09/2017 1:36,21/06/2013 14:55,7.1,20, Improper Input Validation,nan
CVE-2013-3005,19/09/2017 1:36,6/07/2013 13:57,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2926,19/09/2017 1:36,16/10/2013 20:55,6.8,399, Resource Management Errors,nan
CVE-2013-2925,19/09/2017 1:36,16/10/2013 20:55,6.8,399, Resource Management Errors,nan
CVE-2013-2924,19/09/2017 1:36,2/10/2013 10:35,7.5,399, Resource Management Errors,nan
CVE-2013-2922,19/09/2017 1:36,2/10/2013 10:35,6.8,399, Resource Management Errors,nan
CVE-2013-2921,19/09/2017 1:36,2/10/2013 10:35,6.8,399, Resource Management Errors,nan
CVE-2013-2920,19/09/2017 1:36,2/10/2013 10:35,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2918,19/09/2017 1:36,2/10/2013 10:35,7.5,399, Resource Management Errors,nan
CVE-2013-2917,19/09/2017 1:36,2/10/2013 10:35,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2914,19/09/2017 1:36,2/10/2013 10:35,6.8,399, Resource Management Errors,nan
CVE-2013-2913,19/09/2017 1:36,2/10/2013 10:35,6.8,399, Resource Management Errors,nan
CVE-2013-2912,19/09/2017 1:36,2/10/2013 10:35,7.5,399, Resource Management Errors,nan
CVE-2013-2911,19/09/2017 1:36,2/10/2013 10:35,6.8,399, Resource Management Errors,nan
CVE-2013-2910,19/09/2017 1:36,2/10/2013 10:35,7.5,399, Resource Management Errors,nan
CVE-2013-2909,19/09/2017 1:36,2/10/2013 10:35,7.5,399, Resource Management Errors,nan
CVE-2013-2907,19/09/2017 1:36,2/10/2013 10:35,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2906,19/09/2017 1:36,2/10/2013 10:35,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-2905,19/09/2017 1:36,21/08/2013 12:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2904,19/09/2017 1:36,21/08/2013 12:17,7.5,399, Resource Management Errors,nan
CVE-2013-2903,19/09/2017 1:36,21/08/2013 12:17,7.5,399, Resource Management Errors,nan
CVE-2013-2902,19/09/2017 1:36,21/08/2013 12:17,7.5,399, Resource Management Errors,nan
CVE-2013-2901,19/09/2017 1:36,21/08/2013 12:17,7.5,189, Numeric Errors,nan
CVE-2013-2900,19/09/2017 1:36,21/08/2013 12:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2884,19/09/2017 1:36,31/07/2013 13:20,7.5,399, Resource Management Errors,nan
CVE-2013-2883,19/09/2017 1:36,31/07/2013 13:20,7.5,399, Resource Management Errors,nan
CVE-2013-2881,19/09/2017 1:36,31/07/2013 13:20,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2879,19/09/2017 1:36,10/07/2013 10:55,5.8,200, Information Exposure,nan
CVE-2013-2878,19/09/2017 1:36,10/07/2013 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2876,19/09/2017 1:36,10/07/2013 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2875,19/09/2017 1:36,10/07/2013 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2874,19/09/2017 1:36,10/07/2013 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-2873,19/09/2017 1:36,10/07/2013 10:55,7.5,416, Use After Free,nan
CVE-2013-2871,19/09/2017 1:36,10/07/2013 10:55,7.5,20, Improper Input Validation,nan
CVE-2013-2870,19/09/2017 1:36,10/07/2013 10:55,9.3,399, Resource Management Errors,nan
CVE-2013-2869,19/09/2017 1:36,10/07/2013 10:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2866,19/09/2017 1:36,19/06/2013 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-2864,19/09/2017 1:36,5/06/2013 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2863,19/09/2017 1:36,5/06/2013 0:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2862,19/09/2017 1:36,5/06/2013 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2861,19/09/2017 1:36,5/06/2013 0:55,7.5,399, Resource Management Errors,nan
CVE-2013-2860,19/09/2017 1:36,5/06/2013 0:55,7.5,416, Use After Free,nan
CVE-2013-2858,19/09/2017 1:36,5/06/2013 0:55,7.5,416, Use After Free,nan
CVE-2013-2857,19/09/2017 1:36,5/06/2013 0:55,7.5,416, Use After Free,nan
CVE-2013-2856,19/09/2017 1:36,5/06/2013 0:55,7.5,416, Use After Free,nan
CVE-2013-2855,19/09/2017 1:36,5/06/2013 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2849,19/09/2017 1:36,22/05/2013 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2848,19/09/2017 1:36,22/05/2013 13:29,5.0,200, Information Exposure,nan
CVE-2013-2847,19/09/2017 1:36,22/05/2013 13:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-2846,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2845,19/09/2017 1:36,22/05/2013 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2844,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2843,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2842,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2841,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2840,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2839,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2838,19/09/2017 1:36,22/05/2013 13:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2837,19/09/2017 1:36,22/05/2013 13:29,7.5,399, Resource Management Errors,nan
CVE-2013-2737,19/09/2017 1:36,16/05/2013 11:45,5.0,200, Information Exposure,nan
CVE-2013-2736,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2735,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2734,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2733,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2732,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2731,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2730,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2729,19/09/2017 1:36,16/05/2013 11:45,10.0,189, Numeric Errors,nan
CVE-2013-2728,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2727,19/09/2017 1:36,16/05/2013 11:45,10.0,189, Numeric Errors,nan
CVE-2013-2726,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2725,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2724,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2723,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2722,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2721,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2719,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2718,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2549,19/09/2017 1:36,11/03/2013 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2178,19/09/2017 1:36,28/08/2013 23:55,5.0,20, Improper Input Validation,nan
CVE-2013-2013,19/09/2017 1:36,1/10/2013 20:55,2.1,200, Information Exposure,nan
CVE-2013-1954,19/09/2017 1:36,10/07/2013 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1896,19/09/2017 1:36,10/07/2013 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1884,19/09/2017 1:36,2/05/2013 14:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1868,19/09/2017 1:36,10/07/2013 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1862,19/09/2017 1:36,10/06/2013 17:55,5.1,310, Cryptographic Issues,nan
CVE-2013-1738,19/09/2017 1:36,18/09/2013 10:08,9.3,399, Resource Management Errors,nan
CVE-2013-1737,19/09/2017 1:36,18/09/2013 10:08,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1736,19/09/2017 1:36,18/09/2013 10:08,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1735,19/09/2017 1:36,18/09/2013 10:08,9.3,20, Improper Input Validation,nan
CVE-2013-1732,19/09/2017 1:36,18/09/2013 10:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1730,19/09/2017 1:36,18/09/2013 10:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1728,19/09/2017 1:36,18/09/2013 10:08,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1726,19/09/2017 1:36,18/09/2013 10:08,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1725,19/09/2017 1:36,18/09/2013 10:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1724,19/09/2017 1:36,18/09/2013 10:08,9.3,399, Resource Management Errors,nan
CVE-2013-1723,19/09/2017 1:36,18/09/2013 10:08,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1722,19/09/2017 1:36,18/09/2013 10:08,9.3,399, Resource Management Errors,nan
CVE-2013-1721,19/09/2017 1:36,18/09/2013 10:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1720,19/09/2017 1:36,18/09/2013 10:08,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1719,19/09/2017 1:36,18/09/2013 10:08,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1718,19/09/2017 1:36,18/09/2013 10:08,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1717,19/09/2017 1:36,7/08/2013 1:55,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-1714,19/09/2017 1:36,7/08/2013 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1713,19/09/2017 1:36,7/08/2013 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1711,19/09/2017 1:36,7/08/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1710,19/09/2017 1:36,7/08/2013 1:55,10.0,20, Improper Input Validation,nan
CVE-2013-1709,19/09/2017 1:36,7/08/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1707,19/09/2017 1:36,7/08/2013 1:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1706,19/09/2017 1:36,7/08/2013 1:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1705,19/09/2017 1:36,7/08/2013 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1704,19/09/2017 1:36,7/08/2013 1:55,9.3,399, Resource Management Errors,nan
CVE-2013-1700,19/09/2017 1:36,26/06/2013 3:19,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1699,19/09/2017 1:36,26/06/2013 3:19,5.0,310, Cryptographic Issues,nan
CVE-2013-1698,19/09/2017 1:36,26/06/2013 3:19,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1697,19/09/2017 1:36,26/06/2013 3:19,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1696,19/09/2017 1:36,26/06/2013 3:19,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1695,19/09/2017 1:36,26/06/2013 3:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1694,19/09/2017 1:36,26/06/2013 3:19,7.5,20, Improper Input Validation,nan
CVE-2013-1693,19/09/2017 1:36,26/06/2013 3:19,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1692,19/09/2017 1:36,26/06/2013 3:19,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1690,19/09/2017 1:36,26/06/2013 3:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1688,19/09/2017 1:36,26/06/2013 3:19,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1687,19/09/2017 1:36,26/06/2013 3:19,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1686,19/09/2017 1:36,26/06/2013 3:19,10.0,399, Resource Management Errors,nan
CVE-2013-1685,19/09/2017 1:36,26/06/2013 3:19,9.3,399, Resource Management Errors,nan
CVE-2013-1684,19/09/2017 1:36,26/06/2013 3:19,9.3,399, Resource Management Errors,nan
CVE-2013-1681,19/09/2017 1:36,16/05/2013 11:45,10.0,399, Resource Management Errors,nan
CVE-2013-1680,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1679,19/09/2017 1:36,16/05/2013 11:45,10.0,399, Resource Management Errors,nan
CVE-2013-1678,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1677,19/09/2017 1:36,16/05/2013 11:45,10.0,399, Resource Management Errors,nan
CVE-2013-1676,19/09/2017 1:36,16/05/2013 11:45,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1675,19/09/2017 1:36,16/05/2013 11:45,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1674,19/09/2017 1:36,16/05/2013 11:45,9.3,399, Resource Management Errors,nan
CVE-2013-1673,19/09/2017 1:36,16/05/2013 11:45,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1672,19/09/2017 1:36,16/05/2013 11:45,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1671,19/09/2017 1:36,16/05/2013 11:45,4.3,20, Improper Input Validation,nan
CVE-2013-1670,19/09/2017 1:36,16/05/2013 11:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1667,19/09/2017 1:36,14/03/2013 3:13,7.5,399, Resource Management Errors,nan
CVE-2013-1590,19/09/2017 1:36,3/02/2013 1:55,2.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1589,19/09/2017 1:36,3/02/2013 1:55,2.9,399, Resource Management Errors,nan
CVE-2013-1588,19/09/2017 1:36,3/02/2013 1:55,2.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1585,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1584,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1583,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1582,19/09/2017 1:36,3/02/2013 1:55,2.9,189, Numeric Errors,nan
CVE-2013-1581,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1580,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1579,19/09/2017 1:36,3/02/2013 1:55,2.9,399, Resource Management Errors,nan
CVE-2013-1578,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1577,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1576,19/09/2017 1:36,3/02/2013 1:55,2.9,310, Cryptographic Issues,nan
CVE-2013-1575,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1574,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1573,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1572,19/09/2017 1:36,3/02/2013 1:55,2.9,20, Improper Input Validation,nan
CVE-2013-1493,19/09/2017 1:36,5/03/2013 22:06,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1491,19/09/2017 1:36,8/03/2013 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1488,19/09/2017 1:36,8/03/2013 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1406,19/09/2017 1:36,11/02/2013 22:55,7.2,20, Improper Input Validation,nan
CVE-2013-1035,19/09/2017 1:35,19/09/2013 10:27,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1022,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1021,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1020,19/09/2017 1:35,24/05/2013 16:43,9.3,399, Resource Management Errors,nan
CVE-2013-1019,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1018,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1017,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1016,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1015,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0989,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0988,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0987,19/09/2017 1:35,24/05/2013 16:43,9.3,399, Resource Management Errors,nan
CVE-2013-0986,19/09/2017 1:35,24/05/2013 16:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0926,19/09/2017 1:35,28/03/2013 12:18,6.8,20, Improper Input Validation,nan
CVE-2013-0925,19/09/2017 1:35,28/03/2013 12:18,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0924,19/09/2017 1:35,28/03/2013 12:18,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0923,19/09/2017 1:35,28/03/2013 12:18,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0922,19/09/2017 1:35,28/03/2013 12:18,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0921,19/09/2017 1:35,28/03/2013 12:18,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0920,19/09/2017 1:35,28/03/2013 12:18,7.5,399, Resource Management Errors,nan
CVE-2013-0918,19/09/2017 1:35,28/03/2013 12:18,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0917,19/09/2017 1:35,28/03/2013 12:18,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0916,19/09/2017 1:35,28/03/2013 12:18,7.5,399, Resource Management Errors,nan
CVE-2013-0912,19/09/2017 1:35,11/03/2013 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0911,19/09/2017 1:35,5/03/2013 21:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0910,19/09/2017 1:35,5/03/2013 21:55,7.5,287, Improper Authentication,nan
CVE-2013-0909,19/09/2017 1:35,5/03/2013 21:55,5.0,200, Information Exposure,nan
CVE-2013-0907,19/09/2017 1:35,5/03/2013 21:55,7.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0906,19/09/2017 1:35,5/03/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0905,19/09/2017 1:35,5/03/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0904,19/09/2017 1:35,5/03/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0903,19/09/2017 1:35,5/03/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0902,19/09/2017 1:35,5/03/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0900,19/09/2017 1:35,23/02/2013 21:55,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0887,19/09/2017 1:35,23/02/2013 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0879,19/09/2017 1:35,23/02/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0841,19/09/2017 1:35,24/01/2013 21:55,7.5,20, Improper Input Validation,nan
CVE-2013-0839,19/09/2017 1:35,24/01/2013 21:55,7.5,399, Resource Management Errors,nan
CVE-2013-0829,19/09/2017 1:35,15/01/2013 21:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-0828,19/09/2017 1:35,15/01/2013 21:55,6.8,399, Resource Management Errors,nan
CVE-2013-0800,19/09/2017 1:35,3/04/2013 11:56,9.3,189, Numeric Errors,nan
CVE-2013-0799,19/09/2017 1:35,3/04/2013 11:56,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0795,19/09/2017 1:35,3/04/2013 11:56,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0793,19/09/2017 1:35,3/04/2013 11:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0792,19/09/2017 1:35,3/04/2013 11:56,4.3,200, Information Exposure,nan
CVE-2013-0791,19/09/2017 1:35,3/04/2013 11:56,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0787,19/09/2017 1:35,11/03/2013 10:55,9.3,399, Resource Management Errors,nan
CVE-2013-0782,19/09/2017 1:35,19/02/2013 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0781,19/09/2017 1:35,19/02/2013 23:55,10.0,399, Resource Management Errors,nan
CVE-2013-0780,19/09/2017 1:35,19/02/2013 23:55,9.3,399, Resource Management Errors,nan
CVE-2013-0778,19/09/2017 1:35,19/02/2013 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0777,19/09/2017 1:35,19/02/2013 23:55,10.0,399, Resource Management Errors,nan
CVE-2013-0775,19/09/2017 1:35,19/02/2013 23:55,10.0,399, Resource Management Errors,nan
CVE-2013-0774,19/09/2017 1:35,19/02/2013 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0773,19/09/2017 1:35,19/02/2013 23:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0772,19/09/2017 1:35,19/02/2013 23:55,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0771,19/09/2017 1:35,13/01/2013 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0768,19/09/2017 1:35,13/01/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0767,19/09/2017 1:35,13/01/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0766,19/09/2017 1:35,13/01/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0765,19/09/2017 1:35,19/02/2013 23:55,5.0,20, Improper Input Validation,nan
CVE-2013-0764,19/09/2017 1:35,13/01/2013 20:55,9.3,310, Cryptographic Issues,nan
CVE-2013-0763,19/09/2017 1:35,13/01/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0762,19/09/2017 1:35,13/01/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0761,19/09/2017 1:35,13/01/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0760,19/09/2017 1:35,13/01/2013 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0759,19/09/2017 1:35,13/01/2013 20:55,5.0,287, Improper Authentication,nan
CVE-2013-0758,19/09/2017 1:35,13/01/2013 20:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0757,19/09/2017 1:35,13/01/2013 20:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0756,19/09/2017 1:35,13/01/2013 20:55,9.3,399, Resource Management Errors,nan
CVE-2013-0755,19/09/2017 1:35,13/01/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0754,19/09/2017 1:35,13/01/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2013-0753,19/09/2017 1:35,13/01/2013 20:55,9.3,399, Resource Management Errors,nan
CVE-2013-0752,19/09/2017 1:35,13/01/2013 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0751,19/09/2017 1:35,13/01/2013 20:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0750,19/09/2017 1:35,13/01/2013 20:55,10.0,189, Numeric Errors,nan
CVE-2013-0748,19/09/2017 1:35,13/01/2013 20:55,5.0,200, Information Exposure,nan
CVE-2013-0747,19/09/2017 1:35,13/01/2013 20:55,6.8,20, Improper Input Validation,nan
CVE-2013-0745,19/09/2017 1:35,13/01/2013 20:55,9.3,399, Resource Management Errors,nan
CVE-2013-0744,19/09/2017 1:35,13/01/2013 20:55,9.3,399, Resource Management Errors,nan
CVE-2013-0626,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0624,19/09/2017 1:35,10/01/2013 11:56,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0622,19/09/2017 1:35,10/01/2013 11:56,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0621,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0620,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0619,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0618,19/09/2017 1:35,10/01/2013 11:56,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0617,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0615,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0614,19/09/2017 1:35,10/01/2013 11:56,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0613,19/09/2017 1:35,10/01/2013 11:56,10.0,189, Numeric Errors,nan
CVE-2013-0612,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0611,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0610,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0609,19/09/2017 1:35,10/01/2013 11:56,10.0,189, Numeric Errors,nan
CVE-2013-0608,19/09/2017 1:35,10/01/2013 11:56,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0607,19/09/2017 1:35,10/01/2013 11:56,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0606,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0605,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0604,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0603,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0602,19/09/2017 1:35,10/01/2013 11:56,10.0,399, Resource Management Errors,nan
CVE-2013-0601,19/09/2017 1:35,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0402,19/09/2017 1:35,8/03/2013 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0401,19/09/2017 1:35,8/03/2013 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0272,19/09/2017 1:35,16/02/2013 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6062,19/09/2017 1:35,5/12/2012 11:57,5.0,20, Improper Input Validation,nan
CVE-2012-6061,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6060,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6059,19/09/2017 1:35,5/12/2012 11:57,5.0,20, Improper Input Validation,nan
CVE-2012-6058,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6057,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6056,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6055,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6054,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6053,19/09/2017 1:35,5/12/2012 11:57,5.0,189, Numeric Errors,nan
CVE-2012-6052,19/09/2017 1:35,5/12/2012 11:57,5.0,200, Information Exposure,nan
CVE-2012-5978,19/09/2017 1:35,19/12/2012 11:56,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5885,19/09/2017 1:35,17/11/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5855,19/09/2017 1:35,10/07/2013 19:55,4.3,189, Numeric Errors,nan
CVE-2012-5841,19/09/2017 1:35,21/11/2012 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5840,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-5839,19/09/2017 1:35,21/11/2012 12:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5838,19/09/2017 1:35,21/11/2012 12:55,10.0,189, Numeric Errors,nan
CVE-2012-5837,19/09/2017 1:35,21/11/2012 12:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5836,19/09/2017 1:35,21/11/2012 12:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5835,19/09/2017 1:35,21/11/2012 12:55,10.0,189, Numeric Errors,nan
CVE-2012-5833,19/09/2017 1:35,21/11/2012 12:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5829,19/09/2017 1:35,21/11/2012 12:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5612,19/09/2017 1:35,3/12/2012 12:49,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5611,19/09/2017 1:35,3/12/2012 12:49,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5470,19/09/2017 1:35,26/10/2012 10:39,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5240,19/09/2017 1:35,4/10/2012 19:55,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5237,19/09/2017 1:35,4/10/2012 19:55,3.3,399, Resource Management Errors,nan
CVE-2012-5166,19/09/2017 1:35,10/10/2012 21:55,7.8,189, Numeric Errors,nan
CVE-2012-5157,19/09/2017 1:35,15/01/2013 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5156,19/09/2017 1:35,15/01/2013 21:55,6.8,399, Resource Management Errors,nan
CVE-2012-5151,19/09/2017 1:35,15/01/2013 21:55,6.8,189, Numeric Errors,nan
CVE-2012-5128,19/09/2017 1:35,7/11/2012 11:43,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5127,19/09/2017 1:35,7/11/2012 11:43,7.5,189, Numeric Errors,nan
CVE-2012-5126,19/09/2017 1:35,7/11/2012 11:43,7.5,416, Use After Free,nan
CVE-2012-5125,19/09/2017 1:35,7/11/2012 11:43,7.5,416, Use After Free,nan
CVE-2012-5124,19/09/2017 1:35,7/11/2012 11:43,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5123,19/09/2017 1:35,7/11/2012 11:43,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5122,19/09/2017 1:35,7/11/2012 11:43,7.5,399, Resource Management Errors,nan
CVE-2012-5121,19/09/2017 1:35,7/11/2012 11:43,7.5,416, Use After Free,nan
CVE-2012-5119,19/09/2017 1:35,7/11/2012 11:43,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-5117,19/09/2017 1:35,7/11/2012 11:43,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5116,19/09/2017 1:35,7/11/2012 11:43,7.5,416, Use After Free,nan
CVE-2012-5112,19/09/2017 1:35,11/10/2012 10:51,10.0,399, Resource Management Errors,nan
CVE-2012-5110,19/09/2017 1:35,9/10/2012 11:13,5.0,125, Out-of-bounds Read,nan
CVE-2012-5109,19/09/2017 1:35,9/10/2012 11:13,5.0,125, Out-of-bounds Read,nan
CVE-2012-5108,19/09/2017 1:35,9/10/2012 11:13,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-4845,19/09/2017 1:35,20/10/2012 10:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4558,19/09/2017 1:35,26/02/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4557,19/09/2017 1:35,30/11/2012 19:55,5.0,399, Resource Management Errors,nan
CVE-2012-4534,19/09/2017 1:35,19/12/2012 11:55,2.6,399, Resource Management Errors,nan
CVE-2012-4431,19/09/2017 1:35,19/12/2012 11:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4298,19/09/2017 1:35,16/08/2012 10:38,5.4,189, Numeric Errors,nan
CVE-2012-4297,19/09/2017 1:35,16/08/2012 10:38,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4295,19/09/2017 1:35,16/08/2012 10:38,3.3,20, Improper Input Validation,nan
CVE-2012-4294,19/09/2017 1:35,16/08/2012 10:38,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4287,19/09/2017 1:35,16/08/2012 10:38,5.0,399, Resource Management Errors,nan
CVE-2012-4286,19/09/2017 1:35,16/08/2012 10:38,4.3,189, Numeric Errors,nan
CVE-2012-4218,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4217,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4216,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4215,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4214,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4213,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4212,19/09/2017 1:35,21/11/2012 12:55,10.0,399, Resource Management Errors,nan
CVE-2012-4210,19/09/2017 1:35,21/11/2012 12:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4209,19/09/2017 1:35,21/11/2012 12:55,4.3,16, Configuration,nan
CVE-2012-4208,19/09/2017 1:35,21/11/2012 12:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4207,19/09/2017 1:35,21/11/2012 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4204,19/09/2017 1:35,21/11/2012 12:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4203,19/09/2017 1:35,21/11/2012 12:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4202,19/09/2017 1:35,21/11/2012 12:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4201,19/09/2017 1:35,21/11/2012 12:55,6.4,16, Configuration,nan
CVE-2012-4196,19/09/2017 1:35,29/10/2012 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4195,19/09/2017 1:35,29/10/2012 18:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-4194,19/09/2017 1:35,29/10/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4192,19/09/2017 1:35,12/10/2012 10:44,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4191,19/09/2017 1:35,12/10/2012 10:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4188,19/09/2017 1:35,10/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4187,19/09/2017 1:35,10/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4186,19/09/2017 1:35,10/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4185,19/09/2017 1:35,10/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4184,19/09/2017 1:35,10/10/2012 17:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4183,19/09/2017 1:35,10/10/2012 17:55,10.0,399, Resource Management Errors,nan
CVE-2012-4182,19/09/2017 1:35,10/10/2012 17:55,10.0,399, Resource Management Errors,nan
CVE-2012-4181,19/09/2017 1:35,10/10/2012 17:55,10.0,399, Resource Management Errors,nan
CVE-2012-4180,19/09/2017 1:35,10/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4179,19/09/2017 1:35,10/10/2012 17:55,10.0,399, Resource Management Errors,nan
CVE-2012-4160,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4159,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4158,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4157,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4156,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4155,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4154,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4153,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4152,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4151,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4150,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4149,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4148,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4147,19/09/2017 1:35,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4048,19/09/2017 1:35,24/07/2012 19:55,3.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4045,19/09/2017 1:35,22/07/2012 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3995,19/09/2017 1:35,10/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3994,19/09/2017 1:35,10/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3992,19/09/2017 1:35,10/10/2012 17:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3991,19/09/2017 1:35,10/10/2012 17:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3990,19/09/2017 1:35,10/10/2012 17:55,10.0,399, Resource Management Errors,nan
CVE-2012-3989,19/09/2017 1:35,10/10/2012 17:55,9.3,399, Resource Management Errors,nan
CVE-2012-3988,19/09/2017 1:35,10/10/2012 17:55,9.3,399, Resource Management Errors,nan
CVE-2012-3986,19/09/2017 1:35,10/10/2012 17:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-3980,19/09/2017 1:35,29/08/2012 10:56,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-3978,19/09/2017 1:35,29/08/2012 10:56,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3975,19/09/2017 1:35,29/08/2012 10:56,4.3,200, Information Exposure,nan
CVE-2012-3974,19/09/2017 1:35,29/08/2012 10:56,6.9,399, Resource Management Errors,nan
CVE-2012-3973,19/09/2017 1:35,29/08/2012 10:56,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3972,19/09/2017 1:35,29/08/2012 10:56,5.0,200, Information Exposure,nan
CVE-2012-3971,19/09/2017 1:35,29/08/2012 10:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3970,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3969,19/09/2017 1:35,29/08/2012 10:56,9.3,189, Numeric Errors,nan
CVE-2012-3968,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3966,19/09/2017 1:35,29/08/2012 10:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3965,19/09/2017 1:35,29/08/2012 10:56,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3964,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3963,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3961,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3960,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3959,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3958,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3957,19/09/2017 1:35,29/08/2012 10:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3956,19/09/2017 1:35,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-3890,19/09/2017 1:35,11/07/2012 10:26,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3889,19/09/2017 1:35,11/07/2012 10:26,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3826,19/09/2017 1:35,30/06/2012 10:15,3.3,189, Numeric Errors,nan
CVE-2012-3825,19/09/2017 1:35,30/06/2012 10:15,3.3,189, Numeric Errors,nan
CVE-2012-3758,19/09/2017 1:35,9/11/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3756,19/09/2017 1:35,9/11/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3755,19/09/2017 1:35,9/11/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3754,19/09/2017 1:35,9/11/2012 19:55,9.3,399, Resource Management Errors,nan
CVE-2012-3753,19/09/2017 1:35,9/11/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3752,19/09/2017 1:35,9/11/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3751,19/09/2017 1:35,9/11/2012 19:55,9.3,399, Resource Management Errors,nan
CVE-2012-3701,19/09/2017 1:35,13/09/2012 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3687,19/09/2017 1:35,13/09/2012 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3632,19/09/2017 1:35,13/09/2012 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3621,19/09/2017 1:35,13/09/2012 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3607,19/09/2017 1:35,13/09/2012 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3606,19/09/2017 1:35,13/09/2012 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3548,19/09/2017 1:35,30/08/2012 22:55,4.3,399, Resource Management Errors,nan
CVE-2012-3546,19/09/2017 1:35,19/12/2012 11:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3499,19/09/2017 1:35,26/02/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3377,19/09/2017 1:35,12/07/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3288,19/09/2017 1:35,14/06/2012 20:55,9.3,20, Improper Input Validation,nan
CVE-2012-3105,19/09/2017 1:35,5/06/2012 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2895,19/09/2017 1:35,26/09/2012 10:56,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2894,19/09/2017 1:35,26/09/2012 10:56,6.8,399, Resource Management Errors,nan
CVE-2012-2893,19/09/2017 1:35,26/09/2012 10:56,6.8,399, Resource Management Errors,nan
CVE-2012-2891,19/09/2017 1:35,26/09/2012 10:56,5.0,200, Information Exposure,nan
CVE-2012-2890,19/09/2017 1:35,26/09/2012 10:56,6.8,399, Resource Management Errors,nan
CVE-2012-2889,19/09/2017 1:35,26/09/2012 10:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2863,19/09/2017 1:35,9/08/2012 10:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2862,19/09/2017 1:35,9/08/2012 10:29,6.8,399, Resource Management Errors,nan
CVE-2012-2858,19/09/2017 1:35,6/08/2012 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2857,19/09/2017 1:35,6/08/2012 15:55,6.8,399, Resource Management Errors,nan
CVE-2012-2856,19/09/2017 1:35,6/08/2012 15:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2855,19/09/2017 1:35,6/08/2012 15:55,6.8,399, Resource Management Errors,nan
CVE-2012-2854,19/09/2017 1:35,6/08/2012 15:55,5.0,200, Information Exposure,nan
CVE-2012-2852,19/09/2017 1:35,6/08/2012 15:55,6.8,399, Resource Management Errors,nan
CVE-2012-2851,19/09/2017 1:35,6/08/2012 15:55,6.8,189, Numeric Errors,nan
CVE-2012-2849,19/09/2017 1:35,6/08/2012 15:55,4.3,189, Numeric Errors,nan
CVE-2012-2848,19/09/2017 1:35,6/08/2012 15:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2847,19/09/2017 1:35,6/08/2012 15:55,4.3,399, Resource Management Errors,nan
CVE-2012-2843,19/09/2017 1:35,12/07/2012 21:55,7.5,399, Resource Management Errors,nan
CVE-2012-2842,19/09/2017 1:35,12/07/2012 21:55,7.5,399, Resource Management Errors,nan
CVE-2012-2834,19/09/2017 1:35,27/06/2012 10:18,9.3,189, Numeric Errors,nan
CVE-2012-2833,19/09/2017 1:34,27/06/2012 10:18,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2831,19/09/2017 1:34,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2012-2829,19/09/2017 1:34,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2012-2828,19/09/2017 1:34,27/06/2012 10:18,6.8,189, Numeric Errors,nan
CVE-2012-2824,19/09/2017 1:34,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2012-2823,19/09/2017 1:34,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2012-2820,19/09/2017 1:34,27/06/2012 10:18,5.0,20, Improper Input Validation,nan
CVE-2012-2819,19/09/2017 1:34,27/06/2012 10:18,6.8,20, Improper Input Validation,nan
CVE-2012-2818,19/09/2017 1:34,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2012-2817,19/09/2017 1:34,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2012-2815,19/09/2017 1:34,27/06/2012 10:18,5.0,200, Information Exposure,nan
CVE-2012-2746,19/09/2017 1:34,3/07/2012 16:40,2.1,310, Cryptographic Issues,nan
CVE-2012-2733,19/09/2017 1:34,16/11/2012 21:55,5.0,20, Improper Input Validation,nan
CVE-2012-2687,19/09/2017 1:34,22/08/2012 19:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2678,19/09/2017 1:34,3/07/2012 16:40,1.2,310, Cryptographic Issues,nan
CVE-2012-2393,19/09/2017 1:34,30/06/2012 10:15,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2392,19/09/2017 1:34,30/06/2012 10:15,3.3,399, Resource Management Errors,nan
CVE-2012-2051,19/09/2017 1:34,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2050,19/09/2017 1:34,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2049,19/09/2017 1:34,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1976,19/09/2017 1:34,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-1975,19/09/2017 1:34,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-1974,19/09/2017 1:34,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-1973,19/09/2017 1:34,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-1972,19/09/2017 1:34,29/08/2012 10:56,10.0,399, Resource Management Errors,nan
CVE-2012-1956,19/09/2017 1:34,29/08/2012 10:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1699,19/09/2017 1:34,21/12/2012 5:46,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1530,19/09/2017 1:34,10/01/2013 11:56,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1525,19/09/2017 1:34,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1509,19/09/2017 1:34,16/03/2012 20:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0904,19/09/2017 1:34,20/01/2012 17:55,4.3,399, Resource Management Errors,nan
CVE-2012-0776,19/09/2017 1:34,10/04/2012 23:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0725,19/09/2017 1:34,6/04/2012 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0724,19/09/2017 1:34,6/04/2012 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0712,19/09/2017 1:34,20/03/2012 20:55,4.0,399, Resource Management Errors,nan
CVE-2012-0709,19/09/2017 1:34,20/03/2012 20:55,4.0,20, Improper Input Validation,nan
CVE-2012-0677,19/09/2017 1:34,12/06/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0671,19/09/2017 1:34,16/05/2012 10:12,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0670,19/09/2017 1:34,16/05/2012 10:12,9.3,189, Numeric Errors,nan
CVE-2012-0669,19/09/2017 1:34,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0668,19/09/2017 1:34,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0667,19/09/2017 1:34,16/05/2012 10:12,9.3,189, Numeric Errors,nan
CVE-2012-0666,19/09/2017 1:34,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0664,19/09/2017 1:34,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0663,19/09/2017 1:34,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0450,19/09/2017 1:34,1/02/2012 16:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-0447,19/09/2017 1:34,1/02/2012 16:55,5.0,200, Information Exposure,nan
CVE-2012-0446,19/09/2017 1:34,1/02/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0445,19/09/2017 1:34,1/02/2012 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0265,19/09/2017 1:34,16/05/2012 10:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0067,19/09/2017 1:34,11/04/2012 10:39,4.3,20, Improper Input Validation,nan
CVE-2012-0066,19/09/2017 1:34,11/04/2012 10:39,4.3,20, Improper Input Validation,nan
CVE-2012-0043,19/09/2017 1:34,11/04/2012 10:39,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0041,19/09/2017 1:34,11/04/2012 10:39,4.3,20, Improper Input Validation,nan
CVE-2011-4922,19/09/2017 1:34,8/08/2012 10:26,2.1,200, Information Exposure,nan
CVE-2011-4857,19/09/2017 1:34,16/12/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4692,19/09/2017 1:34,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4691,19/09/2017 1:34,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4688,19/09/2017 1:34,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4603,19/09/2017 1:34,17/12/2011 3:54,5.0,20, Improper Input Validation,nan
CVE-2011-4602,19/09/2017 1:34,17/12/2011 3:54,5.0,20, Improper Input Validation,nan
CVE-2011-4601,19/09/2017 1:34,25/12/2011 1:55,5.0,20, Improper Input Validation,nan
CVE-2011-4374,19/09/2017 1:34,19/01/2012 19:55,7.5,189, Numeric Errors,nan
CVE-2011-4102,19/09/2017 1:34,3/11/2011 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4100,19/09/2017 1:34,3/11/2011 15:55,4.3,399, Resource Management Errors,nan
CVE-2011-3972,19/09/2017 1:34,9/02/2012 4:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3971,19/09/2017 1:34,9/02/2012 4:10,6.8,399, Resource Management Errors,nan
CVE-2011-3970,19/09/2017 1:34,9/02/2012 4:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3969,19/09/2017 1:34,9/02/2012 4:10,7.5,399, Resource Management Errors,nan
CVE-2011-3968,19/09/2017 1:34,9/02/2012 4:10,7.5,399, Resource Management Errors,nan
CVE-2011-3966,19/09/2017 1:34,9/02/2012 4:10,7.5,399, Resource Management Errors,nan
CVE-2011-3965,19/09/2017 1:34,9/02/2012 4:10,5.0,20, Improper Input Validation,nan
CVE-2011-3963,19/09/2017 1:34,9/02/2012 4:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3962,19/09/2017 1:34,9/02/2012 4:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3961,19/09/2017 1:34,9/02/2012 4:10,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-3960,19/09/2017 1:34,9/02/2012 4:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3959,19/09/2017 1:34,9/02/2012 4:10,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3957,19/09/2017 1:34,9/02/2012 4:10,7.5,399, Resource Management Errors,nan
CVE-2011-3956,19/09/2017 1:34,9/02/2012 4:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3927,19/09/2017 1:34,24/01/2012 4:03,7.5,19, Data Processing Errors,nan
CVE-2011-3926,19/09/2017 1:34,24/01/2012 4:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3925,19/09/2017 1:34,24/01/2012 4:03,7.5,399, Resource Management Errors,nan
CVE-2011-3924,19/09/2017 1:34,24/01/2012 4:03,7.5,399, Resource Management Errors,nan
CVE-2011-3922,19/09/2017 1:34,7/01/2012 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3921,19/09/2017 1:34,7/01/2012 11:55,7.5,399, Resource Management Errors,nan
CVE-2011-3919,19/09/2017 1:34,7/01/2012 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3917,19/09/2017 1:34,13/12/2011 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3916,19/09/2017 1:34,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3915,19/09/2017 1:34,13/12/2011 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3914,19/09/2017 1:34,13/12/2011 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3913,19/09/2017 1:34,13/12/2011 21:55,7.5,399, Resource Management Errors,nan
CVE-2011-3912,19/09/2017 1:34,13/12/2011 21:55,7.5,399, Resource Management Errors,nan
CVE-2011-3911,19/09/2017 1:34,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3910,19/09/2017 1:34,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3907,19/09/2017 1:34,13/12/2011 21:55,4.3,20, Improper Input Validation,nan
CVE-2011-3906,19/09/2017 1:34,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3905,19/09/2017 1:34,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3904,19/09/2017 1:34,13/12/2011 21:55,7.5,399, Resource Management Errors,nan
CVE-2011-3903,19/09/2017 1:34,13/12/2011 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3900,19/09/2017 1:34,17/11/2011 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3898,19/09/2017 1:34,11/11/2011 11:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3896,19/09/2017 1:34,11/11/2011 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3895,19/09/2017 1:34,11/11/2011 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3894,19/09/2017 1:34,11/11/2011 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3893,19/09/2017 1:34,11/11/2011 11:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3892,19/09/2017 1:34,11/11/2011 11:55,7.5,399, Resource Management Errors,nan
CVE-2011-3891,19/09/2017 1:34,25/10/2011 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3890,19/09/2017 1:34,25/10/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3889,19/09/2017 1:34,25/10/2011 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3886,19/09/2017 1:34,25/10/2011 19:55,6.8,20, Improper Input Validation,nan
CVE-2011-3884,19/09/2017 1:34,25/10/2011 19:55,6.8,20, Improper Input Validation,nan
CVE-2011-3883,19/09/2017 1:34,25/10/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3882,19/09/2017 1:34,25/10/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-3880,19/09/2017 1:34,25/10/2011 19:55,7.5,20, Improper Input Validation,nan
CVE-2011-3878,19/09/2017 1:34,25/10/2011 19:55,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-3877,19/09/2017 1:34,25/10/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3875,19/09/2017 1:34,25/10/2011 19:55,4.3,20, Improper Input Validation,nan
CVE-2011-3873,19/09/2017 1:34,4/10/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3834,19/09/2017 1:34,16/12/2011 19:55,9.3,189, Numeric Errors,nan
CVE-2011-3666,19/09/2017 1:34,21/12/2011 4:02,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3665,19/09/2017 1:34,21/12/2011 4:02,7.5,399, Resource Management Errors,nan
CVE-2011-3663,19/09/2017 1:34,21/12/2011 4:02,4.3,200, Information Exposure,nan
CVE-2011-3661,19/09/2017 1:34,21/12/2011 4:02,7.5,399, Resource Management Errors,nan
CVE-2011-3659,19/09/2017 1:34,1/02/2012 16:55,10.0,399, Resource Management Errors,nan
CVE-2011-3655,19/09/2017 1:34,9/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3654,19/09/2017 1:34,9/11/2011 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3653,19/09/2017 1:34,9/11/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-3652,19/09/2017 1:34,9/11/2011 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3650,19/09/2017 1:34,9/11/2011 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3649,19/09/2017 1:34,9/11/2011 11:55,2.6,200, Information Exposure,nan
CVE-2011-3648,19/09/2017 1:34,9/11/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3647,19/09/2017 1:34,9/11/2011 11:55,9.3,20, Improper Input Validation,nan
CVE-2011-3597,19/09/2017 1:34,13/01/2012 18:55,7.5,20, Improper Input Validation,nan
CVE-2011-3594,19/09/2017 1:34,4/11/2011 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3484,19/09/2017 1:33,20/09/2011 10:55,4.3,20, Improper Input Validation,nan
CVE-2011-3483,19/09/2017 1:33,20/09/2011 10:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3482,19/09/2017 1:33,20/09/2011 10:55,4.3,399, Resource Management Errors,nan
CVE-2011-3279,19/09/2017 1:33,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-3252,19/09/2017 1:33,12/10/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3251,19/09/2017 1:33,28/10/2011 2:49,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3250,19/09/2017 1:33,28/10/2011 2:49,9.3,189, Numeric Errors,nan
CVE-2011-3249,19/09/2017 1:33,28/10/2011 2:49,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3248,19/09/2017 1:33,28/10/2011 2:49,9.3,189, Numeric Errors,nan
CVE-2011-3247,19/09/2017 1:33,28/10/2011 2:49,9.3,189, Numeric Errors,nan
CVE-2011-3244,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3241,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3239,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3238,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3237,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3236,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3235,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3234,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3233,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3232,19/09/2017 1:33,29/09/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3219,19/09/2017 1:33,12/10/2011 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3184,19/09/2017 1:33,29/08/2011 17:55,4.3,399, Resource Management Errors,nan
CVE-2011-3115,19/09/2017 1:33,24/05/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3114,19/09/2017 1:33,24/05/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3112,19/09/2017 1:33,24/05/2012 18:55,5.0,399, Resource Management Errors,nan
CVE-2011-3111,19/09/2017 1:33,24/05/2012 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3110,19/09/2017 1:33,24/05/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3108,19/09/2017 1:33,24/05/2012 18:55,10.0,399, Resource Management Errors,nan
CVE-2011-3106,19/09/2017 1:33,24/05/2012 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3105,19/09/2017 1:33,24/05/2012 18:55,7.5,399, Resource Management Errors,nan
CVE-2011-3104,19/09/2017 1:33,24/05/2012 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3103,19/09/2017 1:33,24/05/2012 18:55,7.5,399, Resource Management Errors,nan
CVE-2011-3065,19/09/2017 1:33,30/03/2012 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3064,19/09/2017 1:33,30/03/2012 22:55,7.5,399, Resource Management Errors,nan
CVE-2011-3061,19/09/2017 1:33,30/03/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2011-3060,19/09/2017 1:33,30/03/2012 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3059,19/09/2017 1:33,30/03/2012 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3058,19/09/2017 1:33,30/03/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3057,19/09/2017 1:33,22/03/2012 16:55,5.0,20, Improper Input Validation,nan
CVE-2011-3005,19/09/2017 1:33,29/09/2011 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3004,19/09/2017 1:33,29/09/2011 0:55,4.3,20, Improper Input Validation,nan
CVE-2011-3001,19/09/2017 1:33,29/09/2011 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3000,19/09/2017 1:33,29/09/2011 0:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2999,19/09/2017 1:33,29/09/2011 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2998,19/09/2017 1:33,30/09/2011 10:55,10.0,189, Numeric Errors,nan
CVE-2011-2993,19/09/2017 1:33,18/08/2011 18:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2992,19/09/2017 1:33,18/08/2011 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2991,19/09/2017 1:33,18/08/2011 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2990,19/09/2017 1:33,18/08/2011 18:55,5.0,255, Credentials Management,nan
CVE-2011-2989,19/09/2017 1:33,18/08/2011 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2988,19/09/2017 1:33,18/08/2011 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2987,19/09/2017 1:33,18/08/2011 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2986,19/09/2017 1:33,18/08/2011 18:55,5.0,200, Information Exposure,nan
CVE-2011-2984,19/09/2017 1:33,18/08/2011 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2983,19/09/2017 1:33,18/08/2011 18:55,4.3,200, Information Exposure,nan
CVE-2011-2981,19/09/2017 1:33,18/08/2011 18:55,9.3,16, Configuration,nan
CVE-2011-2881,19/09/2017 1:33,4/10/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2880,19/09/2017 1:33,4/10/2011 20:55,6.8,399, Resource Management Errors,nan
CVE-2011-2879,19/09/2017 1:33,4/10/2011 20:55,6.8,20, Improper Input Validation,nan
CVE-2011-2878,19/09/2017 1:33,4/10/2011 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2876,19/09/2017 1:33,4/10/2011 20:55,6.8,399, Resource Management Errors,nan
CVE-2011-2875,19/09/2017 1:33,19/09/2011 12:02,7.5,20, Improper Input Validation,nan
CVE-2011-2874,19/09/2017 1:33,19/09/2011 12:02,6.8,310, Cryptographic Issues,nan
CVE-2011-2864,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2862,19/09/2017 1:33,19/09/2011 12:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2861,19/09/2017 1:33,19/09/2011 12:02,6.8,20, Improper Input Validation,nan
CVE-2011-2859,19/09/2017 1:33,19/09/2011 12:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2858,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2856,19/09/2017 1:33,19/09/2011 12:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2853,19/09/2017 1:33,19/09/2011 12:02,7.5,399, Resource Management Errors,nan
CVE-2011-2852,19/09/2017 1:33,19/09/2011 12:02,7.5,189, Numeric Errors,nan
CVE-2011-2851,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2850,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2848,19/09/2017 1:33,19/09/2011 12:02,5.8,20, Improper Input Validation,nan
CVE-2011-2845,19/09/2017 1:33,25/10/2011 19:55,6.8,20, Improper Input Validation,nan
CVE-2011-2844,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2843,19/09/2017 1:33,19/09/2011 12:02,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2842,19/09/2017 1:33,19/09/2011 12:02,7.5,20, Improper Input Validation,nan
CVE-2011-2840,19/09/2017 1:33,19/09/2011 12:02,5.8,20, Improper Input Validation,nan
CVE-2011-2839,19/09/2017 1:33,29/08/2011 15:55,7.5,20, Improper Input Validation,nan
CVE-2011-2838,19/09/2017 1:33,19/09/2011 12:02,7.5,20, Improper Input Validation,nan
CVE-2011-2837,19/09/2017 1:33,19/09/2011 12:02,7.5,20, Improper Input Validation,nan
CVE-2011-2836,19/09/2017 1:33,19/09/2011 12:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2835,19/09/2017 1:33,19/09/2011 12:02,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-2834,19/09/2017 1:33,19/09/2011 12:02,6.8,399, Resource Management Errors,nan
CVE-2011-2831,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2830,19/09/2017 1:33,28/10/2011 2:49,7.5,399, Resource Management Errors,nan
CVE-2011-2829,19/09/2017 1:33,29/08/2011 15:55,7.5,189, Numeric Errors,nan
CVE-2011-2828,19/09/2017 1:33,29/08/2011 15:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2827,19/09/2017 1:33,29/08/2011 15:55,7.5,399, Resource Management Errors,nan
CVE-2011-2826,19/09/2017 1:33,29/08/2011 15:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2824,19/09/2017 1:33,29/08/2011 15:55,7.5,399, Resource Management Errors,nan
CVE-2011-2823,19/09/2017 1:33,29/08/2011 15:55,7.5,399, Resource Management Errors,nan
CVE-2011-2821,19/09/2017 1:33,29/08/2011 15:55,7.5,399, Resource Management Errors,nan
CVE-2011-2820,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2819,19/09/2017 1:33,3/08/2011 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2818,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2817,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2816,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2815,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2814,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2813,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2811,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2809,19/09/2017 1:33,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2806,19/09/2017 1:33,29/08/2011 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2805,19/09/2017 1:33,3/08/2011 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2804,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2803,19/09/2017 1:33,3/08/2011 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2802,19/09/2017 1:33,3/08/2011 0:55,6.8,399, Resource Management Errors,nan
CVE-2011-2801,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2800,19/09/2017 1:33,3/08/2011 0:55,4.3,200, Information Exposure,nan
CVE-2011-2799,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2798,19/09/2017 1:33,3/08/2011 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2797,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2796,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2795,19/09/2017 1:33,3/08/2011 0:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2794,19/09/2017 1:33,3/08/2011 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2793,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2792,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2791,19/09/2017 1:33,3/08/2011 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2790,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2789,19/09/2017 1:33,3/08/2011 0:55,7.5,399, Resource Management Errors,nan
CVE-2011-2788,19/09/2017 1:33,3/08/2011 0:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2787,19/09/2017 1:33,3/08/2011 0:55,5.0,399, Resource Management Errors,nan
CVE-2011-2786,19/09/2017 1:33,3/08/2011 0:55,4.3,20, Improper Input Validation,nan
CVE-2011-2785,19/09/2017 1:33,3/08/2011 0:55,4.3,20, Improper Input Validation,nan
CVE-2011-2784,19/09/2017 1:33,3/08/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-2783,19/09/2017 1:33,3/08/2011 0:55,6.4,20, Improper Input Validation,nan
CVE-2011-2782,19/09/2017 1:33,3/08/2011 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2761,19/09/2017 1:33,18/07/2011 22:55,4.3,399, Resource Management Errors,nan
CVE-2011-2698,19/09/2017 1:33,23/08/2011 21:55,4.3,189, Numeric Errors,nan
CVE-2011-2605,19/09/2017 1:33,30/06/2011 16:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2599,19/09/2017 1:33,30/06/2011 15:55,4.3,200, Information Exposure,nan
CVE-2011-2598,19/09/2017 1:33,30/06/2011 15:55,4.3,200, Information Exposure,nan
CVE-2011-2597,19/09/2017 1:33,7/07/2011 19:55,4.3,399, Resource Management Errors,nan
CVE-2011-2588,19/09/2017 1:33,27/07/2011 2:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2587,19/09/2017 1:33,27/07/2011 2:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2442,19/09/2017 1:33,15/09/2011 12:26,9.3,20, Improper Input Validation,nan
CVE-2011-2441,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2440,19/09/2017 1:33,15/09/2011 12:26,9.3,399, Resource Management Errors,nan
CVE-2011-2439,19/09/2017 1:33,15/09/2011 12:26,9.3,399, Resource Management Errors,nan
CVE-2011-2438,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2437,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2436,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2435,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2434,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2433,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2432,19/09/2017 1:33,15/09/2011 12:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2431,19/09/2017 1:33,15/09/2011 12:26,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2378,19/09/2017 1:33,18/08/2011 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2377,19/09/2017 1:33,30/06/2011 16:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2373,19/09/2017 1:33,30/06/2011 16:55,7.6,399, Resource Management Errors,nan
CVE-2011-2372,19/09/2017 1:33,29/09/2011 0:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2371,19/09/2017 1:33,30/06/2011 16:55,10.0,189, Numeric Errors,nan
CVE-2011-2370,19/09/2017 1:33,30/06/2011 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2369,19/09/2017 1:33,30/06/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2368,19/09/2017 1:33,30/06/2011 16:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2367,19/09/2017 1:33,30/06/2011 16:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-2366,19/09/2017 1:33,30/06/2011 15:55,4.3,20, Improper Input Validation,nan
CVE-2011-2363,19/09/2017 1:32,30/06/2011 16:55,10.0,399, Resource Management Errors,nan
CVE-2011-2362,19/09/2017 1:32,30/06/2011 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2361,19/09/2017 1:32,3/08/2011 0:55,4.3,287, Improper Authentication,nan
CVE-2011-2360,19/09/2017 1:32,3/08/2011 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2359,19/09/2017 1:32,3/08/2011 0:55,7.5,20, Improper Input Validation,nan
CVE-2011-2358,19/09/2017 1:32,3/08/2011 0:55,6.4,20, Improper Input Validation,nan
CVE-2011-2356,19/09/2017 1:32,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2354,19/09/2017 1:32,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2352,19/09/2017 1:32,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2351,19/09/2017 1:32,29/06/2011 17:55,7.5,399, Resource Management Errors,nan
CVE-2011-2350,19/09/2017 1:32,29/06/2011 17:55,7.5,20, Improper Input Validation,nan
CVE-2011-2349,19/09/2017 1:32,29/06/2011 17:55,7.5,399, Resource Management Errors,nan
CVE-2011-2348,19/09/2017 1:32,29/06/2011 17:55,7.5,20, Improper Input Validation,nan
CVE-2011-2347,19/09/2017 1:32,29/06/2011 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2346,19/09/2017 1:32,29/06/2011 17:55,7.5,399, Resource Management Errors,nan
CVE-2011-2345,19/09/2017 1:32,29/06/2011 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2342,19/09/2017 1:32,9/06/2011 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2341,19/09/2017 1:32,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2339,19/09/2017 1:32,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2338,19/09/2017 1:32,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2332,19/09/2017 1:32,9/06/2011 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2194,19/09/2017 1:32,24/06/2011 20:55,9.3,189, Numeric Errors,nan
CVE-2011-2175,19/09/2017 1:32,6/06/2011 19:55,4.3,189, Numeric Errors,nan
CVE-2011-2174,19/09/2017 1:32,6/06/2011 19:55,4.3,399, Resource Management Errors,nan
CVE-2011-2106,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2105,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2104,19/09/2017 1:32,16/06/2011 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2103,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2101,19/09/2017 1:32,16/06/2011 23:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2099,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2098,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2097,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2096,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2095,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2094,19/09/2017 1:32,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1959,19/09/2017 1:32,6/06/2011 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1957,19/09/2017 1:32,6/06/2011 19:55,4.3,399, Resource Management Errors,nan
CVE-2011-1921,19/09/2017 1:32,6/06/2011 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1847,19/09/2017 1:32,3/05/2011 20:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1846,19/09/2017 1:32,3/05/2011 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1818,19/09/2017 1:32,9/06/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-1817,19/09/2017 1:32,9/06/2011 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1816,19/09/2017 1:32,9/06/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-1814,19/09/2017 1:32,9/06/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-1813,19/09/2017 1:32,9/06/2011 19:55,7.5,20, Improper Input Validation,nan
CVE-2011-1812,19/09/2017 1:32,9/06/2011 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1811,19/09/2017 1:32,9/06/2011 19:55,5.0,20, Improper Input Validation,nan
CVE-2011-1810,19/09/2017 1:32,9/06/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1809,19/09/2017 1:32,9/06/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-1808,19/09/2017 1:32,9/06/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-1807,19/09/2017 1:32,26/05/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1806,19/09/2017 1:32,26/05/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1804,19/09/2017 1:32,26/05/2011 16:55,7.5,20, Improper Input Validation,nan
CVE-2011-1800,19/09/2017 1:32,16/05/2011 17:55,6.8,189, Numeric Errors,nan
CVE-2011-1799,19/09/2017 1:32,16/05/2011 17:55,6.8,20, Improper Input Validation,nan
CVE-2011-1783,19/09/2017 1:32,6/06/2011 19:55,4.3,399, Resource Management Errors,nan
CVE-2011-1713,19/09/2017 1:32,15/04/2011 20:55,4.3,200, Information Exposure,nan
CVE-2011-1712,19/09/2017 1:32,15/04/2011 20:55,4.3,200, Information Exposure,nan
CVE-2011-1684,19/09/2017 1:32,3/05/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1592,19/09/2017 1:32,29/04/2011 22:55,4.3,189, Numeric Errors,nan
CVE-2011-1591,19/09/2017 1:32,29/04/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1590,19/09/2017 1:32,29/04/2011 22:55,4.3,399, Resource Management Errors,nan
CVE-2011-1475,19/09/2017 1:32,8/04/2011 15:17,5.0,20, Improper Input Validation,nan
CVE-2011-1465,19/09/2017 1:32,20/03/2011 2:00,5.0,399, Resource Management Errors,nan
CVE-2011-1456,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1455,19/09/2017 1:32,3/05/2011 22:55,4.3,20, Improper Input Validation,nan
CVE-2011-1454,19/09/2017 1:32,3/05/2011 22:55,7.5,399, Resource Management Errors,nan
CVE-2011-1452,19/09/2017 1:32,3/05/2011 22:55,5.8,20, Improper Input Validation,nan
CVE-2011-1451,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1450,19/09/2017 1:32,3/05/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-1449,19/09/2017 1:32,3/05/2011 22:55,7.5,399, Resource Management Errors,nan
CVE-2011-1448,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1447,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1446,19/09/2017 1:32,3/05/2011 22:55,6.8,20, Improper Input Validation,nan
CVE-2011-1445,19/09/2017 1:32,3/05/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-1444,19/09/2017 1:32,3/05/2011 22:55,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1443,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1442,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1441,19/09/2017 1:32,3/05/2011 22:55,6.8,20, Improper Input Validation,nan
CVE-2011-1440,19/09/2017 1:32,3/05/2011 22:55,7.5,399, Resource Management Errors,nan
CVE-2011-1439,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1438,19/09/2017 1:32,3/05/2011 22:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1437,19/09/2017 1:32,3/05/2011 22:55,7.5,189, Numeric Errors,nan
CVE-2011-1436,19/09/2017 1:32,3/05/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-1435,19/09/2017 1:32,3/05/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-1434,19/09/2017 1:32,3/05/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-1374,19/09/2017 1:32,9/11/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1305,19/09/2017 1:32,3/05/2011 22:55,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1303,19/09/2017 1:32,3/05/2011 22:55,7.5,20, Improper Input Validation,nan
CVE-2011-1302,19/09/2017 1:32,15/04/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1301,19/09/2017 1:32,15/04/2011 19:55,10.0,399, Resource Management Errors,nan
CVE-2011-1296,19/09/2017 1:32,25/03/2011 19:55,7.5,20, Improper Input Validation,nan
CVE-2011-1295,19/09/2017 1:32,25/03/2011 19:55,7.5,20, Improper Input Validation,nan
CVE-2011-1294,19/09/2017 1:32,25/03/2011 19:55,7.5,20, Improper Input Validation,nan
CVE-2011-1293,19/09/2017 1:32,25/03/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-1292,19/09/2017 1:32,25/03/2011 19:55,7.5,399, Resource Management Errors,nan
CVE-2011-1291,19/09/2017 1:32,25/03/2011 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1286,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1285,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1218,19/09/2017 1:32,31/05/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1217,19/09/2017 1:32,31/05/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1216,19/09/2017 1:32,31/05/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1215,19/09/2017 1:32,31/05/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1214,19/09/2017 1:32,31/05/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1213,19/09/2017 1:32,31/05/2011 20:55,9.3,189, Numeric Errors,nan
CVE-2011-1204,19/09/2017 1:32,11/03/2011 2:01,6.8,20, Improper Input Validation,nan
CVE-2011-1203,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1201,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1199,19/09/2017 1:32,11/03/2011 2:01,7.5,20, Improper Input Validation,nan
CVE-2011-1198,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1197,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1196,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1195,19/09/2017 1:32,11/03/2011 2:01,7.5,399, Resource Management Errors,nan
CVE-2011-1193,19/09/2017 1:32,11/03/2011 2:01,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1192,19/09/2017 1:32,11/03/2011 2:01,5.0,20, Improper Input Validation,nan
CVE-2011-1191,19/09/2017 1:32,11/03/2011 2:01,7.5,399, Resource Management Errors,nan
CVE-2011-1190,19/09/2017 1:32,11/03/2011 2:01,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1189,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1188,19/09/2017 1:32,11/03/2011 2:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1187,19/09/2017 1:32,11/03/2011 2:01,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1186,19/09/2017 1:32,11/03/2011 2:01,5.0,20, Improper Input Validation,nan
CVE-2011-1185,19/09/2017 1:32,11/03/2011 2:01,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1142,19/09/2017 1:32,3/03/2011 1:00,5.0,399, Resource Management Errors,nan
CVE-2011-1141,19/09/2017 1:32,3/03/2011 1:00,4.3,399, Resource Management Errors,nan
CVE-2011-1140,19/09/2017 1:32,3/03/2011 1:00,4.3,399, Resource Management Errors,nan
CVE-2011-1139,19/09/2017 1:32,3/03/2011 1:00,4.3,399, Resource Management Errors,nan
CVE-2011-1138,19/09/2017 1:32,3/03/2011 1:00,4.3,189, Numeric Errors,nan
CVE-2011-1125,19/09/2017 1:32,1/03/2011 23:00,7.5,20, Improper Input Validation,nan
CVE-2011-1124,19/09/2017 1:32,1/03/2011 23:00,7.5,399, Resource Management Errors,nan
CVE-2011-1123,19/09/2017 1:32,1/03/2011 23:00,7.5,20, Improper Input Validation,nan
CVE-2011-1122,19/09/2017 1:32,1/03/2011 23:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1121,19/09/2017 1:32,1/03/2011 23:00,7.5,189, Numeric Errors,nan
CVE-2011-1120,19/09/2017 1:32,1/03/2011 23:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1119,19/09/2017 1:32,1/03/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1118,19/09/2017 1:32,1/03/2011 23:00,6.8,20, Improper Input Validation,nan
CVE-2011-1117,19/09/2017 1:32,1/03/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1116,19/09/2017 1:32,1/03/2011 23:00,7.5,20, Improper Input Validation,nan
CVE-2011-1115,19/09/2017 1:32,1/03/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1114,19/09/2017 1:32,1/03/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1112,19/09/2017 1:32,1/03/2011 23:00,7.5,20, Improper Input Validation,nan
CVE-2011-1111,19/09/2017 1:32,1/03/2011 23:00,7.5,20, Improper Input Validation,nan
CVE-2011-1110,19/09/2017 1:32,1/03/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1109,19/09/2017 1:32,1/03/2011 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1108,19/09/2017 1:32,1/03/2011 23:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-1087,19/09/2017 1:32,3/05/2011 19:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1059,19/09/2017 1:32,22/02/2011 19:00,4.3,399, Resource Management Errors,nan
CVE-2011-0997,19/09/2017 1:32,8/04/2011 15:17,7.5,20, Improper Input Validation,nan
CVE-2011-0985,19/09/2017 1:32,10/02/2011 19:00,10.0,20, Improper Input Validation,nan
CVE-2011-0984,19/09/2017 1:32,10/02/2011 19:00,5.0,20, Improper Input Validation,nan
CVE-2011-0983,19/09/2017 1:32,10/02/2011 19:00,10.0,20, Improper Input Validation,nan
CVE-2011-0982,19/09/2017 1:32,10/02/2011 19:00,10.0,399, Resource Management Errors,nan
CVE-2011-0981,19/09/2017 1:32,10/02/2011 19:00,10.0,20, Improper Input Validation,nan
CVE-2011-0912,19/09/2017 1:32,8/02/2011 22:00,9.3,20, Improper Input Validation,nan
CVE-2011-0784,19/09/2017 1:32,4/02/2011 18:00,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-0781,19/09/2017 1:32,4/02/2011 18:00,7.5,20, Improper Input Validation,nan
CVE-2011-0779,19/09/2017 1:32,4/02/2011 18:00,5.0,20, Improper Input Validation,nan
CVE-2011-0778,19/09/2017 1:32,4/02/2011 18:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-0777,19/09/2017 1:32,4/02/2011 18:00,10.0,399, Resource Management Errors,nan
CVE-2011-0776,19/09/2017 1:32,4/02/2011 18:00,5.0,200, Information Exposure,nan
CVE-2011-0757,19/09/2017 1:32,2/02/2011 23:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-0731,19/09/2017 1:32,1/02/2011 18:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0713,19/09/2017 1:32,3/03/2011 1:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0706,19/09/2017 1:32,19/02/2011 1:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-0687,19/09/2017 1:32,31/01/2011 21:00,4.3,20, Improper Input Validation,nan
CVE-2011-0685,19/09/2017 1:32,31/01/2011 21:00,2.1,20, Improper Input Validation,nan
CVE-2011-0684,19/09/2017 1:32,31/01/2011 21:00,5.0,20, Improper Input Validation,nan
CVE-2011-0683,19/09/2017 1:32,31/01/2011 21:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0638,19/09/2017 1:32,25/01/2011 1:00,6.9,16, Configuration,nan
CVE-2011-0610,19/09/2017 1:32,3/05/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0547,19/09/2017 1:32,19/08/2011 21:55,10.0,189, Numeric Errors,nan
CVE-2011-0538,19/09/2017 1:32,8/02/2011 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0531,19/09/2017 1:32,7/02/2011 21:00,9.3,20, Improper Input Validation,nan
CVE-2011-0522,19/09/2017 1:32,7/02/2011 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0485,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0484,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0483,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0482,19/09/2017 1:32,14/01/2011 17:00,9.3,189, Numeric Errors,nan
CVE-2011-0481,19/09/2017 1:32,14/01/2011 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0480,19/09/2017 1:32,14/01/2011 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0479,19/09/2017 1:32,14/01/2011 17:00,5.0,20, Improper Input Validation,nan
CVE-2011-0478,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0477,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0476,19/09/2017 1:32,14/01/2011 17:00,10.0,399, Resource Management Errors,nan
CVE-2011-0475,19/09/2017 1:32,14/01/2011 17:00,10.0,399, Resource Management Errors,nan
CVE-2011-0474,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0473,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0472,19/09/2017 1:32,14/01/2011 17:00,9.3,20, Improper Input Validation,nan
CVE-2011-0471,19/09/2017 1:32,14/01/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2011-0470,19/09/2017 1:32,14/01/2011 17:00,5.0,20, Improper Input Validation,nan
CVE-2011-0445,19/09/2017 1:32,13/01/2011 1:00,5.0,399, Resource Management Errors,nan
CVE-2011-0444,19/09/2017 1:31,13/01/2011 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0259,19/09/2017 1:31,12/10/2011 18:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0257,19/09/2017 1:31,15/08/2011 21:55,9.3,189, Numeric Errors,nan
CVE-2011-0256,19/09/2017 1:31,15/08/2011 21:55,9.3,189, Numeric Errors,nan
CVE-2011-0252,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0251,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0250,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0249,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0247,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0246,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0245,19/09/2017 1:31,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0170,19/09/2017 1:31,3/03/2011 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0168,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0165,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0164,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0156,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0155,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0154,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0153,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0152,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0151,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0150,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0149,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0148,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0147,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0146,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0145,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0144,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0143,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0142,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0141,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0140,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0139,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0138,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0137,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0136,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0135,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0134,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0133,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0131,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0130,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0129,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0128,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0127,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0126,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0125,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0124,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0123,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0122,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0121,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0120,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0119,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0118,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0117,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0116,19/09/2017 1:31,3/03/2011 20:00,7.6,399, Resource Management Errors,nan
CVE-2011-0114,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0113,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0112,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0111,19/09/2017 1:31,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0085,19/09/2017 1:31,30/06/2011 16:55,10.0,399, Resource Management Errors,nan
CVE-2011-0084,19/09/2017 1:31,18/08/2011 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0083,19/09/2017 1:31,30/06/2011 16:55,10.0,399, Resource Management Errors,nan
CVE-2011-0082,19/09/2017 1:31,6/06/2011 19:55,4.3,20, Improper Input Validation,nan
CVE-2011-0073,19/09/2017 1:31,7/05/2011 18:55,10.0,20, Improper Input Validation,nan
CVE-2011-0071,19/09/2017 1:31,7/05/2011 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0067,19/09/2017 1:31,7/05/2011 18:55,5.0,20, Improper Input Validation,nan
CVE-2011-0066,19/09/2017 1:31,7/05/2011 18:55,10.0,399, Resource Management Errors,nan
CVE-2011-0065,19/09/2017 1:31,7/05/2011 18:55,10.0,399, Resource Management Errors,nan
CVE-2011-0061,19/09/2017 1:31,2/03/2011 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0059,19/09/2017 1:31,2/03/2011 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0058,19/09/2017 1:31,2/03/2011 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0057,19/09/2017 1:31,2/03/2011 20:00,10.0,399, Resource Management Errors,nan
CVE-2011-0056,19/09/2017 1:31,2/03/2011 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0055,19/09/2017 1:31,2/03/2011 20:00,10.0,399, Resource Management Errors,nan
CVE-2011-0054,19/09/2017 1:31,2/03/2011 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0051,19/09/2017 1:31,2/03/2011 20:00,6.8,20, Improper Input Validation,nan
CVE-2011-0021,19/09/2017 1:31,25/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0014,19/09/2017 1:31,19/02/2011 1:00,5.0,399, Resource Management Errors,nan
CVE-2010-5074,19/09/2017 1:31,7/12/2011 19:55,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5073,19/09/2017 1:31,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5069,19/09/2017 1:31,7/12/2011 19:55,4.3,200, Information Exposure,nan
CVE-2010-4701,19/09/2017 1:31,20/01/2011 19:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4700,19/09/2017 1:31,18/01/2011 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4698,19/09/2017 1:31,18/01/2011 20:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4578,19/09/2017 1:31,22/12/2010 1:00,10.0,20, Improper Input Validation,nan
CVE-2010-4577,19/09/2017 1:31,22/12/2010 1:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4574,19/09/2017 1:31,22/12/2010 1:00,7.5,189, Numeric Errors,nan
CVE-2010-4538,19/09/2017 1:31,7/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4528,19/09/2017 1:31,7/01/2011 12:00,4.0,20, Improper Input Validation,nan
CVE-2010-4494,19/09/2017 1:31,7/12/2010 21:00,10.0,399, Resource Management Errors,nan
CVE-2010-4493,19/09/2017 1:31,7/12/2010 21:00,4.3,399, Resource Management Errors,nan
CVE-2010-4492,19/09/2017 1:31,7/12/2010 21:00,10.0,399, Resource Management Errors,nan
CVE-2010-4491,19/09/2017 1:31,7/12/2010 21:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-4489,19/09/2017 1:31,7/12/2010 21:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4488,19/09/2017 1:31,7/12/2010 21:00,5.0,287, Improper Authentication,nan
CVE-2010-4486,19/09/2017 1:31,7/12/2010 21:00,9.3,399, Resource Management Errors,nan
CVE-2010-4485,19/09/2017 1:31,7/12/2010 21:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-4483,19/09/2017 1:31,7/12/2010 21:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-4478,19/09/2017 1:31,6/12/2010 22:30,7.5,287, Improper Authentication,nan
CVE-2010-4374,19/09/2017 1:31,2/12/2010 16:22,4.3,399, Resource Management Errors,nan
CVE-2010-4372,19/09/2017 1:31,2/12/2010 16:22,9.3,189, Numeric Errors,nan
CVE-2010-4371,19/09/2017 1:31,2/12/2010 16:22,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4301,19/09/2017 1:31,26/11/2010 19:00,5.0,399, Resource Management Errors,nan
CVE-2010-4300,19/09/2017 1:31,26/11/2010 19:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4252,19/09/2017 1:31,6/12/2010 21:05,7.5,287, Improper Authentication,nan
CVE-2010-4206,19/09/2017 1:31,6/11/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4205,19/09/2017 1:31,6/11/2010 0:00,9.3,20, Improper Input Validation,nan
CVE-2010-4203,19/09/2017 1:31,6/11/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4202,19/09/2017 1:31,6/11/2010 0:00,9.3,189, Numeric Errors,nan
CVE-2010-4201,19/09/2017 1:31,6/11/2010 0:00,9.3,399, Resource Management Errors,nan
CVE-2010-4199,19/09/2017 1:31,6/11/2010 0:00,9.3,20, Improper Input Validation,nan
CVE-2010-4198,19/09/2017 1:31,6/11/2010 0:00,9.3,20, Improper Input Validation,nan
CVE-2010-4197,19/09/2017 1:31,6/11/2010 0:00,9.3,399, Resource Management Errors,nan
CVE-2010-4150,19/09/2017 1:31,7/12/2010 22:00,5.0,399, Resource Management Errors,nan
CVE-2010-4092,19/09/2017 1:31,5/11/2010 21:00,9.3,399, Resource Management Errors,nan
CVE-2010-4090,19/09/2017 1:31,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4085,19/09/2017 1:31,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4084,19/09/2017 1:31,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4050,19/09/2017 1:31,21/10/2010 19:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4049,19/09/2017 1:31,21/10/2010 19:00,4.3,20, Improper Input Validation,nan
CVE-2010-4048,19/09/2017 1:31,21/10/2010 19:00,4.3,20, Improper Input Validation,nan
CVE-2010-4047,19/09/2017 1:31,21/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4046,19/09/2017 1:31,21/10/2010 19:00,4.3,200, Information Exposure,nan
CVE-2010-4045,19/09/2017 1:31,21/10/2010 19:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-4044,19/09/2017 1:31,21/10/2010 19:00,4.3,20, Improper Input Validation,nan
CVE-2010-4043,19/09/2017 1:31,21/10/2010 19:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-4042,19/09/2017 1:31,21/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-4041,19/09/2017 1:31,21/10/2010 19:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-4040,19/09/2017 1:31,21/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4038,19/09/2017 1:31,21/10/2010 19:00,4.3,20, Improper Input Validation,nan
CVE-2010-4036,19/09/2017 1:31,21/10/2010 19:00,6.8,20, Improper Input Validation,nan
CVE-2010-4035,19/09/2017 1:31,21/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-4034,19/09/2017 1:31,21/10/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-4009,19/09/2017 1:31,9/12/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-4008,19/09/2017 1:31,17/11/2010 1:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3907,19/09/2017 1:31,3/01/2011 20:00,9.3,189, Numeric Errors,nan
CVE-2010-3824,19/09/2017 1:31,22/11/2010 13:00,9.3,399, Resource Management Errors,nan
CVE-2010-3823,19/09/2017 1:31,22/11/2010 13:00,9.3,399, Resource Management Errors,nan
CVE-2010-3822,19/09/2017 1:31,22/11/2010 13:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3821,19/09/2017 1:31,22/11/2010 13:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3820,19/09/2017 1:31,22/11/2010 13:00,9.3,399, Resource Management Errors,nan
CVE-2010-3819,19/09/2017 1:31,22/11/2010 13:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3818,19/09/2017 1:31,22/11/2010 13:00,9.3,399, Resource Management Errors,nan
CVE-2010-3816,19/09/2017 1:31,22/11/2010 13:00,9.3,399, Resource Management Errors,nan
CVE-2010-3813,19/09/2017 1:31,22/11/2010 13:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-3812,19/09/2017 1:31,22/11/2010 13:00,9.3,189, Numeric Errors,nan
CVE-2010-3811,19/09/2017 1:31,22/11/2010 13:00,9.3,399, Resource Management Errors,nan
CVE-2010-3809,19/09/2017 1:31,22/11/2010 13:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3808,19/09/2017 1:31,22/11/2010 13:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3805,19/09/2017 1:31,22/11/2010 13:00,9.3,189, Numeric Errors,nan
CVE-2010-3804,19/09/2017 1:31,22/11/2010 13:00,5.0,310, Cryptographic Issues,nan
CVE-2010-3803,19/09/2017 1:31,22/11/2010 13:00,9.3,189, Numeric Errors,nan
CVE-2010-3802,19/09/2017 1:31,9/12/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-3801,19/09/2017 1:31,9/12/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3800,19/09/2017 1:31,9/12/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3781,19/09/2017 1:31,6/10/2010 21:00,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3774,19/09/2017 1:31,10/12/2010 19:00,4.3,20, Improper Input Validation,nan
CVE-2010-3772,19/09/2017 1:31,10/12/2010 19:00,9.3,189, Numeric Errors,nan
CVE-2010-3770,19/09/2017 1:31,10/12/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3769,19/09/2017 1:31,10/12/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3768,19/09/2017 1:31,10/12/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-3767,19/09/2017 1:31,10/12/2010 19:00,9.3,189, Numeric Errors,nan
CVE-2010-3766,19/09/2017 1:31,10/12/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-3765,19/09/2017 1:31,28/10/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3741,19/09/2017 1:31,5/10/2010 18:00,4.7,310, Cryptographic Issues,nan
CVE-2010-3740,19/09/2017 1:31,5/10/2010 18:00,4.0,399, Resource Management Errors,nan
CVE-2010-3738,19/09/2017 1:31,5/10/2010 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3737,19/09/2017 1:31,5/10/2010 18:00,3.5,399, Resource Management Errors,nan
CVE-2010-3736,19/09/2017 1:31,5/10/2010 18:00,4.0,399, Resource Management Errors,nan
CVE-2010-3735,19/09/2017 1:31,5/10/2010 18:00,2.1,399, Resource Management Errors,nan
CVE-2010-3734,19/09/2017 1:31,5/10/2010 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3733,19/09/2017 1:31,5/10/2010 18:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-3732,19/09/2017 1:31,5/10/2010 18:00,3.5,20, Improper Input Validation,nan
CVE-2010-3731,19/09/2017 1:31,5/10/2010 18:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3729,19/09/2017 1:31,5/10/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3711,19/09/2017 1:31,28/10/2010 0:00,4.0,20, Improper Input Validation,nan
CVE-2010-3655,19/09/2017 1:31,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3654,19/09/2017 1:31,29/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3653,19/09/2017 1:31,26/10/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3635,19/09/2017 1:31,10/11/2010 3:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3633,19/09/2017 1:31,10/11/2010 3:00,5.0,399, Resource Management Errors,nan
CVE-2010-3623,19/09/2017 1:31,6/10/2010 17:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3475,19/09/2017 1:31,20/09/2010 22:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3474,19/09/2017 1:31,20/09/2010 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3445,19/09/2017 1:31,26/11/2010 19:00,5.0,399, Resource Management Errors,nan
CVE-2010-3433,19/09/2017 1:31,6/10/2010 17:00,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3417,19/09/2017 1:31,16/09/2010 21:00,5.0,200, Information Exposure,nan
CVE-2010-3416,19/09/2017 1:31,16/09/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3415,19/09/2017 1:31,16/09/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3414,19/09/2017 1:31,16/09/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3412,19/09/2017 1:31,16/09/2010 21:00,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-3411,19/09/2017 1:31,16/09/2010 21:00,5.0,20, Improper Input Validation,nan
CVE-2010-3400,19/09/2017 1:31,15/09/2010 20:00,5.8,310, Cryptographic Issues,nan
CVE-2010-3399,19/09/2017 1:31,15/09/2010 20:00,5.8,310, Cryptographic Issues,nan
CVE-2010-3315,19/09/2017 1:31,4/10/2010 21:00,6.0,16, Configuration,nan
CVE-2010-3259,19/09/2017 1:31,7/09/2010 18:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-3258,19/09/2017 1:31,7/09/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-3257,19/09/2017 1:31,7/09/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-3256,19/09/2017 1:31,7/09/2010 18:00,2.6,399, Resource Management Errors,nan
CVE-2010-3255,19/09/2017 1:31,7/09/2010 18:00,9.3,20, Improper Input Validation,nan
CVE-2010-3254,19/09/2017 1:31,7/09/2010 18:00,10.0,189, Numeric Errors,nan
CVE-2010-3253,19/09/2017 1:31,7/09/2010 18:00,10.0,399, Resource Management Errors,nan
CVE-2010-3252,19/09/2017 1:31,7/09/2010 18:00,10.0,399, Resource Management Errors,nan
CVE-2010-3251,19/09/2017 1:31,7/09/2010 18:00,4.3,399, Resource Management Errors,nan
CVE-2010-3249,19/09/2017 1:31,7/09/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-3248,19/09/2017 1:31,7/09/2010 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3247,19/09/2017 1:31,7/09/2010 18:00,4.3,20, Improper Input Validation,nan
CVE-2010-3246,19/09/2017 1:31,7/09/2010 18:00,4.3,20, Improper Input Validation,nan
CVE-2010-3197,19/09/2017 1:31,31/08/2010 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3196,19/09/2017 1:31,31/08/2010 22:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3194,19/09/2017 1:31,31/08/2010 22:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3183,19/09/2017 1:31,21/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3180,19/09/2017 1:31,21/10/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-3179,19/09/2017 1:31,21/10/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3178,19/09/2017 1:31,21/10/2010 19:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-3177,19/09/2017 1:31,21/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3173,19/09/2017 1:31,21/10/2010 19:00,7.5,310, Cryptographic Issues,nan
CVE-2010-3171,19/09/2017 1:31,15/09/2010 20:00,5.8,310, Cryptographic Issues,nan
CVE-2010-3170,19/09/2017 1:31,21/10/2010 19:00,4.3,310, Cryptographic Issues,nan
CVE-2010-3168,19/09/2017 1:31,9/09/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3167,19/09/2017 1:31,9/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-3166,19/09/2017 1:31,9/09/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3120,19/09/2017 1:31,24/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3119,19/09/2017 1:31,24/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3118,19/09/2017 1:31,24/08/2010 20:00,5.0,200, Information Exposure,nan
CVE-2010-3116,19/09/2017 1:31,24/08/2010 20:00,10.0,399, Resource Management Errors,nan
CVE-2010-3114,19/09/2017 1:31,24/08/2010 20:00,10.0,399, Resource Management Errors,nan
CVE-2010-3113,19/09/2017 1:31,24/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3112,19/09/2017 1:31,24/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3109,19/09/2017 1:31,23/08/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3108,19/09/2017 1:31,23/08/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3107,19/09/2017 1:31,23/08/2010 22:00,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-3106,19/09/2017 1:31,23/08/2010 22:00,9.3,20, Improper Input Validation,nan
CVE-2010-3105,19/09/2017 1:31,23/08/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3021,19/09/2017 1:31,16/08/2010 18:39,4.3,399, Resource Management Errors,nan
CVE-2010-3020,19/09/2017 1:31,16/08/2010 18:39,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3019,19/09/2017 1:31,16/08/2010 18:39,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2995,19/09/2017 1:31,13/08/2010 18:43,10.0,189, Numeric Errors,nan
CVE-2010-2994,19/09/2017 1:31,13/08/2010 18:43,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2993,19/09/2017 1:31,13/08/2010 18:43,5.0,20, Improper Input Validation,nan
CVE-2010-2937,19/09/2017 1:31,20/08/2010 18:00,5.0,20, Improper Input Validation,nan
CVE-2010-2936,19/09/2017 1:31,25/08/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-2935,19/09/2017 1:31,25/08/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-2931,19/09/2017 1:31,5/08/2010 13:23,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2902,19/09/2017 1:31,28/07/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2901,19/09/2017 1:31,28/07/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2875,19/09/2017 1:31,26/08/2010 21:00,9.3,189, Numeric Errors,nan
CVE-2010-2874,19/09/2017 1:31,7/09/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-2863,19/09/2017 1:31,26/08/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2862,19/09/2017 1:31,5/08/2010 18:17,9.3,189, Numeric Errors,nan
CVE-2010-2770,19/09/2017 1:31,9/09/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2769,19/09/2017 1:31,9/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2768,19/09/2017 1:31,9/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2767,19/09/2017 1:31,9/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-2766,19/09/2017 1:31,9/09/2010 19:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2765,19/09/2017 1:31,9/09/2010 19:00,9.3,189, Numeric Errors,nan
CVE-2010-2764,19/09/2017 1:31,9/09/2010 19:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2763,19/09/2017 1:31,9/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2762,19/09/2017 1:31,9/09/2010 19:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2760,19/09/2017 1:31,9/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-2755,19/09/2017 1:31,30/07/2010 13:26,10.0,399, Resource Management Errors,nan
CVE-2010-2754,19/09/2017 1:31,30/07/2010 13:26,5.0,200, Information Exposure,nan
CVE-2010-2753,19/09/2017 1:31,30/07/2010 20:30,9.3,189, Numeric Errors,nan
CVE-2010-2752,19/09/2017 1:31,30/07/2010 20:30,9.3,189, Numeric Errors,nan
CVE-2010-2751,19/09/2017 1:31,30/07/2010 20:30,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-2651,19/09/2017 1:31,6/07/2010 17:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2648,19/09/2017 1:31,6/07/2010 17:17,9.3,310, Cryptographic Issues,nan
CVE-2010-2647,19/09/2017 1:31,6/07/2010 17:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2549,19/09/2017 1:31,2/07/2010 19:00,7.2,399, Resource Management Errors,nan
CVE-2010-2528,19/09/2017 1:31,30/07/2010 13:26,4.0,399, Resource Management Errors,nan
CVE-2010-2302,19/09/2017 1:31,15/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-2301,19/09/2017 1:31,15/06/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2300,19/09/2017 1:31,15/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-2299,19/09/2017 1:31,15/06/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2298,19/09/2017 1:31,15/06/2010 18:00,10.0,20, Improper Input Validation,nan
CVE-2010-2297,19/09/2017 1:31,15/06/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2296,19/09/2017 1:31,15/06/2010 18:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2287,19/09/2017 1:31,15/06/2010 14:04,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2286,19/09/2017 1:31,15/06/2010 14:04,3.3,399, Resource Management Errors,nan
CVE-2010-2284,19/09/2017 1:31,15/06/2010 14:04,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2203,19/09/2017 1:30,30/06/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1975,19/09/2017 1:30,19/05/2010 18:30,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1939,19/09/2017 1:30,13/05/2010 22:30,7.6,399, Resource Management Errors,nan
CVE-2010-1851,19/09/2017 1:30,7/05/2010 18:24,4.3,200, Information Exposure,nan
CVE-2010-1825,19/09/2017 1:30,24/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-1824,19/09/2017 1:30,24/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-1823,19/09/2017 1:30,24/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-1822,19/09/2017 1:30,4/10/2010 21:00,9.3,189, Numeric Errors,nan
CVE-2010-1820,19/09/2017 1:30,21/09/2010 20:00,6.8,287, Improper Authentication,nan
CVE-2010-1807,19/09/2017 1:30,10/09/2010 19:00,9.3,20, Improper Input Validation,nan
CVE-2010-1806,19/09/2017 1:30,10/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-1805,19/09/2017 1:30,10/09/2010 19:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1796,19/09/2017 1:30,30/07/2010 20:30,2.6,200, Information Exposure,nan
CVE-2010-1793,19/09/2017 1:30,30/07/2010 20:30,9.3,399, Resource Management Errors,nan
CVE-2010-1792,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1791,19/09/2017 1:30,30/07/2010 20:30,9.3,189, Numeric Errors,nan
CVE-2010-1789,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1788,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1787,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1786,19/09/2017 1:30,30/07/2010 20:30,9.3,399, Resource Management Errors,nan
CVE-2010-1785,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1784,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1783,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1782,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1780,19/09/2017 1:30,30/07/2010 20:30,9.3,399, Resource Management Errors,nan
CVE-2010-1778,19/09/2017 1:30,30/07/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1777,19/09/2017 1:30,30/07/2010 13:26,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1774,19/09/2017 1:30,11/06/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1773,19/09/2017 1:30,24/09/2010 19:00,9.3,189, Numeric Errors,nan
CVE-2010-1772,19/09/2017 1:30,24/09/2010 19:00,9.3,399, Resource Management Errors,nan
CVE-2010-1771,19/09/2017 1:30,11/06/2010 19:30,9.3,399, Resource Management Errors,nan
CVE-2010-1770,19/09/2017 1:30,11/06/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1767,19/09/2017 1:30,24/09/2010 19:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1762,19/09/2017 1:30,11/06/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1761,19/09/2017 1:30,11/06/2010 19:30,9.3,399, Resource Management Errors,nan
CVE-2010-1759,19/09/2017 1:30,11/06/2010 19:30,9.3,399, Resource Management Errors,nan
CVE-2010-1758,19/09/2017 1:30,11/06/2010 19:30,9.3,399, Resource Management Errors,nan
CVE-2010-1750,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1748,19/09/2017 1:30,17/06/2010 16:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1665,19/09/2017 1:30,3/05/2010 13:51,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1664,19/09/2017 1:30,3/05/2010 13:51,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1624,19/09/2017 1:30,14/05/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-1623,19/09/2017 1:30,4/10/2010 21:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1608,19/09/2017 1:30,29/04/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1560,19/09/2017 1:30,27/04/2010 15:30,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1527,19/09/2017 1:30,23/08/2010 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1508,19/09/2017 1:30,9/12/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1505,19/09/2017 1:30,23/04/2010 14:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1504,19/09/2017 1:30,23/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1503,19/09/2017 1:30,23/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1489,19/09/2017 1:30,20/04/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1487,19/09/2017 1:30,20/04/2010 15:30,2.1,255, Credentials Management,nan
CVE-2010-1455,19/09/2017 1:30,12/05/2010 11:46,4.3,20, Improper Input Validation,nan
CVE-2010-1447,19/09/2017 1:30,19/05/2010 18:30,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1440,19/09/2017 1:30,7/05/2010 18:24,6.8,189, Numeric Errors,nan
CVE-2010-1439,19/09/2017 1:30,7/06/2010 17:12,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-1423,19/09/2017 1:30,15/04/2010 21:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-1419,19/09/2017 1:30,11/06/2010 19:30,9.3,399, Resource Management Errors,nan
CVE-2010-1418,19/09/2017 1:30,11/06/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1417,19/09/2017 1:30,11/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1416,19/09/2017 1:30,11/06/2010 18:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1415,19/09/2017 1:30,11/06/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1414,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1413,19/09/2017 1:30,11/06/2010 18:00,5.0,310, Cryptographic Issues,nan
CVE-2010-1412,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1410,19/09/2017 1:30,11/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1408,19/09/2017 1:30,11/06/2010 18:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1406,19/09/2017 1:30,11/06/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-1405,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1400,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1399,19/09/2017 1:30,11/06/2010 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1396,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1395,19/09/2017 1:30,11/06/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1394,19/09/2017 1:30,11/06/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1393,19/09/2017 1:30,11/06/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-1391,19/09/2017 1:30,11/06/2010 18:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1390,19/09/2017 1:30,11/06/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1389,19/09/2017 1:30,11/06/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1387,19/09/2017 1:30,18/06/2010 16:30,9.3,399, Resource Management Errors,nan
CVE-2010-1385,19/09/2017 1:30,11/06/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-1384,19/09/2017 1:30,11/06/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-1291,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1290,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1289,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1288,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1287,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1286,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1284,19/09/2017 1:30,13/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1241,19/09/2017 1:30,5/04/2010 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1240,19/09/2017 1:30,5/04/2010 15:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1236,19/09/2017 1:30,1/04/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1235,19/09/2017 1:30,1/04/2010 22:30,4.3,20, Improper Input Validation,nan
CVE-2010-1233,19/09/2017 1:30,1/04/2010 22:30,10.0,189, Numeric Errors,nan
CVE-2010-1232,19/09/2017 1:30,1/04/2010 22:30,5.0,399, Resource Management Errors,nan
CVE-2010-1229,19/09/2017 1:30,1/04/2010 22:30,10.0,399, Resource Management Errors,nan
CVE-2010-1228,19/09/2017 1:30,1/04/2010 22:30,10.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1215,19/09/2017 1:30,30/07/2010 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1214,19/09/2017 1:30,30/07/2010 20:30,9.3,189, Numeric Errors,nan
CVE-2010-1213,19/09/2017 1:30,30/07/2010 20:30,4.3,20, Improper Input Validation,nan
CVE-2010-1212,19/09/2017 1:30,30/07/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1210,19/09/2017 1:30,30/07/2010 20:30,4.3,20, Improper Input Validation,nan
CVE-2010-1209,19/09/2017 1:30,30/07/2010 20:30,9.3,399, Resource Management Errors,nan
CVE-2010-1208,19/09/2017 1:30,30/07/2010 20:30,9.3,399, Resource Management Errors,nan
CVE-2010-1207,19/09/2017 1:30,30/07/2010 20:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1206,19/09/2017 1:30,25/06/2010 19:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1205,19/09/2017 1:30,30/06/2010 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1198,19/09/2017 1:30,24/06/2010 12:30,9.3,399, Resource Management Errors,nan
CVE-2010-1197,19/09/2017 1:30,24/06/2010 12:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1196,19/09/2017 1:30,24/06/2010 12:30,9.3,189, Numeric Errors,nan
CVE-2010-1188,19/09/2017 1:30,31/03/2010 18:00,7.1,399, Resource Management Errors,nan
CVE-2010-1170,19/09/2017 1:30,19/05/2010 18:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1169,19/09/2017 1:30,19/05/2010 18:30,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1168,19/09/2017 1:30,21/06/2010 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1166,19/09/2017 1:30,29/04/2010 21:30,7.1,189, Numeric Errors,nan
CVE-2010-1143,19/09/2017 1:30,7/05/2010 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1141,19/09/2017 1:30,12/04/2010 18:30,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1137,19/09/2017 1:30,1/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1122,19/09/2017 1:30,25/03/2010 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1121,19/09/2017 1:30,25/03/2010 21:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1119,19/09/2017 1:30,25/03/2010 21:00,10.0,399, Resource Management Errors,nan
CVE-2010-1028,19/09/2017 1:30,19/03/2010 21:30,9.3,189, Numeric Errors,nan
CVE-2010-0961,19/09/2017 1:30,10/03/2010 22:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0960,19/09/2017 1:30,10/03/2010 22:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0829,19/09/2017 1:30,7/05/2010 18:24,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0827,19/09/2017 1:30,7/05/2010 18:24,6.8,189, Numeric Errors,nan
CVE-2010-0826,19/09/2017 1:30,5/04/2010 15:30,1.9,200, Information Exposure,nan
CVE-2010-0743,19/09/2017 1:30,8/04/2010 17:30,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2010-0742,19/09/2017 1:30,3/06/2010 14:30,7.5,310, Cryptographic Issues,nan
CVE-2010-0741,19/09/2017 1:30,12/04/2010 18:30,7.8,20, Improper Input Validation,nan
CVE-2010-0739,19/09/2017 1:30,16/04/2010 18:30,6.8,189, Numeric Errors,nan
CVE-2010-0733,19/09/2017 1:30,19/03/2010 19:30,3.5,189, Numeric Errors,nan
CVE-2010-0731,19/09/2017 1:30,26/03/2010 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0729,19/09/2017 1:30,16/03/2010 19:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0664,19/09/2017 1:30,18/02/2010 18:00,5.0,399, Resource Management Errors,nan
CVE-2010-0663,19/09/2017 1:30,18/02/2010 18:00,5.0,200, Information Exposure,nan
CVE-2010-0662,19/09/2017 1:30,18/02/2010 18:00,5.0,189, Numeric Errors,nan
CVE-2010-0661,19/09/2017 1:30,18/02/2010 18:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-0660,19/09/2017 1:30,18/02/2010 18:00,5.0,200, Information Exposure,nan
CVE-2010-0659,19/09/2017 1:30,18/02/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-0658,19/09/2017 1:30,18/02/2010 18:00,9.3,189, Numeric Errors,nan
CVE-2010-0656,19/09/2017 1:30,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0655,19/09/2017 1:30,18/02/2010 18:00,9.3,399, Resource Management Errors,nan
CVE-2010-0654,19/09/2017 1:30,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0651,19/09/2017 1:30,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0649,19/09/2017 1:30,18/02/2010 18:00,9.3,189, Numeric Errors,nan
CVE-2010-0648,19/09/2017 1:30,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0647,19/09/2017 1:30,18/02/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0646,19/09/2017 1:30,18/02/2010 18:00,10.0,189, Numeric Errors,nan
CVE-2010-0645,19/09/2017 1:30,18/02/2010 18:00,9.3,189, Numeric Errors,nan
CVE-2010-0644,19/09/2017 1:30,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0643,19/09/2017 1:30,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0544,19/09/2017 1:30,11/06/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0542,19/09/2017 1:30,21/06/2010 16:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-0540,19/09/2017 1:30,17/06/2010 16:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0536,19/09/2017 1:30,31/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0532,19/09/2017 1:30,31/03/2010 18:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-0531,19/09/2017 1:30,31/03/2010 18:30,4.3,399, Resource Management Errors,nan
CVE-2010-0530,19/09/2017 1:30,9/12/2010 20:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-0527,19/09/2017 1:30,31/03/2010 18:30,9.3,189, Numeric Errors,nan
CVE-2010-0518,19/09/2017 1:30,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0515,19/09/2017 1:30,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0514,19/09/2017 1:30,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0462,19/09/2017 1:30,28/01/2010 20:30,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0451,19/09/2017 1:30,29/03/2010 22:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0442,19/09/2017 1:30,2/02/2010 18:30,6.5,189, Numeric Errors,nan
CVE-2010-0436,19/09/2017 1:30,15/04/2010 17:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-0423,19/09/2017 1:30,24/02/2010 18:30,5.0,399, Resource Management Errors,nan
CVE-2010-0421,19/09/2017 1:30,18/03/2010 17:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0420,19/09/2017 1:30,24/02/2010 18:30,4.3,20, Improper Input Validation,nan
CVE-2010-0419,19/09/2017 1:30,5/03/2010 16:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-0417,19/09/2017 1:30,18/02/2010 23:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0416,19/09/2017 1:30,18/02/2010 23:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0411,19/09/2017 1:30,8/02/2010 20:30,4.9,189, Numeric Errors,nan
CVE-2010-0395,19/09/2017 1:30,10/06/2010 0:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-0364,19/09/2017 1:30,21/01/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0310,19/09/2017 1:30,14/01/2010 19:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-0309,19/09/2017 1:30,12/02/2010 19:30,6.8,16, Configuration,nan
CVE-2010-0308,19/09/2017 1:30,3/02/2010 18:30,4.0,20, Improper Input Validation,nan
CVE-2010-0306,19/09/2017 1:30,12/02/2010 19:30,4.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-0304,19/09/2017 1:30,3/02/2010 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0302,19/09/2017 1:30,5/03/2010 19:30,4.3,399, Resource Management Errors,nan
CVE-2010-0298,19/09/2017 1:30,12/02/2010 19:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0297,19/09/2017 1:30,12/02/2010 19:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0277,19/09/2017 1:30,9/01/2010 18:30,5.0,399, Resource Management Errors,nan
CVE-2010-0220,19/09/2017 1:30,7/01/2010 19:30,5.0,399, Resource Management Errors,nan
CVE-2010-0189,19/09/2017 1:30,23/02/2010 20:30,9.3,20, Improper Input Validation,nan
CVE-2010-0188,19/09/2017 1:30,22/02/2010 13:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0183,19/09/2017 1:30,24/06/2010 12:30,9.3,399, Resource Management Errors,nan
CVE-2010-0170,19/09/2017 1:30,25/03/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0168,19/09/2017 1:30,25/03/2010 21:00,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0166,19/09/2017 1:30,25/03/2010 21:00,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0165,19/09/2017 1:30,25/03/2010 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0162,19/09/2017 1:30,22/02/2010 13:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0161,19/09/2017 1:30,23/03/2010 0:53,4.3,399, Resource Management Errors,nan
CVE-2010-0120,19/09/2017 1:30,30/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0116,19/09/2017 1:30,30/08/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-0097,19/09/2017 1:30,22/01/2010 22:00,4.3,20, Improper Input Validation,nan
CVE-2010-0060,19/09/2017 1:30,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0054,19/09/2017 1:30,15/03/2010 14:15,9.3,399, Resource Management Errors,nan
CVE-2010-0053,19/09/2017 1:30,15/03/2010 14:15,9.3,399, Resource Management Errors,nan
CVE-2010-0052,19/09/2017 1:30,15/03/2010 14:15,9.3,399, Resource Management Errors,nan
CVE-2010-0051,19/09/2017 1:30,15/03/2010 14:15,4.3,20, Improper Input Validation,nan
CVE-2010-0050,19/09/2017 1:30,15/03/2010 14:15,9.3,399, Resource Management Errors,nan
CVE-2010-0049,19/09/2017 1:30,15/03/2010 14:15,9.3,399, Resource Management Errors,nan
CVE-2010-0048,19/09/2017 1:30,15/03/2010 13:28,9.3,399, Resource Management Errors,nan
CVE-2010-0047,19/09/2017 1:30,15/03/2010 13:28,9.3,399, Resource Management Errors,nan
CVE-2010-0046,19/09/2017 1:30,15/03/2010 13:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0045,19/09/2017 1:30,15/03/2010 13:28,9.3,20, Improper Input Validation,nan
CVE-2010-0044,19/09/2017 1:30,15/03/2010 13:28,4.3,16, Configuration,nan
CVE-2010-0043,19/09/2017 1:30,15/03/2010 13:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0042,19/09/2017 1:30,15/03/2010 13:28,4.3,200, Information Exposure,nan
CVE-2010-0041,19/09/2017 1:30,15/03/2010 13:28,4.3,200, Information Exposure,nan
CVE-2010-0040,19/09/2017 1:30,15/03/2010 13:28,9.3,189, Numeric Errors,nan
CVE-2010-0013,19/09/2017 1:30,9/01/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0001,19/09/2017 1:30,29/01/2010 18:30,6.8,189, Numeric Errors,nan
CVE-2009-5134,19/09/2017 1:30,18/01/2013 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5095,19/09/2017 1:30,12/09/2011 12:40,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-5094,19/09/2017 1:30,12/09/2011 12:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5091,19/09/2017 1:30,12/09/2011 12:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5090,19/09/2017 1:30,12/09/2011 12:40,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5089,19/09/2017 1:30,12/09/2011 12:40,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-5088,19/09/2017 1:30,12/09/2011 12:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4993,19/09/2017 1:30,25/08/2010 20:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4992,19/09/2017 1:30,25/08/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4987,19/09/2017 1:30,25/08/2010 20:00,7.5,287, Improper Authentication,nan
CVE-2009-4986,19/09/2017 1:30,25/08/2010 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4985,19/09/2017 1:30,25/08/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4984,19/09/2017 1:30,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4982,19/09/2017 1:30,25/08/2010 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4978,19/09/2017 1:30,25/08/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4977,19/09/2017 1:30,25/08/2010 20:00,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4974,19/09/2017 1:30,28/07/2010 14:43,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4973,19/09/2017 1:30,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4964,19/09/2017 1:30,28/07/2010 14:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4962,19/09/2017 1:30,28/07/2010 14:43,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4961,19/09/2017 1:30,28/07/2010 14:43,5.0,200, Information Exposure,nan
CVE-2009-4960,19/09/2017 1:30,28/07/2010 14:43,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4958,19/09/2017 1:30,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4957,19/09/2017 1:30,22/07/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4940,19/09/2017 1:30,22/07/2010 5:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4938,19/09/2017 1:30,22/07/2010 5:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4935,19/09/2017 1:30,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4933,19/09/2017 1:30,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4932,19/09/2017 1:30,12/07/2010 13:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4931,19/09/2017 1:30,12/07/2010 13:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4929,19/09/2017 1:30,12/07/2010 13:27,7.5,287, Improper Authentication,nan
CVE-2009-4928,19/09/2017 1:30,12/07/2010 13:27,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4927,19/09/2017 1:30,12/07/2010 13:27,7.5,287, Improper Authentication,nan
CVE-2009-4892,19/09/2017 1:30,11/06/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4891,19/09/2017 1:30,11/06/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4889,19/09/2017 1:30,11/06/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4887,19/09/2017 1:30,11/06/2010 14:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4883,19/09/2017 1:30,11/06/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4876,19/09/2017 1:30,26/05/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4874,19/09/2017 1:30,26/05/2010 18:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-4872,19/09/2017 1:30,11/05/2010 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4871,19/09/2017 1:30,11/05/2010 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4870,19/09/2017 1:30,11/05/2010 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4867,19/09/2017 1:30,11/05/2010 12:02,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4863,19/09/2017 1:30,11/05/2010 12:02,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4862,19/09/2017 1:30,11/05/2010 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4860,19/09/2017 1:30,11/05/2010 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4855,19/09/2017 1:30,11/05/2010 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4854,19/09/2017 1:30,7/05/2010 23:00,7.5,20, Improper Input Validation,nan
CVE-2009-4841,19/09/2017 1:30,6/05/2010 12:47,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4840,19/09/2017 1:30,6/05/2010 12:47,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4836,19/09/2017 1:30,6/05/2010 12:47,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4834,19/09/2017 1:30,4/05/2010 16:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4832,19/09/2017 1:30,29/04/2010 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4809,19/09/2017 1:30,23/04/2010 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4808,19/09/2017 1:30,23/04/2010 14:30,7.5,287, Improper Authentication,nan
CVE-2009-4807,19/09/2017 1:30,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4806,19/09/2017 1:30,23/04/2010 14:30,7.5,287, Improper Authentication,nan
CVE-2009-4800,19/09/2017 1:30,22/04/2010 14:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4799,19/09/2017 1:30,22/04/2010 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4798,19/09/2017 1:30,22/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4797,19/09/2017 1:30,22/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4793,19/09/2017 1:30,22/04/2010 14:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4792,19/09/2017 1:30,22/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4775,19/09/2017 1:30,21/04/2010 14:30,4.3,134, Use of Externally-Controlled Format String,nan
CVE-2009-4764,19/09/2017 1:30,5/04/2010 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4761,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4760,19/09/2017 1:30,29/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4759,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4758,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4757,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4756,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4755,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4754,19/09/2017 1:30,29/03/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4749,19/09/2017 1:30,26/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4748,19/09/2017 1:30,26/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4739,19/09/2017 1:30,26/03/2010 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4735,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4734,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4733,19/09/2017 1:30,18/03/2010 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4732,19/09/2017 1:30,18/03/2010 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4730,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4729,19/09/2017 1:30,18/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4728,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4727,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4726,19/09/2017 1:30,18/03/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4725,19/09/2017 1:30,18/03/2010 18:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4724,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4723,19/09/2017 1:30,18/03/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4722,19/09/2017 1:30,18/03/2010 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4721,19/09/2017 1:30,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4713,19/09/2017 1:30,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4700,19/09/2017 1:30,15/03/2010 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4699,19/09/2017 1:30,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4698,19/09/2017 1:30,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4697,19/09/2017 1:30,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4696,19/09/2017 1:30,10/03/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4695,19/09/2017 1:30,10/03/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4693,19/09/2017 1:30,10/03/2010 22:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4692,19/09/2017 1:30,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4687,19/09/2017 1:30,10/03/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4683,19/09/2017 1:30,10/03/2010 22:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4682,19/09/2017 1:30,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4681,19/09/2017 1:30,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4680,19/09/2017 1:30,10/03/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4675,19/09/2017 1:30,5/03/2010 18:30,7.5,287, Improper Authentication,nan
CVE-2009-4674,19/09/2017 1:30,5/03/2010 18:30,7.5,255, Credentials Management,nan
CVE-2009-4673,19/09/2017 1:30,5/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4672,19/09/2017 1:30,5/03/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4671,19/09/2017 1:30,5/03/2010 18:30,7.5,287, Improper Authentication,nan
CVE-2009-4670,19/09/2017 1:30,5/03/2010 18:30,7.5,287, Improper Authentication,nan
CVE-2009-4669,19/09/2017 1:30,5/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4667,19/09/2017 1:30,5/03/2010 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4666,19/09/2017 1:30,5/03/2010 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4665,19/09/2017 1:30,5/03/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4663,19/09/2017 1:30,3/03/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4661,19/09/2017 1:30,3/03/2010 20:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4660,19/09/2017 1:30,3/03/2010 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4658,19/09/2017 1:30,3/03/2010 20:30,4.0,20, Improper Input Validation,nan
CVE-2009-4657,19/09/2017 1:30,3/03/2010 20:30,7.5,287, Improper Authentication,nan
CVE-2009-4656,19/09/2017 1:30,3/03/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4628,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4627,19/09/2017 1:30,18/01/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4626,19/09/2017 1:30,18/01/2010 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4625,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4624,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4623,19/09/2017 1:30,18/01/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4622,19/09/2017 1:30,18/01/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4621,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4620,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4619,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4618,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4617,19/09/2017 1:30,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4616,19/09/2017 1:30,18/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4615,19/09/2017 1:29,18/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4614,19/09/2017 1:29,18/01/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4588,19/09/2017 1:29,7/01/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4565,19/09/2017 1:29,4/01/2010 21:30,7.5,310, Cryptographic Issues,nan
CVE-2009-4564,19/09/2017 1:29,4/01/2010 21:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4563,19/09/2017 1:29,4/01/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4562,19/09/2017 1:29,4/01/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4561,19/09/2017 1:29,4/01/2010 21:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4560,19/09/2017 1:29,4/01/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4553,19/09/2017 1:29,4/01/2010 17:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4552,19/09/2017 1:29,4/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4551,19/09/2017 1:29,4/01/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4550,19/09/2017 1:29,4/01/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4549,19/09/2017 1:29,4/01/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4546,19/09/2017 1:29,4/01/2010 17:30,7.5,20, Improper Input Validation,nan
CVE-2009-4545,19/09/2017 1:29,4/01/2010 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4544,19/09/2017 1:29,4/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4543,19/09/2017 1:29,4/01/2010 17:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4542,19/09/2017 1:29,4/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4541,19/09/2017 1:29,4/01/2010 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4540,19/09/2017 1:29,4/01/2010 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4478,19/09/2017 1:29,30/12/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4477,19/09/2017 1:29,30/12/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4475,19/09/2017 1:29,30/12/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4474,19/09/2017 1:29,30/12/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4472,19/09/2017 1:29,30/12/2009 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4471,19/09/2017 1:29,30/12/2009 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4376,19/09/2017 1:29,21/12/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4355,19/09/2017 1:29,14/01/2010 19:30,5.0,399, Resource Management Errors,nan
CVE-2009-4313,19/09/2017 1:29,13/12/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4312,19/09/2017 1:29,13/12/2009 1:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4311,19/09/2017 1:29,13/12/2009 1:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4307,19/09/2017 1:29,13/12/2009 1:30,7.1,189, Numeric Errors,nan
CVE-2009-4273,19/09/2017 1:29,26/01/2010 18:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4272,19/09/2017 1:29,27/01/2010 17:30,7.8,20, Improper Input Validation,nan
CVE-2009-4248,19/09/2017 1:29,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4247,19/09/2017 1:29,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4245,19/09/2017 1:29,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4212,19/09/2017 1:29,13/01/2010 19:30,10.0,189, Numeric Errors,nan
CVE-2009-4208,19/09/2017 1:29,4/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4206,19/09/2017 1:29,4/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4205,19/09/2017 1:29,4/12/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4204,19/09/2017 1:29,4/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4203,19/09/2017 1:29,4/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4202,19/09/2017 1:29,4/12/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4200,19/09/2017 1:29,4/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4199,19/09/2017 1:29,4/12/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4198,19/09/2017 1:29,4/12/2009 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4145,19/09/2017 1:29,23/12/2009 20:30,2.1,200, Information Exposure,nan
CVE-2009-4144,19/09/2017 1:29,23/12/2009 20:30,6.8,310, Cryptographic Issues,nan
CVE-2009-4141,19/09/2017 1:29,19/01/2010 16:30,7.2,399, Resource Management Errors,nan
CVE-2009-4138,19/09/2017 1:29,16/12/2009 19:30,4.7,399, Resource Management Errors,nan
CVE-2009-4107,19/09/2017 1:29,29/11/2009 13:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4106,19/09/2017 1:29,29/11/2009 13:08,7.5,20, Improper Input Validation,nan
CVE-2009-4035,19/09/2017 1:29,21/12/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4033,19/09/2017 1:29,8/12/2009 19:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-4028,19/09/2017 1:29,30/11/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2009-4027,19/09/2017 1:29,2/12/2009 16:30,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-4021,19/09/2017 1:29,25/11/2009 16:30,4.9,399, Resource Management Errors,nan
CVE-2009-4020,19/09/2017 1:29,4/12/2009 21:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4005,19/09/2017 1:29,20/11/2009 2:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3988,19/09/2017 1:29,22/02/2010 13:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3987,19/09/2017 1:29,17/12/2009 17:30,7.8,200, Information Exposure,nan
CVE-2009-3986,19/09/2017 1:29,17/12/2009 17:30,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3980,19/09/2017 1:29,17/12/2009 17:30,9.3,399, Resource Management Errors,nan
CVE-2009-3976,19/09/2017 1:29,18/11/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3975,19/09/2017 1:29,18/11/2009 23:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3973,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3972,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3971,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3970,19/09/2017 1:29,18/11/2009 23:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3969,19/09/2017 1:29,18/11/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3968,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3967,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3966,19/09/2017 1:29,18/11/2009 23:30,7.5,287, Improper Authentication,nan
CVE-2009-3965,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3964,19/09/2017 1:29,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3949,19/09/2017 1:29,16/11/2009 20:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3948,19/09/2017 1:29,16/11/2009 20:30,4.3,399, Resource Management Errors,nan
CVE-2009-3947,19/09/2017 1:29,16/11/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3939,19/09/2017 1:29,16/11/2009 19:30,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3899,19/09/2017 1:29,6/11/2009 15:30,7.8,399, Resource Management Errors,nan
CVE-2009-3889,19/09/2017 1:29,16/11/2009 19:30,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3881,19/09/2017 1:29,9/11/2009 19:30,7.5,200, Information Exposure,nan
CVE-2009-3880,19/09/2017 1:29,9/11/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3866,19/09/2017 1:29,5/11/2009 16:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3863,19/09/2017 1:29,4/11/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3859,19/09/2017 1:29,4/11/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3857,19/09/2017 1:29,4/11/2009 17:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3829,19/09/2017 1:29,30/10/2009 20:30,9.3,189, Numeric Errors,nan
CVE-2009-3825,19/09/2017 1:29,28/10/2009 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3824,19/09/2017 1:29,28/10/2009 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3823,19/09/2017 1:29,28/10/2009 10:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3812,19/09/2017 1:29,27/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3811,19/09/2017 1:29,27/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3810,19/09/2017 1:29,27/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3809,19/09/2017 1:29,27/10/2009 16:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3807,19/09/2017 1:29,27/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3797,19/09/2017 1:29,10/12/2009 19:30,9.3,399, Resource Management Errors,nan
CVE-2009-3767,19/09/2017 1:29,23/10/2009 19:30,6.8,310, Cryptographic Issues,nan
CVE-2009-3760,19/09/2017 1:29,22/10/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3759,19/09/2017 1:29,22/10/2009 17:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3758,19/09/2017 1:29,22/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3757,19/09/2017 1:29,22/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3756,19/09/2017 1:29,22/10/2009 17:30,5.0,200, Information Exposure,nan
CVE-2009-3755,19/09/2017 1:29,22/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3754,19/09/2017 1:29,22/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3753,19/09/2017 1:29,22/10/2009 17:30,7.5,20, Improper Input Validation,nan
CVE-2009-3752,19/09/2017 1:29,22/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3751,19/09/2017 1:29,22/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3750,19/09/2017 1:29,22/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3746,19/09/2017 1:29,22/10/2009 16:30,1.9,16, Configuration,nan
CVE-2009-3726,19/09/2017 1:29,9/11/2009 19:30,7.8,399, Resource Management Errors,nan
CVE-2009-3722,19/09/2017 1:29,30/10/2009 20:30,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-3719,19/09/2017 1:29,16/10/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3718,19/09/2017 1:29,16/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3717,19/09/2017 1:29,16/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3716,19/09/2017 1:29,16/10/2009 16:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3715,19/09/2017 1:29,16/10/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3714,19/09/2017 1:29,16/10/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3713,19/09/2017 1:29,16/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3712,19/09/2017 1:29,16/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3670,19/09/2017 1:29,11/10/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3669,19/09/2017 1:29,11/10/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3667,19/09/2017 1:29,11/10/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3663,19/09/2017 1:29,11/10/2009 22:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-3661,19/09/2017 1:29,11/10/2009 22:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3660,19/09/2017 1:29,11/10/2009 22:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3659,19/09/2017 1:29,11/10/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3646,19/09/2017 1:29,9/10/2009 14:30,5.0,200, Information Exposure,nan
CVE-2009-3620,19/09/2017 1:29,22/10/2009 16:00,4.9,20, Improper Input Validation,nan
CVE-2009-3615,19/09/2017 1:29,20/10/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2009-3613,19/09/2017 1:29,19/10/2009 20:00,7.8,399, Resource Management Errors,nan
CVE-2009-3612,19/09/2017 1:29,19/10/2009 20:00,4.9,200, Information Exposure,nan
CVE-2009-3605,19/09/2017 1:29,2/11/2009 15:30,6.8,189, Numeric Errors,nan
CVE-2009-3597,19/09/2017 1:29,8/10/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3596,19/09/2017 1:29,8/10/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3595,19/09/2017 1:29,8/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3590,19/09/2017 1:29,8/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3574,19/09/2017 1:29,6/10/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3562,19/09/2017 1:29,5/10/2009 19:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3561,19/09/2017 1:29,5/10/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3560,19/09/2017 1:29,4/12/2009 21:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3556,19/09/2017 1:29,27/01/2010 17:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-3553,19/09/2017 1:29,20/11/2009 2:30,5.0,399, Resource Management Errors,nan
CVE-2009-3551,19/09/2017 1:29,30/10/2009 20:30,5.0,189, Numeric Errors,nan
CVE-2009-3549,19/09/2017 1:29,30/10/2009 20:30,5.0,20, Improper Input Validation,nan
CVE-2009-3546,19/09/2017 1:29,19/10/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3545,19/09/2017 1:29,5/10/2009 19:30,4.0,20, Improper Input Validation,nan
CVE-2009-3544,19/09/2017 1:29,5/10/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-3543,19/09/2017 1:29,2/10/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3541,19/09/2017 1:29,2/10/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3537,19/09/2017 1:29,2/10/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3536,19/09/2017 1:29,2/10/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3535,19/09/2017 1:29,2/10/2009 19:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3534,19/09/2017 1:29,2/10/2009 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3531,19/09/2017 1:29,2/10/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3530,19/09/2017 1:29,2/10/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3529,19/09/2017 1:29,2/10/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3528,19/09/2017 1:29,2/10/2009 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3525,19/09/2017 1:29,5/10/2009 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-3523,19/09/2017 1:29,1/10/2009 17:00,6.9,20, Improper Input Validation,nan
CVE-2009-3516,19/09/2017 1:29,1/10/2009 15:30,7.2,255, Credentials Management,nan
CVE-2009-3515,19/09/2017 1:29,1/10/2009 14:30,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3514,19/09/2017 1:29,1/10/2009 14:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3511,19/09/2017 1:29,1/10/2009 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3510,19/09/2017 1:29,1/10/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3508,19/09/2017 1:29,1/10/2009 14:30,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3507,19/09/2017 1:29,1/10/2009 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3506,19/09/2017 1:29,1/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3492,19/09/2017 1:29,30/09/2009 15:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3490,19/09/2017 1:29,30/09/2009 15:30,6.8,310, Cryptographic Issues,nan
CVE-2009-3466,19/09/2017 1:29,4/11/2009 15:30,9.3,399, Resource Management Errors,nan
CVE-2009-3465,19/09/2017 1:29,4/11/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3464,19/09/2017 1:29,4/11/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3463,19/09/2017 1:29,4/11/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3461,19/09/2017 1:29,19/10/2009 22:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3446,19/09/2017 1:29,28/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3431,19/09/2017 1:29,25/09/2009 23:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3430,19/09/2017 1:29,25/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3429,19/09/2017 1:29,25/09/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3428,19/09/2017 1:29,25/09/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3426,19/09/2017 1:29,25/09/2009 22:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3425,19/09/2017 1:29,25/09/2009 22:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3424,19/09/2017 1:29,25/09/2009 22:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3423,19/09/2017 1:29,25/09/2009 22:30,6.8,287, Improper Authentication,nan
CVE-2009-3422,19/09/2017 1:29,25/09/2009 22:30,6.8,287, Improper Authentication,nan
CVE-2009-3421,19/09/2017 1:29,25/09/2009 22:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3420,19/09/2017 1:29,25/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3419,19/09/2017 1:29,25/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3417,19/09/2017 1:29,25/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3389,19/09/2017 1:29,17/12/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-3388,19/09/2017 1:29,17/12/2009 17:30,9.3,399, Resource Management Errors,nan
CVE-2009-3385,19/09/2017 1:29,23/03/2010 0:53,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-3375,19/09/2017 1:29,29/10/2009 14:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3374,19/09/2017 1:29,29/10/2009 14:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3371,19/09/2017 1:29,29/10/2009 14:30,10.0,399, Resource Management Errors,nan
CVE-2009-3366,19/09/2017 1:29,24/09/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3365,19/09/2017 1:29,24/09/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3364,19/09/2017 1:29,24/09/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3361,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3358,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3356,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3349,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3348,19/09/2017 1:29,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3343,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3338,19/09/2017 1:29,24/09/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3336,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3335,19/09/2017 1:29,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3334,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3333,19/09/2017 1:29,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3332,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3331,19/09/2017 1:29,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3330,19/09/2017 1:29,23/09/2009 12:08,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3329,19/09/2017 1:29,23/09/2009 12:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3328,19/09/2017 1:29,23/09/2009 12:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3327,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3326,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3325,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3324,19/09/2017 1:29,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3323,19/09/2017 1:29,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3321,19/09/2017 1:29,23/09/2009 12:08,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3318,19/09/2017 1:29,23/09/2009 12:08,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3317,19/09/2017 1:29,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3316,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3315,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3314,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3313,19/09/2017 1:29,23/09/2009 12:08,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3312,19/09/2017 1:29,23/09/2009 12:08,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3310,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3309,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3308,19/09/2017 1:29,23/09/2009 12:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3307,19/09/2017 1:29,23/09/2009 12:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3302,19/09/2017 1:29,16/02/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3301,19/09/2017 1:29,16/02/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2009-3290,19/09/2017 1:29,22/09/2009 10:30,7.2,399, Resource Management Errors,nan
CVE-2009-3286,19/09/2017 1:29,22/09/2009 10:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3272,19/09/2017 1:29,21/09/2009 19:30,5.0,399, Resource Management Errors,nan
CVE-2009-3271,19/09/2017 1:29,21/09/2009 19:30,4.3,20, Improper Input Validation,nan
CVE-2009-3254,19/09/2017 1:29,18/09/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3253,19/09/2017 1:29,18/09/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3252,19/09/2017 1:29,18/09/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3250,19/09/2017 1:29,18/09/2009 20:30,9.0,20, Improper Input Validation,nan
CVE-2009-3249,19/09/2017 1:29,18/09/2009 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3248,19/09/2017 1:29,18/09/2009 20:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3247,19/09/2017 1:29,18/09/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3246,19/09/2017 1:29,18/09/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3245,19/09/2017 1:29,5/03/2010 19:30,10.0,20, Improper Input Validation,nan
CVE-2009-3244,19/09/2017 1:29,18/09/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3235,19/09/2017 1:29,17/09/2009 10:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3228,19/09/2017 1:29,19/10/2009 20:00,4.9,200, Information Exposure,nan
CVE-2009-3224,19/09/2017 1:29,16/09/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3223,19/09/2017 1:29,16/09/2009 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3219,19/09/2017 1:29,16/09/2009 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3218,19/09/2017 1:29,16/09/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3217,19/09/2017 1:29,16/09/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3216,19/09/2017 1:29,16/09/2009 19:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3201,19/09/2017 1:29,15/09/2009 23:30,4.3,189, Numeric Errors,nan
CVE-2009-3199,19/09/2017 1:29,15/09/2009 21:30,5.0,200, Information Exposure,nan
CVE-2009-3193,19/09/2017 1:29,15/09/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3191,19/09/2017 1:29,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3190,19/09/2017 1:29,15/09/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3188,19/09/2017 1:29,15/09/2009 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3185,19/09/2017 1:29,15/09/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3182,19/09/2017 1:29,11/09/2009 20:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3181,19/09/2017 1:29,11/09/2009 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3180,19/09/2017 1:29,11/09/2009 20:30,7.5,255, Credentials Management,nan
CVE-2009-3175,19/09/2017 1:29,11/09/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3174,19/09/2017 1:29,11/09/2009 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3171,19/09/2017 1:29,11/09/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3170,19/09/2017 1:29,11/09/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3168,19/09/2017 1:29,11/09/2009 20:30,6.5,287, Improper Authentication,nan
CVE-2009-3167,19/09/2017 1:29,11/09/2009 18:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3158,19/09/2017 1:29,10/09/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-3155,19/09/2017 1:29,10/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3154,19/09/2017 1:29,10/09/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3151,19/09/2017 1:29,10/09/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3150,19/09/2017 1:29,10/09/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3149,19/09/2017 1:29,10/09/2009 18:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3148,19/09/2017 1:29,10/09/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3117,19/09/2017 1:29,9/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3116,19/09/2017 1:29,9/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3115,19/09/2017 1:29,9/09/2009 22:30,5.0,20, Improper Input Validation,nan
CVE-2009-3084,19/09/2017 1:29,8/09/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2009-3083,19/09/2017 1:29,8/09/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3079,19/09/2017 1:29,10/09/2009 21:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3078,19/09/2017 1:29,10/09/2009 21:30,5.0,20, Improper Input Validation,nan
CVE-2009-3077,19/09/2017 1:29,10/09/2009 21:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3065,19/09/2017 1:29,3/09/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3064,19/09/2017 1:29,3/09/2009 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3063,19/09/2017 1:29,3/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3062,19/09/2017 1:29,3/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3058,19/09/2017 1:29,3/09/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3056,19/09/2017 1:29,3/09/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3055,19/09/2017 1:29,3/09/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3054,19/09/2017 1:29,3/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3053,19/09/2017 1:29,3/09/2009 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3052,19/09/2017 1:29,3/09/2009 17:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3048,19/09/2017 1:29,2/09/2009 17:30,4.3,20, Improper Input Validation,nan
CVE-2009-3046,19/09/2017 1:29,2/09/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3044,19/09/2017 1:29,2/09/2009 17:30,5.0,310, Cryptographic Issues,nan
CVE-2009-3026,19/09/2017 1:29,31/08/2009 20:30,5.0,310, Cryptographic Issues,nan
CVE-2009-3019,19/09/2017 1:29,31/08/2009 16:30,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3016,19/09/2017 1:29,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2972,19/09/2017 1:29,27/08/2009 17:30,7.8,399, Resource Management Errors,nan
CVE-2009-2964,19/09/2017 1:29,25/08/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2961,19/09/2017 1:29,25/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2958,19/09/2017 1:29,2/09/2009 15:30,4.3,399, Resource Management Errors,nan
CVE-2009-2957,19/09/2017 1:29,2/09/2009 15:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2950,19/09/2017 1:29,16/02/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2949,19/09/2017 1:29,16/02/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2009-2934,19/09/2017 1:29,21/08/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2929,19/09/2017 1:29,21/08/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2928,19/09/2017 1:29,21/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2927,19/09/2017 1:29,21/08/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2926,19/09/2017 1:29,21/08/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2925,19/09/2017 1:29,21/08/2009 11:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2924,19/09/2017 1:29,21/08/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2923,19/09/2017 1:29,21/08/2009 11:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2922,19/09/2017 1:29,21/08/2009 11:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2921,19/09/2017 1:29,21/08/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2920,19/09/2017 1:29,21/08/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2917,19/09/2017 1:29,21/08/2009 11:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2910,19/09/2017 1:29,20/10/2009 17:30,4.9,200, Information Exposure,nan
CVE-2009-2905,19/09/2017 1:29,29/09/2009 19:30,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2904,19/09/2017 1:29,1/10/2009 15:30,6.9,16, Configuration,nan
CVE-2009-2896,19/09/2017 1:29,20/08/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2895,19/09/2017 1:29,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2892,19/09/2017 1:29,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2883,19/09/2017 1:29,20/08/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2881,19/09/2017 1:29,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2857,19/09/2017 1:29,19/08/2009 17:30,4.9,399, Resource Management Errors,nan
CVE-2009-2855,19/09/2017 1:29,18/08/2009 21:00,5.0,20, Improper Input Validation,nan
CVE-2009-2852,19/09/2017 1:29,18/08/2009 21:00,6.8,20, Improper Input Validation,nan
CVE-2009-2837,19/09/2017 1:29,10/11/2009 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2820,19/09/2017 1:29,10/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2817,19/09/2017 1:29,24/09/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2816,19/09/2017 1:29,13/11/2009 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2792,19/09/2017 1:29,17/08/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2791,19/09/2017 1:29,17/08/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2788,19/09/2017 1:29,17/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2787,19/09/2017 1:29,17/08/2009 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2786,19/09/2017 1:29,17/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2784,19/09/2017 1:29,17/08/2009 16:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2782,19/09/2017 1:29,17/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2781,19/09/2017 1:29,17/08/2009 16:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2778,19/09/2017 1:29,14/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2777,19/09/2017 1:29,14/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2775,19/09/2017 1:29,14/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2774,19/09/2017 1:29,14/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2773,19/09/2017 1:29,14/08/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2770,19/09/2017 1:29,14/08/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2769,19/09/2017 1:29,14/08/2009 17:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2766,19/09/2017 1:29,14/08/2009 15:16,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2765,19/09/2017 1:29,14/08/2009 15:16,8.3,20, Improper Input Validation,nan
CVE-2009-2736,19/09/2017 1:29,11/08/2009 10:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2735,19/09/2017 1:29,11/08/2009 10:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2715,19/09/2017 1:29,7/08/2009 19:00,4.9,20, Improper Input Validation,nan
CVE-2009-2711,19/09/2017 1:29,7/08/2009 19:00,4.9,200, Information Exposure,nan
CVE-2009-2703,19/09/2017 1:29,8/09/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2697,19/09/2017 1:29,4/09/2009 20:30,6.8,287, Improper Authentication,nan
CVE-2009-2695,19/09/2017 1:29,28/08/2009 15:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2694,19/09/2017 1:29,21/08/2009 11:02,10.0,399, Resource Management Errors,nan
CVE-2009-2690,19/09/2017 1:29,10/08/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2689,19/09/2017 1:29,10/08/2009 18:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2682,19/09/2017 1:29,24/09/2009 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-2664,19/09/2017 1:29,4/08/2009 16:30,5.0,399, Resource Management Errors,nan
CVE-2009-2655,19/09/2017 1:29,3/08/2009 14:30,4.3,20, Improper Input Validation,nan
CVE-2009-2653,19/09/2017 1:29,3/08/2009 14:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2650,19/09/2017 1:29,30/07/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2644,19/09/2017 1:29,29/07/2009 17:30,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2642,19/09/2017 1:29,28/07/2009 19:30,7.5,287, Improper Authentication,nan
CVE-2009-2641,19/09/2017 1:29,28/07/2009 19:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2639,19/09/2017 1:29,28/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2638,19/09/2017 1:29,28/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2637,19/09/2017 1:29,28/07/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2635,19/09/2017 1:29,28/07/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2634,19/09/2017 1:29,28/07/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2633,19/09/2017 1:29,28/07/2009 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2632,19/09/2017 1:29,8/09/2009 23:30,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2620,19/09/2017 1:29,29/07/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-2618,19/09/2017 1:29,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2611,19/09/2017 1:29,27/07/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2609,19/09/2017 1:29,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2607,19/09/2017 1:29,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2606,19/09/2017 1:29,27/07/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2605,19/09/2017 1:29,27/07/2009 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2604,19/09/2017 1:29,27/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2603,19/09/2017 1:29,27/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2602,19/09/2017 1:29,27/07/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2601,19/09/2017 1:29,27/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2600,19/09/2017 1:29,27/07/2009 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2599,19/09/2017 1:29,27/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2594,19/09/2017 1:29,24/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2593,19/09/2017 1:29,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2592,19/09/2017 1:29,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2591,19/09/2017 1:29,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2585,19/09/2017 1:29,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2568,19/09/2017 1:29,22/07/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2567,19/09/2017 1:29,22/07/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2566,19/09/2017 1:29,21/07/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2559,19/09/2017 1:29,21/07/2009 17:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2558,19/09/2017 1:29,21/07/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2554,19/09/2017 1:29,20/07/2009 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2553,19/09/2017 1:29,20/07/2009 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2552,19/09/2017 1:29,20/07/2009 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2550,19/09/2017 1:29,20/07/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2544,19/09/2017 1:29,20/07/2009 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2487,19/09/2017 1:29,16/07/2009 16:30,7.8,399, Resource Management Errors,nan
CVE-2009-2485,19/09/2017 1:29,16/07/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2484,19/09/2017 1:29,16/07/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2477,19/09/2017 1:29,15/07/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2476,19/09/2017 1:29,10/08/2009 18:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2475,19/09/2017 1:29,10/08/2009 18:30,7.8,200, Information Exposure,nan
CVE-2009-2474,19/09/2017 1:29,21/08/2009 17:30,6.8,310, Cryptographic Issues,nan
CVE-2009-2473,19/09/2017 1:29,21/08/2009 17:30,4.3,399, Resource Management Errors,nan
CVE-2009-2472,19/09/2017 1:29,22/07/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2470,19/09/2017 1:29,4/08/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2009-2469,19/09/2017 1:29,22/07/2009 18:30,10.0,399, Resource Management Errors,nan
CVE-2009-2450,19/09/2017 1:29,13/07/2009 17:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2433,19/09/2017 1:29,10/07/2009 21:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2412,19/09/2017 1:29,6/08/2009 15:30,10.0,189, Numeric Errors,nan
CVE-2009-2411,19/09/2017 1:29,7/08/2009 19:30,8.5,189, Numeric Errors,nan
CVE-2009-2403,19/09/2017 1:29,9/07/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2402,19/09/2017 1:29,9/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2401,19/09/2017 1:29,9/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2400,19/09/2017 1:29,9/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2399,19/09/2017 1:29,9/07/2009 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2398,19/09/2017 1:29,9/07/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2397,19/09/2017 1:29,9/07/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2396,19/09/2017 1:29,9/07/2009 16:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2395,19/09/2017 1:29,9/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2394,19/09/2017 1:29,9/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2393,19/09/2017 1:29,9/07/2009 16:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2392,19/09/2017 1:29,9/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2391,19/09/2017 1:29,9/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2390,19/09/2017 1:29,9/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2389,19/09/2017 1:29,9/07/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2385,19/09/2017 1:29,8/07/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2384,19/09/2017 1:29,8/07/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2383,19/09/2017 1:29,8/07/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2382,19/09/2017 1:29,8/07/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2009-2379,19/09/2017 1:29,8/07/2009 15:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2378,19/09/2017 1:29,8/07/2009 15:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2366,19/09/2017 1:29,8/07/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2364,19/09/2017 1:29,8/07/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2363,19/09/2017 1:29,8/07/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2362,19/09/2017 1:29,8/07/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2341,19/09/2017 1:29,7/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2340,19/09/2017 1:29,7/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2339,19/09/2017 1:29,7/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2338,19/09/2017 1:29,7/07/2009 19:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2337,19/09/2017 1:29,7/07/2009 19:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2333,19/09/2017 1:29,5/07/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2332,19/09/2017 1:29,5/07/2009 16:30,5.0,200, Information Exposure,nan
CVE-2009-2331,19/09/2017 1:29,5/07/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2330,19/09/2017 1:29,5/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2329,19/09/2017 1:29,5/07/2009 16:30,5.0,200, Information Exposure,nan
CVE-2009-2328,19/09/2017 1:29,5/07/2009 16:30,7.5,287, Improper Authentication,nan
CVE-2009-2327,19/09/2017 1:29,5/07/2009 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2326,19/09/2017 1:29,5/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2325,19/09/2017 1:29,5/07/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2313,19/09/2017 1:29,2/07/2009 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2311,19/09/2017 1:29,2/07/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2310,19/09/2017 1:29,2/07/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2309,19/09/2017 1:29,2/07/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2308,19/09/2017 1:29,2/07/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2307,19/09/2017 1:29,2/07/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2306,19/09/2017 1:29,2/07/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2305,19/09/2017 1:29,2/07/2009 10:30,7.8,20, Improper Input Validation,nan
CVE-2009-2293,19/09/2017 1:29,1/07/2009 13:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2277,19/09/2017 1:29,1/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2276,19/09/2017 1:29,1/07/2009 13:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2275,19/09/2017 1:29,1/07/2009 13:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2263,19/09/2017 1:29,30/06/2009 10:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2261,19/09/2017 1:29,30/06/2009 10:30,9.3,20, Improper Input Validation,nan
CVE-2009-2255,19/09/2017 1:29,30/06/2009 10:30,6.8,287, Improper Authentication,nan
CVE-2009-2254,19/09/2017 1:29,30/06/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2242,19/09/2017 1:29,27/06/2009 18:48,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2241,19/09/2017 1:29,27/06/2009 18:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2239,19/09/2017 1:29,27/06/2009 18:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2236,19/09/2017 1:29,27/06/2009 18:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2235,19/09/2017 1:29,27/06/2009 18:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2234,19/09/2017 1:29,27/06/2009 18:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2233,19/09/2017 1:29,26/06/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-2231,19/09/2017 1:29,26/06/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-2230,19/09/2017 1:29,26/06/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2229,19/09/2017 1:29,26/06/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2228,19/09/2017 1:29,26/06/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2227,19/09/2017 1:29,26/06/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2224,19/09/2017 1:29,26/06/2009 15:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2223,19/09/2017 1:29,26/06/2009 15:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2220,19/09/2017 1:29,26/06/2009 15:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2219,19/09/2017 1:29,25/06/2009 23:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2218,19/09/2017 1:29,25/06/2009 23:14,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1002022,18/09/2017 18:09,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002021,18/09/2017 18:09,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002019,18/09/2017 18:08,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1002018,18/09/2017 18:07,14/09/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0732,18/09/2017 18:01,7/09/2017 13:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-14310,18/09/2017 17:44,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11567,18/09/2017 17:43,7/09/2017 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10405,18/09/2017 17:25,7/09/2017 13:29,7.5,384, Session Fixation,nan
CVE-2017-9458,18/09/2017 17:09,7/09/2017 13:29,7.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-9834,18/09/2017 17:01,7/09/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1189,18/09/2017 16:57,7/09/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4085,18/09/2017 16:54,7/09/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14240,18/09/2017 16:35,11/09/2017 9:29,5.0,200, Information Exposure,nan
CVE-2017-14242,18/09/2017 16:34,11/09/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14241,18/09/2017 16:34,11/09/2017 9:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14238,18/09/2017 16:30,11/09/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14252,18/09/2017 16:29,11/09/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14247,18/09/2017 16:29,11/09/2017 9:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8757,18/09/2017 16:18,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9226,18/09/2017 16:17,11/09/2017 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8750,18/09/2017 16:12,13/09/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14273,18/09/2017 15:21,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9227,18/09/2017 15:21,11/09/2017 20:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-14272,18/09/2017 15:20,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14271,18/09/2017 15:20,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14270,18/09/2017 15:20,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3177,18/09/2017 15:12,8/09/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-14412,18/09/2017 15:05,13/09/2017 3:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14274,18/09/2017 15:03,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14403,18/09/2017 14:53,13/09/2017 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14402,18/09/2017 14:53,13/09/2017 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14404,18/09/2017 14:52,13/09/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-14401,18/09/2017 14:52,13/09/2017 3:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2550,18/09/2017 14:33,8/09/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-14411,18/09/2017 14:06,13/09/2017 3:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14407,18/09/2017 14:04,13/09/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14408,18/09/2017 13:57,13/09/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14409,18/09/2017 13:45,13/09/2017 3:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-14410,18/09/2017 13:44,13/09/2017 3:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-14265,18/09/2017 13:42,11/09/2017 9:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14406,18/09/2017 13:41,13/09/2017 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-1535,17/09/2017 1:29,29/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6568,17/09/2017 1:29,14/04/2017 16:59,6.5,20, Improper Input Validation,nan
CVE-2015-6567,17/09/2017 1:29,14/04/2017 16:59,6.5,20, Improper Input Validation,nan
CVE-2015-5707,17/09/2017 1:29,19/10/2015 10:59,4.6,189, Numeric Errors,nan
CVE-2015-5272,17/09/2017 1:29,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5269,17/09/2017 1:29,22/02/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5268,17/09/2017 1:29,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5267,17/09/2017 1:29,22/02/2016 5:59,5.0,254, 7PK – Security Features,nan
CVE-2015-5266,17/09/2017 1:29,22/02/2016 5:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-5265,17/09/2017 1:29,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5264,17/09/2017 1:29,22/02/2016 5:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3290,17/09/2017 1:29,31/08/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3093,17/09/2017 1:29,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3089,17/09/2017 1:29,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3088,17/09/2017 1:29,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3087,17/09/2017 1:29,13/05/2015 11:00,10.0,189, Numeric Errors,nan
CVE-2015-3083,17/09/2017 1:29,13/05/2015 11:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-3082,17/09/2017 1:29,13/05/2015 11:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-3081,17/09/2017 1:29,13/05/2015 11:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0816,17/09/2017 1:29,1/04/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0787,17/09/2017 1:29,12/04/2014 4:37,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0946,17/09/2017 1:29,10/05/2013 11:42,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9765,16/09/2017 10:25,20/07/2017 0:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-14347,16/09/2017 10:02,12/09/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1162,16/09/2017 10:02,12/09/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-6316,16/09/2017 1:29,20/07/2017 4:29,10.0,20, Improper Input Validation,nan
CVE-2017-5177,16/09/2017 1:29,19/05/2017 3:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8377,16/09/2017 1:29,13/02/2017 21:59,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7901,16/09/2017 1:29,28/10/2015 10:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6009,16/09/2017 1:29,28/09/2015 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6008,16/09/2017 1:29,28/09/2015 2:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-5261,16/09/2017 1:29,7/06/2016 14:06,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5260,16/09/2017 1:29,7/06/2016 14:06,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3864,16/09/2017 1:29,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-3796,16/09/2017 1:29,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9208,16/09/2017 1:29,11/09/2015 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4406,16/09/2017 1:29,19/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3805,16/09/2017 1:29,13/06/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3804,16/09/2017 1:29,13/06/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0780,16/09/2017 1:29,25/04/2014 5:12,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6810,16/09/2017 1:29,12/12/2013 17:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1034,16/09/2017 1:29,19/09/2013 10:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3487,16/09/2017 1:29,16/09/2011 14:28,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1520,15/09/2017 19:05,12/09/2017 21:29,4.3,287, Improper Authentication,nan
CVE-2017-0793,15/09/2017 18:20,8/09/2017 20:29,7.1,200, Information Exposure,nan
CVE-2017-1519,15/09/2017 17:45,12/09/2017 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-0779,15/09/2017 16:30,8/09/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-14267,15/09/2017 15:04,11/09/2017 9:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14269,15/09/2017 15:03,11/09/2017 9:29,5.0,200, Information Exposure,nan
CVE-2017-14268,15/09/2017 15:03,11/09/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0776,15/09/2017 12:55,8/09/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-0777,15/09/2017 12:54,8/09/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-7735,15/09/2017 12:50,12/09/2017 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7734,15/09/2017 12:49,12/09/2017 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3131,15/09/2017 12:46,12/09/2017 2:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8009,15/09/2017 1:29,25/07/2017 14:29,5.0,255, Credentials Management,nan
CVE-2015-7836,15/09/2017 1:29,28/10/2015 10:59,3.3,200, Information Exposure,nan
CVE-2015-7830,15/09/2017 1:29,15/11/2015 3:59,4.3,20, Improper Input Validation,nan
CVE-2015-6018,15/09/2017 1:29,31/12/2015 5:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-10850,14/09/2017 18:19,1/09/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2015-8079,14/09/2017 18:08,7/09/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-14098,14/09/2017 18:06,2/09/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2013-7428,14/09/2017 18:04,7/09/2017 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-11611,14/09/2017 13:57,8/09/2017 10:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3133,14/09/2017 13:53,12/09/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3132,14/09/2017 13:53,12/09/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14181,14/09/2017 13:46,7/09/2017 16:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-1098,14/09/2017 13:26,7/09/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4629,14/09/2017 12:39,7/09/2017 20:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-12943,14/09/2017 1:29,18/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8317,14/09/2017 1:29,15/12/2015 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8241,14/09/2017 1:29,15/12/2015 21:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7941,14/09/2017 1:29,18/11/2015 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7498,14/09/2017 1:29,15/12/2015 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7497,14/09/2017 1:29,15/12/2015 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7413,14/09/2017 1:29,21/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6786,14/09/2017 1:29,6/12/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6785,14/09/2017 1:29,6/12/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6784,14/09/2017 1:29,6/12/2015 1:59,4.3,20, Improper Input Validation,nan
CVE-2015-6783,14/09/2017 1:29,6/12/2015 1:59,4.3,20, Improper Input Validation,nan
CVE-2015-6782,14/09/2017 1:29,6/12/2015 1:59,4.3,20, Improper Input Validation,nan
CVE-2015-6781,14/09/2017 1:29,6/12/2015 1:59,7.5,189, Numeric Errors,nan
CVE-2015-6779,14/09/2017 1:29,6/12/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6778,14/09/2017 1:29,6/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6776,14/09/2017 1:29,6/12/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6773,14/09/2017 1:29,6/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6772,14/09/2017 1:29,6/12/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6771,14/09/2017 1:29,6/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6770,14/09/2017 1:29,6/12/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6769,14/09/2017 1:29,6/12/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6768,14/09/2017 1:29,6/12/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6764,14/09/2017 1:29,6/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6394,14/09/2017 1:29,5/12/2015 3:59,4.9,399, Resource Management Errors,nan
CVE-2015-6391,14/09/2017 1:29,5/12/2015 3:59,7.8,399, Resource Management Errors,nan
CVE-2015-6390,14/09/2017 1:29,3/12/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6387,14/09/2017 1:29,5/12/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6386,14/09/2017 1:29,1/12/2015 11:59,5.0,399, Resource Management Errors,nan
CVE-2015-6385,14/09/2017 1:29,1/12/2015 11:59,7.2,20, Improper Input Validation,nan
CVE-2015-6383,14/09/2017 1:29,3/12/2015 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6382,14/09/2017 1:29,26/11/2015 3:59,5.0,399, Resource Management Errors,nan
CVE-2015-6379,14/09/2017 1:29,25/11/2015 4:59,6.8,399, Resource Management Errors,nan
CVE-2015-5001,14/09/2017 1:29,21/12/2015 11:59,6.8,399, Resource Management Errors,nan
CVE-2015-4998,14/09/2017 1:29,21/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4993,14/09/2017 1:29,21/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1794,14/09/2017 1:29,6/12/2015 20:59,5.0,189, Numeric Errors,nan
CVE-2013-5229,14/09/2017 1:29,14/11/2015 3:59,3.7,254, 7PK – Security Features,nan
CVE-2015-1590,13/09/2017 18:03,7/09/2017 14:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-4619,13/09/2017 17:53,7/09/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14306,13/09/2017 17:49,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5060,13/09/2017 17:49,7/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4724,13/09/2017 17:47,7/09/2017 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6362,13/09/2017 17:46,7/09/2017 13:29,5.0,415, Double Free,nan
CVE-2017-14309,13/09/2017 17:43,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14308,13/09/2017 17:43,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14307,13/09/2017 17:43,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14305,13/09/2017 17:42,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14304,13/09/2017 17:42,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14303,13/09/2017 17:42,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14302,13/09/2017 17:42,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14301,13/09/2017 17:42,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14300,13/09/2017 17:39,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14299,13/09/2017 17:39,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14298,13/09/2017 17:37,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14297,13/09/2017 17:37,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14296,13/09/2017 17:35,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14294,13/09/2017 17:24,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14293,13/09/2017 17:24,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14292,13/09/2017 17:22,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14291,13/09/2017 17:21,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14290,13/09/2017 17:19,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14289,13/09/2017 17:19,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14288,13/09/2017 17:18,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14287,13/09/2017 17:17,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14286,13/09/2017 17:17,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14285,13/09/2017 14:34,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14275,13/09/2017 14:34,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14284,13/09/2017 14:33,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14283,13/09/2017 14:33,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14282,13/09/2017 14:33,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14281,13/09/2017 14:30,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14280,13/09/2017 14:26,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14279,13/09/2017 14:26,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14278,13/09/2017 14:25,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12906,13/09/2017 14:23,7/09/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14277,13/09/2017 14:21,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14276,13/09/2017 14:20,11/09/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12838,13/09/2017 14:20,7/09/2017 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-14105,13/09/2017 13:46,1/09/2017 17:29,7.2,20, Improper Input Validation,nan
CVE-2017-10793,13/09/2017 13:27,3/09/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-14116,13/09/2017 13:25,3/09/2017 19:29,9.3,798, Use of Hard-coded Credentials,nan
CVE-2017-14117,13/09/2017 13:24,3/09/2017 19:29,4.3,287, Improper Authentication,nan
CVE-2015-3222,13/09/2017 13:15,7/09/2017 20:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2017-14123,13/09/2017 11:33,4/09/2017 20:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-2779,13/09/2017 11:27,5/09/2017 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2015-6250,13/09/2017 11:21,6/09/2017 21:29,5.0,200, Information Exposure,nan
CVE-2015-5705,13/09/2017 11:21,6/09/2017 21:29,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5186,13/09/2017 11:17,6/09/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-12939,13/09/2017 1:29,18/08/2017 13:29,7.5,20, Improper Input Validation,nan
CVE-2017-12857,13/09/2017 1:29,25/08/2017 19:29,4.0,200, Information Exposure,nan
CVE-2015-7858,13/09/2017 1:29,29/10/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7857,13/09/2017 1:29,29/10/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7833,13/09/2017 1:29,19/10/2015 10:59,4.9,17, DEPRECATED: Code,nan
CVE-2015-7622,13/09/2017 1:29,14/10/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7297,13/09/2017 1:29,29/10/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7252,13/09/2017 1:29,30/12/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7251,13/09/2017 1:29,30/12/2015 5:59,10.0,255, Credentials Management,nan
CVE-2015-7250,13/09/2017 1:29,30/12/2015 5:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7249,13/09/2017 1:29,30/12/2015 5:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-7248,13/09/2017 1:29,30/12/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-7110,13/09/2017 1:29,11/12/2015 12:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7109,13/09/2017 1:29,11/12/2015 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7108,13/09/2017 1:29,11/12/2015 12:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7107,13/09/2017 1:29,11/12/2015 12:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7106,13/09/2017 1:29,11/12/2015 12:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7094,13/09/2017 1:29,11/12/2015 11:59,2.6,20, Improper Input Validation,nan
CVE-2015-7077,13/09/2017 1:29,11/12/2015 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7071,13/09/2017 1:29,11/12/2015 11:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7063,13/09/2017 1:29,11/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7062,13/09/2017 1:29,11/12/2015 11:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7052,13/09/2017 1:29,11/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7044,13/09/2017 1:29,11/12/2015 11:59,7.6,254, 7PK – Security Features,nan
CVE-2015-6858,13/09/2017 1:29,5/01/2016 11:59,4.3,200, Information Exposure,nan
CVE-2015-6402,13/09/2017 1:29,14/12/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6401,13/09/2017 1:29,14/12/2015 3:59,7.5,287, Improper Authentication,nan
CVE-2015-6395,13/09/2017 1:29,12/12/2015 11:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6378,13/09/2017 1:29,14/12/2015 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2023,13/09/2017 1:29,2/01/2016 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6025,13/09/2017 1:29,19/10/2013 10:36,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1147,13/09/2017 1:29,3/07/2012 19:55,4.3,20, Improper Input Validation,nan
CVE-2017-0792,12/09/2017 22:20,8/09/2017 20:29,3.3,200, Information Exposure,nan
CVE-2017-9945,12/09/2017 20:57,30/08/2017 19:29,6.1,20, Improper Input Validation,nan
CVE-2015-5695,12/09/2017 18:55,31/08/2017 22:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-14165,12/09/2017 18:45,6/09/2017 18:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5052,12/09/2017 16:01,7/09/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4627,12/09/2017 15:58,7/09/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7255,12/09/2017 15:56,29/08/2017 15:29,5.0,200, Information Exposure,nan
CVE-2017-14135,12/09/2017 15:55,4/09/2017 23:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-3757,12/09/2017 15:49,29/08/2017 1:35,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-13774,12/09/2017 15:48,30/08/2017 9:29,2.1,200, Information Exposure,nan
CVE-2015-3169,12/09/2017 15:38,7/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5701,12/09/2017 15:37,25/08/2017 18:29,5.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-0974,12/09/2017 15:37,28/08/2017 15:29,7.2,426, Untrusted Search Path,nan
CVE-2014-9565,12/09/2017 15:28,7/09/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0234,12/09/2017 15:23,29/08/2017 1:35,5.0,20, Improper Input Validation,nan
CVE-2017-11455,12/09/2017 13:59,29/08/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4462,12/09/2017 13:56,30/08/2017 17:29,6.5,20, Improper Input Validation,nan
CVE-2017-14194,12/09/2017 13:55,7/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14193,12/09/2017 13:55,7/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14192,12/09/2017 13:55,7/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14195,12/09/2017 13:54,7/09/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12879,12/09/2017 1:29,24/08/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3086,11/09/2017 18:25,5/09/2017 13:29,5.0,200, Information Exposure,nan
CVE-2014-6438,11/09/2017 18:25,6/09/2017 21:29,5.0,399, Resource Management Errors,nan
CVE-2015-0853,11/09/2017 17:23,6/09/2017 21:29,9.3,20, Improper Input Validation,nan
CVE-2015-4721,11/09/2017 17:21,7/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12912,11/09/2017 17:06,7/09/2017 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12911,11/09/2017 17:02,7/09/2017 14:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4697,11/09/2017 14:25,7/09/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3314,11/09/2017 13:57,7/09/2017 20:29,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3313,11/09/2017 13:55,7/09/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7294,11/09/2017 13:44,6/09/2017 21:29,5.0,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2017-12416,11/09/2017 12:47,7/09/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3450,10/09/2017 11:20,6/09/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3161,10/09/2017 11:16,6/09/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1948,10/09/2017 1:29,31/01/2016 18:59,4.3,310, Cryptographic Issues,nan
CVE-2016-1941,10/09/2017 1:29,31/01/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1940,10/09/2017 1:29,31/01/2016 18:59,5.0,17, DEPRECATED: Code,nan
CVE-2016-1915,10/09/2017 1:29,13/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1914,10/09/2017 1:29,13/04/2017 14:59,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1718,10/09/2017 1:29,1/02/2016 11:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1716,10/09/2017 1:29,1/02/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1504,10/09/2017 1:29,7/02/2017 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1503,10/09/2017 1:29,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1284,10/09/2017 1:29,4/02/2016 11:59,2.6,20, Improper Input Validation,nan
CVE-2016-0971,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0967,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0965,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0964,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0953,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0952,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0951,10/09/2017 1:29,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0861,10/09/2017 1:29,5/02/2016 11:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0725,10/09/2017 1:29,22/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0724,10/09/2017 1:29,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8660,10/09/2017 1:29,28/12/2015 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-8636,10/09/2017 1:29,28/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8617,10/09/2017 1:29,19/01/2016 5:59,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2015-8261,10/09/2017 1:29,8/01/2016 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7768,10/09/2017 1:29,9/10/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5677,10/09/2017 1:29,7/02/2017 15:59,2.1,200, Information Exposure,nan
CVE-2015-0569,10/09/2017 1:29,9/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3163,9/09/2017 20:41,6/09/2017 21:29,4.0,284, Improper Access Control,nan
CVE-2015-3160,9/09/2017 20:41,6/09/2017 21:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-5948,9/09/2017 11:30,6/09/2017 21:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1489,9/09/2017 11:20,29/08/2017 1:35,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-9150,9/09/2017 1:29,22/05/2017 22:29,2.1,200, Information Exposure,nan
CVE-2017-7495,9/09/2017 1:29,15/05/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-6983,9/09/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9238,9/09/2017 1:29,3/12/2014 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2993,9/09/2017 1:29,26/04/2014 1:55,6.4,310, Cryptographic Issues,nan
CVE-2017-13715,8/09/2017 20:55,29/08/2017 1:35,10.0,20, Improper Input Validation,nan
CVE-2015-2943,8/09/2017 20:45,6/09/2017 21:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2870,8/09/2017 20:40,5/09/2017 18:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-14127,8/09/2017 20:33,4/09/2017 20:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-12840,8/09/2017 16:11,28/08/2017 19:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1401,8/09/2017 15:56,28/08/2017 15:29,7.5,287, Improper Authentication,nan
CVE-2015-0101,8/09/2017 14:13,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0233,8/09/2017 11:56,28/08/2017 19:29,4.6,254, 7PK – Security Features,nan
CVE-2017-9979,8/09/2017 2:28,28/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9978,8/09/2017 2:28,28/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2016-5795,8/09/2017 2:26,31/08/2017 21:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-8332,8/09/2017 2:25,28/08/2017 21:29,6.5,287, Improper Authentication,nan
CVE-2014-9513,8/09/2017 2:22,28/08/2017 15:29,7.5,284, Improper Access Control,nan
CVE-2014-3672,8/09/2017 2:10,25/05/2016 15:59,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2014-8439,8/09/2017 2:09,25/11/2014 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4853,8/09/2017 2:08,2/09/2016 1:59,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-14126,8/09/2017 1:29,4/09/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11356,8/09/2017 1:29,2/08/2017 19:29,4.0,200, Information Exposure,nan
CVE-2017-11355,8/09/2017 1:29,2/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2555,8/09/2017 1:29,13/04/2017 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2539,8/09/2017 1:29,7/02/2017 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2532,8/09/2017 1:29,28/02/2016 4:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2531,8/09/2017 1:29,28/02/2016 4:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2530,8/09/2017 1:29,28/02/2016 4:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2529,8/09/2017 1:29,28/02/2016 4:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2528,8/09/2017 1:29,28/02/2016 4:59,4.3,20, Improper Input Validation,nan
CVE-2016-2527,8/09/2017 1:29,28/02/2016 4:59,4.3,20, Improper Input Validation,nan
CVE-2016-2526,8/09/2017 1:29,28/02/2016 4:59,4.3,20, Improper Input Validation,nan
CVE-2016-2525,8/09/2017 1:29,28/02/2016 4:59,4.3,20, Improper Input Validation,nan
CVE-2016-2524,8/09/2017 1:29,28/02/2016 4:59,4.3,20, Improper Input Validation,nan
CVE-2016-2523,8/09/2017 1:29,28/02/2016 4:59,7.1,399, Resource Management Errors,nan
CVE-2016-2522,8/09/2017 1:29,28/02/2016 4:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2521,8/09/2017 1:29,28/02/2016 4:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2513,8/09/2017 1:29,8/04/2016 15:59,2.6,200, Information Exposure,nan
CVE-2016-2512,8/09/2017 1:29,8/04/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2417,8/09/2017 1:29,18/04/2016 0:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2288,8/09/2017 1:29,29/03/2016 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1769,8/09/2017 1:29,24/03/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1768,8/09/2017 1:29,24/03/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1749,8/09/2017 1:29,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1744,8/09/2017 1:29,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1743,8/09/2017 1:29,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1741,8/09/2017 1:29,24/03/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1531,8/09/2017 1:29,7/04/2016 23:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-1002,8/09/2017 1:29,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1001,8/09/2017 1:29,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0954,8/09/2017 1:29,9/03/2016 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0846,8/09/2017 1:29,18/04/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7490,8/09/2017 1:29,3/03/2016 22:59,3.5,284, Improper Access Control,nan
CVE-2015-7450,8/09/2017 1:29,2/01/2016 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3392,8/09/2017 1:29,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3390,8/09/2017 1:29,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3389,8/09/2017 1:29,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2040,8/09/2017 1:29,20/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2039,8/09/2017 1:29,20/02/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1589,8/09/2017 1:29,23/02/2015 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1568,8/09/2017 1:29,9/02/2015 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1567,8/09/2017 1:29,9/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1559,8/09/2017 1:29,10/02/2015 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1513,8/09/2017 1:29,6/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1512,8/09/2017 1:29,6/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1499,8/09/2017 1:29,16/02/2015 15:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1475,8/09/2017 1:29,4/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1459,8/09/2017 1:29,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1458,8/09/2017 1:29,3/02/2015 16:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-1457,8/09/2017 1:29,3/02/2015 16:59,4.9,200, Information Exposure,nan
CVE-2015-1432,8/09/2017 1:29,10/02/2015 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1431,8/09/2017 1:29,10/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1424,8/09/2017 1:29,29/01/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1423,8/09/2017 1:29,29/01/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1422,8/09/2017 1:29,29/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1305,8/09/2017 1:29,6/02/2015 15:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-1211,8/09/2017 1:29,6/02/2015 11:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1210,8/09/2017 1:29,6/02/2015 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1200,8/09/2017 1:29,23/01/2015 15:59,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1059,8/09/2017 1:29,16/01/2015 15:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1058,8/09/2017 1:29,16/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1057,8/09/2017 1:29,16/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1054,8/09/2017 1:29,16/01/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1053,8/09/2017 1:29,16/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1043,8/09/2017 1:29,29/01/2015 18:59,3.3,20, Improper Input Validation,nan
CVE-2015-1041,8/09/2017 1:29,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1038,8/09/2017 1:29,21/01/2015 18:59,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-0922,8/09/2017 1:29,9/01/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-0920,8/09/2017 1:29,8/01/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0621,8/09/2017 1:29,18/02/2015 2:59,7.8,19, Data Processing Errors,nan
CVE-2015-0620,8/09/2017 1:29,18/02/2015 2:59,4.0,20, Improper Input Validation,nan
CVE-2015-0619,8/09/2017 1:29,12/02/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-0617,8/09/2017 1:29,18/02/2015 2:59,5.0,399, Resource Management Errors,nan
CVE-2015-0611,8/09/2017 1:29,12/02/2015 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0610,8/09/2017 1:29,12/02/2015 1:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0609,8/09/2017 1:29,16/02/2015 0:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0608,8/09/2017 1:29,12/02/2015 1:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0606,8/09/2017 1:29,12/02/2015 1:59,4.9,20, Improper Input Validation,nan
CVE-2015-0604,8/09/2017 1:29,7/02/2015 4:59,5.0,20, Improper Input Validation,nan
CVE-2015-0603,8/09/2017 1:29,7/02/2015 4:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-0602,8/09/2017 1:29,7/02/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-0601,8/09/2017 1:29,7/02/2015 4:59,4.6,20, Improper Input Validation,nan
CVE-2015-0600,8/09/2017 1:29,7/02/2015 15:59,5.0,20, Improper Input Validation,nan
CVE-2015-0599,8/09/2017 1:29,3/02/2015 22:59,4.3,254, 7PK – Security Features,nan
CVE-2015-0597,8/09/2017 1:29,2/02/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-0596,8/09/2017 1:29,2/02/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0595,8/09/2017 1:29,2/02/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-0593,8/09/2017 1:29,13/02/2015 2:59,7.1,399, Resource Management Errors,nan
CVE-2015-0592,8/09/2017 1:29,12/02/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-0591,8/09/2017 1:29,15/01/2015 22:59,5.0,399, Resource Management Errors,nan
CVE-2015-0590,8/09/2017 1:29,17/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-0589,8/09/2017 1:29,7/02/2015 15:59,9.0,20, Improper Input Validation,nan
CVE-2015-0588,8/09/2017 1:29,15/01/2015 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0586,8/09/2017 1:29,28/01/2015 22:59,7.8,399, Resource Management Errors,nan
CVE-2015-0583,8/09/2017 1:29,14/01/2015 19:59,5.0,200, Information Exposure,nan
CVE-2015-0582,8/09/2017 1:29,10/01/2015 2:59,5.0,20, Improper Input Validation,nan
CVE-2015-0580,8/09/2017 1:29,12/02/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0578,8/09/2017 1:29,14/01/2015 19:59,5.7,399, Resource Management Errors,nan
CVE-2015-0577,8/09/2017 1:29,14/01/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0519,8/09/2017 1:29,14/02/2015 15:59,2.1,200, Information Exposure,nan
CVE-2015-0518,8/09/2017 1:29,14/02/2015 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0517,8/09/2017 1:29,14/02/2015 15:59,4.0,200, Information Exposure,nan
CVE-2015-0327,8/09/2017 1:29,6/02/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0324,8/09/2017 1:29,6/02/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0323,8/09/2017 1:29,6/02/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0309,8/09/2017 1:29,13/01/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0307,8/09/2017 1:29,13/01/2015 23:59,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0304,8/09/2017 1:29,13/01/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0301,8/09/2017 1:29,13/01/2015 23:59,10.0,20, Improper Input Validation,nan
CVE-2015-0260,8/09/2017 1:29,16/02/2015 15:59,4.0,200, Information Exposure,nan
CVE-2015-0167,8/09/2017 1:29,20/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0109,8/09/2017 1:29,18/02/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0108,8/09/2017 1:29,18/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9599,8/09/2017 1:29,16/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9580,8/09/2017 1:29,8/01/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9574,8/09/2017 1:29,3/02/2015 16:59,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9573,8/09/2017 1:29,26/01/2015 15:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9572,8/09/2017 1:29,26/01/2015 15:59,7.5,284, Improper Access Control,nan
CVE-2014-9571,8/09/2017 1:29,26/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9567,8/09/2017 1:29,7/01/2015 18:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9528,8/09/2017 1:29,6/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9525,8/09/2017 1:29,5/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9505,8/09/2017 1:29,9/01/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9499,8/09/2017 1:29,9/01/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9483,8/09/2017 1:29,28/08/2017 15:29,5.0,200, Information Exposure,nan
CVE-2014-9460,8/09/2017 1:29,2/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9454,8/09/2017 1:29,2/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9453,8/09/2017 1:29,2/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9452,8/09/2017 1:29,2/01/2015 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9451,8/09/2017 1:29,2/01/2015 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9445,8/09/2017 1:29,2/01/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9441,8/09/2017 1:29,2/01/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9440,8/09/2017 1:29,2/01/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9439,8/09/2017 1:29,2/01/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9438,8/09/2017 1:29,2/01/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9437,8/09/2017 1:29,2/01/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9436,8/09/2017 1:29,2/01/2015 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9431,8/09/2017 1:29,31/12/2014 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9430,8/09/2017 1:29,31/12/2014 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9429,8/09/2017 1:29,31/12/2014 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9413,8/09/2017 1:29,24/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9401,8/09/2017 1:29,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9400,8/09/2017 1:29,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9397,8/09/2017 1:29,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9396,8/09/2017 1:29,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9394,8/09/2017 1:29,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9393,8/09/2017 1:29,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9350,8/09/2017 1:29,8/12/2014 16:59,5.0,19, Data Processing Errors,nan
CVE-2014-9349,8/09/2017 1:29,8/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9348,8/09/2017 1:29,8/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9347,8/09/2017 1:29,8/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9344,8/09/2017 1:29,8/12/2014 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9335,8/09/2017 1:29,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9334,8/09/2017 1:29,24/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9281,8/09/2017 1:29,9/12/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9280,8/09/2017 1:29,8/12/2014 16:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9279,8/09/2017 1:29,8/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-9278,8/09/2017 1:29,6/12/2014 15:59,4.0,287, Improper Authentication,nan
CVE-2014-9270,8/09/2017 1:29,8/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9253,8/09/2017 1:29,17/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9219,8/09/2017 1:29,8/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9218,8/09/2017 1:29,8/12/2014 11:59,5.0,399, Resource Management Errors,nan
CVE-2014-9217,8/09/2017 1:29,8/12/2014 11:59,5.0,287, Improper Authentication,nan
CVE-2014-9177,8/09/2017 1:29,2/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-9176,8/09/2017 1:29,2/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9175,8/09/2017 1:29,2/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9174,8/09/2017 1:29,2/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9173,8/09/2017 1:29,2/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9157,8/09/2017 1:29,3/12/2014 21:59,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2014-9135,8/09/2017 1:29,19/12/2014 15:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9119,8/09/2017 1:29,31/12/2014 22:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9117,8/09/2017 1:29,6/12/2014 21:59,5.0,284, Improper Access Control,nan
CVE-2014-9112,8/09/2017 1:29,2/12/2014 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9027,8/09/2017 1:29,20/11/2014 17:50,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9018,8/09/2017 1:29,3/12/2014 18:59,5.0,200, Information Exposure,nan
CVE-2014-9006,8/09/2017 1:29,20/11/2014 13:55,5.0,255, Credentials Management,nan
CVE-2014-9005,8/09/2017 1:29,20/11/2014 13:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9004,8/09/2017 1:29,20/11/2014 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9003,8/09/2017 1:29,20/11/2014 13:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9002,8/09/2017 1:29,20/11/2014 13:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8998,8/09/2017 1:29,20/11/2014 13:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8997,8/09/2017 1:29,20/11/2014 13:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8996,8/09/2017 1:29,20/11/2014 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8995,8/09/2017 1:29,20/11/2014 13:55,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8994,8/09/2017 1:29,28/11/2014 15:59,3.6,18, DEPRECATED: Source Code,nan
CVE-2014-8988,8/09/2017 1:29,24/11/2014 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8955,8/09/2017 1:29,17/11/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8953,8/09/2017 1:29,17/11/2014 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8920,8/09/2017 1:29,28/01/2015 22:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8918,8/09/2017 1:29,2/02/2015 1:59,5.8,310, Cryptographic Issues,nan
CVE-2014-8917,8/09/2017 1:29,28/01/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8914,8/09/2017 1:29,21/01/2015 15:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8913,8/09/2017 1:29,21/01/2015 15:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8911,8/09/2017 1:29,14/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8909,8/09/2017 1:29,13/02/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8904,8/09/2017 1:29,15/01/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-8902,8/09/2017 1:29,19/12/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8899,8/09/2017 1:29,22/12/2014 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8898,8/09/2017 1:29,22/12/2014 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8897,8/09/2017 1:29,22/12/2014 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8896,8/09/2017 1:29,22/12/2014 16:59,4.0,287, Improper Authentication,nan
CVE-2014-8895,8/09/2017 1:29,29/01/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-8893,8/09/2017 1:29,29/01/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8890,8/09/2017 1:29,18/12/2014 16:59,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-8840,8/09/2017 1:29,30/01/2015 11:59,6.8,310, Cryptographic Issues,nan
CVE-2014-8839,8/09/2017 1:29,30/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-8838,8/09/2017 1:29,30/01/2015 11:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-8836,8/09/2017 1:29,30/01/2015 11:59,10.0,20, Improper Input Validation,nan
CVE-2014-8835,8/09/2017 1:29,30/01/2015 11:59,9.3,19, Data Processing Errors,nan
CVE-2014-8834,8/09/2017 1:29,30/01/2015 11:59,2.1,200, Information Exposure,nan
CVE-2014-8833,8/09/2017 1:29,30/01/2015 11:59,2.1,284, Improper Access Control,nan
CVE-2014-8832,8/09/2017 1:29,30/01/2015 11:59,4.9,200, Information Exposure,nan
CVE-2014-8831,8/09/2017 1:29,30/01/2015 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8830,8/09/2017 1:29,30/01/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8829,8/09/2017 1:29,30/01/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8828,8/09/2017 1:29,30/01/2015 11:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8827,8/09/2017 1:29,30/01/2015 11:59,2.1,284, Improper Access Control,nan
CVE-2014-8825,8/09/2017 1:29,30/01/2015 11:59,7.2,20, Improper Input Validation,nan
CVE-2014-8824,8/09/2017 1:29,30/01/2015 11:59,10.0,20, Improper Input Validation,nan
CVE-2014-8823,8/09/2017 1:29,30/01/2015 11:59,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2014-8822,8/09/2017 1:29,30/01/2015 11:59,10.0,19, Data Processing Errors,nan
CVE-2014-8817,8/09/2017 1:29,30/01/2015 11:59,10.0,19, Data Processing Errors,nan
CVE-2014-8816,8/09/2017 1:29,30/01/2015 11:59,6.8,399, Resource Management Errors,nan
CVE-2014-8801,8/09/2017 1:29,28/11/2014 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8799,8/09/2017 1:29,28/11/2014 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8766,8/09/2017 1:29,14/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8747,8/09/2017 1:29,13/10/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8746,8/09/2017 1:29,13/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8745,8/09/2017 1:29,13/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8744,8/09/2017 1:29,13/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8743,8/09/2017 1:29,13/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8734,8/09/2017 1:29,12/11/2014 16:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8727,8/09/2017 1:29,17/11/2014 16:59,6.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8709,8/09/2017 1:29,10/11/2014 11:55,5.0,200, Information Exposure,nan
CVE-2014-8690,8/09/2017 1:29,19/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8681,8/09/2017 1:29,21/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8668,8/09/2017 1:29,6/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8664,8/09/2017 1:29,6/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8657,8/09/2017 1:29,6/11/2014 15:55,5.0,16, Configuration,nan
CVE-2014-8655,8/09/2017 1:29,6/11/2014 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8654,8/09/2017 1:29,6/11/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8653,8/09/2017 1:29,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8638,8/09/2017 1:29,14/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8637,8/09/2017 1:29,14/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-8636,8/09/2017 1:29,14/01/2015 11:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8629,8/09/2017 1:29,19/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8625,8/09/2017 1:29,20/01/2015 15:59,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2014-8598,8/09/2017 1:29,18/11/2014 15:59,6.4,19, Data Processing Errors,nan
CVE-2014-8593,8/09/2017 1:29,4/11/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8586,8/09/2017 1:29,4/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8585,8/09/2017 1:29,4/11/2014 15:55,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-8580,8/09/2017 1:29,7/11/2014 19:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-8577,8/09/2017 1:29,31/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8557,8/09/2017 1:29,13/11/2014 21:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8554,8/09/2017 1:29,13/11/2014 21:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8553,8/09/2017 1:29,17/12/2014 19:59,5.0,200, Information Exposure,nan
CVE-2014-8537,8/09/2017 1:29,29/10/2014 14:55,2.1,200, Information Exposure,nan
CVE-2014-8536,8/09/2017 1:29,29/10/2014 14:55,2.1,200, Information Exposure,nan
CVE-2014-8531,8/09/2017 1:29,29/10/2014 14:55,6.5,310, Cryptographic Issues,nan
CVE-2014-8525,8/09/2017 1:29,29/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-8520,8/09/2017 1:29,29/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-8506,8/09/2017 1:29,28/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8505,8/09/2017 1:29,28/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8499,8/09/2017 1:29,17/11/2014 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8495,8/09/2017 1:29,31/10/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2014-8494,8/09/2017 1:29,3/11/2014 16:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-8493,8/09/2017 1:29,20/11/2014 17:50,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8475,8/09/2017 1:29,18/11/2014 15:59,4.3,17, DEPRECATED: Code,nan
CVE-2014-8473,8/09/2017 1:29,4/11/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8472,8/09/2017 1:29,4/11/2014 20:55,6.8,287, Improper Authentication,nan
CVE-2014-8469,8/09/2017 1:29,21/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8381,8/09/2017 1:29,22/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8378,8/09/2017 1:29,21/10/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8377,8/09/2017 1:29,21/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8370,8/09/2017 1:29,29/01/2015 18:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-8359,8/09/2017 1:29,13/11/2014 21:32,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-8352,8/09/2017 1:29,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8351,8/09/2017 1:29,6/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8350,8/09/2017 1:29,3/11/2014 16:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8331,8/09/2017 1:29,20/10/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8320,8/09/2017 1:29,17/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8319,8/09/2017 1:29,17/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8318,8/09/2017 1:29,17/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8317,8/09/2017 1:29,17/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8296,8/09/2017 1:29,16/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8240,8/09/2017 1:29,16/10/2014 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8152,8/09/2017 1:29,21/01/2015 18:59,5.0,254, 7PK – Security Features,nan
CVE-2014-8144,8/09/2017 1:29,31/12/2014 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8143,8/09/2017 1:29,17/01/2015 2:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8122,8/09/2017 1:29,13/02/2015 15:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-8106,8/09/2017 1:29,8/12/2014 16:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8086,8/09/2017 1:29,13/10/2014 10:55,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-8079,8/09/2017 1:29,9/10/2014 14:55,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8078,8/09/2017 1:29,9/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8077,8/09/2017 1:29,9/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8076,8/09/2017 1:29,9/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8075,8/09/2017 1:29,9/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8073,8/09/2017 1:29,23/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8072,8/09/2017 1:29,23/10/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8071,8/09/2017 1:29,23/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8068,8/09/2017 1:29,9/10/2014 10:55,5.0,200, Information Exposure,nan
CVE-2014-8036,8/09/2017 1:29,10/01/2015 2:59,5.0,20, Improper Input Validation,nan
CVE-2014-8035,8/09/2017 1:29,10/01/2015 2:59,5.0,200, Information Exposure,nan
CVE-2014-8034,8/09/2017 1:29,15/01/2015 22:59,5.0,255, Credentials Management,nan
CVE-2014-8033,8/09/2017 1:29,9/01/2015 2:59,5.0,287, Improper Authentication,nan
CVE-2014-8032,8/09/2017 1:29,9/01/2015 2:59,4.0,200, Information Exposure,nan
CVE-2014-8031,8/09/2017 1:29,9/01/2015 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8030,8/09/2017 1:29,9/01/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8028,8/09/2017 1:29,9/01/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8027,8/09/2017 1:29,9/01/2015 2:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8023,8/09/2017 1:29,17/02/2015 1:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8022,8/09/2017 1:29,15/01/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8021,8/09/2017 1:29,3/02/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8020,8/09/2017 1:29,10/01/2015 2:59,5.0,399, Resource Management Errors,nan
CVE-2014-8005,8/09/2017 1:29,26/11/2014 2:59,5.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-8004,8/09/2017 1:29,25/11/2014 17:59,5.0,399, Resource Management Errors,nan
CVE-2014-8000,8/09/2017 1:29,21/11/2014 2:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7998,8/09/2017 1:29,15/11/2014 2:59,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-7997,8/09/2017 1:29,15/11/2014 2:59,6.1,399, Resource Management Errors,nan
CVE-2014-7996,8/09/2017 1:29,18/11/2014 23:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7992,8/09/2017 1:29,18/11/2014 1:59,5.0,200, Information Exposure,nan
CVE-2014-7991,8/09/2017 1:29,14/11/2014 0:59,4.3,310, Cryptographic Issues,nan
CVE-2014-7990,8/09/2017 1:29,7/11/2014 11:55,6.8,20, Improper Input Validation,nan
CVE-2014-7989,8/09/2017 1:29,7/11/2014 11:55,6.8,20, Improper Input Validation,nan
CVE-2014-7988,8/09/2017 1:29,7/11/2014 11:55,4.0,200, Information Exposure,nan
CVE-2014-7979,8/09/2017 1:29,8/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7978,8/09/2017 1:29,8/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7960,8/09/2017 1:29,17/10/2014 15:55,4.0,399, Resource Management Errors,nan
CVE-2014-7909,8/09/2017 1:29,19/11/2014 11:59,5.0,189, Numeric Errors,nan
CVE-2014-7908,8/09/2017 1:29,19/11/2014 11:59,7.5,189, Numeric Errors,nan
CVE-2014-7907,8/09/2017 1:29,19/11/2014 11:59,7.5,399, Resource Management Errors,nan
CVE-2014-7906,8/09/2017 1:29,19/11/2014 11:59,7.5,399, Resource Management Errors,nan
CVE-2014-7905,8/09/2017 1:29,19/11/2014 11:59,5.0,284, Improper Access Control,nan
CVE-2014-7904,8/09/2017 1:29,19/11/2014 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7903,8/09/2017 1:29,19/11/2014 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7902,8/09/2017 1:29,19/11/2014 11:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-7901,8/09/2017 1:29,19/11/2014 11:59,7.5,189, Numeric Errors,nan
CVE-2014-7900,8/09/2017 1:29,19/11/2014 11:59,7.5,399, Resource Management Errors,nan
CVE-2014-7899,8/09/2017 1:29,19/11/2014 11:59,5.0,20, Improper Input Validation,nan
CVE-2014-7882,8/09/2017 1:29,2/02/2015 1:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7878,8/09/2017 1:29,14/11/2014 0:59,10.0,310, Cryptographic Issues,nan
CVE-2014-7874,8/09/2017 1:29,19/10/2014 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7853,8/09/2017 1:29,13/02/2015 15:59,4.0,200, Information Exposure,nan
CVE-2014-7849,8/09/2017 1:29,13/02/2015 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7840,8/09/2017 1:29,12/12/2014 15:59,7.5,20, Improper Input Validation,nan
CVE-2014-7828,8/09/2017 1:29,19/11/2014 18:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7827,8/09/2017 1:29,13/02/2015 15:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7824,8/09/2017 1:29,18/11/2014 15:59,2.1,399, Resource Management Errors,nan
CVE-2014-7291,8/09/2017 1:29,1/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7290,8/09/2017 1:29,19/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7288,8/09/2017 1:29,1/02/2015 2:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7287,8/09/2017 1:29,1/02/2015 2:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-7278,8/09/2017 1:29,4/10/2014 10:55,5.0,20, Improper Input Validation,nan
CVE-2014-7277,8/09/2017 1:29,4/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7251,8/09/2017 1:29,6/12/2014 15:59,3.2,20, Improper Input Validation,nan
CVE-2014-7237,8/09/2017 1:29,16/10/2014 0:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-7235,8/09/2017 1:29,7/10/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7209,8/09/2017 1:29,6/01/2015 15:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-7206,8/09/2017 1:29,15/10/2014 14:55,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-7192,8/09/2017 1:29,11/12/2014 11:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7191,8/09/2017 1:29,19/10/2014 1:55,5.0,399, Resource Management Errors,nan
CVE-2014-7180,8/09/2017 1:29,25/10/2014 0:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-7176,8/09/2017 1:29,4/11/2014 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7158,8/09/2017 1:29,2/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7157,8/09/2017 1:29,2/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7146,8/09/2017 1:29,18/11/2014 15:59,7.5,20, Improper Input Validation,nan
CVE-2014-6635,8/09/2017 1:29,26/10/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6624,8/09/2017 1:29,19/11/2014 18:59,6.8,200, Information Exposure,nan
CVE-2014-6619,8/09/2017 1:29,30/09/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6618,8/09/2017 1:29,30/09/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6602,8/09/2017 1:29,22/09/2014 1:55,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-6477,8/09/2017 1:29,23/11/2014 19:59,6.8,200, Information Exposure,nan
CVE-2014-6409,8/09/2017 1:29,6/10/2014 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6394,8/09/2017 1:29,8/10/2014 17:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6389,8/09/2017 1:29,6/10/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6379,8/09/2017 1:29,14/10/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2014-6378,8/09/2017 1:29,14/10/2014 14:55,7.8,399, Resource Management Errors,nan
CVE-2014-6377,8/09/2017 1:29,14/10/2014 14:55,7.8,399, Resource Management Errors,nan
CVE-2014-6291,8/09/2017 1:29,3/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6283,8/09/2017 1:29,17/10/2014 23:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-6273,8/09/2017 1:29,30/09/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6270,8/09/2017 1:29,12/09/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6268,8/09/2017 1:29,12/01/2015 15:59,4.9,399, Resource Management Errors,nan
CVE-2014-6241,8/09/2017 1:29,11/09/2014 14:16,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6238,8/09/2017 1:29,11/09/2014 14:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6237,8/09/2017 1:29,11/09/2014 14:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6234,8/09/2017 1:29,11/09/2014 14:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6233,8/09/2017 1:29,11/09/2014 14:16,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6215,8/09/2017 1:29,11/12/2014 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6199,8/09/2017 1:29,10/01/2015 2:59,5.0,399, Resource Management Errors,nan
CVE-2014-6197,8/09/2017 1:29,17/01/2015 11:59,4.3,20, Improper Input Validation,nan
CVE-2014-6196,8/09/2017 1:29,26/11/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6195,8/09/2017 1:29,14/02/2015 2:59,1.9,284, Improper Access Control,nan
CVE-2014-6194,8/09/2017 1:29,17/02/2015 1:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6188,8/09/2017 1:29,24/12/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6187,8/09/2017 1:29,24/12/2014 11:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6186,8/09/2017 1:29,24/12/2014 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6185,8/09/2017 1:29,13/02/2015 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-6183,8/09/2017 1:29,23/11/2014 0:59,4.0,399, Resource Management Errors,nan
CVE-2014-6182,8/09/2017 1:29,17/12/2014 0:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6181,8/09/2017 1:29,24/12/2014 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6180,8/09/2017 1:29,24/12/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6179,8/09/2017 1:29,24/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6178,8/09/2017 1:29,24/12/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6177,8/09/2017 1:29,24/12/2014 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6176,8/09/2017 1:29,16/12/2014 23:59,4.3,310, Cryptographic Issues,nan
CVE-2014-6174,8/09/2017 1:29,18/12/2014 16:59,4.3,254, 7PK – Security Features,nan
CVE-2014-6173,8/09/2017 1:29,19/12/2014 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6172,8/09/2017 1:29,21/01/2015 15:17,5.0,200, Information Exposure,nan
CVE-2014-6171,8/09/2017 1:29,19/12/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6170,8/09/2017 1:29,2/02/2015 1:59,5.0,200, Information Exposure,nan
CVE-2014-6168,8/09/2017 1:29,29/12/2014 2:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6167,8/09/2017 1:29,18/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6164,8/09/2017 1:29,18/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-6163,8/09/2017 1:29,11/12/2014 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6161,8/09/2017 1:29,8/11/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6160,8/09/2017 1:29,29/12/2014 2:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-6159,8/09/2017 1:29,8/11/2014 11:55,3.5,20, Improper Input Validation,nan
CVE-2014-6158,8/09/2017 1:29,10/01/2015 2:59,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6155,8/09/2017 1:29,24/12/2014 11:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6154,8/09/2017 1:29,13/02/2015 2:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6153,8/09/2017 1:29,24/12/2014 11:59,4.3,310, Cryptographic Issues,nan
CVE-2014-6152,8/09/2017 1:29,25/10/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6151,8/09/2017 1:29,25/10/2014 10:55,3.5,20, Improper Input Validation,nan
CVE-2014-6150,8/09/2017 1:29,31/10/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6149,8/09/2017 1:29,29/10/2014 10:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6148,8/09/2017 1:29,31/10/2014 10:55,3.5,287, Improper Authentication,nan
CVE-2014-6147,8/09/2017 1:29,19/02/2015 2:59,2.1,200, Information Exposure,nan
CVE-2014-6146,8/09/2017 1:29,8/11/2014 11:55,1.9,200, Information Exposure,nan
CVE-2014-6145,8/09/2017 1:29,12/12/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6143,8/09/2017 1:29,11/12/2014 16:59,2.1,200, Information Exposure,nan
CVE-2014-6141,8/09/2017 1:29,2/02/2015 1:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-6138,8/09/2017 1:29,12/12/2014 11:59,4.0,200, Information Exposure,nan
CVE-2014-6137,8/09/2017 1:29,16/02/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6136,8/09/2017 1:29,2/02/2015 1:59,5.0,310, Cryptographic Issues,nan
CVE-2014-6135,8/09/2017 1:29,23/12/2014 2:59,4.3,20, Improper Input Validation,nan
CVE-2014-6132,8/09/2017 1:29,24/12/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6130,8/09/2017 1:29,4/11/2014 18:55,5.0,200, Information Exposure,nan
CVE-2014-6126,8/09/2017 1:29,28/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6125,8/09/2017 1:29,28/10/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6123,8/09/2017 1:29,29/12/2014 2:59,2.1,200, Information Exposure,nan
CVE-2014-6122,8/09/2017 1:29,23/12/2014 2:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-6121,8/09/2017 1:29,23/12/2014 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6119,8/09/2017 1:29,23/12/2014 2:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6116,8/09/2017 1:29,19/10/2014 1:55,4.3,287, Improper Authentication,nan
CVE-2014-6114,8/09/2017 1:29,11/12/2014 11:59,5.0,200, Information Exposure,nan
CVE-2014-6113,8/09/2017 1:29,16/02/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6110,8/09/2017 1:29,18/11/2014 1:59,2.1,284, Improper Access Control,nan
CVE-2014-6107,8/09/2017 1:29,18/11/2014 1:59,4.3,200, Information Exposure,nan
CVE-2014-6105,8/09/2017 1:29,18/11/2014 1:59,4.3,20, Improper Input Validation,nan
CVE-2014-6102,8/09/2017 1:29,17/02/2015 1:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-6101,8/09/2017 1:29,31/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6100,8/09/2017 1:29,19/10/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6099,8/09/2017 1:29,26/10/2014 18:55,5.0,255, Credentials Management,nan
CVE-2014-6098,8/09/2017 1:29,18/11/2014 1:59,5.0,255, Credentials Management,nan
CVE-2014-6097,8/09/2017 1:29,8/11/2014 11:55,4.0,20, Improper Input Validation,nan
CVE-2014-6096,8/09/2017 1:29,18/11/2014 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6095,8/09/2017 1:29,18/11/2014 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6093,8/09/2017 1:29,26/11/2014 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6091,8/09/2017 1:29,23/09/2014 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6089,8/09/2017 1:29,18/12/2014 16:59,4.0,19, Data Processing Errors,nan
CVE-2014-6088,8/09/2017 1:29,18/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-6087,8/09/2017 1:29,18/12/2014 16:59,5.0,310, Cryptographic Issues,nan
CVE-2014-6086,8/09/2017 1:29,18/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-6084,8/09/2017 1:29,18/12/2014 16:59,5.0,310, Cryptographic Issues,nan
CVE-2014-6083,8/09/2017 1:29,18/12/2014 16:59,5.0,200, Information Exposure,nan
CVE-2014-6080,8/09/2017 1:29,18/12/2014 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6079,8/09/2017 1:29,3/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6078,8/09/2017 1:29,18/12/2014 16:59,5.0,284, Improper Access Control,nan
CVE-2014-6077,8/09/2017 1:29,18/12/2014 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6076,8/09/2017 1:29,18/12/2014 16:59,4.3,254, 7PK – Security Features,nan
CVE-2014-6075,8/09/2017 1:29,28/11/2014 2:59,5.0,200, Information Exposure,nan
CVE-2014-6074,8/09/2017 1:29,10/09/2014 10:55,4.0,310, Cryptographic Issues,nan
CVE-2014-6070,8/09/2017 1:29,11/09/2014 14:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6055,8/09/2017 1:29,30/09/2014 16:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6041,8/09/2017 1:29,2/09/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-5507,8/09/2017 1:29,3/11/2014 16:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-5505,8/09/2017 1:29,4/09/2014 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5472,8/09/2017 1:29,1/09/2014 1:55,4.0,20, Improper Input Validation,nan
CVE-2014-5471,8/09/2017 1:29,1/09/2014 1:55,4.0,399, Resource Management Errors,nan
CVE-2014-5449,8/09/2017 1:29,20/10/2014 15:55,2.1,200, Information Exposure,nan
CVE-2014-5448,8/09/2017 1:29,20/10/2014 15:55,2.1,200, Information Exposure,nan
CVE-2014-5440,8/09/2017 1:29,12/09/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5368,8/09/2017 1:29,22/08/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5347,8/09/2017 1:29,19/08/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5343,8/09/2017 1:29,19/08/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5336,8/09/2017 1:29,26/08/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2014-5333,8/09/2017 1:29,19/08/2014 11:16,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5315,8/09/2017 1:29,26/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5276,8/09/2017 1:29,20/10/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5275,8/09/2017 1:29,20/10/2014 16:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5262,8/09/2017 1:29,22/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5261,8/09/2017 1:29,22/08/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5249,8/09/2017 1:29,14/08/2014 18:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5246,8/09/2017 1:29,22/08/2014 14:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5207,8/09/2017 1:29,18/08/2014 11:15,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5200,8/09/2017 1:29,12/08/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5195,8/09/2017 1:29,7/08/2014 11:13,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-5192,8/09/2017 1:29,7/08/2014 11:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5190,8/09/2017 1:29,7/08/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5189,8/09/2017 1:29,7/08/2014 11:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5188,8/09/2017 1:29,7/08/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5179,8/09/2017 1:29,6/08/2014 18:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4925,8/09/2017 1:29,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10038,8/09/2017 1:29,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10037,8/09/2017 1:29,13/01/2015 15:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-10036,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10034,8/09/2017 1:29,13/01/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10033,8/09/2017 1:29,13/01/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10032,8/09/2017 1:29,13/01/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10031,8/09/2017 1:29,13/01/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10029,8/09/2017 1:29,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10023,8/09/2017 1:29,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10020,8/09/2017 1:29,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10019,8/09/2017 1:29,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10018,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10017,8/09/2017 1:29,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10016,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10014,8/09/2017 1:29,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10013,8/09/2017 1:29,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10012,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10011,8/09/2017 1:29,13/01/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10010,8/09/2017 1:29,13/01/2015 11:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-10009,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10008,8/09/2017 1:29,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10007,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10004,8/09/2017 1:29,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100038,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100036,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100034,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100032,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100031,8/09/2017 1:29,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100030,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10003,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100029,8/09/2017 1:29,13/01/2015 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-100028,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100027,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100026,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100025,8/09/2017 1:29,13/01/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-100024,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100023,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100022,8/09/2017 1:29,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100020,8/09/2017 1:29,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100019,8/09/2017 1:29,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100017,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100016,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100015,8/09/2017 1:29,13/01/2015 15:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-100014,8/09/2017 1:29,13/01/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-100013,8/09/2017 1:29,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10001,8/09/2017 1:29,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-100008,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100007,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100006,8/09/2017 1:29,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100005,8/09/2017 1:29,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-100002,8/09/2017 1:29,13/01/2015 11:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-100001,8/09/2017 1:29,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7417,8/09/2017 1:29,2/01/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7416,8/09/2017 1:29,3/12/2014 21:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2013-7406,8/09/2017 1:29,21/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6687,8/09/2017 1:29,19/02/2015 15:59,5.0,20, Improper Input Validation,nan
CVE-2012-6654,8/09/2017 1:29,14/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5284,8/09/2017 1:29,31/12/2014 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5283,8/09/2017 1:29,31/12/2014 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6756,8/09/2017 1:29,12/08/2014 16:55,4.9,255, Credentials Management,nan
CVE-2017-1097,7/09/2017 21:43,5/09/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1878,7/09/2017 21:38,18/08/2017 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-5959,7/09/2017 19:53,6/09/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-14158,7/09/2017 19:52,5/09/2017 17:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-2821,7/09/2017 19:35,5/09/2017 18:29,6.8,416, Use After Free,nan
CVE-2017-2822,7/09/2017 19:34,5/09/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-13666,7/09/2017 18:30,24/08/2017 6:29,2.1,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2015-5947,7/09/2017 18:11,6/09/2017 21:29,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-3454,7/09/2017 18:11,6/09/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-12476,7/09/2017 17:17,6/09/2017 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12474,7/09/2017 17:17,6/09/2017 8:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-1445,7/09/2017 15:41,28/08/2017 15:29,9.0,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2015-5293,7/09/2017 15:26,24/08/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2015-8334,7/09/2017 14:14,29/08/2017 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7517,7/09/2017 14:13,29/08/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14069,7/09/2017 1:29,31/08/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-13739,7/09/2017 1:29,29/08/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5237,7/09/2017 1:29,23/01/2017 21:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-4010,7/09/2017 1:29,23/01/2017 21:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-3078,7/09/2017 1:29,7/08/2016 10:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-2979,7/09/2017 1:29,29/08/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2977,7/09/2017 1:29,29/08/2017 18:29,4.0,20, Improper Input Validation,nan
CVE-2016-2973,7/09/2017 1:29,29/08/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2972,7/09/2017 1:29,29/08/2017 18:29,2.1,255, Credentials Management,nan
CVE-2016-2971,7/09/2017 1:29,29/08/2017 18:29,5.0,200, Information Exposure,nan
CVE-2016-2969,7/09/2017 1:29,29/08/2017 18:29,4.0,200, Information Exposure,nan
CVE-2016-2965,7/09/2017 1:29,29/08/2017 18:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2959,7/09/2017 1:29,29/08/2017 18:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2548,7/09/2017 1:29,27/04/2016 17:59,4.9,20, Improper Input Validation,nan
CVE-2016-2547,7/09/2017 1:29,27/04/2016 17:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2546,7/09/2017 1:29,27/04/2016 17:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2545,7/09/2017 1:29,27/04/2016 17:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2544,7/09/2017 1:29,27/04/2016 17:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2296,7/09/2017 1:29,14/05/2016 16:59,7.5,254, 7PK – Security Features,nan
CVE-2016-2190,7/09/2017 1:29,22/05/2016 20:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2159,7/09/2017 1:29,22/05/2016 20:59,4.0,284, Improper Access Control,nan
CVE-2016-2158,7/09/2017 1:29,22/05/2016 20:59,4.0,200, Information Exposure,nan
CVE-2016-2157,7/09/2017 1:29,22/05/2016 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2156,7/09/2017 1:29,22/05/2016 20:59,4.0,200, Information Exposure,nan
CVE-2016-2155,7/09/2017 1:29,22/05/2016 20:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2154,7/09/2017 1:29,22/05/2016 20:59,4.0,200, Information Exposure,nan
CVE-2016-2153,7/09/2017 1:29,22/05/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2152,7/09/2017 1:29,22/05/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2151,7/09/2017 1:29,22/05/2016 20:59,4.0,200, Information Exposure,nan
CVE-2016-1077,7/09/2017 1:29,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0356,7/09/2017 1:29,29/08/2017 18:29,4.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0355,7/09/2017 1:29,29/08/2017 18:29,4.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0354,7/09/2017 1:29,29/08/2017 18:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-6639,7/09/2017 1:29,6/01/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3657,7/09/2017 1:29,29/08/2017 15:29,6.5,284, Improper Access Control,nan
CVE-2015-3656,7/09/2017 1:29,29/08/2017 15:29,6.5,285, Improper Authorization,nan
CVE-2015-3654,7/09/2017 1:29,29/08/2017 15:29,9.0,284, Improper Access Control,nan
CVE-2015-0935,7/09/2017 1:29,25/05/2015 19:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8677,6/09/2017 20:17,31/08/2017 22:29,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8753,6/09/2017 19:45,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10508,6/09/2017 19:26,31/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12797,6/09/2017 19:24,29/08/2017 15:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2015-5958,6/09/2017 19:23,31/08/2017 22:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-1198,6/09/2017 19:22,28/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10851,6/09/2017 19:18,1/09/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2015-3211,6/09/2017 19:18,25/08/2017 18:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-14053,6/09/2017 19:14,1/09/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-13709,6/09/2017 19:12,27/08/2017 16:29,6.4,20, Improper Input Validation,nan
CVE-2015-7746,6/09/2017 18:50,1/09/2017 13:29,7.5,287, Improper Authentication,nan
CVE-2017-10848,6/09/2017 18:43,1/09/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2016-1895,6/09/2017 18:40,1/09/2017 21:29,4.0,134, Use of Externally-Controlled Format String,nan
CVE-2017-14145,6/09/2017 18:38,5/09/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10509,6/09/2017 18:37,31/08/2017 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14146,6/09/2017 18:23,5/09/2017 7:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-3897,6/09/2017 17:53,1/09/2017 13:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1443,6/09/2017 17:46,28/08/2017 15:29,9.0,20, Improper Input Validation,nan
CVE-2015-1876,6/09/2017 15:11,28/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3976,6/09/2017 15:01,28/08/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8675,6/09/2017 2:17,31/08/2017 22:29,5.0,200, Information Exposure,nan
CVE-2017-8380,6/09/2017 2:06,28/08/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14121,6/09/2017 1:55,3/09/2017 20:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-10829,6/09/2017 1:45,1/09/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-14107,6/09/2017 1:37,1/09/2017 17:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12871,6/09/2017 1:36,1/09/2017 21:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2017-12870,6/09/2017 1:35,1/09/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-3155,6/09/2017 1:29,29/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3154,6/09/2017 1:29,29/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-2292,6/09/2017 1:29,30/06/2017 20:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-12984,6/09/2017 1:29,21/08/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12954,6/09/2017 1:29,28/08/2017 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12953,6/09/2017 1:29,28/08/2017 19:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-12952,6/09/2017 1:29,28/08/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12950,6/09/2017 1:29,28/08/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9111,6/09/2017 1:29,7/11/2016 11:59,4.6,284, Improper Access Control,nan
CVE-2016-10277,6/09/2017 1:29,12/05/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-1000125,6/09/2017 1:29,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1000124,6/09/2017 1:29,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1000123,6/09/2017 1:29,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3655,6/09/2017 1:29,29/08/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3653,6/09/2017 1:29,29/08/2017 15:29,9.0,284, Improper Access Control,nan
CVE-2017-14120,5/09/2017 21:42,3/09/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-13671,5/09/2017 18:56,24/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0713,5/09/2017 18:48,31/08/2017 14:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1554,5/09/2017 18:42,28/08/2017 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-7855,5/09/2017 18:28,31/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13708,5/09/2017 18:24,31/08/2017 14:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1199,5/09/2017 18:21,28/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8163,5/09/2017 18:21,28/08/2017 19:29,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7700,5/09/2017 18:11,31/08/2017 22:29,7.5,415, Double Free,nan
CVE-2017-10837,5/09/2017 18:07,29/08/2017 1:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8676,5/09/2017 18:06,31/08/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12775,5/09/2017 17:42,29/08/2017 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-13780,5/09/2017 17:38,30/08/2017 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-14076,5/09/2017 17:25,31/08/2017 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-14070,5/09/2017 17:18,31/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5001,5/09/2017 17:16,30/08/2017 19:29,2.1,200, Information Exposure,nan
CVE-2017-14149,5/09/2017 17:07,5/09/2017 7:29,5.0,476, NULL Pointer Dereference,nan
CVE-2015-0114,5/09/2017 13:32,28/08/2017 15:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-14103,5/09/2017 13:18,1/09/2017 13:29,6.8,416, Use After Free,nan
CVE-2017-10849,5/09/2017 12:58,1/09/2017 14:29,9.3,426, Untrusted Search Path,nan
CVE-2017-11157,5/09/2017 12:57,30/08/2017 20:29,4.6,426, Untrusted Search Path,nan
CVE-2014-8168,4/09/2017 17:31,28/08/2017 15:29,4.6,284, Improper Access Control,nan
CVE-2016-2970,4/09/2017 16:42,29/08/2017 1:35,4.0,200, Information Exposure,nan
CVE-2017-1446,4/09/2017 16:40,30/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1445,4/09/2017 16:40,30/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1447,4/09/2017 16:33,31/08/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1444,4/09/2017 16:33,31/08/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1449,4/09/2017 16:32,31/08/2017 14:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1450,4/09/2017 16:31,31/08/2017 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-0358,3/09/2017 13:19,29/08/2017 21:29,4.0,200, Information Exposure,nan
CVE-2014-8900,3/09/2017 13:17,28/08/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9497,3/09/2017 13:16,29/08/2017 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3153,3/09/2017 1:29,29/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3152,3/09/2017 1:29,29/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13764,3/09/2017 1:29,30/08/2017 9:29,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9796,3/09/2017 1:29,3/12/2016 6:59,10.0,287, Improper Authentication,nan
CVE-2016-9332,3/09/2017 1:29,13/02/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2016-8972,3/09/2017 1:29,15/02/2017 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8812,3/09/2017 1:29,8/11/2016 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8769,3/09/2017 1:29,2/04/2017 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8582,3/09/2017 1:29,28/10/2016 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8581,3/09/2017 1:29,28/10/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8580,3/09/2017 1:29,28/10/2016 15:59,7.5,284, Improper Access Control,nan
CVE-2016-8025,3/09/2017 1:29,14/03/2017 22:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8024,3/09/2017 1:29,14/03/2017 22:59,6.8,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2016-8023,3/09/2017 1:29,14/03/2017 22:59,6.8,287, Improper Authentication,nan
CVE-2016-8022,3/09/2017 1:29,14/03/2017 22:59,5.1,287, Improper Authentication,nan
CVE-2016-8021,3/09/2017 1:29,14/03/2017 22:59,3.5,347, Improper Verification of Cryptographic Signature,nan
CVE-2016-8020,3/09/2017 1:29,14/03/2017 22:59,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-8019,3/09/2017 1:29,14/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8018,3/09/2017 1:29,14/03/2017 22:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8017,3/09/2017 1:29,14/03/2017 22:59,4.0,20, Improper Input Validation,nan
CVE-2016-8016,3/09/2017 1:29,14/03/2017 22:59,3.5,200, Information Exposure,nan
CVE-2016-7851,3/09/2017 1:29,8/11/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7661,3/09/2017 1:29,20/02/2017 8:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7633,3/09/2017 1:29,20/02/2017 8:59,7.2,416, Use After Free,nan
CVE-2016-7617,3/09/2017 1:29,20/02/2017 8:59,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2016-7098,3/09/2017 1:29,26/09/2016 14:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-7084,3/09/2017 1:29,29/12/2016 9:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7083,3/09/2017 1:29,29/12/2016 9:59,5.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7054,3/09/2017 1:29,4/05/2017 19:29,5.0,284, Improper Access Control,nan
CVE-2016-6897,3/09/2017 1:29,18/01/2017 21:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6896,3/09/2017 1:29,18/01/2017 21:59,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6689,3/09/2017 1:29,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-6512,3/09/2017 1:29,6/08/2016 23:59,4.3,20, Improper Input Validation,nan
CVE-2016-6505,3/09/2017 1:29,6/08/2016 23:59,4.3,369, Divide By Zero,nan
CVE-2016-6504,3/09/2017 1:29,6/08/2016 23:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-6503,3/09/2017 1:29,6/08/2016 23:59,4.3,20, Improper Input Validation,nan
CVE-2016-6483,3/09/2017 1:29,2/09/2016 1:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-6435,3/09/2017 1:29,6/10/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-6434,3/09/2017 1:29,6/10/2016 10:59,4.6,287, Improper Authentication,nan
CVE-2016-6433,3/09/2017 1:29,6/10/2016 10:59,9.0,20, Improper Input Validation,nan
CVE-2016-6175,3/09/2017 1:29,7/02/2017 15:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-6079,3/09/2017 1:29,15/02/2017 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5764,3/09/2017 1:29,27/10/2016 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5680,3/09/2017 1:29,31/08/2016 15:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5679,3/09/2017 1:29,31/08/2016 15:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-5678,3/09/2017 1:29,31/08/2016 15:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-5677,3/09/2017 1:29,31/08/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-5676,3/09/2017 1:29,31/08/2016 15:59,5.0,285, Improper Authorization,nan
CVE-2016-5675,3/09/2017 1:29,31/08/2016 15:59,10.0,20, Improper Input Validation,nan
CVE-2016-5674,3/09/2017 1:29,31/08/2016 15:59,10.0,20, Improper Input Validation,nan
CVE-2016-5639,3/09/2017 1:29,3/08/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5425,3/09/2017 1:29,13/10/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5228,3/09/2017 1:29,3/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4625,3/09/2017 1:29,22/07/2016 2:59,7.2,416, Use After Free,nan
CVE-2016-4208,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4207,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4206,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4205,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4204,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4203,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4201,3/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3989,3/09/2017 1:29,3/07/2016 14:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3962,3/09/2017 1:29,3/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3861,3/09/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3653,3/09/2017 1:29,30/06/2016 23:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3652,3/09/2017 1:29,30/06/2016 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3621,3/09/2017 1:29,3/10/2016 16:09,6.8,125, Out-of-bounds Read,nan
CVE-2016-3620,3/09/2017 1:29,3/10/2016 16:09,5.0,125, Out-of-bounds Read,nan
CVE-2016-3619,3/09/2017 1:29,3/10/2016 16:09,4.3,125, Out-of-bounds Read,nan
CVE-2016-3473,3/09/2017 1:29,25/10/2016 14:29,4.0,200, Information Exposure,nan
CVE-2016-3053,3/09/2017 1:29,1/02/2017 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2978,3/09/2017 1:29,29/08/2017 21:29,2.1,200, Information Exposure,nan
CVE-2016-2976,3/09/2017 1:29,29/08/2017 21:29,4.0,200, Information Exposure,nan
CVE-2016-2975,3/09/2017 1:29,29/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2967,3/09/2017 1:29,29/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2966,3/09/2017 1:29,29/08/2017 21:29,4.0,200, Information Exposure,nan
CVE-2016-2964,3/09/2017 1:29,29/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2016-2193,3/09/2017 1:29,11/04/2016 15:59,5.0,254, 7PK – Security Features,nan
CVE-2016-1611,3/09/2017 1:29,1/08/2016 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1610,3/09/2017 1:29,1/08/2016 2:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1609,3/09/2017 1:29,1/08/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1608,3/09/2017 1:29,1/08/2016 2:59,9.0,284, Improper Access Control,nan
CVE-2016-1607,3/09/2017 1:29,1/08/2016 2:59,6.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1464,3/09/2017 1:29,3/09/2016 20:59,9.3,20, Improper Input Validation,nan
CVE-2016-1415,3/09/2017 1:29,3/09/2016 20:59,4.3,399, Resource Management Errors,nan
CVE-2016-10176,3/09/2017 1:29,30/01/2017 4:59,7.5,20, Improper Input Validation,nan
CVE-2016-10175,3/09/2017 1:29,30/01/2017 4:59,5.0,200, Information Exposure,nan
CVE-2016-10174,3/09/2017 1:29,30/01/2017 4:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0243,3/09/2017 1:29,29/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2866,3/09/2017 1:29,8/07/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1497,3/09/2017 1:29,16/02/2015 15:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8380,3/09/2017 1:29,21/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6282,3/09/2017 1:29,20/11/2013 13:19,7.2,20, Improper Input Validation,nan
CVE-2017-1443,2/09/2017 15:33,30/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1442,2/09/2017 15:33,30/08/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2980,2/09/2017 15:33,29/08/2017 21:29,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-12856,2/09/2017 15:32,29/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7426,2/09/2017 15:32,29/08/2017 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-10503,2/09/2017 15:28,29/08/2017 18:29,4.0,20, Improper Input Validation,nan
CVE-2016-2431,2/09/2017 15:01,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-1020,2/09/2017 15:01,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1370,2/09/2017 15:00,3/06/2016 2:01,5.0,20, Improper Input Validation,nan
CVE-2015-6289,2/09/2017 15:00,23/06/2016 0:59,5.0,399, Resource Management Errors,nan
CVE-2015-5738,2/09/2017 15:00,26/07/2016 17:59,7.8,200, Information Exposure,nan
CVE-2013-1086,2/09/2017 15:00,19/04/2013 11:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6942,2/09/2017 14:21,29/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6588,2/09/2017 14:21,29/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1195,2/09/2017 14:18,29/08/2017 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1110,2/09/2017 14:18,29/08/2017 1:35,4.0,200, Information Exposure,nan
CVE-2016-9732,2/09/2017 14:18,29/08/2017 1:35,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7693,2/09/2017 12:02,26/08/2017 4:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8752,2/09/2017 11:54,29/08/2017 20:29,5.0,284, Improper Access Control,nan
CVE-2017-14037,2/09/2017 11:49,30/08/2017 21:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-5594,2/09/2017 1:29,25/01/2017 18:59,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-5473,2/09/2017 1:29,14/01/2017 7:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-3316,2/09/2017 1:29,27/01/2017 22:59,6.0,20, Improper Input Validation,nan
CVE-2017-3151,2/09/2017 1:29,29/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2353,2/09/2017 1:29,20/02/2017 8:59,9.3,416, Use After Free,nan
CVE-2017-12961,2/09/2017 1:29,18/08/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-12958,2/09/2017 1:29,18/08/2017 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10792,2/09/2017 1:29,2/07/2017 3:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-10791,2/09/2017 1:29,2/07/2017 3:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9838,2/09/2017 1:29,16/12/2016 9:59,5.0,284, Improper Access Control,nan
CVE-2015-6565,2/09/2017 1:29,24/08/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3712,2/09/2017 1:29,3/11/2014 16:55,5.0,399, Resource Management Errors,nan
CVE-2012-5897,2/09/2017 1:29,17/11/2012 21:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5324,2/09/2017 1:29,8/10/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4060,2/09/2017 1:29,18/10/2011 1:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-12920,1/09/2017 20:51,28/08/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12919,1/09/2017 20:51,28/08/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12921,1/09/2017 20:50,28/08/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2014-8426,1/09/2017 20:50,28/08/2017 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-12922,1/09/2017 20:49,28/08/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-12924,1/09/2017 20:48,28/08/2017 19:29,4.3,369, Divide By Zero,nan
CVE-2017-12923,1/09/2017 20:48,28/08/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-13762,1/09/2017 20:47,30/08/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14035,1/09/2017 20:45,30/08/2017 21:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-3150,1/09/2017 18:14,29/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2974,1/09/2017 18:13,29/08/2017 21:29,2.1,200, Information Exposure,nan
CVE-2017-12972,1/09/2017 17:45,20/08/2017 16:29,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-14038,1/09/2017 17:06,30/08/2017 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-14036,1/09/2017 17:06,30/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13755,1/09/2017 17:05,29/08/2017 22:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10836,1/09/2017 17:05,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2014-8428,1/09/2017 17:04,28/08/2017 15:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7432,1/09/2017 16:33,29/08/2017 20:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-13760,1/09/2017 16:27,29/08/2017 23:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5224,1/09/2017 16:08,23/08/2017 15:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7431,1/09/2017 16:08,29/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2013-7433,1/09/2017 16:05,29/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10838,1/09/2017 16:04,29/08/2017 1:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10839,1/09/2017 15:47,29/08/2017 1:35,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1485,1/09/2017 15:23,29/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2046,1/09/2017 14:56,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9469,1/09/2017 14:52,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13712,1/09/2017 14:50,28/08/2017 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-12925,1/09/2017 14:48,28/08/2017 19:29,4.3,415, Double Free,nan
CVE-2017-14049,1/09/2017 13:26,31/08/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-14050,1/09/2017 13:25,31/08/2017 4:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-14048,1/09/2017 13:25,31/08/2017 4:29,6.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6351,1/09/2017 1:29,6/03/2017 2:59,9.3,798, Use of Hard-coded Credentials,nan
CVE-2017-5521,1/09/2017 1:29,17/01/2017 9:59,4.3,200, Information Exposure,nan
CVE-2017-5496,1/09/2017 1:29,15/03/2017 15:59,5.0,200, Information Exposure,nan
CVE-2017-5487,1/09/2017 1:29,15/01/2017 2:59,5.0,200, Information Exposure,nan
CVE-2017-5344,1/09/2017 1:29,17/02/2017 7:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5173,1/09/2017 1:29,19/05/2017 3:29,10.0,943, Improper Neutralization of Special Elements in Data Query Logic,nan
CVE-2017-2362,1/09/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2361,1/09/2017 1:29,20/02/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0313,1/09/2017 1:29,15/02/2017 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0312,1/09/2017 1:29,15/02/2017 23:59,7.2,20, Improper Input Validation,nan
CVE-2017-0038,1/09/2017 1:29,20/02/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-6241,1/09/2017 1:29,7/03/2017 16:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-6240,1/09/2017 1:29,7/03/2017 16:59,7.2,189, Numeric Errors,nan
CVE-2016-6239,1/09/2017 1:29,7/03/2017 16:59,4.9,20, Improper Input Validation,nan
CVE-2016-5742,1/09/2017 1:29,23/01/2017 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5400,1/09/2017 1:29,6/08/2016 20:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5307,1/09/2017 1:29,30/06/2016 23:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5306,1/09/2017 1:29,30/06/2016 23:59,5.0,254, 7PK – Security Features,nan
CVE-2016-5305,1/09/2017 1:29,30/06/2016 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5137,1/09/2017 1:29,23/07/2016 19:59,4.3,200, Information Exposure,nan
CVE-2016-5136,1/09/2017 1:29,23/07/2016 19:59,6.8,416, Use After Free,nan
CVE-2016-5135,1/09/2017 1:29,23/07/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2016-5134,1/09/2017 1:29,23/07/2016 19:59,4.3,200, Information Exposure,nan
CVE-2016-5133,1/09/2017 1:29,23/07/2016 19:59,4.3,287, Improper Authentication,nan
CVE-2016-5132,1/09/2017 1:29,23/07/2016 19:59,6.8,254, 7PK – Security Features,nan
CVE-2016-5130,1/09/2017 1:29,23/07/2016 19:59,4.3,284, Improper Access Control,nan
CVE-2016-5129,1/09/2017 1:29,23/07/2016 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5128,1/09/2017 1:29,23/07/2016 19:59,6.8,254, 7PK – Security Features,nan
CVE-2016-5127,1/09/2017 1:29,23/07/2016 19:59,6.8,416, Use After Free,nan
CVE-2016-4652,1/09/2017 1:29,22/07/2016 3:00,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4649,1/09/2017 1:29,22/07/2016 3:00,2.1,476, NULL Pointer Dereference,nan
CVE-2016-4648,1/09/2017 1:29,22/07/2016 3:00,4.9,200, Information Exposure,nan
CVE-2016-4647,1/09/2017 1:29,22/07/2016 3:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4646,1/09/2017 1:29,22/07/2016 3:00,4.3,200, Information Exposure,nan
CVE-2016-4645,1/09/2017 1:29,22/07/2016 3:00,2.1,200, Information Exposure,nan
CVE-2016-4641,1/09/2017 1:29,22/07/2016 3:00,9.3,20, Improper Input Validation,nan
CVE-2016-4640,1/09/2017 1:29,22/07/2016 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4638,1/09/2017 1:29,22/07/2016 2:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4635,1/09/2017 1:29,22/07/2016 2:59,3.5,200, Information Exposure,nan
CVE-2016-4634,1/09/2017 1:29,22/07/2016 2:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4633,1/09/2017 1:29,22/07/2016 2:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-4630,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4629,1/09/2017 1:29,22/07/2016 2:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4628,1/09/2017 1:29,22/07/2016 2:59,4.9,200, Information Exposure,nan
CVE-2016-4621,1/09/2017 1:29,22/07/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4605,1/09/2017 1:29,22/07/2016 2:59,7.1,476, NULL Pointer Dereference,nan
CVE-2016-4604,1/09/2017 1:29,22/07/2016 2:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-4603,1/09/2017 1:29,22/07/2016 2:59,4.3,254, 7PK – Security Features,nan
CVE-2016-4602,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4601,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4600,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4599,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4598,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4597,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4596,1/09/2017 1:29,22/07/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4595,1/09/2017 1:29,22/07/2016 2:59,2.1,200, Information Exposure,nan
CVE-2016-4593,1/09/2017 1:29,22/07/2016 2:59,2.1,200, Information Exposure,nan
CVE-2016-4254,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4252,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4251,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4250,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4215,1/09/2017 1:29,13/07/2016 2:00,10.0,284, Improper Access Control,nan
CVE-2016-4214,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4213,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4212,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4211,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4210,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4209,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4202,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4200,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4199,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4198,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4197,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4196,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4195,1/09/2017 1:29,13/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4194,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4193,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4192,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4191,1/09/2017 1:29,13/07/2016 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3651,1/09/2017 1:29,30/06/2016 23:59,6.0,200, Information Exposure,nan
CVE-2016-3650,1/09/2017 1:29,30/06/2016 23:59,4.0,254, 7PK – Security Features,nan
CVE-2016-3649,1/09/2017 1:29,30/06/2016 23:59,4.0,200, Information Exposure,nan
CVE-2016-3648,1/09/2017 1:29,30/06/2016 23:59,4.0,254, 7PK – Security Features,nan
CVE-2016-2989,1/09/2017 1:29,8/08/2016 1:59,5.8,284, Improper Access Control,nan
CVE-2016-2925,1/09/2017 1:29,8/08/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2894,1/09/2017 1:29,3/07/2016 21:59,2.1,200, Information Exposure,nan
CVE-2016-2206,1/09/2017 1:29,12/07/2016 2:00,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2205,1/09/2017 1:29,12/07/2016 2:00,6.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2082,1/09/2017 1:29,3/07/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2081,1/09/2017 1:29,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2079,1/09/2017 1:29,3/07/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1864,1/09/2017 1:29,19/06/2016 20:59,5.0,200, Information Exposure,nan
CVE-2016-1711,1/09/2017 1:29,23/07/2016 19:59,6.8,285, Improper Authorization,nan
CVE-2016-1710,1/09/2017 1:29,23/07/2016 19:59,6.8,285, Improper Authorization,nan
CVE-2016-1709,1/09/2017 1:29,23/07/2016 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1708,1/09/2017 1:29,23/07/2016 19:59,6.8,416, Use After Free,nan
CVE-2016-1707,1/09/2017 1:29,23/07/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2016-1706,1/09/2017 1:29,23/07/2016 19:59,9.3,20, Improper Input Validation,nan
CVE-2016-1513,1/09/2017 1:29,5/08/2016 14:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-1465,1/09/2017 1:29,28/07/2016 1:59,6.1,399, Resource Management Errors,nan
CVE-2016-1463,1/09/2017 1:29,28/07/2016 1:59,5.0,20, Improper Input Validation,nan
CVE-2016-1462,1/09/2017 1:29,28/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1461,1/09/2017 1:29,1/08/2016 2:59,5.0,20, Improper Input Validation,nan
CVE-2016-1460,1/09/2017 1:29,28/07/2016 1:59,6.1,399, Resource Management Errors,nan
CVE-2016-1459,1/09/2017 1:29,17/07/2016 22:59,4.9,399, Resource Management Errors,nan
CVE-2016-1456,1/09/2017 1:29,15/07/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1452,1/09/2017 1:29,15/07/2016 16:59,6.4,254, 7PK – Security Features,nan
CVE-2016-1450,1/09/2017 1:29,15/07/2016 16:59,6.0,20, Improper Input Validation,nan
CVE-2016-1449,1/09/2017 1:29,15/07/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1448,1/09/2017 1:29,17/07/2016 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1447,1/09/2017 1:29,15/07/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1446,1/09/2017 1:29,15/07/2016 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1445,1/09/2017 1:29,12/07/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2016-1444,1/09/2017 1:29,7/07/2016 14:59,5.8,20, Improper Input Validation,nan
CVE-2016-1440,1/09/2017 1:29,2/07/2016 14:59,5.0,399, Resource Management Errors,nan
CVE-2016-1426,1/09/2017 1:29,15/07/2016 16:59,7.8,399, Resource Management Errors,nan
CVE-2016-1425,1/09/2017 1:29,3/07/2016 21:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1416,1/09/2017 1:29,2/07/2016 14:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1398,1/09/2017 1:29,3/07/2016 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1397,1/09/2017 1:29,19/06/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1374,1/09/2017 1:29,28/07/2016 1:59,9.0,20, Improper Input Validation,nan
CVE-2016-1280,1/09/2017 1:29,9/09/2016 14:05,6.4,297, Improper Validation of Certificate with Host Mismatch,nan
CVE-2016-1279,1/09/2017 1:29,9/09/2016 14:05,10.0,287, Improper Authentication,nan
CVE-2016-1277,1/09/2017 1:29,9/09/2016 14:05,7.1,20, Improper Input Validation,nan
CVE-2016-1275,1/09/2017 1:29,9/09/2016 14:05,6.1,399, Resource Management Errors,nan
CVE-2016-1263,1/09/2017 1:29,9/09/2016 14:05,7.8,20, Improper Input Validation,nan
CVE-2016-10081,1/09/2017 1:29,29/12/2016 18:59,9.3,19, Data Processing Errors,nan
CVE-2016-0906,1/09/2017 1:29,6/07/2016 14:59,6.5,284, Improper Access Control,nan
CVE-2016-0899,1/09/2017 1:29,4/07/2016 16:59,3.5,200, Information Exposure,nan
CVE-2016-0357,1/09/2017 1:29,15/07/2016 18:59,4.3,284, Improper Access Control,nan
CVE-2016-0346,1/09/2017 1:29,3/07/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0340,1/09/2017 1:29,15/07/2016 18:59,4.4,284, Improper Access Control,nan
CVE-2016-0339,1/09/2017 1:29,15/07/2016 18:59,4.3,284, Improper Access Control,nan
CVE-2016-0338,1/09/2017 1:29,15/07/2016 18:59,2.1,200, Information Exposure,nan
CVE-2016-0330,1/09/2017 1:29,15/07/2016 18:59,5.0,255, Credentials Management,nan
CVE-2016-0281,1/09/2017 1:29,8/08/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-0280,1/09/2017 1:29,8/08/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0266,1/09/2017 1:29,8/08/2016 1:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0263,1/09/2017 1:29,29/06/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0221,1/09/2017 1:29,3/07/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8801,1/09/2017 1:29,30/06/2016 23:59,3.3,284, Improper Access Control,nan
CVE-2015-7029,1/09/2017 1:29,3/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6931,1/09/2017 1:29,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5664,1/09/2017 1:29,3/07/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4649,1/09/2017 1:29,29/08/2017 15:29,9.0,284, Improper Access Control,nan
CVE-2014-9862,1/09/2017 1:29,22/07/2016 2:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2015-1386,31/08/2017 19:01,28/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1430,31/08/2017 19:00,28/08/2017 15:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0210,31/08/2017 18:59,28/08/2017 15:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-0928,31/08/2017 18:50,28/08/2017 15:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-10835,31/08/2017 17:21,29/08/2017 1:35,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-10832,31/08/2017 16:56,29/08/2017 1:35,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-10834,31/08/2017 16:55,29/08/2017 1:35,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12077,31/08/2017 16:23,28/08/2017 19:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-12076,31/08/2017 16:23,28/08/2017 19:29,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2014-9558,31/08/2017 15:52,28/08/2017 15:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9557,31/08/2017 15:52,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13778,31/08/2017 14:45,30/08/2017 9:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2805,31/08/2017 13:48,28/08/2017 15:29,5.0,404, Improper Resource Shutdown or Release,nan
CVE-2014-0141,31/08/2017 13:47,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9514,31/08/2017 13:46,28/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13685,31/08/2017 1:29,29/08/2017 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-11720,31/08/2017 1:29,28/07/2017 14:29,7.5,369, Divide By Zero,nan
CVE-2016-3400,31/08/2017 1:29,3/07/2017 16:29,6.8,254, 7PK – Security Features,nan
CVE-2017-2242,30/08/2017 19:18,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2017-10828,30/08/2017 19:18,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2017-10827,30/08/2017 19:18,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2017-10826,30/08/2017 18:26,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2013-7430,30/08/2017 18:25,28/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10830,30/08/2017 18:23,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2017-10812,30/08/2017 18:23,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2017-3752,30/08/2017 17:50,9/08/2017 21:29,4.3,20, Improper Input Validation,nan
CVE-2016-5816,30/08/2017 16:58,25/08/2017 16:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-10831,30/08/2017 16:46,29/08/2017 1:35,9.3,426, Untrusted Search Path,nan
CVE-2015-2857,30/08/2017 16:26,22/08/2017 15:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1324,30/08/2017 15:54,25/08/2017 18:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6310,30/08/2017 15:31,22/08/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-10841,30/08/2017 15:25,29/08/2017 1:35,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-10840,30/08/2017 15:25,29/08/2017 1:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7258,30/08/2017 15:22,24/08/2017 20:29,9.0,255, Credentials Management,nan
CVE-2015-1325,30/08/2017 15:20,25/08/2017 18:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-13735,30/08/2017 15:17,29/08/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-2256,30/08/2017 15:09,29/08/2017 1:35,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2258,30/08/2017 15:08,29/08/2017 1:35,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2257,30/08/2017 14:45,29/08/2017 1:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2255,30/08/2017 14:45,29/08/2017 1:35,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2254,30/08/2017 14:44,29/08/2017 1:35,4.0,20, Improper Input Validation,nan
CVE-2014-9564,30/08/2017 13:49,25/08/2017 18:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2015-7516,30/08/2017 11:30,24/08/2017 20:29,7.8,476, NULL Pointer Dereference,nan
CVE-2017-13710,30/08/2017 1:29,27/08/2017 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-13692,30/08/2017 1:29,25/08/2017 8:29,5.0,20, Improper Input Validation,nan
CVE-2017-12777,30/08/2017 1:29,9/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1422,30/08/2017 1:19,22/08/2017 19:29,2.1,200, Information Exposure,nan
CVE-2017-10665,30/08/2017 1:17,18/08/2017 14:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-13686,30/08/2017 1:16,24/08/2017 22:29,7.2,476, NULL Pointer Dereference,nan
CVE-2014-9637,30/08/2017 1:16,25/08/2017 18:29,7.1,399, Resource Management Errors,nan
CVE-2015-8308,30/08/2017 1:14,24/08/2017 20:29,4.6,287, Improper Authentication,nan
CVE-2015-4181,30/08/2017 1:14,25/08/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4180,30/08/2017 1:14,25/08/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1395,30/08/2017 1:13,25/08/2017 18:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12787,29/08/2017 18:48,22/08/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12785,29/08/2017 18:48,22/08/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12786,29/08/2017 18:46,22/08/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12703,29/08/2017 17:01,25/08/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3257,29/08/2017 16:45,25/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12791,29/08/2017 16:43,23/08/2017 14:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7259,29/08/2017 16:20,24/08/2017 20:29,9.0,255, Credentials Management,nan
CVE-2015-7257,29/08/2017 16:17,24/08/2017 20:29,8.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-3753,29/08/2017 15:38,10/08/2017 0:29,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-13697,29/08/2017 15:32,25/08/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3949,29/08/2017 15:29,27/09/2012 0:55,7.8,20, Improper Input Validation,nan
CVE-2017-11475,29/08/2017 15:20,20/07/2017 4:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0637,29/08/2017 15:14,27/03/2009 16:30,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-4699,29/08/2017 14:54,24/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1801,29/08/2017 14:50,24/08/2017 20:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4460,29/08/2017 14:49,22/08/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2015-3617,29/08/2017 14:42,22/08/2017 15:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-12844,29/08/2017 14:36,23/08/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5341,29/08/2017 14:36,18/08/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1800,29/08/2017 14:33,24/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2016-2102,29/08/2017 14:27,22/08/2017 18:29,5.0,287, Improper Authentication,nan
CVE-2017-11160,29/08/2017 14:23,18/08/2017 19:29,4.6,426, Untrusted Search Path,nan
CVE-2015-1817,29/08/2017 14:04,18/08/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12938,29/08/2017 14:00,18/08/2017 13:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12637,29/08/2017 1:35,7/08/2017 20:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5175,29/08/2017 1:35,31/07/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2014-5174,29/08/2017 1:35,31/07/2014 14:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-5148,29/08/2017 1:35,26/10/2014 20:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5110,29/08/2017 1:35,28/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5109,29/08/2017 1:35,28/07/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5100,29/08/2017 1:35,25/07/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5094,29/08/2017 1:35,20/10/2014 15:55,5.0,200, Information Exposure,nan
CVE-2014-5015,29/08/2017 1:35,24/07/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5009,29/08/2017 1:35,31/03/2017 16:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-4975,29/08/2017 1:35,15/11/2014 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4974,29/08/2017 1:35,4/11/2014 16:55,2.1,200, Information Exposure,nan
CVE-2014-4947,29/08/2017 1:35,22/07/2014 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4943,29/08/2017 1:35,19/07/2014 19:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-4910,29/08/2017 1:35,24/07/2014 14:55,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4844,29/08/2017 1:35,17/12/2014 0:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4840,29/08/2017 1:35,19/10/2014 1:55,7.5,20, Improper Input Validation,nan
CVE-2014-4839,29/08/2017 1:35,29/10/2014 10:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4838,29/08/2017 1:35,19/10/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4837,29/08/2017 1:35,19/10/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4836,29/08/2017 1:35,19/10/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4835,29/08/2017 1:35,17/01/2015 11:59,2.1,200, Information Exposure,nan
CVE-2014-4833,29/08/2017 1:35,19/10/2014 1:55,6.5,20, Improper Input Validation,nan
CVE-2014-4832,29/08/2017 1:35,28/11/2014 2:59,4.3,200, Information Exposure,nan
CVE-2014-4831,29/08/2017 1:35,28/11/2014 2:59,5.8,287, Improper Authentication,nan
CVE-2014-4830,29/08/2017 1:35,19/10/2014 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4829,29/08/2017 1:35,28/11/2014 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4828,29/08/2017 1:35,19/10/2014 1:55,4.3,20, Improper Input Validation,nan
CVE-2014-4827,29/08/2017 1:35,19/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4826,29/08/2017 1:35,18/09/2014 10:55,4.3,200, Information Exposure,nan
CVE-2014-4825,29/08/2017 1:35,19/10/2014 1:55,4.3,310, Cryptographic Issues,nan
CVE-2014-4824,29/08/2017 1:35,18/09/2014 10:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4823,29/08/2017 1:35,3/10/2014 1:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-4822,29/08/2017 1:35,19/10/2014 1:55,1.9,255, Credentials Management,nan
CVE-2014-4821,29/08/2017 1:35,28/10/2014 19:55,5.0,200, Information Exposure,nan
CVE-2014-4820,29/08/2017 1:35,18/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4819,29/08/2017 1:35,18/09/2014 10:55,4.0,200, Information Exposure,nan
CVE-2014-4817,29/08/2017 1:35,18/11/2014 23:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4816,29/08/2017 1:35,23/09/2014 22:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4814,29/08/2017 1:35,28/10/2014 19:55,3.5,399, Resource Management Errors,nan
CVE-2014-4813,29/08/2017 1:35,13/02/2015 2:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-4812,29/08/2017 1:35,26/10/2014 18:55,1.8,200, Information Exposure,nan
CVE-2014-4811,29/08/2017 1:35,12/09/2014 1:55,7.5,255, Credentials Management,nan
CVE-2014-4810,29/08/2017 1:35,5/11/2014 11:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4807,29/08/2017 1:35,23/11/2014 0:59,4.0,399, Resource Management Errors,nan
CVE-2014-4806,29/08/2017 1:35,29/08/2014 9:55,2.1,310, Cryptographic Issues,nan
CVE-2014-4805,29/08/2017 1:35,4/09/2014 10:55,2.1,200, Information Exposure,nan
CVE-2014-4804,29/08/2017 1:35,14/02/2015 2:59,4.3,200, Information Exposure,nan
CVE-2014-4802,29/08/2017 1:35,7/10/2014 10:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4801,29/08/2017 1:35,19/12/2014 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4793,29/08/2017 1:35,2/10/2014 0:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4792,29/08/2017 1:35,12/09/2014 1:55,4.0,399, Resource Management Errors,nan
CVE-2014-4790,29/08/2017 1:35,26/08/2014 10:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-4789,29/08/2017 1:35,10/09/2014 10:55,6.8,384, Session Fixation,nan
CVE-2014-4788,29/08/2017 1:35,10/09/2014 10:55,5.0,255, Credentials Management,nan
CVE-2014-4787,29/08/2017 1:35,10/09/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4786,29/08/2017 1:35,10/09/2014 10:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-4785,29/08/2017 1:35,10/09/2014 10:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4784,29/08/2017 1:35,10/09/2014 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4783,29/08/2017 1:35,10/09/2014 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4781,29/08/2017 1:35,13/02/2015 2:59,5.0,200, Information Exposure,nan
CVE-2014-4775,29/08/2017 1:35,17/08/2014 23:55,5.0,255, Credentials Management,nan
CVE-2014-4771,29/08/2017 1:35,13/02/2015 2:59,3.5,399, Resource Management Errors,nan
CVE-2014-4770,29/08/2017 1:35,23/09/2014 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4767,29/08/2017 1:35,22/08/2014 1:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4766,29/08/2017 1:35,23/10/2014 1:55,5.0,200, Information Exposure,nan
CVE-2014-4765,29/08/2017 1:35,2/10/2014 0:55,5.0,200, Information Exposure,nan
CVE-2014-4763,29/08/2017 1:35,15/09/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4762,29/08/2017 1:35,12/09/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4761,29/08/2017 1:35,10/10/2014 10:55,4.0,200, Information Exposure,nan
CVE-2014-4759,29/08/2017 1:35,4/09/2014 10:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4758,29/08/2017 1:35,4/09/2014 10:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4757,29/08/2017 1:35,12/08/2014 0:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4751,29/08/2017 1:35,12/08/2014 5:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4750,29/08/2017 1:35,20/08/2014 11:17,2.9,200, Information Exposure,nan
CVE-2014-4749,29/08/2017 1:35,20/08/2014 11:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4748,29/08/2017 1:35,26/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4746,29/08/2017 1:35,12/08/2014 5:01,5.0,200, Information Exposure,nan
CVE-2014-4738,29/08/2017 1:35,11/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4652,29/08/2017 1:35,3/07/2014 4:22,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-4647,29/08/2017 1:35,7/08/2014 11:13,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4639,29/08/2017 1:35,7/01/2015 2:59,5.0,189, Numeric Errors,nan
CVE-2014-4632,29/08/2017 1:35,1/02/2015 2:59,4.3,310, Cryptographic Issues,nan
CVE-2014-4627,29/08/2017 1:35,7/11/2014 11:55,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4623,29/08/2017 1:35,25/10/2014 10:55,4.3,310, Cryptographic Issues,nan
CVE-2014-4622,29/08/2017 1:35,17/09/2014 10:55,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4621,29/08/2017 1:35,17/09/2014 10:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4620,29/08/2017 1:35,25/10/2014 10:55,2.1,200, Information Exposure,nan
CVE-2014-4619,29/08/2017 1:35,28/08/2014 1:55,9.3,287, Improper Authentication,nan
CVE-2014-4618,29/08/2017 1:35,20/08/2014 11:17,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4589,29/08/2017 1:35,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4463,29/08/2017 1:35,18/11/2014 11:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4460,29/08/2017 1:35,18/11/2014 11:59,2.1,200, Information Exposure,nan
CVE-2014-4458,29/08/2017 1:35,18/11/2014 11:59,5.0,200, Information Exposure,nan
CVE-2014-4457,29/08/2017 1:35,18/11/2014 11:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4453,29/08/2017 1:35,18/11/2014 11:59,5.0,200, Information Exposure,nan
CVE-2014-4451,29/08/2017 1:35,18/11/2014 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-4450,29/08/2017 1:35,22/10/2014 10:55,1.9,255, Credentials Management,nan
CVE-2014-4449,29/08/2017 1:35,22/10/2014 10:55,6.8,310, Cryptographic Issues,nan
CVE-2014-4448,29/08/2017 1:35,22/10/2014 10:55,1.9,310, Cryptographic Issues,nan
CVE-2014-4447,29/08/2017 1:35,18/10/2014 1:55,1.9,310, Cryptographic Issues,nan
CVE-2014-4446,29/08/2017 1:35,18/10/2014 1:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4444,29/08/2017 1:35,18/10/2014 1:55,4.4,287, Improper Authentication,nan
CVE-2014-4443,29/08/2017 1:35,18/10/2014 1:55,7.8,20, Improper Input Validation,nan
CVE-2014-4442,29/08/2017 1:35,18/10/2014 1:55,4.7,20, Improper Input Validation,nan
CVE-2014-4441,29/08/2017 1:35,18/10/2014 1:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-4440,29/08/2017 1:35,18/10/2014 1:55,2.6,200, Information Exposure,nan
CVE-2014-4439,29/08/2017 1:35,18/10/2014 1:55,4.3,200, Information Exposure,nan
CVE-2014-4438,29/08/2017 1:35,18/10/2014 1:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-4437,29/08/2017 1:35,18/10/2014 1:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-4436,29/08/2017 1:35,18/10/2014 1:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4435,29/08/2017 1:35,18/10/2014 1:55,4.4,287, Improper Authentication,nan
CVE-2014-4434,29/08/2017 1:35,18/10/2014 1:55,4.9,20, Improper Input Validation,nan
CVE-2014-4433,29/08/2017 1:35,18/10/2014 1:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4432,29/08/2017 1:35,18/10/2014 1:55,4.7,310, Cryptographic Issues,nan
CVE-2014-4431,29/08/2017 1:35,18/10/2014 1:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4430,29/08/2017 1:35,18/10/2014 1:55,4.7,310, Cryptographic Issues,nan
CVE-2014-4428,29/08/2017 1:35,18/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4427,29/08/2017 1:35,18/10/2014 1:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4426,29/08/2017 1:35,18/10/2014 1:55,4.3,200, Information Exposure,nan
CVE-2014-4425,29/08/2017 1:35,18/10/2014 1:55,4.6,287, Improper Authentication,nan
CVE-2014-4424,29/08/2017 1:35,19/09/2014 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4423,29/08/2017 1:35,18/09/2014 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4417,29/08/2017 1:35,18/10/2014 1:55,5.0,20, Improper Input Validation,nan
CVE-2014-4416,29/08/2017 1:35,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4409,29/08/2017 1:35,18/09/2014 10:55,4.3,200, Information Exposure,nan
CVE-2014-4403,29/08/2017 1:35,19/09/2014 10:55,2.1,200, Information Exposure,nan
CVE-2014-4402,29/08/2017 1:34,19/09/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4401,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4400,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4399,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4398,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4397,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4396,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4395,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4394,29/08/2017 1:34,19/09/2014 10:55,6.9,20, Improper Input Validation,nan
CVE-2014-4393,29/08/2017 1:34,19/09/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4391,29/08/2017 1:34,18/10/2014 1:55,6.8,310, Cryptographic Issues,nan
CVE-2014-4390,29/08/2017 1:34,19/09/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-4386,29/08/2017 1:34,18/09/2014 10:55,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-4384,29/08/2017 1:34,18/09/2014 10:55,1.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4368,29/08/2017 1:34,18/09/2014 10:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-4367,29/08/2017 1:34,18/09/2014 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4366,29/08/2017 1:34,18/09/2014 10:55,5.0,255, Credentials Management,nan
CVE-2014-4362,29/08/2017 1:34,18/09/2014 10:55,5.0,200, Information Exposure,nan
CVE-2014-4361,29/08/2017 1:34,18/09/2014 10:55,5.0,200, Information Exposure,nan
CVE-2014-4356,29/08/2017 1:34,18/09/2014 10:55,2.1,200, Information Exposure,nan
CVE-2014-4354,29/08/2017 1:34,18/09/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-4353,29/08/2017 1:34,18/09/2014 10:55,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-4352,29/08/2017 1:34,18/09/2014 10:55,2.1,310, Cryptographic Issues,nan
CVE-2014-4351,29/08/2017 1:34,18/10/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4350,29/08/2017 1:34,19/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4344,29/08/2017 1:34,14/08/2014 5:01,7.8,476, NULL Pointer Dereference,nan
CVE-2014-4343,29/08/2017 1:34,14/08/2014 5:01,7.6,415, Double Free,nan
CVE-2014-4341,29/08/2017 1:34,20/07/2014 11:12,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4329,29/08/2017 1:34,19/06/2014 10:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4313,29/08/2017 1:34,10/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4312,29/08/2017 1:34,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4200,29/08/2017 1:34,28/08/2014 15:14,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2014-4199,29/08/2017 1:34,28/08/2014 15:14,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4034,29/08/2017 1:34,11/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3977,29/08/2017 1:34,8/06/2014 23:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3952,29/08/2017 1:34,15/07/2014 14:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3867,29/08/2017 1:34,26/05/2014 11:14,5.0,200, Information Exposure,nan
CVE-2014-3796,29/08/2017 1:34,15/09/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-3779,29/08/2017 1:34,7/01/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3677,29/08/2017 1:34,22/10/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3676,29/08/2017 1:34,22/10/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3664,29/08/2017 1:34,15/10/2014 14:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3618,29/08/2017 1:34,8/09/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3584,29/08/2017 1:34,30/10/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-3581,29/08/2017 1:34,10/10/2014 10:55,5.0,399, Resource Management Errors,nan
CVE-2014-3575,29/08/2017 1:34,27/08/2014 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-3563,29/08/2017 1:34,22/08/2014 17:55,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3561,29/08/2017 1:34,5/12/2014 16:59,2.1,200, Information Exposure,nan
CVE-2014-3559,29/08/2017 1:34,6/08/2014 19:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3554,29/08/2017 1:34,31/07/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3534,29/08/2017 1:34,1/08/2014 11:13,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3512,29/08/2017 1:34,13/08/2014 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3507,29/08/2017 1:34,13/08/2014 23:55,5.0,399, Resource Management Errors,nan
CVE-2014-3506,29/08/2017 1:34,13/08/2014 23:55,5.0,399, Resource Management Errors,nan
CVE-2014-3481,29/08/2017 1:34,7/07/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-3472,29/08/2017 1:34,19/08/2014 18:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3464,29/08/2017 1:34,19/08/2014 18:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3446,29/08/2017 1:34,30/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3442,29/08/2017 1:34,23/05/2014 14:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3436,29/08/2017 1:34,22/08/2014 1:55,5.0,310, Cryptographic Issues,nan
CVE-2014-3434,29/08/2017 1:34,6/08/2014 19:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3409,29/08/2017 1:34,25/10/2014 10:55,6.1,399, Resource Management Errors,nan
CVE-2014-3380,29/08/2017 1:34,24/09/2014 0:55,5.0,399, Resource Management Errors,nan
CVE-2014-3379,29/08/2017 1:34,20/09/2014 10:55,6.1,20, Improper Input Validation,nan
CVE-2014-3378,29/08/2017 1:34,20/09/2014 10:55,5.0,20, Improper Input Validation,nan
CVE-2014-3377,29/08/2017 1:34,20/09/2014 10:55,4.0,20, Improper Input Validation,nan
CVE-2014-3376,29/08/2017 1:34,20/09/2014 10:55,5.0,20, Improper Input Validation,nan
CVE-2014-3375,29/08/2017 1:34,31/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3374,29/08/2017 1:34,31/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3373,29/08/2017 1:34,31/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3372,29/08/2017 1:34,31/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3367,29/08/2017 1:34,20/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3366,29/08/2017 1:34,31/10/2014 10:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3365,29/08/2017 1:34,12/02/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3363,29/08/2017 1:34,12/09/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3362,29/08/2017 1:34,12/09/2014 1:55,7.8,399, Resource Management Errors,nan
CVE-2014-3361,29/08/2017 1:34,25/09/2014 10:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3360,29/08/2017 1:34,25/09/2014 10:55,7.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3359,29/08/2017 1:34,25/09/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-3358,29/08/2017 1:34,25/09/2014 10:55,7.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3357,29/08/2017 1:34,25/09/2014 10:55,7.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3356,29/08/2017 1:34,25/09/2014 10:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3355,29/08/2017 1:34,25/09/2014 10:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3354,29/08/2017 1:34,25/09/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-3353,29/08/2017 1:34,4/09/2014 10:55,7.1,399, Resource Management Errors,nan
CVE-2014-3352,29/08/2017 1:34,30/08/2014 9:55,4.3,20, Improper Input Validation,nan
CVE-2014-3351,29/08/2017 1:34,29/08/2014 9:55,5.0,200, Information Exposure,nan
CVE-2014-3350,29/08/2017 1:34,29/08/2014 9:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3349,29/08/2017 1:34,29/08/2014 9:55,4.0,20, Improper Input Validation,nan
CVE-2014-3348,29/08/2017 1:34,10/09/2014 10:55,5.0,20, Improper Input Validation,nan
CVE-2014-3347,29/08/2017 1:34,28/08/2014 23:55,5.4,399, Resource Management Errors,nan
CVE-2014-3346,29/08/2017 1:34,29/08/2014 9:55,6.3,20, Improper Input Validation,nan
CVE-2014-3345,29/08/2017 1:34,28/08/2014 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3344,29/08/2017 1:34,28/08/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3343,29/08/2017 1:34,10/09/2014 10:55,4.3,20, Improper Input Validation,nan
CVE-2014-3341,29/08/2017 1:34,19/08/2014 11:16,5.0,200, Information Exposure,nan
CVE-2014-3340,29/08/2017 1:34,20/08/2014 11:17,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3339,29/08/2017 1:34,12/08/2014 23:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3338,29/08/2017 1:34,12/08/2014 23:55,8.5,20, Improper Input Validation,nan
CVE-2014-3337,29/08/2017 1:34,12/08/2014 22:55,6.8,20, Improper Input Validation,nan
CVE-2014-3336,29/08/2017 1:34,11/08/2014 20:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3335,29/08/2017 1:34,26/08/2014 10:55,4.6,20, Improper Input Validation,nan
CVE-2014-3333,29/08/2017 1:34,11/08/2014 20:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3331,29/08/2017 1:34,20/08/2014 11:17,4.3,20, Improper Input Validation,nan
CVE-2014-3330,29/08/2017 1:34,11/08/2014 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3329,29/08/2017 1:34,29/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3328,29/08/2017 1:34,26/07/2014 11:11,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2014-3327,29/08/2017 1:34,11/08/2014 22:55,7.8,20, Improper Input Validation,nan
CVE-2014-3326,29/08/2017 1:34,26/07/2014 11:11,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3324,29/08/2017 1:34,26/07/2014 11:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3319,29/08/2017 1:34,14/07/2014 21:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3318,29/08/2017 1:34,10/07/2014 11:06,4.0,20, Improper Input Validation,nan
CVE-2014-3317,29/08/2017 1:34,14/07/2014 21:55,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3316,29/08/2017 1:34,10/07/2014 11:06,4.0,20, Improper Input Validation,nan
CVE-2014-3315,29/08/2017 1:34,10/07/2014 11:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3313,29/08/2017 1:34,9/07/2014 11:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3312,29/08/2017 1:34,9/07/2014 11:07,6.9,287, Improper Authentication,nan
CVE-2014-3311,29/08/2017 1:34,10/07/2014 11:06,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3310,29/08/2017 1:34,10/07/2014 11:06,4.3,20, Improper Input Validation,nan
CVE-2014-3309,29/08/2017 1:34,9/07/2014 11:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3305,29/08/2017 1:34,26/07/2014 11:11,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3304,29/08/2017 1:34,28/07/2014 17:55,5.0,200, Information Exposure,nan
CVE-2014-3303,29/08/2017 1:34,28/07/2014 17:55,4.0,200, Information Exposure,nan
CVE-2014-3302,29/08/2017 1:34,1/08/2014 5:12,5.8,310, Cryptographic Issues,nan
CVE-2014-3301,29/08/2017 1:34,26/07/2014 11:11,5.0,200, Information Exposure,nan
CVE-2014-3293,29/08/2017 1:34,28/10/2014 19:55,5.0,399, Resource Management Errors,nan
CVE-2014-3177,29/08/2017 1:34,27/08/2014 1:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3176,29/08/2017 1:34,27/08/2014 1:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3174,29/08/2017 1:34,27/08/2014 1:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3173,29/08/2017 1:34,27/08/2014 1:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3172,29/08/2017 1:34,27/08/2014 1:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-3170,29/08/2017 1:34,27/08/2014 1:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-3138,29/08/2017 1:34,2/05/2014 0:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3135,29/08/2017 1:34,30/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3106,29/08/2017 1:34,23/09/2014 21:55,5.0,287, Improper Authentication,nan
CVE-2014-3105,29/08/2017 1:34,23/09/2014 21:55,5.0,200, Information Exposure,nan
CVE-2014-3104,29/08/2017 1:34,23/09/2014 21:55,5.0,399, Resource Management Errors,nan
CVE-2014-3103,29/08/2017 1:34,23/09/2014 21:55,5.0,200, Information Exposure,nan
CVE-2014-3102,29/08/2017 1:34,12/08/2014 5:01,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3101,29/08/2017 1:34,23/09/2014 20:55,5.0,287, Improper Authentication,nan
CVE-2014-3096,29/08/2017 1:34,10/01/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3095,29/08/2017 1:34,4/09/2014 10:55,3.5,20, Improper Input Validation,nan
CVE-2014-3094,29/08/2017 1:34,4/09/2014 10:55,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3093,29/08/2017 1:34,29/08/2014 9:55,2.1,310, Cryptographic Issues,nan
CVE-2014-3092,29/08/2017 1:34,12/09/2014 1:55,5.0,200, Information Exposure,nan
CVE-2014-3091,29/08/2017 1:34,13/10/2014 1:55,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3089,29/08/2017 1:34,22/08/2014 1:55,4.9,310, Cryptographic Issues,nan
CVE-2014-3087,29/08/2017 1:34,17/08/2014 23:55,4.0,200, Information Exposure,nan
CVE-2014-3085,29/08/2017 1:34,17/08/2014 23:55,7.1,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3084,29/08/2017 1:34,29/08/2014 9:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3083,29/08/2017 1:34,22/08/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3081,29/08/2017 1:34,17/08/2014 23:55,6.3,200, Information Exposure,nan
CVE-2014-3080,29/08/2017 1:34,17/08/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3079,29/08/2017 1:34,10/09/2014 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3077,29/08/2017 1:34,15/09/2014 14:55,2.1,200, Information Exposure,nan
CVE-2014-3076,29/08/2017 1:34,11/08/2014 22:55,5.0,200, Information Exposure,nan
CVE-2014-3075,29/08/2017 1:34,4/09/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3071,29/08/2017 1:34,26/07/2014 11:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3070,29/08/2017 1:34,22/08/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3068,29/08/2017 1:34,2/12/2014 1:59,6.4,255, Credentials Management,nan
CVE-2014-3066,29/08/2017 1:34,2/07/2014 10:35,5.0,200, Information Exposure,nan
CVE-2014-3064,29/08/2017 1:34,19/07/2014 5:09,6.3,200, Information Exposure,nan
CVE-2014-3063,29/08/2017 1:34,17/08/2014 23:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3061,29/08/2017 1:34,26/08/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3058,29/08/2017 1:34,11/12/2014 16:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3057,29/08/2017 1:34,29/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3056,29/08/2017 1:34,29/07/2014 20:55,5.0,200, Information Exposure,nan
CVE-2014-3055,29/08/2017 1:34,29/07/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3053,29/08/2017 1:34,21/06/2014 15:55,8.0,287, Improper Authentication,nan
CVE-2014-3052,29/08/2017 1:34,21/06/2014 15:55,3.3,16, Configuration,nan
CVE-2014-3051,29/08/2017 1:34,29/10/2014 10:55,4.3,310, Cryptographic Issues,nan
CVE-2014-3050,29/08/2017 1:34,29/07/2014 20:55,3.5,200, Information Exposure,nan
CVE-2014-3042,29/08/2017 1:34,10/06/2014 11:19,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3041,29/08/2017 1:34,26/08/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3040,29/08/2017 1:34,26/08/2014 10:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3038,29/08/2017 1:34,8/06/2014 23:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-3037,29/08/2017 1:34,10/09/2014 10:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3035,29/08/2017 1:34,26/08/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3034,29/08/2017 1:34,26/08/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3033,29/08/2017 1:34,26/08/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3032,29/08/2017 1:34,17/01/2015 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3031,29/08/2017 1:34,12/08/2014 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3025,29/08/2017 1:34,30/07/2014 11:15,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3024,29/08/2017 1:34,29/08/2014 9:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3022,29/08/2017 1:34,22/08/2014 1:55,4.3,200, Information Exposure,nan
CVE-2014-3021,29/08/2017 1:34,19/10/2014 1:55,5.0,20, Improper Input Validation,nan
CVE-2014-3020,29/08/2017 1:34,29/07/2014 20:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3019,29/08/2017 1:34,17/01/2015 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3018,29/08/2017 1:34,17/01/2015 11:59,7.8,399, Resource Management Errors,nan
CVE-2014-3015,29/08/2017 1:34,26/05/2014 0:25,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3014,29/08/2017 1:34,26/05/2014 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3013,29/08/2017 1:34,18/06/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3010,29/08/2017 1:34,30/05/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3009,29/08/2017 1:34,1/08/2014 5:12,3.5,20, Improper Input Validation,nan
CVE-2014-3008,29/08/2017 1:34,28/04/2014 14:09,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2995,29/08/2017 1:34,17/10/2014 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2980,29/08/2017 1:34,28/04/2014 14:09,4.3,20, Improper Input Validation,nan
CVE-2014-2892,29/08/2017 1:34,22/04/2014 14:23,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2749,29/08/2017 1:34,10/04/2014 20:55,5.0,200, Information Exposure,nan
CVE-2014-2748,29/08/2017 1:34,10/04/2014 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2718,29/08/2017 1:34,4/11/2014 22:55,7.1,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-2708,29/08/2017 1:34,10/04/2014 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2673,29/08/2017 1:34,1/04/2014 6:35,4.7,20, Improper Input Validation,nan
CVE-2014-2671,29/08/2017 1:34,31/03/2014 14:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2659,29/08/2017 1:34,22/04/2014 14:23,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2633,29/08/2017 1:34,23/08/2014 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2598,29/08/2017 1:34,5/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2593,29/08/2017 1:34,29/08/2014 13:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2588,29/08/2017 1:34,24/03/2014 16:38,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2587,29/08/2017 1:34,24/03/2014 16:38,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2578,29/08/2017 1:34,2/04/2014 16:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2559,29/08/2017 1:34,17/10/2014 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2526,29/08/2017 1:34,25/03/2014 18:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2521,29/08/2017 1:34,20/08/2014 11:17,6.3,200, Information Exposure,nan
CVE-2014-2520,29/08/2017 1:34,20/08/2014 11:17,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-2518,29/08/2017 1:34,20/08/2014 11:17,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2515,29/08/2017 1:34,20/08/2014 11:17,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2511,29/08/2017 1:34,20/08/2014 11:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2341,29/08/2017 1:34,22/04/2014 13:06,6.8,287, Improper Authentication,nan
CVE-2014-2339,29/08/2017 1:34,19/03/2014 14:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2336,29/08/2017 1:34,31/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2335,29/08/2017 1:34,31/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2334,29/08/2017 1:34,31/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2333,29/08/2017 1:34,11/04/2014 14:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2318,29/08/2017 1:34,11/03/2014 13:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2315,29/08/2017 1:34,9/03/2014 13:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2291,29/08/2017 1:34,14/03/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2280,29/08/2017 1:34,20/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2279,29/08/2017 1:34,17/10/2014 23:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2276,29/08/2017 1:34,21/03/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2273,29/08/2017 1:34,5/12/2014 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-2263,29/08/2017 1:34,1/03/2014 0:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2238,29/08/2017 1:34,5/03/2014 16:37,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2153,29/08/2017 1:34,12/02/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2152,29/08/2017 1:34,12/02/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2147,29/08/2017 1:34,12/02/2015 1:59,4.3,20, Improper Input Validation,nan
CVE-2014-2124,29/08/2017 1:34,21/03/2014 1:04,7.1,399, Resource Management Errors,nan
CVE-2014-2122,29/08/2017 1:34,19/03/2014 1:15,5.0,20, Improper Input Validation,nan
CVE-2014-2067,29/08/2017 1:34,1/03/2014 0:01,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2059,29/08/2017 1:34,1/03/2014 0:01,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2021,29/08/2017 1:34,25/10/2014 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2009,29/08/2017 1:34,12/09/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-2008,29/08/2017 1:34,12/09/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1921,29/08/2017 1:34,14/02/2014 15:55,7.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-1914,29/08/2017 1:34,7/02/2014 15:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1907,29/08/2017 1:34,6/03/2014 15:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1906,29/08/2017 1:34,6/03/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1877,29/08/2017 1:34,13/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1875,29/08/2017 1:34,6/10/2014 23:55,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1869,29/08/2017 1:34,8/02/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1837,29/08/2017 1:34,30/01/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1699,29/08/2017 1:34,7/02/2014 4:52,5.0,399, Resource Management Errors,nan
CVE-2014-1698,29/08/2017 1:34,7/02/2014 4:52,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1696,29/08/2017 1:34,7/02/2014 4:52,5.0,310, Cryptographic Issues,nan
CVE-2014-1692,29/08/2017 1:34,29/01/2014 16:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1683,29/08/2017 1:34,29/01/2014 18:55,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2014-1679,29/08/2017 1:34,5/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1640,29/08/2017 1:34,28/01/2014 0:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1639,29/08/2017 1:34,28/01/2014 0:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1638,29/08/2017 1:34,28/01/2014 0:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1626,29/08/2017 1:34,26/01/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1624,29/08/2017 1:34,28/01/2014 0:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1620,29/08/2017 1:34,21/01/2014 15:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1619,29/08/2017 1:34,21/01/2014 15:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1618,29/08/2017 1:34,21/01/2014 15:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1611,29/08/2017 1:34,30/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1597,29/08/2017 1:34,27/02/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1568,29/08/2017 1:34,25/09/2014 17:55,7.5,310, Cryptographic Issues,nan
CVE-2014-1473,29/08/2017 1:34,16/01/2014 5:05,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1472,29/08/2017 1:34,16/01/2014 5:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1469,29/08/2017 1:34,18/08/2014 11:15,4.9,310, Cryptographic Issues,nan
CVE-2014-1466,29/08/2017 1:34,15/01/2014 16:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1458,29/08/2017 1:34,4/02/2014 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1456,29/08/2017 1:34,1/03/2014 0:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1446,29/08/2017 1:34,18/01/2014 22:55,1.9,399, Resource Management Errors,nan
CVE-2014-1445,29/08/2017 1:34,18/01/2014 22:55,2.1,399, Resource Management Errors,nan
CVE-2014-1444,29/08/2017 1:34,18/01/2014 22:55,1.7,399, Resource Management Errors,nan
CVE-2014-1403,29/08/2017 1:34,5/02/2014 15:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1391,29/08/2017 1:34,19/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1390,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1389,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1388,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1387,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1386,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1385,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1384,29/08/2017 1:34,14/08/2014 11:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1252,29/08/2017 1:34,24/01/2014 15:08,7.5,415, Double Free,nan
CVE-2014-1242,29/08/2017 1:34,23/01/2014 19:55,5.8,310, Cryptographic Issues,nan
CVE-2014-1237,29/08/2017 1:34,11/02/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1235,29/08/2017 1:34,7/08/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1232,29/08/2017 1:34,8/01/2014 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1211,29/08/2017 1:34,17/01/2014 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1204,29/08/2017 1:34,31/01/2014 15:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0978,29/08/2017 1:34,10/01/2014 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0977,29/08/2017 1:34,10/01/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0970,29/08/2017 1:34,19/07/2014 5:09,3.5,20, Improper Input Validation,nan
CVE-2014-0969,29/08/2017 1:34,17/08/2014 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0968,29/08/2017 1:34,19/07/2014 5:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0967,29/08/2017 1:34,19/07/2014 5:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0966,29/08/2017 1:34,17/08/2014 23:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0965,29/08/2017 1:34,22/08/2014 1:55,4.3,200, Information Exposure,nan
CVE-2014-0964,29/08/2017 1:34,16/05/2014 11:12,7.1,399, Resource Management Errors,nan
CVE-2014-0963,29/08/2017 1:34,8/05/2014 10:55,7.1,399, Resource Management Errors,nan
CVE-2014-0961,29/08/2017 1:34,8/06/2014 18:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0960,29/08/2017 1:34,14/06/2014 11:18,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-0959,29/08/2017 1:34,22/05/2014 11:14,4.0,20, Improper Input Validation,nan
CVE-2014-0957,29/08/2017 1:34,18/07/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0956,29/08/2017 1:34,22/05/2014 11:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0955,29/08/2017 1:34,22/05/2014 11:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0954,29/08/2017 1:34,22/05/2014 11:14,6.8,20, Improper Input Validation,nan
CVE-2014-0953,29/08/2017 1:34,12/08/2014 5:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0952,29/08/2017 1:34,22/05/2014 11:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0951,29/08/2017 1:34,22/05/2014 11:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0949,29/08/2017 1:34,22/05/2014 11:14,5.0,399, Resource Management Errors,nan
CVE-2014-0946,29/08/2017 1:34,9/05/2014 10:50,4.3,200, Information Exposure,nan
CVE-2014-0945,29/08/2017 1:34,9/05/2014 10:50,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0944,29/08/2017 1:34,9/05/2014 10:50,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0942,29/08/2017 1:34,1/05/2014 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0941,29/08/2017 1:34,1/05/2014 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0940,29/08/2017 1:34,7/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0936,29/08/2017 1:34,8/06/2014 23:55,4.3,310, Cryptographic Issues,nan
CVE-2014-0933,29/08/2017 1:34,16/05/2014 11:12,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0932,29/08/2017 1:34,21/04/2014 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0929,29/08/2017 1:34,8/06/2014 23:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0924,29/08/2017 1:34,15/04/2014 23:13,4.6,20, Improper Input Validation,nan
CVE-2014-0923,29/08/2017 1:34,15/04/2014 23:13,4.3,20, Improper Input Validation,nan
CVE-2014-0922,29/08/2017 1:34,15/04/2014 23:13,4.3,20, Improper Input Validation,nan
CVE-2014-0921,29/08/2017 1:34,15/04/2014 23:13,4.3,20, Improper Input Validation,nan
CVE-2014-0920,29/08/2017 1:34,10/04/2014 23:55,4.0,255, Credentials Management,nan
CVE-2014-0918,29/08/2017 1:34,16/05/2014 11:12,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0917,29/08/2017 1:34,16/05/2014 11:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0913,29/08/2017 1:34,9/05/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0910,29/08/2017 1:34,18/06/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0909,29/08/2017 1:34,10/09/2014 10:55,5.0,200, Information Exposure,nan
CVE-2014-0908,29/08/2017 1:34,10/04/2014 23:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0906,29/08/2017 1:34,26/05/2014 4:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0905,29/08/2017 1:34,17/08/2014 23:55,2.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0904,29/08/2017 1:34,26/03/2014 10:55,7.6,20, Improper Input Validation,nan
CVE-2014-0901,29/08/2017 1:34,2/04/2014 3:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0899,29/08/2017 1:34,11/03/2014 13:01,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0897,29/08/2017 1:34,29/08/2014 9:55,3.5,310, Cryptographic Issues,nan
CVE-2014-0896,29/08/2017 1:34,1/05/2014 17:29,4.3,200, Information Exposure,nan
CVE-2014-0895,29/08/2017 1:34,16/03/2014 14:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0893,29/08/2017 1:34,26/05/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0892,29/08/2017 1:34,23/04/2014 19:55,5.0,200, Information Exposure,nan
CVE-2014-0891,29/08/2017 1:34,28/06/2014 0:55,5.0,200, Information Exposure,nan
CVE-2014-0890,29/08/2017 1:34,6/03/2014 11:55,1.9,255, Credentials Management,nan
CVE-2014-0889,29/08/2017 1:34,29/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0888,29/08/2017 1:34,29/08/2014 9:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0887,29/08/2017 1:34,25/03/2014 20:55,7.1,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0886,29/08/2017 1:34,25/03/2014 20:55,7.1,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0885,29/08/2017 1:34,25/03/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0884,29/08/2017 1:34,25/03/2014 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0879,29/08/2017 1:34,21/03/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0878,29/08/2017 1:34,26/05/2014 19:55,5.8,310, Cryptographic Issues,nan
CVE-2014-0877,29/08/2017 1:34,5/09/2014 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0876,29/08/2017 1:34,17/08/2014 23:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0874,29/08/2017 1:34,28/02/2014 6:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0873,29/08/2017 1:34,16/03/2014 14:06,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0863,29/08/2017 1:34,5/09/2014 1:55,4.0,255, Credentials Management,nan
CVE-2014-0860,29/08/2017 1:34,7/07/2014 11:01,5.0,310, Cryptographic Issues,nan
CVE-2014-0858,29/08/2017 1:34,27/02/2014 20:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0857,29/08/2017 1:34,1/05/2014 17:29,4.0,200, Information Exposure,nan
CVE-2014-0855,29/08/2017 1:34,14/02/2014 13:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0854,29/08/2017 1:34,22/02/2014 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0853,29/08/2017 1:34,26/02/2014 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0852,29/08/2017 1:34,16/08/2014 4:39,4.3,310, Cryptographic Issues,nan
CVE-2014-0850,29/08/2017 1:34,16/03/2014 14:06,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0849,29/08/2017 1:34,26/05/2014 16:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0848,29/08/2017 1:34,26/03/2014 10:55,3.5,310, Cryptographic Issues,nan
CVE-2014-0846,29/08/2017 1:34,4/03/2014 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0845,29/08/2017 1:34,4/03/2014 22:55,4.9,20, Improper Input Validation,nan
CVE-2014-0843,29/08/2017 1:34,26/02/2014 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0842,29/08/2017 1:34,26/02/2014 1:29,5.0,255, Credentials Management,nan
CVE-2014-0840,29/08/2017 1:34,26/02/2014 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0839,29/08/2017 1:34,26/02/2014 1:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0837,29/08/2017 1:34,30/01/2014 5:17,4.3,310, Cryptographic Issues,nan
CVE-2014-0836,29/08/2017 1:34,30/01/2014 5:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0835,29/08/2017 1:34,30/01/2014 5:17,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0834,29/08/2017 1:34,4/02/2014 5:39,4.0,20, Improper Input Validation,nan
CVE-2014-0832,29/08/2017 1:34,1/02/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0830,29/08/2017 1:34,1/02/2014 15:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0829,29/08/2017 1:34,21/03/2014 10:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0828,29/08/2017 1:34,2/04/2014 3:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0827,29/08/2017 1:34,5/04/2014 4:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0825,29/08/2017 1:34,26/05/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0824,29/08/2017 1:34,26/05/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0823,29/08/2017 1:34,1/05/2014 17:29,4.3,200, Information Exposure,nan
CVE-2014-0815,29/08/2017 1:34,6/02/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-0813,29/08/2017 1:34,14/02/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0809,29/08/2017 1:34,24/01/2014 15:08,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0755,29/08/2017 1:34,5/02/2014 5:15,6.9,255, Credentials Management,nan
CVE-2014-0678,29/08/2017 1:34,25/01/2014 22:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0677,29/08/2017 1:34,22/01/2014 21:55,5.0,20, Improper Input Validation,nan
CVE-2014-0676,29/08/2017 1:34,22/01/2014 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0675,29/08/2017 1:34,23/01/2014 4:41,6.4,255, Credentials Management,nan
CVE-2014-0674,29/08/2017 1:34,24/01/2014 4:38,6.8,287, Improper Authentication,nan
CVE-2014-0673,29/08/2017 1:34,25/01/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0672,29/08/2017 1:34,22/01/2014 5:22,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0671,29/08/2017 1:34,22/01/2014 5:22,5.8,20, Improper Input Validation,nan
CVE-2014-0670,29/08/2017 1:34,22/01/2014 5:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0669,29/08/2017 1:34,22/01/2014 5:22,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0668,29/08/2017 1:34,20/01/2014 4:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0667,29/08/2017 1:34,16/01/2014 19:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-0666,29/08/2017 1:34,16/01/2014 19:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0665,29/08/2017 1:34,15/01/2014 16:11,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0664,29/08/2017 1:34,10/01/2014 16:47,6.8,399, Resource Management Errors,nan
CVE-2014-0663,29/08/2017 1:34,10/01/2014 16:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0662,29/08/2017 1:34,22/01/2014 21:55,7.1,20, Improper Input Validation,nan
CVE-2014-0661,29/08/2017 1:34,22/01/2014 21:55,8.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0660,29/08/2017 1:34,22/01/2014 21:55,7.1,20, Improper Input Validation,nan
CVE-2014-0659,29/08/2017 1:34,12/01/2014 18:34,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0658,29/08/2017 1:34,10/01/2014 16:47,5.4,20, Improper Input Validation,nan
CVE-2014-0657,29/08/2017 1:34,8/01/2014 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0656,29/08/2017 1:34,8/01/2014 21:55,4.0,20, Improper Input Validation,nan
CVE-2014-0655,29/08/2017 1:34,8/01/2014 21:55,4.3,20, Improper Input Validation,nan
CVE-2014-0654,29/08/2017 1:34,8/01/2014 21:55,4.3,20, Improper Input Validation,nan
CVE-2014-0653,29/08/2017 1:34,8/01/2014 21:55,4.3,20, Improper Input Validation,nan
CVE-2014-0652,29/08/2017 1:34,8/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0651,29/08/2017 1:34,8/01/2014 21:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0650,29/08/2017 1:34,16/01/2014 19:55,10.0,20, Improper Input Validation,nan
CVE-2014-0649,29/08/2017 1:34,16/01/2014 19:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0648,29/08/2017 1:34,16/01/2014 19:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0641,29/08/2017 1:34,20/08/2014 11:17,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0640,29/08/2017 1:34,20/08/2014 11:17,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0567,29/08/2017 1:34,17/09/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0565,29/08/2017 1:34,17/09/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0563,29/08/2017 1:34,17/09/2014 10:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0562,29/08/2017 1:34,17/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0561,29/08/2017 1:34,17/09/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0560,29/08/2017 1:34,17/09/2014 10:55,10.0,399, Resource Management Errors,nan
CVE-2014-0559,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0557,29/08/2017 1:34,10/09/2014 1:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0556,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0555,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0552,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0551,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0550,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0549,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0548,29/08/2017 1:34,10/09/2014 1:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0547,29/08/2017 1:34,10/09/2014 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0494,29/08/2017 1:34,23/01/2014 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0479,29/08/2017 1:34,6/08/2014 19:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0397,29/08/2017 1:34,6/10/2014 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0351,29/08/2017 1:34,10/09/2014 18:55,5.4,310, Cryptographic Issues,nan
CVE-2014-0329,29/08/2017 1:34,4/02/2014 5:39,9.3,255, Credentials Management,nan
CVE-2014-0173,29/08/2017 1:34,22/04/2014 13:06,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0032,29/08/2017 1:34,14/02/2014 15:55,4.3,20, Improper Input Validation,nan
CVE-2013-7388,29/08/2017 1:34,1/07/2014 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7326,29/08/2017 1:34,14/02/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7322,29/08/2017 1:34,9/03/2014 13:16,4.9,287, Improper Authentication,nan
CVE-2013-7321,29/08/2017 1:34,6/02/2014 16:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7319,29/08/2017 1:34,6/02/2014 16:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7304,29/08/2017 1:34,22/01/2014 19:55,4.3,310, Cryptographic Issues,nan
CVE-2013-7303,29/08/2017 1:34,30/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7300,29/08/2017 1:34,2/02/2014 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7299,29/08/2017 1:34,26/01/2014 20:55,5.0,200, Information Exposure,nan
CVE-2013-7298,29/08/2017 1:34,26/01/2014 20:55,5.0,399, Resource Management Errors,nan
CVE-2013-7296,29/08/2017 1:34,26/01/2014 1:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7281,29/08/2017 1:34,8/01/2014 16:55,4.9,200, Information Exposure,nan
CVE-2013-7279,29/08/2017 1:34,8/01/2014 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7278,29/08/2017 1:34,8/01/2014 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7276,29/08/2017 1:34,8/01/2014 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7274,29/08/2017 1:34,8/01/2014 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7271,29/08/2017 1:34,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7270,29/08/2017 1:34,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7269,29/08/2017 1:34,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7260,29/08/2017 1:34,3/01/2014 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7257,29/08/2017 1:34,3/01/2014 18:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7255,29/08/2017 1:34,3/01/2014 18:54,5.8,20, Improper Input Validation,nan
CVE-2013-7254,29/08/2017 1:34,3/01/2014 18:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7246,29/08/2017 1:34,30/01/2014 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7226,29/08/2017 1:34,18/02/2014 11:55,6.8,189, Numeric Errors,nan
CVE-2013-7216,29/08/2017 1:34,24/12/2013 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7194,29/08/2017 1:34,21/12/2013 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7193,29/08/2017 1:34,21/12/2013 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7192,29/08/2017 1:34,21/12/2013 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7191,29/08/2017 1:34,21/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7190,29/08/2017 1:34,20/12/2013 23:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7189,29/08/2017 1:34,20/12/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7188,29/08/2017 1:34,20/12/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7187,29/08/2017 1:34,20/12/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7186,29/08/2017 1:34,20/12/2013 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7184,29/08/2017 1:34,24/01/2014 15:08,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7143,29/08/2017 1:34,26/01/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7142,29/08/2017 1:34,26/01/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7141,29/08/2017 1:34,26/01/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7136,29/08/2017 1:34,19/12/2013 22:55,9.3,310, Cryptographic Issues,nan
CVE-2013-7130,29/08/2017 1:34,6/02/2014 17:00,7.1,200, Information Exposure,nan
CVE-2013-7129,29/08/2017 1:34,17/12/2013 16:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7127,29/08/2017 1:34,17/12/2013 15:21,2.1,310, Cryptographic Issues,nan
CVE-2013-7104,29/08/2017 1:34,14/12/2013 17:21,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-7103,29/08/2017 1:34,14/12/2013 17:21,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-7100,29/08/2017 1:34,19/12/2013 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7092,29/08/2017 1:34,13/12/2013 18:07,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7086,29/08/2017 1:34,19/12/2013 4:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7085,29/08/2017 1:34,14/12/2013 17:21,5.8,20, Improper Input Validation,nan
CVE-2013-7082,29/08/2017 1:34,21/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7078,29/08/2017 1:34,19/01/2014 18:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7077,29/08/2017 1:34,21/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7076,29/08/2017 1:34,21/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7074,29/08/2017 1:34,21/12/2013 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7067,29/08/2017 1:34,19/12/2013 4:24,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-7057,29/08/2017 1:34,4/11/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7050,29/08/2017 1:34,13/12/2013 18:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7049,29/08/2017 1:34,23/12/2013 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7043,29/08/2017 1:34,10/12/2013 19:55,8.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7042,29/08/2017 1:34,10/12/2013 16:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-7034,29/08/2017 1:34,5/05/2014 17:06,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7032,29/08/2017 1:34,14/02/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7030,29/08/2017 1:34,12/12/2013 17:55,5.0,310, Cryptographic Issues,nan
CVE-2013-7002,29/08/2017 1:34,21/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6990,29/08/2017 1:34,30/04/2014 14:22,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6987,29/08/2017 1:34,31/12/2013 16:04,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6983,29/08/2017 1:34,31/12/2013 15:16,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6982,29/08/2017 1:34,8/01/2014 21:55,4.3,20, Improper Input Validation,nan
CVE-2013-6979,29/08/2017 1:34,23/12/2013 22:55,5.4,287, Improper Authentication,nan
CVE-2013-6978,29/08/2017 1:34,21/12/2013 14:22,4.0,200, Information Exposure,nan
CVE-2013-6936,29/08/2017 1:34,4/12/2013 18:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6923,29/08/2017 1:34,9/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6873,29/08/2017 1:34,26/11/2013 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6853,29/08/2017 1:34,26/01/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6809,29/08/2017 1:34,13/12/2013 18:55,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2013-6798,29/08/2017 1:34,18/11/2013 2:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6796,29/08/2017 1:34,26/10/2014 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6749,29/08/2017 1:34,29/01/2014 5:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6748,29/08/2017 1:34,29/01/2014 5:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6747,29/08/2017 1:34,27/01/2014 16:55,7.1,20, Improper Input Validation,nan
CVE-2013-6746,29/08/2017 1:34,22/01/2014 5:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6745,29/08/2017 1:34,22/12/2013 15:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6744,29/08/2017 1:34,30/05/2014 23:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6743,29/08/2017 1:34,14/02/2014 13:10,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6742,29/08/2017 1:34,14/02/2014 13:10,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6741,29/08/2017 1:34,26/05/2014 16:55,3.5,200, Information Exposure,nan
CVE-2013-6738,29/08/2017 1:34,24/04/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6737,29/08/2017 1:34,21/06/2014 15:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6734,29/08/2017 1:34,22/02/2014 21:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6733,29/08/2017 1:34,17/12/2013 15:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6732,29/08/2017 1:34,22/02/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6731,29/08/2017 1:34,26/02/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6730,29/08/2017 1:34,4/03/2014 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6729,29/08/2017 1:34,21/03/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6728,29/08/2017 1:34,14/02/2014 13:10,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6727,29/08/2017 1:34,31/01/2014 6:15,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6726,29/08/2017 1:33,7/05/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6725,29/08/2017 1:33,16/01/2014 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6723,29/08/2017 1:33,22/12/2013 15:16,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6721,29/08/2017 1:33,17/12/2013 15:21,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6720,29/08/2017 1:33,6/03/2014 11:55,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6719,29/08/2017 1:33,6/03/2014 11:55,6.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-6718,29/08/2017 1:33,1/12/2013 4:31,6.4,310, Cryptographic Issues,nan
CVE-2013-6714,29/08/2017 1:33,26/05/2014 19:55,4.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-6713,29/08/2017 1:33,26/05/2014 19:55,4.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-6708,29/08/2017 1:33,10/12/2013 6:14,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6707,29/08/2017 1:33,7/12/2013 5:33,4.3,399, Resource Management Errors,nan
CVE-2013-6691,29/08/2017 1:33,14/07/2014 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6618,29/08/2017 1:33,5/11/2013 20:55,9.0,20, Improper Input Validation,nan
CVE-2013-6497,29/08/2017 1:33,1/12/2014 15:59,2.1,17, DEPRECATED: Code,nan
CVE-2013-6462,29/08/2017 1:33,9/01/2014 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6439,29/08/2017 1:33,23/12/2013 22:55,9.3,287, Improper Authentication,nan
CVE-2013-6426,29/08/2017 1:33,14/12/2013 17:21,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6411,29/08/2017 1:33,14/12/2013 17:21,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6404,29/08/2017 1:33,9/12/2013 16:36,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6403,29/08/2017 1:33,24/12/2013 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6395,29/08/2017 1:33,5/12/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6391,29/08/2017 1:33,14/12/2013 17:21,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6371,29/08/2017 1:33,22/04/2014 13:06,5.0,310, Cryptographic Issues,nan
CVE-2013-6370,29/08/2017 1:33,22/04/2014 13:06,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6341,29/08/2017 1:33,5/12/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6335,29/08/2017 1:33,26/08/2014 10:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-6333,29/08/2017 1:33,5/03/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6331,29/08/2017 1:33,5/03/2014 11:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6330,29/08/2017 1:33,16/01/2014 20:55,3.5,200, Information Exposure,nan
CVE-2013-6329,29/08/2017 1:33,17/12/2013 15:21,7.8,310, Cryptographic Issues,nan
CVE-2013-6328,29/08/2017 1:33,22/12/2013 15:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6327,29/08/2017 1:33,17/12/2013 15:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6325,29/08/2017 1:33,16/01/2014 20:55,4.3,20, Improper Input Validation,nan
CVE-2013-6323,29/08/2017 1:33,1/05/2014 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6322,29/08/2017 1:33,28/11/2013 4:37,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6320,29/08/2017 1:33,5/03/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6319,29/08/2017 1:33,5/03/2014 11:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6318,29/08/2017 1:33,5/03/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6316,29/08/2017 1:33,22/12/2013 15:16,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6315,29/08/2017 1:33,6/03/2014 11:55,4.3,20, Improper Input Validation,nan
CVE-2013-6314,29/08/2017 1:33,6/03/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6311,29/08/2017 1:33,28/06/2014 0:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6310,29/08/2017 1:33,28/06/2014 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6309,29/08/2017 1:33,28/06/2014 0:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6307,29/08/2017 1:33,29/11/2013 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6305,29/08/2017 1:33,21/01/2014 15:17,4.3,310, Cryptographic Issues,nan
CVE-2013-6304,29/08/2017 1:33,6/03/2014 11:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6303,29/08/2017 1:33,5/03/2014 11:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6302,29/08/2017 1:33,5/03/2014 11:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6301,29/08/2017 1:33,5/03/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6300,29/08/2017 1:33,5/03/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6299,29/08/2017 1:33,5/03/2014 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6267,29/08/2017 1:33,5/12/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6243,29/08/2017 1:33,23/10/2013 16:54,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6237,29/08/2017 1:33,10/12/2013 16:55,3.5,200, Information Exposure,nan
CVE-2013-6226,29/08/2017 1:33,14/11/2013 20:55,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6224,29/08/2017 1:33,10/12/2013 16:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6222,29/08/2017 1:33,23/08/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6198,29/08/2017 1:33,29/12/2013 4:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6196,29/08/2017 1:33,21/12/2013 14:22,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6168,29/08/2017 1:33,14/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6164,29/08/2017 1:33,14/11/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6163,29/08/2017 1:33,14/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6162,29/08/2017 1:33,21/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6123,29/08/2017 1:33,14/01/2014 4:29,6.9,20, Improper Input Validation,nan
CVE-2013-6074,29/08/2017 1:33,20/11/2013 13:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6058,29/08/2017 1:33,14/11/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6047,29/08/2017 1:33,25/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6016,29/08/2017 1:33,26/10/2013 17:55,7.8,20, Improper Input Validation,nan
CVE-2013-6013,29/08/2017 1:33,17/10/2013 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6010,29/08/2017 1:33,3/10/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6005,29/08/2017 1:33,13/12/2013 18:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5983,29/08/2017 1:33,6/02/2014 16:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5971,29/08/2017 1:33,21/10/2013 10:54,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5970,29/08/2017 1:33,21/10/2013 10:54,7.1,20, Improper Input Validation,nan
CVE-2013-5955,29/08/2017 1:33,19/03/2014 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5953,29/08/2017 1:33,19/03/2014 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5952,29/08/2017 1:33,19/03/2014 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5938,29/08/2017 1:33,25/09/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5937,29/08/2017 1:33,25/09/2013 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5930,29/08/2017 1:33,23/09/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5760,29/08/2017 1:33,9/06/2014 19:55,5.0,200, Information Exposure,nan
CVE-2013-5751,29/08/2017 1:33,16/09/2013 19:14,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5673,29/08/2017 1:33,10/09/2013 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5672,29/08/2017 1:33,10/09/2013 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5650,29/08/2017 1:33,16/09/2013 19:14,5.4,20, Improper Input Validation,nan
CVE-2013-5586,29/08/2017 1:33,25/09/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5573,29/08/2017 1:33,31/12/2013 16:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5570,29/08/2017 1:33,23/08/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5569,29/08/2017 1:33,23/08/2013 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5567,29/08/2017 1:33,14/07/2014 21:55,5.4,399, Resource Management Errors,nan
CVE-2013-5557,29/08/2017 1:33,7/02/2015 4:59,6.3,17, DEPRECATED: Code,nan
CVE-2013-5527,29/08/2017 1:33,10/10/2013 10:55,5.7,20, Improper Input Validation,nan
CVE-2013-5525,29/08/2017 1:33,10/10/2013 10:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5524,29/08/2017 1:33,10/10/2013 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5523,29/08/2017 1:33,10/10/2013 10:55,4.3,20, Improper Input Validation,nan
CVE-2013-5505,29/08/2017 1:33,30/09/2013 17:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5504,29/08/2017 1:33,30/09/2013 17:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5498,29/08/2017 1:33,27/09/2013 20:55,5.0,20, Improper Input Validation,nan
CVE-2013-5497,29/08/2017 1:33,19/09/2013 18:55,4.3,287, Improper Authentication,nan
CVE-2013-5490,29/08/2017 1:33,23/09/2013 10:18,7.8,200, Information Exposure,nan
CVE-2013-5489,29/08/2017 1:33,13/09/2013 14:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5488,29/08/2017 1:33,12/09/2013 13:28,5.0,20, Improper Input Validation,nan
CVE-2013-5483,29/08/2017 1:33,8/09/2013 3:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5469,29/08/2017 1:33,30/08/2013 20:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5468,29/08/2017 1:33,5/03/2014 11:55,5.0,310, Cryptographic Issues,nan
CVE-2013-5467,29/08/2017 1:33,29/08/2014 9:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-5465,29/08/2017 1:33,26/05/2014 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5464,29/08/2017 1:33,26/05/2014 16:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5463,29/08/2017 1:33,29/11/2013 15:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5462,29/08/2017 1:33,19/12/2013 22:55,4.3,20, Improper Input Validation,nan
CVE-2013-5460,29/08/2017 1:33,26/05/2014 16:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5455,29/08/2017 1:33,7/12/2013 5:33,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5454,29/08/2017 1:33,18/11/2013 3:55,4.3,200, Information Exposure,nan
CVE-2013-5453,29/08/2017 1:33,13/11/2013 15:55,3.5,200, Information Exposure,nan
CVE-2013-5452,29/08/2017 1:33,19/12/2013 22:55,3.5,200, Information Exposure,nan
CVE-2013-5450,29/08/2017 1:33,13/11/2013 15:55,4.0,255, Credentials Management,nan
CVE-2013-5449,29/08/2017 1:33,4/12/2013 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5448,29/08/2017 1:33,29/11/2013 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5447,29/08/2017 1:33,10/12/2013 6:14,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5445,29/08/2017 1:33,25/03/2014 20:55,5.0,310, Cryptographic Issues,nan
CVE-2013-5444,29/08/2017 1:33,25/03/2014 20:55,5.0,310, Cryptographic Issues,nan
CVE-2013-5443,29/08/2017 1:33,25/03/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5442,29/08/2017 1:33,13/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5440,29/08/2017 1:33,18/12/2013 16:04,2.1,200, Information Exposure,nan
CVE-2013-5438,29/08/2017 1:33,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5433,29/08/2017 1:33,12/08/2014 0:55,4.0,255, Credentials Management,nan
CVE-2013-5431,29/08/2017 1:33,1/11/2013 2:55,5.8,20, Improper Input Validation,nan
CVE-2013-5430,29/08/2017 1:33,28/10/2013 3:42,5.5,255, Credentials Management,nan
CVE-2013-5429,29/08/2017 1:33,21/01/2014 1:55,2.1,287, Improper Authentication,nan
CVE-2013-5428,29/08/2017 1:33,22/10/2013 11:17,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5427,29/08/2017 1:33,4/02/2014 5:39,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5426,29/08/2017 1:33,19/12/2013 22:55,4.9,287, Improper Authentication,nan
CVE-2013-5425,29/08/2017 1:33,18/11/2013 3:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5424,29/08/2017 1:33,25/10/2013 20:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5423,29/08/2017 1:33,7/07/2014 11:01,5.0,200, Information Exposure,nan
CVE-2013-5422,29/08/2017 1:33,19/12/2013 22:55,4.3,200, Information Exposure,nan
CVE-2013-5421,29/08/2017 1:33,22/12/2013 15:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5420,29/08/2017 1:33,23/12/2013 22:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5418,29/08/2017 1:33,18/11/2013 5:23,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5417,29/08/2017 1:33,18/11/2013 5:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5415,29/08/2017 1:33,18/12/2013 16:04,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5414,29/08/2017 1:33,18/11/2013 5:23,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5413,29/08/2017 1:33,21/12/2013 14:22,4.3,287, Improper Authentication,nan
CVE-2013-5411,29/08/2017 1:33,21/12/2013 14:22,4.3,20, Improper Input Validation,nan
CVE-2013-5409,29/08/2017 1:33,21/12/2013 14:22,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5407,29/08/2017 1:33,21/12/2013 14:22,4.9,20, Improper Input Validation,nan
CVE-2013-5406,29/08/2017 1:33,21/12/2013 14:22,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5405,29/08/2017 1:33,21/12/2013 14:22,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5404,29/08/2017 1:33,10/12/2013 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5402,29/08/2017 1:33,18/12/2013 16:04,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5400,29/08/2017 1:33,14/02/2014 13:10,10.0,255, Credentials Management,nan
CVE-2013-5394,29/08/2017 1:33,16/10/2013 10:52,4.9,20, Improper Input Validation,nan
CVE-2013-5390,29/08/2017 1:33,16/10/2013 10:52,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5389,29/08/2017 1:33,22/10/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5388,29/08/2017 1:33,22/10/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5387,29/08/2017 1:33,6/11/2013 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5383,29/08/2017 1:33,1/10/2013 11:14,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5380,29/08/2017 1:33,1/10/2013 11:14,2.1,200, Information Exposure,nan
CVE-2013-5379,29/08/2017 1:33,13/11/2013 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5378,29/08/2017 1:33,13/11/2013 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5376,29/08/2017 1:33,17/10/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5373,29/08/2017 1:33,25/09/2013 10:31,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5372,29/08/2017 1:33,19/10/2013 10:36,4.3,399, Resource Management Errors,nan
CVE-2013-5371,29/08/2017 1:33,23/01/2014 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5369,29/08/2017 1:33,16/09/2013 18:24,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5356,29/08/2017 1:33,13/06/2014 14:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5352,29/08/2017 1:33,13/06/2014 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5351,29/08/2017 1:33,14/02/2014 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5323,29/08/2017 1:33,20/08/2013 18:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5322,29/08/2017 1:33,20/08/2013 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5320,29/08/2017 1:33,20/08/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5318,29/08/2017 1:33,20/08/2013 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5317,29/08/2017 1:33,20/08/2013 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5316,29/08/2017 1:33,20/08/2013 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5315,29/08/2017 1:33,19/08/2013 23:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5310,29/08/2017 1:33,16/08/2013 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5309,29/08/2017 1:33,16/08/2013 17:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5308,29/08/2017 1:33,16/08/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5307,29/08/2017 1:33,16/08/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5306,29/08/2017 1:33,16/08/2013 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5305,29/08/2017 1:33,16/08/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5304,29/08/2017 1:33,16/08/2013 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5302,29/08/2017 1:33,16/08/2013 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5301,29/08/2017 1:33,16/08/2013 17:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5300,29/08/2017 1:33,15/08/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5223,29/08/2017 1:33,19/11/2013 4:50,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5215,29/08/2017 1:33,20/11/2013 13:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5108,29/08/2017 1:33,5/12/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5100,29/08/2017 1:33,9/08/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5099,29/08/2017 1:33,9/08/2013 21:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5098,29/08/2017 1:33,9/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5092,29/08/2017 1:33,29/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5036,29/08/2017 1:33,27/05/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5028,29/08/2017 1:33,11/10/2013 21:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5011,29/08/2017 1:33,10/01/2014 16:47,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5010,29/08/2017 1:33,10/01/2014 16:47,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-5009,29/08/2017 1:33,10/01/2014 16:47,7.4,287, Improper Authentication,nan
CVE-2013-5006,29/08/2017 1:33,31/07/2013 13:20,4.3,255, Credentials Management,nan
CVE-2013-4988,29/08/2017 1:33,13/12/2013 18:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4977,29/08/2017 1:33,3/03/2014 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4954,29/08/2017 1:33,29/07/2013 23:27,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4950,29/08/2017 1:33,29/07/2013 23:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4948,29/08/2017 1:33,29/07/2013 23:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4944,29/08/2017 1:33,29/07/2013 23:27,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4912,29/08/2017 1:33,1/08/2013 13:32,5.8,20, Improper Input Validation,nan
CVE-2013-4911,29/08/2017 1:33,1/08/2013 13:32,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4887,29/08/2017 1:33,29/01/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4884,29/08/2017 1:33,21/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4881,29/08/2017 1:33,19/08/2013 13:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4880,29/08/2017 1:33,14/08/2013 13:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4879,29/08/2017 1:33,14/08/2013 13:49,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4873,29/08/2017 1:33,18/07/2013 16:51,5.0,255, Credentials Management,nan
CVE-2013-4872,29/08/2017 1:33,18/07/2013 16:51,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4871,29/08/2017 1:33,20/07/2013 3:39,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4870,29/08/2017 1:33,20/07/2013 3:39,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4869,29/08/2017 1:33,18/07/2013 12:48,0.0,255, Credentials Management,nan
CVE-2013-4860,29/08/2017 1:33,5/06/2014 20:55,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4802,29/08/2017 1:33,29/07/2013 13:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4795,29/08/2017 1:33,11/04/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4784,29/08/2017 1:33,8/07/2013 22:55,10.0,287, Improper Authentication,nan
CVE-2013-4759,29/08/2017 1:33,9/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4749,29/08/2017 1:33,1/07/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4748,29/08/2017 1:33,1/07/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4747,29/08/2017 1:33,1/07/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4744,29/08/2017 1:33,1/07/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4742,29/08/2017 1:33,9/08/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4721,29/08/2017 1:33,27/06/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4720,29/08/2017 1:33,27/06/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4719,29/08/2017 1:33,27/06/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4694,29/08/2017 1:33,16/04/2014 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4690,29/08/2017 1:33,11/07/2013 14:55,5.0,399, Resource Management Errors,nan
CVE-2013-4683,29/08/2017 1:33,25/06/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4681,29/08/2017 1:33,25/06/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4653,29/08/2017 1:33,20/08/2013 0:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4649,29/08/2017 1:33,12/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4634,29/08/2017 1:33,20/06/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4625,29/08/2017 1:33,9/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4576,29/08/2017 1:33,20/12/2013 21:55,2.1,255, Credentials Management,nan
CVE-2013-4565,29/08/2017 1:33,25/04/2014 17:12,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4551,29/08/2017 1:33,18/11/2013 2:55,5.7,20, Improper Input Validation,nan
CVE-2013-4519,29/08/2017 1:33,19/11/2013 4:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4499,29/08/2017 1:33,14/02/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4453,29/08/2017 1:33,5/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4447,29/08/2017 1:33,1/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4433,29/08/2017 1:33,11/03/2014 19:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4425,29/08/2017 1:33,18/11/2013 2:55,1.9,255, Credentials Management,nan
CVE-2013-4422,29/08/2017 1:33,23/10/2013 16:54,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4413,29/08/2017 1:33,11/03/2014 19:37,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4384,29/08/2017 1:33,9/10/2013 14:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4373,29/08/2017 1:33,24/10/2013 3:48,3.2,20, Improper Input Validation,nan
CVE-2013-4368,29/08/2017 1:33,17/10/2013 23:55,1.9,200, Information Exposure,nan
CVE-2013-4308,29/08/2017 1:33,12/09/2013 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4307,29/08/2017 1:33,12/09/2013 13:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4305,29/08/2017 1:33,11/10/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4304,29/08/2017 1:33,26/01/2014 20:55,7.5,287, Improper Authentication,nan
CVE-2013-4302,29/08/2017 1:33,27/10/2013 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4301,29/08/2017 1:33,27/10/2013 0:55,5.0,200, Information Exposure,nan
CVE-2013-4249,29/08/2017 1:33,4/10/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4230,29/08/2017 1:33,21/08/2013 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4229,29/08/2017 1:33,21/08/2013 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4223,29/08/2017 1:33,23/05/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4213,29/08/2017 1:33,16/08/2013 16:55,6.4,284, Improper Access Control,nan
CVE-2013-4212,29/08/2017 1:33,7/12/2013 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4174,29/08/2017 1:33,19/08/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4147,29/08/2017 1:33,9/08/2013 21:55,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2013-4140,29/08/2017 1:33,29/07/2013 23:27,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4129,29/08/2017 1:33,29/07/2013 13:59,4.7,20, Improper Input Validation,nan
CVE-2013-4128,29/08/2017 1:33,16/08/2013 16:55,6.4,16, Configuration,nan
CVE-2013-4125,29/08/2017 1:33,15/07/2013 20:55,5.4,399, Resource Management Errors,nan
CVE-2013-4117,29/08/2017 1:33,16/07/2013 14:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4116,29/08/2017 1:33,22/04/2014 14:23,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-4070,29/08/2017 1:33,21/12/2013 14:22,5.0,200, Information Exposure,nan
CVE-2013-4069,29/08/2017 1:33,21/12/2013 14:22,5.0,200, Information Exposure,nan
CVE-2013-4068,29/08/2017 1:33,20/09/2013 15:26,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4067,29/08/2017 1:33,2/10/2013 22:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-4066,29/08/2017 1:33,2/10/2013 22:55,4.3,20, Improper Input Validation,nan
CVE-2013-4065,29/08/2017 1:33,21/12/2013 14:22,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4064,29/08/2017 1:33,21/12/2013 14:22,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4063,29/08/2017 1:33,21/12/2013 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4062,29/08/2017 1:33,9/09/2013 1:55,6.8,310, Cryptographic Issues,nan
CVE-2013-4061,29/08/2017 1:33,9/09/2013 1:55,4.0,287, Improper Authentication,nan
CVE-2013-4059,29/08/2017 1:33,16/03/2014 14:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4058,29/08/2017 1:33,16/03/2014 14:06,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4057,29/08/2017 1:33,16/03/2014 14:06,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4056,29/08/2017 1:33,13/10/2013 10:20,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4055,29/08/2017 1:33,8/11/2013 4:47,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4054,29/08/2017 1:33,2/03/2014 4:57,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4053,29/08/2017 1:33,20/09/2013 21:55,6.8,20, Improper Input Validation,nan
CVE-2013-4052,29/08/2017 1:33,20/09/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4051,29/08/2017 1:33,8/11/2013 4:47,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4050,29/08/2017 1:33,8/11/2013 4:47,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4048,29/08/2017 1:33,16/09/2013 18:24,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4047,29/08/2017 1:33,16/09/2013 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4046,29/08/2017 1:33,21/12/2013 14:22,5.8,20, Improper Input Validation,nan
CVE-2013-4045,29/08/2017 1:33,21/12/2013 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4044,29/08/2017 1:33,21/12/2013 14:22,4.0,200, Information Exposure,nan
CVE-2013-4043,29/08/2017 1:33,1/02/2014 15:55,5.0,200, Information Exposure,nan
CVE-2013-4039,29/08/2017 1:33,28/08/2013 13:13,4.0,200, Information Exposure,nan
CVE-2013-4038,29/08/2017 1:33,9/08/2013 23:55,4.0,310, Cryptographic Issues,nan
CVE-2013-4036,29/08/2017 1:33,27/11/2013 4:43,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4034,29/08/2017 1:33,18/11/2013 3:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4033,29/08/2017 1:33,28/08/2013 13:13,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4032,29/08/2017 1:33,2/10/2013 10:35,5.0,20, Improper Input Validation,nan
CVE-2013-4031,29/08/2017 1:33,9/08/2013 23:55,10.0,255, Credentials Management,nan
CVE-2013-4030,29/08/2017 1:33,21/01/2014 1:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4027,29/08/2017 1:33,1/10/2013 11:14,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4025,29/08/2017 1:33,25/09/2013 10:31,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4024,29/08/2017 1:33,25/09/2013 10:31,4.3,200, Information Exposure,nan
CVE-2013-4022,29/08/2017 1:33,25/09/2013 10:31,3.5,255, Credentials Management,nan
CVE-2013-4019,29/08/2017 1:33,1/10/2013 11:14,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4017,29/08/2017 1:33,1/10/2013 11:14,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4016,29/08/2017 1:33,26/05/2014 16:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4014,29/08/2017 1:33,1/10/2013 11:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4012,29/08/2017 1:33,22/12/2013 15:16,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4007,29/08/2017 1:33,16/08/2013 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4006,29/08/2017 1:33,18/11/2013 5:23,4.3,310, Cryptographic Issues,nan
CVE-2013-4005,29/08/2017 1:33,21/08/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4004,29/08/2017 1:33,21/08/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4003,29/08/2017 1:33,29/08/2013 12:07,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4001,29/08/2017 1:33,14/12/2013 22:55,4.3,287, Improper Authentication,nan
CVE-2013-4000,29/08/2017 1:33,14/12/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3999,29/08/2017 1:33,25/07/2013 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3998,29/08/2017 1:33,26/03/2014 10:55,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3997,29/08/2017 1:33,26/03/2014 10:55,4.9,20, Improper Input Validation,nan
CVE-2013-3996,29/08/2017 1:33,6/08/2013 13:20,4.9,20, Improper Input Validation,nan
CVE-2013-3995,29/08/2017 1:33,6/08/2013 13:20,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3993,29/08/2017 1:33,7/07/2014 11:01,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3992,29/08/2017 1:33,6/08/2013 13:20,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3990,29/08/2017 1:33,9/08/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3989,29/08/2017 1:33,25/10/2013 20:55,3.5,310, Cryptographic Issues,nan
CVE-2013-3988,29/08/2017 1:33,14/02/2014 13:10,6.8,20, Improper Input Validation,nan
CVE-2013-3986,29/08/2017 1:33,8/11/2013 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3985,29/08/2017 1:33,9/11/2013 1:55,2.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-3984,29/08/2017 1:33,26/05/2014 4:29,2.9,200, Information Exposure,nan
CVE-2013-3983,29/08/2017 1:33,14/02/2014 13:10,7.5,20, Improper Input Validation,nan
CVE-2013-3982,29/08/2017 1:33,26/05/2014 4:29,5.0,200, Information Exposure,nan
CVE-2013-3981,29/08/2017 1:33,26/05/2014 4:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3980,29/08/2017 1:33,26/05/2014 4:29,5.0,20, Improper Input Validation,nan
CVE-2013-3979,29/08/2017 1:33,25/07/2013 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3978,29/08/2017 1:33,14/02/2014 13:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3977,29/08/2017 1:33,26/05/2014 4:29,4.3,287, Improper Authentication,nan
CVE-2013-3976,29/08/2017 1:33,26/03/2014 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-3973,29/08/2017 1:33,1/10/2013 11:14,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3972,29/08/2017 1:33,1/10/2013 11:14,4.0,200, Information Exposure,nan
CVE-2013-3971,29/08/2017 1:33,1/10/2013 11:14,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3961,29/08/2017 1:33,11/03/2014 19:37,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3928,29/08/2017 1:33,11/03/2014 19:37,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3923,29/08/2017 1:33,26/11/2013 16:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3922,29/08/2017 1:33,25/11/2013 19:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3921,29/08/2017 1:33,5/12/2013 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3843,29/08/2017 1:33,13/06/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3825,29/08/2017 1:33,17/07/2013 13:41,4.0,200, Information Exposure,nan
CVE-2013-3736,29/08/2017 1:33,5/05/2014 17:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3728,29/08/2017 1:33,13/03/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3727,29/08/2017 1:33,13/03/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3692,29/08/2017 1:33,13/07/2013 13:10,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-3664,29/08/2017 1:33,1/07/2014 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3663,29/08/2017 1:33,13/06/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3662,29/08/2017 1:33,1/07/2014 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3659,29/08/2017 1:33,9/08/2013 19:55,3.3,287, Improper Authentication,nan
CVE-2013-3639,29/08/2017 1:33,5/02/2014 15:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3606,29/08/2017 1:33,20/01/2014 4:58,7.8,20, Improper Input Validation,nan
CVE-2013-3595,29/08/2017 1:33,20/01/2014 4:58,6.8,20, Improper Input Validation,nan
CVE-2013-3594,29/08/2017 1:33,20/01/2014 4:58,10.0,20, Improper Input Validation,nan
CVE-2013-3538,29/08/2017 1:33,13/05/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3537,29/08/2017 1:33,13/05/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3535,29/08/2017 1:33,13/05/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3534,29/08/2017 1:33,13/05/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3533,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3532,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3531,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3530,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3529,29/08/2017 1:33,10/05/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3527,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3526,29/08/2017 1:33,10/05/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3525,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3524,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3523,29/08/2017 1:33,10/05/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3515,29/08/2017 1:33,29/07/2013 23:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3498,29/08/2017 1:33,8/05/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3497,29/08/2017 1:33,8/05/2013 23:55,4.7,255, Credentials Management,nan
CVE-2013-3491,29/08/2017 1:33,16/07/2013 14:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3487,29/08/2017 1:33,3/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3481,29/08/2017 1:33,27/03/2014 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3480,29/08/2017 1:33,9/08/2013 20:56,9.3,189, Numeric Errors,nan
CVE-2013-3478,29/08/2017 1:33,5/03/2014 16:37,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3477,29/08/2017 1:33,27/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3476,29/08/2017 1:33,2/06/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3474,29/08/2017 1:33,30/08/2013 20:55,6.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3464,29/08/2017 1:33,13/08/2013 15:04,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3457,29/08/2017 1:33,12/08/2013 10:58,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3455,29/08/2017 1:33,12/08/2013 10:58,5.0,255, Credentials Management,nan
CVE-2013-3444,29/08/2017 1:33,1/08/2013 13:32,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-3443,29/08/2017 1:33,1/08/2013 13:32,10.0,20, Improper Input Validation,nan
CVE-2013-3431,29/08/2017 1:33,25/07/2013 15:53,7.8,287, Improper Authentication,nan
CVE-2013-3430,29/08/2017 1:33,25/07/2013 15:53,9.0,287, Improper Authentication,nan
CVE-2013-3429,29/08/2017 1:33,25/07/2013 15:53,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3425,29/08/2017 1:33,31/07/2013 13:20,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3424,29/08/2017 1:33,12/07/2013 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3423,29/08/2017 1:33,12/07/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3422,29/08/2017 1:33,12/07/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3421,29/08/2017 1:33,12/07/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3414,29/08/2017 1:33,25/07/2013 15:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3319,29/08/2017 1:33,16/08/2013 17:55,5.0,200, Information Exposure,nan
CVE-2013-3294,29/08/2017 1:33,11/02/2014 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3269,29/08/2017 1:33,25/04/2013 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3268,29/08/2017 1:33,24/04/2013 10:28,10.0,287, Improper Authentication,nan
CVE-2013-3262,29/08/2017 1:33,9/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3260,29/08/2017 1:33,3/03/2014 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3259,29/08/2017 1:33,3/03/2014 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3258,29/08/2017 1:33,2/06/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3257,29/08/2017 1:33,2/06/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3256,29/08/2017 1:33,8/08/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3213,29/08/2017 1:33,2/04/2014 16:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3090,29/08/2017 1:33,30/01/2014 15:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3087,29/08/2017 1:33,30/01/2014 15:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3084,29/08/2017 1:33,30/01/2014 15:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3082,29/08/2017 1:33,9/06/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3081,29/08/2017 1:33,9/06/2014 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3050,29/08/2017 1:33,12/04/2013 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3048,29/08/2017 1:33,1/10/2013 11:14,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3046,29/08/2017 1:33,26/05/2014 4:29,4.3,287, Improper Authentication,nan
CVE-2013-3045,29/08/2017 1:33,9/11/2013 1:55,3.5,20, Improper Input Validation,nan
CVE-2013-3044,29/08/2017 1:33,9/11/2013 1:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3043,29/08/2017 1:33,14/12/2013 22:55,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3042,29/08/2017 1:33,14/12/2013 22:55,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3040,29/08/2017 1:33,16/08/2013 1:55,5.0,200, Information Exposure,nan
CVE-2013-3039,29/08/2017 1:33,12/09/2013 13:28,5.4,287, Improper Authentication,nan
CVE-2013-3038,29/08/2017 1:33,12/09/2013 13:28,5.4,255, Credentials Management,nan
CVE-2013-3037,29/08/2017 1:33,12/09/2013 13:28,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-3036,29/08/2017 1:33,12/09/2013 13:28,4.9,20, Improper Input Validation,nan
CVE-2013-3034,29/08/2017 1:33,16/08/2013 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3033,29/08/2017 1:33,29/07/2013 13:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3032,29/08/2017 1:33,9/08/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3031,29/08/2017 1:33,9/09/2013 1:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3030,29/08/2017 1:33,18/11/2013 3:55,5.0,20, Improper Input Validation,nan
CVE-2013-3029,29/08/2017 1:33,21/08/2013 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3028,29/08/2017 1:33,2/07/2013 21:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3027,29/08/2017 1:33,9/08/2013 19:55,9.3,189, Numeric Errors,nan
CVE-2013-3026,29/08/2017 1:33,17/06/2013 3:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3025,29/08/2017 1:33,17/10/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3020,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-3016,29/08/2017 1:33,21/08/2013 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3004,29/08/2017 1:33,1/07/2014 18:55,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2998,29/08/2017 1:33,26/05/2014 11:14,3.5,200, Information Exposure,nan
CVE-2013-2997,29/08/2017 1:33,8/09/2013 16:55,1.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-2994,29/08/2017 1:33,1/08/2013 13:32,6.4,20, Improper Input Validation,nan
CVE-2013-2993,29/08/2017 1:33,1/08/2013 13:32,5.8,287, Improper Authentication,nan
CVE-2013-2992,29/08/2017 1:33,9/09/2013 11:39,4.3,20, Improper Input Validation,nan
CVE-2013-2989,29/08/2017 1:33,28/05/2013 16:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2988,29/08/2017 1:33,27/08/2013 3:34,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2987,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-2985,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-2984,29/08/2017 1:33,3/07/2013 13:54,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2981,29/08/2017 1:33,17/06/2013 11:38,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2980,29/08/2017 1:33,17/06/2013 11:38,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2979,29/08/2017 1:33,22/08/2013 22:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2978,29/08/2017 1:33,27/08/2013 3:34,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2977,29/08/2017 1:33,10/05/2013 11:42,6.8,189, Numeric Errors,nan
CVE-2013-2976,29/08/2017 1:33,21/08/2013 21:55,1.9,200, Information Exposure,nan
CVE-2013-2974,29/08/2017 1:33,29/01/2014 5:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2969,29/08/2017 1:33,19/06/2013 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2968,29/08/2017 1:33,19/06/2013 14:55,6.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2967,29/08/2017 1:33,21/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2964,29/08/2017 1:33,4/10/2013 10:44,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2962,29/08/2017 1:33,6/02/2014 23:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2961,29/08/2017 1:33,21/06/2013 17:55,4.3,20, Improper Input Validation,nan
CVE-2013-2960,29/08/2017 1:33,21/06/2013 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2959,29/08/2017 1:33,27/05/2013 14:55,5.0,255, Credentials Management,nan
CVE-2013-2957,29/08/2017 1:33,27/05/2013 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2956,29/08/2017 1:33,27/05/2013 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2955,29/08/2017 1:33,27/05/2013 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2954,29/08/2017 1:33,27/05/2013 14:55,5.0,287, Improper Authentication,nan
CVE-2013-2950,29/08/2017 1:33,3/06/2013 21:55,3.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2945,29/08/2017 1:33,2/04/2014 16:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2810,29/08/2017 1:33,8/12/2014 11:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2013-2777,29/08/2017 1:33,8/04/2013 17:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2776,29/08/2017 1:33,8/04/2013 17:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2758,29/08/2017 1:33,23/05/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2013-2757,29/08/2017 1:33,23/05/2014 14:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2756,29/08/2017 1:33,23/05/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2013-2715,29/08/2017 1:33,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2710,29/08/2017 1:33,2/06/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2698,29/08/2017 1:33,27/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2691,29/08/2017 1:33,5/02/2014 15:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2690,29/08/2017 1:33,28/03/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2671,29/08/2017 1:33,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2670,29/08/2017 1:33,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2652,29/08/2017 1:33,2/11/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2651,29/08/2017 1:33,23/10/2013 16:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2619,29/08/2017 1:33,18/03/2014 17:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2618,29/08/2017 1:33,5/06/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2594,29/08/2017 1:33,21/01/2014 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2586,29/08/2017 1:33,29/09/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2577,29/08/2017 1:33,9/08/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2576,29/08/2017 1:33,9/08/2013 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2559,29/08/2017 1:33,27/03/2014 16:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2507,29/08/2017 1:33,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2501,29/08/2017 1:33,22/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2498,29/08/2017 1:33,1/03/2014 0:01,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2298,29/08/2017 1:33,2/06/2014 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2290,29/08/2017 1:33,28/03/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2289,29/08/2017 1:33,11/03/2014 19:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2270,29/08/2017 1:33,9/03/2014 13:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2263,29/08/2017 1:33,19/03/2013 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2254,29/08/2017 1:33,17/10/2013 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2163,29/08/2017 1:33,13/06/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2013-2158,29/08/2017 1:33,1/07/2013 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2136,29/08/2017 1:33,19/08/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2129,29/08/2017 1:33,24/06/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2125,29/08/2017 1:33,27/05/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2013-2122,29/08/2017 1:33,16/07/2013 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2105,29/08/2017 1:33,22/04/2014 14:23,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-2100,29/08/2017 1:33,29/09/2014 22:55,9.3,310, Cryptographic Issues,nan
CVE-2013-2090,29/08/2017 1:33,27/05/2014 14:55,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-2059,29/08/2017 1:33,21/05/2013 18:55,6.0,287, Improper Authentication,nan
CVE-2013-2050,29/08/2017 1:33,11/01/2014 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2036,29/08/2017 1:33,24/06/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2019,29/08/2017 1:33,2/06/2014 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2014,29/08/2017 1:33,2/06/2014 15:55,5.0,20, Improper Input Validation,nan
CVE-2013-2007,29/08/2017 1:33,21/05/2013 18:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1972,29/08/2017 1:33,24/06/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1971,29/08/2017 1:33,25/06/2013 18:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1967,29/08/2017 1:33,5/02/2014 15:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1962,29/08/2017 1:33,29/05/2013 0:55,5.0,399, Resource Management Errors,nan
CVE-2013-1952,29/08/2017 1:33,13/05/2013 23:55,1.9,20, Improper Input Validation,nan
CVE-2013-1933,29/08/2017 1:33,25/04/2013 23:55,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-1925,29/08/2017 1:33,16/07/2013 18:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1923,29/08/2017 1:33,21/01/2014 18:55,3.2,200, Information Exposure,nan
CVE-2013-1920,29/08/2017 1:33,12/04/2013 22:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-1911,29/08/2017 1:33,3/04/2013 0:55,6.8,20, Improper Input Validation,nan
CVE-2013-1907,29/08/2017 1:33,16/07/2013 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1905,29/08/2017 1:33,20/06/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1893,29/08/2017 1:33,9/03/2014 13:16,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1890,29/08/2017 1:33,9/03/2014 13:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1885,29/08/2017 1:33,24/01/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1883,29/08/2017 1:33,27/05/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2013-1879,29/08/2017 1:33,20/07/2013 3:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1864,29/08/2017 1:33,23/05/2014 14:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1841,29/08/2017 1:33,13/06/2014 14:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1840,29/08/2017 1:33,22/03/2013 21:55,3.5,200, Information Exposure,nan
CVE-2013-1838,29/08/2017 1:33,22/03/2013 21:55,4.0,399, Resource Management Errors,nan
CVE-2013-1818,29/08/2017 1:33,2/06/2014 15:55,5.0,200, Information Exposure,nan
CVE-2013-1815,29/08/2017 1:33,10/04/2013 15:55,4.4,255, Credentials Management,nan
CVE-2013-1795,29/08/2017 1:33,14/03/2013 3:13,5.0,189, Numeric Errors,nan
CVE-2013-1794,29/08/2017 1:33,14/03/2013 3:13,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1783,29/08/2017 1:33,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1780,29/08/2017 1:33,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1776,29/08/2017 1:33,8/04/2013 17:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-1770,29/08/2017 1:33,2/04/2014 16:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1759,29/08/2017 1:33,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1641,29/08/2017 1:33,26/10/2014 17:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1636,29/08/2017 1:33,12/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1605,29/08/2017 1:33,25/03/2014 18:21,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1604,29/08/2017 1:33,25/03/2014 18:21,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1470,29/08/2017 1:33,5/02/2014 15:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1466,29/08/2017 1:33,5/02/2014 15:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1465,29/08/2017 1:33,8/02/2013 20:55,7.5,20, Improper Input Validation,nan
CVE-2013-1463,29/08/2017 1:33,7/02/2013 5:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1455,29/08/2017 1:33,13/02/2013 1:55,5.0,200, Information Exposure,nan
CVE-2013-1454,29/08/2017 1:33,13/02/2013 1:55,5.0,200, Information Exposure,nan
CVE-2013-1427,29/08/2017 1:33,21/03/2013 17:55,1.9,310, Cryptographic Issues,nan
CVE-2013-1408,29/08/2017 1:33,24/03/2014 16:43,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1397,29/08/2017 1:33,2/06/2014 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1393,29/08/2017 1:33,20/06/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1348,29/08/2017 1:33,2/06/2014 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1123,29/08/2017 1:33,15/02/2013 12:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1113,29/08/2017 1:33,31/01/2013 12:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1105,29/08/2017 1:33,24/01/2013 21:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1066,29/08/2017 1:33,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1061,29/08/2017 1:33,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1052,29/08/2017 1:33,21/03/2013 17:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0807,29/08/2017 1:33,28/03/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0805,29/08/2017 1:33,20/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0735,29/08/2017 1:33,2/04/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0734,29/08/2017 1:33,28/03/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0731,29/08/2017 1:33,22/03/2013 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0724,29/08/2017 1:33,27/05/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0721,29/08/2017 1:33,2/01/2013 11:46,5.0,200, Information Exposure,nan
CVE-2013-0599,29/08/2017 1:33,28/05/2013 16:55,5.0,200, Information Exposure,nan
CVE-2013-0598,29/08/2017 1:33,28/09/2013 3:40,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0597,29/08/2017 1:33,21/08/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0596,29/08/2017 1:33,20/09/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0591,29/08/2017 1:33,27/08/2013 3:34,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0590,29/08/2017 1:33,27/08/2013 3:34,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0587,29/08/2017 1:33,16/08/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0586,29/08/2017 1:33,27/08/2013 3:34,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0585,29/08/2017 1:33,16/08/2013 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0584,29/08/2017 1:33,23/04/2013 11:47,5.0,200, Information Exposure,nan
CVE-2013-0581,29/08/2017 1:33,6/07/2013 13:57,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0580,29/08/2017 1:33,10/10/2013 10:55,4.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0579,29/08/2017 1:33,10/10/2013 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0578,29/08/2017 1:33,10/05/2013 11:42,3.5,287, Improper Authentication,nan
CVE-2013-0577,29/08/2017 1:33,10/10/2013 10:55,5.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0576,29/08/2017 1:33,28/05/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0572,29/08/2017 1:33,27/04/2013 3:16,2.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0571,29/08/2017 1:33,27/04/2013 3:16,2.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0569,29/08/2017 1:33,27/04/2013 3:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0568,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-0567,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-0565,29/08/2017 1:33,24/04/2013 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0560,29/08/2017 1:33,3/07/2013 13:54,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0558,29/08/2017 1:33,3/07/2013 13:54,5.0,200, Information Exposure,nan
CVE-2013-0551,29/08/2017 1:33,21/06/2013 17:55,5.0,20, Improper Input Validation,nan
CVE-2013-0549,29/08/2017 1:33,3/06/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0548,29/08/2017 1:33,21/06/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0544,29/08/2017 1:33,24/04/2013 10:28,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0543,29/08/2017 1:33,24/04/2013 10:28,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0542,29/08/2017 1:33,24/04/2013 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0541,29/08/2017 1:33,24/04/2013 10:28,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0540,29/08/2017 1:33,24/04/2013 10:28,3.5,287, Improper Authentication,nan
CVE-2013-0539,29/08/2017 1:33,3/07/2013 13:54,5.0,255, Credentials Management,nan
CVE-2013-0538,29/08/2017 1:33,1/05/2013 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0537,29/08/2017 1:33,9/11/2013 1:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0536,29/08/2017 1:33,21/06/2013 17:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0535,29/08/2017 1:33,2/05/2013 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0534,29/08/2017 1:33,21/06/2013 14:55,1.9,255, Credentials Management,nan
CVE-2013-0533,29/08/2017 1:33,28/04/2013 3:24,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0532,29/08/2017 1:33,29/03/2013 16:09,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0531,29/08/2017 1:33,8/09/2013 16:55,5.0,310, Cryptographic Issues,nan
CVE-2013-0529,29/08/2017 1:33,21/06/2013 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0527,29/08/2017 1:33,21/06/2013 14:55,1.9,200, Information Exposure,nan
CVE-2013-0526,29/08/2017 1:33,21/08/2013 16:55,8.5,20, Improper Input Validation,nan
CVE-2013-0525,29/08/2017 1:33,26/03/2013 21:55,1.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0520,29/08/2017 1:33,10/05/2013 11:42,4.0,20, Improper Input Validation,nan
CVE-2013-0519,29/08/2017 1:33,10/05/2013 11:42,5.0,200, Information Exposure,nan
CVE-2013-0518,29/08/2017 1:33,10/05/2013 11:42,4.3,20, Improper Input Validation,nan
CVE-2013-0512,29/08/2017 1:33,29/03/2013 16:09,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0511,29/08/2017 1:33,29/03/2013 16:09,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0510,29/08/2017 1:33,29/03/2013 16:09,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0509,29/08/2017 1:33,5/06/2013 3:43,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0508,29/08/2017 1:33,5/06/2013 3:43,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0506,29/08/2017 1:33,19/03/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0505,29/08/2017 1:33,19/03/2013 18:55,5.5,200, Information Exposure,nan
CVE-2013-0503,29/08/2017 1:33,23/04/2013 11:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0502,29/08/2017 1:33,1/04/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0501,29/08/2017 1:33,12/04/2013 19:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0500,29/08/2017 1:33,17/10/2013 0:55,5.4,20, Improper Input Validation,nan
CVE-2013-0499,29/08/2017 1:33,28/05/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0494,29/08/2017 1:33,9/08/2013 23:55,5.0,399, Resource Management Errors,nan
CVE-2013-0492,29/08/2017 1:33,9/08/2013 23:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0489,29/08/2017 1:33,27/03/2013 12:23,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0488,29/08/2017 1:33,27/03/2013 12:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0487,29/08/2017 1:33,27/03/2013 12:23,8.5,287, Improper Authentication,nan
CVE-2013-0486,29/08/2017 1:33,27/03/2013 12:23,4.3,399, Resource Management Errors,nan
CVE-2013-0483,29/08/2017 1:33,5/04/2013 16:55,5.0,310, Cryptographic Issues,nan
CVE-2013-0481,29/08/2017 1:33,3/07/2013 13:54,5.0,200, Information Exposure,nan
CVE-2013-0479,29/08/2017 1:33,3/07/2013 13:54,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0478,29/08/2017 1:33,21/02/2013 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0477,29/08/2017 1:33,21/02/2013 1:55,6.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0475,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-0474,29/08/2017 1:33,29/03/2013 16:09,4.3,200, Information Exposure,nan
CVE-2013-0473,29/08/2017 1:33,29/03/2013 16:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0470,29/08/2017 1:33,5/04/2013 16:55,4.0,16, Configuration,nan
CVE-2013-0468,29/08/2017 1:33,3/07/2013 13:54,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0467,29/08/2017 1:33,21/02/2013 1:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0466,29/08/2017 1:33,20/02/2013 12:09,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0464,29/08/2017 1:33,3/06/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0463,29/08/2017 1:33,3/07/2013 13:54,4.0,200, Information Exposure,nan
CVE-2013-0461,29/08/2017 1:33,27/01/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0460,29/08/2017 1:33,27/01/2013 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0459,29/08/2017 1:33,27/01/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0458,29/08/2017 1:33,27/01/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0457,29/08/2017 1:33,20/02/2013 12:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0454,29/08/2017 1:33,26/03/2013 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0453,29/08/2017 1:33,21/03/2013 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0452,29/08/2017 1:33,29/03/2013 16:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0451,29/08/2017 1:33,1/10/2013 11:14,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0347,29/08/2017 1:33,16/11/2014 11:59,7.2,200, Information Exposure,nan
CVE-2013-0336,29/08/2017 1:33,3/11/2014 23:55,5.0,20, Improper Input Validation,nan
CVE-2013-0308,29/08/2017 1:33,8/03/2013 21:55,4.3,20, Improper Input Validation,nan
CVE-2013-0292,29/08/2017 1:33,5/03/2013 21:38,7.2,20, Improper Input Validation,nan
CVE-2013-0289,29/08/2017 1:33,23/05/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2013-0288,29/08/2017 1:33,5/03/2013 21:38,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0245,29/08/2017 1:33,16/07/2013 18:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-0242,29/08/2017 1:33,8/02/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0241,29/08/2017 1:33,13/02/2013 1:55,2.1,399, Resource Management Errors,nan
CVE-2013-0239,29/08/2017 1:33,12/03/2013 23:55,5.0,287, Improper Authentication,nan
CVE-2013-0238,29/08/2017 1:33,13/02/2013 1:55,5.0,20, Improper Input Validation,nan
CVE-2013-0231,29/08/2017 1:33,13/02/2013 1:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0218,29/08/2017 1:33,5/02/2013 23:55,2.1,200, Information Exposure,nan
CVE-2013-0208,29/08/2017 1:33,13/02/2013 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0201,29/08/2017 1:33,18/03/2014 17:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0199,29/08/2017 1:33,29/05/2014 14:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0191,29/08/2017 1:32,3/06/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2013-0181,29/08/2017 1:32,27/03/2013 21:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0176,29/08/2017 1:32,5/02/2013 23:55,4.3,399, Resource Management Errors,nan
CVE-2013-0168,29/08/2017 1:32,12/03/2013 23:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0135,29/08/2017 1:32,9/04/2013 3:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0127,29/08/2017 1:32,1/05/2013 12:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-6645,29/08/2017 1:32,8/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6644,29/08/2017 1:32,8/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6643,29/08/2017 1:32,8/04/2014 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6641,29/08/2017 1:32,7/04/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6632,29/08/2017 1:32,16/01/2014 21:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6631,29/08/2017 1:32,16/01/2014 21:56,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6626,29/08/2017 1:32,16/01/2014 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6620,29/08/2017 1:32,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6583,29/08/2017 1:32,23/08/2013 15:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6582,29/08/2017 1:32,20/08/2013 18:14,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6577,29/08/2017 1:32,27/06/2013 20:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6575,29/08/2017 1:32,27/06/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6574,29/08/2017 1:32,27/06/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6573,29/08/2017 1:32,25/06/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6572,29/08/2017 1:32,21/06/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6563,29/08/2017 1:32,23/05/2013 15:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-6562,29/08/2017 1:32,23/05/2013 15:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-6561,29/08/2017 1:32,23/05/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6560,29/08/2017 1:32,23/05/2013 15:55,7.5,20, Improper Input Validation,nan
CVE-2012-6559,29/08/2017 1:32,23/05/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6558,29/08/2017 1:32,23/05/2013 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6554,29/08/2017 1:32,23/05/2013 15:55,6.5,20, Improper Input Validation,nan
CVE-2012-6553,29/08/2017 1:32,23/05/2013 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6529,29/08/2017 1:32,31/01/2013 5:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6528,29/08/2017 1:32,31/01/2013 5:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6527,29/08/2017 1:32,31/01/2013 5:44,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6526,29/08/2017 1:32,31/01/2013 5:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6525,29/08/2017 1:32,31/01/2013 5:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6524,29/08/2017 1:32,31/01/2013 5:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6523,29/08/2017 1:32,31/01/2013 5:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6522,29/08/2017 1:32,31/01/2013 5:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6520,29/08/2017 1:32,24/01/2013 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6519,29/08/2017 1:32,24/01/2013 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6518,29/08/2017 1:32,24/01/2013 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6517,29/08/2017 1:32,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6516,29/08/2017 1:32,24/01/2013 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6507,29/08/2017 1:32,24/01/2013 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6506,29/08/2017 1:32,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6501,29/08/2017 1:32,12/01/2013 4:33,4.3,20, Improper Input Validation,nan
CVE-2012-6452,29/08/2017 1:32,27/05/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2012-6447,29/08/2017 1:32,23/01/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6430,29/08/2017 1:32,24/03/2014 16:43,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6429,29/08/2017 1:32,4/04/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6360,29/08/2017 1:32,18/01/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6359,29/08/2017 1:32,18/01/2013 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-6357,29/08/2017 1:32,20/02/2013 12:09,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6356,29/08/2017 1:32,20/02/2013 12:09,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6355,29/08/2017 1:32,20/02/2013 12:09,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6352,29/08/2017 1:32,2/02/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6350,29/08/2017 1:32,31/01/2013 12:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6333,29/08/2017 1:32,13/12/2012 11:53,4.7,399, Resource Management Errors,nan
CVE-2012-6290,29/08/2017 1:32,11/03/2014 19:37,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6151,29/08/2017 1:32,13/12/2013 18:55,4.3,399, Resource Management Errors,nan
CVE-2012-6148,29/08/2017 1:32,1/07/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6147,29/08/2017 1:32,1/07/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6145,29/08/2017 1:32,1/07/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6144,29/08/2017 1:32,1/07/2013 21:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6143,29/08/2017 1:32,4/06/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6142,29/08/2017 1:32,4/06/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6141,29/08/2017 1:32,4/06/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6137,29/08/2017 1:32,21/05/2013 18:55,4.3,255, Credentials Management,nan
CVE-2012-6132,29/08/2017 1:32,10/04/2014 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6131,29/08/2017 1:32,11/04/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6130,29/08/2017 1:32,11/04/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6128,29/08/2017 1:32,24/02/2013 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6115,29/08/2017 1:32,12/03/2013 23:55,2.1,255, Credentials Management,nan
CVE-2012-6110,29/08/2017 1:32,29/09/2014 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-6107,29/08/2017 1:32,29/09/2014 22:55,4.3,310, Cryptographic Issues,nan
CVE-2012-6088,29/08/2017 1:32,18/01/2013 11:48,4.3,255, Credentials Management,nan
CVE-2012-6085,29/08/2017 1:32,24/01/2013 1:55,5.8,20, Improper Input Validation,nan
CVE-2012-6064,29/08/2017 1:32,3/12/2012 21:55,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6050,29/08/2017 1:32,27/11/2012 4:49,6.4,16, Configuration,nan
CVE-2012-6049,29/08/2017 1:32,27/11/2012 4:49,5.0,200, Information Exposure,nan
CVE-2012-6046,29/08/2017 1:32,27/11/2012 4:49,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6045,29/08/2017 1:32,27/11/2012 4:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6044,29/08/2017 1:32,26/11/2012 22:55,4.3,20, Improper Input Validation,nan
CVE-2012-6043,29/08/2017 1:32,26/11/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6041,29/08/2017 1:32,26/11/2012 22:55,6.8,399, Resource Management Errors,nan
CVE-2012-6040,29/08/2017 1:32,26/11/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6038,29/08/2017 1:32,26/11/2012 22:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6036,29/08/2017 1:32,23/11/2012 20:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6035,29/08/2017 1:32,23/11/2012 20:55,6.9,20, Improper Input Validation,nan
CVE-2012-6034,29/08/2017 1:32,23/11/2012 20:55,4.4,20, Improper Input Validation,nan
CVE-2012-6033,29/08/2017 1:32,23/11/2012 20:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6032,29/08/2017 1:32,23/11/2012 20:55,4.9,189, Numeric Errors,nan
CVE-2012-6031,29/08/2017 1:32,23/11/2012 20:55,4.7,20, Improper Input Validation,nan
CVE-2012-6030,29/08/2017 1:32,23/11/2012 20:55,7.2,20, Improper Input Validation,nan
CVE-2012-5953,29/08/2017 1:32,20/02/2013 12:09,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5952,29/08/2017 1:32,20/02/2013 12:09,5.0,287, Improper Authentication,nan
CVE-2012-5951,29/08/2017 1:32,26/12/2012 18:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-5950,29/08/2017 1:32,23/04/2013 11:47,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5949,29/08/2017 1:32,23/04/2013 11:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5948,29/08/2017 1:32,23/04/2013 11:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5947,29/08/2017 1:32,30/04/2013 3:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5946,29/08/2017 1:32,30/04/2013 3:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5945,29/08/2017 1:32,30/04/2013 3:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5943,29/08/2017 1:32,26/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5942,29/08/2017 1:32,6/03/2013 13:10,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5941,29/08/2017 1:32,20/02/2013 12:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5940,29/08/2017 1:32,20/02/2013 12:09,4.3,287, Improper Authentication,nan
CVE-2012-5939,29/08/2017 1:32,6/03/2013 13:10,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5938,29/08/2017 1:32,20/03/2013 14:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-5936,29/08/2017 1:32,3/07/2013 13:54,5.0,310, Cryptographic Issues,nan
CVE-2012-5920,29/08/2017 1:32,20/11/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5919,29/08/2017 1:32,19/11/2012 12:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5917,29/08/2017 1:32,17/11/2012 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5916,29/08/2017 1:32,17/11/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-5915,29/08/2017 1:32,17/11/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-5914,29/08/2017 1:32,17/11/2012 21:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5913,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5912,29/08/2017 1:32,17/11/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5911,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5910,29/08/2017 1:32,17/11/2012 21:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5909,29/08/2017 1:32,17/11/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5908,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5907,29/08/2017 1:32,17/11/2012 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5906,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5905,29/08/2017 1:32,17/11/2012 21:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5904,29/08/2017 1:32,17/11/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5903,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5902,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5901,29/08/2017 1:32,17/11/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5894,29/08/2017 1:32,17/11/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5892,29/08/2017 1:32,17/11/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5890,29/08/2017 1:32,17/11/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-5889,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5888,29/08/2017 1:32,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5887,29/08/2017 1:32,17/11/2012 19:55,5.0,287, Improper Authentication,nan
CVE-2012-5886,29/08/2017 1:32,17/11/2012 19:55,5.0,287, Improper Authentication,nan
CVE-2012-5884,29/08/2017 1:32,16/11/2012 12:24,5.0,200, Information Exposure,nan
CVE-2012-5883,29/08/2017 1:32,16/11/2012 12:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5881,29/08/2017 1:32,16/11/2012 12:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5876,29/08/2017 1:32,30/05/2014 14:55,5.0,189, Numeric Errors,nan
CVE-2012-5866,29/08/2017 1:32,20/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5865,29/08/2017 1:32,20/10/2014 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5864,29/08/2017 1:32,23/11/2012 12:09,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5863,29/08/2017 1:32,23/11/2012 12:09,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5862,29/08/2017 1:32,23/11/2012 12:09,10.0,310, Cryptographic Issues,nan
CVE-2012-5861,29/08/2017 1:32,23/11/2012 12:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5858,29/08/2017 1:32,3/12/2012 21:55,4.3,287, Improper Authentication,nan
CVE-2012-5856,29/08/2017 1:32,17/11/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5851,29/08/2017 1:32,15/11/2012 11:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5830,29/08/2017 1:32,21/11/2012 12:55,6.8,399, Resource Management Errors,nan
CVE-2012-5825,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5824,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5822,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5821,29/08/2017 1:32,4/11/2012 22:55,5.8,310, Cryptographic Issues,nan
CVE-2012-5820,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5819,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5818,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5817,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5816,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5815,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5814,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5813,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5812,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5804,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5803,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5802,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5800,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5797,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5796,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5795,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5794,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5793,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5792,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5791,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5790,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5789,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5788,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5787,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5785,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5782,29/08/2017 1:32,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5777,29/08/2017 1:32,16/11/2012 0:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5770,29/08/2017 1:32,6/03/2013 13:10,5.8,16, Configuration,nan
CVE-2012-5766,29/08/2017 1:32,3/07/2013 13:54,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5765,29/08/2017 1:32,20/12/2012 12:02,5.0,200, Information Exposure,nan
CVE-2012-5763,29/08/2017 1:32,20/02/2013 12:09,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5762,29/08/2017 1:32,20/02/2013 12:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5761,29/08/2017 1:32,20/02/2013 12:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5760,29/08/2017 1:32,20/02/2013 12:09,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5759,29/08/2017 1:32,23/11/2012 12:09,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5758,29/08/2017 1:32,23/11/2012 12:09,7.8,287, Improper Authentication,nan
CVE-2012-5757,29/08/2017 1:32,21/03/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5756,29/08/2017 1:32,23/11/2012 12:09,4.3,310, Cryptographic Issues,nan
CVE-2012-5702,29/08/2017 1:32,21/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5701,29/08/2017 1:32,20/10/2014 15:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5700,29/08/2017 1:32,22/09/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5695,29/08/2017 1:32,20/10/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5687,29/08/2017 1:32,1/11/2012 10:44,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5684,29/08/2017 1:32,14/08/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5683,29/08/2017 1:32,14/08/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5671,29/08/2017 1:32,31/10/2012 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5665,29/08/2017 1:32,3/01/2013 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5662,29/08/2017 1:32,27/05/2014 14:55,5.8,310, Cryptographic Issues,nan
CVE-2012-5653,29/08/2017 1:32,3/01/2013 1:55,6.0,20, Improper Input Validation,nan
CVE-2012-5652,29/08/2017 1:32,3/01/2013 1:55,5.0,200, Information Exposure,nan
CVE-2012-5651,29/08/2017 1:32,3/01/2013 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5648,29/08/2017 1:32,4/04/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5641,29/08/2017 1:32,18/03/2014 17:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5633,29/08/2017 1:32,12/03/2013 23:55,5.8,287, Improper Authentication,nan
CVE-2012-5621,29/08/2017 1:32,29/09/2014 22:55,5.0,20, Improper Input Validation,nan
CVE-2012-5605,29/08/2017 1:32,4/01/2013 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-5603,29/08/2017 1:32,4/01/2013 22:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5583,29/08/2017 1:32,6/06/2014 14:55,5.8,310, Cryptographic Issues,nan
CVE-2012-5580,29/08/2017 1:32,27/10/2014 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5574,29/08/2017 1:32,18/12/2012 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5573,29/08/2017 1:32,1/01/2013 12:35,5.0,399, Resource Management Errors,nan
CVE-2012-5571,29/08/2017 1:32,18/12/2012 1:55,3.5,255, Credentials Management,nan
CVE-2012-5568,29/08/2017 1:32,30/11/2012 19:55,5.0,16, Configuration,nan
CVE-2012-5563,29/08/2017 1:32,18/12/2012 1:55,4.0,255, Credentials Management,nan
CVE-2012-5542,29/08/2017 1:32,3/12/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5533,29/08/2017 1:32,24/11/2012 20:55,5.0,399, Resource Management Errors,nan
CVE-2012-5529,29/08/2017 1:32,20/11/2012 0:55,3.5,399, Resource Management Errors,nan
CVE-2012-5526,29/08/2017 1:32,21/11/2012 23:55,5.0,16, Configuration,nan
CVE-2012-5523,29/08/2017 1:32,16/11/2012 0:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5519,29/08/2017 1:32,20/11/2012 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-5516,29/08/2017 1:32,4/01/2013 22:55,2.1,200, Information Exposure,nan
CVE-2012-5513,29/08/2017 1:32,13/12/2012 11:53,6.9,20, Improper Input Validation,nan
CVE-2012-5512,29/08/2017 1:32,13/12/2012 11:53,3.2,16, Configuration,nan
CVE-2012-5511,29/08/2017 1:32,13/12/2012 11:53,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5483,29/08/2017 1:32,26/12/2012 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-5482,29/08/2017 1:32,11/11/2012 13:00,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5478,29/08/2017 1:32,5/02/2013 23:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-5468,29/08/2017 1:32,18/12/2012 1:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5458,29/08/2017 1:32,14/11/2012 12:30,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5456,29/08/2017 1:32,24/10/2012 17:55,4.3,310, Cryptographic Issues,nan
CVE-2012-5455,29/08/2017 1:32,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5452,29/08/2017 1:32,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5450,29/08/2017 1:32,3/12/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5424,29/08/2017 1:32,7/11/2012 23:55,5.0,20, Improper Input Validation,nan
CVE-2012-5416,29/08/2017 1:32,2/11/2012 4:46,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5388,29/08/2017 1:32,24/10/2012 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5387,29/08/2017 1:32,24/10/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5373,29/08/2017 1:32,28/11/2012 13:03,5.0,310, Cryptographic Issues,nan
CVE-2012-5371,29/08/2017 1:32,28/11/2012 13:03,5.0,310, Cryptographic Issues,nan
CVE-2012-5367,29/08/2017 1:32,3/12/2012 21:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5356,29/08/2017 1:32,10/10/2012 18:55,5.8,20, Improper Input Validation,nan
CVE-2012-5355,29/08/2017 1:32,10/10/2012 18:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-5352,29/08/2017 1:32,9/10/2012 23:55,5.8,287, Improper Authentication,nan
CVE-2012-5351,29/08/2017 1:32,9/10/2012 23:55,6.4,287, Improper Authentication,nan
CVE-2012-5350,29/08/2017 1:32,9/10/2012 15:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5349,29/08/2017 1:32,9/10/2012 15:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5348,29/08/2017 1:32,9/10/2012 15:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5346,29/08/2017 1:32,9/10/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5343,29/08/2017 1:32,9/10/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5342,29/08/2017 1:32,9/10/2012 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5341,29/08/2017 1:32,9/10/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5335,29/08/2017 1:32,8/10/2012 23:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5334,29/08/2017 1:32,8/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5333,29/08/2017 1:32,8/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5331,29/08/2017 1:32,8/10/2012 23:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5330,29/08/2017 1:32,8/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5327,29/08/2017 1:32,8/10/2012 20:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5326,29/08/2017 1:32,8/10/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5325,29/08/2017 1:32,8/10/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5323,29/08/2017 1:32,8/10/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5322,29/08/2017 1:32,8/10/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5321,29/08/2017 1:32,8/10/2012 18:55,5.8,20, Improper Input Validation,nan
CVE-2012-5320,29/08/2017 1:32,8/10/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5319,29/08/2017 1:32,8/10/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5316,29/08/2017 1:32,8/10/2012 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5315,29/08/2017 1:32,8/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5314,29/08/2017 1:32,8/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5313,29/08/2017 1:32,8/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5312,29/08/2017 1:32,8/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5310,29/08/2017 1:32,8/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5306,29/08/2017 1:32,6/10/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5305,29/08/2017 1:32,6/10/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5301,29/08/2017 1:32,4/10/2012 19:55,5.0,310, Cryptographic Issues,nan
CVE-2012-5300,29/08/2017 1:32,4/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5299,29/08/2017 1:32,4/10/2012 17:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5298,29/08/2017 1:32,4/10/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5297,29/08/2017 1:32,4/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5296,29/08/2017 1:32,4/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5295,29/08/2017 1:32,4/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5294,29/08/2017 1:32,4/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5293,29/08/2017 1:32,4/10/2012 16:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5292,29/08/2017 1:32,4/10/2012 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5291,29/08/2017 1:32,4/10/2012 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5290,29/08/2017 1:32,4/10/2012 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5289,29/08/2017 1:32,4/10/2012 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5288,29/08/2017 1:32,4/10/2012 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5287,29/08/2017 1:32,13/11/2012 13:39,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5286,29/08/2017 1:32,13/11/2012 13:39,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5271,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5270,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5269,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5268,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5267,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5266,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5265,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5264,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5263,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5262,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5261,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5260,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5259,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5258,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5257,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5256,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5255,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5254,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5253,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5252,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5251,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5250,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5249,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5248,29/08/2017 1:32,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5244,29/08/2017 1:32,20/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5232,29/08/2017 1:32,1/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5231,29/08/2017 1:32,1/10/2012 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5229,29/08/2017 1:32,1/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5228,29/08/2017 1:32,1/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5227,29/08/2017 1:32,1/10/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5226,29/08/2017 1:32,1/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5225,29/08/2017 1:32,1/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5224,29/08/2017 1:32,1/10/2012 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5223,29/08/2017 1:32,1/10/2012 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5196,29/08/2017 1:32,28/09/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5171,29/08/2017 1:32,8/11/2012 11:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5170,29/08/2017 1:32,4/11/2012 15:55,5.8,20, Improper Input Validation,nan
CVE-2012-5169,29/08/2017 1:32,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5168,29/08/2017 1:32,22/10/2012 23:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5167,29/08/2017 1:32,22/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5164,29/08/2017 1:32,26/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5163,29/08/2017 1:32,26/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5162,29/08/2017 1:32,26/09/2012 0:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5134,29/08/2017 1:32,28/11/2012 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5120,29/08/2017 1:32,7/11/2012 11:43,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5118,29/08/2017 1:32,7/11/2012 11:43,7.5,20, Improper Input Validation,nan
CVE-2012-5115,29/08/2017 1:32,7/11/2012 11:43,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5106,29/08/2017 1:32,20/06/2014 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5105,29/08/2017 1:32,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5104,29/08/2017 1:32,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5103,29/08/2017 1:32,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5102,29/08/2017 1:32,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5101,29/08/2017 1:32,23/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5100,29/08/2017 1:32,23/09/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5099,29/08/2017 1:32,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5098,29/08/2017 1:32,23/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5050,29/08/2017 1:32,5/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5005,29/08/2017 1:32,19/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5004,29/08/2017 1:32,19/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5003,29/08/2017 1:32,19/09/2012 21:55,6.8,287, Improper Authentication,nan
CVE-2012-5002,29/08/2017 1:32,19/09/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5000,29/08/2017 1:32,19/09/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4999,29/08/2017 1:32,19/09/2012 19:55,6.1,20, Improper Input Validation,nan
CVE-2012-4998,29/08/2017 1:32,19/09/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4997,29/08/2017 1:32,19/09/2012 19:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4996,29/08/2017 1:32,19/09/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4995,29/08/2017 1:32,19/09/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4994,29/08/2017 1:32,19/09/2012 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4992,29/08/2017 1:32,19/09/2012 19:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4990,29/08/2017 1:32,22/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4989,29/08/2017 1:32,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4987,29/08/2017 1:32,4/11/2012 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4985,29/08/2017 1:32,5/12/2012 11:57,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4975,29/08/2017 1:32,12/12/2012 11:38,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4972,29/08/2017 1:32,12/12/2012 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4955,29/08/2017 1:32,15/11/2012 11:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4954,29/08/2017 1:32,15/11/2012 11:58,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4951,29/08/2017 1:32,15/11/2012 11:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4950,29/08/2017 1:32,18/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4949,29/08/2017 1:32,14/11/2012 12:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4947,29/08/2017 1:32,18/11/2012 21:55,5.0,310, Cryptographic Issues,nan
CVE-2012-4946,29/08/2017 1:32,18/11/2012 21:55,5.0,310, Cryptographic Issues,nan
CVE-2012-4943,29/08/2017 1:32,18/11/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4938,29/08/2017 1:32,18/11/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4935,29/08/2017 1:32,18/11/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4934,29/08/2017 1:32,31/10/2012 10:50,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4933,29/08/2017 1:32,20/10/2012 18:55,7.8,255, Credentials Management,nan
CVE-2012-4928,29/08/2017 1:32,15/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4927,29/08/2017 1:32,15/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4925,29/08/2017 1:32,15/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4924,29/08/2017 1:32,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4923,29/08/2017 1:32,15/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4920,29/08/2017 1:32,4/04/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4918,29/08/2017 1:32,22/01/2013 23:55,5.8,20, Improper Input Validation,nan
CVE-2012-4915,29/08/2017 1:32,29/05/2014 14:19,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4894,29/08/2017 1:32,5/10/2012 10:51,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4892,29/08/2017 1:32,10/09/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4891,29/08/2017 1:32,10/09/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4890,29/08/2017 1:32,10/09/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4889,29/08/2017 1:32,10/09/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4886,29/08/2017 1:32,24/03/2014 16:43,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4878,29/08/2017 1:32,6/09/2012 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4877,29/08/2017 1:32,6/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4875,29/08/2017 1:32,6/09/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4872,29/08/2017 1:32,6/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4871,29/08/2017 1:32,6/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4870,29/08/2017 1:32,6/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4869,29/08/2017 1:32,6/09/2012 17:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4864,29/08/2017 1:32,6/09/2012 17:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4862,29/08/2017 1:32,5/12/2012 11:57,2.1,255, Credentials Management,nan
CVE-2012-4861,29/08/2017 1:32,1/04/2013 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4858,29/08/2017 1:32,5/03/2013 5:02,9.3,20, Improper Input Validation,nan
CVE-2012-4857,29/08/2017 1:32,8/12/2012 15:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4856,29/08/2017 1:32,20/12/2012 12:02,7.9,255, Credentials Management,nan
CVE-2012-4853,29/08/2017 1:32,14/11/2012 12:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4851,29/08/2017 1:32,14/11/2012 12:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4850,29/08/2017 1:32,14/11/2012 12:30,7.5,20, Improper Input Validation,nan
CVE-2012-4848,29/08/2017 1:32,19/12/2012 11:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4847,29/08/2017 1:32,14/11/2012 12:30,4.0,189, Numeric Errors,nan
CVE-2012-4846,29/08/2017 1:32,19/12/2012 11:55,4.3,200, Information Exposure,nan
CVE-2012-4844,29/08/2017 1:32,27/02/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4842,29/08/2017 1:32,27/02/2013 21:55,5.8,399, Resource Management Errors,nan
CVE-2012-4841,29/08/2017 1:32,29/11/2012 13:14,5.0,399, Resource Management Errors,nan
CVE-2012-4840,29/08/2017 1:32,5/03/2013 5:02,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4837,29/08/2017 1:32,5/03/2013 5:02,4.0,200, Information Exposure,nan
CVE-2012-4836,29/08/2017 1:32,5/03/2013 5:02,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4835,29/08/2017 1:32,5/03/2013 5:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4833,29/08/2017 1:32,1/10/2012 18:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-4832,29/08/2017 1:32,31/01/2013 12:06,1.9,200, Information Exposure,nan
CVE-2012-4829,29/08/2017 1:32,16/04/2013 14:04,4.3,310, Cryptographic Issues,nan
CVE-2012-4819,29/08/2017 1:32,31/01/2013 12:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4816,29/08/2017 1:32,26/12/2012 18:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4773,29/08/2017 1:32,22/10/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4772,29/08/2017 1:32,22/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4771,29/08/2017 1:32,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4768,29/08/2017 1:32,4/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4744,29/08/2017 1:32,31/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4743,29/08/2017 1:32,31/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4741,29/08/2017 1:32,31/08/2012 22:55,5.0,287, Improper Authentication,nan
CVE-2012-4740,29/08/2017 1:32,31/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4739,29/08/2017 1:32,31/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4736,29/08/2017 1:32,29/08/2012 22:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4685,29/08/2017 1:32,28/08/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4679,29/08/2017 1:32,27/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4675,29/08/2017 1:32,26/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4672,29/08/2017 1:32,25/08/2012 16:55,5.8,20, Improper Input Validation,nan
CVE-2012-4670,29/08/2017 1:32,25/08/2012 16:55,6.4,20, Improper Input Validation,nan
CVE-2012-4663,29/08/2017 1:32,29/10/2012 20:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4662,29/08/2017 1:32,29/10/2012 20:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4661,29/08/2017 1:32,29/10/2012 20:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4655,29/08/2017 1:32,24/09/2012 17:55,9.3,20, Improper Input Validation,nan
CVE-2012-4623,29/08/2017 1:32,27/09/2012 0:55,7.8,20, Improper Input Validation,nan
CVE-2012-4622,29/08/2017 1:32,27/09/2012 0:55,7.1,399, Resource Management Errors,nan
CVE-2012-4620,29/08/2017 1:32,27/09/2012 0:55,7.8,399, Resource Management Errors,nan
CVE-2012-4610,29/08/2017 1:32,31/10/2012 10:50,3.3,255, Credentials Management,nan
CVE-2012-4605,29/08/2017 1:32,23/08/2012 10:32,5.0,200, Information Exposure,nan
CVE-2012-4597,29/08/2017 1:32,22/08/2012 10:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4595,29/08/2017 1:32,22/08/2012 10:42,7.5,287, Improper Authentication,nan
CVE-2012-4594,29/08/2017 1:32,22/08/2012 10:42,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4591,29/08/2017 1:32,22/08/2012 10:42,5.0,200, Information Exposure,nan
CVE-2012-4590,29/08/2017 1:32,22/08/2012 10:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4587,29/08/2017 1:32,22/08/2012 10:42,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4578,29/08/2017 1:32,21/08/2012 19:55,2.1,310, Cryptographic Issues,nan
CVE-2012-4577,29/08/2017 1:32,21/08/2012 18:55,10.0,255, Credentials Management,nan
CVE-2012-4574,29/08/2017 1:32,4/01/2013 22:55,2.1,255, Credentials Management,nan
CVE-2012-4573,29/08/2017 1:32,11/11/2012 13:00,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4562,29/08/2017 1:32,30/11/2012 22:55,7.5,189, Numeric Errors,nan
CVE-2012-4560,29/08/2017 1:32,30/11/2012 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4559,29/08/2017 1:32,30/11/2012 22:55,6.8,399, Resource Management Errors,nan
CVE-2012-4547,29/08/2017 1:32,31/10/2012 10:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4545,29/08/2017 1:32,3/01/2013 1:55,5.1,287, Improper Authentication,nan
CVE-2012-4544,29/08/2017 1:32,31/10/2012 16:55,2.1,20, Improper Input Validation,nan
CVE-2012-4539,29/08/2017 1:32,21/11/2012 23:55,2.1,399, Resource Management Errors,nan
CVE-2012-4538,29/08/2017 1:32,24/11/2012 20:55,4.9,20, Improper Input Validation,nan
CVE-2012-4537,29/08/2017 1:32,21/11/2012 23:55,2.1,16, Configuration,nan
CVE-2012-4535,29/08/2017 1:32,21/11/2012 23:55,1.9,399, Resource Management Errors,nan
CVE-2012-4531,29/08/2017 1:32,31/10/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4517,29/08/2017 1:32,22/10/2012 23:55,5.0,399, Resource Management Errors,nan
CVE-2012-4463,29/08/2017 1:32,10/10/2012 18:55,5.1,20, Improper Input Validation,nan
CVE-2012-4455,29/08/2017 1:32,10/10/2012 18:55,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-4454,29/08/2017 1:32,10/10/2012 18:55,2.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-4445,29/08/2017 1:32,10/10/2012 18:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4435,29/08/2017 1:32,22/10/2012 23:55,4.0,20, Improper Input Validation,nan
CVE-2012-4433,29/08/2017 1:32,18/11/2012 23:55,7.5,189, Numeric Errors,nan
CVE-2012-4432,29/08/2017 1:32,1/10/2012 3:26,7.5,399, Resource Management Errors,nan
CVE-2012-4429,29/08/2017 1:32,1/10/2012 0:55,5.0,200, Information Exposure,nan
CVE-2012-4417,29/08/2017 1:32,18/11/2012 23:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4413,29/08/2017 1:32,18/09/2012 17:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4406,29/08/2017 1:32,22/10/2012 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4405,29/08/2017 1:32,18/09/2012 17:55,6.8,189, Numeric Errors,nan
CVE-2012-4387,29/08/2017 1:32,5/09/2012 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4386,29/08/2017 1:32,5/09/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4366,29/08/2017 1:32,20/11/2012 0:55,3.3,310, Cryptographic Issues,nan
CVE-2012-4344,29/08/2017 1:32,15/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4336,29/08/2017 1:32,15/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4335,29/08/2017 1:32,14/08/2012 22:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4333,29/08/2017 1:32,14/08/2012 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4330,29/08/2017 1:32,14/08/2012 22:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4329,29/08/2017 1:32,14/08/2012 22:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4326,29/08/2017 1:32,14/08/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4325,29/08/2017 1:32,14/08/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4324,29/08/2017 1:32,14/08/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4282,29/08/2017 1:32,13/08/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4281,29/08/2017 1:32,13/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4273,29/08/2017 1:32,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4271,29/08/2017 1:32,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4270,29/08/2017 1:32,13/08/2012 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4268,29/08/2017 1:32,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4263,29/08/2017 1:32,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4262,29/08/2017 1:32,13/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4261,29/08/2017 1:32,13/08/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4260,29/08/2017 1:32,13/08/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4259,29/08/2017 1:32,13/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4257,29/08/2017 1:32,13/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2012-4256,29/08/2017 1:32,13/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2012-4254,29/08/2017 1:32,13/08/2012 18:55,4.3,200, Information Exposure,nan
CVE-2012-4253,29/08/2017 1:32,13/08/2012 18:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4252,29/08/2017 1:32,13/08/2012 18:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4251,29/08/2017 1:32,13/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4250,29/08/2017 1:32,13/08/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4241,29/08/2017 1:32,12/08/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4240,29/08/2017 1:32,11/09/2014 14:16,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4234,29/08/2017 1:32,4/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4232,29/08/2017 1:32,22/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4231,29/08/2017 1:32,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4230,29/08/2017 1:32,25/04/2014 14:15,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4226,29/08/2017 1:32,3/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4199,29/08/2017 1:32,16/11/2012 12:24,4.3,200, Information Exposure,nan
CVE-2012-4197,29/08/2017 1:32,16/11/2012 12:24,5.0,200, Information Exposure,nan
CVE-2012-4190,29/08/2017 1:32,12/10/2012 10:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4178,29/08/2017 1:32,7/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4176,29/08/2017 1:32,23/10/2012 23:55,10.0,20, Improper Input Validation,nan
CVE-2012-4175,29/08/2017 1:32,23/10/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4174,29/08/2017 1:32,23/10/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4173,29/08/2017 1:32,23/10/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4172,29/08/2017 1:32,23/10/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4122,29/08/2017 1:32,5/10/2013 10:55,6.2,20, Improper Input Validation,nan
CVE-2012-4098,29/08/2017 1:32,5/10/2013 10:55,5.0,20, Improper Input Validation,nan
CVE-2012-4094,29/08/2017 1:32,24/09/2013 10:35,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4091,29/08/2017 1:32,5/10/2013 10:55,5.0,20, Improper Input Validation,nan
CVE-2012-4090,29/08/2017 1:32,5/10/2013 10:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4089,29/08/2017 1:32,24/09/2013 10:35,6.6,20, Improper Input Validation,nan
CVE-2012-4087,29/08/2017 1:32,24/09/2013 10:35,5.1,20, Improper Input Validation,nan
CVE-2012-4086,29/08/2017 1:32,25/09/2013 10:31,5.1,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2012-4085,29/08/2017 1:32,24/09/2013 10:35,5.0,20, Improper Input Validation,nan
CVE-2012-4084,29/08/2017 1:32,5/10/2013 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4083,29/08/2017 1:32,20/09/2013 16:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4082,29/08/2017 1:32,20/09/2013 18:55,6.8,20, Improper Input Validation,nan
CVE-2012-4078,29/08/2017 1:32,24/09/2013 10:35,8.5,287, Improper Authentication,nan
CVE-2012-4076,29/08/2017 1:32,14/10/2013 3:34,6.8,20, Improper Input Validation,nan
CVE-2012-4075,29/08/2017 1:32,5/10/2013 10:55,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-4068,29/08/2017 1:32,26/07/2012 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4063,29/08/2017 1:32,1/10/2012 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4061,29/08/2017 1:32,25/07/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4060,29/08/2017 1:32,25/07/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4059,29/08/2017 1:32,25/07/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4058,29/08/2017 1:32,25/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4057,29/08/2017 1:32,25/07/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4056,29/08/2017 1:32,25/07/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4055,29/08/2017 1:32,25/07/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4054,29/08/2017 1:32,25/07/2012 21:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4035,29/08/2017 1:32,12/08/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4034,29/08/2017 1:32,12/08/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4032,29/08/2017 1:32,17/07/2012 21:55,5.8,20, Improper Input Validation,nan
CVE-2012-4031,29/08/2017 1:32,17/07/2012 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4019,29/08/2017 1:32,26/10/2012 10:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4018,29/08/2017 1:32,5/10/2012 10:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4000,29/08/2017 1:32,12/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3981,29/08/2017 1:32,4/09/2012 11:04,5.0,255, Credentials Management,nan
CVE-2012-3953,29/08/2017 1:32,12/08/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3952,29/08/2017 1:32,12/08/2012 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3950,29/08/2017 1:32,27/09/2012 0:55,7.1,399, Resource Management Errors,nan
CVE-2012-3935,29/08/2017 1:32,12/09/2012 23:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3919,29/08/2017 1:32,16/09/2012 10:34,5.0,399, Resource Management Errors,nan
CVE-2012-3915,29/08/2017 1:32,16/09/2012 10:34,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3901,29/08/2017 1:32,16/09/2012 10:34,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3846,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3845,29/08/2017 1:32,3/07/2012 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3844,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3843,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3840,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3839,29/08/2017 1:32,3/07/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3835,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3834,29/08/2017 1:32,3/07/2012 22:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3833,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3830,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3828,29/08/2017 1:32,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3820,29/08/2017 1:32,14/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3815,29/08/2017 1:32,27/06/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3800,29/08/2017 1:32,27/06/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3799,29/08/2017 1:32,27/06/2012 0:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3794,29/08/2017 1:32,25/06/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3793,29/08/2017 1:32,25/06/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3791,29/08/2017 1:32,21/06/2012 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3750,29/08/2017 1:32,3/11/2012 17:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3747,29/08/2017 1:32,20/09/2012 21:55,6.8,399, Resource Management Errors,nan
CVE-2012-3746,29/08/2017 1:32,20/09/2012 21:55,4.3,310, Cryptographic Issues,nan
CVE-2012-3745,29/08/2017 1:32,20/09/2012 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3743,29/08/2017 1:32,20/09/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3742,29/08/2017 1:32,20/09/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3741,29/08/2017 1:32,20/09/2012 21:55,1.9,287, Improper Authentication,nan
CVE-2012-3735,29/08/2017 1:32,20/09/2012 21:55,2.1,200, Information Exposure,nan
CVE-2012-3734,29/08/2017 1:32,20/09/2012 21:55,1.9,310, Cryptographic Issues,nan
CVE-2012-3733,29/08/2017 1:32,20/09/2012 21:55,4.3,200, Information Exposure,nan
CVE-2012-3732,29/08/2017 1:32,20/09/2012 21:55,6.4,310, Cryptographic Issues,nan
CVE-2012-3729,29/08/2017 1:32,20/09/2012 21:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3727,29/08/2017 1:32,20/09/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3726,29/08/2017 1:32,20/09/2012 21:55,6.8,399, Resource Management Errors,nan
CVE-2012-3725,29/08/2017 1:32,20/09/2012 21:55,3.3,200, Information Exposure,nan
CVE-2012-3724,29/08/2017 1:32,20/09/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-3723,29/08/2017 1:32,20/09/2012 21:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3722,29/08/2017 1:32,20/09/2012 21:55,6.8,399, Resource Management Errors,nan
CVE-2012-3721,29/08/2017 1:32,20/09/2012 21:55,5.0,287, Improper Authentication,nan
CVE-2012-3719,29/08/2017 1:32,20/09/2012 21:55,6.8,20, Improper Input Validation,nan
CVE-2012-3716,29/08/2017 1:32,20/09/2012 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3715,29/08/2017 1:32,20/09/2012 21:55,4.3,310, Cryptographic Issues,nan
CVE-2012-3714,29/08/2017 1:32,20/09/2012 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3713,29/08/2017 1:32,20/09/2012 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3588,29/08/2017 1:31,19/06/2012 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3579,29/08/2017 1:31,29/08/2012 10:56,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3578,29/08/2017 1:31,17/06/2012 3:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3577,29/08/2017 1:31,17/06/2012 3:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3576,29/08/2017 1:31,16/06/2012 0:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3575,29/08/2017 1:31,16/06/2012 0:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3569,29/08/2017 1:31,14/11/2012 12:30,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2012-3547,29/08/2017 1:31,18/09/2012 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3540,29/08/2017 1:31,5/09/2012 23:55,5.8,20, Improper Input Validation,nan
CVE-2012-3538,29/08/2017 1:31,4/01/2013 22:55,3.3,255, Credentials Management,nan
CVE-2012-3537,29/08/2017 1:31,5/09/2012 23:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3535,29/08/2017 1:31,5/09/2012 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3533,29/08/2017 1:31,31/08/2012 20:55,5.0,310, Cryptographic Issues,nan
CVE-2012-3531,29/08/2017 1:31,5/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3529,29/08/2017 1:31,5/09/2012 23:55,3.5,200, Information Exposure,nan
CVE-2012-3528,29/08/2017 1:31,5/09/2012 23:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3527,29/08/2017 1:31,5/09/2012 23:55,4.6,310, Cryptographic Issues,nan
CVE-2012-3509,29/08/2017 1:31,5/09/2012 23:55,5.0,189, Numeric Errors,nan
CVE-2012-3504,29/08/2017 1:31,10/10/2012 18:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3500,29/08/2017 1:31,1/10/2012 0:55,1.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-3498,29/08/2017 1:31,23/11/2012 20:55,5.6,20, Improper Input Validation,nan
CVE-2012-3497,29/08/2017 1:31,23/11/2012 20:55,6.9,20, Improper Input Validation,nan
CVE-2012-3496,29/08/2017 1:31,23/11/2012 20:55,4.7,16, Configuration,nan
CVE-2012-3494,29/08/2017 1:31,23/11/2012 20:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3467,29/08/2017 1:31,27/08/2012 23:55,5.0,287, Improper Authentication,nan
CVE-2012-3461,29/08/2017 1:31,20/08/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3456,29/08/2017 1:31,20/08/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3455,29/08/2017 1:31,20/08/2012 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3449,29/08/2017 1:31,7/08/2012 20:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3447,29/08/2017 1:31,20/08/2012 18:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3441,29/08/2017 1:31,25/08/2012 10:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3438,29/08/2017 1:31,7/08/2012 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3436,29/08/2017 1:31,9/10/2012 18:55,5.0,20, Improper Input Validation,nan
CVE-2012-3435,29/08/2017 1:31,15/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3431,29/08/2017 1:31,23/11/2012 20:55,4.3,310, Cryptographic Issues,nan
CVE-2012-3429,29/08/2017 1:31,7/08/2012 21:55,5.0,20, Improper Input Validation,nan
CVE-2012-3427,29/08/2017 1:31,2/02/2014 20:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3416,29/08/2017 1:31,25/08/2012 10:29,10.0,287, Improper Authentication,nan
CVE-2012-3410,29/08/2017 1:31,27/08/2012 23:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3401,29/08/2017 1:31,13/08/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3399,29/08/2017 1:31,12/07/2012 19:55,7.5,20, Improper Input Validation,nan
CVE-2012-3373,29/08/2017 1:31,19/09/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3370,29/08/2017 1:31,5/02/2013 23:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3369,29/08/2017 1:31,5/02/2013 23:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3367,29/08/2017 1:31,13/08/2012 20:55,5.5,310, Cryptographic Issues,nan
CVE-2012-3366,29/08/2017 1:31,3/07/2012 16:40,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-3358,29/08/2017 1:31,18/07/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3357,29/08/2017 1:31,22/07/2012 16:55,5.0,200, Information Exposure,nan
CVE-2012-3355,29/08/2017 1:31,17/07/2012 21:55,3.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-3334,29/08/2017 1:31,25/09/2012 20:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3329,29/08/2017 1:31,19/12/2012 11:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-3328,29/08/2017 1:31,20/02/2013 12:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3327,29/08/2017 1:31,20/02/2013 12:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3326,29/08/2017 1:31,10/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3325,29/08/2017 1:31,30/08/2012 22:55,6.0,20, Improper Input Validation,nan
CVE-2012-3324,29/08/2017 1:31,25/09/2012 20:55,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3323,29/08/2017 1:31,1/10/2013 11:14,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3322,29/08/2017 1:31,20/02/2013 12:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3321,29/08/2017 1:31,20/02/2013 12:09,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3319,29/08/2017 1:31,1/10/2012 18:55,5.0,200, Information Exposure,nan
CVE-2012-3317,29/08/2017 1:31,5/12/2012 11:57,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3316,29/08/2017 1:31,20/02/2013 12:09,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3315,29/08/2017 1:31,8/11/2012 11:46,5.0,287, Improper Authentication,nan
CVE-2012-3313,29/08/2017 1:31,10/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3312,29/08/2017 1:31,29/08/2012 22:55,5.0,310, Cryptographic Issues,nan
CVE-2012-3311,29/08/2017 1:31,25/09/2012 20:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3310,29/08/2017 1:31,17/01/2013 22:55,3.5,255, Credentials Management,nan
CVE-2012-3309,29/08/2017 1:31,29/08/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3308,29/08/2017 1:31,17/08/2012 10:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3306,29/08/2017 1:31,25/09/2012 20:55,6.8,255, Credentials Management,nan
CVE-2012-3305,29/08/2017 1:31,25/09/2012 20:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3302,29/08/2017 1:31,21/08/2012 10:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3301,29/08/2017 1:31,21/08/2012 10:46,4.3,20, Improper Input Validation,nan
CVE-2012-3300,29/08/2017 1:31,25/09/2012 20:55,2.6,399, Resource Management Errors,nan
CVE-2012-3297,29/08/2017 1:31,8/12/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3296,29/08/2017 1:31,17/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3295,29/08/2017 1:31,29/08/2012 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3294,29/08/2017 1:31,17/08/2012 10:31,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3293,29/08/2017 1:31,21/08/2012 10:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3234,29/08/2017 1:31,12/09/2012 10:38,7.5,189, Numeric Errors,nan
CVE-2012-3233,29/08/2017 1:31,15/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3094,29/08/2017 1:31,16/09/2012 10:34,5.0,200, Information Exposure,nan
CVE-2012-3079,29/08/2017 1:31,16/09/2012 10:34,7.8,399, Resource Management Errors,nan
CVE-2012-3060,29/08/2017 1:31,16/09/2012 10:34,7.8,399, Resource Management Errors,nan
CVE-2012-3035,29/08/2017 1:31,1/10/2012 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3000,29/08/2017 1:31,30/01/2014 15:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2997,29/08/2017 1:31,21/01/2014 18:55,4.0,200, Information Exposure,nan
CVE-2012-2993,29/08/2017 1:31,18/09/2012 3:48,2.6,310, Cryptographic Issues,nan
CVE-2012-2956,29/08/2017 1:31,17/09/2014 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2952,29/08/2017 1:31,29/05/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2948,29/08/2017 1:31,2/06/2012 15:55,4.0,399, Resource Management Errors,nan
CVE-2012-2942,29/08/2017 1:31,27/05/2012 20:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2941,29/08/2017 1:31,27/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2940,29/08/2017 1:31,27/05/2012 20:55,4.3,20, Improper Input Validation,nan
CVE-2012-2938,29/08/2017 1:31,27/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2937,29/08/2017 1:31,27/05/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2936,29/08/2017 1:31,27/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2935,29/08/2017 1:31,27/05/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2928,29/08/2017 1:31,22/05/2012 15:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-2927,29/08/2017 1:31,22/05/2012 15:55,4.0,399, Resource Management Errors,nan
CVE-2012-2926,29/08/2017 1:31,22/05/2012 15:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-2925,29/08/2017 1:31,21/05/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2924,29/08/2017 1:31,21/05/2012 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2923,29/08/2017 1:31,21/05/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2922,29/08/2017 1:31,21/05/2012 22:55,5.0,200, Information Exposure,nan
CVE-2012-2920,29/08/2017 1:31,21/05/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2919,29/08/2017 1:31,21/05/2012 22:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2918,29/08/2017 1:31,21/05/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2917,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2916,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2915,29/08/2017 1:31,21/05/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2914,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2913,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2912,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2911,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2910,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2909,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2908,29/08/2017 1:31,21/05/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2907,29/08/2017 1:31,21/05/2012 18:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2906,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2905,29/08/2017 1:31,21/05/2012 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2904,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2903,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2901,29/08/2017 1:31,21/05/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2896,29/08/2017 1:31,26/09/2012 10:56,7.5,189, Numeric Errors,nan
CVE-2012-2806,29/08/2017 1:31,13/08/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2770,29/08/2017 1:31,15/08/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2769,29/08/2017 1:31,15/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2768,29/08/2017 1:31,15/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2762,29/08/2017 1:31,7/06/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2760,29/08/2017 1:31,25/07/2012 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-2759,29/08/2017 1:31,22/05/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2743,29/08/2017 1:31,27/06/2012 22:55,5.0,255, Credentials Management,nan
CVE-2012-2742,29/08/2017 1:31,27/06/2012 22:55,5.0,255, Credentials Management,nan
CVE-2012-2737,29/08/2017 1:31,22/07/2012 17:55,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2734,29/08/2017 1:31,28/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2731,29/08/2017 1:31,27/06/2012 0:55,2.6,200, Information Exposure,nan
CVE-2012-2730,29/08/2017 1:31,27/06/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2729,29/08/2017 1:31,27/06/2012 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2728,29/08/2017 1:31,27/06/2012 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2727,29/08/2017 1:31,27/06/2012 0:55,5.8,20, Improper Input Validation,nan
CVE-2012-2726,29/08/2017 1:31,27/06/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2725,29/08/2017 1:31,27/06/2012 0:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2723,29/08/2017 1:31,27/06/2012 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2722,29/08/2017 1:31,27/06/2012 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2721,29/08/2017 1:31,27/06/2012 0:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-2720,29/08/2017 1:31,27/06/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2718,29/08/2017 1:31,21/06/2012 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2717,29/08/2017 1:31,27/06/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2716,29/08/2017 1:31,21/06/2012 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2715,29/08/2017 1:31,27/06/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2713,29/08/2017 1:31,27/06/2012 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2712,29/08/2017 1:31,27/06/2012 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2711,29/08/2017 1:31,27/06/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2710,29/08/2017 1:31,27/06/2012 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2708,29/08/2017 1:31,27/06/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2707,29/08/2017 1:31,27/06/2012 0:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-2706,29/08/2017 1:31,27/06/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2705,29/08/2017 1:31,27/06/2012 0:55,2.1,20, Improper Input Validation,nan
CVE-2012-2704,29/08/2017 1:31,31/08/2012 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2703,29/08/2017 1:31,27/06/2012 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2702,29/08/2017 1:31,27/06/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2698,29/08/2017 1:31,29/06/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2696,29/08/2017 1:31,4/01/2013 22:55,2.7,264, Permissions Privileges and Access Controls,nan
CVE-2012-2691,29/08/2017 1:31,17/06/2012 3:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2690,29/08/2017 1:31,29/06/2012 19:55,2.1,255, Credentials Management,nan
CVE-2012-2685,29/08/2017 1:31,28/09/2012 17:55,4.0,399, Resource Management Errors,nan
CVE-2012-2683,29/08/2017 1:31,28/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2681,29/08/2017 1:31,28/09/2012 17:55,5.8,310, Cryptographic Issues,nan
CVE-2012-2680,29/08/2017 1:31,28/09/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2679,29/08/2017 1:31,22/10/2012 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-2670,29/08/2017 1:31,17/06/2012 3:41,6.5,20, Improper Input Validation,nan
CVE-2012-2668,29/08/2017 1:31,17/06/2012 3:41,4.3,200, Information Exposure,nan
CVE-2012-2664,29/08/2017 1:31,29/06/2012 19:55,4.3,255, Credentials Management,nan
CVE-2012-2662,29/08/2017 1:31,13/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2658,29/08/2017 1:31,31/08/2012 18:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2657,29/08/2017 1:31,31/08/2012 18:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2654,29/08/2017 1:31,21/06/2012 15:55,4.3,20, Improper Input Validation,nan
CVE-2012-2601,29/08/2017 1:31,15/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2592,29/08/2017 1:31,18/06/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2591,29/08/2017 1:31,20/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2588,29/08/2017 1:31,19/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2584,29/08/2017 1:31,12/08/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2583,29/08/2017 1:31,17/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2580,29/08/2017 1:31,20/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2579,29/08/2017 1:31,20/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2577,29/08/2017 1:31,12/08/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2572,29/08/2017 1:31,19/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2570,29/08/2017 1:31,15/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2569,29/08/2017 1:31,19/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2568,29/08/2017 1:31,25/05/2012 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2567,29/08/2017 1:31,22/05/2012 15:55,2.6,255, Credentials Management,nan
CVE-2012-2562,29/08/2017 1:31,22/05/2012 15:55,7.6,287, Improper Authentication,nan
CVE-2012-2513,29/08/2017 1:31,15/05/2012 4:21,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2512,29/08/2017 1:31,15/05/2012 4:21,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2511,29/08/2017 1:31,15/05/2012 4:21,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2442,29/08/2017 1:31,25/07/2012 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2440,29/08/2017 1:31,28/04/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2438,29/08/2017 1:31,26/11/2012 12:45,5.0,399, Resource Management Errors,nan
CVE-2012-2437,29/08/2017 1:31,26/11/2012 12:45,5.0,287, Improper Authentication,nan
CVE-2012-2436,29/08/2017 1:31,27/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2420,29/08/2017 1:31,25/04/2012 20:55,1.8,200, Information Exposure,nan
CVE-2012-2417,29/08/2017 1:31,17/06/2012 3:41,4.3,310, Cryptographic Issues,nan
CVE-2012-2413,29/08/2017 1:31,20/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2411,29/08/2017 1:31,18/05/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2410,29/08/2017 1:31,12/09/2012 10:38,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2409,29/08/2017 1:31,12/09/2012 10:38,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2408,29/08/2017 1:31,12/09/2012 10:38,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2407,29/08/2017 1:31,12/09/2012 10:38,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2388,29/08/2017 1:31,27/06/2012 21:55,7.5,287, Improper Authentication,nan
CVE-2012-2385,29/08/2017 1:31,29/06/2012 19:55,4.0,399, Resource Management Errors,nan
CVE-2012-2377,29/08/2017 1:31,23/11/2012 20:55,3.3,287, Improper Authentication,nan
CVE-2012-2376,29/08/2017 1:31,21/05/2012 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2370,29/08/2017 1:31,13/08/2012 20:55,5.0,189, Numeric Errors,nan
CVE-2012-2339,29/08/2017 1:31,21/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2334,29/08/2017 1:31,19/06/2012 20:55,6.8,189, Numeric Errors,nan
CVE-2012-2329,29/08/2017 1:31,11/05/2012 10:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2322,29/08/2017 1:31,18/05/2012 22:55,5.0,189, Numeric Errors,nan
CVE-2012-2321,29/08/2017 1:31,18/05/2012 22:55,10.0,20, Improper Input Validation,nan
CVE-2012-2320,29/08/2017 1:31,18/05/2012 22:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-2315,29/08/2017 1:31,9/09/2012 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2308,29/08/2017 1:31,25/07/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2304,29/08/2017 1:31,14/08/2012 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2298,29/08/2017 1:31,14/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2297,29/08/2017 1:31,26/08/2012 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2296,29/08/2017 1:31,25/07/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-2287,29/08/2017 1:31,25/09/2012 11:07,8.5,287, Improper Authentication,nan
CVE-2012-2285,29/08/2017 1:31,29/08/2012 22:55,6.8,287, Improper Authentication,nan
CVE-2012-2277,29/08/2017 1:31,14/05/2012 22:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2276,29/08/2017 1:31,14/05/2012 22:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2275,29/08/2017 1:31,15/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2251,29/08/2017 1:31,11/01/2013 1:55,4.4,20, Improper Input Validation,nan
CVE-2012-2246,29/08/2017 1:31,24/11/2012 20:55,6.8,20, Improper Input Validation,nan
CVE-2012-2241,29/08/2017 1:31,1/10/2012 0:55,5.0,20, Improper Input Validation,nan
CVE-2012-2227,29/08/2017 1:31,26/08/2012 18:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2215,29/08/2017 1:31,9/04/2012 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2209,29/08/2017 1:31,14/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2208,29/08/2017 1:31,14/08/2012 22:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2206,29/08/2017 1:31,17/08/2012 10:31,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2205,29/08/2017 1:31,17/08/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2203,29/08/2017 1:31,8/08/2012 10:26,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2200,29/08/2017 1:31,27/06/2012 10:18,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-2199,29/08/2017 1:31,25/09/2012 20:55,5.0,399, Resource Management Errors,nan
CVE-2012-2193,29/08/2017 1:31,5/03/2013 4:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2192,29/08/2017 1:31,20/06/2012 10:27,4.9,399, Resource Management Errors,nan
CVE-2012-2191,29/08/2017 1:31,8/08/2012 10:26,5.0,20, Improper Input Validation,nan
CVE-2012-2190,29/08/2017 1:31,21/08/2012 10:46,5.0,310, Cryptographic Issues,nan
CVE-2012-2188,29/08/2017 1:31,6/08/2012 16:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-2185,29/08/2017 1:31,10/09/2012 17:55,4.0,200, Information Exposure,nan
CVE-2012-2181,29/08/2017 1:31,3/07/2012 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2179,29/08/2017 1:31,22/06/2012 10:24,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2177,29/08/2017 1:31,5/03/2013 4:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2176,29/08/2017 1:31,25/05/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2175,29/08/2017 1:31,20/06/2012 10:27,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2174,29/08/2017 1:31,20/06/2012 10:27,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2173,29/08/2017 1:31,20/06/2012 10:27,5.0,255, Credentials Management,nan
CVE-2012-2172,29/08/2017 1:31,22/06/2012 10:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2171,29/08/2017 1:31,22/06/2012 10:24,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2170,29/08/2017 1:31,20/06/2012 10:27,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2169,29/08/2017 1:31,17/08/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2168,29/08/2017 1:31,17/08/2012 20:55,4.0,200, Information Exposure,nan
CVE-2012-2165,29/08/2017 1:31,17/08/2012 20:55,3.5,200, Information Exposure,nan
CVE-2012-2164,29/08/2017 1:31,17/08/2012 20:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2163,29/08/2017 1:31,30/07/2012 19:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2162,29/08/2017 1:31,1/05/2012 19:55,6.8,310, Cryptographic Issues,nan
CVE-2012-2161,29/08/2017 1:31,20/06/2012 10:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2159,29/08/2017 1:31,20/06/2012 10:27,5.8,20, Improper Input Validation,nan
CVE-2012-2155,29/08/2017 1:31,14/08/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2154,29/08/2017 1:31,14/08/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2151,29/08/2017 1:31,14/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2147,29/08/2017 1:31,26/08/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2012-2145,29/08/2017 1:31,28/09/2012 15:55,5.0,399, Resource Management Errors,nan
CVE-2012-2132,29/08/2017 1:31,20/08/2012 18:55,5.0,287, Improper Authentication,nan
CVE-2012-2129,29/08/2017 1:31,27/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2128,29/08/2017 1:31,27/08/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2118,29/08/2017 1:31,18/05/2012 22:55,10.0,20, Improper Input Validation,nan
CVE-2012-2117,29/08/2017 1:31,31/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2115,29/08/2017 1:31,9/09/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2112,29/08/2017 1:31,27/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2108,29/08/2017 1:31,4/02/2014 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2107,29/08/2017 1:31,4/02/2014 21:55,9.3,189, Numeric Errors,nan
CVE-2012-2106,29/08/2017 1:31,4/02/2014 21:55,9.3,189, Numeric Errors,nan
CVE-2012-2105,29/08/2017 1:31,19/09/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2103,29/08/2017 1:31,26/08/2012 21:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-2101,29/08/2017 1:31,7/06/2012 19:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2099,29/08/2017 1:31,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2098,29/08/2017 1:31,29/06/2012 19:55,5.0,310, Cryptographic Issues,nan
CVE-2012-2097,29/08/2017 1:31,14/08/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2094,29/08/2017 1:31,5/06/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2093,29/08/2017 1:31,18/05/2012 22:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-2090,29/08/2017 1:31,17/06/2012 3:41,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2012-2084,29/08/2017 1:31,22/11/2012 12:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2082,29/08/2017 1:31,14/08/2012 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2081,29/08/2017 1:31,14/08/2012 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2080,29/08/2017 1:31,14/08/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2077,29/08/2017 1:31,14/08/2012 23:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2076,29/08/2017 1:31,14/08/2012 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2075,29/08/2017 1:31,14/08/2012 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2073,29/08/2017 1:31,14/08/2012 23:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2072,29/08/2017 1:31,14/08/2012 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2071,29/08/2017 1:31,14/08/2012 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2070,29/08/2017 1:31,14/08/2012 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2068,29/08/2017 1:31,5/09/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2066,29/08/2017 1:31,5/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2063,29/08/2017 1:31,5/09/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2061,29/08/2017 1:31,17/09/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2060,29/08/2017 1:31,17/09/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2059,29/08/2017 1:31,17/09/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2058,29/08/2017 1:31,17/09/2012 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2057,29/08/2017 1:31,17/09/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2026,29/08/2017 1:31,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2025,29/08/2017 1:31,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2024,29/08/2017 1:31,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2023,29/08/2017 1:31,9/05/2012 4:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1982,29/08/2017 1:31,5/04/2012 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1979,29/08/2017 1:31,17/04/2012 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1935,29/08/2017 1:31,27/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1934,29/08/2017 1:31,27/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1933,29/08/2017 1:31,27/08/2012 21:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1912,29/08/2017 1:31,9/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1911,29/08/2017 1:31,9/09/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1900,29/08/2017 1:31,22/10/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1899,29/08/2017 1:31,17/09/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1834,29/08/2017 1:31,7/04/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1813,29/08/2017 1:31,13/11/2012 13:39,7.8,399, Resource Management Errors,nan
CVE-2012-1812,29/08/2017 1:31,13/11/2012 13:39,5.0,200, Information Exposure,nan
CVE-2012-1811,29/08/2017 1:31,13/11/2012 13:39,7.8,399, Resource Management Errors,nan
CVE-2012-1810,29/08/2017 1:31,13/11/2012 13:39,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1798,29/08/2017 1:31,5/06/2012 22:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1789,29/08/2017 1:31,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1785,29/08/2017 1:31,19/03/2012 18:55,7.5,20, Improper Input Validation,nan
CVE-2012-1783,29/08/2017 1:31,19/03/2012 18:55,7.8,20, Improper Input Validation,nan
CVE-2012-1781,29/08/2017 1:31,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1780,29/08/2017 1:31,19/03/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1778,29/08/2017 1:31,19/03/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1673,29/08/2017 1:31,11/04/2012 10:39,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1672,29/08/2017 1:31,11/04/2012 10:39,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1663,29/08/2017 1:31,13/03/2012 22:55,7.5,399, Resource Management Errors,nan
CVE-2012-1660,29/08/2017 1:31,18/09/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1659,29/08/2017 1:31,18/09/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1658,29/08/2017 1:31,18/09/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1657,29/08/2017 1:31,18/09/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1656,29/08/2017 1:31,18/09/2012 20:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1653,29/08/2017 1:31,19/09/2012 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1652,29/08/2017 1:31,19/09/2012 19:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1650,29/08/2017 1:31,28/08/2012 17:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1649,29/08/2017 1:31,9/09/2012 21:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1648,29/08/2017 1:31,9/09/2012 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1647,29/08/2017 1:31,28/08/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1646,29/08/2017 1:31,25/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1644,29/08/2017 1:31,28/08/2012 17:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-1640,29/08/2017 1:31,19/09/2012 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1639,29/08/2017 1:31,1/10/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1634,29/08/2017 1:31,6/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1631,29/08/2017 1:31,20/09/2012 3:46,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1630,29/08/2017 1:31,20/09/2012 3:46,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1629,29/08/2017 1:31,20/09/2012 3:46,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1628,29/08/2017 1:31,20/09/2012 3:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1626,29/08/2017 1:31,20/09/2012 3:46,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1624,29/08/2017 1:31,6/10/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1620,29/08/2017 1:31,12/07/2012 19:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1617,29/08/2017 1:31,26/09/2012 0:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1616,29/08/2017 1:31,21/06/2012 15:55,9.3,399, Resource Management Errors,nan
CVE-2012-1610,29/08/2017 1:31,5/06/2012 22:55,4.3,189, Numeric Errors,nan
CVE-2012-1584,29/08/2017 1:31,6/09/2012 18:55,4.3,189, Numeric Errors,nan
CVE-2012-1582,29/08/2017 1:31,9/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1581,29/08/2017 1:31,9/09/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1580,29/08/2017 1:31,9/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1578,29/08/2017 1:31,9/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1564,29/08/2017 1:31,6/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1561,29/08/2017 1:31,8/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1556,29/08/2017 1:31,12/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1514,29/08/2017 1:31,16/03/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1507,29/08/2017 1:31,17/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1506,29/08/2017 1:31,17/09/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1503,29/08/2017 1:31,29/08/2014 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1502,29/08/2017 1:31,16/06/2012 0:55,7.5,399, Resource Management Errors,nan
CVE-2012-1498,29/08/2017 1:31,19/03/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1466,29/08/2017 1:31,19/03/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-1465,29/08/2017 1:31,19/03/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1463,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1462,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1460,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1456,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1429,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1428,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1427,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1426,29/08/2017 1:31,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1417,29/08/2017 1:31,17/09/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1416,29/08/2017 1:31,8/10/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1414,29/08/2017 1:31,7/10/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1308,29/08/2017 1:31,8/10/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1296,29/08/2017 1:31,26/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1294,29/08/2017 1:31,23/02/2012 20:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1289,29/08/2017 1:31,23/02/2012 20:07,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1248,29/08/2017 1:31,15/05/2012 20:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-1226,29/08/2017 1:31,21/02/2012 13:31,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1223,29/08/2017 1:31,21/02/2012 13:31,5.0,200, Information Exposure,nan
CVE-2012-1222,29/08/2017 1:31,21/02/2012 13:31,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1221,29/08/2017 1:31,21/02/2012 13:31,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1220,29/08/2017 1:31,21/02/2012 13:31,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1219,29/08/2017 1:31,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1218,29/08/2017 1:31,21/02/2012 13:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1217,29/08/2017 1:31,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1215,29/08/2017 1:31,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1214,29/08/2017 1:31,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1212,29/08/2017 1:31,24/02/2012 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1211,29/08/2017 1:31,24/02/2012 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1210,29/08/2017 1:31,24/02/2012 13:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1207,29/08/2017 1:31,24/02/2012 13:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1206,29/08/2017 1:31,24/02/2012 13:55,9.3,189, Numeric Errors,nan
CVE-2012-1200,29/08/2017 1:31,18/02/2012 0:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1199,29/08/2017 1:31,18/02/2012 0:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1198,29/08/2017 1:31,18/02/2012 0:55,7.5,20, Improper Input Validation,nan
CVE-2012-1197,29/08/2017 1:31,18/02/2012 0:55,9.3,189, Numeric Errors,nan
CVE-2012-1196,29/08/2017 1:31,18/02/2012 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1195,29/08/2017 1:31,18/02/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1188,29/08/2017 1:31,26/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1186,29/08/2017 1:31,5/06/2012 22:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1185,29/08/2017 1:31,5/06/2012 22:55,9.3,189, Numeric Errors,nan
CVE-2012-1184,29/08/2017 1:31,18/09/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1183,29/08/2017 1:31,18/09/2012 18:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1181,29/08/2017 1:31,19/03/2012 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1176,29/08/2017 1:31,26/08/2012 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1167,29/08/2017 1:31,23/11/2012 20:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1152,29/08/2017 1:31,9/09/2012 21:55,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2012-1151,29/08/2017 1:31,9/09/2012 21:55,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2012-1149,29/08/2017 1:31,21/06/2012 15:55,7.5,189, Numeric Errors,nan
CVE-2012-1145,29/08/2017 1:31,16/06/2012 0:55,5.0,287, Improper Authentication,nan
CVE-2012-1117,29/08/2017 1:31,26/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1116,29/08/2017 1:31,26/09/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1112,29/08/2017 1:31,6/09/2012 18:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1110,29/08/2017 1:31,6/09/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1108,29/08/2017 1:31,6/09/2012 18:55,4.3,20, Improper Input Validation,nan
CVE-2012-1106,29/08/2017 1:31,3/07/2012 16:40,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1084,29/08/2017 1:31,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1078,29/08/2017 1:31,14/02/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1076,29/08/2017 1:31,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1075,29/08/2017 1:31,14/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1074,29/08/2017 1:31,14/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1073,29/08/2017 1:31,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1072,29/08/2017 1:31,14/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1071,29/08/2017 1:31,14/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1069,29/08/2017 1:31,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1068,29/08/2017 1:31,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1067,29/08/2017 1:31,14/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1066,29/08/2017 1:31,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1063,29/08/2017 1:31,14/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1062,29/08/2017 1:31,14/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1061,29/08/2017 1:31,14/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1059,29/08/2017 1:31,14/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1058,29/08/2017 1:31,14/02/2012 0:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1057,29/08/2017 1:31,14/02/2012 0:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1056,29/08/2017 1:31,14/02/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1055,29/08/2017 1:31,14/02/2012 0:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1052,29/08/2017 1:31,13/02/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1051,29/08/2017 1:31,13/02/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1050,29/08/2017 1:31,13/02/2012 19:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1049,29/08/2017 1:31,13/02/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1048,29/08/2017 1:31,12/02/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1032,29/08/2017 1:31,17/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1029,29/08/2017 1:31,8/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1028,29/08/2017 1:31,8/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1027,29/08/2017 1:31,8/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1026,29/08/2017 1:31,8/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1024,29/08/2017 1:31,8/02/2012 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1023,29/08/2017 1:31,8/02/2012 0:55,5.8,20, Improper Input Validation,nan
CVE-2012-1022,29/08/2017 1:31,8/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1021,29/08/2017 1:31,8/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1020,29/08/2017 1:31,8/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1018,29/08/2017 1:31,8/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1017,29/08/2017 1:31,8/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1011,29/08/2017 1:31,7/02/2012 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1010,29/08/2017 1:31,7/02/2012 21:55,7.5,20, Improper Input Validation,nan
CVE-2012-1006,29/08/2017 1:31,7/02/2012 4:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1005,29/08/2017 1:31,7/02/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1003,29/08/2017 1:31,7/02/2012 4:09,5.0,189, Numeric Errors,nan
CVE-2012-0995,29/08/2017 1:31,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0994,29/08/2017 1:31,21/02/2012 13:31,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0993,29/08/2017 1:31,21/02/2012 13:31,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0992,29/08/2017 1:31,7/02/2012 21:55,8.5,20, Improper Input Validation,nan
CVE-2012-0991,29/08/2017 1:31,7/02/2012 21:55,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0990,29/08/2017 1:31,7/02/2012 21:55,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0989,29/08/2017 1:31,1/10/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0988,29/08/2017 1:31,20/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0986,29/08/2017 1:31,6/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0985,29/08/2017 1:31,7/06/2012 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0984,29/08/2017 1:31,11/09/2014 14:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0983,29/08/2017 1:31,2/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0982,29/08/2017 1:31,2/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0981,29/08/2017 1:31,2/02/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0980,29/08/2017 1:31,2/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0979,29/08/2017 1:31,2/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0978,29/08/2017 1:31,2/02/2012 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0977,29/08/2017 1:31,2/02/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0976,29/08/2017 1:31,2/02/2012 17:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0975,29/08/2017 1:31,2/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0960,29/08/2017 1:31,24/11/2012 20:55,7.5,20, Improper Input Validation,nan
CVE-2012-0959,29/08/2017 1:31,24/11/2012 20:55,2.1,200, Information Exposure,nan
CVE-2012-0949,29/08/2017 1:31,31/05/2012 17:55,5.0,200, Information Exposure,nan
CVE-2012-0948,29/08/2017 1:31,7/06/2012 21:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-0944,29/08/2017 1:31,4/06/2012 20:55,4.3,287, Improper Authentication,nan
CVE-2012-0939,29/08/2017 1:31,14/08/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0938,29/08/2017 1:31,14/08/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0936,29/08/2017 1:31,29/01/2012 4:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0935,29/08/2017 1:31,29/01/2012 4:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0934,29/08/2017 1:31,29/01/2012 4:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0933,29/08/2017 1:31,29/01/2012 4:04,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0932,29/08/2017 1:31,29/01/2012 4:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0931,29/08/2017 1:31,28/01/2012 1:55,7.8,287, Improper Authentication,nan
CVE-2012-0930,29/08/2017 1:31,28/01/2012 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0929,29/08/2017 1:31,28/01/2012 1:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0922,29/08/2017 1:31,8/02/2012 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0919,29/08/2017 1:31,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0917,29/08/2017 1:31,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0914,29/08/2017 1:31,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0913,29/08/2017 1:31,24/01/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0911,29/08/2017 1:31,12/07/2012 19:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0908,29/08/2017 1:31,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0907,29/08/2017 1:31,20/01/2012 17:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0906,29/08/2017 1:31,20/01/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0905,29/08/2017 1:31,20/01/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0903,29/08/2017 1:31,20/01/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0901,29/08/2017 1:31,20/01/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0900,29/08/2017 1:31,20/01/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0899,29/08/2017 1:31,20/01/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0898,29/08/2017 1:31,20/01/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0897,29/08/2017 1:31,20/01/2012 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0896,29/08/2017 1:31,20/01/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0895,29/08/2017 1:31,20/01/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0874,29/08/2017 1:31,5/02/2013 23:55,6.8,287, Improper Authentication,nan
CVE-2012-0872,29/08/2017 1:31,19/03/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0869,29/08/2017 1:31,25/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0862,29/08/2017 1:31,4/06/2012 20:55,4.3,20, Improper Input Validation,nan
CVE-2012-0861,29/08/2017 1:31,4/01/2013 22:55,6.8,310, Cryptographic Issues,nan
CVE-2012-0859,29/08/2017 1:31,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0852,29/08/2017 1:31,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0851,29/08/2017 1:31,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0848,29/08/2017 1:31,20/08/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0846,29/08/2017 1:31,8/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0829,29/08/2017 1:31,14/02/2012 0:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0818,29/08/2017 1:31,23/11/2012 20:55,5.0,200, Information Exposure,nan
CVE-2012-0814,29/08/2017 1:31,27/01/2012 19:55,3.5,255, Credentials Management,nan
CVE-2012-0765,29/08/2017 1:31,15/02/2012 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0762,29/08/2017 1:31,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0761,29/08/2017 1:31,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0748,29/08/2017 1:31,1/10/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0747,29/08/2017 1:31,10/09/2012 17:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0746,29/08/2017 1:31,10/09/2012 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0744,29/08/2017 1:31,17/08/2012 20:55,5.0,200, Information Exposure,nan
CVE-2012-0742,29/08/2017 1:31,9/04/2012 20:55,1.9,200, Information Exposure,nan
CVE-2012-0741,29/08/2017 1:31,28/12/2012 11:48,5.8,20, Improper Input Validation,nan
CVE-2012-0738,29/08/2017 1:31,28/12/2012 11:48,5.8,20, Improper Input Validation,nan
CVE-2012-0737,29/08/2017 1:31,3/05/2012 4:08,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0736,29/08/2017 1:31,3/05/2012 4:08,9.3,20, Improper Input Validation,nan
CVE-2012-0735,29/08/2017 1:31,3/05/2012 4:08,7.6,20, Improper Input Validation,nan
CVE-2012-0733,29/08/2017 1:31,3/05/2012 4:08,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0732,29/08/2017 1:31,3/05/2012 4:08,5.8,310, Cryptographic Issues,nan
CVE-2012-0731,29/08/2017 1:31,3/05/2012 4:08,6.8,200, Information Exposure,nan
CVE-2012-0730,29/08/2017 1:31,3/05/2012 4:08,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0728,29/08/2017 1:31,10/09/2012 17:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0727,29/08/2017 1:31,10/09/2012 17:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0723,29/08/2017 1:31,30/07/2012 19:55,4.9,20, Improper Input Validation,nan
CVE-2012-0720,29/08/2017 1:31,20/06/2012 10:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0719,29/08/2017 1:31,22/03/2012 3:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0715,29/08/2017 1:31,2/03/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0714,29/08/2017 1:31,10/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0707,29/08/2017 1:31,23/02/2012 12:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0706,29/08/2017 1:31,7/04/2013 17:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0705,29/08/2017 1:31,31/01/2013 12:06,7.1,20, Improper Input Validation,nan
CVE-2012-0703,29/08/2017 1:31,31/01/2013 12:06,5.8,20, Improper Input Validation,nan
CVE-2012-0702,29/08/2017 1:31,31/01/2013 12:06,4.0,287, Improper Authentication,nan
CVE-2012-0701,29/08/2017 1:31,31/01/2013 12:06,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0700,29/08/2017 1:31,31/01/2013 12:06,1.9,255, Credentials Management,nan
CVE-2012-0698,29/08/2017 1:31,26/11/2012 12:45,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0697,29/08/2017 1:30,13/01/2012 4:14,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0696,29/08/2017 1:30,13/01/2012 4:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0448,29/08/2017 1:30,2/02/2012 18:55,4.0,20, Improper Input Validation,nan
CVE-2012-0440,29/08/2017 1:30,2/02/2012 18:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0396,29/08/2017 1:30,6/02/2012 20:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0389,29/08/2017 1:30,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0383,29/08/2017 1:30,29/03/2012 11:01,7.8,399, Resource Management Errors,nan
CVE-2012-0382,29/08/2017 1:30,29/03/2012 11:01,7.1,399, Resource Management Errors,nan
CVE-2012-0381,29/08/2017 1:30,29/03/2012 11:01,7.8,310, Cryptographic Issues,nan
CVE-2012-0328,29/08/2017 1:30,19/03/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-0310,29/08/2017 1:30,13/01/2012 4:14,5.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0309,29/08/2017 1:30,13/01/2012 4:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0307,29/08/2017 1:30,29/08/2012 10:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0284,29/08/2017 1:30,19/07/2012 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0279,29/08/2017 1:30,1/05/2012 23:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0275,29/08/2017 1:30,4/09/2012 11:04,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0273,29/08/2017 1:30,20/06/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0267,29/08/2017 1:30,15/01/2012 3:55,9.3,20, Improper Input Validation,nan
CVE-2012-0266,29/08/2017 1:30,15/01/2012 3:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0260,29/08/2017 1:30,5/06/2012 22:55,5.0,399, Resource Management Errors,nan
CVE-2012-0259,29/08/2017 1:30,5/06/2012 22:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0253,29/08/2017 1:30,18/04/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0227,29/08/2017 1:30,12/10/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0220,29/08/2017 1:30,29/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0212,29/08/2017 1:30,16/06/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0211,29/08/2017 1:30,16/06/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0210,29/08/2017 1:30,16/06/2012 0:55,9.3,20, Improper Input Validation,nan
CVE-2012-0205,29/08/2017 1:30,31/01/2013 12:06,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0203,29/08/2017 1:30,31/01/2013 12:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0202,29/08/2017 1:30,4/05/2012 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0201,29/08/2017 1:30,2/03/2012 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0199,29/08/2017 1:30,6/03/2012 4:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0192,29/08/2017 1:30,23/01/2012 15:55,9.3,189, Numeric Errors,nan
CVE-2012-0191,29/08/2017 1:30,22/06/2012 10:24,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0186,29/08/2017 1:30,22/06/2012 10:24,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0132,29/08/2017 1:30,5/04/2012 13:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0130,29/08/2017 1:30,5/04/2012 13:25,5.0,200, Information Exposure,nan
CVE-2012-0129,29/08/2017 1:30,5/04/2012 13:25,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-0128,29/08/2017 1:30,5/04/2012 13:25,5.8,20, Improper Input Validation,nan
CVE-2012-0069,29/08/2017 1:30,24/01/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0065,29/08/2017 1:30,6/10/2012 21:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0040,29/08/2017 1:30,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0037,29/08/2017 1:30,17/06/2012 3:41,4.3,200, Information Exposure,nan
CVE-2012-0030,29/08/2017 1:30,13/01/2012 18:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0029,29/08/2017 1:30,27/01/2012 15:55,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5278,29/08/2017 1:30,8/04/2014 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5277,29/08/2017 1:30,8/04/2014 14:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5264,29/08/2017 1:30,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5261,29/08/2017 1:30,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5255,29/08/2017 1:30,31/01/2013 5:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5253,29/08/2017 1:30,12/01/2013 4:33,4.3,287, Improper Authentication,nan
CVE-2011-5252,29/08/2017 1:30,12/01/2013 4:33,5.8,20, Improper Input Validation,nan
CVE-2011-5245,29/08/2017 1:30,23/11/2012 20:55,5.0,200, Information Exposure,nan
CVE-2011-5244,29/08/2017 1:30,19/11/2012 12:10,6.8,189, Numeric Errors,nan
CVE-2011-5235,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5234,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5233,29/08/2017 1:30,25/10/2012 17:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5230,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5229,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5228,29/08/2017 1:30,25/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5227,29/08/2017 1:30,25/10/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5226,29/08/2017 1:30,25/10/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5225,29/08/2017 1:30,25/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5224,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5223,29/08/2017 1:30,25/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5222,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5221,29/08/2017 1:30,25/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5220,29/08/2017 1:30,25/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5219,29/08/2017 1:30,25/10/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5218,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5217,29/08/2017 1:30,25/10/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5216,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5215,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5214,29/08/2017 1:30,25/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5213,29/08/2017 1:30,25/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5210,29/08/2017 1:30,9/10/2012 15:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5209,29/08/2017 1:30,9/10/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5207,29/08/2017 1:30,4/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5206,29/08/2017 1:30,4/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5205,29/08/2017 1:30,4/10/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5203,29/08/2017 1:30,4/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5202,29/08/2017 1:30,1/10/2012 20:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5201,29/08/2017 1:30,23/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5200,29/08/2017 1:30,23/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5199,29/08/2017 1:30,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5198,29/08/2017 1:30,23/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5194,29/08/2017 1:30,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5190,29/08/2017 1:30,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5189,29/08/2017 1:30,20/09/2012 10:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5188,29/08/2017 1:30,20/09/2012 10:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5187,29/08/2017 1:30,20/09/2012 10:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5177,29/08/2017 1:30,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5173,29/08/2017 1:30,15/09/2012 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5172,29/08/2017 1:30,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5171,29/08/2017 1:30,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5170,29/08/2017 1:30,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5167,29/08/2017 1:30,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5166,29/08/2017 1:30,15/09/2012 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5162,29/08/2017 1:30,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5160,29/08/2017 1:30,9/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5149,29/08/2017 1:30,31/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5145,29/08/2017 1:30,31/08/2012 21:55,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5144,29/08/2017 1:30,31/08/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-5142,29/08/2017 1:30,31/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5141,29/08/2017 1:30,31/08/2012 21:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5140,29/08/2017 1:30,31/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5139,29/08/2017 1:30,31/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5138,29/08/2017 1:30,31/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5137,29/08/2017 1:30,31/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5136,29/08/2017 1:30,30/08/2012 22:55,6.4,20, Improper Input Validation,nan
CVE-2011-5135,29/08/2017 1:30,30/08/2012 22:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5132,29/08/2017 1:30,30/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5131,29/08/2017 1:30,30/08/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5130,29/08/2017 1:30,30/08/2012 22:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-5111,29/08/2017 1:30,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5108,29/08/2017 1:30,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5104,29/08/2017 1:30,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5103,29/08/2017 1:30,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5099,29/08/2017 1:30,14/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5091,29/08/2017 1:30,24/05/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5090,29/08/2017 1:30,24/05/2012 0:55,6.4,287, Improper Authentication,nan
CVE-2011-5089,29/08/2017 1:30,18/04/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5082,29/08/2017 1:30,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5081,29/08/2017 1:30,18/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5070,29/08/2017 1:30,29/01/2012 4:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5068,29/08/2017 1:30,29/01/2012 4:04,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5065,29/08/2017 1:30,15/01/2012 3:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5060,29/08/2017 1:30,13/01/2012 19:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-5058,29/08/2017 1:30,10/01/2012 23:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-5054,29/08/2017 1:30,6/01/2012 21:55,6.9,287, Improper Authentication,nan
CVE-2011-5052,29/08/2017 1:30,4/01/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5050,29/08/2017 1:30,4/01/2012 19:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5049,29/08/2017 1:30,4/01/2012 19:55,4.3,399, Resource Management Errors,nan
CVE-2011-5048,29/08/2017 1:30,3/01/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5047,29/08/2017 1:30,3/01/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5045,29/08/2017 1:30,30/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5044,29/08/2017 1:30,30/12/2011 19:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-5043,29/08/2017 1:30,30/12/2011 19:55,4.3,20, Improper Input Validation,nan
CVE-2011-5042,29/08/2017 1:30,30/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5041,29/08/2017 1:30,30/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5040,29/08/2017 1:30,30/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5039,29/08/2017 1:30,30/12/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5038,29/08/2017 1:30,30/12/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5033,29/08/2017 1:30,29/12/2011 22:55,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5031,29/08/2017 1:30,29/12/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5030,29/08/2017 1:30,29/12/2011 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5029,29/08/2017 1:30,29/12/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5028,29/08/2017 1:30,29/12/2011 22:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5026,29/08/2017 1:30,29/12/2011 4:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5019,29/08/2017 1:30,5/01/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5012,29/08/2017 1:30,25/12/2011 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5011,29/08/2017 1:30,25/12/2011 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5008,29/08/2017 1:30,25/12/2011 1:55,7.5,189, Numeric Errors,nan
CVE-2011-5003,29/08/2017 1:30,25/12/2011 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4947,29/08/2017 1:30,31/08/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4946,29/08/2017 1:30,31/08/2012 22:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4923,29/08/2017 1:30,18/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4921,29/08/2017 1:30,4/01/2012 19:55,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4920,29/08/2017 1:30,4/01/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4890,29/08/2017 1:30,21/02/2012 13:31,4.0,20, Improper Input Validation,nan
CVE-2011-4887,29/08/2017 1:30,11/09/2014 14:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4879,29/08/2017 1:30,3/02/2012 20:55,8.5,20, Improper Input Validation,nan
CVE-2011-4878,29/08/2017 1:30,3/02/2012 20:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4877,29/08/2017 1:30,3/02/2012 20:55,7.1,20, Improper Input Validation,nan
CVE-2011-4876,29/08/2017 1:30,3/02/2012 20:55,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4875,29/08/2017 1:30,3/02/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4874,29/08/2017 1:30,13/04/2012 10:41,7.9,399, Resource Management Errors,nan
CVE-2011-4869,29/08/2017 1:30,20/12/2011 11:55,7.8,399, Resource Management Errors,nan
CVE-2011-4862,29/08/2017 1:30,25/12/2011 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4853,29/08/2017 1:30,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4852,29/08/2017 1:30,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4851,29/08/2017 1:30,16/12/2011 11:55,9.3,255, Credentials Management,nan
CVE-2011-4849,29/08/2017 1:30,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4848,29/08/2017 1:30,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4847,29/08/2017 1:30,16/12/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4838,29/08/2017 1:30,30/12/2011 1:55,7.8,20, Improper Input Validation,nan
CVE-2011-4832,29/08/2017 1:30,15/12/2011 3:57,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4824,29/08/2017 1:30,15/12/2011 3:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4822,29/08/2017 1:30,15/12/2011 3:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4815,29/08/2017 1:30,30/12/2011 1:55,7.8,20, Improper Input Validation,nan
CVE-2011-4785,29/08/2017 1:30,10/01/2012 11:55,7.8,200, Information Exposure,nan
CVE-2011-4784,29/08/2017 1:30,27/12/2011 4:01,7.2,20, Improper Input Validation,nan
CVE-2011-4783,29/08/2017 1:30,27/12/2011 11:55,9.3,20, Improper Input Validation,nan
CVE-2011-4782,29/08/2017 1:30,22/12/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4776,29/08/2017 1:30,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4767,29/08/2017 1:30,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4765,29/08/2017 1:30,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4764,29/08/2017 1:30,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4763,29/08/2017 1:30,16/12/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4760,29/08/2017 1:30,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4759,29/08/2017 1:30,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4758,29/08/2017 1:30,16/12/2011 11:55,5.0,310, Cryptographic Issues,nan
CVE-2011-4757,29/08/2017 1:30,16/12/2011 11:55,10.0,255, Credentials Management,nan
CVE-2011-4756,29/08/2017 1:30,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4755,29/08/2017 1:30,16/12/2011 11:55,10.0,20, Improper Input Validation,nan
CVE-2011-4754,29/08/2017 1:30,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4753,29/08/2017 1:30,16/12/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4751,29/08/2017 1:30,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4722,29/08/2017 1:30,28/12/2014 2:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4715,29/08/2017 1:30,8/12/2011 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4714,29/08/2017 1:30,8/12/2011 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4711,29/08/2017 1:30,8/12/2011 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4709,29/08/2017 1:30,8/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4696,29/08/2017 1:30,3/03/2014 16:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4675,29/08/2017 1:30,5/12/2011 11:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4674,29/08/2017 1:30,2/12/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4673,29/08/2017 1:30,2/12/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4669,29/08/2017 1:30,2/12/2011 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4668,29/08/2017 1:30,2/12/2011 11:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4643,29/08/2017 1:30,3/01/2012 11:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4618,29/08/2017 1:30,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4615,29/08/2017 1:30,29/12/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4608,29/08/2017 1:30,27/01/2012 15:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4572,29/08/2017 1:30,29/11/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4571,29/08/2017 1:30,29/11/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4570,29/08/2017 1:30,29/11/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4569,29/08/2017 1:30,29/11/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4567,29/08/2017 1:30,29/11/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4566,29/08/2017 1:30,29/11/2011 0:55,6.4,189, Numeric Errors,nan
CVE-2011-4565,29/08/2017 1:30,28/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4562,29/08/2017 1:30,28/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4560,29/08/2017 1:30,28/11/2011 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4547,29/08/2017 1:30,29/11/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4539,29/08/2017 1:30,8/12/2011 11:55,5.0,20, Improper Input Validation,nan
CVE-2011-4537,29/08/2017 1:30,27/12/2011 4:01,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4517,29/08/2017 1:30,15/12/2011 3:57,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4465,29/08/2017 1:30,19/11/2011 3:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4462,29/08/2017 1:30,30/12/2011 1:55,5.0,20, Improper Input Validation,nan
CVE-2011-4460,29/08/2017 1:30,4/06/2012 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4409,29/08/2017 1:30,16/06/2012 0:55,7.5,20, Improper Input Validation,nan
CVE-2011-4405,29/08/2017 1:30,29/11/2011 17:55,7.5,20, Improper Input Validation,nan
CVE-2011-4367,29/08/2017 1:30,19/06/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4357,29/08/2017 1:30,10/12/2011 17:55,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2011-4341,29/08/2017 1:30,12/02/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4340,29/08/2017 1:30,12/02/2012 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4339,29/08/2017 1:30,15/12/2011 3:57,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4274,29/08/2017 1:30,3/11/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4273,29/08/2017 1:30,3/11/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4219,29/08/2017 1:30,1/11/2011 19:55,9.3,399, Resource Management Errors,nan
CVE-2011-4218,29/08/2017 1:30,1/11/2011 19:55,9.3,399, Resource Management Errors,nan
CVE-2011-4216,29/08/2017 1:30,1/11/2011 19:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-4212,29/08/2017 1:30,30/10/2011 19:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4211,29/08/2017 1:30,30/10/2011 19:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4197,29/08/2017 1:30,3/01/2012 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4171,29/08/2017 1:30,24/10/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4162,29/08/2017 1:30,5/12/2011 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4157,29/08/2017 1:30,16/11/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4151,29/08/2017 1:30,20/10/2011 21:55,7.8,20, Improper Input Validation,nan
CVE-2011-4122,29/08/2017 1:30,17/11/2011 19:55,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4113,29/08/2017 1:30,17/02/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4109,29/08/2017 1:30,6/01/2012 1:55,9.3,399, Resource Management Errors,nan
CVE-2011-4107,29/08/2017 1:30,17/11/2011 19:55,4.3,200, Information Exposure,nan
CVE-2011-4079,29/08/2017 1:30,27/10/2011 20:55,4.0,189, Numeric Errors,nan
CVE-2011-4078,29/08/2017 1:30,3/11/2011 15:55,5.0,399, Resource Management Errors,nan
CVE-2011-4066,29/08/2017 1:30,4/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4055,29/08/2017 1:30,8/01/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4050,29/08/2017 1:30,27/12/2011 4:01,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4035,29/08/2017 1:30,2/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4026,29/08/2017 1:30,21/10/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4005,29/08/2017 1:30,3/11/2011 10:55,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3996,29/08/2017 1:30,3/11/2011 17:55,5.0,399, Resource Management Errors,nan
CVE-2011-3989,29/08/2017 1:30,4/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3988,29/08/2017 1:30,21/10/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3987,29/08/2017 1:30,3/11/2011 17:55,4.9,399, Resource Management Errors,nan
CVE-2011-3983,29/08/2017 1:30,24/10/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3982,29/08/2017 1:30,5/10/2011 2:56,2.1,399, Resource Management Errors,nan
CVE-2011-3981,29/08/2017 1:30,4/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3976,29/08/2017 1:30,4/10/2011 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3975,29/08/2017 1:30,3/10/2011 15:55,2.6,200, Information Exposure,nan
CVE-2011-3839,29/08/2017 1:30,24/12/2011 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3838,29/08/2017 1:30,24/12/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3837,29/08/2017 1:30,24/12/2011 19:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3836,29/08/2017 1:30,24/12/2011 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3835,29/08/2017 1:30,24/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3832,29/08/2017 1:30,29/01/2012 4:04,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3831,29/08/2017 1:30,29/01/2012 4:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3830,29/08/2017 1:30,29/01/2012 4:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3829,29/08/2017 1:30,29/01/2012 4:04,4.0,200, Information Exposure,nan
CVE-2011-3778,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3777,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3776,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3775,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3774,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3773,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3771,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3770,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3769,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3768,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3767,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3766,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3765,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3764,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3763,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3762,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3761,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3760,29/08/2017 1:30,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3713,29/08/2017 1:30,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3667,29/08/2017 1:30,2/01/2012 19:55,6.8,287, Improper Authentication,nan
CVE-2011-3615,29/08/2017 1:30,24/10/2011 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3580,29/08/2017 1:30,30/09/2011 17:55,5.0,200, Information Exposure,nan
CVE-2011-3579,29/08/2017 1:30,30/09/2011 17:55,6.4,399, Resource Management Errors,nan
CVE-2011-3575,29/08/2017 1:30,19/09/2011 12:02,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3499,29/08/2017 1:30,16/09/2011 17:26,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3498,29/08/2017 1:30,16/09/2011 17:26,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3492,29/08/2017 1:30,16/09/2011 14:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3491,29/08/2017 1:30,16/09/2011 14:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3489,29/08/2017 1:30,16/09/2011 14:28,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3486,29/08/2017 1:30,16/09/2011 14:28,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3437,29/08/2017 1:30,14/10/2011 10:55,6.8,189, Numeric Errors,nan
CVE-2011-3436,29/08/2017 1:30,14/10/2011 10:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3435,29/08/2017 1:30,14/10/2011 10:55,2.1,255, Credentials Management,nan
CVE-2011-3434,29/08/2017 1:30,14/10/2011 10:55,4.3,255, Credentials Management,nan
CVE-2011-3432,29/08/2017 1:30,14/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3431,29/08/2017 1:30,14/10/2011 10:55,2.1,200, Information Exposure,nan
CVE-2011-3429,29/08/2017 1:30,14/10/2011 10:55,2.1,255, Credentials Management,nan
CVE-2011-3427,29/08/2017 1:30,14/10/2011 10:55,2.6,200, Information Exposure,nan
CVE-2011-3426,29/08/2017 1:30,14/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3423,29/08/2017 1:30,19/09/2011 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3422,29/08/2017 1:30,12/09/2011 12:40,4.3,20, Improper Input Validation,nan
CVE-2011-3392,29/08/2017 1:30,8/09/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3391,29/08/2017 1:30,8/09/2011 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3388,29/08/2017 1:30,6/09/2011 19:55,4.3,200, Information Exposure,nan
CVE-2011-3387,29/08/2017 1:30,2/09/2011 23:55,4.0,20, Improper Input Validation,nan
CVE-2011-3361,29/08/2017 1:30,18/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3354,29/08/2017 1:30,4/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3345,29/08/2017 1:30,19/09/2011 12:02,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3339,29/08/2017 1:30,17/12/2011 3:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3332,29/08/2017 1:30,6/10/2011 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3330,29/08/2017 1:30,4/11/2011 21:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3322,29/08/2017 1:30,15/09/2011 17:58,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3321,29/08/2017 1:30,16/09/2011 12:35,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3310,29/08/2017 1:30,20/10/2011 0:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3305,29/08/2017 1:30,6/10/2011 10:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3304,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3303,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3302,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3301,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3300,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3299,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3298,29/08/2017 1:30,6/10/2011 10:55,7.9,287, Improper Authentication,nan
CVE-2011-3297,29/08/2017 1:30,6/10/2011 10:55,7.8,287, Improper Authentication,nan
CVE-2011-3296,29/08/2017 1:30,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3294,29/08/2017 1:30,19/10/2011 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3290,29/08/2017 1:30,21/09/2011 16:55,10.0,255, Credentials Management,nan
CVE-2011-3268,29/08/2017 1:30,25/08/2011 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3267,29/08/2017 1:30,25/08/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2011-3265,29/08/2017 1:30,19/08/2011 21:55,5.0,200, Information Exposure,nan
CVE-2011-3264,29/08/2017 1:30,19/08/2011 21:55,5.0,200, Information Exposure,nan
CVE-2011-3263,29/08/2017 1:30,19/08/2011 21:55,5.0,399, Resource Management Errors,nan
CVE-2011-3262,29/08/2017 1:30,19/08/2011 20:55,2.1,399, Resource Management Errors,nan
CVE-2011-3261,29/08/2017 1:30,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3260,29/08/2017 1:30,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3259,29/08/2017 1:30,14/10/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3257,29/08/2017 1:30,14/10/2011 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-3256,29/08/2017 1:30,14/10/2011 10:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3255,29/08/2017 1:30,14/10/2011 10:55,4.3,255, Credentials Management,nan
CVE-2011-3246,29/08/2017 1:30,14/10/2011 10:55,5.0,200, Information Exposure,nan
CVE-2011-3245,29/08/2017 1:30,14/10/2011 10:55,2.1,255, Credentials Management,nan
CVE-2011-3243,29/08/2017 1:30,14/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3242,29/08/2017 1:30,14/10/2011 10:55,5.0,200, Information Exposure,nan
CVE-2011-3231,29/08/2017 1:30,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3230,29/08/2017 1:30,14/10/2011 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3229,29/08/2017 1:30,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3201,29/08/2017 1:30,8/03/2013 21:55,4.3,200, Information Exposure,nan
CVE-2011-3194,29/08/2017 1:30,16/06/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3193,29/08/2017 1:30,16/06/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3189,29/08/2017 1:30,25/08/2011 14:22,4.3,310, Cryptographic Issues,nan
CVE-2011-3171,29/08/2017 1:30,4/11/2011 21:55,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3170,29/08/2017 1:30,19/08/2011 17:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3152,29/08/2017 1:30,27/04/2014 20:55,6.4,310, Cryptographic Issues,nan
CVE-2011-3150,29/08/2017 1:30,29/11/2011 17:55,6.8,20, Improper Input Validation,nan
CVE-2011-3128,29/08/2017 1:30,10/08/2011 21:55,5.0,200, Information Exposure,nan
CVE-2011-3127,29/08/2017 1:30,10/08/2011 21:55,5.8,20, Improper Input Validation,nan
CVE-2011-3126,29/08/2017 1:30,10/08/2011 21:55,5.0,200, Information Exposure,nan
CVE-2011-3014,29/08/2017 1:29,9/08/2011 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3013,29/08/2017 1:29,9/08/2011 22:55,5.0,310, Cryptographic Issues,nan
CVE-2011-3009,29/08/2017 1:29,5/08/2011 22:55,5.0,310, Cryptographic Issues,nan
CVE-2011-3008,29/08/2017 1:29,5/08/2011 21:55,5.0,16, Configuration,nan
CVE-2011-3007,29/08/2017 1:29,10/08/2011 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3006,29/08/2017 1:29,10/08/2011 20:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2978,29/08/2017 1:29,9/08/2011 19:55,5.0,20, Improper Input Validation,nan
CVE-2011-2976,29/08/2017 1:29,9/08/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2964,29/08/2017 1:29,29/07/2011 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2962,29/08/2017 1:29,29/07/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2958,29/08/2017 1:29,28/07/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2944,29/08/2017 1:29,12/08/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2940,29/08/2017 1:29,25/08/2011 14:22,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2925,29/08/2017 1:29,20/09/2011 5:55,4.6,287, Improper Authentication,nan
CVE-2011-2915,29/08/2017 1:29,7/06/2012 19:55,6.8,189, Numeric Errors,nan
CVE-2011-2914,29/08/2017 1:29,7/06/2012 19:55,6.8,189, Numeric Errors,nan
CVE-2011-2913,29/08/2017 1:29,7/06/2012 19:55,6.8,189, Numeric Errors,nan
CVE-2011-2912,29/08/2017 1:29,7/06/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2911,29/08/2017 1:29,7/06/2012 19:55,6.8,189, Numeric Errors,nan
CVE-2011-2908,29/08/2017 1:29,23/11/2012 20:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2907,29/08/2017 1:29,15/08/2011 19:55,7.5,287, Improper Authentication,nan
CVE-2011-2904,29/08/2017 1:29,19/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2903,29/08/2017 1:29,2/09/2011 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2900,29/08/2017 1:29,5/08/2011 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2895,29/08/2017 1:29,19/08/2011 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2893,29/08/2017 1:29,27/07/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-2891,29/08/2017 1:29,27/07/2011 20:55,5.0,200, Information Exposure,nan
CVE-2011-2890,29/08/2017 1:29,27/07/2011 20:55,5.0,200, Information Exposure,nan
CVE-2011-2889,29/08/2017 1:29,27/07/2011 20:55,5.0,200, Information Exposure,nan
CVE-2011-2888,29/08/2017 1:29,27/07/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-2887,29/08/2017 1:29,27/07/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-2886,29/08/2017 1:29,27/07/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-2885,29/08/2017 1:29,27/07/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-2779,29/08/2017 1:29,19/07/2011 21:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-2776,29/08/2017 1:29,13/01/2012 18:55,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2766,29/08/2017 1:29,23/09/2011 10:55,7.5,287, Improper Authentication,nan
CVE-2011-2760,29/08/2017 1:29,17/07/2011 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2759,29/08/2017 1:29,17/07/2011 20:55,5.0,200, Information Exposure,nan
CVE-2011-2753,29/08/2017 1:29,17/07/2011 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2752,29/08/2017 1:29,17/07/2011 20:55,5.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2748,29/08/2017 1:29,15/08/2011 21:55,7.8,20, Improper Input Validation,nan
CVE-2011-2747,29/08/2017 1:29,28/07/2011 18:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2721,29/08/2017 1:29,5/08/2011 21:55,5.0,189, Numeric Errors,nan
CVE-2011-2718,29/08/2017 1:29,1/08/2011 19:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2711,29/08/2017 1:29,3/08/2011 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2704,29/08/2017 1:29,1/08/2011 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2703,29/08/2017 1:29,1/08/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2697,29/08/2017 1:29,29/07/2011 20:55,6.8,20, Improper Input Validation,nan
CVE-2011-2692,29/08/2017 1:29,17/07/2011 20:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2690,29/08/2017 1:29,17/07/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2689,29/08/2017 1:29,28/07/2011 22:55,4.9,399, Resource Management Errors,nan
CVE-2011-2688,29/08/2017 1:29,28/07/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2686,29/08/2017 1:29,5/08/2011 21:55,5.0,310, Cryptographic Issues,nan
CVE-2011-2682,29/08/2017 1:29,7/07/2011 19:55,4.0,399, Resource Management Errors,nan
CVE-2011-2681,29/08/2017 1:29,7/07/2011 19:55,10.0,20, Improper Input Validation,nan
CVE-2011-2679,29/08/2017 1:29,7/07/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2677,29/08/2017 1:29,21/10/2011 18:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2676,29/08/2017 1:29,3/11/2011 10:55,5.5,287, Improper Authentication,nan
CVE-2011-2675,29/08/2017 1:29,10/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2672,29/08/2017 1:29,20/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2666,29/08/2017 1:29,6/07/2011 19:55,5.0,16, Configuration,nan
CVE-2011-2660,29/08/2017 1:29,6/09/2011 16:55,7.5,20, Improper Input Validation,nan
CVE-2011-2652,29/08/2017 1:29,23/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2650,29/08/2017 1:29,23/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2649,29/08/2017 1:29,23/08/2011 21:55,7.5,20, Improper Input Validation,nan
CVE-2011-2644,29/08/2017 1:29,23/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2643,29/08/2017 1:29,1/08/2011 19:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2642,29/08/2017 1:29,1/08/2011 19:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2640,29/08/2017 1:29,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2609,29/08/2017 1:29,1/07/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2608,29/08/2017 1:29,1/07/2011 10:55,6.4,20, Improper Input Validation,nan
CVE-2011-2607,29/08/2017 1:29,30/06/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2606,29/08/2017 1:29,30/06/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2595,29/08/2017 1:29,14/09/2011 17:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2594,29/08/2017 1:29,2/09/2011 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2593,29/08/2017 1:29,12/08/2014 20:55,6.8,189, Numeric Errors,nan
CVE-2011-2592,29/08/2017 1:29,18/06/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2590,29/08/2017 1:29,9/08/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-2589,29/08/2017 1:29,9/08/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2584,29/08/2017 1:29,20/10/2011 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2555,29/08/2017 1:29,29/08/2011 20:55,10.0,255, Credentials Management,nan
CVE-2011-2547,29/08/2017 1:29,28/07/2011 22:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2546,29/08/2017 1:29,28/07/2011 22:55,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2535,29/08/2017 1:29,6/07/2011 19:55,5.0,20, Improper Input Validation,nan
CVE-2011-2533,29/08/2017 1:29,22/06/2011 23:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-2529,29/08/2017 1:29,6/07/2011 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2527,29/08/2017 1:29,21/06/2012 15:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-2520,29/08/2017 1:29,21/07/2011 23:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2511,29/08/2017 1:29,10/08/2011 20:55,4.0,189, Numeric Errors,nan
CVE-2011-2510,29/08/2017 1:29,14/07/2011 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2484,29/08/2017 1:29,24/06/2011 20:55,4.9,399, Resource Management Errors,nan
CVE-2011-2483,29/08/2017 1:29,25/08/2011 14:22,5.0,310, Cryptographic Issues,nan
CVE-2011-2477,29/08/2017 1:29,14/06/2011 17:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2476,29/08/2017 1:29,14/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2473,29/08/2017 1:29,9/06/2011 21:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-2472,29/08/2017 1:29,9/06/2011 21:55,6.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2471,29/08/2017 1:29,9/06/2011 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-2467,29/08/2017 1:29,27/07/2011 2:55,5.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2423,29/08/2017 1:29,11/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2403,29/08/2017 1:29,1/08/2011 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2402,29/08/2017 1:29,1/08/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2400,29/08/2017 1:29,29/07/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2397,29/08/2017 1:29,5/12/2011 11:55,10.0,20, Improper Input Validation,nan
CVE-2011-2395,29/08/2017 1:29,9/06/2011 2:38,5.0,16, Configuration,nan
CVE-2011-2391,29/08/2017 1:29,19/09/2013 10:27,6.1,20, Improper Input Validation,nan
CVE-2011-2385,29/08/2017 1:29,19/07/2011 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2381,29/08/2017 1:29,9/08/2011 19:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2380,29/08/2017 1:29,9/08/2011 19:55,5.0,200, Information Exposure,nan
CVE-2011-2379,29/08/2017 1:29,9/08/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2331,29/08/2017 1:29,2/06/2011 20:55,10.0,189, Numeric Errors,nan
CVE-2011-2329,29/08/2017 1:29,2/06/2011 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2328,29/08/2017 1:29,2/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2226,29/08/2017 1:29,23/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2217,29/08/2017 1:29,6/06/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2205,29/08/2017 1:29,22/06/2011 21:55,5.0,399, Resource Management Errors,nan
CVE-2011-2200,29/08/2017 1:29,22/06/2011 22:55,4.6,20, Improper Input Validation,nan
CVE-2011-2188,29/08/2017 1:29,21/06/2011 2:52,5.0,399, Resource Management Errors,nan
CVE-2011-2179,29/08/2017 1:29,14/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2173,29/08/2017 1:29,26/05/2011 16:55,4.0,399, Resource Management Errors,nan
CVE-2011-2172,29/08/2017 1:29,26/05/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2167,29/08/2017 1:29,24/05/2011 23:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2166,29/08/2017 1:29,24/05/2011 23:55,6.5,16, Configuration,nan
CVE-2011-2165,29/08/2017 1:29,23/05/2011 22:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2157,29/08/2017 1:29,20/05/2011 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2156,29/08/2017 1:29,20/05/2011 22:55,5.0,200, Information Exposure,nan
CVE-2011-2155,29/08/2017 1:29,20/05/2011 22:55,7.5,287, Improper Authentication,nan
CVE-2011-2154,29/08/2017 1:29,20/05/2011 22:55,5.0,200, Information Exposure,nan
CVE-2011-2153,29/08/2017 1:29,20/05/2011 22:55,5.0,200, Information Exposure,nan
CVE-2011-2152,29/08/2017 1:29,20/05/2011 22:55,5.0,200, Information Exposure,nan
CVE-2011-2151,29/08/2017 1:29,20/05/2011 22:55,5.0,310, Cryptographic Issues,nan
CVE-2011-2150,29/08/2017 1:29,20/05/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-2149,29/08/2017 1:29,20/05/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2148,29/08/2017 1:29,20/05/2011 22:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-2147,29/08/2017 1:29,20/05/2011 22:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-2146,29/08/2017 1:29,6/06/2011 19:55,2.1,200, Information Exposure,nan
CVE-2011-2145,29/08/2017 1:29,6/06/2011 19:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2144,29/08/2017 1:29,16/05/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2011-2143,29/08/2017 1:29,16/05/2011 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2142,29/08/2017 1:29,16/05/2011 18:55,5.0,310, Cryptographic Issues,nan
CVE-2011-2141,29/08/2017 1:29,16/05/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2128,29/08/2017 1:29,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2127,29/08/2017 1:29,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2126,29/08/2017 1:29,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2125,29/08/2017 1:29,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2124,29/08/2017 1:29,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2093,29/08/2017 1:29,16/06/2011 23:55,5.0,20, Improper Input Validation,nan
CVE-2011-2089,29/08/2017 1:29,13/05/2011 17:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2080,29/08/2017 1:29,10/05/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2064,29/08/2017 1:29,11/07/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-2040,29/08/2017 1:29,2/06/2011 19:55,9.3,20, Improper Input Validation,nan
CVE-2011-2039,29/08/2017 1:29,2/06/2011 19:55,7.6,20, Improper Input Validation,nan
CVE-2011-2024,29/08/2017 1:29,2/06/2011 20:55,10.0,255, Credentials Management,nan
CVE-2011-2020,29/08/2017 1:29,20/05/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5290,29/08/2017 1:29,20/09/2013 16:55,10.0,255, Credentials Management,nan
CVE-2010-5287,29/08/2017 1:29,31/01/2013 5:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5283,29/08/2017 1:29,26/11/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-5282,29/08/2017 1:29,26/11/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5281,29/08/2017 1:29,26/11/2012 23:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-5194,29/08/2017 1:29,31/08/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5193,29/08/2017 1:29,31/08/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5192,29/08/2017 1:29,26/08/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5188,29/08/2017 1:29,26/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2010-5146,29/08/2017 1:29,23/08/2012 10:32,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-5145,29/08/2017 1:29,23/08/2012 10:32,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5104,29/08/2017 1:29,21/05/2012 20:55,4.3,200, Information Exposure,nan
CVE-2010-5103,29/08/2017 1:29,21/05/2012 20:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5102,29/08/2017 1:29,21/05/2012 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-5101,29/08/2017 1:29,21/05/2012 20:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-5100,29/08/2017 1:29,21/05/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5099,29/08/2017 1:29,30/05/2012 20:55,6.8,20, Improper Input Validation,nan
CVE-2010-5098,29/08/2017 1:29,21/05/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5097,29/08/2017 1:29,21/05/2012 20:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5095,29/08/2017 1:29,26/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5088,29/08/2017 1:29,26/08/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-5085,29/08/2017 1:29,14/02/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-5078,29/08/2017 1:29,17/09/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5062,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5061,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5060,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5058,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5057,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5056,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5055,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5050,29/08/2017 1:29,23/11/2011 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5047,29/08/2017 1:29,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5045,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5044,29/08/2017 1:29,2/11/2011 21:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5043,29/08/2017 1:29,2/11/2011 21:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5042,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5041,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5039,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5036,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5035,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5034,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5033,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5032,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5028,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5027,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5026,29/08/2017 1:29,2/11/2011 21:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5023,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5021,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5017,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5016,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5015,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5014,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5013,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5012,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5011,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5010,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5009,29/08/2017 1:29,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5007,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5003,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5001,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4999,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4996,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4995,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4994,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4993,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4992,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4991,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4990,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4989,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4988,29/08/2017 1:29,1/11/2011 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4987,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4985,29/08/2017 1:29,1/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4984,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4982,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4981,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4979,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4978,29/08/2017 1:29,1/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4976,29/08/2017 1:29,1/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4975,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4974,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4972,29/08/2017 1:29,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4971,29/08/2017 1:29,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4967,29/08/2017 1:29,21/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4961,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4960,29/08/2017 1:29,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4959,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4957,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4956,29/08/2017 1:29,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4955,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4954,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4952,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4949,29/08/2017 1:29,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4945,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4944,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4942,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4940,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4925,29/08/2017 1:29,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4921,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4920,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4919,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4918,29/08/2017 1:29,8/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4917,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4916,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4915,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4914,29/08/2017 1:29,8/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4912,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4911,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4910,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4908,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4896,29/08/2017 1:29,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4895,29/08/2017 1:29,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4894,29/08/2017 1:29,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4893,29/08/2017 1:29,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4883,29/08/2017 1:29,7/10/2011 10:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4875,29/08/2017 1:29,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4873,29/08/2017 1:29,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4872,29/08/2017 1:29,7/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4869,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4866,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4862,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4861,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4860,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4857,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4854,29/08/2017 1:29,5/10/2011 10:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4853,29/08/2017 1:29,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4847,29/08/2017 1:29,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4846,29/08/2017 1:29,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4845,29/08/2017 1:29,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4844,29/08/2017 1:29,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4843,29/08/2017 1:29,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4825,29/08/2017 1:29,24/08/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4824,29/08/2017 1:29,17/09/2012 17:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4823,29/08/2017 1:29,17/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4821,29/08/2017 1:29,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4814,29/08/2017 1:29,8/07/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4813,29/08/2017 1:29,8/07/2011 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4812,29/08/2017 1:29,8/07/2011 22:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4811,29/08/2017 1:29,8/07/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4810,29/08/2017 1:29,8/07/2011 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4809,29/08/2017 1:29,8/07/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4808,29/08/2017 1:29,8/07/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5122,29/08/2017 1:29,23/08/2012 10:32,5.0,200, Information Exposure,nan
CVE-2009-5117,29/08/2017 1:29,22/08/2012 10:42,1.9,200, Information Exposure,nan
CVE-2009-5115,29/08/2017 1:29,22/08/2012 10:42,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-5113,29/08/2017 1:29,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5096,29/08/2017 1:29,13/09/2011 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5092,29/08/2017 1:29,12/09/2011 12:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7312,29/08/2017 1:29,23/08/2012 10:32,5.0,20, Improper Input Validation,nan
CVE-2008-7301,29/08/2017 1:29,5/10/2011 2:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6751,29/08/2017 1:29,4/01/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1599,29/08/2017 1:29,27/10/2014 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1598,29/08/2017 1:29,1/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2436,29/08/2017 1:29,7/12/2011 19:55,4.3,200, Information Exposure,nan
CVE-2002-2435,29/08/2017 1:29,7/12/2011 19:55,4.3,200, Information Exposure,nan
CVE-2000-1247,29/08/2017 1:29,5/10/2011 2:56,2.1,16, Configuration,nan
CVE-2011-3280,28/08/2017 15:27,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2017-13669,28/08/2017 15:01,24/08/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12679,28/08/2017 15:00,24/08/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7392,28/08/2017 1:29,15/02/2017 21:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-2958,28/08/2017 1:29,30/11/2016 11:59,4.0,200, Information Exposure,nan
CVE-2017-9685,27/08/2017 1:29,18/08/2017 19:29,9.3,416, Use After Free,nan
CVE-2017-13138,27/08/2017 1:29,23/08/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12978,27/08/2017 1:29,21/08/2017 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12927,27/08/2017 1:29,18/08/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11587,27/08/2017 1:29,24/07/2017 0:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6472,26/08/2017 9:21,22/08/2017 18:29,5.0,255, Credentials Management,nan
CVE-2015-6473,26/08/2017 9:15,22/08/2017 18:29,10.0,254, 7PK – Security Features,nan
CVE-2017-12420,26/08/2017 9:14,18/08/2017 17:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11323,26/08/2017 9:14,19/08/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12892,26/08/2017 9:13,16/08/2017 21:29,6.8,426, Untrusted Search Path,nan
CVE-2017-12843,26/08/2017 9:13,22/08/2017 14:29,4.0,20, Improper Input Validation,nan
CVE-2017-13137,26/08/2017 9:11,23/08/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12858,26/08/2017 9:10,23/08/2017 14:29,7.5,415, Double Free,nan
CVE-2017-12589,26/08/2017 9:10,18/08/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12859,26/08/2017 9:09,18/08/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2015-3616,26/08/2017 1:29,11/08/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3615,26/08/2017 1:29,11/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3614,26/08/2017 1:29,11/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2011-4650,25/08/2017 18:37,7/08/2017 6:29,5.0,399, Resource Management Errors,nan
CVE-2014-6189,25/08/2017 18:35,22/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5258,25/08/2017 17:43,22/08/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12784,25/08/2017 17:42,21/08/2017 7:29,5.0,20, Improper Input Validation,nan
CVE-2017-12981,25/08/2017 17:31,21/08/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12966,25/08/2017 17:31,20/08/2017 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12979,25/08/2017 16:52,21/08/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12980,25/08/2017 16:51,21/08/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-13147,25/08/2017 16:46,23/08/2017 17:29,6.8,20, Improper Input Validation,nan
CVE-2011-0469,25/08/2017 15:11,17/08/2017 16:29,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3156,25/08/2017 14:53,11/08/2017 21:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2017-12853,25/08/2017 14:33,14/08/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12426,25/08/2017 14:32,14/08/2017 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-1469,25/08/2017 14:31,14/08/2017 22:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-10811,25/08/2017 12:27,18/08/2017 13:29,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4082,25/08/2017 12:05,18/08/2017 16:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-4456,25/08/2017 11:50,8/08/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2015-6498,25/08/2017 11:47,9/08/2017 18:29,5.0,254, 7PK – Security Features,nan
CVE-2017-9247,25/08/2017 11:43,2/08/2017 19:29,4.6,428, Unquoted Search Path or Element,nan
CVE-2015-0839,25/08/2017 11:42,2/08/2017 19:29,6.8,320, Key Management Errors,nan
CVE-2017-6773,25/08/2017 11:24,17/08/2017 20:29,4.6,20, Improper Input Validation,nan
CVE-2017-6710,25/08/2017 11:04,17/08/2017 20:29,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6778,25/08/2017 10:55,17/08/2017 20:29,4.0,200, Information Exposure,nan
CVE-2017-6776,25/08/2017 10:55,17/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6782,25/08/2017 10:51,17/08/2017 20:29,4.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-6783,25/08/2017 10:50,17/08/2017 20:29,4.0,200, Information Exposure,nan
CVE-2016-5386,25/08/2017 1:29,19/07/2016 2:00,6.8,284, Improper Access Control,nan
CVE-2017-6328,24/08/2017 19:57,11/08/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-3751,24/08/2017 19:17,10/08/2017 0:29,7.2,428, Unquoted Search Path or Element,nan
CVE-2017-6784,24/08/2017 18:45,17/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-9648,24/08/2017 18:44,14/08/2017 16:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-9646,24/08/2017 18:44,14/08/2017 16:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-8658,24/08/2017 18:40,11/08/2017 1:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1338,24/08/2017 17:12,18/08/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10821,24/08/2017 17:12,18/08/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-9659,24/08/2017 17:11,14/08/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9454,24/08/2017 17:10,18/08/2017 14:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-1501,24/08/2017 17:03,18/08/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-1357,24/08/2017 17:03,9/08/2017 18:29,4.0,20, Improper Input Validation,nan
CVE-2017-12774,24/08/2017 17:02,9/08/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12591,24/08/2017 16:59,18/08/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2687,24/08/2017 16:49,9/08/2017 18:29,1.9,284, Improper Access Control,nan
CVE-2017-6785,24/08/2017 16:41,17/08/2017 20:29,4.0,20, Improper Input Validation,nan
CVE-2017-10824,24/08/2017 16:34,18/08/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-12949,24/08/2017 16:32,18/08/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11506,24/08/2017 16:28,9/08/2017 12:29,5.8,295, Improper Certificate Validation,nan
CVE-2017-6786,24/08/2017 16:24,17/08/2017 20:29,4.6,200, Information Exposure,nan
CVE-2015-7894,24/08/2017 16:20,9/08/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2291,24/08/2017 16:16,9/08/2017 18:29,7.2,20, Improper Input Validation,nan
CVE-2015-1783,24/08/2017 16:10,11/08/2017 21:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6788,24/08/2017 16:08,17/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0803,24/08/2017 15:56,8/08/2017 21:29,7.5,287, Improper Authentication,nan
CVE-2015-2675,24/08/2017 15:55,18/08/2017 18:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12851,24/08/2017 15:52,14/08/2017 20:29,4.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-12850,24/08/2017 15:51,14/08/2017 20:29,4.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-12593,24/08/2017 15:48,18/08/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6856,24/08/2017 15:26,31/12/2016 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12881,24/08/2017 15:08,18/08/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12882,24/08/2017 15:06,18/08/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5153,24/08/2017 14:19,18/08/2017 18:29,6.5,275, Permission Issues,nan
CVE-2015-5081,24/08/2017 14:19,18/08/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9816,24/08/2017 14:17,18/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9660,24/08/2017 14:17,14/08/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8596,24/08/2017 13:56,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9049,24/08/2017 13:27,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9048,24/08/2017 13:27,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9047,24/08/2017 13:27,18/08/2017 18:29,10.0,284, Improper Access Control,nan
CVE-2015-9046,24/08/2017 13:27,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9050,24/08/2017 13:15,18/08/2017 18:29,10.0,125, Out-of-bounds Read,nan
CVE-2017-9370,24/08/2017 13:12,9/08/2017 17:29,6.5,287, Improper Authentication,nan
CVE-2015-9051,24/08/2017 12:55,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9052,24/08/2017 12:49,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9053,24/08/2017 12:48,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9055,24/08/2017 12:35,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9054,24/08/2017 12:35,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9061,24/08/2017 12:31,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9060,24/08/2017 12:31,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9062,24/08/2017 12:30,18/08/2017 18:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2017-10994,24/08/2017 1:29,7/07/2017 16:29,9.3,123, Write-what-where Condition,nan
CVE-2016-10402,24/08/2017 1:29,27/07/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4204,24/08/2017 1:29,18/11/2013 2:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9655,23/08/2017 19:23,14/08/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9661,23/08/2017 19:13,14/08/2017 16:29,5.1,427, Uncontrolled Search Path Element,nan
CVE-2015-3649,23/08/2017 19:08,18/08/2017 16:29,4.6,20, Improper Input Validation,nan
CVE-2015-9035,23/08/2017 18:38,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9034,23/08/2017 18:38,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9037,23/08/2017 17:58,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9036,23/08/2017 17:58,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10663,23/08/2017 17:53,19/08/2017 18:29,7.2,129, Improper Validation of Array Index,nan
CVE-2007-5199,23/08/2017 17:38,18/08/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8262,23/08/2017 17:15,18/08/2017 18:29,7.6,416, Use After Free,nan
CVE-2015-9041,23/08/2017 17:13,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9045,23/08/2017 17:10,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9044,23/08/2017 17:10,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9043,23/08/2017 17:09,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9042,23/08/2017 17:09,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9038,23/08/2017 16:51,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9039,23/08/2017 16:50,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2015-9040,23/08/2017 16:47,18/08/2017 18:29,10.0,284, Improper Access Control,nan
CVE-2017-8255,23/08/2017 16:33,18/08/2017 18:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-8254,23/08/2017 16:32,18/08/2017 18:29,4.3,200, Information Exposure,nan
CVE-2016-5871,23/08/2017 16:31,18/08/2017 18:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2015-8595,23/08/2017 15:58,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8592,23/08/2017 15:16,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2014-9975,23/08/2017 15:08,18/08/2017 18:29,10.0,326, Inadequate Encryption Strength,nan
CVE-2014-9973,23/08/2017 15:07,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9969,23/08/2017 14:52,18/08/2017 18:29,10.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2014-9968,23/08/2017 14:51,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2288,23/08/2017 14:29,2/08/2017 16:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-2287,23/08/2017 14:29,2/08/2017 16:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-2221,23/08/2017 14:29,4/08/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10820,23/08/2017 14:29,4/08/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2015-7561,23/08/2017 14:28,7/08/2017 17:29,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-10391,23/08/2017 14:07,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2017-2286,23/08/2017 14:05,2/08/2017 16:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2016-10389,23/08/2017 13:57,18/08/2017 18:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10388,23/08/2017 13:57,18/08/2017 18:29,10.0,16, Configuration,nan
CVE-2016-10383,23/08/2017 13:56,18/08/2017 18:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10382,23/08/2017 13:45,18/08/2017 18:29,10.0,284, Improper Access Control,nan
CVE-2016-10347,23/08/2017 13:41,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2016-10346,23/08/2017 13:41,18/08/2017 18:29,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-10344,23/08/2017 13:41,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2014-9411,23/08/2017 13:40,18/08/2017 18:29,10.0,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2015-9069,23/08/2017 12:59,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2016-10343,23/08/2017 12:58,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9073,23/08/2017 12:58,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9072,23/08/2017 12:58,18/08/2017 18:29,10.0,476, NULL Pointer Dereference,nan
CVE-2015-9071,23/08/2017 12:58,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5057,23/08/2017 12:57,18/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9070,23/08/2017 12:56,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9068,23/08/2017 12:56,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2017-12680,23/08/2017 1:29,18/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12445,23/08/2017 1:29,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12444,23/08/2017 1:29,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12443,23/08/2017 1:29,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12442,23/08/2017 1:29,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-12441,23/08/2017 1:29,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-8266,22/08/2017 18:15,18/08/2017 18:29,5.1,416, Use After Free,nan
CVE-2017-8265,22/08/2017 18:15,18/08/2017 18:29,5.1,415, Double Free,nan
CVE-2017-6771,22/08/2017 18:12,17/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-6777,22/08/2017 17:59,17/08/2017 20:29,4.0,200, Information Exposure,nan
CVE-2017-6772,22/08/2017 17:56,17/08/2017 20:29,4.0,200, Information Exposure,nan
CVE-2017-12956,22/08/2017 17:14,18/08/2017 21:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-8272,22/08/2017 17:04,18/08/2017 18:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-8270,22/08/2017 17:02,18/08/2017 18:29,5.1,416, Use After Free,nan
CVE-2017-10823,22/08/2017 16:57,18/08/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-10822,22/08/2017 16:57,18/08/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-12947,22/08/2017 16:53,18/08/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12946,22/08/2017 16:52,18/08/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12948,22/08/2017 16:48,18/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12955,22/08/2017 14:50,18/08/2017 21:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-8267,22/08/2017 14:48,18/08/2017 18:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2289,22/08/2017 12:50,18/08/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2228,22/08/2017 12:46,18/08/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-7364,22/08/2017 1:36,18/08/2017 19:29,10.0,416, Use After Free,nan
CVE-2016-5872,22/08/2017 1:35,18/08/2017 18:29,10.0,20, Improper Input Validation,nan
CVE-2017-9684,22/08/2017 1:33,18/08/2017 19:29,7.6,416, Use After Free,nan
CVE-2017-9863,22/08/2017 1:29,5/08/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9862,22/08/2017 1:29,5/08/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-9861,22/08/2017 1:29,5/08/2017 17:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-9858,22/08/2017 1:29,5/08/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-9857,22/08/2017 1:29,5/08/2017 17:29,4.3,287, Improper Authentication,nan
CVE-2017-6196,22/08/2017 1:29,24/02/2017 4:59,6.8,416, Use After Free,nan
CVE-2017-10923,22/08/2017 1:29,5/07/2017 1:29,5.0,20, Improper Input Validation,nan
CVE-2017-9682,22/08/2017 1:28,18/08/2017 19:29,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9680,22/08/2017 1:27,18/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-9679,22/08/2017 1:24,18/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-9678,22/08/2017 1:24,18/08/2017 19:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9980,22/08/2017 1:10,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9979,22/08/2017 1:10,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9978,22/08/2017 1:10,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9977,22/08/2017 1:10,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9974,22/08/2017 1:09,18/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11662,21/08/2017 17:24,17/08/2017 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11663,21/08/2017 17:20,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11664,21/08/2017 17:19,17/08/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-0575,21/08/2017 17:18,18/08/2017 18:29,10.0,326, Inadequate Encryption Strength,nan
CVE-2017-11661,21/08/2017 16:59,17/08/2017 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2015-1820,21/08/2017 16:34,9/08/2017 18:29,7.5,384, Session Fixation,nan
CVE-2015-6941,21/08/2017 15:25,9/08/2017 16:29,5.0,534, DEPRECATED: Information Exposure Through Debug Log Files,nan
CVE-2017-12963,21/08/2017 15:16,18/08/2017 21:29,5.0,125, Out-of-bounds Read,nan
CVE-2015-2674,21/08/2017 15:00,9/08/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-3130,21/08/2017 14:49,10/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2015-3277,21/08/2017 14:36,9/08/2017 18:29,5.0,200, Information Exposure,nan
CVE-2016-6195,21/08/2017 1:29,30/08/2016 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12756,20/08/2017 16:39,9/08/2017 21:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-6816,20/08/2017 16:36,9/08/2017 18:29,7.5,287, Improper Authentication,nan
CVE-2017-1174,20/08/2017 16:33,10/08/2017 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1448,20/08/2017 16:22,9/08/2017 18:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-8949,20/08/2017 16:21,9/08/2017 18:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-6121,20/08/2017 16:20,9/08/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10084,20/08/2017 13:12,8/08/2017 15:29,4.0,200, Information Exposure,nan
CVE-2016-6029,20/08/2017 13:06,14/08/2017 22:29,4.3,200, Information Exposure,nan
CVE-2016-6021,20/08/2017 13:06,14/08/2017 22:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5867,20/08/2017 13:01,16/08/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-8243,20/08/2017 13:00,16/08/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5864,20/08/2017 12:59,16/08/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-5863,20/08/2017 12:59,16/08/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-5862,20/08/2017 12:58,16/08/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-5861,20/08/2017 12:58,16/08/2017 15:29,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-5860,20/08/2017 12:58,16/08/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-12910,20/08/2017 12:25,17/08/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12909,20/08/2017 12:25,17/08/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12908,20/08/2017 12:25,17/08/2017 20:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12907,20/08/2017 12:25,17/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8671,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8670,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8657,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8656,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8646,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8645,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8641,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8640,20/08/2017 1:29,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0783,19/08/2017 14:01,9/08/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-8644,19/08/2017 1:29,8/08/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-1168,18/08/2017 18:18,10/08/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7764,18/08/2017 18:17,9/08/2017 16:29,5.0,331, Insufficient Entropy,nan
CVE-2016-5347,18/08/2017 18:16,16/08/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-1377,18/08/2017 17:59,10/08/2017 15:29,4.0,200, Information Exposure,nan
CVE-2017-12798,18/08/2017 17:55,10/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1431,18/08/2017 17:54,10/08/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5859,18/08/2017 17:44,16/08/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-5858,18/08/2017 17:43,16/08/2017 15:29,2.6,200, Information Exposure,nan
CVE-2016-5855,18/08/2017 17:42,16/08/2017 15:29,2.6,200, Information Exposure,nan
CVE-2016-5854,18/08/2017 17:42,16/08/2017 15:29,2.6,200, Information Exposure,nan
CVE-2015-0786,18/08/2017 13:24,9/08/2017 18:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0785,18/08/2017 12:56,9/08/2017 18:29,5.0,200, Information Exposure,nan
CVE-2015-0784,18/08/2017 12:55,9/08/2017 18:29,5.0,200, Information Exposure,nan
CVE-2015-0782,18/08/2017 12:55,9/08/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0780,18/08/2017 12:18,9/08/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6393,18/08/2017 12:18,9/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5144,18/08/2017 12:18,9/08/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0781,18/08/2017 11:57,9/08/2017 18:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0880,18/08/2017 11:56,8/08/2017 21:29,7.8,399, Resource Management Errors,nan
CVE-2010-3845,18/08/2017 11:13,8/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2014-9701,17/08/2017 17:49,9/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2313,17/08/2017 14:59,9/08/2017 18:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2015-2312,17/08/2017 14:40,9/08/2017 18:29,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2015-2311,17/08/2017 14:35,9/08/2017 18:29,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2015-2310,17/08/2017 14:32,9/08/2017 18:29,6.4,190, Integer Overflow or Wraparound,nan
CVE-2011-1946,17/08/2017 1:34,7/07/2011 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1943,17/08/2017 1:34,14/06/2011 17:55,2.1,200, Information Exposure,nan
CVE-2011-1938,17/08/2017 1:34,31/05/2011 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1929,17/08/2017 1:34,24/05/2011 23:55,5.0,20, Improper Input Validation,nan
CVE-2011-1922,17/08/2017 1:34,31/05/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-1920,17/08/2017 1:34,23/05/2011 22:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1913,17/08/2017 1:34,22/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1911,17/08/2017 1:34,20/09/2011 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1908,17/08/2017 1:34,24/06/2011 20:55,9.3,189, Numeric Errors,nan
CVE-2011-1865,17/08/2017 1:34,1/07/2011 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1863,17/08/2017 1:34,14/06/2011 17:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1862,17/08/2017 1:34,14/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1842,17/08/2017 1:34,3/05/2011 0:55,7.2,20, Improper Input Validation,nan
CVE-2011-1841,17/08/2017 1:34,3/05/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1839,17/08/2017 1:34,28/04/2011 18:55,5.0,200, Information Exposure,nan
CVE-2011-1829,17/08/2017 1:34,27/07/2011 2:55,4.3,20, Improper Input Validation,nan
CVE-2011-1828,17/08/2017 1:34,16/05/2011 18:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1823,17/08/2017 1:34,9/06/2011 10:36,7.2,189, Numeric Errors,nan
CVE-2011-1820,17/08/2017 1:34,21/04/2011 10:55,1.7,200, Information Exposure,nan
CVE-2011-1788,17/08/2017 1:34,9/05/2011 22:55,2.1,200, Information Exposure,nan
CVE-2011-1784,17/08/2017 1:34,20/05/2011 22:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1755,17/08/2017 1:34,21/06/2011 2:52,5.0,399, Resource Management Errors,nan
CVE-2011-1754,17/08/2017 1:34,21/06/2011 2:52,5.0,399, Resource Management Errors,nan
CVE-2011-1753,17/08/2017 1:34,21/06/2011 2:52,5.0,399, Resource Management Errors,nan
CVE-2011-1750,17/08/2017 1:34,21/06/2012 15:55,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1740,17/08/2017 1:34,19/09/2011 12:02,7.7,264, Permissions Privileges and Access Controls,nan
CVE-2011-1739,17/08/2017 1:34,3/05/2011 20:55,4.3,20, Improper Input Validation,nan
CVE-2011-1727,17/08/2017 1:34,3/05/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1726,17/08/2017 1:34,3/05/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1722,17/08/2017 1:34,19/04/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1715,17/08/2017 1:34,18/04/2011 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1714,17/08/2017 1:34,18/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1690,17/08/2017 1:34,22/04/2011 10:55,4.3,255, Credentials Management,nan
CVE-2011-1689,17/08/2017 1:34,22/04/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1688,17/08/2017 1:34,22/04/2011 10:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1687,17/08/2017 1:34,22/04/2011 10:55,4.0,200, Information Exposure,nan
CVE-2011-1686,17/08/2017 1:34,22/04/2011 10:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1685,17/08/2017 1:34,22/04/2011 10:55,4.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1682,17/08/2017 1:34,13/04/2011 14:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1681,17/08/2017 1:34,10/04/2011 2:55,3.3,16, Configuration,nan
CVE-2011-1680,17/08/2017 1:34,10/04/2011 2:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-1679,17/08/2017 1:34,10/04/2011 2:55,3.3,20, Improper Input Validation,nan
CVE-2011-1678,17/08/2017 1:34,10/04/2011 2:55,3.3,20, Improper Input Validation,nan
CVE-2011-1676,17/08/2017 1:34,10/04/2011 2:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1674,17/08/2017 1:34,10/04/2011 2:55,6.8,287, Improper Authentication,nan
CVE-2011-1673,17/08/2017 1:34,10/04/2011 2:55,5.0,310, Cryptographic Issues,nan
CVE-2011-1672,17/08/2017 1:34,10/04/2011 2:55,5.0,200, Information Exposure,nan
CVE-2011-1669,17/08/2017 1:34,10/04/2011 2:51,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1667,17/08/2017 1:34,10/04/2011 2:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1665,17/08/2017 1:34,10/04/2011 2:51,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1664,17/08/2017 1:34,10/04/2011 2:51,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1663,17/08/2017 1:34,10/04/2011 2:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1662,17/08/2017 1:34,10/04/2011 2:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1661,17/08/2017 1:34,10/04/2011 2:51,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1637,17/08/2017 1:34,2/06/2011 20:55,1.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1623,17/08/2017 1:34,2/06/2011 20:55,10.0,255, Credentials Management,nan
CVE-2011-1609,17/08/2017 1:34,3/05/2011 22:55,8.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1607,17/08/2017 1:34,3/05/2011 22:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1604,17/08/2017 1:34,3/05/2011 22:55,7.1,399, Resource Management Errors,nan
CVE-2011-1593,17/08/2017 1:34,3/05/2011 20:55,4.9,189, Numeric Errors,nan
CVE-2011-1589,17/08/2017 1:34,29/04/2011 22:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1586,17/08/2017 1:34,27/04/2011 0:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1580,17/08/2017 1:34,27/04/2011 0:55,3.5,20, Improper Input Validation,nan
CVE-2011-1579,17/08/2017 1:34,27/04/2011 0:55,5.8,20, Improper Input Validation,nan
CVE-2011-1578,17/08/2017 1:34,27/04/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1560,17/08/2017 1:34,5/04/2011 15:19,9.3,255, Credentials Management,nan
CVE-2011-1556,17/08/2017 1:34,4/04/2011 12:27,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1551,17/08/2017 1:34,30/03/2011 22:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1533,17/08/2017 1:34,15/04/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1531,17/08/2017 1:34,15/04/2011 0:55,4.3,200, Information Exposure,nan
CVE-2011-1518,17/08/2017 1:34,18/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1513,17/08/2017 1:34,4/11/2011 21:55,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-1506,17/08/2017 1:34,22/03/2011 17:55,6.8,20, Improper Input Validation,nan
CVE-2011-1500,17/08/2017 1:34,13/04/2011 14:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1499,17/08/2017 1:34,29/04/2011 22:55,2.6,16, Configuration,nan
CVE-2011-1496,17/08/2017 1:34,18/04/2011 18:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1492,17/08/2017 1:34,8/04/2011 15:17,5.5,20, Improper Input Validation,nan
CVE-2011-1491,17/08/2017 1:34,8/04/2011 15:17,3.5,20, Improper Input Validation,nan
CVE-2011-1487,17/08/2017 1:34,11/04/2011 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1472,17/08/2017 1:34,29/03/2011 18:55,7.2,287, Improper Authentication,nan
CVE-2011-1433,17/08/2017 1:34,18/03/2011 16:55,5.0,310, Cryptographic Issues,nan
CVE-2011-1430,17/08/2017 1:34,16/03/2011 22:55,6.8,20, Improper Input Validation,nan
CVE-2011-1429,17/08/2017 1:34,16/03/2011 22:55,5.8,20, Improper Input Validation,nan
CVE-2011-1425,17/08/2017 1:34,4/04/2011 12:27,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1414,17/08/2017 1:34,22/03/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1409,17/08/2017 1:34,24/06/2011 20:55,5.0,287, Improper Authentication,nan
CVE-2011-1406,17/08/2017 1:34,13/05/2011 22:55,4.3,16, Configuration,nan
CVE-2011-1405,17/08/2017 1:34,13/05/2011 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1404,17/08/2017 1:34,13/05/2011 22:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1403,17/08/2017 1:34,13/05/2011 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1402,17/08/2017 1:34,13/05/2011 22:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1392,17/08/2017 1:34,23/12/2011 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1391,17/08/2017 1:34,23/12/2011 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1390,17/08/2017 1:34,14/05/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1389,17/08/2017 1:34,19/01/2012 19:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1388,17/08/2017 1:34,23/12/2011 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1386,17/08/2017 1:34,4/01/2012 3:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1384,17/08/2017 1:34,4/01/2012 3:55,4.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1378,17/08/2017 1:34,26/11/2011 3:57,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1376,17/08/2017 1:34,19/01/2012 11:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1375,17/08/2017 1:34,11/11/2011 21:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1372,17/08/2017 1:34,28/11/2011 11:55,6.8,287, Improper Authentication,nan
CVE-2011-1371,17/08/2017 1:34,28/10/2011 2:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1370,17/08/2017 1:34,29/10/2011 10:55,5.0,16, Configuration,nan
CVE-2011-1368,17/08/2017 1:34,29/10/2011 10:55,5.0,200, Information Exposure,nan
CVE-2011-1364,17/08/2017 1:34,30/10/2011 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1362,17/08/2017 1:34,15/01/2012 3:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1360,17/08/2017 1:34,28/10/2011 2:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1359,17/08/2017 1:34,6/09/2011 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1357,17/08/2017 1:34,11/08/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1356,17/08/2017 1:34,19/07/2011 20:55,2.1,200, Information Exposure,nan
CVE-2011-1355,17/08/2017 1:34,19/07/2011 20:55,5.8,20, Improper Input Validation,nan
CVE-2011-1343,17/08/2017 1:34,9/03/2011 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1337,17/08/2017 1:34,1/07/2011 10:55,4.3,399, Resource Management Errors,nan
CVE-2011-1331,17/08/2017 1:34,18/07/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1329,17/08/2017 1:34,31/05/2011 20:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-1328,17/08/2017 1:34,24/05/2011 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1308,17/08/2017 1:34,8/03/2011 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1224,17/08/2017 1:34,7/07/2011 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1209,17/08/2017 1:34,4/05/2011 22:55,4.3,310, Cryptographic Issues,nan
CVE-2011-1206,17/08/2017 1:34,21/04/2011 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1205,17/08/2017 1:34,29/03/2011 18:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1179,17/08/2017 1:33,18/04/2011 17:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1176,17/08/2017 1:33,29/03/2011 18:55,4.3,16, Configuration,nan
CVE-2011-1174,17/08/2017 1:33,31/03/2011 22:55,5.0,399, Resource Management Errors,nan
CVE-2011-1153,17/08/2017 1:33,16/03/2011 22:55,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2011-1146,17/08/2017 1:33,15/03/2011 17:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1144,17/08/2017 1:33,3/03/2011 1:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1106,17/08/2017 1:33,1/03/2011 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1105,17/08/2017 1:33,28/02/2011 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1103,17/08/2017 1:33,25/02/2011 19:00,5.0,200, Information Exposure,nan
CVE-2011-1102,17/08/2017 1:33,25/02/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1100,17/08/2017 1:33,25/02/2011 17:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1094,17/08/2017 1:33,16/03/2011 22:55,4.3,20, Improper Input Validation,nan
CVE-2011-1081,17/08/2017 1:33,20/03/2011 2:00,5.0,399, Resource Management Errors,nan
CVE-2011-1072,17/08/2017 1:33,3/03/2011 1:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1067,17/08/2017 1:33,23/02/2011 19:00,5.0,20, Improper Input Validation,nan
CVE-2011-1066,17/08/2017 1:33,23/02/2011 1:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1065,17/08/2017 1:33,23/02/2011 1:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1064,17/08/2017 1:33,23/02/2011 1:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1062,17/08/2017 1:33,23/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1058,17/08/2017 1:33,22/02/2011 18:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1052,17/08/2017 1:33,21/02/2011 19:00,10.0,189, Numeric Errors,nan
CVE-2011-1051,17/08/2017 1:33,21/02/2011 19:00,10.0,189, Numeric Errors,nan
CVE-2011-1046,17/08/2017 1:33,21/02/2011 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1044,17/08/2017 1:33,18/02/2011 20:00,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1042,17/08/2017 1:33,18/02/2011 17:00,4.3,399, Resource Management Errors,nan
CVE-2011-1035,17/08/2017 1:33,19/02/2011 1:00,7.5,255, Credentials Management,nan
CVE-2011-1029,17/08/2017 1:33,14/02/2011 22:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1027,17/08/2017 1:33,20/03/2011 2:00,5.0,189, Numeric Errors,nan
CVE-2011-1020,17/08/2017 1:33,28/02/2011 16:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1016,17/08/2017 1:33,28/02/2011 16:00,6.9,20, Improper Input Validation,nan
CVE-2011-1013,17/08/2017 1:33,9/05/2011 19:55,7.2,189, Numeric Errors,nan
CVE-2011-1008,17/08/2017 1:33,28/02/2011 16:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1007,17/08/2017 1:33,28/02/2011 16:00,2.1,255, Credentials Management,nan
CVE-2011-1003,17/08/2017 1:33,23/02/2011 19:00,6.8,399, Resource Management Errors,nan
CVE-2011-1002,17/08/2017 1:33,22/02/2011 19:00,5.0,399, Resource Management Errors,nan
CVE-2011-1000,17/08/2017 1:33,19/02/2011 1:00,6.4,20, Improper Input Validation,nan
CVE-2011-0999,17/08/2017 1:33,23/02/2011 19:00,4.9,399, Resource Management Errors,nan
CVE-2011-0996,17/08/2017 1:33,13/04/2011 14:55,6.8,20, Improper Input Validation,nan
CVE-2011-0995,17/08/2017 1:33,13/05/2011 17:05,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-0993,17/08/2017 1:33,16/04/2014 18:37,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-0992,17/08/2017 1:33,13/04/2011 21:55,5.8,399, Resource Management Errors,nan
CVE-2011-0991,17/08/2017 1:33,13/04/2011 21:55,6.8,399, Resource Management Errors,nan
CVE-2011-0990,17/08/2017 1:33,13/04/2011 21:55,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-0989,17/08/2017 1:33,13/04/2011 21:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-0988,17/08/2017 1:33,18/04/2011 17:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-0987,17/08/2017 1:33,14/02/2011 22:00,6.5,20, Improper Input Validation,nan
CVE-2011-0986,17/08/2017 1:33,14/02/2011 22:00,5.0,20, Improper Input Validation,nan
CVE-2011-0966,17/08/2017 1:33,20/05/2011 22:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0962,17/08/2017 1:33,20/05/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0961,17/08/2017 1:33,20/05/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0960,17/08/2017 1:33,20/05/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0959,17/08/2017 1:33,20/05/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0951,17/08/2017 1:33,4/04/2011 12:27,5.0,255, Credentials Management,nan
CVE-2011-0905,17/08/2017 1:33,10/05/2011 18:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0904,17/08/2017 1:33,10/05/2011 18:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0903,17/08/2017 1:33,7/02/2011 21:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0901,17/08/2017 1:33,7/02/2011 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0900,17/08/2017 1:33,7/02/2011 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0898,17/08/2017 1:33,15/04/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0890,17/08/2017 1:33,25/03/2011 18:55,5.0,200, Information Exposure,nan
CVE-2011-0775,17/08/2017 1:33,4/02/2011 1:00,5.0,200, Information Exposure,nan
CVE-2011-0773,17/08/2017 1:33,4/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0771,17/08/2017 1:33,4/02/2011 1:00,6.8,20, Improper Input Validation,nan
CVE-2011-0770,17/08/2017 1:33,19/07/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0767,17/08/2017 1:33,6/06/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0760,17/08/2017 1:33,28/03/2011 16:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0759,17/08/2017 1:33,22/03/2011 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0741,17/08/2017 1:33,2/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0740,17/08/2017 1:33,2/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0739,17/08/2017 1:33,2/02/2011 1:00,6.8,20, Improper Input Validation,nan
CVE-2011-0738,17/08/2017 1:33,2/02/2011 1:00,4.3,20, Improper Input Validation,nan
CVE-2011-0728,17/08/2017 1:33,29/03/2011 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0727,17/08/2017 1:33,31/03/2011 22:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0725,17/08/2017 1:33,23/02/2011 19:00,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0724,17/08/2017 1:33,19/02/2011 1:00,9.3,310, Cryptographic Issues,nan
CVE-2011-0721,17/08/2017 1:33,19/02/2011 1:00,6.4,20, Improper Input Validation,nan
CVE-2011-0718,17/08/2017 1:33,25/02/2011 19:00,5.8,287, Improper Authentication,nan
CVE-2011-0712,17/08/2017 1:33,18/02/2011 20:00,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0707,17/08/2017 1:33,22/02/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0695,17/08/2017 1:33,15/03/2011 17:55,5.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-0688,17/08/2017 1:33,31/01/2011 21:00,9.3,287, Improper Authentication,nan
CVE-2011-0679,17/08/2017 1:33,28/01/2011 21:00,5.0,200, Information Exposure,nan
CVE-2011-0652,17/08/2017 1:33,28/01/2011 16:00,2.1,20, Improper Input Validation,nan
CVE-2011-0651,17/08/2017 1:33,28/01/2011 16:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0646,17/08/2017 1:33,25/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0645,17/08/2017 1:33,25/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0644,17/08/2017 1:33,25/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0643,17/08/2017 1:33,25/01/2011 19:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0642,17/08/2017 1:33,25/01/2011 19:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0641,17/08/2017 1:33,25/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0629,17/08/2017 1:33,16/06/2011 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0583,17/08/2017 1:33,10/02/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0581,17/08/2017 1:33,10/02/2011 16:00,4.3,20, Improper Input Validation,nan
CVE-2011-0580,17/08/2017 1:33,10/02/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0550,17/08/2017 1:33,15/08/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0549,17/08/2017 1:33,11/07/2011 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0539,17/08/2017 1:33,10/02/2011 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0532,17/08/2017 1:33,23/02/2011 19:00,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-0530,17/08/2017 1:33,22/02/2011 19:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0527,17/08/2017 1:33,15/08/2011 19:55,5.0,287, Improper Authentication,nan
CVE-2011-0520,17/08/2017 1:33,28/01/2011 16:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0518,17/08/2017 1:33,20/01/2011 19:00,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0517,17/08/2017 1:33,20/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0516,17/08/2017 1:33,20/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0512,17/08/2017 1:33,20/01/2011 19:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0511,17/08/2017 1:33,20/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0510,17/08/2017 1:33,20/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0506,17/08/2017 1:33,20/01/2011 19:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0505,17/08/2017 1:33,20/01/2011 19:00,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0499,17/08/2017 1:33,20/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0497,17/08/2017 1:33,20/01/2011 19:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0494,17/08/2017 1:33,19/01/2011 12:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0493,17/08/2017 1:33,19/01/2011 12:00,5.0,189, Numeric Errors,nan
CVE-2011-0492,17/08/2017 1:33,19/01/2011 12:00,5.0,399, Resource Management Errors,nan
CVE-2011-0491,17/08/2017 1:33,19/01/2011 12:00,5.0,20, Improper Input Validation,nan
CVE-2011-0489,17/08/2017 1:33,18/01/2011 18:03,7.5,287, Improper Authentication,nan
CVE-2011-0488,17/08/2017 1:33,18/01/2011 18:03,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0465,17/08/2017 1:33,8/04/2011 15:17,9.3,20, Improper Input Validation,nan
CVE-2011-0455,17/08/2017 1:33,3/03/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0454,17/08/2017 1:33,1/03/2011 23:00,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0451,17/08/2017 1:33,3/02/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0443,17/08/2017 1:33,13/01/2011 1:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0441,17/08/2017 1:33,29/03/2011 18:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0440,17/08/2017 1:33,28/03/2011 16:55,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0439,17/08/2017 1:33,28/03/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0438,17/08/2017 1:33,15/03/2011 17:55,6.8,287, Improper Authentication,nan
CVE-2011-0437,17/08/2017 1:33,7/03/2011 21:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0436,17/08/2017 1:33,7/03/2011 21:00,5.0,310, Cryptographic Issues,nan
CVE-2011-0435,17/08/2017 1:33,7/03/2011 21:00,5.0,287, Improper Authentication,nan
CVE-2011-0434,17/08/2017 1:33,7/03/2011 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0427,17/08/2017 1:33,19/01/2011 12:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0423,17/08/2017 1:33,12/01/2011 1:00,7.5,255, Credentials Management,nan
CVE-2011-0413,17/08/2017 1:33,31/01/2011 21:00,7.8,20, Improper Input Validation,nan
CVE-2011-0412,17/08/2017 1:33,19/04/2011 19:55,2.1,255, Credentials Management,nan
CVE-2011-0411,17/08/2017 1:33,16/03/2011 22:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-0410,17/08/2017 1:33,24/01/2011 18:00,5.0,310, Cryptographic Issues,nan
CVE-2011-0408,17/08/2017 1:33,18/01/2011 18:03,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0406,17/08/2017 1:33,11/01/2011 3:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0405,17/08/2017 1:33,11/01/2011 3:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0404,17/08/2017 1:33,11/01/2011 3:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0402,17/08/2017 1:33,11/01/2011 3:00,6.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0401,17/08/2017 1:33,10/01/2011 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0400,17/08/2017 1:33,10/01/2011 20:00,5.0,16, Configuration,nan
CVE-2011-0398,17/08/2017 1:33,10/01/2011 20:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-0394,17/08/2017 1:33,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0393,17/08/2017 1:33,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0392,17/08/2017 1:33,25/02/2011 12:00,7.5,287, Improper Authentication,nan
CVE-2011-0391,17/08/2017 1:33,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0390,17/08/2017 1:33,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0389,17/08/2017 1:33,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0387,17/08/2017 1:33,25/02/2011 12:00,8.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0386,17/08/2017 1:33,25/02/2011 12:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0384,17/08/2017 1:33,25/02/2011 12:00,10.0,287, Improper Authentication,nan
CVE-2011-0383,17/08/2017 1:33,25/02/2011 12:00,10.0,287, Improper Authentication,nan
CVE-2011-0381,17/08/2017 1:33,25/02/2011 12:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0380,17/08/2017 1:33,25/02/2011 12:00,7.5,287, Improper Authentication,nan
CVE-2011-0377,17/08/2017 1:33,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0352,17/08/2017 1:33,24/01/2011 18:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0348,17/08/2017 1:33,28/01/2011 22:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-0344,17/08/2017 1:33,8/03/2011 21:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0341,17/08/2017 1:33,13/05/2011 17:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0324,17/08/2017 1:33,7/02/2011 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0321,17/08/2017 1:33,1/02/2011 18:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-0316,17/08/2017 1:33,12/01/2011 1:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0315,17/08/2017 1:33,12/01/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0314,17/08/2017 1:33,12/01/2011 1:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0311,17/08/2017 1:33,2/09/2011 23:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0310,17/08/2017 1:33,13/01/2011 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0291,17/08/2017 1:33,8/12/2011 20:55,7.2,200, Information Exposure,nan
CVE-2011-0290,17/08/2017 1:33,21/10/2011 10:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-0280,17/08/2017 1:33,14/03/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0279,17/08/2017 1:33,7/03/2011 21:00,2.1,287, Improper Authentication,nan
CVE-2011-0274,17/08/2017 1:33,24/01/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0273,17/08/2017 1:33,25/01/2011 1:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0271,17/08/2017 1:33,13/01/2011 19:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0270,17/08/2017 1:33,13/01/2011 19:00,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2011-0269,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0268,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0267,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0266,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0265,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0264,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0263,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0262,17/08/2017 1:33,13/01/2011 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0206,17/08/2017 1:33,24/06/2011 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0169,17/08/2017 1:33,11/03/2011 22:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0166,17/08/2017 1:33,11/03/2011 22:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-0163,17/08/2017 1:33,11/03/2011 22:55,4.3,20, Improper Input Validation,nan
CVE-2011-0161,17/08/2017 1:33,11/03/2011 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0158,17/08/2017 1:33,11/03/2011 22:55,4.3,20, Improper Input Validation,nan
CVE-2011-0157,17/08/2017 1:33,11/03/2011 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0048,17/08/2017 1:33,28/01/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0047,17/08/2017 1:33,4/02/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0046,17/08/2017 1:33,28/01/2011 16:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0037,17/08/2017 1:33,25/02/2011 18:00,7.2,20, Improper Input Validation,nan
CVE-2011-0025,17/08/2017 1:33,4/02/2011 20:00,6.8,20, Improper Input Validation,nan
CVE-2011-0020,17/08/2017 1:33,24/01/2011 18:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0017,17/08/2017 1:33,2/02/2011 1:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0011,17/08/2017 1:33,21/06/2012 15:55,4.3,287, Improper Authentication,nan
CVE-2011-0007,17/08/2017 1:33,11/01/2011 3:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0003,17/08/2017 1:33,11/01/2011 3:00,5.8,20, Improper Input Validation,nan
CVE-2011-0002,17/08/2017 1:33,22/01/2011 22:00,6.4,310, Cryptographic Issues,nan
CVE-2011-0001,17/08/2017 1:33,15/03/2011 17:55,5.0,399, Resource Management Errors,nan
CVE-2010-4801,17/08/2017 1:33,27/04/2011 0:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4800,17/08/2017 1:33,27/04/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4799,17/08/2017 1:33,27/04/2011 0:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4798,17/08/2017 1:33,27/04/2011 0:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4797,17/08/2017 1:33,27/04/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4796,17/08/2017 1:33,27/04/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4795,17/08/2017 1:33,27/04/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4794,17/08/2017 1:33,27/04/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4793,17/08/2017 1:33,27/04/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4792,17/08/2017 1:33,27/04/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4791,17/08/2017 1:33,27/04/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4776,17/08/2017 1:33,23/03/2011 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4775,17/08/2017 1:33,23/03/2011 22:00,5.0,20, Improper Input Validation,nan
CVE-2010-4757,17/08/2017 1:33,15/03/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4752,17/08/2017 1:33,1/03/2011 22:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4751,17/08/2017 1:33,1/03/2011 22:00,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4747,17/08/2017 1:33,1/03/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4745,17/08/2017 1:33,21/02/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4719,17/08/2017 1:33,1/02/2011 23:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4710,17/08/2017 1:33,28/01/2011 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4709,17/08/2017 1:33,28/01/2011 16:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4702,17/08/2017 1:33,20/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4695,17/08/2017 1:33,14/01/2011 18:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4694,17/08/2017 1:33,14/01/2011 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4690,17/08/2017 1:33,7/01/2011 23:00,5.0,287, Improper Authentication,nan
CVE-2010-4689,17/08/2017 1:33,7/01/2011 23:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-4686,17/08/2017 1:33,7/01/2011 19:00,7.8,399, Resource Management Errors,nan
CVE-2010-4685,17/08/2017 1:33,7/01/2011 19:00,4.0,310, Cryptographic Issues,nan
CVE-2010-4684,17/08/2017 1:33,7/01/2011 19:00,7.1,399, Resource Management Errors,nan
CVE-2010-4683,17/08/2017 1:33,7/01/2011 19:00,7.8,399, Resource Management Errors,nan
CVE-2010-4682,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4680,17/08/2017 1:33,7/01/2011 12:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4679,17/08/2017 1:33,7/01/2011 12:00,7.8,20, Improper Input Validation,nan
CVE-2010-4678,17/08/2017 1:33,7/01/2011 12:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4677,17/08/2017 1:33,7/01/2011 12:00,5.0,399, Resource Management Errors,nan
CVE-2010-4676,17/08/2017 1:33,7/01/2011 12:00,6.8,399, Resource Management Errors,nan
CVE-2010-4675,17/08/2017 1:33,7/01/2011 12:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4674,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4673,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4672,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4671,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4670,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4669,17/08/2017 1:33,7/01/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2010-4668,17/08/2017 1:33,3/01/2011 20:00,4.7,399, Resource Management Errors,nan
CVE-2010-4646,17/08/2017 1:33,18/01/2011 18:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4645,17/08/2017 1:33,11/01/2011 3:00,5.0,189, Numeric Errors,nan
CVE-2010-4644,17/08/2017 1:33,7/01/2011 19:00,3.5,399, Resource Management Errors,nan
CVE-2010-4643,17/08/2017 1:33,28/01/2011 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4642,17/08/2017 1:33,30/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4641,17/08/2017 1:33,30/12/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4640,17/08/2017 1:33,30/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4639,17/08/2017 1:33,30/12/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4637,17/08/2017 1:33,30/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4636,17/08/2017 1:33,30/12/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4635,17/08/2017 1:33,30/12/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4633,17/08/2017 1:33,30/12/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4631,17/08/2017 1:33,30/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4630,17/08/2017 1:33,30/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4629,17/08/2017 1:33,30/12/2010 21:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4627,17/08/2017 1:33,30/12/2010 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4626,17/08/2017 1:33,30/12/2010 21:00,5.1,310, Cryptographic Issues,nan
CVE-2010-4625,17/08/2017 1:33,30/12/2010 21:00,5.0,200, Information Exposure,nan
CVE-2010-4624,17/08/2017 1:33,30/12/2010 21:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4623,17/08/2017 1:33,30/12/2010 19:00,4.0,399, Resource Management Errors,nan
CVE-2010-4622,17/08/2017 1:33,30/12/2010 19:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4619,17/08/2017 1:33,29/12/2010 22:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4617,17/08/2017 1:33,29/12/2010 22:33,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4615,17/08/2017 1:33,29/12/2010 22:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4611,17/08/2017 1:33,29/12/2010 22:33,5.0,200, Information Exposure,nan
CVE-2010-4602,17/08/2017 1:33,29/12/2010 18:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4572,17/08/2017 1:33,28/01/2011 16:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4570,17/08/2017 1:33,28/01/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4569,17/08/2017 1:33,28/01/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4568,17/08/2017 1:33,28/01/2011 16:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4567,17/08/2017 1:33,28/01/2011 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4556,17/08/2017 1:33,17/12/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4555,17/08/2017 1:33,14/07/2011 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4554,17/08/2017 1:33,14/07/2011 23:55,4.3,20, Improper Input Validation,nan
CVE-2010-4544,17/08/2017 1:33,16/12/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4539,17/08/2017 1:33,7/01/2011 19:00,6.8,399, Resource Management Errors,nan
CVE-2010-4530,17/08/2017 1:33,18/01/2011 18:03,4.4,189, Numeric Errors,nan
CVE-2010-4525,17/08/2017 1:33,11/01/2011 3:00,1.9,200, Information Exposure,nan
CVE-2010-4506,17/08/2017 1:33,7/02/2011 21:00,6.2,310, Cryptographic Issues,nan
CVE-2010-4497,17/08/2017 1:33,7/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4496,17/08/2017 1:33,7/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4393,17/08/2017 1:33,31/01/2011 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4366,17/08/2017 1:33,1/12/2010 16:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4364,17/08/2017 1:33,1/12/2010 16:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4355,17/08/2017 1:33,1/12/2010 16:06,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4351,17/08/2017 1:33,20/01/2011 19:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-4349,17/08/2017 1:33,3/01/2011 20:00,5.0,200, Information Exposure,nan
CVE-2010-4347,17/08/2017 1:33,22/12/2010 21:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-4341,17/08/2017 1:33,25/01/2011 1:00,2.1,399, Resource Management Errors,nan
CVE-2010-4338,17/08/2017 1:33,20/01/2011 19:00,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-4326,17/08/2017 1:33,28/01/2011 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4324,17/08/2017 1:33,7/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4275,17/08/2017 1:33,22/12/2010 3:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4274,17/08/2017 1:33,17/11/2010 1:00,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-4273,17/08/2017 1:33,17/11/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4272,17/08/2017 1:33,17/11/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4269,17/08/2017 1:33,17/11/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4268,17/08/2017 1:33,17/11/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4267,17/08/2017 1:33,20/01/2011 19:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4228,17/08/2017 1:33,22/03/2011 17:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4216,17/08/2017 1:33,9/11/2010 21:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4215,17/08/2017 1:33,17/11/2010 1:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4211,17/08/2017 1:33,9/11/2010 1:00,2.9,287, Improper Authentication,nan
CVE-2010-4186,17/08/2017 1:33,5/11/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4184,17/08/2017 1:33,5/11/2010 17:00,5.0,310, Cryptographic Issues,nan
CVE-2010-4181,17/08/2017 1:33,4/11/2010 19:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4175,17/08/2017 1:33,11/01/2011 3:00,4.9,189, Numeric Errors,nan
CVE-2010-4171,17/08/2017 1:33,7/12/2010 22:00,2.1,20, Improper Input Validation,nan
CVE-2010-4169,17/08/2017 1:33,22/11/2010 13:00,4.9,399, Resource Management Errors,nan
CVE-2010-4155,17/08/2017 1:33,3/11/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4154,17/08/2017 1:33,3/11/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4153,17/08/2017 1:33,3/11/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4148,17/08/2017 1:33,2/11/2010 2:26,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4147,17/08/2017 1:33,2/11/2010 2:26,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4146,17/08/2017 1:33,2/11/2010 2:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4144,17/08/2017 1:33,2/11/2010 2:26,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4120,17/08/2017 1:33,28/10/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4107,17/08/2017 1:33,17/11/2010 16:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4106,17/08/2017 1:33,2/11/2010 2:26,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4099,17/08/2017 1:33,27/10/2010 19:00,6.8,20, Improper Input Validation,nan
CVE-2010-4057,17/08/2017 1:33,23/10/2010 20:39,5.0,189, Numeric Errors,nan
CVE-2010-4055,17/08/2017 1:33,23/10/2010 20:39,5.0,399, Resource Management Errors,nan
CVE-2010-4053,17/08/2017 1:33,23/10/2010 20:39,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4032,17/08/2017 1:33,2/11/2010 2:26,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4030,17/08/2017 1:33,2/11/2010 2:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4015,17/08/2017 1:33,2/02/2011 1:00,6.5,189, Numeric Errors,nan
CVE-2010-4010,17/08/2017 1:33,16/11/2010 23:18,6.8,189, Numeric Errors,nan
CVE-2010-3985,17/08/2017 1:33,26/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3982,17/08/2017 1:33,18/10/2010 17:00,5.0,200, Information Exposure,nan
CVE-2010-3931,17/08/2017 1:33,20/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3929,17/08/2017 1:33,2/02/2011 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3926,17/08/2017 1:33,12/01/2011 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3925,17/08/2017 1:33,13/01/2011 19:00,5.8,255, Credentials Management,nan
CVE-2010-3924,17/08/2017 1:33,13/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3912,17/08/2017 1:33,13/01/2011 1:00,10.0,255, Credentials Management,nan
CVE-2010-3905,17/08/2017 1:33,22/12/2010 21:00,7.5,287, Improper Authentication,nan
CVE-2010-3879,17/08/2017 1:33,22/01/2011 22:00,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-3872,17/08/2017 1:33,22/11/2010 12:54,7.2,189, Numeric Errors,nan
CVE-2010-3871,17/08/2017 1:33,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3852,17/08/2017 1:33,6/11/2010 0:00,6.4,287, Improper Authentication,nan
CVE-2010-3846,17/08/2017 1:33,5/11/2010 17:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3841,17/08/2017 1:33,18/10/2010 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3832,17/08/2017 1:33,26/11/2010 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3831,17/08/2017 1:33,26/11/2010 20:00,4.3,200, Information Exposure,nan
CVE-2010-3830,17/08/2017 1:33,26/11/2010 20:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-3829,17/08/2017 1:33,26/11/2010 20:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-3827,17/08/2017 1:33,26/11/2010 20:00,4.3,20, Improper Input Validation,nan
CVE-2010-3764,17/08/2017 1:33,5/11/2010 17:00,5.0,200, Information Exposure,nan
CVE-2010-3618,17/08/2017 1:33,22/11/2010 13:00,4.3,310, Cryptographic Issues,nan
CVE-2010-3607,17/08/2017 1:33,24/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3606,17/08/2017 1:33,24/09/2010 21:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3603,17/08/2017 1:33,24/09/2010 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3602,17/08/2017 1:33,24/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3491,17/08/2017 1:32,26/10/2010 19:00,10.0,20, Improper Input Validation,nan
CVE-2010-3488,17/08/2017 1:32,22/09/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3486,17/08/2017 1:32,22/09/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3481,17/08/2017 1:32,22/09/2010 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3480,17/08/2017 1:32,22/09/2010 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3479,17/08/2017 1:32,22/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3476,17/08/2017 1:32,20/09/2010 22:00,5.0,20, Improper Input Validation,nan
CVE-2010-3467,17/08/2017 1:32,17/09/2010 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3466,17/08/2017 1:32,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3465,17/08/2017 1:32,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3461,17/08/2017 1:32,17/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3460,17/08/2017 1:32,17/09/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3459,17/08/2017 1:32,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3458,17/08/2017 1:32,17/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3457,17/08/2017 1:32,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3456,17/08/2017 1:32,17/09/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3452,17/08/2017 1:32,28/01/2011 22:00,9.3,399, Resource Management Errors,nan
CVE-2010-3448,17/08/2017 1:32,3/01/2011 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3447,17/08/2017 1:32,4/04/2011 12:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3444,17/08/2017 1:32,11/01/2011 3:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3426,17/08/2017 1:32,16/09/2010 22:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3425,17/08/2017 1:32,16/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3423,17/08/2017 1:32,16/09/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3421,17/08/2017 1:32,16/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3420,17/08/2017 1:32,16/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3419,17/08/2017 1:32,16/09/2010 22:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3418,17/08/2017 1:32,16/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3404,17/08/2017 1:32,16/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3350,17/08/2017 1:32,20/10/2010 18:00,6.9,20, Improper Input Validation,nan
CVE-2010-3289,17/08/2017 1:32,23/10/2010 20:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3281,17/08/2017 1:32,23/09/2010 19:00,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3280,17/08/2017 1:32,23/09/2010 19:00,6.9,200, Information Exposure,nan
CVE-2010-3279,17/08/2017 1:32,23/09/2010 19:00,7.6,16, Configuration,nan
CVE-2010-3263,17/08/2017 1:32,10/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3213,17/08/2017 1:32,7/09/2010 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3212,17/08/2017 1:32,3/09/2010 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3211,17/08/2017 1:32,3/09/2010 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3210,17/08/2017 1:32,3/09/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3209,17/08/2017 1:32,3/09/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3208,17/08/2017 1:32,3/09/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3207,17/08/2017 1:32,3/09/2010 18:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3206,17/08/2017 1:32,3/09/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3205,17/08/2017 1:32,3/09/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3204,17/08/2017 1:32,3/09/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3186,17/08/2017 1:32,30/08/2010 20:00,10.0,20, Improper Input Validation,nan
CVE-2010-3082,17/08/2017 1:32,14/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3044,17/08/2017 1:32,2/02/2011 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3043,17/08/2017 1:32,2/02/2011 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3042,17/08/2017 1:32,2/02/2011 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3041,17/08/2017 1:32,2/02/2011 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3035,17/08/2017 1:32,30/08/2010 21:00,5.0,20, Improper Input Validation,nan
CVE-2010-3028,17/08/2017 1:32,16/08/2010 20:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-3024,17/08/2017 1:32,16/08/2010 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3022,17/08/2017 1:32,16/08/2010 20:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2954,17/08/2017 1:32,3/09/2010 20:00,4.9,399, Resource Management Errors,nan
CVE-2010-2941,17/08/2017 1:32,5/11/2010 17:00,7.9,399, Resource Management Errors,nan
CVE-2010-2940,17/08/2017 1:32,30/08/2010 20:00,5.1,287, Improper Authentication,nan
CVE-2010-2933,17/08/2017 1:32,5/08/2010 13:23,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2932,17/08/2017 1:32,5/08/2010 13:23,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2930,17/08/2017 1:32,2/08/2010 21:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2929,17/08/2017 1:32,2/08/2010 21:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2927,17/08/2017 1:32,2/08/2010 20:40,5.0,287, Improper Authentication,nan
CVE-2010-2926,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2925,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2924,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2923,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2922,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2921,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2920,17/08/2017 1:32,30/07/2010 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2919,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2918,17/08/2017 1:32,30/07/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2917,17/08/2017 1:32,30/07/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2916,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2915,17/08/2017 1:32,30/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2913,17/08/2017 1:32,30/07/2010 13:26,2.1,200, Information Exposure,nan
CVE-2010-2912,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2911,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2910,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2908,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2907,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2906,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2905,17/08/2017 1:32,28/07/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2904,17/08/2017 1:32,28/07/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2857,17/08/2017 1:32,25/07/2010 2:04,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2856,17/08/2017 1:32,25/07/2010 2:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2853,17/08/2017 1:32,25/07/2010 2:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2852,17/08/2017 1:32,25/07/2010 2:04,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2850,17/08/2017 1:32,25/07/2010 2:04,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2849,17/08/2017 1:32,25/07/2010 2:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2845,17/08/2017 1:32,25/07/2010 2:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2844,17/08/2017 1:32,25/07/2010 2:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2813,17/08/2017 1:32,19/08/2010 18:00,5.0,399, Resource Management Errors,nan
CVE-2010-2810,17/08/2017 1:32,20/08/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2809,17/08/2017 1:32,19/08/2010 22:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2801,17/08/2017 1:32,9/08/2010 11:58,5.1,189, Numeric Errors,nan
CVE-2010-2796,17/08/2017 1:32,5/08/2010 18:17,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2795,17/08/2017 1:32,5/08/2010 18:17,4.0,20, Improper Input Validation,nan
CVE-2010-2791,17/08/2017 1:32,5/08/2010 18:17,5.0,200, Information Exposure,nan
CVE-2010-2790,17/08/2017 1:32,5/08/2010 13:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2786,17/08/2017 1:32,2/08/2010 22:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2772,17/08/2017 1:32,22/07/2010 5:43,6.9,255, Credentials Management,nan
CVE-2010-2724,17/08/2017 1:32,13/07/2010 18:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2721,17/08/2017 1:32,13/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2720,17/08/2017 1:32,13/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2719,17/08/2017 1:32,13/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2716,17/08/2017 1:32,13/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2715,17/08/2017 1:32,13/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2714,17/08/2017 1:32,13/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2709,17/08/2017 1:32,5/08/2010 18:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2702,17/08/2017 1:32,12/07/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2701,17/08/2017 1:32,12/07/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2698,17/08/2017 1:32,12/07/2010 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2697,17/08/2017 1:32,12/07/2010 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2696,17/08/2017 1:32,12/07/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2692,17/08/2017 1:32,12/07/2010 13:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2691,17/08/2017 1:32,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2688,17/08/2017 1:32,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2687,17/08/2017 1:32,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2684,17/08/2017 1:32,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2682,17/08/2017 1:32,12/07/2010 13:27,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2680,17/08/2017 1:32,12/07/2010 13:27,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2677,17/08/2017 1:32,8/07/2010 22:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2676,17/08/2017 1:32,8/07/2010 22:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2674,17/08/2017 1:32,8/07/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2670,17/08/2017 1:32,8/07/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2669,17/08/2017 1:32,8/07/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2644,17/08/2017 1:32,22/12/2010 21:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2639,17/08/2017 1:32,6/12/2010 20:12,5.0,200, Information Exposure,nan
CVE-2010-2638,17/08/2017 1:32,15/11/2010 21:00,4.0,399, Resource Management Errors,nan
CVE-2010-2637,17/08/2017 1:32,12/11/2010 21:00,4.3,310, Cryptographic Issues,nan
CVE-2010-2636,17/08/2017 1:32,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2635,17/08/2017 1:32,9/11/2010 21:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2626,17/08/2017 1:32,2/07/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2623,17/08/2017 1:32,2/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2622,17/08/2017 1:32,2/07/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2618,17/08/2017 1:32,2/07/2010 12:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2617,17/08/2017 1:32,2/07/2010 12:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2616,17/08/2017 1:32,2/07/2010 12:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2613,17/08/2017 1:32,2/07/2010 12:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2611,17/08/2017 1:32,2/07/2010 12:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2610,17/08/2017 1:32,2/07/2010 12:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2609,17/08/2017 1:32,2/07/2010 12:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2604,17/08/2017 1:32,13/01/2011 1:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2602,17/08/2017 1:32,17/12/2010 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2589,17/08/2017 1:32,10/02/2011 16:00,9.3,189, Numeric Errors,nan
CVE-2010-2588,17/08/2017 1:32,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2587,17/08/2017 1:32,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2545,17/08/2017 1:32,23/08/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2544,17/08/2017 1:32,23/08/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2540,17/08/2017 1:32,2/08/2010 22:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2539,17/08/2017 1:32,2/08/2010 22:00,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2534,17/08/2017 1:32,28/07/2010 12:48,5.0,399, Resource Management Errors,nan
CVE-2010-2526,17/08/2017 1:32,5/08/2010 13:22,4.6,287, Improper Authentication,nan
CVE-2010-2507,17/08/2017 1:32,28/06/2010 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2489,17/08/2017 1:32,12/07/2010 13:27,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2468,17/08/2017 1:32,25/06/2010 21:30,10.0,310, Cryptographic Issues,nan
CVE-2010-2467,17/08/2017 1:32,25/06/2010 21:30,5.0,255, Credentials Management,nan
CVE-2010-2466,17/08/2017 1:32,25/06/2010 21:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2464,17/08/2017 1:32,25/06/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2462,17/08/2017 1:32,25/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2461,17/08/2017 1:32,25/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2460,17/08/2017 1:32,25/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2459,17/08/2017 1:32,25/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2458,17/08/2017 1:32,25/06/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2456,17/08/2017 1:32,25/06/2010 21:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2454,17/08/2017 1:32,25/06/2010 19:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2439,17/08/2017 1:32,24/06/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2438,17/08/2017 1:32,24/06/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2433,17/08/2017 1:32,24/06/2010 12:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2429,17/08/2017 1:32,24/06/2010 12:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2428,17/08/2017 1:32,24/06/2010 12:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2387,17/08/2017 1:32,21/12/2012 5:46,1.9,255, Credentials Management,nan
CVE-2010-2363,17/08/2017 1:32,30/08/2010 20:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2362,17/08/2017 1:32,25/08/2010 20:00,10.0,20, Improper Input Validation,nan
CVE-2010-2361,17/08/2017 1:32,25/08/2010 20:00,10.0,20, Improper Input Validation,nan
CVE-2010-2360,17/08/2017 1:32,25/08/2010 20:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2359,17/08/2017 1:32,21/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2358,17/08/2017 1:32,21/06/2010 20:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2357,17/08/2017 1:32,21/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2356,17/08/2017 1:32,21/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2355,17/08/2017 1:32,21/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2354,17/08/2017 1:32,21/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2353,17/08/2017 1:32,21/06/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2352,17/08/2017 1:32,21/06/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-2350,17/08/2017 1:32,21/06/2010 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2348,17/08/2017 1:32,21/06/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2345,17/08/2017 1:32,21/06/2010 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2344,17/08/2017 1:32,21/06/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2343,17/08/2017 1:32,21/06/2010 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2341,17/08/2017 1:32,18/06/2010 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2339,17/08/2017 1:32,18/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2338,17/08/2017 1:32,18/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2337,17/08/2017 1:32,28/07/2010 12:48,6.0,20, Improper Input Validation,nan
CVE-2010-2332,17/08/2017 1:32,18/06/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2010-2330,17/08/2017 1:32,18/06/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2329,17/08/2017 1:32,18/06/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2321,17/08/2017 1:32,18/06/2010 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2320,17/08/2017 1:32,2/08/2010 20:40,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2315,17/08/2017 1:32,17/06/2010 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2313,17/08/2017 1:32,17/06/2010 16:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2311,17/08/2017 1:32,16/06/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2310,17/08/2017 1:32,16/06/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2010-2307,17/08/2017 1:32,16/06/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2305,17/08/2017 1:32,16/06/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2262,17/08/2017 1:32,10/06/2010 0:30,5.0,20, Improper Input Validation,nan
CVE-2010-2260,17/08/2017 1:32,9/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2249,17/08/2017 1:32,30/06/2010 18:30,5.0,399, Resource Management Errors,nan
CVE-2010-2225,17/08/2017 1:32,24/06/2010 12:30,7.5,399, Resource Management Errors,nan
CVE-2010-2199,17/08/2017 1:32,8/06/2010 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2197,17/08/2017 1:32,8/06/2010 18:30,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2191,17/08/2017 1:32,8/06/2010 0:30,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2190,17/08/2017 1:32,8/06/2010 0:30,5.0,200, Information Exposure,nan
CVE-2010-2156,17/08/2017 1:32,7/06/2010 17:13,5.0,189, Numeric Errors,nan
CVE-2010-2154,17/08/2017 1:32,3/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2148,17/08/2017 1:32,3/06/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2147,17/08/2017 1:32,3/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2142,17/08/2017 1:32,2/06/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2141,17/08/2017 1:32,2/06/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2138,17/08/2017 1:32,2/06/2010 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2137,17/08/2017 1:32,2/06/2010 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2136,17/08/2017 1:32,2/06/2010 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2135,17/08/2017 1:32,2/06/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2134,17/08/2017 1:32,2/06/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2133,17/08/2017 1:32,2/06/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2132,17/08/2017 1:32,2/06/2010 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2129,17/08/2017 1:32,1/06/2010 21:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2128,17/08/2017 1:32,1/06/2010 21:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2127,17/08/2017 1:32,1/06/2010 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2126,17/08/2017 1:32,1/06/2010 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2125,17/08/2017 1:32,1/06/2010 21:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2124,17/08/2017 1:32,1/06/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2123,17/08/2017 1:32,1/06/2010 21:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2113,17/08/2017 1:32,28/05/2010 20:30,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2111,17/08/2017 1:32,28/05/2010 20:30,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2090,17/08/2017 1:32,27/05/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-2080,17/08/2017 1:32,20/09/2010 21:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2079,17/08/2017 1:32,25/05/2010 22:30,5.0,20, Improper Input Validation,nan
CVE-2010-2078,17/08/2017 1:32,25/05/2010 22:30,5.0,20, Improper Input Validation,nan
CVE-2010-2073,17/08/2017 1:32,16/06/2010 20:30,5.0,255, Credentials Management,nan
CVE-2010-2072,17/08/2017 1:32,16/06/2010 20:30,3.6,310, Cryptographic Issues,nan
CVE-2010-2058,17/08/2017 1:32,7/06/2010 17:13,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-2053,17/08/2017 1:32,7/06/2010 17:13,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2050,17/08/2017 1:32,25/05/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2048,17/08/2017 1:32,25/05/2010 18:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2047,17/08/2017 1:32,25/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2045,17/08/2017 1:32,25/05/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2044,17/08/2017 1:32,25/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2043,17/08/2017 1:32,25/05/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2040,17/08/2017 1:32,25/05/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2039,17/08/2017 1:32,25/05/2010 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2031,17/08/2017 1:32,24/05/2010 19:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2030,17/08/2017 1:32,24/05/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2029,17/08/2017 1:32,24/05/2010 19:30,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2028,17/08/2017 1:32,24/05/2010 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2021,17/08/2017 1:32,25/06/2012 21:55,5.8,20, Improper Input Validation,nan
CVE-2010-2018,17/08/2017 1:32,24/05/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2016,17/08/2017 1:32,24/05/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2010,17/08/2017 1:32,21/05/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2005,17/08/2017 1:32,20/05/2010 21:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2004,17/08/2017 1:32,20/05/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1998,17/08/2017 1:32,20/05/2010 17:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1996,17/08/2017 1:32,20/05/2010 17:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1984,17/08/2017 1:32,19/05/2010 20:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1983,17/08/2017 1:32,19/05/2010 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1981,17/08/2017 1:32,19/05/2010 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1980,17/08/2017 1:32,19/05/2010 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1979,17/08/2017 1:32,19/05/2010 20:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1978,17/08/2017 1:32,19/05/2010 20:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1976,17/08/2017 1:32,19/05/2010 20:00,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1958,17/08/2017 1:32,21/06/2010 19:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1957,17/08/2017 1:32,19/05/2010 12:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1956,17/08/2017 1:32,19/05/2010 12:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1955,17/08/2017 1:32,19/05/2010 12:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1952,17/08/2017 1:32,19/05/2010 12:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1944,17/08/2017 1:32,19/05/2010 12:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1940,17/08/2017 1:32,14/05/2010 20:30,4.3,255, Credentials Management,nan
CVE-2010-1936,17/08/2017 1:32,12/05/2010 16:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1935,17/08/2017 1:32,12/05/2010 16:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1932,17/08/2017 1:32,16/06/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1928,17/08/2017 1:32,12/05/2010 16:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1924,17/08/2017 1:32,12/05/2010 16:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1923,17/08/2017 1:32,12/05/2010 16:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1917,17/08/2017 1:32,12/05/2010 11:46,5.0,399, Resource Management Errors,nan
CVE-2010-1915,17/08/2017 1:32,12/05/2010 11:46,5.0,200, Information Exposure,nan
CVE-2010-1914,17/08/2017 1:32,12/05/2010 11:46,5.0,200, Information Exposure,nan
CVE-2010-1878,17/08/2017 1:32,12/05/2010 11:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1877,17/08/2017 1:32,12/05/2010 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1876,17/08/2017 1:32,12/05/2010 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1875,17/08/2017 1:32,12/05/2010 11:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1874,17/08/2017 1:32,12/05/2010 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1873,17/08/2017 1:32,12/05/2010 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1867,17/08/2017 1:32,7/05/2010 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1865,17/08/2017 1:32,7/05/2010 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1858,17/08/2017 1:32,7/05/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1855,17/08/2017 1:32,7/05/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1775,17/08/2017 1:32,22/06/2010 20:30,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1746,17/08/2017 1:32,6/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1744,17/08/2017 1:32,6/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1743,17/08/2017 1:32,6/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1742,17/08/2017 1:32,6/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1741,17/08/2017 1:32,6/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1740,17/08/2017 1:32,6/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1739,17/08/2017 1:32,6/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1736,17/08/2017 1:32,6/05/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1733,17/08/2017 1:32,6/05/2010 12:47,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1727,17/08/2017 1:32,6/05/2010 14:53,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1726,17/08/2017 1:32,6/05/2010 14:53,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1725,17/08/2017 1:32,6/05/2010 14:53,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1722,17/08/2017 1:32,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1721,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1720,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1719,17/08/2017 1:32,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1716,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1715,17/08/2017 1:32,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1714,17/08/2017 1:32,4/05/2010 16:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1713,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1712,17/08/2017 1:32,4/05/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1711,17/08/2017 1:32,4/05/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1710,17/08/2017 1:32,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1709,17/08/2017 1:32,4/05/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1708,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1706,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1704,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1703,17/08/2017 1:32,4/05/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1702,17/08/2017 1:32,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1693,17/08/2017 1:32,26/10/2010 19:00,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-1688,17/08/2017 1:32,24/05/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1679,17/08/2017 1:32,11/01/2011 3:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1677,17/08/2017 1:32,3/01/2011 20:00,5.0,399, Resource Management Errors,nan
CVE-2010-1669,17/08/2017 1:32,6/07/2010 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1668,17/08/2017 1:32,6/07/2010 17:17,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1667,17/08/2017 1:32,6/07/2010 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1662,17/08/2017 1:32,3/05/2010 13:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1661,17/08/2017 1:32,3/05/2010 13:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1660,17/08/2017 1:32,3/05/2010 13:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1659,17/08/2017 1:32,3/05/2010 13:51,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1658,17/08/2017 1:32,3/05/2010 13:51,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1657,17/08/2017 1:32,3/05/2010 13:51,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1656,17/08/2017 1:32,3/05/2010 13:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1651,17/08/2017 1:32,3/05/2010 13:51,1.9,310, Cryptographic Issues,nan
CVE-2010-1650,17/08/2017 1:32,3/05/2010 13:51,1.9,310, Cryptographic Issues,nan
CVE-2010-1640,17/08/2017 1:32,26/05/2010 18:30,4.3,189, Numeric Errors,nan
CVE-2010-1611,17/08/2017 1:32,29/04/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1607,17/08/2017 1:32,29/04/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1606,17/08/2017 1:32,29/04/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1605,17/08/2017 1:32,29/04/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1604,17/08/2017 1:32,29/04/2010 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1601,17/08/2017 1:32,29/04/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1600,17/08/2017 1:32,29/04/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1599,17/08/2017 1:32,29/04/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1598,17/08/2017 1:32,29/04/2010 16:30,6.8,20, Improper Input Validation,nan
CVE-2010-1597,17/08/2017 1:32,29/04/2010 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1596,17/08/2017 1:32,28/04/2010 23:30,6.8,287, Improper Authentication,nan
CVE-2010-1595,17/08/2017 1:32,28/04/2010 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1594,17/08/2017 1:32,28/04/2010 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1591,17/08/2017 1:32,28/04/2010 23:30,7.2,20, Improper Input Validation,nan
CVE-2010-1589,17/08/2017 1:32,28/04/2010 23:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1588,17/08/2017 1:32,28/04/2010 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1586,17/08/2017 1:32,28/04/2010 22:30,4.3,20, Improper Input Validation,nan
CVE-2010-1584,17/08/2017 1:32,19/05/2010 12:08,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1583,17/08/2017 1:32,6/05/2010 12:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1577,17/08/2017 1:32,28/07/2010 12:48,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1574,17/08/2017 1:32,8/07/2010 18:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1571,17/08/2017 1:32,10/06/2010 0:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1548,17/08/2017 1:32,21/05/2010 20:30,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1547,17/08/2017 1:32,21/05/2010 20:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1546,17/08/2017 1:32,21/05/2010 20:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1543,17/08/2017 1:32,26/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1539,17/08/2017 1:32,26/04/2010 19:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1538,17/08/2017 1:32,26/04/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1537,17/08/2017 1:32,26/04/2010 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1534,17/08/2017 1:32,26/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1531,17/08/2017 1:32,26/04/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1529,17/08/2017 1:32,26/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1528,17/08/2017 1:32,26/04/2010 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1499,17/08/2017 1:32,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1498,17/08/2017 1:32,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1497,17/08/2017 1:32,23/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1496,17/08/2017 1:32,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1494,17/08/2017 1:32,23/04/2010 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1493,17/08/2017 1:32,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1475,17/08/2017 1:32,19/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1474,17/08/2017 1:32,19/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1467,17/08/2017 1:32,16/04/2010 19:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1466,17/08/2017 1:32,16/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1465,17/08/2017 1:32,16/04/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1458,17/08/2017 1:32,20/04/2010 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1448,17/08/2017 1:32,24/06/2010 12:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1446,17/08/2017 1:32,21/05/2010 17:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1428,17/08/2017 1:32,28/04/2010 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1427,17/08/2017 1:32,15/04/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1426,17/08/2017 1:32,15/04/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1407,17/08/2017 1:32,22/06/2010 20:30,4.3,200, Information Exposure,nan
CVE-2010-1372,17/08/2017 1:32,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1368,17/08/2017 1:32,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1363,17/08/2017 1:32,13/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1361,17/08/2017 1:32,13/04/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1360,17/08/2017 1:32,13/04/2010 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1357,17/08/2017 1:32,13/04/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1353,17/08/2017 1:32,12/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1351,17/08/2017 1:32,12/04/2010 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1350,17/08/2017 1:32,12/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1349,17/08/2017 1:32,12/04/2010 18:30,10.0,189, Numeric Errors,nan
CVE-2010-1347,17/08/2017 1:32,12/04/2010 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1346,17/08/2017 1:32,9/04/2010 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1344,17/08/2017 1:32,9/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1343,17/08/2017 1:32,9/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1341,17/08/2017 1:32,9/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1340,17/08/2017 1:32,9/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1338,17/08/2017 1:32,9/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1337,17/08/2017 1:32,9/04/2010 18:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1336,17/08/2017 1:32,9/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1335,17/08/2017 1:32,9/04/2010 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1333,17/08/2017 1:32,9/04/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1332,17/08/2017 1:32,9/04/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1331,17/08/2017 1:32,9/04/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1330,17/08/2017 1:32,23/11/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1328,17/08/2017 1:32,6/07/2010 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1327,17/08/2017 1:32,6/07/2010 17:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1325,17/08/2017 1:32,3/09/2010 20:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1315,17/08/2017 1:32,8/04/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1307,17/08/2017 1:32,8/04/2010 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1306,17/08/2017 1:32,8/04/2010 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1305,17/08/2017 1:32,8/04/2010 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1304,17/08/2017 1:32,8/04/2010 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1303,17/08/2017 1:32,8/04/2010 16:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1301,17/08/2017 1:32,7/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1300,17/08/2017 1:32,7/04/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1296,17/08/2017 1:32,27/05/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1274,17/08/2017 1:32,6/04/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1272,17/08/2017 1:32,6/04/2010 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1271,17/08/2017 1:32,6/04/2010 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1270,17/08/2017 1:32,6/04/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1269,17/08/2017 1:32,6/04/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1268,17/08/2017 1:32,6/04/2010 15:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1266,17/08/2017 1:32,6/04/2010 15:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1244,17/08/2017 1:32,5/04/2010 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1219,17/08/2017 1:32,30/03/2010 23:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1218,17/08/2017 1:32,30/03/2010 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1186,17/08/2017 1:32,7/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1184,17/08/2017 1:32,29/03/2010 22:30,7.6,310, Cryptographic Issues,nan
CVE-2010-1180,17/08/2017 1:32,29/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1174,17/08/2017 1:32,29/03/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-1172,17/08/2017 1:32,20/08/2010 18:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-1171,17/08/2017 1:32,18/04/2011 17:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1165,17/08/2017 1:32,20/04/2010 15:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1164,17/08/2017 1:32,20/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1155,17/08/2017 1:32,16/04/2010 19:30,6.8,20, Improper Input Validation,nan
CVE-2010-1146,17/08/2017 1:32,12/04/2010 18:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1136,17/08/2017 1:32,27/03/2010 19:07,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1135,17/08/2017 1:32,27/03/2010 19:07,7.5,255, Credentials Management,nan
CVE-2010-1134,17/08/2017 1:32,27/03/2010 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1133,17/08/2017 1:32,27/03/2010 19:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1132,17/08/2017 1:32,27/03/2010 19:07,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-1117,17/08/2017 1:32,25/03/2010 21:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1116,17/08/2017 1:32,25/03/2010 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1115,17/08/2017 1:32,25/03/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1114,17/08/2017 1:32,25/03/2010 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1113,17/08/2017 1:32,25/03/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1111,17/08/2017 1:32,25/03/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1110,17/08/2017 1:32,25/03/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1109,17/08/2017 1:32,25/03/2010 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1108,17/08/2017 1:32,25/03/2010 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1107,17/08/2017 1:32,25/03/2010 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1106,17/08/2017 1:32,25/03/2010 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1105,17/08/2017 1:32,25/03/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1104,17/08/2017 1:32,25/03/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1098,17/08/2017 1:32,24/03/2010 22:44,7.1,399, Resource Management Errors,nan
CVE-2010-1094,17/08/2017 1:32,24/03/2010 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1092,17/08/2017 1:32,24/03/2010 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1091,17/08/2017 1:32,24/03/2010 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1090,17/08/2017 1:32,24/03/2010 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1080,17/08/2017 1:32,23/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1077,17/08/2017 1:32,23/03/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1074,17/08/2017 1:32,23/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1073,17/08/2017 1:32,23/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1072,17/08/2017 1:32,23/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1071,17/08/2017 1:32,23/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1070,17/08/2017 1:32,23/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1068,17/08/2017 1:32,23/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1067,17/08/2017 1:32,23/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1066,17/08/2017 1:32,23/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1065,17/08/2017 1:32,23/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1064,17/08/2017 1:32,23/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1058,17/08/2017 1:32,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1057,17/08/2017 1:32,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1056,17/08/2017 1:32,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1055,17/08/2017 1:32,23/03/2010 17:30,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1053,17/08/2017 1:32,23/03/2010 1:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1047,17/08/2017 1:32,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1044,17/08/2017 1:32,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1033,17/08/2017 1:32,21/04/2010 14:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1027,17/08/2017 1:32,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1026,17/08/2017 1:32,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1025,17/08/2017 1:32,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1024,17/08/2017 1:32,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0985,17/08/2017 1:32,16/03/2010 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0984,17/08/2017 1:32,16/03/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0983,17/08/2017 1:32,16/03/2010 19:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0981,17/08/2017 1:32,16/03/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0980,17/08/2017 1:32,16/03/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0978,17/08/2017 1:32,16/03/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0976,17/08/2017 1:32,16/03/2010 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0975,17/08/2017 1:32,16/03/2010 19:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0974,17/08/2017 1:32,16/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0973,17/08/2017 1:32,16/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0972,17/08/2017 1:32,16/03/2010 19:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0971,17/08/2017 1:32,16/03/2010 19:00,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0970,17/08/2017 1:32,16/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0967,17/08/2017 1:32,16/03/2010 19:00,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0965,17/08/2017 1:32,16/03/2010 19:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0964,17/08/2017 1:32,16/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0957,17/08/2017 1:32,10/03/2010 20:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0955,17/08/2017 1:32,10/03/2010 20:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0954,17/08/2017 1:32,10/03/2010 20:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0953,17/08/2017 1:32,10/03/2010 20:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0952,17/08/2017 1:32,10/03/2010 20:14,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0951,17/08/2017 1:32,10/03/2010 20:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0948,17/08/2017 1:32,10/03/2010 20:14,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0946,17/08/2017 1:32,8/03/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0945,17/08/2017 1:32,8/03/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0944,17/08/2017 1:32,8/03/2010 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0943,17/08/2017 1:32,8/03/2010 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0942,17/08/2017 1:32,8/03/2010 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0941,17/08/2017 1:32,8/03/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0940,17/08/2017 1:32,8/03/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0939,17/08/2017 1:32,8/03/2010 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0938,17/08/2017 1:32,8/03/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0936,17/08/2017 1:32,8/03/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0928,17/08/2017 1:32,5/03/2010 19:30,4.0,310, Cryptographic Issues,nan
CVE-2010-0921,17/08/2017 1:32,3/03/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0919,17/08/2017 1:32,3/03/2010 19:30,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0832,17/08/2017 1:32,12/07/2010 16:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0830,17/08/2017 1:32,1/06/2010 20:30,5.1,189, Numeric Errors,nan
CVE-2010-0828,17/08/2017 1:32,5/04/2010 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0825,17/08/2017 1:32,5/04/2010 15:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-0803,17/08/2017 1:32,2/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0800,17/08/2017 1:32,2/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0796,17/08/2017 1:32,2/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0795,17/08/2017 1:32,2/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0789,17/08/2017 1:32,2/03/2010 18:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0787,17/08/2017 1:32,2/03/2010 18:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0786,17/08/2017 1:32,9/11/2010 21:00,5.0,20, Improper Input Validation,nan
CVE-2010-0785,17/08/2017 1:32,9/11/2010 21:00,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0784,17/08/2017 1:32,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0783,17/08/2017 1:32,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0780,17/08/2017 1:32,29/10/2011 10:55,4.3,399, Resource Management Errors,nan
CVE-2010-0779,17/08/2017 1:32,24/06/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0778,17/08/2017 1:32,24/06/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0777,17/08/2017 1:32,17/05/2010 22:30,2.6,20, Improper Input Validation,nan
CVE-2010-0776,17/08/2017 1:32,17/05/2010 22:30,5.0,20, Improper Input Validation,nan
CVE-2010-0774,17/08/2017 1:32,17/05/2010 22:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-0770,17/08/2017 1:32,1/04/2010 19:30,4.0,399, Resource Management Errors,nan
CVE-2010-0769,17/08/2017 1:32,1/04/2010 19:30,1.9,255, Credentials Management,nan
CVE-2010-0768,17/08/2017 1:32,1/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0765,17/08/2017 1:32,2/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0764,17/08/2017 1:32,2/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0762,17/08/2017 1:32,2/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0761,17/08/2017 1:32,2/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0759,17/08/2017 1:32,27/02/2010 0:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0758,17/08/2017 1:32,27/02/2010 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0756,17/08/2017 1:32,27/02/2010 0:30,5.8,287, Improper Authentication,nan
CVE-2010-0755,17/08/2017 1:32,27/02/2010 0:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0753,17/08/2017 1:32,27/02/2010 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0752,17/08/2017 1:32,27/02/2010 0:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0750,17/08/2017 1:32,6/04/2010 16:30,2.1,200, Information Exposure,nan
CVE-2010-0738,17/08/2017 1:32,28/04/2010 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0723,17/08/2017 1:32,26/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0722,17/08/2017 1:32,26/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0721,17/08/2017 1:32,26/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0720,17/08/2017 1:32,26/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0719,17/08/2017 1:32,26/02/2010 19:30,4.7,20, Improper Input Validation,nan
CVE-2010-0718,17/08/2017 1:32,26/02/2010 19:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0717,17/08/2017 1:32,26/02/2010 19:30,7.5,16, Configuration,nan
CVE-2010-0712,17/08/2017 1:32,26/02/2010 17:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0709,17/08/2017 1:32,25/02/2010 20:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0707,17/08/2017 1:32,25/02/2010 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0706,17/08/2017 1:32,25/02/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0702,17/08/2017 1:32,23/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0701,17/08/2017 1:32,23/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0700,17/08/2017 1:32,23/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0698,17/08/2017 1:32,23/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0697,17/08/2017 1:32,23/02/2010 20:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0694,17/08/2017 1:32,23/02/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0693,17/08/2017 1:32,23/02/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0690,17/08/2017 1:32,23/02/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0688,17/08/2017 1:32,19/03/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0674,17/08/2017 1:32,22/02/2010 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0672,17/08/2017 1:32,22/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0670,17/08/2017 1:32,22/02/2010 19:30,5.0,200, Information Exposure,nan
CVE-2010-0665,17/08/2017 1:32,19/02/2010 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0642,17/08/2017 1:32,17/02/2010 18:30,5.0,200, Information Exposure,nan
CVE-2010-0641,17/08/2017 1:32,17/02/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0632,17/08/2017 1:32,12/02/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0630,17/08/2017 1:32,12/02/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0617,17/08/2017 1:32,11/02/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0611,17/08/2017 1:32,11/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0610,17/08/2017 1:32,11/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0595,17/08/2017 1:32,27/05/2010 19:30,10.0,255, Credentials Management,nan
CVE-2010-0593,17/08/2017 1:32,22/04/2010 14:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0589,17/08/2017 1:32,15/04/2010 17:30,9.3,20, Improper Input Validation,nan
CVE-2010-0583,17/08/2017 1:32,25/03/2010 21:00,7.8,399, Resource Management Errors,nan
CVE-2010-0578,17/08/2017 1:32,25/03/2010 21:00,7.8,310, Cryptographic Issues,nan
CVE-2010-0577,17/08/2017 1:32,25/03/2010 21:00,7.1,399, Resource Management Errors,nan
CVE-2010-0572,17/08/2017 1:32,5/03/2010 19:30,7.1,200, Information Exposure,nan
CVE-2010-0570,17/08/2017 1:32,5/03/2010 19:30,10.0,255, Credentials Management,nan
CVE-2010-0564,17/08/2017 1:32,10/02/2010 2:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0558,17/08/2017 1:32,5/02/2010 22:30,7.5,16, Configuration,nan
CVE-2010-0496,17/08/2017 1:32,3/02/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-0475,17/08/2017 1:32,14/05/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0469,17/08/2017 1:32,2/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0463,17/08/2017 1:32,29/01/2010 18:30,5.0,200, Information Exposure,nan
CVE-2010-0461,17/08/2017 1:32,28/01/2010 20:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0459,17/08/2017 1:32,28/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0458,17/08/2017 1:32,28/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0457,17/08/2017 1:32,28/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0456,17/08/2017 1:32,28/01/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0455,17/08/2017 1:32,28/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0396,17/08/2017 1:31,15/03/2010 13:28,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0394,17/08/2017 1:31,10/02/2010 2:30,6.8,20, Improper Input Validation,nan
CVE-2010-0388,17/08/2017 1:31,25/01/2010 19:30,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2010-0387,17/08/2017 1:31,25/01/2010 19:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0376,17/08/2017 1:31,21/01/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0375,17/08/2017 1:31,21/01/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0374,17/08/2017 1:31,21/01/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0373,17/08/2017 1:31,21/01/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0372,17/08/2017 1:31,21/01/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0371,17/08/2017 1:31,21/01/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0367,17/08/2017 1:31,21/01/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0366,17/08/2017 1:31,21/01/2010 20:30,6.8,20, Improper Input Validation,nan
CVE-2010-0365,17/08/2017 1:31,21/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0357,17/08/2017 1:31,20/01/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0356,17/08/2017 1:31,18/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0321,17/08/2017 1:31,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0320,17/08/2017 1:31,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0319,17/08/2017 1:31,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0305,17/08/2017 1:31,3/02/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-0303,17/08/2017 1:31,4/02/2010 20:15,5.0,20, Improper Input Validation,nan
CVE-2010-0301,17/08/2017 1:31,4/02/2010 20:15,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0295,17/08/2017 1:31,3/02/2010 19:30,5.0,399, Resource Management Errors,nan
CVE-2010-0284,17/08/2017 1:31,18/06/2010 16:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0272,17/08/2017 1:31,8/01/2010 17:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0271,17/08/2017 1:31,8/01/2010 17:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0216,17/08/2017 1:31,10/05/2011 19:55,5.0,310, Cryptographic Issues,nan
CVE-2010-0214,17/08/2017 1:31,12/01/2011 1:00,5.0,200, Information Exposure,nan
CVE-2010-0205,17/08/2017 1:31,3/03/2010 19:30,7.8,399, Resource Management Errors,nan
CVE-2010-0185,17/08/2017 1:31,3/02/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0147,17/08/2017 1:31,23/02/2010 20:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0146,17/08/2017 1:31,23/02/2010 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0138,17/08/2017 1:31,21/01/2010 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0115,17/08/2017 1:31,14/01/2011 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0113,17/08/2017 1:31,15/11/2010 21:00,4.3,255, Credentials Management,nan
CVE-2010-0112,17/08/2017 1:31,28/10/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0111,17/08/2017 1:31,31/01/2011 21:00,9.3,20, Improper Input Validation,nan
CVE-2010-0110,17/08/2017 1:31,31/01/2011 21:00,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0037,17/08/2017 1:31,20/01/2010 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0036,17/08/2017 1:31,20/01/2010 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0012,17/08/2017 1:31,8/01/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0011,17/08/2017 1:31,25/02/2010 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-5051,17/08/2017 1:31,18/01/2011 18:03,5.0,16, Configuration,nan
CVE-2009-5040,17/08/2017 1:31,7/01/2011 19:00,6.8,399, Resource Management Errors,nan
CVE-2009-5039,17/08/2017 1:31,7/01/2011 19:00,7.8,399, Resource Management Errors,nan
CVE-2009-5038,17/08/2017 1:31,7/01/2011 19:00,7.8,399, Resource Management Errors,nan
CVE-2009-5037,17/08/2017 1:31,7/01/2011 12:00,5.0,399, Resource Management Errors,nan
CVE-2009-5034,17/08/2017 1:31,16/12/2010 20:00,4.0,399, Resource Management Errors,nan
CVE-2009-5033,17/08/2017 1:31,16/12/2010 20:00,4.0,200, Information Exposure,nan
CVE-2009-5032,17/08/2017 1:31,16/12/2010 20:00,5.8,310, Cryptographic Issues,nan
CVE-2009-5022,17/08/2017 1:31,3/05/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5021,17/08/2017 1:31,9/12/2010 20:00,7.5,255, Credentials Management,nan
CVE-2009-5019,17/08/2017 1:31,1/12/2010 16:06,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-5018,17/08/2017 1:31,14/01/2011 17:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5003,17/08/2017 1:31,22/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4976,17/08/2017 1:31,2/08/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4975,17/08/2017 1:31,2/08/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4946,17/08/2017 1:31,22/07/2010 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4944,17/08/2017 1:31,22/07/2010 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4942,17/08/2017 1:31,22/07/2010 5:40,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4941,17/08/2017 1:31,22/07/2010 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4909,17/08/2017 1:31,25/06/2010 19:30,6.8,287, Improper Authentication,nan
CVE-2009-4908,17/08/2017 1:31,25/06/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4907,17/08/2017 1:31,25/06/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4904,17/08/2017 1:31,25/06/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4903,17/08/2017 1:31,25/06/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4897,17/08/2017 1:31,22/07/2010 5:40,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4888,17/08/2017 1:31,11/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4881,17/08/2017 1:31,1/06/2010 20:30,5.0,189, Numeric Errors,nan
CVE-2009-4880,17/08/2017 1:31,1/06/2010 20:30,5.0,189, Numeric Errors,nan
CVE-2009-4877,17/08/2017 1:31,26/05/2010 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4875,17/08/2017 1:31,26/05/2010 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-4866,17/08/2017 1:31,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4865,17/08/2017 1:31,11/05/2010 12:02,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4864,17/08/2017 1:31,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4857,17/08/2017 1:31,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4856,17/08/2017 1:31,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4853,17/08/2017 1:31,7/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4850,17/08/2017 1:31,7/05/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4847,17/08/2017 1:31,7/05/2010 18:30,4.0,20, Improper Input Validation,nan
CVE-2009-4846,17/08/2017 1:31,7/05/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4833,17/08/2017 1:31,29/04/2010 19:30,5.8,20, Improper Input Validation,nan
CVE-2009-4825,17/08/2017 1:31,27/04/2010 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4822,17/08/2017 1:31,27/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4820,17/08/2017 1:31,27/04/2010 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4816,17/08/2017 1:31,27/04/2010 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4815,17/08/2017 1:31,27/04/2010 15:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4814,17/08/2017 1:31,27/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4795,17/08/2017 1:31,22/04/2010 14:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4779,17/08/2017 1:31,21/04/2010 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4773,17/08/2017 1:31,20/04/2010 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4771,17/08/2017 1:31,20/04/2010 14:30,5.0,20, Improper Input Validation,nan
CVE-2009-4768,17/08/2017 1:31,20/04/2010 14:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4767,17/08/2017 1:31,20/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4752,17/08/2017 1:31,26/03/2010 20:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4751,17/08/2017 1:31,26/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4750,17/08/2017 1:31,26/03/2010 20:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4744,17/08/2017 1:31,26/03/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4743,17/08/2017 1:31,26/03/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4737,17/08/2017 1:31,6/04/2010 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4736,17/08/2017 1:31,23/03/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4731,17/08/2017 1:31,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4716,17/08/2017 1:31,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4715,17/08/2017 1:31,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4694,17/08/2017 1:31,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4690,17/08/2017 1:31,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4686,17/08/2017 1:31,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4685,17/08/2017 1:31,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4684,17/08/2017 1:31,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4678,17/08/2017 1:31,8/03/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4664,17/08/2017 1:31,3/03/2010 20:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4662,17/08/2017 1:31,3/03/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4655,17/08/2017 1:31,26/02/2010 18:30,7.5,310, Cryptographic Issues,nan
CVE-2009-4649,17/08/2017 1:31,22/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4648,17/08/2017 1:31,19/02/2010 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4647,17/08/2017 1:31,19/02/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4645,17/08/2017 1:31,19/02/2010 17:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4644,17/08/2017 1:31,19/02/2010 17:30,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-4604,17/08/2017 1:31,12/01/2010 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4600,17/08/2017 1:31,12/01/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4599,17/08/2017 1:31,12/01/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4598,17/08/2017 1:31,12/01/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4597,17/08/2017 1:31,12/01/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4596,17/08/2017 1:31,12/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4591,17/08/2017 1:31,7/01/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4590,17/08/2017 1:31,7/01/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4589,17/08/2017 1:31,7/01/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4585,17/08/2017 1:31,6/01/2010 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4583,17/08/2017 1:31,6/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4582,17/08/2017 1:31,6/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4581,17/08/2017 1:31,6/01/2010 22:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4580,17/08/2017 1:31,6/01/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4579,17/08/2017 1:31,6/01/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4578,17/08/2017 1:31,6/01/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4577,17/08/2017 1:31,6/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4576,17/08/2017 1:31,6/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4575,17/08/2017 1:31,6/01/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4574,17/08/2017 1:31,6/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4573,17/08/2017 1:31,6/01/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4569,17/08/2017 1:31,5/01/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4567,17/08/2017 1:31,5/01/2010 19:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4566,17/08/2017 1:31,4/01/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4559,17/08/2017 1:31,4/01/2010 21:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4558,17/08/2017 1:31,4/01/2010 21:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4557,17/08/2017 1:31,4/01/2010 21:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4555,17/08/2017 1:31,4/01/2010 21:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4548,17/08/2017 1:31,4/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4547,17/08/2017 1:31,4/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4533,17/08/2017 1:31,31/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-4532,17/08/2017 1:31,31/12/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4531,17/08/2017 1:31,31/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-4529,17/08/2017 1:31,31/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-4528,17/08/2017 1:31,31/12/2009 19:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4527,17/08/2017 1:31,31/12/2009 19:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-4525,17/08/2017 1:31,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4524,17/08/2017 1:31,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4523,17/08/2017 1:31,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4522,17/08/2017 1:31,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4513,17/08/2017 1:31,31/12/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4512,17/08/2017 1:31,31/12/2009 19:30,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4486,17/08/2017 1:31,8/01/2010 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4473,17/08/2017 1:31,30/12/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4469,17/08/2017 1:31,30/12/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4468,17/08/2017 1:31,30/12/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4467,17/08/2017 1:31,30/12/2009 20:00,4.0,20, Improper Input Validation,nan
CVE-2009-4466,17/08/2017 1:31,30/12/2009 20:00,5.0,200, Information Exposure,nan
CVE-2009-4465,17/08/2017 1:31,30/12/2009 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4464,17/08/2017 1:31,30/12/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4459,17/08/2017 1:31,30/12/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4458,17/08/2017 1:31,30/12/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4447,17/08/2017 1:31,29/12/2009 20:41,7.5,287, Improper Authentication,nan
CVE-2009-4446,17/08/2017 1:31,29/12/2009 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4445,17/08/2017 1:31,29/12/2009 21:00,6.0,20, Improper Input Validation,nan
CVE-2009-4437,17/08/2017 1:31,28/12/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4436,17/08/2017 1:31,28/12/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4435,17/08/2017 1:31,28/12/2009 19:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4433,17/08/2017 1:31,28/12/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4429,17/08/2017 1:31,28/12/2009 19:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4428,17/08/2017 1:31,28/12/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4426,17/08/2017 1:31,28/12/2009 19:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4425,17/08/2017 1:31,28/12/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4424,17/08/2017 1:31,28/12/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4423,17/08/2017 1:31,24/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4419,17/08/2017 1:31,24/12/2009 17:30,7.2,16, Configuration,nan
CVE-2009-4416,17/08/2017 1:31,24/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4415,17/08/2017 1:31,24/12/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4414,17/08/2017 1:31,24/12/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4411,17/08/2017 1:31,24/12/2009 16:30,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2009-4381,17/08/2017 1:31,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4372,17/08/2017 1:31,21/12/2009 16:30,7.5,20, Improper Input Validation,nan
CVE-2009-4371,17/08/2017 1:31,21/12/2009 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4370,17/08/2017 1:31,21/12/2009 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4369,17/08/2017 1:31,21/12/2009 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4366,17/08/2017 1:31,21/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4365,17/08/2017 1:31,21/12/2009 16:30,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4364,17/08/2017 1:31,21/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4360,17/08/2017 1:31,20/12/2009 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4359,17/08/2017 1:31,20/12/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4354,17/08/2017 1:31,17/12/2009 18:30,5.8,255, Credentials Management,nan
CVE-2009-4352,17/08/2017 1:31,17/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4349,17/08/2017 1:31,17/12/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4345,17/08/2017 1:31,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4344,17/08/2017 1:31,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4343,17/08/2017 1:31,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4342,17/08/2017 1:31,17/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4341,17/08/2017 1:31,17/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4340,17/08/2017 1:31,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4339,17/08/2017 1:31,17/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4338,17/08/2017 1:31,17/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4337,17/08/2017 1:31,17/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4336,17/08/2017 1:31,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4320,17/08/2017 1:31,14/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4315,17/08/2017 1:31,14/12/2009 21:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4293,17/08/2017 1:31,10/12/2009 23:30,7.1,16, Configuration,nan
CVE-2009-4292,17/08/2017 1:31,10/12/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4274,17/08/2017 1:31,12/02/2010 21:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4266,17/08/2017 1:31,10/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4263,17/08/2017 1:31,10/12/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4262,17/08/2017 1:31,10/12/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4256,17/08/2017 1:31,10/12/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4255,17/08/2017 1:31,10/12/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4254,17/08/2017 1:31,10/12/2009 1:30,5.0,200, Information Exposure,nan
CVE-2009-4253,17/08/2017 1:31,10/12/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4251,17/08/2017 1:31,10/12/2009 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4243,17/08/2017 1:31,25/01/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4240,17/08/2017 1:31,9/12/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4239,17/08/2017 1:31,9/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4236,17/08/2017 1:31,8/12/2009 23:30,5.0,200, Information Exposure,nan
CVE-2009-4235,17/08/2017 1:31,8/12/2009 19:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-4229,17/08/2017 1:31,8/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4227,17/08/2017 1:31,8/12/2009 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4226,17/08/2017 1:31,8/12/2009 18:30,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-4225,17/08/2017 1:31,8/12/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4224,17/08/2017 1:31,7/12/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2009-4223,17/08/2017 1:31,7/12/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4221,17/08/2017 1:31,7/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4220,17/08/2017 1:31,7/12/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4218,17/08/2017 1:31,7/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4216,17/08/2017 1:31,7/12/2009 17:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4201,17/08/2017 1:31,4/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4196,17/08/2017 1:31,4/12/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4194,17/08/2017 1:31,3/12/2009 19:30,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4193,17/08/2017 1:31,3/12/2009 19:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4186,17/08/2017 1:31,3/12/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4151,17/08/2017 1:31,2/12/2009 16:30,5.8,287, Improper Authentication,nan
CVE-2009-4139,17/08/2017 1:31,27/07/2011 2:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4135,17/08/2017 1:31,11/12/2009 16:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4129,17/08/2017 1:31,14/12/2009 17:30,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-4128,17/08/2017 1:31,1/12/2009 16:30,7.2,287, Improper Authentication,nan
CVE-2009-4124,17/08/2017 1:31,11/12/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4121,17/08/2017 1:31,1/12/2009 2:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4120,17/08/2017 1:31,1/12/2009 2:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4119,17/08/2017 1:31,1/12/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4117,17/08/2017 1:31,1/12/2009 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4110,17/08/2017 1:31,29/11/2009 13:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4102,17/08/2017 1:31,29/11/2009 13:08,9.3,20, Improper Input Validation,nan
CVE-2009-4101,17/08/2017 1:31,29/11/2009 13:08,9.3,20, Improper Input Validation,nan
CVE-2009-4100,17/08/2017 1:31,29/11/2009 13:08,9.3,20, Improper Input Validation,nan
CVE-2009-4099,17/08/2017 1:31,29/11/2009 13:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4097,17/08/2017 1:31,29/11/2009 13:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4095,17/08/2017 1:31,29/11/2009 13:07,7.5,287, Improper Authentication,nan
CVE-2009-4094,17/08/2017 1:31,29/11/2009 13:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4093,17/08/2017 1:31,29/11/2009 13:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4092,17/08/2017 1:31,29/11/2009 13:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4091,17/08/2017 1:31,29/11/2009 13:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4090,17/08/2017 1:31,29/11/2009 13:07,7.5,20, Improper Input Validation,nan
CVE-2009-4089,17/08/2017 1:31,29/11/2009 13:07,5.0,287, Improper Authentication,nan
CVE-2009-4088,17/08/2017 1:31,29/11/2009 13:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4087,17/08/2017 1:31,29/11/2009 13:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4086,17/08/2017 1:31,29/11/2009 13:07,5.0,20, Improper Input Validation,nan
CVE-2009-4085,17/08/2017 1:31,29/11/2009 13:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4082,17/08/2017 1:31,29/11/2009 13:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4079,17/08/2017 1:31,25/11/2009 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4078,17/08/2017 1:31,25/11/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4066,17/08/2017 1:31,24/11/2009 2:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4065,17/08/2017 1:31,24/11/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4064,17/08/2017 1:31,24/11/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4063,17/08/2017 1:31,24/11/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4062,17/08/2017 1:31,24/11/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4061,17/08/2017 1:31,24/11/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4060,17/08/2017 1:31,24/11/2009 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4059,17/08/2017 1:31,24/11/2009 2:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4058,17/08/2017 1:31,24/11/2009 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4057,17/08/2017 1:31,24/11/2009 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4052,17/08/2017 1:31,23/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4044,17/08/2017 1:31,20/11/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4043,17/08/2017 1:31,20/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4042,17/08/2017 1:31,20/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4025,17/08/2017 1:31,29/11/2009 13:07,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-4024,17/08/2017 1:31,29/11/2009 13:07,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4023,17/08/2017 1:31,29/11/2009 13:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4004,17/08/2017 1:31,20/11/2009 2:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3977,17/08/2017 1:31,19/11/2009 0:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3946,17/08/2017 1:31,16/11/2009 20:30,5.0,200, Information Exposure,nan
CVE-2009-3938,17/08/2017 1:31,13/11/2009 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3936,17/08/2017 1:31,13/11/2009 16:30,5.8,310, Cryptographic Issues,nan
CVE-2009-3933,17/08/2017 1:31,12/11/2009 17:54,5.0,399, Resource Management Errors,nan
CVE-2009-3931,17/08/2017 1:31,12/11/2009 17:54,9.3,20, Improper Input Validation,nan
CVE-2009-3924,17/08/2017 1:31,10/11/2009 2:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3923,17/08/2017 1:31,10/11/2009 0:30,7.5,287, Improper Authentication,nan
CVE-2009-3922,17/08/2017 1:31,9/11/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3920,17/08/2017 1:31,9/11/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3919,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3918,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3917,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3916,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3915,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3914,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3911,17/08/2017 1:31,9/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3903,17/08/2017 1:31,6/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3902,17/08/2017 1:31,6/11/2009 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3897,17/08/2017 1:31,24/11/2009 17:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3895,17/08/2017 1:31,20/11/2009 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3878,17/08/2017 1:31,5/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3858,17/08/2017 1:31,4/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3843,17/08/2017 1:31,24/11/2009 0:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3835,17/08/2017 1:31,2/11/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3834,17/08/2017 1:31,2/11/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3803,17/08/2017 1:31,27/10/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3802,17/08/2017 1:31,27/10/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2009-3790,17/08/2017 1:31,26/10/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3789,17/08/2017 1:31,26/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3788,17/08/2017 1:31,26/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3786,17/08/2017 1:31,26/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3785,17/08/2017 1:31,26/10/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3783,17/08/2017 1:31,26/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3782,17/08/2017 1:31,26/10/2009 17:30,3.5,200, Information Exposure,nan
CVE-2009-3781,17/08/2017 1:31,26/10/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3780,17/08/2017 1:31,26/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3779,17/08/2017 1:31,26/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3778,17/08/2017 1:31,26/10/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3747,17/08/2017 1:31,22/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3745,17/08/2017 1:31,22/10/2009 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3699,17/08/2017 1:31,15/10/2009 10:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3697,17/08/2017 1:31,16/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3696,17/08/2017 1:31,16/10/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3694,17/08/2017 1:31,13/10/2009 10:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3691,17/08/2017 1:31,13/10/2009 10:30,9.3,189, Numeric Errors,nan
CVE-2009-3657,17/08/2017 1:31,9/10/2009 14:30,5.8,287, Improper Authentication,nan
CVE-2009-3656,17/08/2017 1:31,9/10/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3653,17/08/2017 1:31,9/10/2009 14:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3652,17/08/2017 1:31,9/10/2009 14:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3651,17/08/2017 1:31,9/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3650,17/08/2017 1:31,9/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3648,17/08/2017 1:31,9/10/2009 14:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3647,17/08/2017 1:31,9/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3640,17/08/2017 1:31,29/10/2009 14:30,4.9,20, Improper Input Validation,nan
CVE-2009-3639,17/08/2017 1:31,28/10/2009 14:30,5.8,310, Cryptographic Issues,nan
CVE-2009-3638,17/08/2017 1:31,29/10/2009 14:30,7.2,189, Numeric Errors,nan
CVE-2009-3636,17/08/2017 1:31,2/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3635,17/08/2017 1:31,2/11/2009 15:30,6.8,287, Improper Authentication,nan
CVE-2009-3634,17/08/2017 1:31,2/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3633,17/08/2017 1:31,2/11/2009 15:30,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3632,17/08/2017 1:31,2/11/2009 15:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3631,17/08/2017 1:31,2/11/2009 15:30,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3629,17/08/2017 1:31,2/11/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3628,17/08/2017 1:31,2/11/2009 15:30,4.0,200, Information Exposure,nan
CVE-2009-3627,17/08/2017 1:31,29/10/2009 14:30,4.3,20, Improper Input Validation,nan
CVE-2009-3607,17/08/2017 1:31,21/10/2009 17:30,9.3,189, Numeric Errors,nan
CVE-2009-3602,17/08/2017 1:31,13/10/2009 10:30,7.5,310, Cryptographic Issues,nan
CVE-2009-3601,17/08/2017 1:31,8/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3600,17/08/2017 1:31,8/10/2009 17:30,5.0,200, Information Exposure,nan
CVE-2009-3599,17/08/2017 1:31,8/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3598,17/08/2017 1:31,8/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3594,17/08/2017 1:31,8/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3593,17/08/2017 1:31,8/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3592,17/08/2017 1:31,8/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3585,17/08/2017 1:31,2/12/2009 16:30,5.8,287, Improper Authentication,nan
CVE-2009-3567,17/08/2017 1:31,6/10/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3554,17/08/2017 1:31,15/12/2009 18:30,2.1,200, Information Exposure,nan
CVE-2009-3542,17/08/2017 1:31,2/10/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3533,17/08/2017 1:31,2/10/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3513,17/08/2017 1:31,1/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3512,17/08/2017 1:31,1/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3509,17/08/2017 1:31,1/10/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3505,17/08/2017 1:31,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3501,17/08/2017 1:31,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3493,17/08/2017 1:31,30/09/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3488,17/08/2017 1:31,30/09/2009 15:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3484,17/08/2017 1:31,30/09/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3483,17/08/2017 1:31,30/09/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3480,17/08/2017 1:31,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3477,17/08/2017 1:31,29/09/2009 23:30,6.8,310, Cryptographic Issues,nan
CVE-2009-3476,17/08/2017 1:31,29/09/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3474,17/08/2017 1:31,29/09/2009 23:30,7.5,310, Cryptographic Issues,nan
CVE-2009-3469,17/08/2017 1:31,29/09/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3453,17/08/2017 1:31,29/09/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3448,17/08/2017 1:31,29/09/2009 15:30,5.0,20, Improper Input Validation,nan
CVE-2009-3442,17/08/2017 1:31,28/09/2009 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3438,17/08/2017 1:31,28/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3436,17/08/2017 1:31,28/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3435,17/08/2017 1:31,28/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3434,17/08/2017 1:31,28/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3386,17/08/2017 1:31,20/11/2009 17:30,5.0,200, Information Exposure,nan
CVE-2009-3363,17/08/2017 1:31,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3360,17/08/2017 1:31,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3359,17/08/2017 1:31,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3355,17/08/2017 1:31,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3320,17/08/2017 1:31,23/09/2009 12:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3311,17/08/2017 1:31,23/09/2009 12:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3300,17/08/2017 1:31,6/11/2009 15:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3259,17/08/2017 1:31,18/09/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3255,17/08/2017 1:31,18/09/2009 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3222,17/08/2017 1:31,16/09/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3221,17/08/2017 1:31,16/09/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3213,17/08/2017 1:31,16/09/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3212,17/08/2017 1:31,16/09/2009 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3211,17/08/2017 1:31,16/09/2009 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3210,17/08/2017 1:31,16/09/2009 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3209,17/08/2017 1:31,16/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3208,17/08/2017 1:31,16/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3207,17/08/2017 1:31,16/09/2009 17:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3206,17/08/2017 1:31,16/09/2009 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3205,17/08/2017 1:31,16/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3204,17/08/2017 1:31,16/09/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3203,17/08/2017 1:31,16/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3202,17/08/2017 1:31,16/09/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3156,17/08/2017 1:31,10/09/2009 18:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3153,17/08/2017 1:31,10/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3152,17/08/2017 1:31,10/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3146,17/08/2017 1:31,10/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3123,17/08/2017 1:31,9/09/2009 22:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3122,17/08/2017 1:31,9/09/2009 22:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-3121,17/08/2017 1:31,9/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3106,17/08/2017 1:31,8/09/2009 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3105,17/08/2017 1:31,8/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3104,17/08/2017 1:31,8/09/2009 22:30,4.3,399, Resource Management Errors,nan
CVE-2009-3102,17/08/2017 1:31,8/09/2009 18:30,10.0,20, Improper Input Validation,nan
CVE-2009-3081,17/08/2017 1:31,4/09/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3041,17/08/2017 1:31,1/09/2009 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3035,17/08/2017 1:31,2/02/2010 16:30,4.3,255, Credentials Management,nan
CVE-2009-3033,17/08/2017 1:31,25/11/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3030,17/08/2017 1:31,15/10/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3022,17/08/2017 1:31,31/08/2009 20:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3015,17/08/2017 1:31,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3011,17/08/2017 1:31,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3010,17/08/2017 1:31,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2978,17/08/2017 1:30,27/08/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2973,17/08/2017 1:30,27/08/2009 17:30,6.4,310, Cryptographic Issues,nan
CVE-2009-2967,17/08/2017 1:30,26/08/2009 14:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2966,17/08/2017 1:30,25/08/2009 17:30,4.3,399, Resource Management Errors,nan
CVE-2009-2956,17/08/2017 1:30,24/08/2009 15:30,5.0,200, Information Exposure,nan
CVE-2009-2951,17/08/2017 1:30,24/08/2009 15:30,7.5,310, Cryptographic Issues,nan
CVE-2009-2935,17/08/2017 1:30,27/08/2009 17:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2919,17/08/2017 1:30,21/08/2009 11:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2916,17/08/2017 1:30,21/08/2009 11:30,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2009-2894,17/08/2017 1:30,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2891,17/08/2017 1:30,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2890,17/08/2017 1:30,20/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2889,17/08/2017 1:30,20/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2888,17/08/2017 1:30,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2887,17/08/2017 1:30,20/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2886,17/08/2017 1:30,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2885,17/08/2017 1:30,20/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2884,17/08/2017 1:30,20/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2880,17/08/2017 1:30,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2879,17/08/2017 1:30,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2878,17/08/2017 1:30,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2877,17/08/2017 1:30,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2876,17/08/2017 1:30,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2875,17/08/2017 1:30,18/12/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2865,17/08/2017 1:30,28/09/2009 19:30,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2863,17/08/2017 1:30,28/09/2009 19:30,7.1,287, Improper Authentication,nan
CVE-2009-2846,17/08/2017 1:30,18/08/2009 21:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-2822,17/08/2017 1:30,5/04/2010 16:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-2814,17/08/2017 1:30,14/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2811,17/08/2017 1:30,14/09/2009 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2809,17/08/2017 1:30,14/09/2009 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2807,17/08/2017 1:30,14/09/2009 16:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2805,17/08/2017 1:30,14/09/2009 16:30,6.8,189, Numeric Errors,nan
CVE-2009-2804,17/08/2017 1:30,14/09/2009 16:30,6.8,189, Numeric Errors,nan
CVE-2009-2803,17/08/2017 1:30,14/09/2009 16:30,6.8,399, Resource Management Errors,nan
CVE-2009-2800,17/08/2017 1:30,11/09/2009 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2796,17/08/2017 1:30,10/09/2009 21:30,2.1,200, Information Exposure,nan
CVE-2009-2794,17/08/2017 1:30,10/09/2009 21:30,4.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2790,17/08/2017 1:30,17/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2789,17/08/2017 1:30,17/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2785,17/08/2017 1:30,17/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2780,17/08/2017 1:30,17/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2772,17/08/2017 1:30,14/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2768,17/08/2017 1:30,14/08/2009 15:16,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2767,17/08/2017 1:30,14/08/2009 15:16,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2752,17/08/2017 1:30,5/02/2010 22:30,1.5,310, Cryptographic Issues,nan
CVE-2009-2751,17/08/2017 1:30,5/02/2010 22:30,4.3,310, Cryptographic Issues,nan
CVE-2009-2750,17/08/2017 1:30,4/02/2010 20:15,5.5,16, Configuration,nan
CVE-2009-2749,17/08/2017 1:30,8/12/2009 17:30,6.4,310, Cryptographic Issues,nan
CVE-2009-2748,17/08/2017 1:30,30/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2747,17/08/2017 1:30,30/10/2011 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2746,17/08/2017 1:30,16/11/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2742,17/08/2017 1:30,21/09/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2691,17/08/2017 1:30,14/08/2009 15:16,2.1,200, Information Exposure,nan
CVE-2009-2688,17/08/2017 1:30,5/08/2009 19:30,10.0,189, Numeric Errors,nan
CVE-2009-2677,17/08/2017 1:30,14/08/2009 15:16,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2660,17/08/2017 1:30,4/08/2009 16:30,6.8,189, Numeric Errors,nan
CVE-2009-2648,17/08/2017 1:30,30/07/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2627,17/08/2017 1:30,19/08/2009 17:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2595,17/08/2017 1:30,24/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2590,17/08/2017 1:30,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2589,17/08/2017 1:30,24/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2588,17/08/2017 1:30,24/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2587,17/08/2017 1:30,24/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2586,17/08/2017 1:30,24/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2581,17/08/2017 1:30,23/07/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2572,17/08/2017 1:30,22/07/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2571,17/08/2017 1:30,22/07/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2565,17/08/2017 1:30,21/07/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2556,17/08/2017 1:30,21/07/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2555,17/08/2017 1:30,21/07/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2551,17/08/2017 1:30,20/07/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2547,17/08/2017 1:30,20/07/2009 20:00,5.0,189, Numeric Errors,nan
CVE-2009-2546,17/08/2017 1:30,20/07/2009 20:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2545,17/08/2017 1:30,20/07/2009 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2483,17/08/2017 1:30,16/07/2009 16:30,4.9,189, Numeric Errors,nan
CVE-2009-2482,17/08/2017 1:30,16/07/2009 16:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-2480,17/08/2017 1:30,16/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2457,17/08/2017 1:30,14/07/2009 20:30,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2444,17/08/2017 1:30,13/07/2009 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2443,17/08/2017 1:30,13/07/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2441,17/08/2017 1:30,13/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2434,17/08/2017 1:30,13/07/2009 14:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2429,17/08/2017 1:30,10/07/2009 17:30,4.6,255, Credentials Management,nan
CVE-2009-2425,17/08/2017 1:30,10/07/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-2422,17/08/2017 1:30,10/07/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2009-2419,17/08/2017 1:30,9/07/2009 16:30,4.3,399, Resource Management Errors,nan
CVE-2009-2410,17/08/2017 1:30,30/07/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-2405,17/08/2017 1:30,15/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2380,17/08/2017 1:30,8/07/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2376,17/08/2017 1:30,8/07/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2369,17/08/2017 1:30,8/07/2009 15:30,6.8,189, Numeric Errors,nan
CVE-2009-2367,17/08/2017 1:30,8/07/2009 15:30,7.5,310, Cryptographic Issues,nan
CVE-2009-2365,17/08/2017 1:30,8/07/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2360,17/08/2017 1:30,8/07/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2312,17/08/2017 1:30,2/07/2009 10:30,4.6,310, Cryptographic Issues,nan
CVE-2009-2292,17/08/2017 1:30,1/07/2009 13:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2243,17/08/2017 1:30,27/06/2009 18:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2232,17/08/2017 1:30,26/06/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2225,17/08/2017 1:30,26/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2217,17/08/2017 1:30,25/06/2009 23:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2216,17/08/2017 1:30,25/06/2009 23:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2214,17/08/2017 1:30,25/06/2009 23:14,5.0,399, Resource Management Errors,nan
CVE-2009-2213,17/08/2017 1:30,25/06/2009 23:14,6.3,16, Configuration,nan
CVE-2009-2208,17/08/2017 1:30,25/06/2009 2:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2207,17/08/2017 1:30,10/09/2009 21:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-2201,17/08/2017 1:30,15/09/2009 22:30,2.1,310, Cryptographic Issues,nan
CVE-2009-2198,17/08/2017 1:30,4/08/2009 16:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-2193,17/08/2017 1:30,6/08/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2192,17/08/2017 1:30,6/08/2009 16:30,7.5,255, Credentials Management,nan
CVE-2009-2191,17/08/2017 1:30,6/08/2009 16:30,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2009-2190,17/08/2017 1:30,6/08/2009 16:30,7.8,399, Resource Management Errors,nan
CVE-2009-2188,17/08/2017 1:30,6/08/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2162,17/08/2017 1:30,22/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2155,17/08/2017 1:30,22/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2121,17/08/2017 1:30,23/06/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2108,17/08/2017 1:30,18/06/2009 18:30,5.0,399, Resource Management Errors,nan
CVE-2009-2093,17/08/2017 1:30,13/08/2009 18:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2092,17/08/2017 1:30,13/08/2009 18:30,7.5,284, Improper Access Control,nan
CVE-2009-2091,17/08/2017 1:30,13/08/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2089,17/08/2017 1:30,13/08/2009 18:30,2.1,16, Configuration,nan
CVE-2009-2088,17/08/2017 1:30,13/08/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-2087,17/08/2017 1:30,13/08/2009 18:30,2.1,255, Credentials Management,nan
CVE-2009-2085,17/08/2017 1:30,13/08/2009 18:30,7.5,287, Improper Authentication,nan
CVE-2009-2084,17/08/2017 1:30,16/06/2009 23:30,7.2,255, Credentials Management,nan
CVE-2009-2073,17/08/2017 1:30,15/06/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2068,17/08/2017 1:30,15/06/2009 19:30,5.8,287, Improper Authentication,nan
CVE-2009-2066,17/08/2017 1:30,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2065,17/08/2017 1:30,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2063,17/08/2017 1:30,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2062,17/08/2017 1:30,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2061,17/08/2017 1:30,15/06/2009 19:30,9.3,310, Cryptographic Issues,nan
CVE-2009-2060,17/08/2017 1:30,15/06/2009 19:30,5.8,287, Improper Authentication,nan
CVE-2009-2058,17/08/2017 1:30,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2048,17/08/2017 1:30,16/07/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2047,17/08/2017 1:30,16/07/2009 15:30,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2044,17/08/2017 1:30,12/06/2009 21:30,4.3,20, Improper Input Validation,nan
CVE-2009-2043,17/08/2017 1:30,12/06/2009 21:30,4.3,20, Improper Input Validation,nan
CVE-2009-2042,17/08/2017 1:30,12/06/2009 20:30,4.3,200, Information Exposure,nan
CVE-2009-2041,17/08/2017 1:30,12/06/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2027,17/08/2017 1:30,10/06/2009 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-2009,17/08/2017 1:30,8/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2008,17/08/2017 1:30,8/06/2009 19:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2007,17/08/2017 1:30,8/06/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2006,17/08/2017 1:30,8/06/2009 19:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2004,17/08/2017 1:30,8/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1962,17/08/2017 1:30,8/06/2009 1:00,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1959,17/08/2017 1:30,8/06/2009 1:00,5.0,189, Numeric Errors,nan
CVE-2009-1940,17/08/2017 1:30,5/06/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1939,17/08/2017 1:30,5/06/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1938,17/08/2017 1:30,5/06/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1935,17/08/2017 1:30,18/06/2009 18:30,4.9,189, Numeric Errors,nan
CVE-2009-1934,17/08/2017 1:30,5/06/2009 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1914,17/08/2017 1:30,4/06/2009 16:30,4.9,20, Improper Input Validation,nan
CVE-2009-1905,17/08/2017 1:30,3/06/2009 21:00,2.6,287, Improper Authentication,nan
CVE-2009-1903,17/08/2017 1:30,3/06/2009 17:00,4.3,16, Configuration,nan
CVE-2009-1900,17/08/2017 1:30,3/06/2009 17:00,5.0,200, Information Exposure,nan
CVE-2009-1898,17/08/2017 1:30,3/06/2009 17:00,5.0,200, Information Exposure,nan
CVE-2009-1897,17/08/2017 1:30,20/07/2009 17:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1892,17/08/2017 1:30,17/07/2009 16:30,5.0,16, Configuration,nan
CVE-2009-1886,17/08/2017 1:30,25/06/2009 1:30,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2009-1885,17/08/2017 1:30,11/08/2009 18:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1884,17/08/2017 1:30,19/08/2009 17:30,4.3,189, Numeric Errors,nan
CVE-2009-1858,17/08/2017 1:30,11/06/2009 15:30,9.3,399, Resource Management Errors,nan
CVE-2009-1856,17/08/2017 1:30,11/06/2009 15:30,9.3,189, Numeric Errors,nan
CVE-2009-1842,17/08/2017 1:30,1/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1823,17/08/2017 1:30,29/05/2009 16:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1801,17/08/2017 1:30,28/05/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1796,17/08/2017 1:30,26/05/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1791,17/08/2017 1:30,26/05/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1790,17/08/2017 1:30,26/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1788,17/08/2017 1:30,26/05/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1756,17/08/2017 1:30,22/05/2009 11:52,2.1,200, Information Exposure,nan
CVE-2009-1740,17/08/2017 1:30,20/05/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1738,17/08/2017 1:30,20/05/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1737,17/08/2017 1:30,20/05/2009 19:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1733,17/08/2017 1:30,20/05/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1731,17/08/2017 1:30,20/05/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1730,17/08/2017 1:30,20/05/2009 18:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1728,17/08/2017 1:30,6/08/2009 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1714,17/08/2017 1:30,10/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1713,17/08/2017 1:30,10/06/2009 18:00,7.1,200, Information Exposure,nan
CVE-2009-1712,17/08/2017 1:30,10/06/2009 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1711,17/08/2017 1:30,10/06/2009 18:00,9.3,399, Resource Management Errors,nan
CVE-2009-1679,17/08/2017 1:30,19/06/2009 16:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-1657,17/08/2017 1:30,18/05/2009 12:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1640,17/08/2017 1:30,15/05/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1606,17/08/2017 1:30,11/05/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1601,17/08/2017 1:30,11/05/2009 15:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-1596,17/08/2017 1:30,11/05/2009 14:30,4.0,16, Configuration,nan
CVE-2009-1595,17/08/2017 1:30,11/05/2009 14:30,4.0,287, Improper Authentication,nan
CVE-2009-1588,17/08/2017 1:30,8/05/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1575,17/08/2017 1:30,6/05/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1573,17/08/2017 1:30,6/05/2009 17:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-1560,17/08/2017 1:30,6/05/2009 16:30,7.8,310, Cryptographic Issues,nan
CVE-2009-1559,17/08/2017 1:30,6/05/2009 16:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1558,17/08/2017 1:30,6/05/2009 16:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1557,17/08/2017 1:30,6/05/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1525,17/08/2017 1:30,5/05/2009 20:30,8.5,20, Improper Input Validation,nan
CVE-2009-1520,17/08/2017 1:30,5/05/2009 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1505,17/08/2017 1:30,1/05/2009 17:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1494,17/08/2017 1:30,30/04/2009 20:30,5.0,200, Information Exposure,nan
CVE-2009-1491,17/08/2017 1:30,5/05/2009 19:30,9.3,20, Improper Input Validation,nan
CVE-2009-1490,17/08/2017 1:30,5/05/2009 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1482,17/08/2017 1:30,29/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1481,17/08/2017 1:30,29/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1476,17/08/2017 1:30,26/05/2009 15:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1463,17/08/2017 1:30,28/04/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1462,17/08/2017 1:30,28/04/2009 16:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-1461,17/08/2017 1:30,28/04/2009 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1460,17/08/2017 1:30,28/04/2009 16:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-1459,17/08/2017 1:30,28/04/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1458,17/08/2017 1:30,28/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1457,17/08/2017 1:30,28/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1455,17/08/2017 1:30,28/04/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1454,17/08/2017 1:30,28/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1448,17/08/2017 1:30,27/04/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1441,17/08/2017 1:30,7/05/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1438,17/08/2017 1:30,27/04/2009 18:00,7.5,189, Numeric Errors,nan
CVE-2009-1434,17/08/2017 1:30,30/04/2009 20:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1429,17/08/2017 1:30,29/04/2009 15:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1428,17/08/2017 1:30,29/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1418,17/08/2017 1:30,19/05/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1417,17/08/2017 1:30,30/04/2009 20:30,5.0,310, Cryptographic Issues,nan
CVE-2009-1415,17/08/2017 1:30,30/04/2009 20:30,4.3,255, Credentials Management,nan
CVE-2009-1414,17/08/2017 1:30,24/04/2009 15:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1413,17/08/2017 1:30,24/04/2009 15:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1412,17/08/2017 1:30,24/04/2009 15:30,7.8,200, Information Exposure,nan
CVE-2009-1390,17/08/2017 1:30,16/06/2009 21:00,6.8,287, Improper Authentication,nan
CVE-2009-1380,17/08/2017 1:30,15/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1362,17/08/2017 1:30,22/04/2009 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1339,17/08/2017 1:30,30/04/2009 20:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1334,17/08/2017 1:30,17/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1296,17/08/2017 1:30,9/06/2009 20:30,1.9,200, Information Exposure,nan
CVE-2009-1292,17/08/2017 1:30,14/04/2009 16:26,2.1,200, Information Exposure,nan
CVE-2009-1291,17/08/2017 1:30,30/04/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1287,17/08/2017 1:30,13/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1280,17/08/2017 1:30,9/04/2009 16:27,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1279,17/08/2017 1:30,9/04/2009 16:27,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1270,17/08/2017 1:30,8/04/2009 16:30,7.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1261,17/08/2017 1:30,7/04/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1258,17/08/2017 1:30,7/04/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1245,17/08/2017 1:30,6/04/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1243,17/08/2017 1:30,6/04/2009 14:30,4.9,16, Configuration,nan
CVE-2009-1239,17/08/2017 1:30,3/04/2009 18:30,5.0,200, Information Exposure,nan
CVE-2009-1217,17/08/2017 1:30,1/04/2009 18:00,4.3,189, Numeric Errors,nan
CVE-2009-1215,17/08/2017 1:30,1/04/2009 10:30,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1214,17/08/2017 1:30,1/04/2009 10:30,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-1213,17/08/2017 1:30,1/04/2009 10:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1208,17/08/2017 1:30,1/04/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1162,17/08/2017 1:30,5/06/2009 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1084,17/08/2017 1:30,25/03/2009 15:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-1069,17/08/2017 1:30,26/03/2009 5:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1065,17/08/2017 1:30,26/03/2009 5:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1036,17/08/2017 1:30,20/03/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1035,17/08/2017 1:30,20/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1034,17/08/2017 1:30,20/03/2009 18:30,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0971,17/08/2017 1:30,19/03/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0970,17/08/2017 1:30,19/03/2009 10:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0969,17/08/2017 1:30,19/03/2009 10:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0959,17/08/2017 1:30,19/06/2009 16:30,7.1,20, Improper Input Validation,nan
CVE-2009-0958,17/08/2017 1:30,19/06/2009 16:30,4.3,200, Information Exposure,nan
CVE-2009-0943,17/08/2017 1:30,13/05/2009 15:30,6.8,20, Improper Input Validation,nan
CVE-2009-0942,17/08/2017 1:30,13/05/2009 15:30,6.8,20, Improper Input Validation,nan
CVE-2009-0935,17/08/2017 1:30,18/03/2009 2:00,4.7,399, Resource Management Errors,nan
CVE-2009-0934,17/08/2017 1:30,18/03/2009 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0933,17/08/2017 1:30,17/03/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0929,17/08/2017 1:30,17/03/2009 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0926,17/08/2017 1:30,17/03/2009 19:30,4.9,399, Resource Management Errors,nan
CVE-2009-0925,17/08/2017 1:30,17/03/2009 19:30,4.7,399, Resource Management Errors,nan
CVE-2009-0924,17/08/2017 1:30,17/03/2009 19:30,4.7,399, Resource Management Errors,nan
CVE-2009-0919,17/08/2017 1:30,16/03/2009 19:30,7.5,255, Credentials Management,nan
CVE-2009-0917,17/08/2017 1:30,16/03/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0912,17/08/2017 1:30,16/03/2009 17:30,7.2,20, Improper Input Validation,nan
CVE-2009-0906,17/08/2017 1:30,13/08/2009 18:30,6.5,287, Improper Authentication,nan
CVE-2009-0905,17/08/2017 1:30,30/10/2011 19:55,1.7,20, Improper Input Validation,nan
CVE-2009-0904,17/08/2017 1:30,5/07/2009 16:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0900,17/08/2017 1:30,30/10/2011 19:55,4.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0896,17/08/2017 1:30,3/06/2009 17:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0895,17/08/2017 1:30,3/12/2009 17:30,10.0,189, Numeric Errors,nan
CVE-2009-0892,17/08/2017 1:30,31/03/2009 14:09,5.5,287, Improper Authentication,nan
CVE-2009-0891,17/08/2017 1:30,25/03/2009 1:30,5.5,287, Improper Authentication,nan
CVE-2009-0884,17/08/2017 1:30,12/03/2009 15:20,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0878,17/08/2017 1:30,12/03/2009 15:20,5.0,399, Resource Management Errors,nan
CVE-2009-0876,17/08/2017 1:30,12/03/2009 15:20,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0872,17/08/2017 1:30,11/03/2009 14:19,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-0870,17/08/2017 1:30,10/03/2009 20:30,4.7,399, Resource Management Errors,nan
CVE-2009-0868,17/08/2017 1:30,10/03/2009 14:30,6.8,20, Improper Input Validation,nan
CVE-2009-0867,17/08/2017 1:30,10/03/2009 14:30,5.0,200, Information Exposure,nan
CVE-2009-0861,17/08/2017 1:30,10/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0859,17/08/2017 1:30,9/03/2009 21:30,4.7,20, Improper Input Validation,nan
CVE-2009-0857,17/08/2017 1:30,9/03/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0854,17/08/2017 1:30,11/03/2009 14:19,6.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-0849,17/08/2017 1:30,9/03/2009 17:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0848,17/08/2017 1:30,11/03/2009 14:19,4.4,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-0818,17/08/2017 1:30,5/03/2009 2:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0817,17/08/2017 1:30,5/03/2009 2:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0808,17/08/2017 1:30,4/03/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0794,17/08/2017 1:30,13/04/2009 16:30,5.0,189, Numeric Errors,nan
CVE-2009-0789,17/08/2017 1:30,27/03/2009 16:30,5.0,189, Numeric Errors,nan
CVE-2009-0788,17/08/2017 1:30,18/04/2011 17:55,6.4,200, Information Exposure,nan
CVE-2009-0749,17/08/2017 1:30,2/03/2009 20:30,9.3,399, Resource Management Errors,nan
CVE-2009-0743,17/08/2017 1:30,27/02/2009 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0732,17/08/2017 1:30,24/02/2009 23:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0729,17/08/2017 1:29,24/02/2009 23:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0710,17/08/2017 1:29,23/02/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0709,17/08/2017 1:29,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0706,17/08/2017 1:29,23/02/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0700,17/08/2017 1:29,23/02/2009 15:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0699,17/08/2017 1:29,23/02/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0679,17/08/2017 1:29,22/02/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0669,17/08/2017 1:29,7/08/2009 19:30,7.5,287, Improper Authentication,nan
CVE-2009-0662,17/08/2017 1:29,23/04/2009 17:30,6.0,287, Improper Authentication,nan
CVE-2009-0661,17/08/2017 1:29,19/03/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2009-0660,17/08/2017 1:29,11/03/2009 14:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0659,17/08/2017 1:29,20/02/2009 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0657,17/08/2017 1:29,20/02/2009 19:30,6.9,255, Credentials Management,nan
CVE-2009-0656,17/08/2017 1:29,20/02/2009 19:30,6.9,255, Credentials Management,nan
CVE-2009-0655,17/08/2017 1:29,20/02/2009 19:30,6.9,287, Improper Authentication,nan
CVE-2009-0651,17/08/2017 1:29,20/02/2009 18:30,6.5,20, Improper Input Validation,nan
CVE-2009-0648,17/08/2017 1:29,19/02/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0635,17/08/2017 1:29,27/03/2009 16:30,7.1,399, Resource Management Errors,nan
CVE-2009-0632,17/08/2017 1:29,12/03/2009 15:20,9.0,255, Credentials Management,nan
CVE-2009-0611,17/08/2017 1:29,17/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0603,17/08/2017 1:29,16/02/2009 20:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0591,17/08/2017 1:29,27/03/2009 16:30,2.6,287, Improper Authentication,nan
CVE-2009-0575,17/08/2017 1:29,13/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7232,17/08/2017 1:29,14/09/2009 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7231,17/08/2017 1:29,14/09/2009 14:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7206,17/08/2017 1:29,11/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7205,17/08/2017 1:29,11/09/2009 16:30,4.3,20, Improper Input Validation,nan
CVE-2008-7204,17/08/2017 1:29,11/09/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7183,17/08/2017 1:29,8/09/2009 23:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7162,17/08/2017 1:29,4/09/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7159,17/08/2017 1:29,10/09/2009 21:30,5.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-7158,17/08/2017 1:29,2/09/2009 17:30,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-7155,17/08/2017 1:29,2/09/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7152,17/08/2017 1:29,1/09/2009 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7151,17/08/2017 1:29,1/09/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7150,17/08/2017 1:29,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7141,17/08/2017 1:29,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7140,17/08/2017 1:29,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7135,17/08/2017 1:29,1/09/2009 16:30,4.3,20, Improper Input Validation,nan
CVE-2008-7134,17/08/2017 1:29,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7133,17/08/2017 1:29,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7132,17/08/2017 1:29,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7129,17/08/2017 1:29,31/08/2009 10:30,5.0,399, Resource Management Errors,nan
CVE-2008-7128,17/08/2017 1:29,31/08/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7127,17/08/2017 1:29,31/08/2009 10:30,5.0,399, Resource Management Errors,nan
CVE-2008-7126,17/08/2017 1:29,31/08/2009 10:30,10.0,189, Numeric Errors,nan
CVE-2008-7125,17/08/2017 1:29,31/08/2009 10:30,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-7113,17/08/2017 1:29,28/08/2009 15:30,6.4,310, Cryptographic Issues,nan
CVE-2008-7112,17/08/2017 1:29,28/08/2009 15:30,5.0,20, Improper Input Validation,nan
CVE-2008-7102,17/08/2017 1:29,27/08/2009 20:30,7.5,20, Improper Input Validation,nan
CVE-2008-7096,17/08/2017 1:29,27/08/2009 20:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-7094,17/08/2017 1:29,26/08/2009 14:24,5.0,399, Resource Management Errors,nan
CVE-2008-7093,17/08/2017 1:29,26/08/2009 14:24,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7092,17/08/2017 1:29,26/08/2009 14:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7081,17/08/2017 1:29,25/08/2009 10:30,10.0,287, Improper Authentication,nan
CVE-2008-7048,17/08/2017 1:29,24/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7040,17/08/2017 1:29,24/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7039,17/08/2017 1:29,24/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7037,17/08/2017 1:29,24/08/2009 10:30,7.5,20, Improper Input Validation,nan
CVE-2008-7036,17/08/2017 1:29,24/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7035,17/08/2017 1:29,24/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7034,17/08/2017 1:29,24/08/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7033,17/08/2017 1:29,24/08/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7020,17/08/2017 1:29,21/08/2009 14:30,2.1,310, Cryptographic Issues,nan
CVE-2008-7018,17/08/2017 1:29,21/08/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7017,17/08/2017 1:29,21/08/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7016,17/08/2017 1:29,21/08/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-7008,17/08/2017 1:29,19/08/2009 10:30,5.0,287, Improper Authentication,nan
CVE-2008-7004,17/08/2017 1:29,19/08/2009 10:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7000,17/08/2017 1:29,19/08/2009 5:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6999,17/08/2017 1:29,19/08/2009 5:24,5.0,200, Information Exposure,nan
CVE-2008-6984,17/08/2017 1:29,19/08/2009 5:24,5.8,287, Improper Authentication,nan
CVE-2008-6972,17/08/2017 1:29,13/08/2009 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6970,17/08/2017 1:29,13/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6969,17/08/2017 1:29,13/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6968,17/08/2017 1:29,13/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6962,17/08/2017 1:29,13/08/2009 16:30,7.2,20, Improper Input Validation,nan
CVE-2008-6954,17/08/2017 1:29,12/08/2009 10:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6945,17/08/2017 1:29,12/08/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6937,17/08/2017 1:29,11/08/2009 21:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6925,17/08/2017 1:29,10/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6924,17/08/2017 1:29,10/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6910,17/08/2017 1:29,6/08/2009 18:30,7.5,310, Cryptographic Issues,nan
CVE-2008-6909,17/08/2017 1:29,6/08/2009 18:30,6.5,310, Cryptographic Issues,nan
CVE-2008-6908,17/08/2017 1:29,6/08/2009 17:30,7.5,310, Cryptographic Issues,nan
CVE-2008-6896,17/08/2017 1:29,3/08/2009 18:30,5.0,200, Information Exposure,nan
CVE-2008-6894,17/08/2017 1:29,3/08/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6893,17/08/2017 1:29,3/08/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6891,17/08/2017 1:29,3/08/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6890,17/08/2017 1:29,3/08/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6888,17/08/2017 1:29,3/08/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6887,17/08/2017 1:29,3/08/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6886,17/08/2017 1:29,3/08/2009 14:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6876,17/08/2017 1:29,24/07/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6875,17/08/2017 1:29,24/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6868,17/08/2017 1:29,23/07/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6850,17/08/2017 1:29,7/07/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6847,17/08/2017 1:29,2/07/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6840,17/08/2017 1:29,1/07/2009 13:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6839,17/08/2017 1:29,27/06/2009 18:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6838,17/08/2017 1:29,27/06/2009 18:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6837,17/08/2017 1:29,27/06/2009 18:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6832,17/08/2017 1:29,8/06/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6831,17/08/2017 1:29,8/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6828,17/08/2017 1:29,8/06/2009 19:30,4.3,310, Cryptographic Issues,nan
CVE-2008-6827,17/08/2017 1:29,8/06/2009 19:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6821,17/08/2017 1:29,3/06/2009 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6818,17/08/2017 1:29,1/06/2009 14:30,5.0,255, Credentials Management,nan
CVE-2008-6817,17/08/2017 1:29,1/06/2009 14:30,5.0,255, Credentials Management,nan
CVE-2008-6807,17/08/2017 1:29,12/05/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6803,17/08/2017 1:29,11/05/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6801,17/08/2017 1:29,7/05/2009 23:30,4.4,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6799,17/08/2017 1:29,7/05/2009 23:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6792,17/08/2017 1:29,7/05/2009 17:30,5.0,310, Cryptographic Issues,nan
CVE-2008-6786,17/08/2017 1:29,1/05/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6779,17/08/2017 1:29,1/05/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6774,17/08/2017 1:29,29/04/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6764,17/08/2017 1:29,28/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6762,17/08/2017 1:29,28/04/2009 16:30,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6756,17/08/2017 1:29,27/04/2009 22:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-6755,17/08/2017 1:29,27/04/2009 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6753,17/08/2017 1:29,27/04/2009 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6747,17/08/2017 1:29,23/04/2009 17:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6746,17/08/2017 1:29,23/04/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6744,17/08/2017 1:29,23/04/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6737,17/08/2017 1:29,21/04/2009 18:30,7.8,200, Information Exposure,nan
CVE-2008-6733,17/08/2017 1:29,21/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6732,17/08/2017 1:29,21/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6724,17/08/2017 1:29,17/04/2009 14:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6707,17/08/2017 1:29,10/04/2009 22:00,6.4,287, Improper Authentication,nan
CVE-2008-6704,17/08/2017 1:29,10/04/2009 22:00,5.0,189, Numeric Errors,nan
CVE-2008-6703,17/08/2017 1:29,10/04/2009 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6699,17/08/2017 1:29,10/04/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6698,17/08/2017 1:29,10/04/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6697,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6696,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6695,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6694,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6693,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6692,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6691,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6689,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6688,17/08/2017 1:29,10/04/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6687,17/08/2017 1:29,10/04/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6686,17/08/2017 1:29,10/04/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6681,17/08/2017 1:29,9/04/2009 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6680,17/08/2017 1:29,8/04/2009 16:30,5.0,189, Numeric Errors,nan
CVE-2008-6678,17/08/2017 1:29,8/04/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6676,17/08/2017 1:29,8/04/2009 10:30,5.0,20, Improper Input Validation,nan
CVE-2008-6675,17/08/2017 1:29,8/04/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6672,17/08/2017 1:29,8/04/2009 10:30,5.0,189, Numeric Errors,nan
CVE-2008-6671,17/08/2017 1:29,8/04/2009 10:30,5.0,189, Numeric Errors,nan
CVE-2008-6670,17/08/2017 1:29,8/04/2009 10:30,5.0,189, Numeric Errors,nan
CVE-2008-6662,17/08/2017 1:29,7/04/2009 23:30,4.3,20, Improper Input Validation,nan
CVE-2008-6661,17/08/2017 1:29,7/04/2009 23:30,5.0,189, Numeric Errors,nan
CVE-2008-6655,17/08/2017 1:29,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6654,17/08/2017 1:29,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6640,17/08/2017 1:29,7/04/2009 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6639,17/08/2017 1:29,7/04/2009 14:17,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6637,17/08/2017 1:29,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6631,17/08/2017 1:29,7/04/2009 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6630,17/08/2017 1:29,7/04/2009 14:17,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6620,17/08/2017 1:29,6/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6616,17/08/2017 1:29,6/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6615,17/08/2017 1:29,6/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6610,17/08/2017 1:29,6/04/2009 16:30,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6609,17/08/2017 1:29,6/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6603,17/08/2017 1:29,3/04/2009 18:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-6599,17/08/2017 1:29,3/04/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6598,17/08/2017 1:29,3/04/2009 18:30,10.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-6595,17/08/2017 1:29,3/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6588,17/08/2017 1:29,3/04/2009 18:30,10.0,255, Credentials Management,nan
CVE-2008-6577,17/08/2017 1:29,1/04/2009 22:30,10.0,255, Credentials Management,nan
CVE-2008-6573,17/08/2017 1:29,1/04/2009 22:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6570,17/08/2017 1:29,31/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6569,17/08/2017 1:29,31/03/2009 17:30,6.8,287, Improper Authentication,nan
CVE-2008-6568,17/08/2017 1:29,31/03/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2008-6562,17/08/2017 1:29,31/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6561,17/08/2017 1:29,31/03/2009 17:30,1.9,200, Information Exposure,nan
CVE-2008-6560,17/08/2017 1:29,31/03/2009 14:09,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6550,17/08/2017 1:29,30/03/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6547,17/08/2017 1:29,30/03/2009 1:30,7.5,20, Improper Input Validation,nan
CVE-2008-6545,17/08/2017 1:29,30/03/2009 1:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6544,17/08/2017 1:29,30/03/2009 1:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6543,17/08/2017 1:29,30/03/2009 1:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6533,17/08/2017 1:29,26/03/2009 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6532,17/08/2017 1:29,26/03/2009 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6531,17/08/2017 1:29,26/03/2009 21:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6520,17/08/2017 1:29,25/03/2009 18:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-6516,17/08/2017 1:29,25/03/2009 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6515,17/08/2017 1:29,24/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6514,17/08/2017 1:29,24/03/2009 14:30,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-6506,17/08/2017 1:29,23/03/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6504,17/08/2017 1:29,23/03/2009 14:19,5.0,20, Improper Input Validation,nan
CVE-2008-6500,17/08/2017 1:29,20/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6495,17/08/2017 1:29,20/03/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6491,17/08/2017 1:29,19/03/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6476,17/08/2017 1:29,16/03/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6465,17/08/2017 1:29,13/03/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6462,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6461,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6460,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6459,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6458,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6457,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6456,17/08/2017 1:29,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6455,17/08/2017 1:29,13/03/2009 10:30,6.8,287, Improper Authentication,nan
CVE-2008-6450,17/08/2017 1:29,9/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6449,17/08/2017 1:29,9/03/2009 14:30,4.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6448,17/08/2017 1:29,9/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6445,17/08/2017 1:29,9/03/2009 14:30,7.5,287, Improper Authentication,nan
CVE-2008-6443,17/08/2017 1:29,9/03/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6436,17/08/2017 1:29,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6434,17/08/2017 1:29,6/03/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6433,17/08/2017 1:29,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6428,17/08/2017 1:29,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6424,17/08/2017 1:29,6/03/2009 18:30,8.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6416,17/08/2017 1:29,6/03/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6415,17/08/2017 1:29,6/03/2009 11:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6413,17/08/2017 1:29,6/03/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6404,17/08/2017 1:29,6/03/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6400,17/08/2017 1:29,5/03/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6398,17/08/2017 1:29,4/03/2009 17:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6397,17/08/2017 1:29,4/03/2009 17:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6396,17/08/2017 1:29,4/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6395,17/08/2017 1:29,4/03/2009 17:30,7.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-6392,17/08/2017 1:29,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6391,17/08/2017 1:29,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6386,17/08/2017 1:29,2/03/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6385,17/08/2017 1:29,2/03/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6384,17/08/2017 1:29,2/03/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6383,17/08/2017 1:29,2/03/2009 19:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6376,17/08/2017 1:29,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6375,17/08/2017 1:29,2/03/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6373,17/08/2017 1:29,2/03/2009 19:30,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6368,17/08/2017 1:29,2/03/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6360,17/08/2017 1:29,2/03/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6331,17/08/2017 1:29,27/02/2009 16:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6326,17/08/2017 1:29,27/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6325,17/08/2017 1:29,27/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6306,17/08/2017 1:29,26/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6304,17/08/2017 1:29,26/02/2009 23:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6300,17/08/2017 1:29,26/02/2009 16:17,7.5,287, Improper Authentication,nan
CVE-2008-6299,17/08/2017 1:29,26/02/2009 16:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6298,17/08/2017 1:29,26/02/2009 16:17,5.0,20, Improper Input Validation,nan
CVE-2008-6297,17/08/2017 1:29,26/02/2009 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6295,17/08/2017 1:29,26/02/2009 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6283,17/08/2017 1:29,25/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6280,17/08/2017 1:29,25/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6276,17/08/2017 1:29,25/02/2009 23:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6275,17/08/2017 1:29,25/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6273,17/08/2017 1:29,25/02/2009 16:30,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6262,17/08/2017 1:29,24/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6240,17/08/2017 1:29,23/02/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6239,17/08/2017 1:29,23/02/2009 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6238,17/08/2017 1:29,23/02/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6236,17/08/2017 1:29,21/02/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6229,17/08/2017 1:29,20/02/2009 23:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6217,17/08/2017 1:29,20/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6212,17/08/2017 1:29,20/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6211,17/08/2017 1:29,20/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6208,17/08/2017 1:29,20/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6207,17/08/2017 1:29,20/02/2009 1:30,8.5,20, Improper Input Validation,nan
CVE-2008-6206,17/08/2017 1:29,20/02/2009 1:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6205,17/08/2017 1:29,20/02/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6203,17/08/2017 1:29,20/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6196,17/08/2017 1:29,20/02/2009 0:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6192,17/08/2017 1:29,19/02/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6191,17/08/2017 1:29,19/02/2009 18:30,2.1,255, Credentials Management,nan
CVE-2008-6190,17/08/2017 1:29,19/02/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6189,17/08/2017 1:29,19/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6174,17/08/2017 1:29,19/02/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6173,17/08/2017 1:29,19/02/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6171,17/08/2017 1:29,19/02/2009 15:30,9.3,20, Improper Input Validation,nan
CVE-2008-6170,17/08/2017 1:29,19/02/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6169,17/08/2017 1:29,19/02/2009 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6160,17/08/2017 1:29,18/02/2009 16:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6155,17/08/2017 1:29,16/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6141,17/08/2017 1:29,14/02/2009 2:30,5.0,399, Resource Management Errors,nan
CVE-2008-6137,17/08/2017 1:29,14/02/2009 2:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6136,17/08/2017 1:29,14/02/2009 2:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-6135,17/08/2017 1:29,14/02/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6134,17/08/2017 1:29,14/02/2009 2:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6131,17/08/2017 1:29,13/02/2009 18:30,6.0,287, Improper Authentication,nan
CVE-2008-6130,17/08/2017 1:29,13/02/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6129,17/08/2017 1:29,13/02/2009 18:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6128,17/08/2017 1:29,13/02/2009 18:30,6.8,287, Improper Authentication,nan
CVE-2008-6127,17/08/2017 1:29,13/02/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6126,17/08/2017 1:29,13/02/2009 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6726,17/08/2017 1:29,9/04/2009 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6724,17/08/2017 1:29,31/03/2009 17:30,5.0,16, Configuration,nan
CVE-2007-6723,17/08/2017 1:29,31/03/2009 17:30,4.3,16, Configuration,nan
CVE-2007-6722,17/08/2017 1:29,31/03/2009 17:30,5.0,16, Configuration,nan
CVE-2007-5589,17/08/2017 1:29,19/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7237,17/08/2017 1:29,31/03/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-4889,17/08/2017 1:29,8/06/2010 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2005-4879,17/08/2017 1:29,31/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4878,17/08/2017 1:29,18/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4868,17/08/2017 1:29,31/12/2005 5:00,2.1,200, Information Exposure,nan
CVE-2004-2768,17/08/2017 1:29,8/06/2010 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2003-1588,17/08/2017 1:29,8/02/2010 20:30,1.9,255, Credentials Management,nan
CVE-2003-1587,17/08/2017 1:29,5/02/2010 22:30,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1586,17/08/2017 1:29,5/02/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1585,17/08/2017 1:29,5/02/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1584,17/08/2017 1:29,5/02/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1583,17/08/2017 1:29,5/02/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1577,17/08/2017 1:29,5/02/2010 22:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1574,17/08/2017 1:29,24/08/2009 10:30,7.5,287, Improper Authentication,nan
CVE-2003-1573,17/08/2017 1:29,1/06/2009 22:30,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1570,17/08/2017 1:29,31/03/2009 18:24,3.5,287, Improper Authentication,nan
CVE-2002-2283,17/08/2017 1:29,31/12/2002 5:00,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2001-1586,17/08/2017 1:29,12/02/2010 21:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1378,16/08/2017 19:05,7/08/2017 17:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2245,16/08/2017 17:36,8/08/2017 21:29,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-5244,16/08/2017 16:16,7/08/2017 20:29,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-3110,16/08/2017 15:07,11/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-3107,16/08/2017 15:06,11/08/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-3108,16/08/2017 15:05,11/08/2017 19:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-12677,16/08/2017 14:53,8/08/2017 1:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8518,16/08/2017 14:03,10/08/2017 18:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8271,16/08/2017 14:02,11/08/2017 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-8273,16/08/2017 14:01,11/08/2017 15:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8258,16/08/2017 13:59,11/08/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-11280,16/08/2017 13:52,11/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11279,16/08/2017 13:51,11/08/2017 19:29,5.0,416, Use After Free,nan
CVE-2017-11278,16/08/2017 13:51,11/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11277,16/08/2017 13:48,11/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11276,16/08/2017 13:48,11/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11275,16/08/2017 13:47,11/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11274,16/08/2017 13:47,11/08/2017 19:29,10.0,416, Use After Free,nan
CVE-2017-3091,16/08/2017 13:43,11/08/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11272,16/08/2017 13:43,11/08/2017 19:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8912,16/08/2017 1:29,12/05/2017 7:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-8852,16/08/2017 1:29,10/05/2017 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7938,16/08/2017 1:29,20/04/2017 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7725,16/08/2017 1:29,13/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7615,16/08/2017 1:29,16/04/2017 14:59,6.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-7588,16/08/2017 1:29,12/04/2017 10:59,10.0,287, Improper Authentication,nan
CVE-2017-7571,16/08/2017 1:29,6/04/2017 17:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7478,16/08/2017 1:29,15/05/2017 18:29,5.0,20, Improper Input Validation,nan
CVE-2017-7457,16/08/2017 1:29,14/04/2017 14:59,1.9,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7456,16/08/2017 1:29,14/04/2017 14:59,5.0,20, Improper Input Validation,nan
CVE-2017-7455,16/08/2017 1:29,14/04/2017 14:59,5.0,200, Information Exposure,nan
CVE-2017-7447,16/08/2017 1:29,5/04/2017 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7446,16/08/2017 1:29,5/04/2017 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7402,16/08/2017 1:29,3/04/2017 17:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7398,16/08/2017 1:29,4/04/2017 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7358,16/08/2017 1:29,5/04/2017 6:59,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7240,16/08/2017 1:29,24/03/2017 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7221,16/08/2017 1:29,25/04/2017 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6548,16/08/2017 1:29,9/03/2017 9:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6547,16/08/2017 1:29,9/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6529,16/08/2017 1:29,9/03/2017 19:59,6.8,613, Insufficient Session Expiration,nan
CVE-2017-6527,16/08/2017 1:29,9/03/2017 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6206,16/08/2017 1:29,23/02/2017 6:59,5.0,200, Information Exposure,nan
CVE-2017-6190,16/08/2017 1:29,10/04/2017 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6086,16/08/2017 1:29,27/06/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6019,16/08/2017 1:29,7/04/2017 22:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-5869,16/08/2017 1:29,24/03/2017 14:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5227,16/08/2017 1:29,23/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2017-3881,16/08/2017 1:29,17/03/2017 22:59,10.0,20, Improper Input Validation,nan
CVE-2017-2800,16/08/2017 1:29,24/05/2017 14:29,7.5,295, Improper Certificate Validation,nan
CVE-2017-2641,16/08/2017 1:29,26/03/2017 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2489,16/08/2017 1:29,2/04/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-2480,16/08/2017 1:29,2/04/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-2471,16/08/2017 1:29,2/04/2017 1:59,6.8,416, Use After Free,nan
CVE-2017-2457,16/08/2017 1:29,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2443,16/08/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2442,16/08/2017 1:29,2/04/2017 1:59,4.3,20, Improper Input Validation,nan
CVE-2017-2364,16/08/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2017-0202,16/08/2017 1:29,12/04/2017 14:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0167,16/08/2017 1:29,12/04/2017 14:59,2.1,200, Information Exposure,nan
CVE-2017-0128,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0127,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0126,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0125,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0124,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0123,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0122,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0121,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0120,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0119,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0118,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0117,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0116,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0115,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0114,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0113,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0112,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0111,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0108,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0103,16/08/2017 1:29,17/03/2017 0:59,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0100,16/08/2017 1:29,17/03/2017 0:59,4.4,287, Improper Authentication,nan
CVE-2017-0092,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0091,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0090,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0089,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0088,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0087,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0086,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0085,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0084,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0083,16/08/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0063,16/08/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0062,16/08/2017 1:29,17/03/2017 0:59,1.9,200, Information Exposure,nan
CVE-2017-0061,16/08/2017 1:29,17/03/2017 0:59,2.6,200, Information Exposure,nan
CVE-2017-0060,16/08/2017 1:29,17/03/2017 0:59,1.9,200, Information Exposure,nan
CVE-2017-0058,16/08/2017 1:29,12/04/2017 14:59,1.9,200, Information Exposure,nan
CVE-2017-0045,16/08/2017 1:29,17/03/2017 0:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9091,16/08/2017 1:29,5/04/2017 15:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-7134,16/08/2017 1:29,12/09/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6595,16/08/2017 1:29,4/01/2017 20:59,4.0,399, Resource Management Errors,nan
CVE-2016-6277,16/08/2017 1:29,14/12/2016 16:59,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5333,16/08/2017 1:29,31/08/2016 1:59,9.3,798, Use of Hard-coded Credentials,nan
CVE-2016-5332,16/08/2017 1:29,31/08/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5268,16/08/2017 1:29,5/08/2016 1:59,4.3,254, 7PK – Security Features,nan
CVE-2016-5267,16/08/2017 1:29,5/08/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-5266,16/08/2017 1:29,5/08/2016 1:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-5265,16/08/2017 1:29,5/08/2016 1:59,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5264,16/08/2017 1:29,5/08/2016 1:59,6.8,416, Use After Free,nan
CVE-2016-5263,16/08/2017 1:29,5/08/2016 1:59,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2016-5262,16/08/2017 1:29,5/08/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5260,16/08/2017 1:29,5/08/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-5259,16/08/2017 1:29,5/08/2016 1:59,6.8,416, Use After Free,nan
CVE-2016-5258,16/08/2017 1:29,5/08/2016 1:59,6.8,416, Use After Free,nan
CVE-2016-5255,16/08/2017 1:29,5/08/2016 1:59,6.8,416, Use After Free,nan
CVE-2016-5254,16/08/2017 1:29,5/08/2016 1:59,7.5,416, Use After Free,nan
CVE-2016-5253,16/08/2017 1:29,5/08/2016 1:59,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2016-5252,16/08/2017 1:29,5/08/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5251,16/08/2017 1:29,5/08/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-4253,16/08/2017 1:29,9/08/2016 20:59,5.0,200, Information Exposure,nan
CVE-2016-4170,16/08/2017 1:29,9/08/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4169,16/08/2017 1:29,9/08/2016 20:59,5.0,200, Information Exposure,nan
CVE-2016-4168,16/08/2017 1:29,9/08/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3195,16/08/2017 1:29,19/08/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3194,16/08/2017 1:29,19/08/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3193,16/08/2017 1:29,19/08/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2960,16/08/2017 1:29,8/08/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2016-2839,16/08/2017 1:29,5/08/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-2838,16/08/2017 1:29,5/08/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2837,16/08/2017 1:29,5/08/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2836,16/08/2017 1:29,5/08/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2830,16/08/2017 1:29,5/08/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1485,16/08/2017 1:29,22/08/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1484,16/08/2017 1:29,23/08/2016 2:10,5.0,200, Information Exposure,nan
CVE-2016-1479,16/08/2017 1:29,22/08/2016 10:59,7.8,20, Improper Input Validation,nan
CVE-2016-1478,16/08/2017 1:29,8/08/2016 0:59,7.8,20, Improper Input Validation,nan
CVE-2016-1476,16/08/2017 1:29,22/08/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1474,16/08/2017 1:29,8/08/2016 0:59,4.3,284, Improper Access Control,nan
CVE-2016-1468,16/08/2017 1:29,8/08/2016 0:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-1466,16/08/2017 1:29,8/08/2016 0:59,7.8,399, Resource Management Errors,nan
CVE-2016-1457,16/08/2017 1:29,18/08/2016 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1430,16/08/2017 1:29,8/08/2016 0:59,9.0,20, Improper Input Validation,nan
CVE-2016-1429,16/08/2017 1:29,8/08/2016 0:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1419,16/08/2017 1:29,10/06/2016 1:59,6.8,20, Improper Input Validation,nan
CVE-2016-1409,16/08/2017 1:29,29/05/2016 22:59,5.0,20, Improper Input Validation,nan
CVE-2016-1365,16/08/2017 1:29,18/08/2016 19:59,8.5,20, Improper Input Validation,nan
CVE-2016-0915,16/08/2017 1:29,22/08/2016 10:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-0385,16/08/2017 1:29,1/09/2016 10:59,3.5,200, Information Exposure,nan
CVE-2016-0377,16/08/2017 1:29,22/10/2016 3:59,4.0,200, Information Exposure,nan
CVE-2015-6397,16/08/2017 1:29,8/08/2016 0:59,9.0,287, Improper Authentication,nan
CVE-2017-1000020,15/08/2017 19:48,17/07/2017 13:18,10.0,287, Improper Authentication,nan
CVE-2017-11441,15/08/2017 19:43,19/07/2017 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11436,15/08/2017 19:41,19/07/2017 7:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-2277,15/08/2017 19:29,22/07/2017 0:29,7.5,284, Improper Access Control,nan
CVE-2017-11165,15/08/2017 19:27,12/07/2017 12:29,5.0,200, Information Exposure,nan
CVE-2017-12413,15/08/2017 18:45,4/08/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10815,15/08/2017 18:44,4/08/2017 16:29,6.8,287, Improper Authentication,nan
CVE-2017-12572,15/08/2017 18:43,5/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10949,15/08/2017 18:42,4/08/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11495,15/08/2017 18:39,20/07/2017 22:29,9.0,20, Improper Input Validation,nan
CVE-2017-1000012,15/08/2017 18:38,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9107,15/08/2017 18:36,4/08/2017 0:29,5.0,310, Cryptographic Issues,nan
CVE-2017-12583,15/08/2017 18:31,6/08/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6320,15/08/2017 18:10,18/07/2017 14:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-0293,15/08/2017 17:54,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11657,15/08/2017 17:52,4/08/2017 14:29,4.4,426, Untrusted Search Path,nan
CVE-2017-11706,15/08/2017 17:43,28/07/2017 5:29,5.0,200, Information Exposure,nan
CVE-2017-11694,15/08/2017 17:30,28/07/2017 13:29,6.4,798, Use of Hard-coded Credentials,nan
CVE-2017-11693,15/08/2017 17:30,28/07/2017 13:29,6.4,798, Use of Hard-coded Credentials,nan
CVE-2017-6252,15/08/2017 17:27,28/07/2017 19:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0250,15/08/2017 17:24,8/08/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11743,15/08/2017 17:22,31/07/2017 13:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-12062,15/08/2017 17:17,1/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8674,15/08/2017 17:15,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10819,15/08/2017 17:07,4/08/2017 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-12061,15/08/2017 17:06,1/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10818,15/08/2017 17:05,4/08/2017 16:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-10817,15/08/2017 17:05,4/08/2017 16:29,7.5,287, Improper Authentication,nan
CVE-2017-10816,15/08/2017 17:05,4/08/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9262,15/08/2017 16:48,7/08/2017 17:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-12567,15/08/2017 16:34,7/08/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5145,15/08/2017 16:29,7/08/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8653,15/08/2017 16:26,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8651,15/08/2017 16:26,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8672,15/08/2017 16:25,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8662,15/08/2017 16:24,8/08/2017 21:29,4.3,200, Information Exposure,nan
CVE-2014-9260,15/08/2017 16:23,7/08/2017 17:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-8661,15/08/2017 16:20,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8659,15/08/2017 16:19,8/08/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-8654,15/08/2017 16:18,8/08/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8652,15/08/2017 16:18,8/08/2017 21:29,4.3,200, Information Exposure,nan
CVE-2015-8621,15/08/2017 16:07,7/08/2017 17:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-1555,15/08/2017 16:04,7/08/2017 17:29,6.4,20, Improper Input Validation,nan
CVE-2017-8669,15/08/2017 15:55,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8668,15/08/2017 15:53,8/08/2017 21:29,2.1,200, Information Exposure,nan
CVE-2017-12651,15/08/2017 15:53,7/08/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12650,15/08/2017 15:52,7/08/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-12655,15/08/2017 15:50,7/08/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8666,15/08/2017 15:49,8/08/2017 21:29,2.1,200, Information Exposure,nan
CVE-2017-8664,15/08/2017 15:49,8/08/2017 21:29,7.2,20, Improper Input Validation,nan
CVE-2017-0739,15/08/2017 14:27,9/08/2017 21:29,4.3,200, Information Exposure,nan
CVE-2016-6220,15/08/2017 13:49,7/08/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-5230,15/08/2017 1:29,2/03/2017 20:59,6.5,798, Use of Hard-coded Credentials,nan
CVE-2015-5946,15/08/2017 1:29,7/08/2017 20:29,4.6,184, Incomplete Blacklist,nan
CVE-2017-8642,14/08/2017 18:27,8/08/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8627,14/08/2017 18:25,8/08/2017 21:29,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8623,14/08/2017 18:17,8/08/2017 21:29,6.8,20, Improper Input Validation,nan
CVE-2017-8516,14/08/2017 18:02,8/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-12439,14/08/2017 17:50,5/08/2017 15:29,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9981,14/08/2017 17:17,2/08/2017 17:29,6.8,384, Session Fixation,nan
CVE-2015-0194,14/08/2017 17:15,2/08/2017 19:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-8903,14/08/2017 17:14,2/08/2017 19:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-11669,14/08/2017 16:42,31/07/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11670,14/08/2017 16:37,31/07/2017 17:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-11668,14/08/2017 15:31,31/07/2017 17:29,5.0,125, Out-of-bounds Read,nan
CVE-2006-3635,14/08/2017 15:05,7/08/2017 3:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8639,14/08/2017 14:46,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8647,14/08/2017 14:35,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8655,14/08/2017 13:46,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10677,14/08/2017 13:27,6/08/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12584,14/08/2017 13:21,6/08/2017 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12480,14/08/2017 13:20,6/08/2017 4:29,6.8,426, Untrusted Search Path,nan
CVE-2017-12586,14/08/2017 12:59,6/08/2017 3:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12581,14/08/2017 12:04,6/08/2017 2:29,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8638,14/08/2017 11:47,8/08/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12588,14/08/2017 11:15,6/08/2017 14:29,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2017-12585,14/08/2017 11:15,6/08/2017 3:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9747,13/08/2017 1:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9603,13/08/2017 1:29,13/06/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9516,13/08/2017 1:29,8/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9429,13/08/2017 1:29,13/06/2017 18:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9418,13/08/2017 1:29,12/06/2017 13:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9355,13/08/2017 1:29,7/06/2017 19:29,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-8841,13/08/2017 1:29,5/06/2017 14:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8840,13/08/2017 1:29,5/06/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-8839,13/08/2017 1:29,5/06/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8838,13/08/2017 1:29,5/06/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8836,13/08/2017 1:29,5/06/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8835,13/08/2017 1:29,5/06/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8541,13/08/2017 1:29,26/05/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8540,13/08/2017 1:29,26/05/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8538,13/08/2017 1:29,26/05/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7953,13/08/2017 1:29,16/05/2017 10:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7952,13/08/2017 1:29,16/05/2017 10:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6982,13/08/2017 1:29,22/05/2017 5:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6978,13/08/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6553,13/08/2017 1:29,29/04/2017 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5631,13/08/2017 1:29,1/05/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4916,13/08/2017 1:29,22/05/2017 14:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-4914,13/08/2017 1:29,7/06/2017 17:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-2547,13/08/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2528,13/08/2017 1:29,22/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2527,13/08/2017 1:29,22/05/2017 5:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2514,13/08/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2510,13/08/2017 1:29,22/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2508,13/08/2017 1:29,22/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0259,13/08/2017 1:29,12/05/2017 14:29,1.9,200, Information Exposure,nan
CVE-2017-0258,13/08/2017 1:29,12/05/2017 14:29,1.9,200, Information Exposure,nan
CVE-2017-0245,13/08/2017 1:29,12/05/2017 14:29,1.9,200, Information Exposure,nan
CVE-2017-0220,13/08/2017 1:29,12/05/2017 14:29,1.9,200, Information Exposure,nan
CVE-2016-6980,13/08/2017 1:29,26/09/2016 17:59,10.0,416, Use After Free,nan
CVE-2016-6936,13/08/2017 1:29,16/09/2016 5:59,5.0,200, Information Exposure,nan
CVE-2016-6893,13/08/2017 1:29,2/09/2016 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6644,13/08/2017 1:29,17/09/2016 21:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5427,13/08/2017 1:29,21/09/2016 14:25,5.0,399, Resource Management Errors,nan
CVE-2016-5426,13/08/2017 1:29,21/09/2016 14:25,5.0,399, Resource Management Errors,nan
CVE-2016-5340,13/08/2017 1:29,7/08/2016 21:59,7.2,20, Improper Input Validation,nan
CVE-2016-5148,13/08/2017 1:29,11/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5147,13/08/2017 1:29,11/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4749,13/08/2017 1:29,18/09/2016 22:59,2.1,200, Information Exposure,nan
CVE-2016-4747,13/08/2017 1:29,18/09/2016 22:59,4.3,200, Information Exposure,nan
CVE-2016-4746,13/08/2017 1:29,18/09/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-4741,13/08/2017 1:29,18/09/2016 22:59,4.3,254, 7PK – Security Features,nan
CVE-2016-4740,13/08/2017 1:29,18/09/2016 22:59,1.9,200, Information Exposure,nan
CVE-2016-4719,13/08/2017 1:29,18/09/2016 22:59,4.3,200, Information Exposure,nan
CVE-2016-4705,13/08/2017 1:29,18/09/2016 22:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4704,13/08/2017 1:29,18/09/2016 22:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4620,13/08/2017 1:29,18/09/2016 22:59,4.3,200, Information Exposure,nan
CVE-2016-4382,13/08/2017 1:29,21/09/2016 2:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-4307,13/08/2017 1:29,6/01/2017 21:59,2.1,284, Improper Access Control,nan
CVE-2016-4306,13/08/2017 1:29,6/01/2017 21:59,2.1,200, Information Exposure,nan
CVE-2016-4305,13/08/2017 1:29,6/01/2017 21:59,2.1,284, Improper Access Control,nan
CVE-2016-4304,13/08/2017 1:29,6/01/2017 21:59,2.1,284, Improper Access Control,nan
CVE-2016-4263,13/08/2017 1:29,16/09/2016 5:59,10.0,416, Use After Free,nan
CVE-2016-4262,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4261,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4260,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4259,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4258,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4257,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4256,13/08/2017 1:29,16/09/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3899,13/08/2017 1:29,11/09/2016 21:59,7.1,284, Improper Access Control,nan
CVE-2016-3898,13/08/2017 1:29,11/09/2016 21:59,4.3,284, Improper Access Control,nan
CVE-2016-3897,13/08/2017 1:29,11/09/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3896,13/08/2017 1:29,11/09/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3895,13/08/2017 1:29,11/09/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3894,13/08/2017 1:29,11/09/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3893,13/08/2017 1:29,11/09/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3892,13/08/2017 1:29,11/09/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-3890,13/08/2017 1:29,11/09/2016 21:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-3889,13/08/2017 1:29,11/09/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3888,13/08/2017 1:29,11/09/2016 21:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-3887,13/08/2017 1:29,11/09/2016 21:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-3886,13/08/2017 1:29,11/09/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3885,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3884,13/08/2017 1:29,11/09/2016 21:59,4.3,284, Improper Access Control,nan
CVE-2016-3883,13/08/2017 1:29,11/09/2016 21:59,4.3,284, Improper Access Control,nan
CVE-2016-3881,13/08/2017 1:29,11/09/2016 21:59,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3880,13/08/2017 1:29,11/09/2016 21:59,7.1,284, Improper Access Control,nan
CVE-2016-3879,13/08/2017 1:29,11/09/2016 21:59,7.1,284, Improper Access Control,nan
CVE-2016-3878,13/08/2017 1:29,11/09/2016 21:59,7.1,284, Improper Access Control,nan
CVE-2016-3876,13/08/2017 1:29,11/09/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3875,13/08/2017 1:29,11/09/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3874,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3872,13/08/2017 1:29,11/09/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3871,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3870,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3869,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3868,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3867,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3866,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3865,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3864,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3863,13/08/2017 1:29,11/09/2016 21:59,6.8,284, Improper Access Control,nan
CVE-2016-3862,13/08/2017 1:29,11/09/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3859,13/08/2017 1:29,11/09/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3858,13/08/2017 1:29,11/09/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2446,13/08/2017 1:29,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-1473,13/08/2017 1:29,2/09/2016 0:59,10.0,200, Information Exposure,nan
CVE-2016-1472,13/08/2017 1:29,2/09/2016 0:59,5.0,20, Improper Input Validation,nan
CVE-2016-1471,13/08/2017 1:29,2/09/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1470,13/08/2017 1:29,2/09/2016 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1469,13/08/2017 1:29,12/09/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-9098,13/08/2017 1:29,22/06/2017 19:29,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1465,13/08/2017 1:29,5/04/2015 21:59,7.8,17, DEPRECATED: Code,nan
CVE-2014-4655,13/08/2017 1:29,3/07/2014 4:22,4.9,189, Numeric Errors,nan
CVE-2017-9872,12/08/2017 1:29,25/06/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9813,12/08/2017 1:29,17/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9812,12/08/2017 1:29,17/07/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-9811,12/08/2017 1:29,17/07/2017 21:29,10.0,20, Improper Input Validation,nan
CVE-2017-9748,12/08/2017 1:29,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9614,12/08/2017 1:29,27/07/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9430,12/08/2017 1:29,5/06/2017 11:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9412,12/08/2017 1:29,27/07/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9259,12/08/2017 1:29,27/07/2017 6:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-3038,12/08/2017 1:29,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1297,12/08/2017 1:29,27/06/2017 16:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11548,12/08/2017 1:29,31/07/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11346,12/08/2017 1:29,17/07/2017 13:18,7.5,20, Improper Input Validation,nan
CVE-2017-11331,12/08/2017 1:29,31/07/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11330,12/08/2017 1:29,31/07/2017 13:29,4.3,787, Out-of-bounds Write,nan
CVE-2017-11320,12/08/2017 1:29,3/08/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000375,12/08/2017 1:29,19/06/2017 16:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0300,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0289,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0288,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0287,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0286,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0285,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0284,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0282,12/08/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2016-9351,12/08/2017 1:29,13/02/2017 21:59,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9349,12/08/2017 1:29,13/02/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-7508,12/08/2017 1:29,21/06/2017 20:29,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2226,12/08/2017 1:29,24/02/2017 20:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-8000,10/08/2017 22:23,17/07/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10093,10/08/2017 20:53,8/08/2017 15:29,5.0,200, Information Exposure,nan
CVE-2017-0256,10/08/2017 19:18,12/05/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-0249,10/08/2017 18:00,12/05/2017 14:29,7.5,20, Improper Input Validation,nan
CVE-2017-0247,10/08/2017 17:59,12/05/2017 14:29,5.0,20, Improper Input Validation,nan
CVE-2017-2273,10/08/2017 15:55,22/07/2017 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11593,10/08/2017 15:40,24/07/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9457,10/08/2017 15:37,25/07/2017 14:29,7.2,20, Improper Input Validation,nan
CVE-2017-10711,10/08/2017 15:31,24/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8006,10/08/2017 15:01,17/07/2017 14:29,4.3,287, Improper Authentication,nan
CVE-2017-12131,10/08/2017 14:58,1/08/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12068,10/08/2017 14:15,1/08/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7887,10/08/2017 14:12,7/08/2017 17:29,6.5,284, Improper Access Control,nan
CVE-2015-1332,10/08/2017 13:52,25/07/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6769,10/08/2017 13:47,7/08/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4463,10/08/2017 13:46,25/07/2017 18:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-2798,10/08/2017 13:44,25/07/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4462,10/08/2017 13:38,25/07/2017 18:29,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-6585,10/08/2017 13:25,25/07/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8013,10/08/2017 13:15,25/07/2017 18:29,5.0,310, Cryptographic Issues,nan
CVE-2017-6612,10/08/2017 12:29,25/07/2017 19:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11674,9/08/2017 20:07,27/07/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11673,9/08/2017 20:07,27/07/2017 6:29,7.5,20, Improper Input Validation,nan
CVE-2015-3839,9/08/2017 19:45,7/08/2017 17:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-11629,9/08/2017 19:44,26/07/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11718,9/08/2017 19:38,28/07/2017 5:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-12419,9/08/2017 19:33,5/08/2017 15:29,4.0,200, Information Exposure,nan
CVE-2017-11716,9/08/2017 19:33,28/07/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11715,9/08/2017 19:26,28/07/2017 5:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11760,9/08/2017 19:20,31/07/2017 17:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11742,9/08/2017 18:55,30/07/2017 14:29,4.6,426, Untrusted Search Path,nan
CVE-2017-11749,9/08/2017 18:50,30/07/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-11748,9/08/2017 18:50,30/07/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2015-3642,9/08/2017 18:30,2/08/2017 19:29,4.3,200, Information Exposure,nan
CVE-2017-12414,9/08/2017 17:50,3/08/2017 15:29,7.5,426, Untrusted Search Path,nan
CVE-2017-7442,9/08/2017 17:49,3/08/2017 8:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-12067,9/08/2017 17:40,1/08/2017 5:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9770,9/08/2017 17:38,2/08/2017 19:29,2.1,125, Out-of-bounds Read,nan
CVE-2017-12645,9/08/2017 17:35,7/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12649,9/08/2017 17:34,7/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10404,9/08/2017 17:34,7/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12648,9/08/2017 17:32,7/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12647,9/08/2017 17:32,7/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12646,9/08/2017 17:32,7/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9801,9/08/2017 17:31,7/08/2017 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-11725,9/08/2017 15:12,29/07/2017 5:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-4982,9/08/2017 15:10,17/07/2017 13:18,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1331,9/08/2017 12:43,4/08/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4465,9/08/2017 1:29,4/07/2016 22:59,5.0,20, Improper Input Validation,nan
CVE-2016-4433,9/08/2017 1:29,4/07/2016 22:59,5.0,20, Improper Input Validation,nan
CVE-2016-4431,9/08/2017 1:29,4/07/2016 22:59,5.0,20, Improper Input Validation,nan
CVE-2015-8608,9/08/2017 1:29,7/02/2017 15:59,7.5,125, Out-of-bounds Read,nan
CVE-2015-8607,9/08/2017 1:29,13/01/2016 15:59,7.5,20, Improper Input Validation,nan
CVE-2011-2730,9/08/2017 1:29,5/12/2012 17:55,7.5,16, Configuration,nan
CVE-2016-1391,8/08/2017 18:38,4/06/2016 1:59,6.5,20, Improper Input Validation,nan
CVE-2017-2282,8/08/2017 18:13,2/08/2017 16:29,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2281,8/08/2017 18:13,2/08/2017 16:29,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2280,8/08/2017 18:12,2/08/2017 16:29,8.3,798, Use of Hard-coded Credentials,nan
CVE-2017-11594,8/08/2017 16:47,24/07/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2138,8/08/2017 16:45,2/08/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6746,8/08/2017 16:40,25/07/2017 19:29,9.0,20, Improper Input Validation,nan
CVE-2014-9830,8/08/2017 16:28,7/08/2017 20:29,6.8,284, Improper Access Control,nan
CVE-2014-9831,8/08/2017 16:24,7/08/2017 20:29,6.8,284, Improper Access Control,nan
CVE-2014-9827,8/08/2017 16:22,7/08/2017 20:29,6.8,284, Improper Access Control,nan
CVE-2014-9828,8/08/2017 16:20,7/08/2017 20:29,6.8,284, Improper Access Control,nan
CVE-2017-6257,8/08/2017 16:19,28/07/2017 19:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-12200,8/08/2017 15:44,2/08/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9339,8/08/2017 15:20,17/07/2017 21:29,5.0,200, Information Exposure,nan
CVE-2016-0907,8/08/2017 15:18,30/05/2016 1:59,4.3,254, 7PK – Security Features,nan
CVE-2017-6260,8/08/2017 15:16,28/07/2017 19:29,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7947,8/08/2017 15:07,17/07/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-7977,8/08/2017 15:05,19/07/2017 18:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-11348,8/08/2017 14:28,17/07/2017 13:18,6.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5191,8/08/2017 14:19,28/07/2017 21:29,3.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-9475,8/08/2017 13:57,31/07/2017 3:29,4.3,287, Improper Authentication,nan
CVE-2017-8390,8/08/2017 13:56,2/08/2017 19:29,10.0,20, Improper Input Validation,nan
CVE-2017-9490,8/08/2017 13:48,31/07/2017 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11384,8/08/2017 1:33,2/08/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11383,8/08/2017 1:33,2/08/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6224,8/08/2017 1:33,22/07/2016 14:59,2.1,20, Improper Input Validation,nan
CVE-2009-0569,8/08/2017 1:33,13/02/2009 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0544,8/08/2017 1:33,12/02/2009 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0541,8/08/2017 1:33,25/02/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0540,8/08/2017 1:33,25/02/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0533,8/08/2017 1:33,11/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0532,8/08/2017 1:33,11/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0524,8/08/2017 1:33,26/02/2009 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0523,8/08/2017 1:33,26/02/2009 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0509,8/08/2017 1:33,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0508,8/08/2017 1:33,16/03/2009 19:30,7.5,200, Information Exposure,nan
CVE-2009-0507,8/08/2017 1:33,26/02/2009 16:17,4.0,16, Configuration,nan
CVE-2009-0504,8/08/2017 1:33,17/02/2009 17:30,2.1,200, Information Exposure,nan
CVE-2009-0503,8/08/2017 1:33,13/02/2009 17:30,2.1,255, Credentials Management,nan
CVE-2009-0487,8/08/2017 1:33,9/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0455,8/08/2017 1:33,11/02/2009 0:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0440,8/08/2017 1:33,22/02/2009 22:30,6.5,287, Improper Authentication,nan
CVE-2009-0438,8/08/2017 1:33,10/02/2009 22:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0437,8/08/2017 1:33,10/02/2009 22:30,1.9,200, Information Exposure,nan
CVE-2009-0436,8/08/2017 1:33,10/02/2009 22:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0434,8/08/2017 1:33,10/02/2009 22:30,1.9,200, Information Exposure,nan
CVE-2009-0432,8/08/2017 1:33,10/02/2009 22:30,5.0,16, Configuration,nan
CVE-2009-0424,8/08/2017 1:33,5/02/2009 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0419,8/08/2017 1:33,4/02/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0413,8/08/2017 1:33,3/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0411,8/08/2017 1:33,3/02/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0408,8/08/2017 1:33,3/02/2009 19:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0404,8/08/2017 1:33,3/02/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0402,8/08/2017 1:33,3/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0401,8/08/2017 1:33,3/02/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0368,8/08/2017 1:33,2/03/2009 22:30,2.1,310, Cryptographic Issues,nan
CVE-2009-0367,8/08/2017 1:33,5/03/2009 2:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-0363,8/08/2017 1:33,17/02/2009 17:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0348,8/08/2017 1:33,29/01/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-0347,8/08/2017 1:33,29/01/2009 19:30,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0332,8/08/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0326,8/08/2017 1:33,29/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0313,8/08/2017 1:33,28/01/2009 2:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0278,8/08/2017 1:33,27/01/2009 2:30,5.0,200, Information Exposure,nan
CVE-2009-0264,8/08/2017 1:33,26/01/2009 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0258,8/08/2017 1:33,22/01/2009 23:30,10.0,20, Improper Input Validation,nan
CVE-2009-0257,8/08/2017 1:33,22/01/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0256,8/08/2017 1:33,22/01/2009 23:30,7.5,287, Improper Authentication,nan
CVE-2009-0255,8/08/2017 1:33,22/01/2009 23:30,5.0,310, Cryptographic Issues,nan
CVE-2009-0240,8/08/2017 1:33,21/01/2009 2:30,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0216,8/08/2017 1:33,13/02/2009 17:30,10.0,255, Credentials Management,nan
CVE-2009-0215,8/08/2017 1:33,25/03/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0204,8/08/2017 1:33,30/01/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0180,8/08/2017 1:33,20/01/2009 16:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0173,8/08/2017 1:33,16/01/2009 21:30,5.0,20, Improper Input Validation,nan
CVE-2009-0172,8/08/2017 1:33,16/01/2009 21:30,5.0,20, Improper Input Validation,nan
CVE-2009-0169,8/08/2017 1:33,16/01/2009 21:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0162,8/08/2017 1:33,13/05/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0161,8/08/2017 1:33,13/05/2009 15:30,6.4,20, Improper Input Validation,nan
CVE-2009-0157,8/08/2017 1:33,13/05/2009 15:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0156,8/08/2017 1:33,13/05/2009 15:30,4.3,20, Improper Input Validation,nan
CVE-2009-0155,8/08/2017 1:33,13/05/2009 15:30,6.8,189, Numeric Errors,nan
CVE-2009-0152,8/08/2017 1:33,13/05/2009 15:30,5.0,16, Configuration,nan
CVE-2009-0150,8/08/2017 1:33,13/05/2009 15:30,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0149,8/08/2017 1:33,13/05/2009 15:30,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0145,8/08/2017 1:33,13/05/2009 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0144,8/08/2017 1:33,13/05/2009 15:30,4.3,16, Configuration,nan
CVE-2009-0141,8/08/2017 1:33,13/02/2009 0:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-0112,8/08/2017 1:33,9/01/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0063,8/08/2017 1:33,24/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0057,8/08/2017 1:33,22/01/2009 18:30,4.3,20, Improper Input Validation,nan
CVE-2009-0032,8/08/2017 1:33,27/01/2009 20:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0013,8/08/2017 1:33,13/02/2009 0:30,2.1,255, Credentials Management,nan
CVE-2008-6122,8/08/2017 1:33,11/02/2009 17:30,7.8,20, Improper Input Validation,nan
CVE-2008-6121,8/08/2017 1:33,11/02/2009 17:30,7.5,20, Improper Input Validation,nan
CVE-2008-6120,8/08/2017 1:33,11/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6119,8/08/2017 1:33,11/02/2009 17:30,7.5,20, Improper Input Validation,nan
CVE-2008-6113,8/08/2017 1:33,11/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6109,8/08/2017 1:33,11/02/2009 0:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-6107,8/08/2017 1:33,10/02/2009 22:00,4.9,399, Resource Management Errors,nan
CVE-2008-6103,8/08/2017 1:33,10/02/2009 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6098,8/08/2017 1:33,9/02/2009 18:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6097,8/08/2017 1:33,9/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6095,8/08/2017 1:33,9/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6094,8/08/2017 1:33,9/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6085,8/08/2017 1:33,6/02/2009 11:30,7.6,189, Numeric Errors,nan
CVE-2008-6075,8/08/2017 1:33,6/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6073,8/08/2017 1:33,10/02/2009 6:59,4.9,310, Cryptographic Issues,nan
CVE-2008-6071,8/08/2017 1:33,10/02/2009 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6070,8/08/2017 1:33,10/02/2009 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6066,8/08/2017 1:33,5/02/2009 2:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6059,8/08/2017 1:33,5/02/2009 0:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6054,8/08/2017 1:33,4/02/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6053,8/08/2017 1:33,4/02/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6052,8/08/2017 1:33,4/02/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6035,8/08/2017 1:33,3/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6034,8/08/2017 1:33,3/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6026,8/08/2017 1:33,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6024,8/08/2017 1:33,2/02/2009 22:00,5.4,399, Resource Management Errors,nan
CVE-2008-6020,8/08/2017 1:33,2/02/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6019,8/08/2017 1:33,2/02/2009 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6016,8/08/2017 1:33,30/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6015,8/08/2017 1:33,30/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6013,8/08/2017 1:33,30/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6000,8/08/2017 1:33,28/01/2009 15:30,7.2,399, Resource Management Errors,nan
CVE-2008-5999,8/08/2017 1:33,28/01/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5997,8/08/2017 1:33,28/01/2009 15:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5996,8/08/2017 1:33,28/01/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5995,8/08/2017 1:33,28/01/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5994,8/08/2017 1:33,28/01/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5977,8/08/2017 1:33,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5976,8/08/2017 1:33,27/01/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5975,8/08/2017 1:33,27/01/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5971,8/08/2017 1:33,27/01/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5970,8/08/2017 1:33,27/01/2009 1:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5954,8/08/2017 1:33,23/01/2009 19:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5947,8/08/2017 1:33,22/01/2009 11:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5946,8/08/2017 1:33,22/01/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5945,8/08/2017 1:33,22/01/2009 11:30,7.5,287, Improper Authentication,nan
CVE-2008-5944,8/08/2017 1:33,22/01/2009 11:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5943,8/08/2017 1:33,22/01/2009 11:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5942,8/08/2017 1:33,22/01/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5940,8/08/2017 1:33,22/01/2009 11:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5916,8/08/2017 1:33,21/01/2009 2:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-5906,8/08/2017 1:33,15/01/2009 17:30,6.8,20, Improper Input Validation,nan
CVE-2008-5905,8/08/2017 1:33,15/01/2009 17:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-5904,8/08/2017 1:33,15/01/2009 17:30,7.5,20, Improper Input Validation,nan
CVE-2008-5903,8/08/2017 1:33,15/01/2009 17:30,7.5,189, Numeric Errors,nan
CVE-2008-5876,8/08/2017 1:33,8/01/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5872,8/08/2017 1:33,8/01/2009 18:30,7.8,20, Improper Input Validation,nan
CVE-2008-5871,8/08/2017 1:33,8/01/2009 18:30,6.4,255, Credentials Management,nan
CVE-2008-5867,8/08/2017 1:33,7/01/2009 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5858,8/08/2017 1:33,6/01/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5849,8/08/2017 1:33,6/01/2009 17:30,5.0,200, Information Exposure,nan
CVE-2008-5846,8/08/2017 1:33,5/01/2009 20:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5839,8/08/2017 1:33,5/01/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5827,8/08/2017 1:33,2/01/2009 19:30,7.5,16, Configuration,nan
CVE-2008-5826,8/08/2017 1:33,2/01/2009 19:30,7.8,20, Improper Input Validation,nan
CVE-2008-5825,8/08/2017 1:33,2/01/2009 19:30,2.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5822,8/08/2017 1:33,2/01/2009 19:30,5.0,399, Resource Management Errors,nan
CVE-2008-5821,8/08/2017 1:33,2/01/2009 19:30,5.0,399, Resource Management Errors,nan
CVE-2008-5813,8/08/2017 1:33,2/01/2009 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5808,8/08/2017 1:33,2/01/2009 18:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5807,8/08/2017 1:33,31/12/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5800,8/08/2017 1:33,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5799,8/08/2017 1:33,31/12/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5798,8/08/2017 1:33,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5797,8/08/2017 1:33,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5796,8/08/2017 1:33,31/12/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5795,8/08/2017 1:33,31/12/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5786,8/08/2017 1:33,31/12/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5769,8/08/2017 1:33,30/12/2008 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5760,8/08/2017 1:33,30/12/2008 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5759,8/08/2017 1:33,30/12/2008 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5758,8/08/2017 1:33,30/12/2008 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5746,8/08/2017 1:33,29/12/2008 15:24,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5744,8/08/2017 1:33,26/12/2008 21:30,7.2,189, Numeric Errors,nan
CVE-2008-5743,8/08/2017 1:33,26/12/2008 21:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5734,8/08/2017 1:33,26/12/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5724,8/08/2017 1:33,26/12/2008 17:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-5723,8/08/2017 1:33,26/12/2008 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5720,8/08/2017 1:33,26/12/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5716,8/08/2017 1:33,24/12/2008 18:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-5714,8/08/2017 1:33,24/12/2008 18:29,7.8,189, Numeric Errors,nan
CVE-2008-5710,8/08/2017 1:33,24/12/2008 18:29,5.0,16, Configuration,nan
CVE-2008-5696,8/08/2017 1:33,19/12/2008 18:30,9.3,255, Credentials Management,nan
CVE-2008-5687,8/08/2017 1:33,19/12/2008 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5673,8/08/2017 1:33,19/12/2008 1:52,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5672,8/08/2017 1:33,19/12/2008 1:52,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5662,8/08/2017 1:33,17/12/2008 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5661,8/08/2017 1:33,17/12/2008 20:30,5.4,399, Resource Management Errors,nan
CVE-2008-5659,8/08/2017 1:33,17/12/2008 20:30,7.5,310, Cryptographic Issues,nan
CVE-2008-5657,8/08/2017 1:33,17/12/2008 20:30,7.5,20, Improper Input Validation,nan
CVE-2008-5656,8/08/2017 1:33,17/12/2008 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5655,8/08/2017 1:33,17/12/2008 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5645,8/08/2017 1:33,17/12/2008 18:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5644,8/08/2017 1:33,17/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5620,8/08/2017 1:33,17/12/2008 2:30,7.8,399, Resource Management Errors,nan
CVE-2008-5617,8/08/2017 1:33,17/12/2008 2:30,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5514,8/08/2017 1:33,23/12/2008 18:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5499,8/08/2017 1:33,18/12/2008 0:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5434,8/08/2017 1:33,11/12/2008 15:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5432,8/08/2017 1:33,11/12/2008 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5411,8/08/2017 1:33,10/12/2008 0:30,5.0,310, Cryptographic Issues,nan
CVE-2008-5408,8/08/2017 1:33,10/12/2008 6:44,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5407,8/08/2017 1:33,10/12/2008 6:44,9.4,287, Improper Authentication,nan
CVE-2008-5398,8/08/2017 1:33,9/12/2008 0:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-5397,8/08/2017 1:33,9/12/2008 0:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-5382,8/08/2017 1:33,9/12/2008 0:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5330,8/08/2017 1:33,5/12/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5328,8/08/2017 1:33,5/12/2008 0:30,4.6,310, Cryptographic Issues,nan
CVE-2008-5327,8/08/2017 1:33,5/12/2008 0:30,6.5,255, Credentials Management,nan
CVE-2008-5326,8/08/2017 1:33,5/12/2008 0:30,4.4,255, Credentials Management,nan
CVE-2008-5304,8/08/2017 1:33,10/12/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5301,8/08/2017 1:33,1/12/2008 17:30,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5299,8/08/2017 1:33,1/12/2008 15:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5296,8/08/2017 1:33,1/12/2008 15:30,6.8,287, Improper Authentication,nan
CVE-2008-5278,8/08/2017 1:33,28/11/2008 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5275,8/08/2017 1:33,28/11/2008 19:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5274,8/08/2017 1:33,28/11/2008 19:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5257,8/08/2017 1:33,27/11/2008 0:30,4.3,20, Improper Input Validation,nan
CVE-2008-5256,8/08/2017 1:33,27/11/2008 0:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5246,8/08/2017 1:33,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5228,8/08/2017 1:33,25/11/2008 23:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5224,8/08/2017 1:33,25/11/2008 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5207,8/08/2017 1:33,21/11/2008 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5206,8/08/2017 1:33,21/11/2008 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5199,8/08/2017 1:33,21/11/2008 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5186,8/08/2017 1:33,21/11/2008 2:30,7.5,20, Improper Input Validation,nan
CVE-2008-5185,8/08/2017 1:33,21/11/2008 2:30,5.0,399, Resource Management Errors,nan
CVE-2008-5181,8/08/2017 1:33,20/11/2008 15:30,5.0,399, Resource Management Errors,nan
CVE-2008-5177,8/08/2017 1:33,20/11/2008 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5175,8/08/2017 1:33,19/11/2008 18:11,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5172,8/08/2017 1:33,19/11/2008 18:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5165,8/08/2017 1:33,19/11/2008 18:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5157,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5154,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5153,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5152,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5150,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5147,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5145,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5141,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5140,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5138,8/08/2017 1:33,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5133,8/08/2017 1:33,18/11/2008 16:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-5130,8/08/2017 1:33,18/11/2008 11:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5129,8/08/2017 1:33,18/11/2008 11:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5128,8/08/2017 1:33,18/11/2008 11:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5126,8/08/2017 1:33,18/11/2008 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5122,8/08/2017 1:33,18/11/2008 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5119,8/08/2017 1:33,18/11/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5117,8/08/2017 1:33,18/11/2008 0:30,6.4,20, Improper Input Validation,nan
CVE-2008-5114,8/08/2017 1:33,18/11/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5113,8/08/2017 1:33,17/11/2008 23:30,4.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5104,8/08/2017 1:33,17/11/2008 18:18,7.2,255, Credentials Management,nan
CVE-2008-5103,8/08/2017 1:33,17/11/2008 18:18,7.2,255, Credentials Management,nan
CVE-2008-5101,8/08/2017 1:33,17/11/2008 18:18,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5099,8/08/2017 1:33,17/11/2008 18:18,4.6,200, Information Exposure,nan
CVE-2008-5093,8/08/2017 1:33,14/11/2008 19:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5091,8/08/2017 1:33,14/11/2008 19:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5082,8/08/2017 1:33,30/01/2009 19:30,6.0,287, Improper Authentication,nan
CVE-2008-5080,8/08/2017 1:33,3/12/2008 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5076,8/08/2017 1:33,14/11/2008 18:09,4.6,200, Information Exposure,nan
CVE-2008-5064,8/08/2017 1:33,13/11/2008 17:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5057,8/08/2017 1:33,13/11/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5056,8/08/2017 1:33,13/11/2008 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5055,8/08/2017 1:33,13/11/2008 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5048,8/08/2017 1:33,13/11/2008 2:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5041,8/08/2017 1:33,12/11/2008 21:11,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-5038,8/08/2017 1:33,12/11/2008 21:09,10.0,399, Resource Management Errors,nan
CVE-2008-5035,8/08/2017 1:33,10/11/2008 16:15,5.0,399, Resource Management Errors,nan
CVE-2008-5033,8/08/2017 1:33,10/11/2008 16:15,7.8,399, Resource Management Errors,nan
CVE-2008-5030,8/08/2017 1:33,10/11/2008 16:15,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5028,8/08/2017 1:33,10/11/2008 15:23,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5011,8/08/2017 1:33,10/11/2008 15:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5008,8/08/2017 1:33,10/11/2008 14:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5007,8/08/2017 1:33,10/11/2008 14:12,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4995,8/08/2017 1:33,7/11/2008 19:36,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4994,8/08/2017 1:33,7/11/2008 19:36,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4992,8/08/2017 1:33,7/11/2008 19:35,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-4991,8/08/2017 1:33,6/11/2008 19:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4987,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4986,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4985,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4984,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4983,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4982,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4981,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4978,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4976,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4974,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4973,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4972,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4971,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4970,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4969,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4968,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4967,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4966,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4965,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4964,8/08/2017 1:33,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4959,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4958,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4957,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4952,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4951,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4949,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4945,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4944,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4942,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4941,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4940,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4939,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4938,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4937,8/08/2017 1:33,5/11/2008 15:00,2.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4936,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4935,8/08/2017 1:33,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4911,8/08/2017 1:32,4/11/2008 0:57,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4909,8/08/2017 1:32,4/11/2008 0:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4908,8/08/2017 1:32,4/11/2008 0:57,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4907,8/08/2017 1:32,4/11/2008 0:58,4.3,20, Improper Input Validation,nan
CVE-2008-4904,8/08/2017 1:32,4/11/2008 0:58,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4903,8/08/2017 1:32,4/11/2008 0:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4899,8/08/2017 1:32,4/11/2008 0:58,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4898,8/08/2017 1:32,4/11/2008 0:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4896,8/08/2017 1:32,4/11/2008 0:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4893,8/08/2017 1:32,4/11/2008 0:58,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4892,8/08/2017 1:32,4/11/2008 0:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4891,8/08/2017 1:32,4/11/2008 0:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4872,8/08/2017 1:32,1/11/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4867,8/08/2017 1:32,1/11/2008 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4866,8/08/2017 1:32,1/11/2008 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4832,8/08/2017 1:32,17/11/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4811,8/08/2017 1:32,31/10/2008 18:09,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4810,8/08/2017 1:32,31/10/2008 18:09,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4808,8/08/2017 1:32,31/10/2008 18:09,5.0,200, Information Exposure,nan
CVE-2008-4807,8/08/2017 1:32,31/10/2008 18:09,2.1,255, Credentials Management,nan
CVE-2008-4806,8/08/2017 1:32,31/10/2008 18:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4805,8/08/2017 1:32,31/10/2008 18:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4803,8/08/2017 1:32,31/10/2008 18:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4802,8/08/2017 1:32,31/10/2008 18:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4799,8/08/2017 1:32,31/10/2008 0:00,4.3,189, Numeric Errors,nan
CVE-2008-4798,8/08/2017 1:32,30/10/2008 20:56,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4797,8/08/2017 1:32,30/10/2008 20:56,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4795,8/08/2017 1:32,30/10/2008 20:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4794,8/08/2017 1:32,30/10/2008 20:56,9.3,20, Improper Input Validation,nan
CVE-2008-4790,8/08/2017 1:32,29/10/2008 15:31,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4789,8/08/2017 1:32,29/10/2008 15:31,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4776,8/08/2017 1:32,28/10/2008 19:46,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4769,8/08/2017 1:32,28/10/2008 10:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4768,8/08/2017 1:32,28/10/2008 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4766,8/08/2017 1:32,28/10/2008 2:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4761,8/08/2017 1:32,28/10/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4747,8/08/2017 1:32,27/10/2008 20:00,2.1,200, Information Exposure,nan
CVE-2008-4746,8/08/2017 1:32,27/10/2008 17:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4745,8/08/2017 1:32,27/10/2008 17:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4744,8/08/2017 1:32,27/10/2008 17:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4743,8/08/2017 1:32,27/10/2008 17:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4710,8/08/2017 1:32,23/10/2008 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4701,8/08/2017 1:32,22/10/2008 22:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4698,8/08/2017 1:32,23/10/2008 22:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-4697,8/08/2017 1:32,23/10/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4695,8/08/2017 1:32,23/10/2008 22:00,9.3,200, Information Exposure,nan
CVE-2008-4694,8/08/2017 1:32,23/10/2008 22:00,9.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4693,8/08/2017 1:32,22/10/2008 18:00,5.0,200, Information Exposure,nan
CVE-2008-4689,8/08/2017 1:32,22/10/2008 18:00,7.5,287, Improper Authentication,nan
CVE-2008-4679,8/08/2017 1:32,22/10/2008 18:00,6.8,287, Improper Authentication,nan
CVE-2008-4678,8/08/2017 1:32,22/10/2008 18:00,7.8,399, Resource Management Errors,nan
CVE-2008-4677,8/08/2017 1:32,22/10/2008 18:00,4.3,255, Credentials Management,nan
CVE-2008-4672,8/08/2017 1:32,22/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4671,8/08/2017 1:32,22/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4670,8/08/2017 1:32,22/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4669,8/08/2017 1:32,22/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4664,8/08/2017 1:32,22/10/2008 0:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4663,8/08/2017 1:32,22/10/2008 2:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4660,8/08/2017 1:32,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4651,8/08/2017 1:32,22/10/2008 0:11,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4649,8/08/2017 1:32,22/10/2008 0:11,7.5,287, Improper Authentication,nan
CVE-2008-4648,8/08/2017 1:32,22/10/2008 0:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4647,8/08/2017 1:32,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4637,8/08/2017 1:32,21/10/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4635,8/08/2017 1:32,21/10/2008 1:18,5.0,200, Information Exposure,nan
CVE-2008-4634,8/08/2017 1:32,21/10/2008 1:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4633,8/08/2017 1:32,21/10/2008 1:18,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4631,8/08/2017 1:32,21/10/2008 1:18,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4629,8/08/2017 1:32,21/10/2008 1:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4601,8/08/2017 1:32,18/10/2008 0:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4596,8/08/2017 1:32,17/10/2008 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4593,8/08/2017 1:32,17/10/2008 20:33,1.2,200, Information Exposure,nan
CVE-2008-4581,8/08/2017 1:32,15/10/2008 20:08,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4564,8/08/2017 1:32,18/03/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4563,8/08/2017 1:32,11/03/2009 14:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4553,8/08/2017 1:32,15/10/2008 20:07,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4545,8/08/2017 1:32,13/10/2008 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4543,8/08/2017 1:32,13/10/2008 20:00,7.1,399, Resource Management Errors,nan
CVE-2008-4542,8/08/2017 1:32,13/10/2008 20:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4541,8/08/2017 1:32,13/10/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4539,8/08/2017 1:32,29/12/2008 15:24,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4537,8/08/2017 1:32,10/10/2008 18:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4536,8/08/2017 1:32,10/10/2008 18:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4535,8/08/2017 1:32,10/10/2008 18:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4534,8/08/2017 1:32,10/10/2008 18:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4533,8/08/2017 1:32,10/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4531,8/08/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4530,8/08/2017 1:32,9/10/2008 18:14,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4525,8/08/2017 1:32,9/10/2008 18:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4520,8/08/2017 1:32,9/10/2008 18:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4515,8/08/2017 1:32,9/10/2008 18:00,7.5,287, Improper Authentication,nan
CVE-2008-4513,8/08/2017 1:32,9/10/2008 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4508,8/08/2017 1:32,9/10/2008 18:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4505,8/08/2017 1:32,9/10/2008 18:00,7.8,20, Improper Input Validation,nan
CVE-2008-4504,8/08/2017 1:32,9/10/2008 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4499,8/08/2017 1:32,9/10/2008 0:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4489,8/08/2017 1:32,8/10/2008 2:00,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4488,8/08/2017 1:32,8/10/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4487,8/08/2017 1:32,8/10/2008 2:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4485,8/08/2017 1:32,8/10/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4482,8/08/2017 1:32,8/10/2008 2:00,7.8,20, Improper Input Validation,nan
CVE-2008-4481,8/08/2017 1:32,8/10/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4477,8/08/2017 1:32,8/10/2008 0:00,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4476,8/08/2017 1:32,7/10/2008 21:11,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4475,8/08/2017 1:32,7/10/2008 21:11,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4459,8/08/2017 1:32,7/10/2008 0:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4450,8/08/2017 1:32,6/10/2008 23:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4448,8/08/2017 1:32,6/10/2008 19:56,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4447,8/08/2017 1:32,6/10/2008 19:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4439,8/08/2017 1:32,3/10/2008 22:22,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4438,8/08/2017 1:32,3/10/2008 22:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4437,8/08/2017 1:32,3/10/2008 22:22,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4435,8/08/2017 1:32,3/10/2008 22:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4434,8/08/2017 1:32,3/10/2008 22:22,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4433,8/08/2017 1:32,3/10/2008 22:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4432,8/08/2017 1:32,3/10/2008 22:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4431,8/08/2017 1:32,3/10/2008 22:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4424,8/08/2017 1:32,3/10/2008 22:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4414,8/08/2017 1:32,7/11/2008 19:35,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4413,8/08/2017 1:32,4/11/2008 18:29,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4411,8/08/2017 1:32,13/10/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4409,8/08/2017 1:32,3/10/2008 17:41,5.0,399, Resource Management Errors,nan
CVE-2008-4408,8/08/2017 1:32,3/10/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4406,8/08/2017 1:32,3/10/2008 17:41,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4403,8/08/2017 1:32,3/10/2008 15:07,5.0,399, Resource Management Errors,nan
CVE-2008-4402,8/08/2017 1:32,3/10/2008 15:07,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4400,8/08/2017 1:32,14/10/2008 21:10,5.0,20, Improper Input Validation,nan
CVE-2008-4399,8/08/2017 1:32,14/10/2008 21:10,5.0,20, Improper Input Validation,nan
CVE-2008-4396,8/08/2017 1:32,2/10/2008 20:37,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4395,8/08/2017 1:32,6/11/2008 15:55,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4393,8/08/2017 1:32,7/10/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4392,8/08/2017 1:32,19/02/2009 16:30,6.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-4389,8/08/2017 1:32,17/06/2010 16:30,9.3,287, Improper Authentication,nan
CVE-2008-4387,8/08/2017 1:32,10/11/2008 16:15,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4385,8/08/2017 1:32,14/10/2008 21:10,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4384,8/08/2017 1:32,7/10/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4368,8/08/2017 1:32,1/10/2008 15:38,5.0,310, Cryptographic Issues,nan
CVE-2008-4365,8/08/2017 1:32,30/09/2008 23:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4349,8/08/2017 1:32,30/09/2008 18:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4348,8/08/2017 1:32,30/09/2008 18:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4344,8/08/2017 1:32,30/09/2008 17:22,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4339,8/08/2017 1:32,30/09/2008 17:22,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4337,8/08/2017 1:32,30/09/2008 17:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4320,8/08/2017 1:32,29/09/2008 19:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4311,8/08/2017 1:32,10/12/2008 0:30,4.6,16, Configuration,nan
CVE-2008-4305,8/08/2017 1:32,23/12/2008 18:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-4304,8/08/2017 1:32,23/12/2008 18:30,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-4303,8/08/2017 1:32,23/12/2008 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4294,8/08/2017 1:32,27/09/2008 10:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4285,8/08/2017 1:32,17/02/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2008-4284,8/08/2017 1:32,10/02/2009 22:30,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4283,8/08/2017 1:32,10/02/2009 22:30,10.0,20, Improper Input Validation,nan
CVE-2008-4246,8/08/2017 1:32,25/09/2008 19:25,5.0,399, Resource Management Errors,nan
CVE-2008-4242,8/08/2017 1:32,25/09/2008 19:25,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-4234,8/08/2017 1:32,17/12/2008 1:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-4215,8/08/2017 1:32,10/10/2008 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-4214,8/08/2017 1:32,10/10/2008 10:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-4212,8/08/2017 1:32,10/10/2008 10:30,10.0,16, Configuration,nan
CVE-2008-4200,8/08/2017 1:32,27/09/2008 10:30,6.4,20, Improper Input Validation,nan
CVE-2008-4199,8/08/2017 1:32,27/09/2008 10:30,5.0,200, Information Exposure,nan
CVE-2008-4197,8/08/2017 1:32,27/09/2008 10:30,9.3,399, Resource Management Errors,nan
CVE-2008-4195,8/08/2017 1:32,27/09/2008 10:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4194,8/08/2017 1:32,24/09/2008 11:42,5.0,399, Resource Management Errors,nan
CVE-2008-4192,8/08/2017 1:32,29/09/2008 17:17,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4191,8/08/2017 1:32,24/09/2008 11:42,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4186,8/08/2017 1:32,23/09/2008 15:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4184,8/08/2017 1:32,23/09/2008 15:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4182,8/08/2017 1:32,23/09/2008 15:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4174,8/08/2017 1:32,23/09/2008 15:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4172,8/08/2017 1:32,22/09/2008 18:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4165,8/08/2017 1:32,22/09/2008 18:34,4.0,310, Cryptographic Issues,nan
CVE-2008-4153,8/08/2017 1:32,24/09/2008 5:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4152,8/08/2017 1:32,24/09/2008 5:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4149,8/08/2017 1:32,24/09/2008 5:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4148,8/08/2017 1:32,24/09/2008 5:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4147,8/08/2017 1:32,24/09/2008 5:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4143,8/08/2017 1:32,24/09/2008 5:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4132,8/08/2017 1:32,19/09/2008 17:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4130,8/08/2017 1:32,18/09/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4129,8/08/2017 1:32,18/09/2008 20:00,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-4118,8/08/2017 1:32,18/09/2008 15:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4108,8/08/2017 1:32,18/09/2008 17:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4105,8/08/2017 1:32,18/09/2008 17:59,7.5,20, Improper Input Validation,nan
CVE-2008-4104,8/08/2017 1:32,18/09/2008 17:59,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4103,8/08/2017 1:32,18/09/2008 17:59,5.0,20, Improper Input Validation,nan
CVE-2008-4097,8/08/2017 1:32,18/09/2008 15:04,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-4096,8/08/2017 1:32,18/09/2008 15:04,8.5,20, Improper Input Validation,nan
CVE-2008-4085,8/08/2017 1:32,15/09/2008 17:12,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4076,8/08/2017 1:32,15/09/2008 15:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4056,8/08/2017 1:32,11/09/2008 21:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4053,8/08/2017 1:32,11/09/2008 21:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4052,8/08/2017 1:32,11/09/2008 21:06,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4051,8/08/2017 1:32,11/09/2008 21:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4046,8/08/2017 1:32,11/09/2008 21:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4045,8/08/2017 1:32,11/09/2008 21:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4040,8/08/2017 1:32,11/09/2008 21:06,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3972,8/08/2017 1:32,11/09/2008 1:13,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-3971,8/08/2017 1:32,11/09/2008 1:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3970,8/08/2017 1:32,11/09/2008 1:13,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-3969,8/08/2017 1:32,11/09/2008 1:13,7.5,399, Resource Management Errors,nan
CVE-2008-3968,8/08/2017 1:32,11/09/2008 1:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3964,8/08/2017 1:32,11/09/2008 1:13,4.3,399, Resource Management Errors,nan
CVE-2008-3962,8/08/2017 1:32,11/09/2008 1:13,2.6,200, Information Exposure,nan
CVE-2008-3960,8/08/2017 1:32,11/09/2008 1:13,5.0,20, Improper Input Validation,nan
CVE-2008-3957,8/08/2017 1:32,11/09/2008 1:13,9.3,20, Improper Input Validation,nan
CVE-2008-3956,8/08/2017 1:32,11/09/2008 1:13,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3942,8/08/2017 1:32,5/09/2008 15:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3940,8/08/2017 1:32,5/09/2008 15:08,4.4,134, Use of Externally-Controlled Format String,nan
CVE-2008-3931,8/08/2017 1:32,4/09/2008 18:41,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3930,8/08/2017 1:32,4/09/2008 18:41,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3929,8/08/2017 1:32,4/09/2008 18:41,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3928,8/08/2017 1:32,4/09/2008 18:41,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3927,8/08/2017 1:32,4/09/2008 18:41,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3918,8/08/2017 1:32,4/09/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3915,8/08/2017 1:32,11/09/2008 1:13,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3913,8/08/2017 1:32,11/09/2008 1:13,5.0,399, Resource Management Errors,nan
CVE-2008-3912,8/08/2017 1:32,11/09/2008 1:13,5.0,399, Resource Management Errors,nan
CVE-2008-3911,8/08/2017 1:32,4/09/2008 17:41,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3910,8/08/2017 1:32,4/09/2008 17:41,10.0,189, Numeric Errors,nan
CVE-2008-3907,8/08/2017 1:32,4/09/2008 17:41,6.8,20, Improper Input Validation,nan
CVE-2008-3904,8/08/2017 1:32,4/09/2008 17:41,7.5,20, Improper Input Validation,nan
CVE-2008-3903,8/08/2017 1:32,4/09/2008 19:41,3.5,200, Information Exposure,nan
CVE-2008-3890,8/08/2017 1:32,5/09/2008 16:08,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3887,8/08/2017 1:32,2/09/2008 15:41,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3886,8/08/2017 1:32,2/09/2008 15:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3885,8/08/2017 1:32,2/09/2008 15:41,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3884,8/08/2017 1:32,2/09/2008 15:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3883,8/08/2017 1:32,2/09/2008 15:41,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3866,8/08/2017 1:32,21/01/2009 20:30,4.6,287, Improper Authentication,nan
CVE-2008-3860,8/08/2017 1:32,29/08/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3858,8/08/2017 1:32,28/08/2008 17:41,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-3857,8/08/2017 1:32,28/08/2008 17:41,4.6,200, Information Exposure,nan
CVE-2008-3856,8/08/2017 1:32,28/08/2008 17:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3853,8/08/2017 1:32,28/08/2008 17:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3850,8/08/2017 1:32,27/08/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3849,8/08/2017 1:32,27/08/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3847,8/08/2017 1:32,27/08/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3846,8/08/2017 1:32,27/08/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3844,8/08/2017 1:32,27/08/2008 20:41,9.3,20, Improper Input Validation,nan
CVE-2008-3836,8/08/2017 1:32,24/09/2008 20:37,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3832,8/08/2017 1:32,3/10/2008 17:41,4.9,399, Resource Management Errors,nan
CVE-2008-3818,8/08/2017 1:32,16/01/2009 21:30,7.8,20, Improper Input Validation,nan
CVE-2008-3814,8/08/2017 1:32,8/10/2008 22:00,5.8,287, Improper Authentication,nan
CVE-2008-3796,8/08/2017 1:32,27/08/2008 15:21,5.0,20, Improper Input Validation,nan
CVE-2008-3789,8/08/2017 1:32,27/08/2008 20:41,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-3786,8/08/2017 1:32,26/08/2008 14:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3782,8/08/2017 1:32,26/08/2008 14:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3781,8/08/2017 1:32,26/08/2008 14:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3778,8/08/2017 1:32,25/08/2008 21:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3777,8/08/2017 1:32,25/08/2008 21:41,2.1,200, Information Exposure,nan
CVE-2008-3776,8/08/2017 1:32,25/08/2008 21:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3774,8/08/2017 1:32,22/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3773,8/08/2017 1:32,22/08/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3766,8/08/2017 1:32,22/08/2008 16:41,5.0,20, Improper Input Validation,nan
CVE-2008-3760,8/08/2017 1:32,21/08/2008 17:41,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3753,8/08/2017 1:32,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3752,8/08/2017 1:32,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3747,8/08/2017 1:32,27/08/2008 15:21,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3745,8/08/2017 1:32,27/08/2008 15:21,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3744,8/08/2017 1:32,27/08/2008 15:21,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3743,8/08/2017 1:32,27/08/2008 15:21,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3742,8/08/2017 1:32,27/08/2008 15:21,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3741,8/08/2017 1:32,27/08/2008 15:21,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3740,8/08/2017 1:32,27/08/2008 15:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3739,8/08/2017 1:32,27/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3737,8/08/2017 1:32,27/08/2008 20:41,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3736,8/08/2017 1:32,27/08/2008 20:41,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3735,8/08/2017 1:32,20/08/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3730,8/08/2017 1:32,20/08/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3729,8/08/2017 1:32,20/08/2008 16:41,7.5,287, Improper Authentication,nan
CVE-2008-3728,8/08/2017 1:32,20/08/2008 16:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3726,8/08/2017 1:32,20/08/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3724,8/08/2017 1:32,20/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3723,8/08/2017 1:32,20/08/2008 16:41,6.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3722,8/08/2017 1:32,20/08/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3717,8/08/2017 1:32,19/08/2008 19:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3714,8/08/2017 1:32,19/08/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3710,8/08/2017 1:32,19/08/2008 19:41,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3709,8/08/2017 1:32,19/08/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3707,8/08/2017 1:32,19/08/2008 19:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3705,8/08/2017 1:32,19/08/2008 19:41,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3701,8/08/2017 1:32,15/08/2008 20:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3700,8/08/2017 1:32,15/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3699,8/08/2017 1:32,14/08/2008 23:41,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3688,8/08/2017 1:32,14/08/2008 22:41,4.3,399, Resource Management Errors,nan
CVE-2008-3687,8/08/2017 1:32,14/08/2008 22:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3686,8/08/2017 1:32,14/08/2008 22:41,4.9,399, Resource Management Errors,nan
CVE-2008-3682,8/08/2017 1:32,14/08/2008 19:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3679,8/08/2017 1:32,14/08/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3678,8/08/2017 1:32,14/08/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3677,8/08/2017 1:32,14/08/2008 19:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3672,8/08/2017 1:32,13/08/2008 19:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3668,8/08/2017 1:32,13/08/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3667,8/08/2017 1:32,13/08/2008 18:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3648,8/08/2017 1:32,12/08/2008 23:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3647,8/08/2017 1:32,10/10/2008 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3646,8/08/2017 1:32,10/10/2008 10:30,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-3645,8/08/2017 1:32,10/10/2008 10:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3642,8/08/2017 1:32,10/10/2008 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3638,8/08/2017 1:32,26/09/2008 16:21,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3637,8/08/2017 1:32,26/09/2008 16:21,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3622,8/08/2017 1:32,16/09/2008 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3621,8/08/2017 1:32,16/09/2008 23:00,9.3,399, Resource Management Errors,nan
CVE-2008-3619,8/08/2017 1:32,16/09/2008 23:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-3618,8/08/2017 1:32,16/09/2008 23:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3617,8/08/2017 1:32,16/09/2008 23:00,5.0,255, Credentials Management,nan
CVE-2008-3616,8/08/2017 1:32,16/09/2008 23:00,10.0,189, Numeric Errors,nan
CVE-2008-3613,8/08/2017 1:32,16/09/2008 23:00,6.1,399, Resource Management Errors,nan
CVE-2008-3611,8/08/2017 1:32,16/09/2008 23:00,6.3,287, Improper Authentication,nan
CVE-2008-3610,8/08/2017 1:32,16/09/2008 23:00,7.6,287, Improper Authentication,nan
CVE-2008-3609,8/08/2017 1:32,16/09/2008 23:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3608,8/08/2017 1:32,16/09/2008 23:00,9.3,399, Resource Management Errors,nan
CVE-2008-3597,8/08/2017 1:32,12/08/2008 17:41,5.0,20, Improper Input Validation,nan
CVE-2008-3596,8/08/2017 1:32,12/08/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3584,8/08/2017 1:32,11/09/2008 21:06,9.3,20, Improper Input Validation,nan
CVE-2008-3579,8/08/2017 1:32,10/08/2008 21:41,7.8,287, Improper Authentication,nan
CVE-2008-3577,8/08/2017 1:31,10/08/2008 21:41,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3576,8/08/2017 1:31,10/08/2008 21:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3573,8/08/2017 1:31,10/08/2008 20:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3572,8/08/2017 1:31,10/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3566,8/08/2017 1:31,10/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3565,8/08/2017 1:31,10/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3562,8/08/2017 1:31,10/08/2008 20:41,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3561,8/08/2017 1:31,10/08/2008 20:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3560,8/08/2017 1:31,8/08/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3559,8/08/2017 1:31,8/08/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3550,8/08/2017 1:31,8/08/2008 19:41,5.0,200, Information Exposure,nan
CVE-2008-3547,8/08/2017 1:31,10/03/2009 21:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3539,8/08/2017 1:31,11/09/2008 1:12,2.1,200, Information Exposure,nan
CVE-2008-3533,8/08/2017 1:31,18/08/2008 17:41,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-3531,8/08/2017 1:31,5/09/2008 16:08,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3530,8/08/2017 1:31,5/09/2008 16:08,7.1,20, Improper Input Validation,nan
CVE-2008-3526,8/08/2017 1:31,27/08/2008 20:41,7.8,189, Numeric Errors,nan
CVE-2008-3524,8/08/2017 1:31,29/09/2008 17:17,4.7,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3522,8/08/2017 1:31,2/10/2008 18:18,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3521,8/08/2017 1:31,2/10/2008 18:18,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3519,8/08/2017 1:31,23/09/2008 15:24,4.3,16, Configuration,nan
CVE-2008-3511,8/08/2017 1:31,7/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3510,8/08/2017 1:31,7/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3504,8/08/2017 1:31,6/08/2008 18:41,7.5,287, Improper Authentication,nan
CVE-2008-3503,8/08/2017 1:31,6/08/2008 18:41,5.0,287, Improper Authentication,nan
CVE-2008-3501,8/08/2017 1:31,6/08/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3500,8/08/2017 1:31,6/08/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3495,8/08/2017 1:31,6/08/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3483,8/08/2017 1:31,5/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3482,8/08/2017 1:31,5/08/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3457,8/08/2017 1:31,4/08/2008 19:41,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3456,8/08/2017 1:31,4/08/2008 19:41,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3451,8/08/2017 1:31,4/08/2008 19:41,4.0,200, Information Exposure,nan
CVE-2008-3449,8/08/2017 1:31,4/08/2008 17:41,5.0,399, Resource Management Errors,nan
CVE-2008-3444,8/08/2017 1:31,4/08/2008 10:59,4.3,20, Improper Input Validation,nan
CVE-2008-3430,8/08/2017 1:31,31/07/2008 22:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3429,8/08/2017 1:31,31/07/2008 22:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3428,8/08/2017 1:31,31/07/2008 22:41,6.5,287, Improper Authentication,nan
CVE-2008-3425,8/08/2017 1:31,31/07/2008 22:41,6.5,287, Improper Authentication,nan
CVE-2008-3424,8/08/2017 1:31,31/07/2008 22:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3423,8/08/2017 1:31,4/08/2008 1:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3421,8/08/2017 1:31,31/07/2008 17:41,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3395,8/08/2017 1:31,31/07/2008 16:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3394,8/08/2017 1:31,31/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3393,8/08/2017 1:31,31/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3392,8/08/2017 1:31,31/07/2008 16:41,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3391,8/08/2017 1:31,31/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3381,8/08/2017 1:31,30/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3379,8/08/2017 1:31,30/07/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3370,8/08/2017 1:31,30/07/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3359,8/08/2017 1:31,29/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3354,8/08/2017 1:31,28/07/2008 17:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3353,8/08/2017 1:31,28/07/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3345,8/08/2017 1:31,28/07/2008 16:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3344,8/08/2017 1:31,28/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3341,8/08/2017 1:31,28/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3340,8/08/2017 1:31,28/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3339,8/08/2017 1:31,28/07/2008 16:41,6.8,200, Information Exposure,nan
CVE-2008-3338,8/08/2017 1:31,13/08/2008 22:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3337,8/08/2017 1:31,8/08/2008 19:41,6.4,20, Improper Input Validation,nan
CVE-2008-3336,8/08/2017 1:31,27/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3334,8/08/2017 1:31,27/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3333,8/08/2017 1:31,27/07/2008 23:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3330,8/08/2017 1:31,27/07/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3328,8/08/2017 1:31,27/07/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3316,8/08/2017 1:31,25/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3313,8/08/2017 1:31,25/07/2008 16:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3312,8/08/2017 1:31,25/07/2008 16:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3306,8/08/2017 1:31,25/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3300,8/08/2017 1:31,25/07/2008 13:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3299,8/08/2017 1:31,25/07/2008 13:41,7.5,287, Improper Authentication,nan
CVE-2008-3296,8/08/2017 1:31,25/07/2008 13:41,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3295,8/08/2017 1:31,25/07/2008 13:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3286,8/08/2017 1:31,24/07/2008 17:41,5.0,20, Improper Input Validation,nan
CVE-2008-3273,8/08/2017 1:31,10/08/2008 20:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3259,8/08/2017 1:31,22/07/2008 16:41,1.2,200, Information Exposure,nan
CVE-2008-3258,8/08/2017 1:31,22/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3253,8/08/2017 1:31,22/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3252,8/08/2017 1:31,21/07/2008 17:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3249,8/08/2017 1:31,21/07/2008 17:41,5.1,255, Credentials Management,nan
CVE-2008-3247,8/08/2017 1:31,24/07/2008 15:41,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3244,8/08/2017 1:31,21/07/2008 16:41,4.3,20, Improper Input Validation,nan
CVE-2008-3231,8/08/2017 1:31,18/07/2008 16:41,4.3,20, Improper Input Validation,nan
CVE-2008-3230,8/08/2017 1:31,18/07/2008 16:41,1.9,20, Improper Input Validation,nan
CVE-2008-3229,8/08/2017 1:31,18/07/2008 16:41,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3228,8/08/2017 1:31,18/07/2008 16:41,7.5,16, Configuration,nan
CVE-2008-3227,8/08/2017 1:31,18/07/2008 16:41,7.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3226,8/08/2017 1:31,18/07/2008 16:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3225,8/08/2017 1:31,18/07/2008 16:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3223,8/08/2017 1:31,18/07/2008 16:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3222,8/08/2017 1:31,18/07/2008 16:41,6.8,287, Improper Authentication,nan
CVE-2008-3220,8/08/2017 1:31,18/07/2008 16:41,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3219,8/08/2017 1:31,18/07/2008 16:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3218,8/08/2017 1:31,18/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3217,8/08/2017 1:31,18/07/2008 16:41,6.8,189, Numeric Errors,nan
CVE-2008-3216,8/08/2017 1:31,18/07/2008 16:41,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3215,8/08/2017 1:31,18/07/2008 16:41,5.0,399, Resource Management Errors,nan
CVE-2008-3214,8/08/2017 1:31,18/07/2008 16:41,7.8,20, Improper Input Validation,nan
CVE-2008-3212,8/08/2017 1:31,18/07/2008 15:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3202,8/08/2017 1:31,17/07/2008 13:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3201,8/08/2017 1:31,17/07/2008 13:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3199,8/08/2017 1:31,17/07/2008 13:41,7.8,20, Improper Input Validation,nan
CVE-2008-3198,8/08/2017 1:31,17/07/2008 13:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3197,8/08/2017 1:31,16/07/2008 18:41,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3188,8/08/2017 1:31,22/07/2008 16:41,6.2,310, Cryptographic Issues,nan
CVE-2008-3187,8/08/2017 1:31,21/07/2008 16:41,5.0,20, Improper Input Validation,nan
CVE-2008-3186,8/08/2017 1:31,15/07/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3177,8/08/2017 1:31,15/07/2008 18:41,5.0,16, Configuration,nan
CVE-2008-3173,8/08/2017 1:31,14/07/2008 23:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-3172,8/08/2017 1:31,14/07/2008 23:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-3171,8/08/2017 1:31,14/07/2008 23:41,5.0,200, Information Exposure,nan
CVE-2008-3170,8/08/2017 1:31,14/07/2008 23:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-3169,8/08/2017 1:31,14/07/2008 23:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3168,8/08/2017 1:31,14/07/2008 23:41,5.0,200, Information Exposure,nan
CVE-2008-3163,8/08/2017 1:31,14/07/2008 23:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3161,8/08/2017 1:31,14/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3159,8/08/2017 1:31,14/07/2008 18:41,10.0,189, Numeric Errors,nan
CVE-2008-3157,8/08/2017 1:31,11/07/2008 22:41,5.0,399, Resource Management Errors,nan
CVE-2008-3134,8/08/2017 1:31,10/07/2008 23:41,5.0,399, Resource Management Errors,nan
CVE-2008-3130,8/08/2017 1:31,10/07/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3126,8/08/2017 1:31,10/07/2008 18:41,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3122,8/08/2017 1:31,10/07/2008 18:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3121,8/08/2017 1:31,10/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3097,8/08/2017 1:31,9/07/2008 19:33,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3096,8/08/2017 1:31,9/07/2008 19:33,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3095,8/08/2017 1:31,9/07/2008 19:33,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3094,8/08/2017 1:31,9/07/2008 19:33,4.3,200, Information Exposure,nan
CVE-2008-3092,8/08/2017 1:31,9/07/2008 19:33,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3091,8/08/2017 1:31,9/07/2008 19:33,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3090,8/08/2017 1:31,9/07/2008 19:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3082,8/08/2017 1:31,9/07/2008 0:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3081,8/08/2017 1:31,9/07/2008 0:41,6.5,20, Improper Input Validation,nan
CVE-2008-3078,8/08/2017 1:31,9/07/2008 0:41,7.8,200, Information Exposure,nan
CVE-2008-3076,8/08/2017 1:31,21/02/2009 22:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2008-3067,8/08/2017 1:31,7/07/2008 23:41,2.1,255, Credentials Management,nan
CVE-2008-3063,8/08/2017 1:31,8/10/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3060,8/08/2017 1:31,8/10/2008 0:00,5.0,200, Information Exposure,nan
CVE-2008-3059,8/08/2017 1:31,3/12/2008 17:30,4.0,255, Credentials Management,nan
CVE-2008-3058,8/08/2017 1:31,3/12/2008 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3057,8/08/2017 1:31,3/12/2008 17:30,5.0,310, Cryptographic Issues,nan
CVE-2008-3056,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3055,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3054,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3053,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3051,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3046,8/08/2017 1:31,7/07/2008 18:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3044,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3042,8/08/2017 1:31,7/07/2008 18:41,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-3040,8/08/2017 1:31,7/07/2008 18:41,5.0,200, Information Exposure,nan
CVE-2008-3039,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3038,8/08/2017 1:31,7/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3037,8/08/2017 1:31,7/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3032,8/08/2017 1:31,7/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3029,8/08/2017 1:31,7/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3028,8/08/2017 1:31,7/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3023,8/08/2017 1:31,7/07/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3001,8/08/2017 1:31,3/07/2008 18:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3000,8/08/2017 1:31,3/07/2008 18:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2999,8/08/2017 1:31,3/07/2008 18:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2998,8/08/2017 1:31,3/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2960,8/08/2017 1:31,2/07/2008 17:14,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2958,8/08/2017 1:31,1/07/2008 22:41,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-2954,8/08/2017 1:31,1/07/2008 22:41,7.8,20, Improper Input Validation,nan
CVE-2008-2953,8/08/2017 1:31,1/07/2008 22:41,5.0,20, Improper Input Validation,nan
CVE-2008-2951,8/08/2017 1:31,27/07/2008 22:41,5.8,20, Improper Input Validation,nan
CVE-2008-2945,8/08/2017 1:31,30/06/2008 22:41,7.5,20, Improper Input Validation,nan
CVE-2008-2943,8/08/2017 1:31,30/06/2008 21:41,6.0,399, Resource Management Errors,nan
CVE-2008-2934,8/08/2017 1:31,18/07/2008 16:41,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2932,8/08/2017 1:31,12/09/2008 16:56,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2925,8/08/2017 1:31,30/06/2008 18:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2924,8/08/2017 1:31,30/06/2008 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2923,8/08/2017 1:31,30/06/2008 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2908,8/08/2017 1:31,30/06/2008 18:24,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2894,8/08/2017 1:31,27/06/2008 18:41,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2880,8/08/2017 1:31,26/06/2008 17:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2871,8/08/2017 1:31,26/06/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2852,8/08/2017 1:31,25/06/2008 12:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2851,8/08/2017 1:31,25/06/2008 12:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2850,8/08/2017 1:31,25/06/2008 12:36,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2849,8/08/2017 1:31,25/06/2008 12:36,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2848,8/08/2017 1:31,25/06/2008 12:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2831,8/08/2017 1:31,2/10/2008 18:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2830,8/08/2017 1:31,23/06/2008 20:41,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2828,8/08/2017 1:31,23/06/2008 19:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2827,8/08/2017 1:31,23/06/2008 19:41,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2826,8/08/2017 1:31,2/07/2008 16:41,4.9,189, Numeric Errors,nan
CVE-2008-2825,8/08/2017 1:31,23/06/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2822,8/08/2017 1:31,23/06/2008 17:41,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2821,8/08/2017 1:31,23/06/2008 17:41,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2819,8/08/2017 1:31,23/06/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2814,8/08/2017 1:31,23/06/2008 17:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2797,8/08/2017 1:31,20/06/2008 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2795,8/08/2017 1:31,20/06/2008 11:48,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2794,8/08/2017 1:31,20/06/2008 11:48,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2784,8/08/2017 1:31,19/06/2008 20:41,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-2783,8/08/2017 1:31,19/06/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2780,8/08/2017 1:31,19/06/2008 20:41,6.4,310, Cryptographic Issues,nan
CVE-2008-2779,8/08/2017 1:31,19/06/2008 20:41,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2777,8/08/2017 1:31,19/06/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2776,8/08/2017 1:31,19/06/2008 20:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2775,8/08/2017 1:31,19/06/2008 20:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2773,8/08/2017 1:31,18/06/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2772,8/08/2017 1:31,18/06/2008 22:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2771,8/08/2017 1:31,18/06/2008 22:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2768,8/08/2017 1:31,18/06/2008 22:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2767,8/08/2017 1:31,18/06/2008 22:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2766,8/08/2017 1:31,18/06/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2765,8/08/2017 1:31,18/06/2008 22:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2764,8/08/2017 1:31,18/06/2008 22:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2763,8/08/2017 1:31,18/06/2008 22:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2762,8/08/2017 1:31,18/06/2008 22:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2761,8/08/2017 1:31,18/06/2008 22:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2760,8/08/2017 1:31,18/06/2008 22:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2759,8/08/2017 1:31,18/06/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2758,8/08/2017 1:31,18/06/2008 22:41,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2757,8/08/2017 1:31,18/06/2008 22:41,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2756,8/08/2017 1:31,18/06/2008 22:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2743,8/08/2017 1:31,17/06/2008 15:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2730,8/08/2017 1:31,26/06/2008 17:41,5.0,287, Improper Authentication,nan
CVE-2008-2724,8/08/2017 1:31,16/06/2008 23:41,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2723,8/08/2017 1:31,16/06/2008 23:41,5.0,200, Information Exposure,nan
CVE-2008-2722,8/08/2017 1:31,16/06/2008 23:41,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2721,8/08/2017 1:31,16/06/2008 23:41,5.0,200, Information Exposure,nan
CVE-2008-2720,8/08/2017 1:31,16/06/2008 23:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2715,8/08/2017 1:31,16/06/2008 22:41,5.0,200, Information Exposure,nan
CVE-2008-2713,8/08/2017 1:31,16/06/2008 21:41,5.0,399, Resource Management Errors,nan
CVE-2008-2709,8/08/2017 1:31,16/06/2008 20:41,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2705,8/08/2017 1:31,16/06/2008 18:41,9.3,287, Improper Authentication,nan
CVE-2008-2696,8/08/2017 1:31,13/06/2008 19:41,4.3,189, Numeric Errors,nan
CVE-2008-2690,8/08/2017 1:31,13/06/2008 19:41,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2685,8/08/2017 1:31,12/06/2008 12:21,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2675,8/08/2017 1:31,12/06/2008 12:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2667,8/08/2017 1:31,7/07/2008 23:41,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2654,8/08/2017 1:31,13/06/2008 18:41,10.0,189, Numeric Errors,nan
CVE-2008-2640,8/08/2017 1:31,18/06/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2635,8/08/2017 1:31,10/06/2008 0:32,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2631,8/08/2017 1:31,10/06/2008 0:32,5.0,399, Resource Management Errors,nan
CVE-2008-2575,8/08/2017 1:31,6/06/2008 22:32,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2571,8/08/2017 1:31,6/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2567,8/08/2017 1:31,6/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2563,8/08/2017 1:31,6/06/2008 18:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2559,8/08/2017 1:31,5/06/2008 22:32,7.5,189, Numeric Errors,nan
CVE-2008-2558,8/08/2017 1:31,5/06/2008 21:32,5.0,310, Cryptographic Issues,nan
CVE-2008-2557,8/08/2017 1:31,5/06/2008 21:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2553,8/08/2017 1:31,5/06/2008 20:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2545,8/08/2017 1:31,6/06/2008 22:32,9.3,20, Improper Input Validation,nan
CVE-2008-2539,8/08/2017 1:31,3/06/2008 15:32,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2531,8/08/2017 1:31,3/06/2008 15:32,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2526,8/08/2017 1:31,3/06/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2525,8/08/2017 1:31,3/06/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2524,8/08/2017 1:31,3/06/2008 15:32,5.0,287, Improper Authentication,nan
CVE-2008-2523,8/08/2017 1:31,3/06/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2519,8/08/2017 1:31,3/06/2008 14:32,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2518,8/08/2017 1:31,3/06/2008 14:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2517,8/08/2017 1:31,3/06/2008 14:32,2.1,200, Information Exposure,nan
CVE-2008-2516,8/08/2017 1:31,3/06/2008 14:32,4.6,287, Improper Authentication,nan
CVE-2008-2512,8/08/2017 1:31,2/06/2008 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2508,8/08/2017 1:31,29/05/2008 23:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2503,8/08/2017 1:31,29/05/2008 23:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2500,8/08/2017 1:31,29/05/2008 16:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2498,8/08/2017 1:31,28/05/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2497,8/08/2017 1:31,28/05/2008 15:32,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2490,8/08/2017 1:31,28/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2489,8/08/2017 1:31,28/05/2008 15:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2449,8/08/2017 1:31,27/05/2008 14:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2431,8/08/2017 1:31,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2425,8/08/2017 1:31,23/05/2008 15:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2422,8/08/2017 1:31,23/05/2008 15:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2420,8/08/2017 1:31,23/05/2008 15:32,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2419,8/08/2017 1:31,23/05/2008 15:32,4.3,399, Resource Management Errors,nan
CVE-2008-2415,8/08/2017 1:31,22/05/2008 13:09,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2414,8/08/2017 1:31,22/05/2008 13:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2413,8/08/2017 1:31,22/05/2008 13:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2412,8/08/2017 1:31,22/05/2008 13:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2410,8/08/2017 1:31,22/05/2008 13:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2409,8/08/2017 1:31,23/05/2008 15:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2408,8/08/2017 1:31,23/05/2008 15:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2406,8/08/2017 1:31,4/06/2008 20:32,7.5,287, Improper Authentication,nan
CVE-2008-2405,8/08/2017 1:31,4/06/2008 20:32,7.5,20, Improper Input Validation,nan
CVE-2008-2404,8/08/2017 1:31,4/06/2008 20:32,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2403,8/08/2017 1:31,4/06/2008 20:32,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2402,8/08/2017 1:31,4/06/2008 20:32,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2401,8/08/2017 1:31,4/06/2008 20:32,7.5,20, Improper Input Validation,nan
CVE-2008-2400,8/08/2017 1:31,22/05/2008 13:09,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2399,8/08/2017 1:31,22/05/2008 13:09,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2397,8/08/2017 1:31,21/05/2008 13:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2381,8/08/2017 1:31,2/01/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2380,8/08/2017 1:30,22/12/2008 15:30,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2378,8/08/2017 1:30,26/11/2008 23:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2377,8/08/2017 1:30,8/08/2008 19:41,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2369,8/08/2017 1:30,14/08/2008 20:41,6.4,287, Improper Authentication,nan
CVE-2008-2368,8/08/2017 1:30,20/01/2009 16:30,2.1,255, Credentials Management,nan
CVE-2008-2367,8/08/2017 1:30,20/01/2009 16:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-2363,8/08/2017 1:30,2/06/2008 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2359,8/08/2017 1:30,2/06/2008 21:30,7.2,16, Configuration,nan
CVE-2008-2350,8/08/2017 1:30,20/05/2008 17:20,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2345,8/08/2017 1:30,19/05/2008 13:20,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2344,8/08/2017 1:30,19/05/2008 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2334,8/08/2017 1:30,19/05/2008 13:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2332,8/08/2017 1:30,16/09/2008 23:00,9.3,399, Resource Management Errors,nan
CVE-2008-2331,8/08/2017 1:30,16/09/2008 23:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2330,8/08/2017 1:30,16/09/2008 23:00,4.9,200, Information Exposure,nan
CVE-2008-2329,8/08/2017 1:30,16/09/2008 23:00,1.9,200, Information Exposure,nan
CVE-2008-2325,8/08/2017 1:30,4/08/2008 1:41,9.3,399, Resource Management Errors,nan
CVE-2008-2324,8/08/2017 1:30,4/08/2008 1:41,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2322,8/08/2017 1:30,4/08/2008 1:41,9.3,189, Numeric Errors,nan
CVE-2008-2318,8/08/2017 1:30,14/07/2008 18:41,5.0,200, Information Exposure,nan
CVE-2008-2313,8/08/2017 1:30,1/07/2008 18:41,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2312,8/08/2017 1:30,16/09/2008 23:00,4.9,255, Credentials Management,nan
CVE-2008-2311,8/08/2017 1:30,1/07/2008 18:41,7.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-2310,8/08/2017 1:30,1/07/2008 18:41,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-2309,8/08/2017 1:30,1/07/2008 18:41,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-2305,8/08/2017 1:30,16/09/2008 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2303,8/08/2017 1:30,14/07/2008 18:41,10.0,189, Numeric Errors,nan
CVE-2008-2302,8/08/2017 1:30,23/05/2008 15:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2300,8/08/2017 1:30,18/05/2008 14:20,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2299,8/08/2017 1:30,18/05/2008 14:20,5.0,310, Cryptographic Issues,nan
CVE-2008-2290,8/08/2017 1:30,18/05/2008 14:20,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2289,8/08/2017 1:30,18/05/2008 14:20,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2288,8/08/2017 1:30,18/05/2008 14:20,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2287,8/08/2017 1:30,18/05/2008 14:20,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-2285,8/08/2017 1:30,18/05/2008 14:20,5.0,310, Cryptographic Issues,nan
CVE-2008-2284,8/08/2017 1:30,18/05/2008 14:20,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2280,8/08/2017 1:30,16/05/2008 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2274,8/08/2017 1:30,16/05/2008 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2271,8/08/2017 1:30,16/05/2008 12:54,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2266,8/08/2017 1:30,16/05/2008 12:54,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-2264,8/08/2017 1:30,16/05/2008 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2240,8/08/2017 1:30,22/05/2008 13:09,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2236,8/08/2017 1:30,3/10/2008 15:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2235,8/08/2017 1:30,1/08/2008 14:41,4.9,310, Cryptographic Issues,nan
CVE-2008-2232,8/08/2017 1:30,17/07/2008 13:41,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2231,8/08/2017 1:30,5/06/2008 20:32,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2230,8/08/2017 1:30,11/06/2008 1:32,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2227,8/08/2017 1:30,14/05/2008 18:20,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2219,8/08/2017 1:30,14/05/2008 18:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2218,8/08/2017 1:30,14/05/2008 18:20,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2185,8/08/2017 1:30,13/05/2008 22:20,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2184,8/08/2017 1:30,13/05/2008 22:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2179,8/08/2017 1:30,13/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2174,8/08/2017 1:30,13/05/2008 22:20,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2166,8/08/2017 1:30,13/05/2008 20:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2163,8/08/2017 1:30,13/05/2008 17:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2162,8/08/2017 1:30,12/05/2008 22:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2159,8/08/2017 1:30,12/05/2008 22:20,2.1,200, Information Exposure,nan
CVE-2008-2158,8/08/2017 1:30,29/05/2008 16:32,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2157,8/08/2017 1:30,29/05/2008 16:32,10.0,20, Improper Input Validation,nan
CVE-2008-2154,8/08/2017 1:30,3/06/2009 21:00,6.0,16, Configuration,nan
CVE-2008-2149,8/08/2017 1:30,12/05/2008 21:20,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2148,8/08/2017 1:30,12/05/2008 21:20,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2147,8/08/2017 1:30,12/05/2008 20:20,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-2146,8/08/2017 1:30,12/05/2008 20:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2140,8/08/2017 1:30,12/05/2008 17:20,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2139,8/08/2017 1:30,12/05/2008 17:20,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2134,8/08/2017 1:30,9/05/2008 18:20,6.8,20, Improper Input Validation,nan
CVE-2008-2133,8/08/2017 1:30,9/05/2008 18:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2130,8/08/2017 1:30,9/05/2008 18:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2126,8/08/2017 1:30,9/05/2008 18:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2123,8/08/2017 1:30,9/05/2008 18:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2122,8/08/2017 1:30,9/05/2008 15:20,5.0,399, Resource Management Errors,nan
CVE-2008-2120,8/08/2017 1:30,9/05/2008 15:20,5.0,200, Information Exposure,nan
CVE-2008-2111,8/08/2017 1:30,7/05/2008 23:20,9.3,399, Resource Management Errors,nan
CVE-2008-2105,8/08/2017 1:30,7/05/2008 20:20,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2104,8/08/2017 1:30,7/05/2008 20:20,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-2103,8/08/2017 1:30,7/05/2008 20:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2092,8/08/2017 1:30,6/05/2008 16:20,7.8,399, Resource Management Errors,nan
CVE-2008-2085,8/08/2017 1:30,12/05/2008 16:20,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2080,8/08/2017 1:30,6/05/2008 15:20,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2078,8/08/2017 1:30,5/05/2008 16:20,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-2068,8/08/2017 1:30,2/05/2008 23:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2052,8/08/2017 1:30,2/05/2008 17:05,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-2049,8/08/2017 1:30,1/05/2008 19:05,4.3,200, Information Exposure,nan
CVE-2008-2046,8/08/2017 1:30,1/05/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2043,8/08/2017 1:30,1/05/2008 19:05,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-2040,8/08/2017 1:30,30/04/2008 16:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2038,8/08/2017 1:30,30/04/2008 16:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2037,8/08/2017 1:30,30/04/2008 16:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2035,8/08/2017 1:30,30/04/2008 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2034,8/08/2017 1:30,30/04/2008 16:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2032,8/08/2017 1:30,30/04/2008 16:17,5.0,20, Improper Input Validation,nan
CVE-2008-2031,8/08/2017 1:30,30/04/2008 16:17,5.0,20, Improper Input Validation,nan
CVE-2008-2030,8/08/2017 1:30,30/04/2008 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2021,8/08/2017 1:30,30/04/2008 12:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-2011,8/08/2017 1:30,30/04/2008 0:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1996,8/08/2017 1:30,28/04/2008 20:05,5.0,399, Resource Management Errors,nan
CVE-2008-1994,8/08/2017 1:30,27/04/2008 21:05,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1988,8/08/2017 1:30,27/04/2008 21:05,9.0,20, Improper Input Validation,nan
CVE-2008-1987,8/08/2017 1:30,27/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1986,8/08/2017 1:30,27/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1985,8/08/2017 1:30,27/04/2008 21:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1984,8/08/2017 1:30,27/04/2008 20:05,7.8,399, Resource Management Errors,nan
CVE-2008-1983,8/08/2017 1:30,27/04/2008 20:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1980,8/08/2017 1:30,27/04/2008 20:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1978,8/08/2017 1:30,27/04/2008 20:05,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1972,8/08/2017 1:30,27/04/2008 18:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1970,8/08/2017 1:30,27/04/2008 18:05,2.1,255, Credentials Management,nan
CVE-2008-1960,8/08/2017 1:30,25/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1959,8/08/2017 1:30,25/04/2008 19:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1955,8/08/2017 1:30,25/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1953,8/08/2017 1:30,25/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1942,8/08/2017 1:30,25/04/2008 6:05,6.8,20, Improper Input Validation,nan
CVE-2008-1941,8/08/2017 1:30,25/04/2008 6:05,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1940,8/08/2017 1:30,25/04/2008 6:05,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-1938,8/08/2017 1:30,25/04/2008 6:05,6.4,287, Improper Authentication,nan
CVE-2008-1937,8/08/2017 1:30,25/04/2008 6:05,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1928,8/08/2017 1:30,24/04/2008 5:05,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1925,8/08/2017 1:30,24/04/2008 5:05,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1923,8/08/2017 1:30,23/04/2008 16:05,7.1,16, Configuration,nan
CVE-2008-1922,8/08/2017 1:30,13/05/2008 23:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1917,8/08/2017 1:30,23/04/2008 13:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1916,8/08/2017 1:30,23/04/2008 13:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1905,8/08/2017 1:30,22/04/2008 4:41,5.0,20, Improper Input Validation,nan
CVE-2008-1901,8/08/2017 1:30,22/04/2008 4:41,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1894,8/08/2017 1:30,18/04/2008 22:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1893,8/08/2017 1:30,18/04/2008 22:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1892,8/08/2017 1:30,18/04/2008 22:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1891,8/08/2017 1:30,18/04/2008 22:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1890,8/08/2017 1:30,18/04/2008 22:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1884,8/08/2017 1:30,18/04/2008 15:05,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1880,8/08/2017 1:30,12/05/2008 16:20,5.0,255, Credentials Management,nan
CVE-2008-1873,8/08/2017 1:30,17/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1853,8/08/2017 1:30,16/04/2008 18:05,4.3,399, Resource Management Errors,nan
CVE-2008-1852,8/08/2017 1:30,16/04/2008 18:05,7.8,399, Resource Management Errors,nan
CVE-2008-1851,8/08/2017 1:30,16/04/2008 18:05,5.0,399, Resource Management Errors,nan
CVE-2008-1850,8/08/2017 1:30,16/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1844,8/08/2017 1:30,16/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1843,8/08/2017 1:30,16/04/2008 17:05,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1841,8/08/2017 1:30,16/04/2008 17:05,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1840,8/08/2017 1:30,16/04/2008 17:05,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1839,8/08/2017 1:30,16/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1835,8/08/2017 1:30,16/04/2008 16:05,5.0,20, Improper Input Validation,nan
CVE-2008-1834,8/08/2017 1:30,16/04/2008 16:05,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1833,8/08/2017 1:30,16/04/2008 15:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1832,8/08/2017 1:30,16/04/2008 15:05,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1810,8/08/2017 1:30,1/08/2008 14:41,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-1809,8/08/2017 1:30,14/07/2008 18:41,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1800,8/08/2017 1:30,15/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1794,8/08/2017 1:30,15/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1793,8/08/2017 1:30,15/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1792,8/08/2017 1:30,15/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1787,8/08/2017 1:30,15/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1775,8/08/2017 1:30,14/04/2008 16:05,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1771,8/08/2017 1:30,16/04/2008 15:05,7.5,189, Numeric Errors,nan
CVE-2008-1762,8/08/2017 1:30,12/04/2008 20:05,9.3,399, Resource Management Errors,nan
CVE-2008-1761,8/08/2017 1:30,12/04/2008 20:05,9.3,399, Resource Management Errors,nan
CVE-2008-1754,8/08/2017 1:30,11/04/2008 21:05,1.7,310, Cryptographic Issues,nan
CVE-2008-1752,8/08/2017 1:30,11/04/2008 21:05,7.5,200, Information Exposure,nan
CVE-2008-1749,8/08/2017 1:30,14/05/2008 18:20,7.8,399, Resource Management Errors,nan
CVE-2008-1746,8/08/2017 1:30,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-1745,8/08/2017 1:30,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-1744,8/08/2017 1:30,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-1742,8/08/2017 1:30,16/05/2008 12:54,7.8,399, Resource Management Errors,nan
CVE-2008-1741,8/08/2017 1:30,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-1740,8/08/2017 1:30,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-1734,8/08/2017 1:30,18/04/2008 15:05,3.6,20, Improper Input Validation,nan
CVE-2008-1731,8/08/2017 1:30,11/04/2008 19:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1728,8/08/2017 1:30,11/04/2008 19:05,4.0,399, Resource Management Errors,nan
CVE-2008-1719,8/08/2017 1:30,10/04/2008 19:05,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-1718,8/08/2017 1:30,10/04/2008 18:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1704,8/08/2017 1:30,11/04/2008 10:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1703,8/08/2017 1:30,11/04/2008 10:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1700,8/08/2017 1:30,8/04/2008 18:05,9.3,399, Resource Management Errors,nan
CVE-2008-1698,8/08/2017 1:30,8/04/2008 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1691,8/08/2017 1:30,7/04/2008 17:44,5.0,20, Improper Input Validation,nan
CVE-2008-1690,8/08/2017 1:30,7/04/2008 17:44,10.0,399, Resource Management Errors,nan
CVE-2008-1689,8/08/2017 1:30,7/04/2008 17:44,5.0,399, Resource Management Errors,nan
CVE-2008-1685,8/08/2017 1:30,6/04/2008 23:44,6.8,189, Numeric Errors,nan
CVE-2008-1681,8/08/2017 1:30,4/04/2008 19:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-1677,8/08/2017 1:30,12/05/2008 16:20,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1671,8/08/2017 1:30,28/04/2008 17:05,4.6,16, Configuration,nan
CVE-2008-1670,8/08/2017 1:30,28/04/2008 17:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1667,8/08/2017 1:30,29/07/2008 18:41,7.8,189, Numeric Errors,nan
CVE-2008-1661,8/08/2017 1:30,4/06/2008 19:32,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1658,8/08/2017 1:30,11/04/2008 10:05,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2008-1656,8/08/2017 1:30,9/04/2008 19:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1653,8/08/2017 1:30,2/04/2008 17:44,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1652,8/08/2017 1:30,2/04/2008 17:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1648,8/08/2017 1:30,2/04/2008 17:44,5.0,20, Improper Input Validation,nan
CVE-2008-1644,8/08/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1643,8/08/2017 1:30,2/04/2008 17:44,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1642,8/08/2017 1:30,2/04/2008 17:44,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1638,8/08/2017 1:30,2/04/2008 17:44,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-1636,8/08/2017 1:30,2/04/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1634,8/08/2017 1:30,2/04/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1632,8/08/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1629,8/08/2017 1:30,2/04/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1628,8/08/2017 1:30,2/04/2008 17:44,4.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-1627,8/08/2017 1:30,2/04/2008 17:44,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1626,8/08/2017 1:30,2/04/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1622,8/08/2017 1:30,2/04/2008 17:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1621,8/08/2017 1:30,2/04/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1618,8/08/2017 1:30,7/04/2008 18:44,5.0,200, Information Exposure,nan
CVE-2008-1617,8/08/2017 1:30,8/04/2008 18:05,9.3,189, Numeric Errors,nan
CVE-2008-1614,8/08/2017 1:30,2/04/2008 16:44,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1607,8/08/2017 1:30,1/04/2008 16:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1605,8/08/2017 1:30,1/04/2008 16:44,6.8,20, Improper Input Validation,nan
CVE-2008-1604,8/08/2017 1:30,1/04/2008 16:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1603,8/08/2017 1:30,1/04/2008 16:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1590,8/08/2017 1:30,14/07/2008 18:41,6.8,399, Resource Management Errors,nan
CVE-2008-1589,8/08/2017 1:30,14/07/2008 18:41,4.3,20, Improper Input Validation,nan
CVE-2008-1588,8/08/2017 1:30,14/07/2008 18:41,4.3,20, Improper Input Validation,nan
CVE-2008-1583,8/08/2017 1:30,10/06/2008 18:32,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1582,8/08/2017 1:30,10/06/2008 18:32,6.8,399, Resource Management Errors,nan
CVE-2008-1580,8/08/2017 1:30,2/06/2008 21:30,4.3,200, Information Exposure,nan
CVE-2008-1579,8/08/2017 1:30,2/06/2008 21:30,5.0,200, Information Exposure,nan
CVE-2008-1578,8/08/2017 1:30,2/06/2008 21:30,2.1,200, Information Exposure,nan
CVE-2008-1576,8/08/2017 1:30,2/06/2008 21:30,6.8,399, Resource Management Errors,nan
CVE-2008-1575,8/08/2017 1:30,2/06/2008 21:30,9.3,399, Resource Management Errors,nan
CVE-2008-1574,8/08/2017 1:30,2/06/2008 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1573,8/08/2017 1:30,2/06/2008 21:30,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1572,8/08/2017 1:30,2/06/2008 21:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-1571,8/08/2017 1:30,2/06/2008 21:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1570,8/08/2017 1:30,31/03/2008 22:44,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-1569,8/08/2017 1:30,31/03/2008 22:44,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1568,8/08/2017 1:30,31/03/2008 22:44,7.5,20, Improper Input Validation,nan
CVE-2008-1567,8/08/2017 1:30,31/03/2008 22:44,2.1,200, Information Exposure,nan
CVE-2008-1566,8/08/2017 1:30,31/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1564,8/08/2017 1:30,31/03/2008 22:44,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1550,8/08/2017 1:30,31/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1543,8/08/2017 1:30,28/03/2008 23:44,7.5,255, Credentials Management,nan
CVE-2008-1542,8/08/2017 1:30,28/03/2008 23:44,7.5,255, Credentials Management,nan
CVE-2008-1540,8/08/2017 1:30,28/03/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1538,8/08/2017 1:30,28/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1536,8/08/2017 1:30,28/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1532,8/08/2017 1:30,28/03/2008 0:44,5.0,20, Improper Input Validation,nan
CVE-2008-1530,8/08/2017 1:30,27/03/2008 23:44,9.3,399, Resource Management Errors,nan
CVE-2008-1518,8/08/2017 1:30,5/06/2008 20:32,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1517,8/08/2017 1:30,13/05/2009 15:30,7.2,20, Improper Input Validation,nan
CVE-2008-1504,8/08/2017 1:30,25/03/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1500,8/08/2017 1:30,25/03/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1490,8/08/2017 1:30,25/03/2008 19:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1488,8/08/2017 1:30,24/03/2008 23:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1486,8/08/2017 1:30,24/03/2008 23:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1481,8/08/2017 1:30,24/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1479,8/08/2017 1:30,24/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1476,8/08/2017 1:30,24/03/2008 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1475,8/08/2017 1:30,24/03/2008 22:44,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-1473,8/08/2017 1:30,24/03/2008 22:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1468,8/08/2017 1:30,24/03/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1466,8/08/2017 1:30,24/03/2008 21:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1463,8/08/2017 1:30,24/03/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1428,8/08/2017 1:30,20/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1417,8/08/2017 1:30,20/03/2008 17:44,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1399,8/08/2017 1:30,20/03/2008 10:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1397,8/08/2017 1:30,20/03/2008 0:44,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1383,8/08/2017 1:30,18/03/2008 22:44,1.9,310, Cryptographic Issues,nan
CVE-2008-1381,8/08/2017 1:30,1/05/2008 19:05,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1371,8/08/2017 1:30,18/03/2008 17:44,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1370,8/08/2017 1:30,18/03/2008 17:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1360,8/08/2017 1:30,17/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1359,8/08/2017 1:30,17/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1356,8/08/2017 1:30,17/03/2008 17:44,6.3,287, Improper Authentication,nan
CVE-2008-1355,8/08/2017 1:30,17/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1354,8/08/2017 1:30,17/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1343,8/08/2017 1:30,17/03/2008 16:44,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1327,8/08/2017 1:30,13/03/2008 14:44,7.5,287, Improper Authentication,nan
CVE-2008-1326,8/08/2017 1:30,13/03/2008 14:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1318,8/08/2017 1:30,13/03/2008 14:44,5.0,200, Information Exposure,nan
CVE-2008-1310,8/08/2017 1:30,12/03/2008 17:44,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1306,8/08/2017 1:30,12/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1296,8/08/2017 1:30,12/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1288,8/08/2017 1:30,11/03/2008 17:44,5.0,200, Information Exposure,nan
CVE-2008-1287,8/08/2017 1:30,11/03/2008 17:44,5.0,16, Configuration,nan
CVE-2008-1285,8/08/2017 1:30,11/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1282,8/08/2017 1:30,10/03/2008 23:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1273,8/08/2017 1:30,10/03/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1227,8/08/2017 1:29,10/03/2008 17:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1226,8/08/2017 1:29,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1225,8/08/2017 1:29,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1224,8/08/2017 1:29,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1222,8/08/2017 1:29,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1220,8/08/2017 1:29,10/03/2008 17:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1215,8/08/2017 1:29,9/03/2008 2:44,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-1214,8/08/2017 1:29,8/03/2008 0:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1213,8/08/2017 1:29,8/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1212,8/08/2017 1:29,8/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1211,8/08/2017 1:29,8/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1210,8/08/2017 1:29,8/03/2008 0:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1209,8/08/2017 1:29,8/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1207,8/08/2017 1:29,8/03/2008 0:44,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1206,8/08/2017 1:29,8/03/2008 0:44,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-1204,8/08/2017 1:29,8/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1184,8/08/2017 1:29,6/03/2008 0:44,5.0,255, Credentials Management,nan
CVE-2008-1183,8/08/2017 1:29,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1182,8/08/2017 1:29,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1179,8/08/2017 1:29,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1169,8/08/2017 1:29,5/03/2008 23:44,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1168,8/08/2017 1:29,5/03/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1165,8/08/2017 1:29,5/03/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1161,8/08/2017 1:29,10/03/2008 22:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1158,8/08/2017 1:29,16/05/2008 12:54,7.8,20, Improper Input Validation,nan
CVE-2008-1157,8/08/2017 1:29,14/03/2008 20:44,10.0,20, Improper Input Validation,nan
CVE-2008-1155,8/08/2017 1:29,16/04/2008 17:05,10.0,200, Information Exposure,nan
CVE-2008-1154,8/08/2017 1:29,4/04/2008 19:44,10.0,287, Improper Authentication,nan
CVE-2008-1149,8/08/2017 1:29,4/03/2008 23:44,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1103,8/08/2017 1:29,28/04/2008 20:05,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-1102,8/08/2017 1:29,22/04/2008 4:41,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1100,8/08/2017 1:29,14/04/2008 16:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1076,8/08/2017 1:29,29/02/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1066,8/08/2017 1:29,28/02/2008 20:44,7.5,20, Improper Input Validation,nan
CVE-2008-1064,8/08/2017 1:29,28/02/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1063,8/08/2017 1:29,28/02/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1056,8/08/2017 1:29,28/02/2008 19:44,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1048,8/08/2017 1:29,27/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1034,8/08/2017 1:29,2/06/2008 21:30,9.3,189, Numeric Errors,nan
CVE-2008-1033,8/08/2017 1:29,2/06/2008 21:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-1031,8/08/2017 1:29,2/06/2008 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1030,8/08/2017 1:29,2/06/2008 21:30,10.0,20, Improper Input Validation,nan
CVE-2008-1027,8/08/2017 1:29,2/06/2008 21:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-1025,8/08/2017 1:29,17/04/2008 19:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1024,8/08/2017 1:29,17/04/2008 19:05,6.8,399, Resource Management Errors,nan
CVE-2008-1023,8/08/2017 1:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1016,8/08/2017 1:29,4/04/2008 17:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1015,8/08/2017 1:29,4/04/2008 17:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1014,8/08/2017 1:29,4/04/2008 17:44,4.3,200, Information Exposure,nan
CVE-2008-1012,8/08/2017 1:29,20/03/2008 10:44,4.3,20, Improper Input Validation,nan
CVE-2008-1011,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1010,8/08/2017 1:29,19/03/2008 0:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1009,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1008,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1007,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1006,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1005,8/08/2017 1:29,19/03/2008 0:44,2.1,200, Information Exposure,nan
CVE-2008-1004,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1003,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1002,8/08/2017 1:29,19/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0999,8/08/2017 1:29,18/03/2008 23:44,7.1,20, Improper Input Validation,nan
CVE-2008-0998,8/08/2017 1:29,18/03/2008 23:44,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0997,8/08/2017 1:29,18/03/2008 22:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0996,8/08/2017 1:29,18/03/2008 23:44,1.7,255, Credentials Management,nan
CVE-2008-0995,8/08/2017 1:29,18/03/2008 23:44,2.6,200, Information Exposure,nan
CVE-2008-0994,8/08/2017 1:29,18/03/2008 23:44,2.6,200, Information Exposure,nan
CVE-2008-0992,8/08/2017 1:29,18/03/2008 23:44,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0990,8/08/2017 1:29,18/03/2008 23:44,4.4,200, Information Exposure,nan
CVE-2008-0989,8/08/2017 1:29,18/03/2008 23:44,6.9,134, Use of Externally-Controlled Format String,nan
CVE-2008-0987,8/08/2017 1:29,18/03/2008 23:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0963,8/08/2017 1:29,14/04/2008 16:05,9.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-0962,8/08/2017 1:29,14/04/2008 16:05,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0961,8/08/2017 1:29,14/04/2008 16:05,10.0,287, Improper Authentication,nan
CVE-2008-0959,8/08/2017 1:29,29/05/2008 16:32,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0958,8/08/2017 1:29,29/05/2008 16:32,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0957,8/08/2017 1:29,20/05/2008 17:20,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0925,8/08/2017 1:29,18/06/2008 19:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0918,8/08/2017 1:29,22/02/2008 23:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0910,8/08/2017 1:29,22/02/2008 22:44,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0908,8/08/2017 1:29,22/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0893,8/08/2017 1:29,16/04/2008 18:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0891,8/08/2017 1:29,29/05/2008 16:32,4.3,189, Numeric Errors,nan
CVE-2008-0890,8/08/2017 1:29,12/03/2008 0:44,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-0884,8/08/2017 1:29,4/04/2008 0:44,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0883,8/08/2017 1:29,6/03/2008 0:44,3.7,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0856,8/08/2017 1:29,21/02/2008 0:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0823,8/08/2017 1:29,19/02/2008 20:44,10.0,287, Improper Authentication,nan
CVE-2008-0797,8/08/2017 1:29,15/02/2008 22:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-0793,8/08/2017 1:29,15/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0792,8/08/2017 1:29,15/02/2008 2:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-0769,8/08/2017 1:29,14/02/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0751,8/08/2017 1:29,13/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0728,8/08/2017 1:29,12/02/2008 20:00,10.0,399, Resource Management Errors,nan
CVE-2008-0707,8/08/2017 1:29,20/03/2008 0:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0706,8/08/2017 1:29,31/03/2008 23:44,7.2,287, Improper Authentication,nan
CVE-2008-0704,8/08/2017 1:29,28/03/2008 23:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0643,8/08/2017 1:29,12/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0589,8/08/2017 1:29,5/02/2008 3:00,4.9,200, Information Exposure,nan
CVE-2008-0585,8/08/2017 1:29,5/02/2008 3:00,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-0583,8/08/2017 1:29,5/02/2008 3:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0556,8/08/2017 1:29,19/02/2008 0:00,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0550,8/08/2017 1:29,1/02/2008 20:00,10.0,189, Numeric Errors,nan
CVE-2008-0549,8/08/2017 1:29,1/02/2008 20:00,5.0,189, Numeric Errors,nan
CVE-2008-0548,8/08/2017 1:29,1/02/2008 20:00,5.0,189, Numeric Errors,nan
CVE-2008-0536,8/08/2017 1:29,22/05/2008 13:09,7.8,287, Improper Authentication,nan
CVE-2008-0535,8/08/2017 1:29,22/05/2008 13:09,7.8,255, Credentials Management,nan
CVE-2008-0534,8/08/2017 1:29,22/05/2008 13:09,7.8,20, Improper Input Validation,nan
CVE-2008-0531,8/08/2017 1:29,15/02/2008 2:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0530,8/08/2017 1:29,15/02/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0529,8/08/2017 1:29,15/02/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0528,8/08/2017 1:29,15/02/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0527,8/08/2017 1:29,15/02/2008 2:00,7.8,20, Improper Input Validation,nan
CVE-2008-0526,8/08/2017 1:29,15/02/2008 2:00,7.8,20, Improper Input Validation,nan
CVE-2008-0524,8/08/2017 1:29,31/01/2008 20:00,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0523,8/08/2017 1:29,31/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0516,8/08/2017 1:29,31/01/2008 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0499,8/08/2017 1:29,30/01/2008 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0476,8/08/2017 1:29,29/01/2008 20:00,6.4,287, Improper Authentication,nan
CVE-2008-0475,8/08/2017 1:29,29/01/2008 20:00,5.0,20, Improper Input Validation,nan
CVE-2008-0474,8/08/2017 1:29,29/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0467,8/08/2017 1:29,29/01/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0463,8/08/2017 1:29,25/01/2008 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0462,8/08/2017 1:29,25/01/2008 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0460,8/08/2017 1:29,25/01/2008 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0449,8/08/2017 1:29,25/01/2008 0:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0448,8/08/2017 1:29,25/01/2008 0:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0444,8/08/2017 1:29,25/01/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0404,8/08/2017 1:29,23/01/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0402,8/08/2017 1:29,23/01/2008 12:00,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0401,8/08/2017 1:29,23/01/2008 12:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0354,8/08/2017 1:29,18/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0336,8/08/2017 1:29,17/01/2008 22:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0335,8/08/2017 1:29,17/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0330,8/08/2017 1:29,17/01/2008 22:00,7.8,287, Improper Authentication,nan
CVE-2008-0322,8/08/2017 1:29,13/05/2008 20:20,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0314,8/08/2017 1:29,16/04/2008 15:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0312,8/08/2017 1:29,8/04/2008 17:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0311,8/08/2017 1:29,6/04/2008 23:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0307,8/08/2017 1:29,11/03/2008 23:44,9.3,189, Numeric Errors,nan
CVE-2008-0293,8/08/2017 1:29,16/01/2008 22:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-0292,8/08/2017 1:29,16/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0281,8/08/2017 1:29,15/01/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0277,8/08/2017 1:29,15/01/2008 20:00,8.5,20, Improper Input Validation,nan
CVE-2008-0276,8/08/2017 1:29,15/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0275,8/08/2017 1:29,15/01/2008 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0274,8/08/2017 1:29,15/01/2008 20:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0273,8/08/2017 1:29,15/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0272,8/08/2017 1:29,15/01/2008 20:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0271,8/08/2017 1:29,15/01/2008 20:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0264,8/08/2017 1:29,15/01/2008 20:00,6.8,20, Improper Input Validation,nan
CVE-2008-0261,8/08/2017 1:29,15/01/2008 20:00,5.0,399, Resource Management Errors,nan
CVE-2008-0258,8/08/2017 1:29,15/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0257,8/08/2017 1:29,15/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0251,8/08/2017 1:29,12/01/2008 2:46,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0223,8/08/2017 1:29,10/01/2008 23:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0218,8/08/2017 1:29,10/01/2008 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0217,8/08/2017 1:29,16/01/2008 2:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0216,8/08/2017 1:29,16/01/2008 2:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-0173,8/08/2017 1:29,15/01/2008 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0169,8/08/2017 1:29,3/06/2008 15:32,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-0167,8/08/2017 1:29,18/05/2008 14:20,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0165,8/08/2017 1:29,21/04/2008 13:05,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0163,8/08/2017 1:29,12/02/2008 21:00,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0153,8/08/2017 1:29,9/01/2008 0:46,5.0,399, Resource Management Errors,nan
CVE-2008-0132,8/08/2017 1:29,8/01/2008 11:46,5.0,399, Resource Management Errors,nan
CVE-2008-0130,8/08/2017 1:29,8/01/2008 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0124,8/08/2017 1:29,28/02/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0093,8/08/2017 1:29,8/01/2008 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0073,8/08/2017 1:29,24/03/2008 22:44,6.8,189, Numeric Errors,nan
CVE-2008-0070,8/08/2017 1:29,31/03/2008 17:44,4.6,189, Numeric Errors,nan
CVE-2008-0065,8/08/2017 1:29,22/01/2008 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0060,8/08/2017 1:29,18/03/2008 23:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0059,8/08/2017 1:29,18/03/2008 23:44,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-0058,8/08/2017 1:29,18/03/2008 23:44,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-0057,8/08/2017 1:29,18/03/2008 22:44,6.8,189, Numeric Errors,nan
CVE-2008-0056,8/08/2017 1:29,18/03/2008 23:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0055,8/08/2017 1:29,18/03/2008 23:44,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-0054,8/08/2017 1:29,18/03/2008 23:44,6.4,20, Improper Input Validation,nan
CVE-2008-0052,8/08/2017 1:29,18/03/2008 23:44,6.8,200, Information Exposure,nan
CVE-2008-0051,8/08/2017 1:29,18/03/2008 22:44,6.9,189, Numeric Errors,nan
CVE-2008-0050,8/08/2017 1:29,18/03/2008 22:44,5.0,200, Information Exposure,nan
CVE-2008-0049,8/08/2017 1:29,18/03/2008 22:44,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0048,8/08/2017 1:29,18/03/2008 22:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0046,8/08/2017 1:29,18/03/2008 22:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0045,8/08/2017 1:29,18/03/2008 22:44,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-0044,8/08/2017 1:29,18/03/2008 22:44,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0036,8/08/2017 1:29,16/01/2008 3:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0035,8/08/2017 1:29,16/01/2008 2:00,6.8,399, Resource Management Errors,nan
CVE-2008-0032,8/08/2017 1:29,16/01/2008 3:00,5.8,399, Resource Management Errors,nan
CVE-2008-0031,8/08/2017 1:29,16/01/2008 2:00,5.8,399, Resource Management Errors,nan
CVE-2008-0029,8/08/2017 1:29,23/01/2008 21:00,10.0,255, Credentials Management,nan
CVE-2008-0026,8/08/2017 1:29,14/02/2008 12:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0014,8/08/2017 1:29,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0013,8/08/2017 1:29,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0012,8/08/2017 1:29,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6714,8/08/2017 1:29,17/04/2008 22:05,6.8,287, Improper Authentication,nan
CVE-2007-6711,8/08/2017 1:29,24/03/2008 23:44,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6701,8/08/2017 1:29,13/02/2008 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6695,8/08/2017 1:29,1/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6674,8/08/2017 1:29,8/01/2008 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6673,8/08/2017 1:29,8/01/2008 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6669,8/08/2017 1:29,8/01/2008 2:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6640,8/08/2017 1:29,4/01/2008 1:46,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-6636,8/08/2017 1:29,4/01/2008 0:46,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-6625,8/08/2017 1:29,4/01/2008 0:46,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2007-6613,8/08/2017 1:29,3/01/2008 22:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6588,8/08/2017 1:29,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6587,8/08/2017 1:29,28/12/2007 21:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6572,8/08/2017 1:29,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6571,8/08/2017 1:29,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6570,8/08/2017 1:29,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6564,8/08/2017 1:29,28/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6563,8/08/2017 1:29,28/12/2007 0:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6562,8/08/2017 1:29,28/12/2007 0:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6535,8/08/2017 1:29,27/12/2007 23:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6527,8/08/2017 1:29,27/12/2007 22:46,5.8,20, Improper Input Validation,nan
CVE-2007-6522,8/08/2017 1:29,24/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6520,8/08/2017 1:29,24/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6516,8/08/2017 1:29,21/12/2007 22:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6513,8/08/2017 1:29,21/12/2007 22:46,4.3,200, Information Exposure,nan
CVE-2007-6510,8/08/2017 1:29,21/12/2007 19:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6509,8/08/2017 1:29,21/12/2007 19:46,7.8,20, Improper Input Validation,nan
CVE-2007-6486,8/08/2017 1:29,20/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6477,8/08/2017 1:29,20/12/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6452,8/08/2017 1:29,20/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6436,8/08/2017 1:29,18/12/2007 20:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6413,8/08/2017 1:29,17/12/2007 23:46,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6386,8/08/2017 1:29,15/12/2007 2:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6385,8/08/2017 1:29,15/12/2007 2:46,2.1,287, Improper Authentication,nan
CVE-2007-6384,8/08/2017 1:29,15/12/2007 2:46,7.5,287, Improper Authentication,nan
CVE-2007-6381,8/08/2017 1:29,15/12/2007 2:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6373,8/08/2017 1:29,15/12/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6359,8/08/2017 1:29,15/12/2007 1:46,4.9,189, Numeric Errors,nan
CVE-2007-6353,8/08/2017 1:29,20/12/2007 1:46,7.5,189, Numeric Errors,nan
CVE-2007-6346,8/08/2017 1:29,13/12/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6345,8/08/2017 1:29,13/12/2007 22:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6339,8/08/2017 1:29,1/05/2008 19:05,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6336,8/08/2017 1:29,20/12/2007 1:46,6.8,189, Numeric Errors,nan
CVE-2007-6299,8/08/2017 1:29,10/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6298,8/08/2017 1:29,10/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6295,8/08/2017 1:29,10/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6291,8/08/2017 1:29,10/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6288,8/08/2017 1:29,10/12/2007 18:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6287,8/08/2017 1:29,10/12/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6281,8/08/2017 1:29,20/12/2007 0:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6274,8/08/2017 1:29,7/12/2007 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6270,8/08/2017 1:29,7/12/2007 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6269,8/08/2017 1:29,7/12/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6268,8/08/2017 1:29,7/12/2007 11:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6267,8/08/2017 1:29,7/12/2007 11:46,2.1,255, Credentials Management,nan
CVE-2007-6266,8/08/2017 1:29,7/12/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6265,8/08/2017 1:29,7/12/2007 11:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6261,8/08/2017 1:29,6/12/2007 2:46,4.9,189, Numeric Errors,nan
CVE-2007-6254,8/08/2017 1:29,20/03/2008 0:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6253,8/08/2017 1:29,12/03/2008 0:44,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6252,8/08/2017 1:29,3/03/2008 18:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6250,8/08/2017 1:29,9/01/2008 23:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6249,8/08/2017 1:29,15/12/2007 1:46,2.1,200, Information Exposure,nan
CVE-2006-7235,8/08/2017 1:29,11/12/2008 15:30,5.0,20, Improper Input Validation,nan
CVE-2006-7233,8/08/2017 1:29,31/12/2006 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7231,8/08/2017 1:29,31/12/2006 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4877,8/08/2017 1:29,31/12/2005 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4876,8/08/2017 1:29,31/12/2005 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4875,8/08/2017 1:29,31/12/2005 5:00,7.5,200, Information Exposure,nan
CVE-2005-4874,8/08/2017 1:29,31/12/2005 5:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-4873,8/08/2017 1:29,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1566,8/08/2017 1:29,15/01/2009 0:30,5.0,16, Configuration,nan
CVE-2003-1550,8/08/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1546,8/08/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1543,8/08/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9244,7/08/2017 22:12,2/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11391,7/08/2017 22:12,3/08/2017 15:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-9764,7/08/2017 22:11,19/07/2017 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7812,7/08/2017 22:04,2/08/2017 16:29,4.3,310, Cryptographic Issues,nan
CVE-2017-2283,7/08/2017 21:17,2/08/2017 16:29,5.8,798, Use of Hard-coded Credentials,nan
CVE-2017-11133,7/08/2017 20:58,1/08/2017 14:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-11129,7/08/2017 20:57,1/08/2017 14:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-11318,7/08/2017 18:48,17/07/2017 13:18,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11380,7/08/2017 18:47,1/08/2017 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-11367,7/08/2017 18:46,17/07/2017 16:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-11183,7/08/2017 18:44,28/07/2017 5:29,5.5,20, Improper Input Validation,nan
CVE-2017-1000008,7/08/2017 18:41,17/07/2017 13:18,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-12448,7/08/2017 18:40,4/08/2017 15:29,6.8,416, Use After Free,nan
CVE-2017-12449,7/08/2017 18:39,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12450,7/08/2017 18:38,4/08/2017 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12451,7/08/2017 18:37,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12452,7/08/2017 18:36,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12453,7/08/2017 18:35,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-11379,7/08/2017 17:15,1/08/2017 15:29,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2017-11119,7/08/2017 17:07,31/07/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11114,7/08/2017 16:53,31/07/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-3198,7/08/2017 16:43,21/07/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-10708,7/08/2017 15:16,18/07/2017 20:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10399,7/08/2017 15:12,27/07/2017 18:29,5.0,538, File and Directory Information Exposure,nan
CVE-2015-5059,7/08/2017 15:10,1/08/2017 14:29,3.5,200, Information Exposure,nan
CVE-2017-11666,7/08/2017 14:45,26/07/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-12459,7/08/2017 14:29,4/08/2017 15:29,6.8,787, Out-of-bounds Write,nan
CVE-2017-12458,7/08/2017 14:23,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12457,7/08/2017 13:20,4/08/2017 15:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-12455,7/08/2017 13:05,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-12454,7/08/2017 13:05,4/08/2017 15:29,6.8,125, Out-of-bounds Read,nan
CVE-2015-1174,7/08/2017 12:48,2/08/2017 19:29,7.5,384, Session Fixation,nan
CVE-2017-1327,6/08/2017 1:29,3/08/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1199,6/08/2017 1:29,3/08/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11393,6/08/2017 1:29,3/08/2017 15:29,10.0,20, Improper Input Validation,nan
CVE-2017-11389,6/08/2017 1:29,2/08/2017 21:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11388,6/08/2017 1:29,2/08/2017 21:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11387,6/08/2017 1:29,2/08/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-11386,6/08/2017 1:29,2/08/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11385,6/08/2017 1:29,2/08/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8975,6/08/2017 1:29,24/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11392,5/08/2017 1:29,3/08/2017 15:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-11691,4/08/2017 19:57,27/07/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11675,4/08/2017 19:53,27/07/2017 6:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11723,4/08/2017 19:52,29/07/2017 5:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11756,4/08/2017 19:42,30/07/2017 18:29,6.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-1000025,4/08/2017 18:38,17/07/2017 13:18,5.0,200, Information Exposure,nan
CVE-2017-2278,4/08/2017 18:05,2/08/2017 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-10801,4/08/2017 17:38,19/07/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9459,4/08/2017 17:30,2/08/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11184,4/08/2017 17:26,28/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1847,4/08/2017 17:00,25/07/2017 1:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11646,4/08/2017 16:22,28/07/2017 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11645,4/08/2017 16:22,28/07/2017 5:29,7.5,287, Improper Authentication,nan
CVE-2017-11647,4/08/2017 16:21,28/07/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7891,4/08/2017 16:21,2/08/2017 19:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-5030,4/08/2017 16:04,2/08/2017 19:29,6.8,399, Resource Management Errors,nan
CVE-2017-11727,4/08/2017 15:54,31/07/2017 23:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11726,4/08/2017 15:53,31/07/2017 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11648,4/08/2017 15:52,31/07/2017 23:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11364,4/08/2017 15:24,2/08/2017 14:29,6.5,295, Improper Certificate Validation,nan
CVE-2017-12138,4/08/2017 14:50,2/08/2017 5:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-12139,4/08/2017 14:46,2/08/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8572,4/08/2017 14:41,1/08/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-1500,4/08/2017 14:34,1/08/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000068,4/08/2017 14:34,17/07/2017 13:18,5.0,287, Improper Authentication,nan
CVE-2017-11328,4/08/2017 14:30,17/07/2017 13:18,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2279,4/08/2017 14:26,2/08/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-11658,4/08/2017 14:20,26/07/2017 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000034,4/08/2017 13:59,17/07/2017 13:18,9.3,502, Deserialization of Untrusted Data,nan
CVE-2017-0028,4/08/2017 13:54,17/07/2017 13:18,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2284,4/08/2017 13:53,2/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000004,4/08/2017 13:44,17/07/2017 13:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000007,4/08/2017 13:43,17/07/2017 13:18,4.3,295, Improper Certificate Validation,nan
CVE-2017-2285,4/08/2017 13:42,2/08/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1383,4/08/2017 13:28,2/08/2017 17:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-11390,4/08/2017 1:29,2/08/2017 21:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-7845,4/08/2017 1:29,2/08/2017 16:29,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7844,4/08/2017 1:29,2/08/2017 16:29,6.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-5627,3/08/2017 18:09,1/10/2013 17:55,4.0,255, Credentials Management,nan
CVE-2017-8870,3/08/2017 17:48,27/07/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12199,3/08/2017 17:28,2/08/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1495,3/08/2017 16:35,2/08/2017 17:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9477,3/08/2017 16:23,31/07/2017 3:29,3.3,200, Information Exposure,nan
CVE-2017-4922,3/08/2017 16:21,1/08/2017 16:29,4.0,200, Information Exposure,nan
CVE-2016-9717,3/08/2017 15:56,31/07/2017 21:29,4.0,20, Improper Input Validation,nan
CVE-2017-1000053,3/08/2017 15:54,17/07/2017 13:18,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-1332,3/08/2017 15:46,31/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1460,3/08/2017 15:21,31/07/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-11679,3/08/2017 15:21,27/07/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11678,3/08/2017 15:20,27/07/2017 6:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11677,3/08/2017 15:20,27/07/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1496,3/08/2017 15:19,31/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11614,3/08/2017 15:16,25/07/2017 17:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-11547,3/08/2017 14:08,31/07/2017 13:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11546,3/08/2017 14:08,31/07/2017 13:29,4.3,369, Divide By Zero,nan
CVE-2017-9492,3/08/2017 14:00,31/07/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-9495,3/08/2017 13:58,31/07/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-9476,3/08/2017 13:57,31/07/2017 3:29,3.3,200, Information Exposure,nan
CVE-2017-9491,3/08/2017 13:49,31/07/2017 3:29,5.0,200, Information Exposure,nan
CVE-2016-9716,3/08/2017 13:40,31/07/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9715,3/08/2017 13:40,31/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9718,3/08/2017 13:39,31/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9719,3/08/2017 12:46,31/07/2017 21:29,3.5,20, Improper Input Validation,nan
CVE-2016-9714,3/08/2017 12:02,31/07/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9478,3/08/2017 11:36,31/07/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-12145,3/08/2017 11:35,2/08/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-12143,3/08/2017 11:35,2/08/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2016-6271,3/08/2017 1:29,18/01/2017 22:59,5.0,254, 7PK – Security Features,nan
CVE-2017-11551,2/08/2017 18:20,31/07/2017 13:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11550,2/08/2017 18:20,31/07/2017 13:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9489,2/08/2017 18:12,31/07/2017 3:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11737,2/08/2017 18:08,29/07/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8869,2/08/2017 18:06,27/07/2017 13:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-12066,2/08/2017 17:48,1/08/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11736,2/08/2017 17:33,29/07/2017 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11753,2/08/2017 16:55,30/07/2017 18:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-11750,2/08/2017 16:50,30/07/2017 17:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11687,2/08/2017 16:25,27/07/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11686,2/08/2017 16:24,27/07/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11685,2/08/2017 16:16,27/07/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11680,2/08/2017 15:47,27/07/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9488,2/08/2017 15:44,31/07/2017 3:29,5.8,798, Use of Hard-coded Credentials,nan
CVE-2017-9480,2/08/2017 14:29,31/07/2017 3:29,2.1,200, Information Exposure,nan
CVE-2017-9487,2/08/2017 14:27,31/07/2017 3:29,4.3,200, Information Exposure,nan
CVE-2017-9486,2/08/2017 14:23,31/07/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-9484,2/08/2017 14:23,31/07/2017 3:29,5.0,200, Information Exposure,nan
CVE-2017-11744,2/08/2017 13:37,30/07/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1303,2/08/2017 13:36,31/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9497,2/08/2017 13:26,31/07/2017 3:29,7.2,20, Improper Input Validation,nan
CVE-2017-11654,2/08/2017 1:29,26/07/2017 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-0904,31/07/2017 19:12,25/07/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-3149,31/07/2017 19:10,25/07/2017 18:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5187,31/07/2017 19:07,25/07/2017 18:29,6.4,399, Resource Management Errors,nan
CVE-2015-3243,31/07/2017 19:07,25/07/2017 18:29,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-3278,31/07/2017 19:04,25/07/2017 18:29,7.5,20, Improper Input Validation,nan
CVE-2015-7543,31/07/2017 18:57,25/07/2017 14:29,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-5594,31/07/2017 18:38,25/07/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0674,31/07/2017 17:54,25/07/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11325,31/07/2017 17:49,24/07/2017 13:29,5.0,200, Information Exposure,nan
CVE-2015-1438,31/07/2017 17:43,25/07/2017 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6749,31/07/2017 17:08,25/07/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6751,31/07/2017 17:07,25/07/2017 19:29,5.0,20, Improper Input Validation,nan
CVE-2017-11651,31/07/2017 13:34,26/07/2017 8:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11630,31/07/2017 12:19,26/07/2017 8:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11631,31/07/2017 12:18,26/07/2017 8:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11612,31/07/2017 12:09,26/07/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7457,30/07/2017 1:29,29/12/2016 9:59,8.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7411,30/07/2017 1:29,17/09/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7191,30/07/2017 1:29,28/09/2016 20:59,4.3,287, Improper Authentication,nan
CVE-2016-7087,30/07/2017 1:29,29/12/2016 9:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7086,30/07/2017 1:29,29/12/2016 9:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7085,30/07/2017 1:29,29/12/2016 9:59,7.2,426, Untrusted Search Path,nan
CVE-2016-7082,30/07/2017 1:29,29/12/2016 9:59,5.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7081,30/07/2017 1:29,29/12/2016 9:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7080,30/07/2017 1:29,29/12/2016 9:59,4.6,476, NULL Pointer Dereference,nan
CVE-2016-7079,30/07/2017 1:29,29/12/2016 9:59,4.6,476, NULL Pointer Dereference,nan
CVE-2016-7045,30/07/2017 1:29,27/09/2016 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7044,30/07/2017 1:29,27/09/2016 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7019,30/07/2017 1:29,13/10/2016 20:01,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7018,30/07/2017 1:29,13/10/2016 20:01,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7017,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7016,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7015,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7014,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7013,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7012,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7011,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7010,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7009,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7008,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7007,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7006,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7005,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7004,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7003,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7002,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7001,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7000,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6999,30/07/2017 1:29,13/10/2016 20:00,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-6998,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6997,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6996,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6995,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6994,30/07/2017 1:29,13/10/2016 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6993,30/07/2017 1:29,13/10/2016 20:00,10.0,416, Use After Free,nan
CVE-2016-6988,30/07/2017 1:29,13/10/2016 20:00,10.0,416, Use After Free,nan
CVE-2016-6979,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6978,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6977,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6976,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6975,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6974,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6973,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6972,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6971,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6970,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6969,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6968,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6967,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6966,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6965,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6964,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6963,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6962,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6961,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6960,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6959,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6958,30/07/2017 1:29,13/10/2016 19:59,10.0,284, Improper Access Control,nan
CVE-2016-6957,30/07/2017 1:29,13/10/2016 19:59,10.0,254, 7PK – Security Features,nan
CVE-2016-6956,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6955,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6954,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6953,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6952,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6951,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6950,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6949,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6948,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6947,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6946,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6945,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6944,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-6943,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6942,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6941,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6940,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6939,30/07/2017 1:29,13/10/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6937,30/07/2017 1:29,17/09/2016 2:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6647,30/07/2017 1:29,30/09/2016 0:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6646,30/07/2017 1:29,5/10/2016 1:59,10.0,20, Improper Input Validation,nan
CVE-2016-6645,30/07/2017 1:29,5/10/2016 1:59,9.0,20, Improper Input Validation,nan
CVE-2016-6445,30/07/2017 1:29,27/10/2016 21:59,6.4,20, Improper Input Validation,nan
CVE-2016-6428,30/07/2017 1:29,6/10/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6427,30/07/2017 1:29,6/10/2016 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6426,30/07/2017 1:29,5/10/2016 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-6425,30/07/2017 1:29,6/10/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6423,30/07/2017 1:29,5/10/2016 20:59,6.3,399, Resource Management Errors,nan
CVE-2016-6422,30/07/2017 1:29,6/10/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-6421,30/07/2017 1:29,5/10/2016 20:59,5.0,399, Resource Management Errors,nan
CVE-2016-6420,30/07/2017 1:29,5/10/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-6417,30/07/2017 1:29,5/10/2016 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6416,30/07/2017 1:29,5/10/2016 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6415,30/07/2017 1:29,19/09/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-6414,30/07/2017 1:29,22/09/2016 22:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-6413,30/07/2017 1:29,24/09/2016 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-6412,30/07/2017 1:29,24/09/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-6411,30/07/2017 1:29,24/09/2016 1:59,5.0,20, Improper Input Validation,nan
CVE-2016-6410,30/07/2017 1:29,24/09/2016 1:59,6.8,20, Improper Input Validation,nan
CVE-2016-6409,30/07/2017 1:29,24/09/2016 1:59,4.3,399, Resource Management Errors,nan
CVE-2016-6407,30/07/2017 1:29,17/09/2016 2:59,5.0,399, Resource Management Errors,nan
CVE-2016-6406,30/07/2017 1:29,22/09/2016 22:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-6404,30/07/2017 1:29,18/09/2016 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6403,30/07/2017 1:29,18/09/2016 22:59,4.3,399, Resource Management Errors,nan
CVE-2016-6402,30/07/2017 1:29,18/09/2016 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6401,30/07/2017 1:29,17/09/2016 2:59,5.7,399, Resource Management Errors,nan
CVE-2016-6393,30/07/2017 1:29,5/10/2016 20:59,7.1,399, Resource Management Errors,nan
CVE-2016-6391,30/07/2017 1:29,5/10/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-6386,30/07/2017 1:29,5/10/2016 17:59,7.8,399, Resource Management Errors,nan
CVE-2016-6385,30/07/2017 1:29,5/10/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-6384,30/07/2017 1:29,5/10/2016 17:59,7.8,399, Resource Management Errors,nan
CVE-2016-6382,30/07/2017 1:29,5/10/2016 17:59,7.8,399, Resource Management Errors,nan
CVE-2016-6381,30/07/2017 1:29,5/10/2016 17:59,7.1,399, Resource Management Errors,nan
CVE-2016-6380,30/07/2017 1:29,5/10/2016 20:59,8.3,20, Improper Input Validation,nan
CVE-2016-6379,30/07/2017 1:29,5/10/2016 20:59,7.8,20, Improper Input Validation,nan
CVE-2016-6378,30/07/2017 1:29,5/10/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-6374,30/07/2017 1:29,22/09/2016 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-6373,30/07/2017 1:29,22/09/2016 22:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-6038,30/07/2017 1:29,26/09/2016 17:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5995,30/07/2017 1:29,1/10/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-5986,30/07/2017 1:29,1/10/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-5283,30/07/2017 1:29,22/09/2016 22:59,6.8,284, Improper Access Control,nan
CVE-2016-5282,30/07/2017 1:29,22/09/2016 22:59,4.3,200, Information Exposure,nan
CVE-2016-5279,30/07/2017 1:29,22/09/2016 22:59,4.3,200, Information Exposure,nan
CVE-2016-5275,30/07/2017 1:29,22/09/2016 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5273,30/07/2017 1:29,22/09/2016 22:59,6.8,284, Improper Access Control,nan
CVE-2016-5271,30/07/2017 1:29,22/09/2016 22:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5256,30/07/2017 1:29,22/09/2016 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4779,30/07/2017 1:29,25/09/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4771,30/07/2017 1:29,25/09/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-4769,30/07/2017 1:29,25/09/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4763,30/07/2017 1:29,25/09/2016 10:59,4.9,310, Cryptographic Issues,nan
CVE-2016-4762,30/07/2017 1:29,25/09/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4760,30/07/2017 1:29,25/09/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-4758,30/07/2017 1:29,25/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-4755,30/07/2017 1:29,25/09/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-4754,30/07/2017 1:29,25/09/2016 10:59,5.0,310, Cryptographic Issues,nan
CVE-2016-4752,30/07/2017 1:29,25/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-4751,30/07/2017 1:29,25/09/2016 10:59,4.3,254, 7PK – Security Features,nan
CVE-2016-4750,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4748,30/07/2017 1:29,25/09/2016 10:59,4.6,254, 7PK – Security Features,nan
CVE-2016-4745,30/07/2017 1:29,25/09/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-4742,30/07/2017 1:29,25/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-4739,30/07/2017 1:29,25/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-4731,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4729,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4727,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4724,30/07/2017 1:29,25/09/2016 10:59,9.3,476, NULL Pointer Dereference,nan
CVE-2016-4723,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4722,30/07/2017 1:29,25/09/2016 10:59,7.1,20, Improper Input Validation,nan
CVE-2016-4716,30/07/2017 1:29,25/09/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4715,30/07/2017 1:29,25/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-4713,30/07/2017 1:29,25/09/2016 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4711,30/07/2017 1:29,25/09/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-4710,30/07/2017 1:29,25/09/2016 10:59,7.2,704, Incorrect Type Conversion or Cast,nan
CVE-2016-4709,30/07/2017 1:29,25/09/2016 10:59,7.2,704, Incorrect Type Conversion or Cast,nan
CVE-2016-4707,30/07/2017 1:29,25/09/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-4706,30/07/2017 1:29,25/09/2016 10:59,4.9,20, Improper Input Validation,nan
CVE-2016-4703,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4701,30/07/2017 1:29,25/09/2016 10:59,2.1,20, Improper Input Validation,nan
CVE-2016-4700,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4699,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4698,30/07/2017 1:29,25/09/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2016-4697,30/07/2017 1:29,25/09/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4696,30/07/2017 1:29,25/09/2016 10:59,9.3,476, NULL Pointer Dereference,nan
CVE-2016-4694,30/07/2017 1:29,25/09/2016 10:59,7.5,284, Improper Access Control,nan
CVE-2016-4618,30/07/2017 1:29,25/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4464,30/07/2017 1:29,21/09/2016 18:59,7.5,284, Improper Access Control,nan
CVE-2016-1483,30/07/2017 1:29,19/09/2016 1:59,7.8,20, Improper Input Validation,nan
CVE-2016-1482,30/07/2017 1:29,17/09/2016 21:59,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-1455,30/07/2017 1:29,5/10/2016 20:59,5.0,200, Information Exposure,nan
CVE-2016-1454,30/07/2017 1:29,6/10/2016 10:59,7.1,20, Improper Input Validation,nan
CVE-2016-1453,30/07/2017 1:29,6/10/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1433,30/07/2017 1:29,18/09/2016 22:59,5.0,399, Resource Management Errors,nan
CVE-2016-1091,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-1089,30/07/2017 1:29,13/10/2016 19:59,10.0,416, Use After Free,nan
CVE-2016-0925,30/07/2017 1:29,21/09/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0923,30/07/2017 1:29,18/09/2016 2:59,2.6,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2016-0921,30/07/2017 1:29,21/09/2016 2:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-0920,30/07/2017 1:29,21/09/2016 2:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0918,30/07/2017 1:29,24/09/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-0917,30/07/2017 1:29,21/09/2016 2:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-0913,30/07/2017 1:29,5/10/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-0905,30/07/2017 1:29,21/09/2016 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0904,30/07/2017 1:29,21/09/2016 2:59,5.0,310, Cryptographic Issues,nan
CVE-2016-0903,30/07/2017 1:29,21/09/2016 2:59,6.4,200, Information Exposure,nan
CVE-2016-0331,30/07/2017 1:29,12/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7363,30/07/2017 1:29,7/10/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6393,30/07/2017 1:29,6/10/2016 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-6392,30/07/2017 1:29,6/10/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-0721,30/07/2017 1:29,6/10/2016 10:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1632,30/07/2017 1:29,22/06/2010 20:30,7.5,20, Improper Input Validation,nan
CVE-2016-9028,29/07/2017 1:34,28/10/2016 15:59,5.8,254, 7PK – Security Features,nan
CVE-2016-8870,29/07/2017 1:34,4/11/2016 21:59,6.8,20, Improper Input Validation,nan
CVE-2016-8856,29/07/2017 1:34,31/10/2016 10:59,4.6,275, Permission Issues,nan
CVE-2016-8565,29/07/2017 1:34,13/10/2016 10:59,6.4,284, Improper Access Control,nan
CVE-2016-8564,29/07/2017 1:34,13/10/2016 10:59,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8563,29/07/2017 1:34,13/10/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-8296,29/07/2017 1:34,25/10/2016 14:32,4.9,284, Improper Access Control,nan
CVE-2016-8295,29/07/2017 1:34,25/10/2016 14:32,4.0,200, Information Exposure,nan
CVE-2016-8294,29/07/2017 1:34,25/10/2016 14:32,4.0,200, Information Exposure,nan
CVE-2016-8293,29/07/2017 1:34,25/10/2016 14:32,5.8,284, Improper Access Control,nan
CVE-2016-8292,29/07/2017 1:34,25/10/2016 14:32,5.8,284, Improper Access Control,nan
CVE-2016-8291,29/07/2017 1:34,25/10/2016 14:32,5.8,284, Improper Access Control,nan
CVE-2016-8289,29/07/2017 1:34,25/10/2016 14:32,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8286,29/07/2017 1:34,25/10/2016 14:31,3.5,200, Information Exposure,nan
CVE-2016-8285,29/07/2017 1:34,25/10/2016 14:31,4.9,284, Improper Access Control,nan
CVE-2016-8281,29/07/2017 1:34,25/10/2016 14:31,6.5,284, Improper Access Control,nan
CVE-2016-8203,29/07/2017 1:34,31/10/2016 21:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7440,29/07/2017 1:34,13/12/2016 16:59,2.1,310, Cryptographic Issues,nan
CVE-2016-7123,29/07/2017 1:34,2/09/2016 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6459,29/07/2017 1:34,19/11/2016 3:03,4.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-6458,29/07/2017 1:34,19/11/2016 3:03,5.0,20, Improper Input Validation,nan
CVE-2016-6457,29/07/2017 1:34,19/11/2016 3:03,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6455,29/07/2017 1:34,3/11/2016 21:59,5.0,399, Resource Management Errors,nan
CVE-2016-6453,29/07/2017 1:34,3/11/2016 21:59,4.9,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6451,29/07/2017 1:34,3/11/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6448,29/07/2017 1:34,3/11/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6447,29/07/2017 1:34,3/11/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6442,29/07/2017 1:34,27/10/2016 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6441,29/07/2017 1:34,3/11/2016 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6440,29/07/2017 1:34,27/10/2016 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-6439,29/07/2017 1:34,27/10/2016 21:59,4.3,399, Resource Management Errors,nan
CVE-2016-6438,29/07/2017 1:34,27/10/2016 21:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6437,29/07/2017 1:34,27/10/2016 21:59,7.1,399, Resource Management Errors,nan
CVE-2016-6372,29/07/2017 1:34,28/10/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-6360,29/07/2017 1:34,28/10/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-6358,29/07/2017 1:34,28/10/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-6357,29/07/2017 1:34,28/10/2016 10:59,5.0,388, 7PK – Errors,nan
CVE-2016-6356,29/07/2017 1:34,28/10/2016 10:59,7.8,20, Improper Input Validation,nan
CVE-2016-5994,29/07/2017 1:34,1/02/2017 20:59,4.0,200, Information Exposure,nan
CVE-2016-5622,29/07/2017 1:34,25/10/2016 14:31,7.8,284, Improper Access Control,nan
CVE-2016-5621,29/07/2017 1:34,25/10/2016 14:31,4.0,284, Improper Access Control,nan
CVE-2016-5620,29/07/2017 1:34,25/10/2016 14:31,5.5,284, Improper Access Control,nan
CVE-2016-5619,29/07/2017 1:34,25/10/2016 14:31,5.5,284, Improper Access Control,nan
CVE-2016-5618,29/07/2017 1:34,25/10/2016 14:31,3.5,200, Information Exposure,nan
CVE-2016-5615,29/07/2017 1:34,25/10/2016 14:31,2.1,284, Improper Access Control,nan
CVE-2016-5607,29/07/2017 1:34,25/10/2016 14:31,6.5,284, Improper Access Control,nan
CVE-2016-5606,29/07/2017 1:34,25/10/2016 14:31,5.6,284, Improper Access Control,nan
CVE-2016-5605,29/07/2017 1:34,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5604,29/07/2017 1:34,25/10/2016 14:31,3.3,284, Improper Access Control,nan
CVE-2016-5603,29/07/2017 1:34,25/10/2016 14:31,4.0,200, Information Exposure,nan
CVE-2016-5602,29/07/2017 1:34,25/10/2016 14:31,3.5,200, Information Exposure,nan
CVE-2016-5600,29/07/2017 1:34,25/10/2016 14:31,5.5,284, Improper Access Control,nan
CVE-2016-5596,29/07/2017 1:34,25/10/2016 14:31,4.0,200, Information Exposure,nan
CVE-2016-5595,29/07/2017 1:34,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5594,29/07/2017 1:34,25/10/2016 14:31,4.0,284, Improper Access Control,nan
CVE-2016-5593,29/07/2017 1:34,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5592,29/07/2017 1:34,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5591,29/07/2017 1:34,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5589,29/07/2017 1:34,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5588,29/07/2017 1:34,25/10/2016 14:30,7.5,284, Improper Access Control,nan
CVE-2016-5587,29/07/2017 1:34,25/10/2016 14:30,6.4,284, Improper Access Control,nan
CVE-2016-5586,29/07/2017 1:34,25/10/2016 14:30,6.4,284, Improper Access Control,nan
CVE-2016-5585,29/07/2017 1:34,25/10/2016 14:30,6.4,284, Improper Access Control,nan
CVE-2016-5581,29/07/2017 1:34,25/10/2016 14:30,4.6,284, Improper Access Control,nan
CVE-2016-5579,29/07/2017 1:34,25/10/2016 14:30,7.5,284, Improper Access Control,nan
CVE-2016-5578,29/07/2017 1:34,25/10/2016 14:30,7.5,284, Improper Access Control,nan
CVE-2016-5577,29/07/2017 1:34,25/10/2016 14:30,7.5,284, Improper Access Control,nan
CVE-2016-5576,29/07/2017 1:34,25/10/2016 14:30,4.9,284, Improper Access Control,nan
CVE-2016-5575,29/07/2017 1:34,25/10/2016 14:30,5.0,284, Improper Access Control,nan
CVE-2016-5572,29/07/2017 1:34,25/10/2016 14:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-5571,29/07/2017 1:34,25/10/2016 14:30,5.5,284, Improper Access Control,nan
CVE-2016-5570,29/07/2017 1:34,25/10/2016 14:30,5.5,284, Improper Access Control,nan
CVE-2016-5569,29/07/2017 1:34,25/10/2016 14:30,5.5,284, Improper Access Control,nan
CVE-2016-5566,29/07/2017 1:34,25/10/2016 14:30,5.0,284, Improper Access Control,nan
CVE-2016-5562,29/07/2017 1:34,25/10/2016 14:30,4.9,284, Improper Access Control,nan
CVE-2016-5557,29/07/2017 1:34,25/10/2016 14:30,5.8,284, Improper Access Control,nan
CVE-2016-5536,29/07/2017 1:34,25/10/2016 14:30,6.5,284, Improper Access Control,nan
CVE-2016-5532,29/07/2017 1:34,25/10/2016 14:30,5.0,284, Improper Access Control,nan
CVE-2016-5525,29/07/2017 1:34,25/10/2016 14:30,2.1,284, Improper Access Control,nan
CVE-2016-5517,29/07/2017 1:34,25/10/2016 14:29,2.1,284, Improper Access Control,nan
CVE-2016-5511,29/07/2017 1:34,25/10/2016 14:29,4.3,254, 7PK – Security Features,nan
CVE-2016-5508,29/07/2017 1:34,25/10/2016 14:29,2.1,200, Information Exposure,nan
CVE-2016-5506,29/07/2017 1:34,25/10/2016 14:29,3.3,284, Improper Access Control,nan
CVE-2016-5505,29/07/2017 1:34,25/10/2016 14:29,2.1,200, Information Exposure,nan
CVE-2016-5502,29/07/2017 1:34,25/10/2016 14:29,5.5,284, Improper Access Control,nan
CVE-2016-5500,29/07/2017 1:34,25/10/2016 14:29,5.0,200, Information Exposure,nan
CVE-2016-5499,29/07/2017 1:34,25/10/2016 14:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-5498,29/07/2017 1:34,25/10/2016 14:29,2.1,200, Information Exposure,nan
CVE-2016-5497,29/07/2017 1:34,25/10/2016 14:29,4.4,284, Improper Access Control,nan
CVE-2016-5495,29/07/2017 1:34,25/10/2016 14:29,5.0,284, Improper Access Control,nan
CVE-2016-5493,29/07/2017 1:34,25/10/2016 14:29,4.9,284, Improper Access Control,nan
CVE-2016-5479,29/07/2017 1:34,25/10/2016 14:29,4.0,200, Information Exposure,nan
CVE-2016-5329,29/07/2017 1:34,29/12/2016 9:59,2.1,200, Information Exposure,nan
CVE-2016-5328,29/07/2017 1:34,29/12/2016 9:59,2.1,254, 7PK – Security Features,nan
CVE-2016-4686,29/07/2017 1:34,20/02/2017 8:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-4682,29/07/2017 1:34,20/02/2017 8:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-4678,29/07/2017 1:34,20/02/2017 8:59,4.6,476, NULL Pointer Dereference,nan
CVE-2016-4674,29/07/2017 1:34,20/02/2017 8:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4671,29/07/2017 1:34,20/02/2017 8:59,9.3,787, Out-of-bounds Write,nan
CVE-2016-4667,29/07/2017 1:34,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4663,29/07/2017 1:34,20/02/2017 8:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4662,29/07/2017 1:34,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4661,29/07/2017 1:34,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2016-4613,29/07/2017 1:34,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-3562,29/07/2017 1:34,25/10/2016 14:29,4.3,200, Information Exposure,nan
CVE-2016-3014,29/07/2017 1:34,30/11/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1486,29/07/2017 1:34,28/10/2016 10:59,7.8,19, Data Processing Errors,nan
CVE-2016-1481,29/07/2017 1:34,28/10/2016 10:59,7.8,20, Improper Input Validation,nan
CVE-2016-1480,29/07/2017 1:34,28/10/2016 10:59,5.0,388, 7PK – Errors,nan
CVE-2016-1423,29/07/2017 1:34,28/10/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0909,29/07/2017 1:34,15/11/2016 19:30,7.2,20, Improper Input Validation,nan
CVE-2008-0008,29/07/2017 1:34,29/01/2008 0:00,7.2,20, Improper Input Validation,nan
CVE-2007-6228,29/07/2017 1:34,4/12/2007 18:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6222,29/07/2017 1:34,4/12/2007 17:46,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6221,29/07/2017 1:34,4/12/2007 17:46,7.8,200, Information Exposure,nan
CVE-2007-6220,29/07/2017 1:34,4/12/2007 17:46,5.0,189, Numeric Errors,nan
CVE-2007-6209,29/07/2017 1:34,4/12/2007 0:46,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-6196,29/07/2017 1:34,1/12/2007 6:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6191,29/07/2017 1:34,30/11/2007 1:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6182,29/07/2017 1:34,30/11/2007 0:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6180,29/07/2017 1:34,30/11/2007 0:46,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-6175,29/07/2017 1:34,30/11/2007 0:46,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6174,29/07/2017 1:34,30/11/2007 0:46,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6169,29/07/2017 1:34,29/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6150,29/07/2017 1:34,30/11/2007 1:46,2.1,200, Information Exposure,nan
CVE-2007-6149,29/07/2017 1:34,13/02/2008 21:00,10.0,189, Numeric Errors,nan
CVE-2007-6145,29/07/2017 1:34,27/11/2007 19:46,5.0,287, Improper Authentication,nan
CVE-2007-6142,29/07/2017 1:34,27/11/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6140,29/07/2017 1:34,27/11/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6122,29/07/2017 1:34,26/11/2007 22:46,5.0,20, Improper Input Validation,nan
CVE-2007-6104,29/07/2017 1:34,23/11/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6103,29/07/2017 1:34,23/11/2007 20:46,5.0,20, Improper Input Validation,nan
CVE-2007-6101,29/07/2017 1:34,23/11/2007 20:46,4.0,20, Improper Input Validation,nan
CVE-2007-6100,29/07/2017 1:34,23/11/2007 20:46,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6041,29/07/2017 1:34,20/11/2007 19:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6035,29/07/2017 1:34,20/11/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6028,29/07/2017 1:34,20/11/2007 1:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6018,29/07/2017 1:33,11/01/2008 2:46,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-6005,29/07/2017 1:33,15/11/2007 22:46,4.3,399, Resource Management Errors,nan
CVE-2007-6003,29/07/2017 1:33,15/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6002,29/07/2017 1:33,15/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6001,29/07/2017 1:33,15/11/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5988,29/07/2017 1:33,15/11/2007 0:46,7.5,287, Improper Authentication,nan
CVE-2007-5987,29/07/2017 1:33,15/11/2007 0:46,6.8,287, Improper Authentication,nan
CVE-2007-5986,29/07/2017 1:33,15/11/2007 0:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5985,29/07/2017 1:33,15/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5977,29/07/2017 1:33,15/11/2007 0:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5976,29/07/2017 1:33,15/11/2007 0:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5956,29/07/2017 1:33,14/11/2007 11:46,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5955,29/07/2017 1:33,14/11/2007 2:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5950,29/07/2017 1:33,14/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5949,29/07/2017 1:33,14/11/2007 1:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5945,29/07/2017 1:33,14/11/2007 1:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5932,29/07/2017 1:33,10/11/2007 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5931,29/07/2017 1:33,10/11/2007 11:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5930,29/07/2017 1:33,10/11/2007 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5929,29/07/2017 1:33,10/11/2007 2:46,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5926,29/07/2017 1:33,10/11/2007 2:46,9.0,20, Improper Input Validation,nan
CVE-2007-5920,29/07/2017 1:33,10/11/2007 2:46,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5905,29/07/2017 1:33,15/11/2007 20:46,6.8,255, Credentials Management,nan
CVE-2007-5896,29/07/2017 1:33,8/11/2007 20:46,7.1,399, Resource Management Errors,nan
CVE-2007-5893,29/07/2017 1:33,8/11/2007 2:46,5.0,20, Improper Input Validation,nan
CVE-2007-5892,29/07/2017 1:33,8/11/2007 2:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5891,29/07/2017 1:33,8/11/2007 2:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5888,29/07/2017 1:33,7/11/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5859,29/07/2017 1:33,19/12/2007 21:46,9.3,399, Resource Management Errors,nan
CVE-2007-5858,29/07/2017 1:33,19/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5857,29/07/2017 1:33,19/12/2007 21:46,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-5856,29/07/2017 1:33,19/12/2007 21:46,9.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-5855,29/07/2017 1:33,19/12/2007 21:46,6.4,287, Improper Authentication,nan
CVE-2007-5854,29/07/2017 1:33,19/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5850,29/07/2017 1:33,19/12/2007 21:46,8.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5849,29/07/2017 1:33,19/12/2007 21:46,9.3,189, Numeric Errors,nan
CVE-2007-5847,29/07/2017 1:33,19/12/2007 21:46,6.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-5839,29/07/2017 1:33,6/11/2007 19:46,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5838,29/07/2017 1:33,6/11/2007 19:46,7.2,16, Configuration,nan
CVE-2007-5837,29/07/2017 1:33,5/11/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5836,29/07/2017 1:33,5/11/2007 19:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5829,29/07/2017 1:33,5/11/2007 19:46,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5827,29/07/2017 1:33,5/11/2007 19:46,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5819,29/07/2017 1:33,5/11/2007 18:46,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5805,29/07/2017 1:33,5/11/2007 17:46,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5803,29/07/2017 1:33,13/05/2008 23:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5799,29/07/2017 1:33,3/11/2007 0:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5798,29/07/2017 1:33,3/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5792,29/07/2017 1:33,1/11/2007 16:46,7.1,310, Cryptographic Issues,nan
CVE-2007-5791,29/07/2017 1:33,1/11/2007 16:46,10.0,287, Improper Authentication,nan
CVE-2007-5790,29/07/2017 1:33,1/11/2007 16:46,2.1,310, Cryptographic Issues,nan
CVE-2007-5788,29/07/2017 1:33,1/11/2007 16:46,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5762,29/07/2017 1:33,9/01/2008 22:46,7.2,20, Improper Input Validation,nan
CVE-2007-5761,29/07/2017 1:33,9/01/2008 0:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5758,29/07/2017 1:33,16/04/2008 18:05,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5756,29/07/2017 1:33,14/11/2007 1:46,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5755,29/07/2017 1:33,14/11/2007 1:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5751,29/07/2017 1:33,31/10/2007 17:46,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-5742,29/07/2017 1:33,1/12/2007 6:46,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5729,29/07/2017 1:33,30/10/2007 22:46,6.6,189, Numeric Errors,nan
CVE-2007-5728,29/07/2017 1:33,30/10/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5723,29/07/2017 1:33,30/10/2007 21:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5722,29/07/2017 1:33,30/10/2007 21:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5718,29/07/2017 1:33,30/10/2007 21:46,4.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5712,29/07/2017 1:33,30/10/2007 19:46,2.6,399, Resource Management Errors,nan
CVE-2007-5711,29/07/2017 1:33,30/10/2007 19:46,5.0,20, Improper Input Validation,nan
CVE-2007-5705,29/07/2017 1:33,29/10/2007 22:46,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5701,29/07/2017 1:33,29/10/2007 21:46,2.1,310, Cryptographic Issues,nan
CVE-2007-5698,29/07/2017 1:33,29/10/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5687,29/07/2017 1:33,28/10/2007 17:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5673,29/07/2017 1:33,24/10/2007 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5664,29/07/2017 1:33,16/04/2008 18:05,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5661,29/07/2017 1:33,4/04/2008 0:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5658,29/07/2017 1:33,16/01/2008 3:00,10.0,20, Improper Input Validation,nan
CVE-2007-5657,29/07/2017 1:33,16/01/2008 3:00,10.0,20, Improper Input Validation,nan
CVE-2007-5656,29/07/2017 1:33,16/01/2008 3:00,10.0,399, Resource Management Errors,nan
CVE-2007-5655,29/07/2017 1:33,16/01/2008 3:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5649,29/07/2017 1:33,23/10/2007 21:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5647,29/07/2017 1:33,23/10/2007 21:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5634,29/07/2017 1:33,23/10/2007 17:46,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5629,29/07/2017 1:33,23/10/2007 16:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5624,29/07/2017 1:33,23/10/2007 16:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5621,29/07/2017 1:33,22/10/2007 19:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5612,29/07/2017 1:33,21/11/2007 22:46,7.8,399, Resource Management Errors,nan
CVE-2007-5601,29/07/2017 1:33,20/10/2007 20:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5594,29/07/2017 1:33,19/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5593,29/07/2017 1:33,19/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5590,29/07/2017 1:33,19/10/2007 23:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5588,29/07/2017 1:33,19/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5581,29/07/2017 1:33,8/11/2007 2:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5579,29/07/2017 1:33,18/10/2007 22:17,7.5,255, Credentials Management,nan
CVE-2007-5578,29/07/2017 1:33,18/10/2007 22:17,7.5,287, Improper Authentication,nan
CVE-2007-5577,29/07/2017 1:33,18/10/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5575,29/07/2017 1:33,18/10/2007 21:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5567,29/07/2017 1:33,18/10/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5562,29/07/2017 1:33,18/10/2007 20:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5541,29/07/2017 1:33,18/10/2007 0:17,9.3,20, Improper Input Validation,nan
CVE-2007-5538,29/07/2017 1:33,18/10/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5537,29/07/2017 1:33,18/10/2007 0:17,7.8,399, Resource Management Errors,nan
CVE-2007-5502,29/07/2017 1:33,1/12/2007 6:46,6.4,310, Cryptographic Issues,nan
CVE-2007-5501,29/07/2017 1:33,15/11/2007 20:46,7.8,399, Resource Management Errors,nan
CVE-2007-5488,29/07/2017 1:33,17/10/2007 23:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5486,29/07/2017 1:33,16/10/2007 23:17,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-5480,29/07/2017 1:33,16/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5477,29/07/2017 1:33,16/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5473,29/07/2017 1:33,18/10/2007 18:17,5.0,200, Information Exposure,nan
CVE-2007-5469,29/07/2017 1:33,16/10/2007 0:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5468,29/07/2017 1:33,16/10/2007 0:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5462,29/07/2017 1:33,15/10/2007 22:17,7.8,20, Improper Input Validation,nan
CVE-2007-5459,29/07/2017 1:33,14/10/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5454,29/07/2017 1:33,14/10/2007 18:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5411,29/07/2017 1:33,12/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5404,29/07/2017 1:33,9/01/2008 21:46,5.0,200, Information Exposure,nan
CVE-2007-5403,29/07/2017 1:33,9/01/2008 21:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5402,29/07/2017 1:33,9/01/2008 21:46,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5401,29/07/2017 1:33,9/01/2008 21:46,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5396,29/07/2017 1:33,10/11/2007 0:46,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2007-5382,29/07/2017 1:33,12/10/2007 1:17,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5381,29/07/2017 1:33,12/10/2007 1:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5373,29/07/2017 1:33,11/10/2007 10:17,2.1,310, Cryptographic Issues,nan
CVE-2007-5366,29/07/2017 1:33,11/10/2007 10:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5363,29/07/2017 1:33,11/10/2007 1:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5362,29/07/2017 1:33,11/10/2007 1:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5323,29/07/2017 1:33,11/10/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5320,29/07/2017 1:33,9/10/2007 22:17,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5318,29/07/2017 1:33,9/10/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-5297,29/07/2017 1:33,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5296,29/07/2017 1:33,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5295,29/07/2017 1:33,9/10/2007 18:17,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5292,29/07/2017 1:33,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5291,29/07/2017 1:33,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5290,29/07/2017 1:33,9/10/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5283,29/07/2017 1:33,9/10/2007 0:17,5.0,20, Improper Input Validation,nan
CVE-2007-5282,29/07/2017 1:33,9/10/2007 0:17,4.3,20, Improper Input Validation,nan
CVE-2007-5281,29/07/2017 1:33,9/10/2007 0:17,5.0,20, Improper Input Validation,nan
CVE-2007-5279,29/07/2017 1:33,9/10/2007 0:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5251,29/07/2017 1:33,6/10/2007 17:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5244,29/07/2017 1:33,6/10/2007 17:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5243,29/07/2017 1:33,6/10/2007 17:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5228,29/07/2017 1:33,5/10/2007 23:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5217,29/07/2017 1:33,5/10/2007 0:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5211,29/07/2017 1:33,4/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5210,29/07/2017 1:33,4/10/2007 23:17,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5209,29/07/2017 1:33,4/10/2007 23:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5207,29/07/2017 1:33,4/10/2007 21:17,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5183,29/07/2017 1:33,3/10/2007 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5182,29/07/2017 1:33,3/10/2007 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5181,29/07/2017 1:33,3/10/2007 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5180,29/07/2017 1:33,3/10/2007 14:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5176,29/07/2017 1:33,3/10/2007 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5172,29/07/2017 1:33,1/10/2007 20:17,5.0,200, Information Exposure,nan
CVE-2007-5171,29/07/2017 1:33,1/10/2007 20:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5170,29/07/2017 1:33,1/10/2007 20:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5169,29/07/2017 1:33,11/10/2007 10:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5155,29/07/2017 1:33,1/10/2007 5:17,9.3,20, Improper Input Validation,nan
CVE-2007-5154,29/07/2017 1:33,1/10/2007 5:17,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-5153,29/07/2017 1:33,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5152,29/07/2017 1:33,1/10/2007 5:17,7.5,287, Improper Authentication,nan
CVE-2007-5134,29/07/2017 1:33,27/09/2007 19:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5115,29/07/2017 1:33,26/09/2007 23:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5104,29/07/2017 1:33,26/09/2007 22:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5101,29/07/2017 1:33,26/09/2007 22:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5090,29/07/2017 1:33,26/09/2007 20:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5088,29/07/2017 1:33,26/09/2007 20:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5080,29/07/2017 1:33,31/10/2007 17:46,9.3,189, Numeric Errors,nan
CVE-2007-5066,29/07/2017 1:33,24/09/2007 23:17,9.0,20, Improper Input Validation,nan
CVE-2007-5051,29/07/2017 1:33,24/09/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5048,29/07/2017 1:33,24/09/2007 0:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5037,29/07/2017 1:33,24/09/2007 0:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5031,29/07/2017 1:33,21/09/2007 19:17,5.0,20, Improper Input Validation,nan
CVE-2007-5030,29/07/2017 1:33,21/09/2007 19:17,5.0,189, Numeric Errors,nan
CVE-2007-5029,29/07/2017 1:33,21/09/2007 19:17,5.0,20, Improper Input Validation,nan
CVE-2007-5013,29/07/2017 1:33,20/09/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5012,29/07/2017 1:33,20/09/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5010,29/07/2017 1:33,20/09/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4991,29/07/2017 1:33,21/09/2007 19:17,5.0,200, Information Exposure,nan
CVE-2007-4959,29/07/2017 1:33,18/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4958,29/07/2017 1:33,18/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4950,29/07/2017 1:33,18/09/2007 20:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4945,29/07/2017 1:33,18/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4914,29/07/2017 1:33,17/09/2007 17:17,6.0,20, Improper Input Validation,nan
CVE-2007-4912,29/07/2017 1:33,17/09/2007 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4894,29/07/2017 1:33,14/09/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4893,29/07/2017 1:33,14/09/2007 18:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-4892,29/07/2017 1:33,14/09/2007 18:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4880,29/07/2017 1:33,28/09/2007 0:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4838,29/07/2017 1:33,12/09/2007 19:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4832,29/07/2017 1:33,12/09/2007 19:17,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2007-4831,29/07/2017 1:33,12/09/2007 19:17,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4830,29/07/2017 1:33,12/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4828,29/07/2017 1:33,12/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4798,29/07/2017 1:33,10/09/2007 21:17,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-4794,29/07/2017 1:33,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4792,29/07/2017 1:33,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4789,29/07/2017 1:33,10/09/2007 21:17,7.8,16, Configuration,nan
CVE-2007-4787,29/07/2017 1:33,10/09/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-4778,29/07/2017 1:33,10/09/2007 21:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4764,29/07/2017 1:33,8/09/2007 10:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4760,29/07/2017 1:33,8/09/2007 10:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4747,29/07/2017 1:33,6/09/2007 22:17,10.0,287, Improper Authentication,nan
CVE-2007-4746,29/07/2017 1:33,6/09/2007 22:17,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4745,29/07/2017 1:33,6/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4738,29/07/2017 1:33,6/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4725,29/07/2017 1:33,5/09/2007 19:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4720,29/07/2017 1:33,5/09/2007 19:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4716,29/07/2017 1:33,5/09/2007 19:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4713,29/07/2017 1:33,5/09/2007 19:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4709,29/07/2017 1:33,19/12/2007 21:46,8.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4708,29/07/2017 1:33,19/12/2007 21:46,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2007-4707,29/07/2017 1:33,15/12/2007 1:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4706,29/07/2017 1:33,15/12/2007 1:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4701,29/07/2017 1:33,15/11/2007 2:46,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-4700,29/07/2017 1:33,15/11/2007 2:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-4699,29/07/2017 1:33,15/11/2007 2:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-4698,29/07/2017 1:33,15/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4695,29/07/2017 1:33,15/11/2007 1:46,4.3,20, Improper Input Validation,nan
CVE-2007-4694,29/07/2017 1:33,15/11/2007 1:46,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-4693,29/07/2017 1:33,15/11/2007 1:46,7.2,287, Improper Authentication,nan
CVE-2007-4692,29/07/2017 1:33,15/11/2007 0:46,4.3,287, Improper Authentication,nan
CVE-2007-4691,29/07/2017 1:33,15/11/2007 1:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4690,29/07/2017 1:33,15/11/2007 1:46,9.0,399, Resource Management Errors,nan
CVE-2007-4689,29/07/2017 1:33,15/11/2007 1:46,10.0,399, Resource Management Errors,nan
CVE-2007-4688,29/07/2017 1:33,15/11/2007 1:46,5.0,200, Information Exposure,nan
CVE-2007-4687,29/07/2017 1:33,15/11/2007 1:46,9.3,16, Configuration,nan
CVE-2007-4685,29/07/2017 1:33,15/11/2007 1:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-4683,29/07/2017 1:33,15/11/2007 1:46,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4682,29/07/2017 1:33,15/11/2007 1:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4681,29/07/2017 1:33,15/11/2007 1:46,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4680,29/07/2017 1:33,15/11/2007 1:46,6.8,287, Improper Authentication,nan
CVE-2007-4673,29/07/2017 1:33,4/10/2007 23:17,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2007-4671,29/07/2017 1:33,27/09/2007 22:17,6.8,20, Improper Input Validation,nan
CVE-2007-4666,29/07/2017 1:33,4/09/2007 22:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4665,29/07/2017 1:33,4/09/2007 22:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4664,29/07/2017 1:33,4/09/2007 22:17,7.5,20, Improper Input Validation,nan
CVE-2007-4663,29/07/2017 1:33,4/09/2007 22:17,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4655,29/07/2017 1:33,4/09/2007 22:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4652,29/07/2017 1:33,4/09/2007 19:17,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-4651,29/07/2017 1:33,12/09/2007 1:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4649,29/07/2017 1:33,31/08/2007 23:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-4634,29/07/2017 1:33,31/08/2007 23:17,9.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4633,29/07/2017 1:33,31/08/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4631,29/07/2017 1:33,31/08/2007 22:17,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-4622,29/07/2017 1:33,5/11/2007 16:46,7.2,189, Numeric Errors,nan
CVE-2007-4621,29/07/2017 1:33,5/11/2007 16:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4601,29/07/2017 1:33,30/08/2007 22:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4595,29/07/2017 1:33,29/08/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4594,29/07/2017 1:33,29/08/2007 22:17,6.4,255, Credentials Management,nan
CVE-2007-4587,29/07/2017 1:33,29/08/2007 1:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4564,29/07/2017 1:33,28/08/2007 1:17,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-4563,29/07/2017 1:33,28/08/2007 1:17,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-4555,29/07/2017 1:33,28/08/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4515,29/07/2017 1:32,31/08/2007 22:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4514,29/07/2017 1:32,15/04/2009 10:30,5.0,200, Information Exposure,nan
CVE-2007-4475,29/07/2017 1:32,1/04/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4473,29/07/2017 1:32,17/12/2007 21:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4472,29/07/2017 1:32,6/09/2007 22:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4471,29/07/2017 1:32,5/09/2007 19:17,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-4470,29/07/2017 1:32,10/09/2007 17:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4466,29/07/2017 1:32,9/10/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4459,29/07/2017 1:32,21/08/2007 21:17,7.1,20, Improper Input Validation,nan
CVE-2007-4438,29/07/2017 1:32,20/08/2007 22:17,6.8,287, Improper Authentication,nan
CVE-2007-4436,29/07/2017 1:32,20/08/2007 22:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4391,29/07/2017 1:32,17/08/2007 22:17,9.3,20, Improper Input Validation,nan
CVE-2007-4364,29/07/2017 1:32,15/08/2007 19:17,8.5,287, Improper Authentication,nan
CVE-2007-4348,29/07/2017 1:32,30/10/2007 19:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4345,29/07/2017 1:32,31/10/2007 17:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4343,29/07/2017 1:32,16/10/2007 23:17,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4278,29/07/2017 1:32,15/08/2007 22:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4276,29/07/2017 1:32,18/08/2007 21:17,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4273,29/07/2017 1:32,18/08/2007 21:17,4.6,134, Use of Externally-Controlled Format String,nan
CVE-2007-4269,29/07/2017 1:32,15/11/2007 1:46,7.2,189, Numeric Errors,nan
CVE-2007-4268,29/07/2017 1:32,15/11/2007 1:46,7.2,189, Numeric Errors,nan
CVE-2007-4267,29/07/2017 1:32,15/11/2007 1:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4222,29/07/2017 1:32,29/10/2007 22:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4221,29/07/2017 1:32,29/08/2007 1:17,10.0,20, Improper Input Validation,nan
CVE-2007-4220,29/07/2017 1:32,29/08/2007 1:17,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4219,29/07/2017 1:32,22/08/2007 23:17,10.0,189, Numeric Errors,nan
CVE-2007-4217,29/07/2017 1:32,5/11/2007 16:46,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4174,29/07/2017 1:32,7/08/2007 10:17,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2007-4172,29/07/2017 1:32,7/08/2007 10:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4139,29/07/2017 1:32,3/08/2007 10:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4064,29/07/2017 1:32,30/07/2007 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4062,29/07/2017 1:32,30/07/2007 17:30,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4004,29/07/2017 1:32,26/07/2007 22:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3929,29/07/2017 1:32,21/07/2007 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3928,29/07/2017 1:32,21/07/2007 0:30,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3925,29/07/2017 1:32,21/07/2007 0:30,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3921,29/07/2017 1:32,8/11/2007 11:46,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-3917,29/07/2017 1:32,11/10/2007 10:17,7.8,134, Use of Externally-Controlled Format String,nan
CVE-2007-3916,29/07/2017 1:32,24/09/2007 0:17,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-3913,29/07/2017 1:32,6/09/2007 22:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3912,29/07/2017 1:32,10/09/2007 17:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-3910,29/07/2017 1:32,19/07/2007 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3909,29/07/2017 1:32,19/07/2007 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3887,29/07/2017 1:32,18/07/2007 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3874,29/07/2017 1:32,6/11/2007 19:46,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3852,29/07/2017 1:32,14/08/2007 18:17,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-3846,29/07/2017 1:32,28/08/2007 18:17,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3832,29/07/2017 1:32,17/07/2007 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3805,29/07/2017 1:32,16/07/2007 23:30,5.4,310, Cryptographic Issues,nan
CVE-2007-3761,29/07/2017 1:32,27/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3760,29/07/2017 1:32,27/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3759,29/07/2017 1:32,27/09/2007 22:17,6.8,16, Configuration,nan
CVE-2007-3758,29/07/2017 1:32,27/09/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3757,29/07/2017 1:32,27/09/2007 21:17,4.3,20, Improper Input Validation,nan
CVE-2007-3756,29/07/2017 1:32,27/09/2007 21:17,4.3,200, Information Exposure,nan
CVE-2007-3755,29/07/2017 1:32,27/09/2007 21:17,4.3,20, Improper Input Validation,nan
CVE-2007-3754,29/07/2017 1:32,27/09/2007 21:17,4.3,287, Improper Authentication,nan
CVE-2007-3753,29/07/2017 1:32,27/09/2007 21:17,7.5,20, Improper Input Validation,nan
CVE-2007-3750,29/07/2017 1:32,7/11/2007 23:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3744,29/07/2017 1:32,3/08/2007 10:17,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3743,29/07/2017 1:32,3/08/2007 20:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3742,29/07/2017 1:32,3/08/2007 20:17,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-3680,29/07/2017 1:32,11/07/2007 17:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3678,29/07/2017 1:32,11/07/2007 16:30,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3677,29/07/2017 1:32,11/07/2007 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3675,29/07/2017 1:32,12/10/2007 20:17,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2007-3654,29/07/2017 1:32,17/09/2007 17:17,2.1,20, Improper Input Validation,nan
CVE-2007-3653,29/07/2017 1:32,9/07/2008 0:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3593,29/07/2017 1:32,6/07/2007 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3551,29/07/2017 1:32,3/07/2007 21:30,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3516,29/07/2017 1:32,3/07/2007 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3510,29/07/2017 1:32,29/10/2007 21:46,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3508,29/07/2017 1:32,3/07/2007 21:30,7.2,189, Numeric Errors,nan
CVE-2007-3457,29/07/2017 1:32,11/07/2007 16:30,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-3455,29/07/2017 1:32,27/06/2007 0:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-3454,29/07/2017 1:32,27/06/2007 0:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3416,29/07/2017 1:32,26/06/2007 23:30,5.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-3405,29/07/2017 1:32,26/06/2007 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3375,29/07/2017 1:32,25/06/2007 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3373,29/07/2017 1:32,25/06/2007 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3333,29/07/2017 1:32,26/07/2007 22:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3275,29/07/2017 1:32,19/06/2007 21:30,7.1,255, Credentials Management,nan
CVE-2007-3177,29/07/2017 1:32,11/06/2007 22:30,5.0,287, Improper Authentication,nan
CVE-2007-3056,29/07/2017 1:31,6/06/2007 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3008,29/07/2017 1:31,4/06/2007 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2984,29/07/2017 1:31,1/06/2007 10:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2983,29/07/2017 1:31,25/10/2007 18:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2981,29/07/2017 1:31,1/06/2007 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2980,29/07/2017 1:31,1/06/2007 1:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2957,29/07/2017 1:31,31/10/2007 22:46,9.3,189, Numeric Errors,nan
CVE-2007-2954,29/07/2017 1:31,31/08/2007 22:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2893,29/07/2017 1:31,30/05/2007 1:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2855,29/07/2017 1:31,24/05/2007 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2836,29/07/2017 1:31,2/07/2007 19:30,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-2827,29/07/2017 1:31,22/05/2007 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2811,29/07/2017 1:31,22/05/2007 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2780,29/07/2017 1:31,21/05/2007 23:30,5.0,200, Information Exposure,nan
CVE-2007-2766,29/07/2017 1:31,18/05/2007 22:30,7.2,255, Credentials Management,nan
CVE-2007-2745,29/07/2017 1:31,17/05/2007 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2741,29/07/2017 1:31,17/05/2007 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2479,29/07/2017 1:31,3/05/2007 0:19,7.1,200, Information Exposure,nan
CVE-2007-2459,29/07/2017 1:31,2/05/2007 18:19,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2415,29/07/2017 1:31,1/05/2007 10:19,5.0,399, Resource Management Errors,nan
CVE-2007-2408,29/07/2017 1:31,3/08/2007 20:17,6.8,20, Improper Input Validation,nan
CVE-2007-2353,29/07/2017 1:31,30/04/2007 22:19,5.0,200, Information Exposure,nan
CVE-2007-2337,29/07/2017 1:31,27/04/2007 16:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2322,29/07/2017 1:31,27/04/2007 0:19,7.8,20, Improper Input Validation,nan
CVE-2007-2296,29/07/2017 1:31,26/04/2007 20:19,9.3,189, Numeric Errors,nan
CVE-2007-2295,29/07/2017 1:31,26/04/2007 20:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2253,29/07/2017 1:31,25/04/2007 17:19,5.0,200, Information Exposure,nan
CVE-2007-2243,29/07/2017 1:31,25/04/2007 16:19,5.0,287, Improper Authentication,nan
CVE-2007-2238,29/07/2017 1:31,16/04/2009 15:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2206,29/07/2017 1:31,24/04/2007 20:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2063,29/07/2017 1:31,18/04/2007 3:19,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-2029,29/07/2017 1:31,30/04/2007 22:19,7.8,399, Resource Management Errors,nan
CVE-2007-2010,29/07/2017 1:31,12/04/2007 19:19,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1938,29/07/2017 1:31,10/04/2007 23:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1905,29/07/2017 1:31,10/04/2007 23:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1893,29/07/2017 1:31,9/04/2007 20:19,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-1819,29/07/2017 1:31,2/04/2007 23:19,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1803,29/07/2017 1:31,2/04/2007 23:19,5.0,20, Improper Input Validation,nan
CVE-2007-1774,29/07/2017 1:30,30/03/2007 1:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1773,29/07/2017 1:30,30/03/2007 1:19,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1741,29/07/2017 1:30,13/04/2007 16:19,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-1692,29/07/2017 1:30,26/03/2007 23:19,7.5,16, Configuration,nan
CVE-2007-1688,29/07/2017 1:30,14/09/2007 0:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1666,29/07/2017 1:30,24/03/2007 20:19,10.0,20, Improper Input Validation,nan
CVE-2007-1593,29/07/2017 1:30,4/06/2007 16:30,5.0,399, Resource Management Errors,nan
CVE-2007-1507,29/07/2017 1:30,20/03/2007 10:19,7.5,16, Configuration,nan
CVE-2007-1327,29/07/2017 1:30,7/03/2007 21:19,7.8,476, NULL Pointer Dereference,nan
CVE-2007-1276,29/07/2017 1:30,5/03/2007 20:19,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-1253,29/07/2017 1:30,3/03/2007 20:19,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1249,29/07/2017 1:30,3/03/2007 20:19,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-1240,29/07/2017 1:30,3/03/2007 19:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1097,29/07/2017 1:30,26/02/2007 17:28,10.0,20, Improper Input Validation,nan
CVE-2007-1093,29/07/2017 1:30,26/02/2007 17:28,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1083,29/07/2017 1:30,23/02/2007 2:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1076,29/07/2017 1:30,22/02/2007 23:28,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1068,29/07/2017 1:30,22/02/2007 1:28,7.2,255, Credentials Management,nan
CVE-2007-1042,29/07/2017 1:30,21/02/2007 17:28,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-1037,29/07/2017 1:30,21/02/2007 17:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0898,29/07/2017 1:30,16/02/2007 19:28,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-0896,29/07/2017 1:30,13/02/2007 11:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0772,29/07/2017 1:30,20/02/2007 17:28,7.8,399, Resource Management Errors,nan
CVE-2007-0734,29/07/2017 1:30,10/04/2007 22:19,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0695,29/07/2017 1:30,3/02/2007 22:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0670,29/07/2017 1:30,3/02/2007 0:28,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0350,29/07/2017 1:30,19/01/2007 1:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0326,29/07/2017 1:30,18/09/2007 20:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0322,29/07/2017 1:30,5/09/2007 19:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0320,29/07/2017 1:30,23/02/2007 3:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0315,29/07/2017 1:30,18/01/2007 0:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0247,29/07/2017 1:30,16/01/2007 18:28,5.0,399, Resource Management Errors,nan
CVE-2007-0229,29/07/2017 1:30,13/01/2007 2:28,7.2,189, Numeric Errors,nan
CVE-2007-0175,29/07/2017 1:30,11/01/2007 0:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-0126,29/07/2017 1:29,9/01/2007 2:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0103,29/07/2017 1:29,9/01/2007 0:28,6.8,20, Improper Input Validation,nan
CVE-2007-0102,29/07/2017 1:29,9/01/2007 0:28,6.8,20, Improper Input Validation,nan
CVE-2007-0074,29/07/2017 1:29,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0073,29/07/2017 1:29,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0072,29/07/2017 1:29,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-7222,29/07/2017 1:29,28/08/2007 1:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-7171,29/07/2017 1:29,20/03/2007 10:19,5.0,20, Improper Input Validation,nan
CVE-2006-7170,29/07/2017 1:29,20/03/2007 10:19,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-7114,29/07/2017 1:29,6/03/2007 1:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-7113,29/07/2017 1:29,6/03/2007 1:19,7.5,20, Improper Input Validation,nan
CVE-2006-7105,29/07/2017 1:29,3/03/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7104,29/07/2017 1:29,3/03/2007 21:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7098,29/07/2017 1:29,3/03/2007 19:19,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-7090,29/07/2017 1:29,2/03/2007 21:18,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-7089,29/07/2017 1:29,2/03/2007 21:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-7074,29/07/2017 1:29,2/03/2007 21:18,7.5,798, Use of Hard-coded Credentials,nan
CVE-2006-7059,29/07/2017 1:29,24/02/2007 1:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7025,29/07/2017 1:29,23/02/2007 3:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-7021,29/07/2017 1:29,15/02/2007 2:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6994,29/07/2017 1:29,12/02/2007 11:28,6.4,254, 7PK – Security Features,nan
CVE-2006-6956,29/07/2017 1:29,29/01/2007 16:28,4.3,20, Improper Input Validation,nan
CVE-2006-6942,29/07/2017 1:29,19/01/2007 2:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6912,29/07/2017 1:29,31/12/2006 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6886,29/07/2017 1:29,31/12/2006 5:00,5.0,200, Information Exposure,nan
CVE-2006-6751,29/07/2017 1:29,27/12/2006 0:28,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2006-6729,29/07/2017 1:29,26/12/2006 21:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6682,29/07/2017 1:29,21/12/2006 19:28,5.0,388, 7PK – Errors,nan
CVE-2006-6681,29/07/2017 1:29,21/12/2006 19:28,7.5,399, Resource Management Errors,nan
CVE-2006-6679,29/07/2017 1:29,21/12/2006 19:28,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-6581,29/07/2017 1:29,15/12/2006 19:28,7.5,20, Improper Input Validation,nan
CVE-2006-6451,29/07/2017 1:29,10/12/2006 21:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6427,29/07/2017 1:29,10/12/2006 11:28,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2006-6418,29/07/2017 1:29,10/12/2006 11:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6367,29/07/2017 1:29,7/12/2006 11:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6361,29/07/2017 1:29,7/12/2006 11:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6359,29/07/2017 1:29,7/12/2006 11:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6241,29/07/2017 1:29,3/12/2006 19:28,4.0,20, Improper Input Validation,nan
CVE-2006-6159,29/07/2017 1:29,28/11/2006 23:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4871,29/07/2017 1:29,31/12/2005 5:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2005-4870,29/07/2017 1:29,31/12/2005 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4867,29/07/2017 1:29,31/12/2005 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4866,29/07/2017 1:29,31/12/2005 5:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4865,29/07/2017 1:29,31/12/2005 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4864,29/07/2017 1:29,31/12/2005 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4863,29/07/2017 1:29,31/12/2005 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4848,29/07/2017 1:29,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2757,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2755,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2751,29/07/2017 1:29,31/12/2004 5:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2749,29/07/2017 1:29,31/12/2004 5:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-2743,29/07/2017 1:29,31/12/2004 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2004-2742,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2741,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2740,29/07/2017 1:29,31/12/2004 5:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-2739,29/07/2017 1:29,31/12/2004 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2004-2738,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2737,29/07/2017 1:29,31/12/2004 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2736,29/07/2017 1:29,31/12/2004 5:00,5.0,287, Improper Authentication,nan
CVE-2004-2735,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2734,29/07/2017 1:29,31/12/2004 5:00,10.0,287, Improper Authentication,nan
CVE-2004-2733,29/07/2017 1:29,31/12/2004 5:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2004-2732,29/07/2017 1:29,31/12/2004 5:00,4.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2004-2730,29/07/2017 1:29,31/12/2004 5:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2004-2729,29/07/2017 1:29,31/12/2004 5:00,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2004-2728,29/07/2017 1:29,31/12/2004 5:00,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2727,29/07/2017 1:29,31/12/2004 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2725,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2724,29/07/2017 1:29,31/12/2004 5:00,7.1,287, Improper Authentication,nan
CVE-2004-2723,29/07/2017 1:29,31/12/2004 5:00,2.1,255, Credentials Management,nan
CVE-2004-2722,29/07/2017 1:29,31/12/2004 5:00,2.1,255, Credentials Management,nan
CVE-2004-2721,29/07/2017 1:29,31/12/2004 5:00,4.3,310, Cryptographic Issues,nan
CVE-2004-2720,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2716,29/07/2017 1:29,31/12/2004 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2715,29/07/2017 1:29,31/12/2004 5:00,7.5,287, Improper Authentication,nan
CVE-2004-2714,29/07/2017 1:29,31/12/2004 5:00,6.0,134, Use of Externally-Controlled Format String,nan
CVE-2004-2713,29/07/2017 1:29,31/12/2004 5:00,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2004-2704,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2703,29/07/2017 1:29,31/12/2004 5:00,4.3,310, Cryptographic Issues,nan
CVE-2004-2702,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2701,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2699,29/07/2017 1:29,31/12/2004 5:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2004-2698,29/07/2017 1:29,31/12/2004 5:00,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2004-2697,29/07/2017 1:29,31/12/2004 5:00,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2004-2696,29/07/2017 1:29,31/12/2004 5:00,5.5,255, Credentials Management,nan
CVE-2004-2695,29/07/2017 1:29,31/12/2004 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2692,29/07/2017 1:29,31/12/2004 5:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2004-2689,29/07/2017 1:29,31/12/2004 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2004-2688,29/07/2017 1:29,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1536,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1531,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1529,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1524,29/07/2017 1:29,31/12/2003 5:00,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2003-1523,29/07/2017 1:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1522,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1519,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1518,29/07/2017 1:29,31/12/2003 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1517,29/07/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1515,29/07/2017 1:29,31/12/2003 5:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2003-1514,29/07/2017 1:29,31/12/2003 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1513,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1506,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1504,29/07/2017 1:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1503,29/07/2017 1:29,31/12/2003 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1501,29/07/2017 1:29,31/12/2003 5:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1500,29/07/2017 1:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1499,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1498,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1497,29/07/2017 1:29,31/12/2003 5:00,6.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1496,29/07/2017 1:29,31/12/2003 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1495,29/07/2017 1:29,31/12/2003 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1494,29/07/2017 1:29,31/12/2003 5:00,5.0,399, Resource Management Errors,nan
CVE-2003-1492,29/07/2017 1:29,31/12/2003 5:00,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2003-1491,29/07/2017 1:29,31/12/2003 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1490,29/07/2017 1:29,31/12/2003 5:00,7.8,20, Improper Input Validation,nan
CVE-2003-1488,29/07/2017 1:29,31/12/2003 5:00,6.4,20, Improper Input Validation,nan
CVE-2003-1487,29/07/2017 1:29,31/12/2003 5:00,10.0,20, Improper Input Validation,nan
CVE-2003-1486,29/07/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1484,29/07/2017 1:29,31/12/2003 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1483,29/07/2017 1:29,31/12/2003 5:00,6.4,310, Cryptographic Issues,nan
CVE-2003-1481,29/07/2017 1:29,31/12/2003 5:00,5.8,200, Information Exposure,nan
CVE-2003-1479,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1478,29/07/2017 1:29,31/12/2003 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1477,29/07/2017 1:29,31/12/2003 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1475,29/07/2017 1:29,31/12/2003 5:00,6.8,287, Improper Authentication,nan
CVE-2003-1473,29/07/2017 1:29,31/12/2003 5:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1472,29/07/2017 1:29,31/12/2003 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1471,29/07/2017 1:29,31/12/2003 5:00,6.3,20, Improper Input Validation,nan
CVE-2003-1470,29/07/2017 1:29,31/12/2003 5:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1469,29/07/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1468,29/07/2017 1:29,31/12/2003 5:00,4.3,200, Information Exposure,nan
CVE-2003-1467,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1465,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1464,29/07/2017 1:29,31/12/2003 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1463,29/07/2017 1:29,31/12/2003 5:00,3.5,20, Improper Input Validation,nan
CVE-2003-1459,29/07/2017 1:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1458,29/07/2017 1:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1457,29/07/2017 1:29,31/12/2003 5:00,4.6,16, Configuration,nan
CVE-2003-1456,29/07/2017 1:29,31/12/2003 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-1455,29/07/2017 1:29,31/12/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1453,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1452,29/07/2017 1:29,31/12/2003 5:00,3.6,16, Configuration,nan
CVE-2003-1451,29/07/2017 1:29,31/12/2003 5:00,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1450,29/07/2017 1:29,31/12/2003 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-1449,29/07/2017 1:29,31/12/2003 5:00,7.5,16, Configuration,nan
CVE-2003-1447,29/07/2017 1:29,31/12/2003 5:00,1.9,310, Cryptographic Issues,nan
CVE-2003-1446,29/07/2017 1:29,31/12/2003 5:00,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1445,29/07/2017 1:29,31/12/2003 5:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1444,29/07/2017 1:29,31/12/2003 5:00,4.4,20, Improper Input Validation,nan
CVE-2003-1443,29/07/2017 1:29,31/12/2003 5:00,4.4,20, Improper Input Validation,nan
CVE-2003-1442,29/07/2017 1:29,31/12/2003 5:00,7.5,287, Improper Authentication,nan
CVE-2003-1441,29/07/2017 1:29,31/12/2003 5:00,4.3,20, Improper Input Validation,nan
CVE-2003-1440,29/07/2017 1:29,31/12/2003 5:00,4.3,20, Improper Input Validation,nan
CVE-2003-1438,29/07/2017 1:29,31/12/2003 5:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2003-1436,29/07/2017 1:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1435,29/07/2017 1:29,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1434,29/07/2017 1:29,31/12/2003 5:00,6.8,287, Improper Authentication,nan
CVE-2003-1433,29/07/2017 1:29,31/12/2003 5:00,4.3,287, Improper Authentication,nan
CVE-2003-1432,29/07/2017 1:29,31/12/2003 5:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1431,29/07/2017 1:29,31/12/2003 5:00,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1430,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1429,29/07/2017 1:29,31/12/2003 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1427,29/07/2017 1:29,31/12/2003 5:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1426,29/07/2017 1:29,31/12/2003 5:00,3.3,16, Configuration,nan
CVE-2003-1425,29/07/2017 1:29,31/12/2003 5:00,10.0,20, Improper Input Validation,nan
CVE-2003-1424,29/07/2017 1:29,31/12/2003 5:00,6.8,255, Credentials Management,nan
CVE-2003-1423,29/07/2017 1:29,31/12/2003 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1421,29/07/2017 1:29,31/12/2003 5:00,4.3,399, Resource Management Errors,nan
CVE-2003-1420,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1419,29/07/2017 1:29,31/12/2003 5:00,4.3,20, Improper Input Validation,nan
CVE-2003-1417,29/07/2017 1:29,31/12/2003 5:00,4.4,255, Credentials Management,nan
CVE-2003-1416,29/07/2017 1:29,31/12/2003 5:00,4.3,20, Improper Input Validation,nan
CVE-2003-1415,29/07/2017 1:29,31/12/2003 5:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1414,29/07/2017 1:29,31/12/2003 5:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1413,29/07/2017 1:29,31/12/2003 5:00,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1411,29/07/2017 1:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1410,29/07/2017 1:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1409,29/07/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1408,29/07/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1407,29/07/2017 1:29,31/12/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1406,29/07/2017 1:29,31/12/2003 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1405,29/07/2017 1:29,31/12/2003 5:00,7.5,20, Improper Input Validation,nan
CVE-2003-1404,29/07/2017 1:29,31/12/2003 5:00,7.5,200, Information Exposure,nan
CVE-2003-1403,29/07/2017 1:29,31/12/2003 5:00,7.5,20, Improper Input Validation,nan
CVE-2003-1402,29/07/2017 1:29,31/12/2003 5:00,7.5,20, Improper Input Validation,nan
CVE-2003-1401,29/07/2017 1:29,31/12/2003 5:00,5.8,255, Credentials Management,nan
CVE-2003-1400,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1398,29/07/2017 1:29,31/12/2003 5:00,9.3,200, Information Exposure,nan
CVE-2003-1397,29/07/2017 1:29,31/12/2003 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1396,29/07/2017 1:29,31/12/2003 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1395,29/07/2017 1:29,31/12/2003 5:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1394,29/07/2017 1:29,31/12/2003 5:00,5.0,255, Credentials Management,nan
CVE-2003-1393,29/07/2017 1:29,31/12/2003 5:00,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1392,29/07/2017 1:29,31/12/2003 5:00,6.6,310, Cryptographic Issues,nan
CVE-2003-1391,29/07/2017 1:29,31/12/2003 5:00,7.5,310, Cryptographic Issues,nan
CVE-2003-1390,29/07/2017 1:29,31/12/2003 5:00,7.5,310, Cryptographic Issues,nan
CVE-2003-1389,29/07/2017 1:29,31/12/2003 5:00,7.5,310, Cryptographic Issues,nan
CVE-2003-1388,29/07/2017 1:29,31/12/2003 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1387,29/07/2017 1:29,31/12/2003 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1386,29/07/2017 1:29,31/12/2003 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2003-1385,29/07/2017 1:29,31/12/2003 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1384,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1383,29/07/2017 1:29,31/12/2003 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2003-1382,29/07/2017 1:29,31/12/2003 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1381,29/07/2017 1:29,31/12/2003 5:00,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2003-1380,29/07/2017 1:29,31/12/2003 5:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1379,29/07/2017 1:29,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1378,29/07/2017 1:29,31/12/2003 5:00,8.8,264, Permissions Privileges and Access Controls,nan
CVE-2003-1377,29/07/2017 1:29,31/12/2003 5:00,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1376,29/07/2017 1:29,31/12/2003 5:00,4.6,255, Credentials Management,nan
CVE-2003-1374,29/07/2017 1:29,31/12/2003 5:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1373,29/07/2017 1:29,31/12/2003 5:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1372,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1371,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1370,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1369,29/07/2017 1:29,31/12/2003 5:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1368,29/07/2017 1:29,31/12/2003 5:00,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1367,29/07/2017 1:29,31/12/2003 5:00,7.8,16, Configuration,nan
CVE-2003-1366,29/07/2017 1:29,31/12/2003 5:00,3.3,200, Information Exposure,nan
CVE-2003-1365,29/07/2017 1:29,31/12/2003 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-1364,29/07/2017 1:29,31/12/2003 5:00,8.5,20, Improper Input Validation,nan
CVE-2003-1362,29/07/2017 1:29,31/12/2003 5:00,7.8,16, Configuration,nan
CVE-2003-1360,29/07/2017 1:29,31/12/2003 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1358,29/07/2017 1:29,31/12/2003 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2003-1357,29/07/2017 1:29,31/12/2003 5:00,10.0,16, Configuration,nan
CVE-2003-1355,29/07/2017 1:29,31/12/2003 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1354,29/07/2017 1:29,31/12/2003 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1353,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1352,29/07/2017 1:29,31/12/2003 5:00,5.0,16, Configuration,nan
CVE-2003-1351,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1350,29/07/2017 1:29,31/12/2003 5:00,4.3,20, Improper Input Validation,nan
CVE-2003-1349,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1348,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1347,29/07/2017 1:29,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1346,29/07/2017 1:29,31/12/2003 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1345,29/07/2017 1:29,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1344,29/07/2017 1:29,31/12/2003 5:00,5.0,310, Cryptographic Issues,nan
CVE-2003-1343,29/07/2017 1:29,31/12/2003 5:00,7.5,287, Improper Authentication,nan
CVE-2003-1342,29/07/2017 1:29,31/12/2003 5:00,5.0,399, Resource Management Errors,nan
CVE-2003-1341,29/07/2017 1:29,31/12/2003 5:00,7.5,16, Configuration,nan
CVE-2003-1337,29/07/2017 1:29,31/12/2003 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1336,29/07/2017 1:29,31/12/2003 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2411,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2383,29/07/2017 1:29,31/12/2002 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2306,29/07/2017 1:29,31/12/2002 5:00,7.8,399, Resource Management Errors,nan
CVE-2002-2305,29/07/2017 1:29,31/12/2002 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2304,29/07/2017 1:29,31/12/2002 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2303,29/07/2017 1:29,31/12/2002 5:00,7.8,310, Cryptographic Issues,nan
CVE-2002-2302,29/07/2017 1:29,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2002-2301,29/07/2017 1:29,31/12/2002 5:00,3.3,255, Credentials Management,nan
CVE-2002-2300,29/07/2017 1:29,31/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2299,29/07/2017 1:29,31/12/2002 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-2298,29/07/2017 1:29,31/12/2002 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-2297,29/07/2017 1:29,31/12/2002 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-2296,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2295,29/07/2017 1:29,31/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2294,29/07/2017 1:29,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2292,29/07/2017 1:29,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2291,29/07/2017 1:29,31/12/2002 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2290,29/07/2017 1:29,31/12/2002 5:00,10.0,255, Credentials Management,nan
CVE-2002-2289,29/07/2017 1:29,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2288,29/07/2017 1:29,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2287,29/07/2017 1:29,31/12/2002 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-2286,29/07/2017 1:29,31/12/2002 5:00,5.0,189, Numeric Errors,nan
CVE-2002-2285,29/07/2017 1:29,31/12/2002 5:00,4.3,16, Configuration,nan
CVE-2002-2279,29/07/2017 1:29,31/12/2002 5:00,10.0,287, Improper Authentication,nan
CVE-2002-2278,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2277,29/07/2017 1:29,31/12/2002 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2276,29/07/2017 1:29,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2273,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2272,29/07/2017 1:29,31/12/2002 5:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2271,29/07/2017 1:29,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2269,29/07/2017 1:29,31/12/2002 5:00,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2268,29/07/2017 1:29,31/12/2002 5:00,9.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2265,29/07/2017 1:29,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2002-2263,29/07/2017 1:29,31/12/2002 5:00,6.6,16, Configuration,nan
CVE-2002-2260,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2259,29/07/2017 1:29,31/12/2002 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2258,29/07/2017 1:29,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2257,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2256,29/07/2017 1:29,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2255,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2254,29/07/2017 1:29,31/12/2002 5:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2002-2253,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2252,29/07/2017 1:29,31/12/2002 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2251,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2250,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2249,29/07/2017 1:29,31/12/2002 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-2248,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2247,29/07/2017 1:29,31/12/2002 5:00,5.0,16, Configuration,nan
CVE-2002-2246,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2244,29/07/2017 1:29,31/12/2002 5:00,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2002-2242,29/07/2017 1:29,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2002-2241,29/07/2017 1:29,31/12/2002 5:00,5.0,399, Resource Management Errors,nan
CVE-2002-2240,29/07/2017 1:29,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2239,29/07/2017 1:29,31/12/2002 5:00,7.8,20, Improper Input Validation,nan
CVE-2002-2238,29/07/2017 1:29,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2237,29/07/2017 1:29,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2002-2233,29/07/2017 1:29,31/12/2002 5:00,8.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2231,29/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2227,29/07/2017 1:29,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2226,29/07/2017 1:29,31/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-1585,29/07/2017 1:29,31/12/2001 5:00,6.8,287, Improper Authentication,nan
CVE-2001-1584,29/07/2017 1:29,31/12/2001 5:00,7.5,20, Improper Input Validation,nan
CVE-2017-11324,28/07/2017 19:12,24/07/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11327,28/07/2017 19:09,24/07/2017 13:29,4.0,200, Information Exposure,nan
CVE-2015-3171,28/07/2017 19:04,25/07/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-9413,28/07/2017 18:02,25/07/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2241,28/07/2017 18:01,17/07/2017 13:18,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2240,28/07/2017 18:01,17/07/2017 13:18,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1318,28/07/2017 18:00,18/07/2017 13:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6755,28/07/2017 17:36,25/07/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11585,28/07/2017 17:34,24/07/2017 0:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-11581,28/07/2017 17:34,24/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11617,28/07/2017 17:03,25/07/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1287,28/07/2017 17:02,24/07/2017 21:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1249,28/07/2017 17:02,24/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11586,28/07/2017 16:49,24/07/2017 0:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-11592,28/07/2017 14:24,24/07/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11590,28/07/2017 14:24,24/07/2017 1:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11555,28/07/2017 14:20,23/07/2017 3:29,5.0,20, Improper Input Validation,nan
CVE-2017-11553,28/07/2017 14:19,23/07/2017 3:29,5.0,20, Improper Input Validation,nan
CVE-2017-11530,28/07/2017 13:59,23/07/2017 3:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-11527,28/07/2017 13:58,23/07/2017 3:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-11526,28/07/2017 13:57,23/07/2017 3:29,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2017-11464,28/07/2017 1:29,19/07/2017 21:29,6.8,369, Divide By Zero,nan
CVE-2017-11449,28/07/2017 1:29,19/07/2017 7:29,6.8,20, Improper Input Validation,nan
CVE-2016-9818,28/07/2017 1:29,27/02/2017 22:59,4.9,284, Improper Access Control,nan
CVE-2016-9817,28/07/2017 1:29,27/02/2017 22:59,4.9,284, Improper Access Control,nan
CVE-2016-9816,28/07/2017 1:29,27/02/2017 22:59,4.9,284, Improper Access Control,nan
CVE-2016-9815,28/07/2017 1:29,27/02/2017 22:59,4.9,284, Improper Access Control,nan
CVE-2016-9638,28/07/2017 1:29,2/12/2016 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9481,28/07/2017 1:29,29/11/2016 23:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9479,28/07/2017 1:29,2/12/2016 16:59,5.0,255, Credentials Management,nan
CVE-2016-9384,28/07/2017 1:29,22/02/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-9378,28/07/2017 1:29,22/02/2017 16:59,2.1,284, Improper Access Control,nan
CVE-2016-9377,28/07/2017 1:29,22/02/2017 16:59,2.1,682, Incorrect Calculation,nan
CVE-2016-9376,28/07/2017 1:29,17/11/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-9375,28/07/2017 1:29,17/11/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-9374,28/07/2017 1:29,17/11/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-9373,28/07/2017 1:29,17/11/2016 5:59,4.3,416, Use After Free,nan
CVE-2016-9372,28/07/2017 1:29,17/11/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-9312,28/07/2017 1:29,13/01/2017 16:59,5.0,399, Resource Management Errors,nan
CVE-2016-9288,28/07/2017 1:29,11/11/2016 23:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9286,28/07/2017 1:29,11/11/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-9285,28/07/2017 1:29,11/11/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-9284,28/07/2017 1:29,11/11/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-9283,28/07/2017 1:29,11/11/2016 22:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9282,28/07/2017 1:29,11/11/2016 22:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9152,28/07/2017 1:29,5/12/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8867,28/07/2017 1:29,28/10/2016 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8706,28/07/2017 1:29,6/01/2017 21:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-7796,28/07/2017 1:29,13/10/2016 14:59,4.9,20, Improper Input Validation,nan
CVE-2016-7795,28/07/2017 1:29,13/10/2016 14:59,4.9,20, Improper Input Validation,nan
CVE-2016-7784,28/07/2017 1:29,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7542,28/07/2017 1:29,30/03/2017 14:59,4.0,200, Information Exposure,nan
CVE-2016-7462,28/07/2017 1:29,29/12/2016 9:59,7.5,749, Exposed Dangerous Method or Function,nan
CVE-2016-7461,28/07/2017 1:29,29/12/2016 9:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7460,28/07/2017 1:29,29/12/2016 9:59,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-7458,28/07/2017 1:29,29/12/2016 9:59,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-7053,28/07/2017 1:29,4/05/2017 19:29,5.0,476, NULL Pointer Dereference,nan
CVE-2016-6472,28/07/2017 1:29,19/11/2016 3:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6466,28/07/2017 1:29,19/11/2016 3:03,5.0,399, Resource Management Errors,nan
CVE-2016-6462,28/07/2017 1:29,19/11/2016 3:03,5.0,20, Improper Input Validation,nan
CVE-2016-6450,28/07/2017 1:29,19/11/2016 3:02,1.9,20, Improper Input Validation,nan
CVE-2016-6113,28/07/2017 1:29,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5884,28/07/2017 1:29,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5882,28/07/2017 1:29,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5880,28/07/2017 1:29,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5334,28/07/2017 1:29,29/12/2016 9:59,5.0,284, Improper Access Control,nan
CVE-2016-4493,28/07/2017 1:29,24/02/2017 20:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-4492,28/07/2017 1:29,24/02/2017 20:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4491,28/07/2017 1:29,24/02/2017 20:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4490,28/07/2017 1:29,24/02/2017 20:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-4489,28/07/2017 1:29,24/02/2017 20:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-4488,28/07/2017 1:29,24/02/2017 20:59,4.3,416, Use After Free,nan
CVE-2016-4487,28/07/2017 1:29,24/02/2017 20:59,4.3,416, Use After Free,nan
CVE-2016-2939,28/07/2017 1:29,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2938,28/07/2017 1:29,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2926,28/07/2017 1:29,25/11/2016 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1248,28/07/2017 1:29,23/11/2016 15:59,6.8,20, Improper Input Validation,nan
CVE-2016-0282,28/07/2017 1:29,24/11/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8796,28/07/2017 1:29,15/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11583,27/07/2017 18:34,24/07/2017 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1245,27/07/2017 18:24,24/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11584,27/07/2017 18:23,24/07/2017 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11582,27/07/2017 18:23,24/07/2017 0:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7539,27/07/2017 18:19,25/07/2017 14:29,7.8,399, Resource Management Errors,nan
CVE-2016-6118,27/07/2017 18:19,24/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11174,27/07/2017 18:05,12/07/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10396,27/07/2017 17:52,6/07/2017 1:29,7.8,407, Inefficient Algorithmic Complexity,nan
CVE-2015-0249,27/07/2017 17:41,17/07/2017 13:18,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5152,27/07/2017 15:05,17/07/2017 13:18,4.3,200, Information Exposure,nan
CVE-2016-8950,27/07/2017 14:53,12/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8947,27/07/2017 14:52,12/07/2017 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1000006,27/07/2017 14:50,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000002,27/07/2017 14:31,17/07/2017 13:18,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2126,27/07/2017 13:00,22/07/2017 0:29,10.0,287, Improper Authentication,nan
CVE-2017-8004,27/07/2017 12:56,17/07/2017 14:29,6.5,20, Improper Input Validation,nan
CVE-2017-8005,27/07/2017 12:55,17/07/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7336,27/07/2017 12:16,22/07/2017 21:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-11522,27/07/2017 1:39,22/07/2017 21:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-8011,27/07/2017 1:35,17/07/2017 14:29,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-3742,27/07/2017 1:30,17/07/2017 19:29,2.3,200, Information Exposure,nan
CVE-2017-11311,27/07/2017 1:30,17/07/2017 13:18,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5005,27/07/2017 1:29,2/01/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9998,27/07/2017 1:29,17/12/2016 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9997,27/07/2017 1:29,17/12/2016 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9938,27/07/2017 1:29,12/12/2016 21:59,5.0,285, Improper Authorization,nan
CVE-2016-9937,27/07/2017 1:29,12/12/2016 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9889,27/07/2017 1:29,23/12/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9247,27/07/2017 1:29,10/01/2017 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-9160,27/07/2017 1:29,17/12/2016 3:59,5.8,254, 7PK – Security Features,nan
CVE-2016-9000,27/07/2017 1:29,1/02/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8999,27/07/2017 1:29,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8741,27/07/2017 1:29,15/05/2017 14:29,5.0,200, Information Exposure,nan
CVE-2016-8106,27/07/2017 1:29,9/01/2017 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-7665,27/07/2017 1:29,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2016-7664,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7656,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7655,27/07/2017 1:29,20/02/2017 8:59,6.8,704, Incorrect Type Conversion or Cast,nan
CVE-2016-7654,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7653,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7652,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7650,27/07/2017 1:29,20/02/2017 8:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7649,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7648,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7646,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7645,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7642,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7641,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7640,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7639,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7638,27/07/2017 1:29,20/02/2017 8:59,2.1,254, 7PK – Security Features,nan
CVE-2016-7635,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7634,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7632,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7629,27/07/2017 1:29,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7628,27/07/2017 1:29,20/02/2017 8:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-7625,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7624,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7623,27/07/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-7622,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7620,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7618,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7611,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7610,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7609,27/07/2017 1:29,20/02/2017 8:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-7608,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7605,27/07/2017 1:29,20/02/2017 8:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-7604,27/07/2017 1:29,20/02/2017 8:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-7603,27/07/2017 1:29,20/02/2017 8:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-7602,27/07/2017 1:29,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7601,27/07/2017 1:29,20/02/2017 8:59,4.6,254, 7PK – Security Features,nan
CVE-2016-7600,27/07/2017 1:29,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7599,27/07/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-7598,27/07/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-7597,27/07/2017 1:29,20/02/2017 8:59,2.1,254, 7PK – Security Features,nan
CVE-2016-7596,27/07/2017 1:29,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7592,27/07/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-7587,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7586,27/07/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-7399,27/07/2017 1:29,4/01/2017 21:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-7172,27/07/2017 1:29,21/12/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-5881,27/07/2017 1:29,1/02/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4781,27/07/2017 1:29,20/02/2017 8:59,4.6,254, 7PK – Security Features,nan
CVE-2016-4743,27/07/2017 1:29,20/02/2017 8:59,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4692,27/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4690,27/07/2017 1:29,20/02/2017 8:59,4.6,20, Improper Input Validation,nan
CVE-2016-4689,27/07/2017 1:29,20/02/2017 8:59,5.0,254, 7PK – Security Features,nan
CVE-2016-2349,27/07/2017 1:29,21/12/2016 22:59,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2016-10106,27/07/2017 1:29,3/01/2017 6:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10006,27/07/2017 1:29,24/12/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0360,27/07/2017 1:29,15/02/2017 19:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-0378,26/07/2017 20:13,20/07/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2276,26/07/2017 20:11,22/07/2017 0:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2275,26/07/2017 20:07,22/07/2017 0:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-11343,26/07/2017 20:04,17/07/2017 13:18,5.0,407, Inefficient Algorithmic Complexity,nan
CVE-2017-10676,26/07/2017 20:04,20/07/2017 1:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000362,26/07/2017 20:03,17/07/2017 13:18,5.0,200, Information Exposure,nan
CVE-2015-3170,26/07/2017 20:03,21/07/2017 14:29,2.1,254, 7PK – Security Features,nan
CVE-2017-1000001,26/07/2017 18:14,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-11517,26/07/2017 18:09,21/07/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7678,26/07/2017 18:06,12/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10400,26/07/2017 17:50,22/07/2017 17:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6312,26/07/2017 17:43,17/07/2017 13:18,4.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000016,26/07/2017 17:42,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2015-3931,26/07/2017 17:13,21/07/2017 14:29,6.8,91, XML Injection (aka Blind XPath Injection),nan
CVE-2017-11329,26/07/2017 12:45,17/07/2017 13:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11421,26/07/2017 12:42,18/07/2017 19:29,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3932,26/07/2017 12:12,21/07/2017 14:29,6.8,91, XML Injection (aka Blind XPath Injection),nan
CVE-2015-3421,26/07/2017 12:12,21/07/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5182,26/07/2017 1:29,23/01/2017 15:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-3902,26/07/2017 1:29,13/02/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3896,26/07/2017 1:29,13/02/2017 16:59,4.3,20, Improper Input Validation,nan
CVE-2017-3805,26/07/2017 1:29,26/01/2017 7:59,5.0,200, Information Exposure,nan
CVE-2017-3802,26/07/2017 1:29,26/01/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3800,26/07/2017 1:29,26/01/2017 7:59,5.0,20, Improper Input Validation,nan
CVE-2017-3799,26/07/2017 1:29,26/01/2017 7:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-3798,26/07/2017 1:29,26/01/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3797,26/07/2017 1:29,26/01/2017 7:59,5.0,200, Information Exposure,nan
CVE-2017-3796,26/07/2017 1:29,26/01/2017 7:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-3794,26/07/2017 1:29,26/01/2017 7:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-3792,26/07/2017 1:29,1/02/2017 19:59,10.0,20, Improper Input Validation,nan
CVE-2017-3323,26/07/2017 1:29,27/01/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2017-3321,26/07/2017 1:29,27/01/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2017-3255,26/07/2017 1:29,27/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2017-3240,26/07/2017 1:29,27/01/2017 22:59,2.1,200, Information Exposure,nan
CVE-2017-2929,26/07/2017 1:29,24/01/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2372,26/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2368,26/07/2017 1:29,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2017-2366,26/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2358,26/07/2017 1:29,20/02/2017 8:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2357,26/07/2017 1:29,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2017-1113,26/07/2017 1:29,5/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9746,26/07/2017 1:29,5/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9733,26/07/2017 1:29,5/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9701,26/07/2017 1:29,5/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8982,26/07/2017 1:29,1/02/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-10156,26/07/2017 1:29,23/01/2017 7:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5505,26/07/2017 1:29,18/08/2015 18:00,6.8,17, DEPRECATED: Code,nan
CVE-2016-7509,25/07/2017 18:21,19/07/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7507,25/07/2017 18:21,19/07/2017 13:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9932,25/07/2017 18:18,21/07/2017 6:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-9930,25/07/2017 18:18,21/07/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11465,25/07/2017 18:15,19/07/2017 21:29,7.5,787, Out-of-bounds Write,nan
CVE-2015-3886,25/07/2017 18:15,21/07/2017 14:29,7.5,295, Improper Certificate Validation,nan
CVE-2017-9785,25/07/2017 18:13,20/07/2017 12:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-9415,25/07/2017 18:12,21/07/2017 14:29,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5247,25/07/2017 18:08,18/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5246,25/07/2017 18:07,18/07/2017 18:29,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-11502,25/07/2017 18:04,20/07/2017 23:29,5.0,200, Information Exposure,nan
CVE-2017-11500,25/07/2017 18:04,20/07/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11456,25/07/2017 17:58,19/07/2017 7:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11435,25/07/2017 17:56,19/07/2017 7:29,7.5,200, Information Exposure,nan
CVE-2017-1374,25/07/2017 17:53,21/07/2017 20:29,4.0,200, Information Exposure,nan
CVE-2017-1372,25/07/2017 17:42,21/07/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11516,25/07/2017 17:14,21/07/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1323,25/07/2017 17:14,21/07/2017 14:29,4.9,200, Information Exposure,nan
CVE-2017-11353,25/07/2017 16:41,17/07/2017 13:18,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-3640,25/07/2017 16:41,21/07/2017 14:29,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3639,25/07/2017 16:40,21/07/2017 14:29,6.5,20, Improper Input Validation,nan
CVE-2015-3638,25/07/2017 16:35,21/07/2017 14:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-6018,25/07/2017 15:44,19/07/2017 20:29,4.0,200, Information Exposure,nan
CVE-2016-6798,25/07/2017 15:10,19/07/2017 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1223,25/07/2017 15:03,19/07/2017 20:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1224,25/07/2017 15:01,19/07/2017 20:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-1219,25/07/2017 15:00,19/07/2017 20:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-11466,25/07/2017 14:59,20/07/2017 0:29,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-3845,25/07/2017 1:29,22/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3844,25/07/2017 1:29,22/02/2017 2:59,4.0,20, Improper Input Validation,nan
CVE-2017-3843,25/07/2017 1:29,22/02/2017 2:59,4.0,20, Improper Input Validation,nan
CVE-2017-3842,25/07/2017 1:29,22/02/2017 2:59,5.0,200, Information Exposure,nan
CVE-2017-3841,25/07/2017 1:29,22/02/2017 2:59,5.0,200, Information Exposure,nan
CVE-2017-3840,25/07/2017 1:29,22/02/2017 2:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-3838,25/07/2017 1:29,22/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3837,25/07/2017 1:29,22/02/2017 2:59,5.5,20, Improper Input Validation,nan
CVE-2017-3836,25/07/2017 1:29,22/02/2017 2:59,4.0,200, Information Exposure,nan
CVE-2017-3835,25/07/2017 1:29,22/02/2017 2:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3830,25/07/2017 1:29,22/02/2017 2:59,5.0,20, Improper Input Validation,nan
CVE-2017-3829,25/07/2017 1:29,22/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3828,25/07/2017 1:29,22/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3827,25/07/2017 1:29,22/02/2017 2:59,5.0,20, Improper Input Validation,nan
CVE-2017-3824,25/07/2017 1:29,3/02/2017 7:59,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3822,25/07/2017 1:29,3/02/2017 7:59,5.0,20, Improper Input Validation,nan
CVE-2017-3821,25/07/2017 1:29,22/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3818,25/07/2017 1:29,3/02/2017 7:59,5.0,20, Improper Input Validation,nan
CVE-2017-3810,25/07/2017 1:29,3/02/2017 7:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-3809,25/07/2017 1:29,3/02/2017 7:59,5.0,20, Improper Input Validation,nan
CVE-2017-2973,25/07/2017 1:29,15/02/2017 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2768,25/07/2017 1:29,3/02/2017 7:59,10.0,287, Improper Authentication,nan
CVE-2017-2767,25/07/2017 1:29,3/02/2017 7:59,10.0,287, Improper Authentication,nan
CVE-2017-2374,25/07/2017 1:29,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1121,25/07/2017 1:29,13/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0451,25/07/2017 1:29,8/02/2017 15:59,2.6,200, Information Exposure,nan
CVE-2017-0448,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0426,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0425,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0424,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0422,25/07/2017 1:29,8/02/2017 15:59,7.8,20, Improper Input Validation,nan
CVE-2017-0421,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0420,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0414,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0413,25/07/2017 1:29,8/02/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-0407,25/07/2017 1:29,8/02/2017 15:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0406,25/07/2017 1:29,8/02/2017 15:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0405,25/07/2017 1:29,8/02/2017 15:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0016,25/07/2017 1:29,17/03/2017 0:59,7.1,476, NULL Pointer Dereference,nan
CVE-2016-9873,25/07/2017 1:29,3/02/2017 7:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9872,25/07/2017 1:29,3/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9704,25/07/2017 1:29,1/02/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9703,25/07/2017 1:29,1/02/2017 22:59,2.1,384, Session Fixation,nan
CVE-2016-9360,25/07/2017 1:29,13/02/2017 21:59,4.4,200, Information Exposure,nan
CVE-2016-9316,25/07/2017 1:29,21/02/2017 7:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9315,25/07/2017 1:29,21/02/2017 7:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9314,25/07/2017 1:29,21/02/2017 7:59,4.0,200, Information Exposure,nan
CVE-2016-9269,25/07/2017 1:29,21/02/2017 7:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-9249,25/07/2017 1:29,31/01/2017 15:59,7.8,20, Improper Input Validation,nan
CVE-2016-8968,25/07/2017 1:29,15/02/2017 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8944,25/07/2017 1:29,15/02/2017 19:59,4.9,20, Improper Input Validation,nan
CVE-2016-8495,25/07/2017 1:29,13/02/2017 15:59,5.8,200, Information Exposure,nan
CVE-2016-8481,25/07/2017 1:29,8/02/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8480,25/07/2017 1:29,8/02/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8476,25/07/2017 1:29,8/02/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8421,25/07/2017 1:29,8/02/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8420,25/07/2017 1:29,8/02/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8419,25/07/2017 1:29,8/02/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8418,25/07/2017 1:29,8/02/2017 15:59,10.0,284, Improper Access Control,nan
CVE-2016-8414,25/07/2017 1:29,8/02/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-8217,25/07/2017 1:29,3/02/2017 7:59,5.0,200, Information Exposure,nan
CVE-2016-8212,25/07/2017 1:29,3/02/2017 7:59,5.8,254, 7PK – Security Features,nan
CVE-2016-6249,25/07/2017 1:29,20/02/2017 15:59,2.1,200, Information Exposure,nan
CVE-2016-5919,25/07/2017 1:29,16/02/2017 20:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-5883,25/07/2017 1:29,23/02/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10044,25/07/2017 1:29,7/02/2017 7:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5013,25/07/2017 1:29,8/02/2017 19:59,2.1,200, Information Exposure,nan
CVE-2014-9914,25/07/2017 1:29,7/02/2017 7:59,7.2,416, Use After Free,nan
CVE-2017-9980,24/07/2017 17:41,21/07/2017 6:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-7016,24/07/2017 17:13,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10962,24/07/2017 17:12,18/07/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10961,24/07/2017 17:12,18/07/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7007,24/07/2017 17:01,20/07/2017 16:29,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-7015,24/07/2017 17:00,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7014,24/07/2017 17:00,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9931,24/07/2017 16:35,21/07/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1203,24/07/2017 16:21,19/07/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11471,24/07/2017 15:28,20/07/2017 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11470,24/07/2017 15:28,20/07/2017 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11469,24/07/2017 15:03,20/07/2017 4:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9338,24/07/2017 14:43,17/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7058,24/07/2017 14:32,20/07/2017 16:29,2.1,200, Information Exposure,nan
CVE-2017-7045,24/07/2017 14:08,20/07/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-7044,24/07/2017 14:00,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7036,24/07/2017 13:52,20/07/2017 16:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-7035,24/07/2017 13:48,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7033,24/07/2017 13:41,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7032,24/07/2017 13:41,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7031,24/07/2017 13:22,20/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7021,24/07/2017 13:09,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7017,24/07/2017 12:59,20/07/2017 16:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2517,24/07/2017 12:48,20/07/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2017-1000082,23/07/2017 1:29,7/07/2017 17:29,10.0,20, Improper Input Validation,nan
CVE-2017-2339,22/07/2017 1:29,17/07/2017 13:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2338,22/07/2017 1:29,17/07/2017 13:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2337,22/07/2017 1:29,17/07/2017 13:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2336,22/07/2017 1:29,17/07/2017 13:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2335,22/07/2017 1:29,17/07/2017 13:18,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10726,21/07/2017 21:02,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10727,21/07/2017 20:47,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10728,21/07/2017 20:45,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11189,21/07/2017 20:34,12/07/2017 16:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-11190,21/07/2017 20:29,12/07/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000005,21/07/2017 18:52,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0764,21/07/2017 17:58,17/07/2017 13:18,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-1000067,21/07/2017 16:59,17/07/2017 13:18,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5394,21/07/2017 16:53,19/07/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000026,21/07/2017 16:36,17/07/2017 13:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11474,21/07/2017 16:34,20/07/2017 4:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-0152,21/07/2017 16:27,17/07/2017 13:18,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000027,21/07/2017 16:25,17/07/2017 13:18,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10398,21/07/2017 16:24,17/07/2017 13:18,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-0196,21/07/2017 16:23,17/07/2017 13:18,4.3,200, Information Exposure,nan
CVE-2017-1000029,21/07/2017 16:10,17/07/2017 13:18,5.0,200, Information Exposure,nan
CVE-2017-1000030,21/07/2017 15:54,17/07/2017 13:18,5.0,287, Improper Authentication,nan
CVE-2016-8953,21/07/2017 15:29,12/07/2017 17:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-8948,21/07/2017 15:28,12/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000047,21/07/2017 15:26,17/07/2017 13:18,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11440,21/07/2017 15:25,19/07/2017 7:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-11439,21/07/2017 15:21,19/07/2017 7:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000065,21/07/2017 15:10,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000033,21/07/2017 14:48,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9609,21/07/2017 14:31,17/07/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9934,21/07/2017 14:21,17/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11354,20/07/2017 20:02,17/07/2017 13:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11445,20/07/2017 20:00,19/07/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11444,20/07/2017 20:00,19/07/2017 7:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1000051,20/07/2017 19:59,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000038,20/07/2017 18:54,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000042,20/07/2017 18:49,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2266,20/07/2017 18:44,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2272,20/07/2017 18:23,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-1000059,20/07/2017 17:56,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2253,20/07/2017 16:49,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-9933,20/07/2017 16:45,17/07/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-7276,20/07/2017 16:42,4/07/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8946,20/07/2017 16:38,12/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6114,20/07/2017 16:36,12/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2231,20/07/2017 16:33,7/07/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2232,20/07/2017 16:31,7/07/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2247,20/07/2017 16:28,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2233,20/07/2017 16:28,7/07/2017 13:29,9.3,426, Untrusted Search Path,nan
CVE-2017-1000070,20/07/2017 16:26,17/07/2017 13:18,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-2249,20/07/2017 16:23,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-1000069,20/07/2017 16:23,17/07/2017 13:18,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2271,20/07/2017 16:11,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-11450,20/07/2017 15:53,19/07/2017 7:29,6.8,20, Improper Input Validation,nan
CVE-2017-11448,20/07/2017 15:45,19/07/2017 7:29,4.3,200, Information Exposure,nan
CVE-2017-2270,20/07/2017 15:26,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2269,20/07/2017 15:24,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2268,20/07/2017 15:23,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2267,20/07/2017 15:23,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2265,20/07/2017 15:19,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2172,20/07/2017 15:17,7/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8582,20/07/2017 15:12,11/07/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-1000011,20/07/2017 14:59,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1183,20/07/2017 14:15,17/07/2017 13:18,5.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2248,20/07/2017 13:59,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-2246,20/07/2017 13:58,17/07/2017 13:18,9.3,426, Untrusted Search Path,nan
CVE-2017-9671,20/07/2017 13:51,17/07/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9669,20/07/2017 13:51,17/07/2017 21:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0243,20/07/2017 13:27,11/07/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11419,20/07/2017 13:22,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11418,20/07/2017 13:18,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11417,20/07/2017 13:17,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11416,20/07/2017 13:17,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11415,20/07/2017 13:10,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11414,20/07/2017 13:09,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11413,20/07/2017 13:08,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11412,20/07/2017 12:57,18/07/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11340,20/07/2017 12:03,17/07/2017 13:18,4.3,20, Improper Input Validation,nan
CVE-2017-11339,20/07/2017 12:03,17/07/2017 13:18,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11337,20/07/2017 12:02,17/07/2017 13:18,4.3,416, Use After Free,nan
CVE-2017-11193,20/07/2017 1:34,12/07/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2006-6109,20/07/2017 1:34,26/11/2006 22:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6108,20/07/2017 1:34,26/11/2006 22:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6095,20/07/2017 1:34,24/11/2006 18:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6073,20/07/2017 1:34,24/11/2006 17:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6046,20/07/2017 1:34,22/11/2006 0:07,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6035,20/07/2017 1:34,22/11/2006 0:07,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5982,20/07/2017 1:34,20/11/2006 21:07,10.0,310, Cryptographic Issues,nan
CVE-2006-5981,20/07/2017 1:34,20/11/2006 21:07,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-5939,20/07/2017 1:34,16/11/2006 0:07,7.8,369, Divide By Zero,nan
CVE-2006-5938,20/07/2017 1:34,16/11/2006 0:07,10.0,20, Improper Input Validation,nan
CVE-2006-5882,20/07/2017 1:34,14/11/2006 19:07,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5860,20/07/2017 1:34,14/02/2007 2:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5847,20/07/2017 1:34,10/11/2006 2:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5846,20/07/2017 1:34,10/11/2006 2:07,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-5845,20/07/2017 1:34,10/11/2006 2:07,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2006-5843,20/07/2017 1:34,10/11/2006 2:07,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5710,20/07/2017 1:33,4/11/2006 1:07,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5601,20/07/2017 1:33,28/10/2006 1:07,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5568,20/07/2017 1:33,27/10/2006 16:07,5.0,399, Resource Management Errors,nan
CVE-2006-5507,20/07/2017 1:33,25/10/2006 22:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5486,20/07/2017 1:33,24/10/2006 22:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5439,20/07/2017 1:33,20/10/2006 23:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5424,20/07/2017 1:33,20/10/2006 17:07,5.1,399, Resource Management Errors,nan
CVE-2006-5402,20/07/2017 1:33,18/10/2006 23:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5269,20/07/2017 1:33,17/11/2008 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5266,20/07/2017 1:33,31/12/2006 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5265,20/07/2017 1:33,31/12/2006 5:00,5.0,20, Improper Input Validation,nan
CVE-2006-5177,20/07/2017 1:33,10/10/2006 4:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5176,20/07/2017 1:33,10/10/2006 4:06,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5175,20/07/2017 1:33,10/10/2006 4:06,7.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2006-5080,20/07/2017 1:33,29/09/2006 0:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5045,20/07/2017 1:33,27/09/2006 23:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5031,20/07/2017 1:33,27/09/2006 23:07,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-4844,20/07/2017 1:33,19/09/2006 1:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4819,20/07/2017 1:33,17/10/2006 21:07,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4727,20/07/2017 1:33,31/12/2006 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4564,20/07/2017 1:33,6/09/2006 1:04,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4542,20/07/2017 1:33,5/09/2006 23:04,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4537,20/07/2017 1:33,5/09/2006 18:04,2.1,200, Information Exposure,nan
CVE-2006-4517,20/07/2017 1:33,1/11/2006 15:07,7.8,399, Resource Management Errors,nan
CVE-2006-4326,20/07/2017 1:33,24/08/2006 1:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4299,20/07/2017 1:32,23/08/2006 1:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4215,20/07/2017 1:32,17/08/2006 21:04,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4214,20/07/2017 1:32,17/08/2006 21:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4067,20/07/2017 1:32,10/08/2006 0:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4013,20/07/2017 1:32,7/08/2006 19:04,7.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-4006,20/07/2017 1:32,7/08/2006 19:04,5.0,200, Information Exposure,nan
CVE-2006-3946,20/07/2017 1:32,31/07/2006 23:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3777,20/07/2017 1:32,24/07/2006 12:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3776,20/07/2017 1:32,24/07/2006 12:19,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3668,20/07/2017 1:32,18/07/2006 15:47,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3633,20/07/2017 1:32,27/07/2006 1:04,6.5,20, Improper Input Validation,nan
CVE-2006-3600,20/07/2017 1:32,18/07/2006 15:37,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3486,20/07/2017 1:32,10/07/2006 21:05,2.1,189, Numeric Errors,nan
CVE-2006-3456,20/07/2017 1:32,11/05/2007 10:19,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3395,20/07/2017 1:32,6/07/2006 20:05,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3306,20/07/2017 1:32,29/06/2006 1:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3291,20/07/2017 1:32,28/06/2006 23:05,9.3,16, Configuration,nan
CVE-2006-3251,20/07/2017 1:32,27/06/2006 18:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3240,20/07/2017 1:32,27/06/2006 10:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3181,20/07/2017 1:32,23/06/2006 0:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3172,20/07/2017 1:32,23/06/2006 0:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3138,20/07/2017 1:32,22/06/2006 22:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3121,20/07/2017 1:32,17/08/2006 1:04,5.0,399, Resource Management Errors,nan
CVE-2006-3087,20/07/2017 1:32,19/06/2006 21:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3015,20/07/2017 1:31,14/06/2006 15:06,7.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3011,20/07/2017 1:31,26/06/2006 21:05,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-2800,20/07/2017 1:31,3/06/2006 10:02,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2796,20/07/2017 1:31,3/06/2006 1:02,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2760,20/07/2017 1:31,2/06/2006 1:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2681,20/07/2017 1:31,31/05/2006 10:06,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2649,20/07/2017 1:31,30/05/2006 10:02,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2562,20/07/2017 1:31,24/05/2006 1:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-2482,20/07/2017 1:31,8/09/2006 21:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2420,20/07/2017 1:31,16/05/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2417,20/07/2017 1:31,16/05/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2395,20/07/2017 1:31,16/05/2006 1:02,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2353,20/07/2017 1:31,15/05/2006 10:02,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-2351,20/07/2017 1:31,15/05/2006 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2301,20/07/2017 1:31,11/05/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2286,20/07/2017 1:31,10/05/2006 2:14,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2259,20/07/2017 1:31,9/05/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2245,20/07/2017 1:31,9/05/2006 10:02,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-2239,20/07/2017 1:31,9/05/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2238,20/07/2017 1:31,12/05/2006 21:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2220,20/07/2017 1:31,8/02/2007 17:28,5.0,20, Improper Input Validation,nan
CVE-2006-2219,20/07/2017 1:31,8/02/2007 17:28,5.0,20, Improper Input Validation,nan
CVE-2006-2181,20/07/2017 1:31,4/05/2006 12:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2180,20/07/2017 1:31,4/05/2006 12:38,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-2178,20/07/2017 1:31,4/05/2006 12:38,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2157,20/07/2017 1:31,3/05/2006 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-2095,20/07/2017 1:31,29/04/2006 10:02,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-2094,20/07/2017 1:31,29/04/2006 10:02,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-2069,20/07/2017 1:31,27/04/2006 13:34,5.0,399, Resource Management Errors,nan
CVE-2006-1991,20/07/2017 1:31,24/04/2006 23:02,6.4,399, Resource Management Errors,nan
CVE-2006-1985,20/07/2017 1:31,21/04/2006 22:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1983,20/07/2017 1:31,21/04/2006 22:02,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1865,20/07/2017 1:30,21/04/2006 23:06,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1840,20/07/2017 1:30,19/04/2006 16:06,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2006-1760,20/07/2017 1:30,13/04/2006 1:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1751,20/07/2017 1:30,12/04/2006 22:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1750,20/07/2017 1:30,12/04/2006 22:02,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1746,20/07/2017 1:30,12/04/2006 22:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-1615,20/07/2017 1:30,6/04/2006 22:04,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2006-1552,20/07/2017 1:30,31/03/2006 11:06,5.0,189, Numeric Errors,nan
CVE-2006-1524,20/07/2017 1:30,19/04/2006 18:18,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2006-1513,20/07/2017 1:30,25/04/2006 12:50,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1501,20/07/2017 1:30,30/03/2006 0:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1500,20/07/2017 1:30,30/03/2006 0:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-1491,20/07/2017 1:30,29/03/2006 22:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1470,20/07/2017 1:30,27/06/2006 22:13,5.0,399, Resource Management Errors,nan
CVE-2006-1469,20/07/2017 1:30,27/06/2006 22:13,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1458,20/07/2017 1:30,12/05/2006 20:06,5.1,189, Numeric Errors,nan
CVE-2006-1439,20/07/2017 1:30,12/05/2006 21:02,2.1,200, Information Exposure,nan
CVE-2006-1417,20/07/2017 1:30,28/03/2006 20:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-1380,20/07/2017 1:30,24/03/2006 11:02,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-1338,20/07/2017 1:30,21/03/2006 2:06,5.0,399, Resource Management Errors,nan
CVE-2006-1337,20/07/2017 1:30,21/03/2006 2:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1275,20/07/2017 1:30,19/03/2006 11:06,5.0,399, Resource Management Errors,nan
CVE-2006-1251,20/07/2017 1:30,19/03/2006 1:02,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1095,20/07/2017 1:30,9/03/2006 13:06,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-1060,20/07/2017 1:30,11/04/2006 10:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-1031,20/07/2017 1:30,7/03/2006 11:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1006,20/07/2017 1:30,6/03/2006 20:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0897,20/07/2017 1:30,25/02/2006 11:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0887,20/07/2017 1:30,25/02/2006 11:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0883,20/07/2017 1:30,7/03/2006 2:02,5.0,399, Resource Management Errors,nan
CVE-2006-0854,20/07/2017 1:30,23/02/2006 2:06,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0848,20/07/2017 1:30,22/02/2006 23:02,5.1,16, Configuration,nan
CVE-2006-0842,20/07/2017 1:30,22/02/2006 2:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0800,20/07/2017 1:30,20/02/2006 22:02,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0772,20/07/2017 1:30,19/02/2006 0:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0743,20/07/2017 1:30,9/03/2006 20:02,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2006-0734,20/07/2017 1:30,16/02/2006 11:02,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0725,20/07/2017 1:30,16/02/2006 11:02,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0723,20/07/2017 1:30,16/02/2006 11:02,2.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0710,20/07/2017 1:30,15/02/2006 11:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0707,20/07/2017 1:29,15/02/2006 11:06,5.0,200, Information Exposure,nan
CVE-2006-0705,20/07/2017 1:29,15/02/2006 11:06,6.5,134, Use of Externally-Controlled Format String,nan
CVE-2006-0700,20/07/2017 1:29,15/02/2006 11:06,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-0663,20/07/2017 1:29,13/02/2006 11:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0622,20/07/2017 1:29,9/02/2006 2:02,4.9,399, Resource Management Errors,nan
CVE-2006-0619,20/07/2017 1:29,9/02/2006 2:02,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0533,20/07/2017 1:29,4/02/2006 0:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0416,20/07/2017 1:29,25/01/2006 11:03,5.0,287, Improper Authentication,nan
CVE-2006-0412,20/07/2017 1:29,25/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0399,20/07/2017 1:29,14/03/2006 11:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0398,20/07/2017 1:29,14/03/2006 11:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0397,20/07/2017 1:29,14/03/2006 11:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0388,20/07/2017 1:29,3/03/2006 22:02,2.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0374,20/07/2017 1:29,22/01/2006 20:03,7.5,287, Improper Authentication,nan
CVE-2006-0364,20/07/2017 1:29,22/01/2006 20:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0362,20/07/2017 1:29,22/01/2006 20:03,5.0,399, Resource Management Errors,nan
CVE-2006-0353,20/07/2017 1:29,22/01/2006 19:03,3.6,200, Information Exposure,nan
CVE-2006-0342,20/07/2017 1:29,21/01/2006 0:03,7.8,399, Resource Management Errors,nan
CVE-2006-0340,20/07/2017 1:29,21/01/2006 0:03,7.1,20, Improper Input Validation,nan
CVE-2006-0332,20/07/2017 1:29,21/01/2006 0:03,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0249,20/07/2017 1:29,18/01/2006 1:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0240,20/07/2017 1:29,18/01/2006 1:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0223,20/07/2017 1:29,16/01/2006 21:03,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0160,20/07/2017 1:29,10/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0159,20/07/2017 1:29,10/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0114,20/07/2017 1:29,9/01/2006 11:03,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-0101,20/07/2017 1:29,6/01/2006 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-0053,20/07/2017 1:29,10/04/2006 18:06,2.6,399, Resource Management Errors,nan
CVE-2006-0035,20/07/2017 1:29,11/01/2006 21:03,4.9,399, Resource Management Errors,nan
CVE-2005-4711,20/07/2017 1:29,31/12/2005 5:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4617,20/07/2017 1:29,31/12/2005 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4573,20/07/2017 1:29,29/12/2005 11:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-4515,20/07/2017 1:29,23/12/2005 1:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4500,20/07/2017 1:29,22/12/2005 21:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4382,20/07/2017 1:29,20/12/2005 2:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4380,20/07/2017 1:29,20/12/2005 2:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4217,20/07/2017 1:29,14/12/2005 11:03,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-4209,20/07/2017 1:29,13/12/2005 11:03,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-4198,20/07/2017 1:29,13/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4071,20/07/2017 1:29,8/12/2005 1:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4066,20/07/2017 1:29,7/12/2005 11:03,4.9,310, Cryptographic Issues,nan
CVE-2005-4060,20/07/2017 1:29,7/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4058,20/07/2017 1:29,7/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4040,20/07/2017 1:29,6/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2649,20/07/2017 1:29,31/12/2004 5:00,5.8,20, Improper Input Validation,nan
CVE-2004-2608,20/07/2017 1:29,31/12/2004 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-8592,19/07/2017 22:42,11/07/2017 21:29,4.3,200, Information Exposure,nan
CVE-2017-2863,19/07/2017 22:30,12/07/2017 17:29,6.8,787, Out-of-bounds Write,nan
CVE-2016-8951,19/07/2017 19:34,13/07/2017 15:29,5.0,287, Improper Authentication,nan
CVE-2016-6019,19/07/2017 19:34,13/07/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8952,19/07/2017 19:12,13/07/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2642,19/07/2017 19:08,17/07/2017 17:29,4.0,200, Information Exposure,nan
CVE-2017-1000072,19/07/2017 18:54,17/07/2017 13:18,7.5,415, Double Free,nan
CVE-2017-11342,19/07/2017 18:49,17/07/2017 13:18,5.0,20, Improper Input Validation,nan
CVE-2017-11128,19/07/2017 18:16,17/07/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11127,19/07/2017 18:03,17/07/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000062,19/07/2017 17:43,17/07/2017 13:18,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1000054,19/07/2017 17:38,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000039,19/07/2017 17:27,17/07/2017 13:18,7.5,20, Improper Input Validation,nan
CVE-2017-1000044,19/07/2017 17:12,17/07/2017 13:18,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000075,19/07/2017 16:53,17/07/2017 13:18,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000063,19/07/2017 16:52,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1000074,19/07/2017 16:51,17/07/2017 13:18,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000073,19/07/2017 16:51,17/07/2017 13:18,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1000064,19/07/2017 16:51,17/07/2017 13:18,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2017-1000060,19/07/2017 16:49,17/07/2017 13:18,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10929,19/07/2017 16:32,5/07/2017 12:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10796,19/07/2017 16:23,2/07/2017 22:29,3.3,287, Improper Authentication,nan
CVE-2017-1000032,19/07/2017 16:18,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7664,19/07/2017 16:12,17/07/2017 13:18,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7663,19/07/2017 16:01,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7666,19/07/2017 15:24,17/07/2017 13:18,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7681,19/07/2017 15:04,17/07/2017 13:18,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7683,19/07/2017 15:03,17/07/2017 13:18,5.0,200, Information Exposure,nan
CVE-2017-1000031,19/07/2017 14:44,17/07/2017 13:18,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3103,19/07/2017 13:26,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3102,19/07/2017 13:26,17/07/2017 13:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1208,19/07/2017 12:28,5/07/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11196,19/07/2017 1:29,12/07/2017 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-11195,19/07/2017 1:29,12/07/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1175,18/07/2017 19:01,5/07/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1176,18/07/2017 18:56,5/07/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-1144,18/07/2017 18:31,5/07/2017 18:29,1.9,426, Untrusted Search Path,nan
CVE-2017-1157,18/07/2017 18:29,5/07/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-9599,18/07/2017 1:29,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-6862,18/07/2017 1:29,26/05/2017 20:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1254,17/07/2017 18:58,5/07/2017 18:29,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1264,17/07/2017 18:53,5/07/2017 18:29,5.0,287, Improper Authentication,nan
CVE-2017-8621,17/07/2017 18:48,11/07/2017 21:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-1253,17/07/2017 18:47,5/07/2017 18:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1236,17/07/2017 18:34,6/07/2017 14:29,4.0,20, Improper Input Validation,nan
CVE-2017-2188,17/07/2017 18:20,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-10973,17/07/2017 18:20,6/07/2017 16:29,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-5001,17/07/2017 18:11,7/07/2017 0:29,4.0,200, Information Exposure,nan
CVE-2017-5002,17/07/2017 18:08,7/07/2017 0:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-4998,17/07/2017 18:06,7/07/2017 0:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8003,17/07/2017 17:58,9/07/2017 20:29,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8002,17/07/2017 17:57,9/07/2017 20:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10976,17/07/2017 17:48,6/07/2017 15:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-10975,17/07/2017 17:40,6/07/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8826,17/07/2017 17:38,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8803,17/07/2017 17:38,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8785,17/07/2017 17:37,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11194,17/07/2017 17:18,12/07/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2229,17/07/2017 17:13,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2220,17/07/2017 17:07,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2194,17/07/2017 16:44,7/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10968,17/07/2017 16:44,7/07/2017 11:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-1285,17/07/2017 16:42,12/07/2017 17:29,4.0,20, Improper Input Validation,nan
CVE-2017-5640,17/07/2017 16:13,10/07/2017 20:29,7.5,287, Improper Authentication,nan
CVE-2017-2820,17/07/2017 15:28,12/07/2017 17:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-2818,17/07/2017 15:28,12/07/2017 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2814,17/07/2017 15:27,12/07/2017 17:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2208,17/07/2017 15:17,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-1000381,17/07/2017 15:08,7/07/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-8495,17/07/2017 15:06,11/07/2017 21:29,6.0,287, Improper Authentication,nan
CVE-2017-2215,17/07/2017 13:48,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-8486,17/07/2017 13:19,11/07/2017 21:29,1.9,200, Information Exposure,nan
CVE-2017-9420,17/07/2017 13:18,5/06/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9419,17/07/2017 13:18,15/06/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9288,17/07/2017 13:18,29/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4900,17/07/2017 13:18,7/06/2017 18:29,2.1,476, NULL Pointer Dereference,nan
CVE-2017-4899,17/07/2017 13:18,7/06/2017 18:29,1.9,125, Out-of-bounds Read,nan
CVE-2017-4897,17/07/2017 13:18,31/05/2017 14:29,7.1,20, Improper Input Validation,nan
CVE-2017-4055,17/07/2017 13:18,12/07/2017 15:29,5.0,306, Missing Authentication for Critical Function,nan
CVE-2017-4054,17/07/2017 13:18,12/07/2017 15:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-4052,17/07/2017 13:18,12/07/2017 15:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2017-2983,17/07/2017 13:18,14/03/2017 16:59,6.8,426, Untrusted Search Path,nan
CVE-2017-2683,17/07/2017 13:18,27/02/2017 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2682,17/07/2017 13:18,27/02/2017 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2224,17/07/2017 13:18,7/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2195,17/07/2017 13:18,9/06/2017 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-2168,17/07/2017 13:18,22/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10970,17/07/2017 13:18,6/07/2017 11:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0537,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0536,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0535,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0534,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0533,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0532,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0531,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0529,17/07/2017 13:18,8/03/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-0499,17/07/2017 13:18,8/03/2017 1:59,7.1,20, Improper Input Validation,nan
CVE-2017-0495,17/07/2017 13:18,8/03/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-0494,17/07/2017 13:18,8/03/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-0488,17/07/2017 13:18,8/03/2017 1:59,7.1,20, Improper Input Validation,nan
CVE-2017-0484,17/07/2017 13:18,8/03/2017 1:59,7.1,20, Improper Input Validation,nan
CVE-2017-0483,17/07/2017 13:18,8/03/2017 1:59,7.1,20, Improper Input Validation,nan
CVE-2017-0476,17/07/2017 13:18,8/03/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0474,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0473,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0472,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0471,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0470,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0469,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0468,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0467,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0466,17/07/2017 13:18,8/03/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0461,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0459,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0455,17/07/2017 13:18,8/03/2017 1:59,9.3,200, Information Exposure,nan
CVE-2017-0452,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2017-0336,17/07/2017 13:18,8/03/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-0334,17/07/2017 13:18,8/03/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-0109,17/07/2017 13:18,17/03/2017 0:59,7.4,20, Improper Input Validation,nan
CVE-2017-0099,17/07/2017 13:18,17/03/2017 0:59,2.3,20, Improper Input Validation,nan
CVE-2017-0098,17/07/2017 13:18,17/03/2017 0:59,2.9,20, Improper Input Validation,nan
CVE-2017-0097,17/07/2017 13:18,17/03/2017 0:59,2.3,20, Improper Input Validation,nan
CVE-2017-0096,17/07/2017 13:18,17/03/2017 0:59,2.3,200, Information Exposure,nan
CVE-2017-0076,17/07/2017 13:18,17/03/2017 0:59,2.9,20, Improper Input Validation,nan
CVE-2017-0074,17/07/2017 13:18,17/03/2017 0:59,2.3,20, Improper Input Validation,nan
CVE-2016-9245,17/07/2017 13:18,7/03/2017 21:59,4.3,284, Improper Access Control,nan
CVE-2016-8483,17/07/2017 13:18,8/03/2017 1:59,4.3,200, Information Exposure,nan
CVE-2016-8479,17/07/2017 13:18,8/03/2017 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8478,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2016-8477,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2016-8417,17/07/2017 13:18,8/03/2017 1:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8416,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2016-8413,17/07/2017 13:18,8/03/2017 1:59,2.6,200, Information Exposure,nan
CVE-2016-4833,17/07/2017 13:18,3/08/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7791,17/07/2017 13:18,29/12/2015 22:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1579,17/07/2017 13:18,11/02/2015 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0901,17/07/2017 13:18,31/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3903,17/07/2017 13:18,19/08/2014 11:16,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1302,17/07/2017 13:18,28/12/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2227,16/07/2017 23:38,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2223,16/07/2017 23:37,7/07/2017 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6727,16/07/2017 23:32,10/07/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-6731,16/07/2017 23:31,10/07/2017 20:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6730,16/07/2017 23:31,10/07/2017 20:29,5.0,200, Information Exposure,nan
CVE-2017-6733,16/07/2017 11:32,10/07/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11202,16/07/2017 11:06,13/07/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11201,16/07/2017 11:05,13/07/2017 1:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11200,16/07/2017 11:02,13/07/2017 1:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-11198,16/07/2017 10:58,13/07/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11180,16/07/2017 10:56,12/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11179,16/07/2017 10:56,12/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11167,14/07/2017 18:52,12/07/2017 13:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-8387,14/07/2017 17:18,5/07/2017 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10974,14/07/2017 16:47,7/07/2017 11:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7950,14/07/2017 16:44,7/07/2017 11:29,4.3,20, Improper Input Validation,nan
CVE-2017-2145,14/07/2017 16:10,7/07/2017 13:29,5.8,384, Session Fixation,nan
CVE-2017-2144,14/07/2017 16:10,7/07/2017 13:29,5.8,284, Improper Access Control,nan
CVE-2017-2185,14/07/2017 15:51,7/07/2017 13:29,5.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2184,14/07/2017 15:51,7/07/2017 13:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2183,14/07/2017 15:51,7/07/2017 13:29,5.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2186,14/07/2017 15:50,7/07/2017 13:29,8.3,287, Improper Authentication,nan
CVE-2017-2218,14/07/2017 15:19,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2225,14/07/2017 15:12,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2226,14/07/2017 15:11,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2230,14/07/2017 15:03,7/07/2017 13:29,6.8,426, Untrusted Search Path,nan
CVE-2017-11182,14/07/2017 14:58,12/07/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-11181,14/07/2017 14:58,12/07/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2238,14/07/2017 14:55,7/07/2017 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2236,14/07/2017 14:54,7/07/2017 13:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-2235,14/07/2017 14:54,7/07/2017 13:29,5.0,284, Improper Access Control,nan
CVE-2017-2237,14/07/2017 14:45,7/07/2017 13:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2216,14/07/2017 14:29,7/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2243,14/07/2017 14:26,7/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2244,14/07/2017 14:25,7/07/2017 13:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0377,14/07/2017 14:21,2/07/2017 15:29,5.0,200, Information Exposure,nan
CVE-2017-7405,14/07/2017 14:08,7/07/2017 12:29,7.5,287, Improper Authentication,nan
CVE-2017-7404,14/07/2017 14:07,7/07/2017 12:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1096,14/07/2017 13:51,5/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1258,14/07/2017 13:47,5/07/2017 13:29,6.4,287, Improper Authentication,nan
CVE-2017-6734,14/07/2017 13:43,10/07/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8559,14/07/2017 13:25,11/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8560,14/07/2017 13:21,11/07/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3297,14/07/2017 13:16,7/07/2017 16:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8607,14/07/2017 13:15,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8606,14/07/2017 13:15,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8608,14/07/2017 13:14,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8611,14/07/2017 12:42,11/07/2017 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-8617,14/07/2017 12:41,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8502,14/07/2017 12:41,11/07/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8501,14/07/2017 10:32,11/07/2017 21:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8602,14/07/2017 10:31,11/07/2017 21:29,4.3,20, Improper Input Validation,nan
CVE-2017-8609,13/07/2017 19:30,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8605,13/07/2017 19:30,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8603,13/07/2017 19:30,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2245,13/07/2017 18:06,7/07/2017 13:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2217,13/07/2017 17:57,7/07/2017 13:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8604,13/07/2017 17:49,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8595,13/07/2017 17:36,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8598,13/07/2017 17:33,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8619,13/07/2017 17:32,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8596,13/07/2017 17:32,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8610,13/07/2017 17:22,11/07/2017 21:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9927,13/07/2017 17:19,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8420,13/07/2017 17:16,5/07/2017 20:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8370,13/07/2017 17:15,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8369,13/07/2017 17:15,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1284,13/07/2017 17:13,10/07/2017 16:29,1.9,200, Information Exposure,nan
CVE-2017-10748,13/07/2017 17:12,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10776,13/07/2017 17:11,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10775,13/07/2017 17:11,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-11101,13/07/2017 17:08,7/07/2017 18:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-11099,13/07/2017 17:08,7/07/2017 18:29,6.8,20, Improper Input Validation,nan
CVE-2017-11098,13/07/2017 17:08,7/07/2017 18:29,6.8,20, Improper Input Validation,nan
CVE-2017-11097,13/07/2017 17:08,7/07/2017 18:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-11100,13/07/2017 15:45,7/07/2017 18:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-1269,13/07/2017 15:44,5/07/2017 13:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-10967,13/07/2017 15:43,6/07/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7175,13/07/2017 15:35,10/07/2017 19:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7730,13/07/2017 15:11,11/07/2017 17:29,7.8,20, Improper Input Validation,nan
CVE-2017-7726,13/07/2017 15:10,11/07/2017 17:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-6735,13/07/2017 14:57,10/07/2017 20:29,7.2,20, Improper Input Validation,nan
CVE-2017-6726,13/07/2017 14:45,10/07/2017 20:29,2.1,200, Information Exposure,nan
CVE-2017-8246,13/07/2017 1:29,12/05/2017 20:29,4.6,416, Use After Free,nan
CVE-2017-6708,13/07/2017 1:29,6/07/2017 0:29,7.5,200, Information Exposure,nan
CVE-2017-0540,13/07/2017 1:29,7/04/2017 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9731,13/07/2017 1:29,31/08/2015 10:59,2.1,17, DEPRECATED: Code,nan
CVE-2017-11125,12/07/2017 19:08,10/07/2017 3:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-11124,12/07/2017 19:08,10/07/2017 3:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-8766,12/07/2017 19:04,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10804,12/07/2017 19:04,4/07/2017 18:29,7.5,306, Missing Authentication for Critical Function,nan
CVE-2016-10099,12/07/2017 19:04,2/01/2017 21:59,5.0,310, Cryptographic Issues,nan
CVE-2017-10788,12/07/2017 18:24,1/07/2017 18:29,7.5,416, Use After Free,nan
CVE-2017-11096,12/07/2017 15:05,7/07/2017 18:29,6.8,476, NULL Pointer Dereference,nan
CVE-2017-2222,12/07/2017 14:25,7/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2146,12/07/2017 14:00,7/07/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9989,12/07/2017 13:45,5/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9988,12/07/2017 13:44,5/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9987,12/07/2017 13:44,5/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9986,12/07/2017 13:40,5/07/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8290,12/07/2017 12:45,6/07/2017 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7410,12/07/2017 1:29,3/04/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7309,12/07/2017 1:29,31/03/2017 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7241,12/07/2017 1:29,31/03/2017 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6974,12/07/2017 1:29,2/04/2017 1:59,4.3,20, Improper Input Validation,nan
CVE-2017-6973,12/07/2017 1:29,31/03/2017 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6864,12/07/2017 1:29,29/03/2017 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6606,12/07/2017 1:29,7/04/2017 17:59,6.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6604,12/07/2017 1:29,7/04/2017 17:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-6597,12/07/2017 1:29,7/04/2017 17:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6379,12/07/2017 1:29,16/03/2017 14:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5900,12/07/2017 1:29,29/03/2017 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4977,12/07/2017 1:29,29/03/2017 21:59,1.9,200, Information Exposure,nan
CVE-2017-4905,12/07/2017 1:29,7/06/2017 18:29,2.1,200, Information Exposure,nan
CVE-2017-4904,12/07/2017 1:29,7/06/2017 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4903,12/07/2017 1:29,7/06/2017 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4902,12/07/2017 1:29,7/06/2017 18:29,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4901,12/07/2017 1:29,8/06/2017 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3888,12/07/2017 1:29,7/04/2017 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3886,12/07/2017 1:29,7/04/2017 17:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3880,12/07/2017 1:29,17/03/2017 22:59,6.4,287, Improper Authentication,nan
CVE-2017-3879,12/07/2017 1:29,17/03/2017 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3878,12/07/2017 1:29,17/03/2017 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3877,12/07/2017 1:29,17/03/2017 22:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-3875,12/07/2017 1:29,17/03/2017 22:59,5.0,20, Improper Input Validation,nan
CVE-2017-3874,12/07/2017 1:29,17/03/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3870,12/07/2017 1:29,17/03/2017 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3868,12/07/2017 1:29,17/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3866,12/07/2017 1:29,17/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3859,12/07/2017 1:29,22/03/2017 19:59,7.8,134, Use of Externally-Controlled Format String,nan
CVE-2017-3858,12/07/2017 1:29,22/03/2017 19:59,9.0,20, Improper Input Validation,nan
CVE-2017-3854,12/07/2017 1:29,15/03/2017 20:59,8.3,287, Improper Authentication,nan
CVE-2017-3853,12/07/2017 1:29,22/03/2017 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3852,12/07/2017 1:29,22/03/2017 19:59,5.5,20, Improper Input Validation,nan
CVE-2017-3851,12/07/2017 1:29,22/03/2017 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-3849,12/07/2017 1:29,21/03/2017 16:59,6.1,20, Improper Input Validation,nan
CVE-2017-3846,12/07/2017 1:29,15/03/2017 20:59,5.0,20, Improper Input Validation,nan
CVE-2017-3811,12/07/2017 1:29,17/03/2017 22:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-2688,12/07/2017 1:29,29/03/2017 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2687,12/07/2017 1:29,29/03/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2686,12/07/2017 1:29,29/03/2017 1:59,4.0,200, Information Exposure,nan
CVE-2017-2645,12/07/2017 1:29,26/03/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2644,12/07/2017 1:29,26/03/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2643,12/07/2017 1:29,26/03/2017 18:59,5.0,200, Information Exposure,nan
CVE-2017-2452,12/07/2017 1:29,2/04/2017 1:59,2.1,200, Information Exposure,nan
CVE-2017-2449,12/07/2017 1:29,2/04/2017 1:59,9.3,416, Use After Free,nan
CVE-2017-2438,12/07/2017 1:29,2/04/2017 1:59,9.3,416, Use After Free,nan
CVE-2017-2437,12/07/2017 1:29,2/04/2017 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2436,12/07/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2434,12/07/2017 1:29,2/04/2017 1:59,10.0,20, Improper Input Validation,nan
CVE-2017-2433,12/07/2017 1:29,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2431,12/07/2017 1:29,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2427,12/07/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2426,12/07/2017 1:29,2/04/2017 1:59,4.3,200, Information Exposure,nan
CVE-2017-2425,12/07/2017 1:29,2/04/2017 1:59,6.8,415, Double Free,nan
CVE-2017-2422,12/07/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2421,12/07/2017 1:29,2/04/2017 1:59,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-2420,12/07/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2418,12/07/2017 1:29,2/04/2017 1:59,2.1,200, Information Exposure,nan
CVE-2017-2414,12/07/2017 1:29,2/04/2017 1:59,5.0,20, Improper Input Validation,nan
CVE-2017-2413,12/07/2017 1:29,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2410,12/07/2017 1:29,2/04/2017 1:59,9.3,20, Improper Input Validation,nan
CVE-2017-2409,12/07/2017 1:29,2/04/2017 1:59,5.8,125, Out-of-bounds Read,nan
CVE-2017-2408,12/07/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2405,12/07/2017 1:29,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2403,12/07/2017 1:29,2/04/2017 1:59,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2017-2400,12/07/2017 1:29,2/04/2017 1:59,5.0,200, Information Exposure,nan
CVE-2017-2398,12/07/2017 1:29,2/04/2017 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2397,12/07/2017 1:29,2/04/2017 1:59,2.1,200, Information Exposure,nan
CVE-2017-2393,12/07/2017 1:29,2/04/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2392,12/07/2017 1:29,2/04/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2391,12/07/2017 1:29,2/04/2017 1:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-2388,12/07/2017 1:29,2/04/2017 1:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-2385,12/07/2017 1:29,2/04/2017 1:59,2.1,200, Information Exposure,nan
CVE-2017-2384,12/07/2017 1:29,2/04/2017 1:59,2.1,200, Information Exposure,nan
CVE-2017-2382,12/07/2017 1:29,2/04/2017 1:59,5.0,200, Information Exposure,nan
CVE-2017-2378,12/07/2017 1:29,2/04/2017 1:59,6.8,20, Improper Input Validation,nan
CVE-2017-2377,12/07/2017 1:29,2/04/2017 1:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1120,12/07/2017 1:29,27/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0154,12/07/2017 1:29,17/03/2017 0:59,5.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-0151,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0150,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0149,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0138,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0137,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0136,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0134,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0133,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0132,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0131,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0130,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0129,12/07/2017 1:29,17/03/2017 0:59,5.0,295, Improper Certificate Validation,nan
CVE-2017-0107,12/07/2017 1:29,17/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0105,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0102,12/07/2017 1:29,17/03/2017 0:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0094,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0073,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0071,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0069,12/07/2017 1:29,17/03/2017 0:59,4.3,20, Improper Input Validation,nan
CVE-2017-0068,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0067,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0065,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0057,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0055,12/07/2017 1:29,17/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0053,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0052,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0049,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0043,12/07/2017 1:29,17/03/2017 0:59,2.9,200, Information Exposure,nan
CVE-2017-0042,12/07/2017 1:29,17/03/2017 0:59,2.6,200, Information Exposure,nan
CVE-2017-0040,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0035,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0034,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0033,12/07/2017 1:29,17/03/2017 0:59,4.3,20, Improper Input Validation,nan
CVE-2017-0032,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0031,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0030,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0027,12/07/2017 1:29,17/03/2017 0:59,2.6,200, Information Exposure,nan
CVE-2017-0020,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0019,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0018,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0017,12/07/2017 1:29,17/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0015,12/07/2017 1:29,17/03/2017 0:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0012,12/07/2017 1:29,17/03/2017 0:59,4.3,20, Improper Input Validation,nan
CVE-2017-0011,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0009,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0008,12/07/2017 1:29,17/03/2017 0:59,4.3,200, Information Exposure,nan
CVE-2017-0007,12/07/2017 1:29,17/03/2017 0:59,2.1,20, Improper Input Validation,nan
CVE-2017-0006,12/07/2017 1:29,17/03/2017 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9990,12/07/2017 1:29,31/03/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9643,12/07/2017 1:29,7/03/2017 16:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-9642,12/07/2017 1:29,3/02/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-9219,12/07/2017 1:29,6/04/2017 18:59,7.8,20, Improper Input Validation,nan
CVE-2016-9196,12/07/2017 1:29,7/04/2017 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9195,12/07/2017 1:29,7/04/2017 17:59,5.0,399, Resource Management Errors,nan
CVE-2016-9194,12/07/2017 1:29,6/04/2017 18:59,6.1,399, Resource Management Errors,nan
CVE-2016-8032,12/07/2017 1:29,31/03/2017 21:59,4.4,284, Improper Access Control,nan
CVE-2016-8031,12/07/2017 1:29,28/03/2017 15:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-7585,12/07/2017 1:29,2/04/2017 1:59,2.1,310, Cryptographic Issues,nan
CVE-2016-7467,12/07/2017 1:29,11/04/2017 14:59,3.5,20, Improper Input Validation,nan
CVE-2016-6650,12/07/2017 1:29,21/03/2017 16:59,2.6,200, Information Exposure,nan
CVE-2016-6102,12/07/2017 1:29,27/03/2017 22:59,4.3,200, Information Exposure,nan
CVE-2016-3052,12/07/2017 1:29,22/02/2017 19:59,4.3,200, Information Exposure,nan
CVE-2016-0238,11/07/2017 17:07,5/07/2017 13:29,4.3,200, Information Exposure,nan
CVE-2016-9700,11/07/2017 16:55,5/07/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-0708,11/07/2017 15:24,6/07/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-0709,11/07/2017 15:23,6/07/2017 20:29,4.3,200, Information Exposure,nan
CVE-2001-0748,11/07/2017 15:15,18/10/2001 4:00,5.0,20, Improper Input Validation,nan
CVE-2017-7721,11/07/2017 15:09,30/04/2017 17:59,6.8,20, Improper Input Validation,nan
CVE-2017-10733,11/07/2017 15:09,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5648,11/07/2017 14:52,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5667,11/07/2017 14:43,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5579,11/07/2017 14:35,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5983,11/07/2017 14:29,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5646,11/07/2017 14:28,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5894,11/07/2017 14:06,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5640,11/07/2017 14:04,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2017-0699,11/07/2017 13:55,6/07/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-0698,11/07/2017 13:55,6/07/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-0669,11/07/2017 13:55,6/07/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-0668,11/07/2017 13:55,6/07/2017 20:29,4.3,200, Information Exposure,nan
CVE-2017-4999,11/07/2017 13:54,7/07/2017 0:29,4.0,200, Information Exposure,nan
CVE-2017-5000,11/07/2017 13:53,7/07/2017 0:29,4.0,200, Information Exposure,nan
CVE-2013-4598,11/07/2017 13:53,27/05/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-9892,11/07/2017 13:31,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9891,11/07/2017 13:31,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9886,11/07/2017 13:31,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9885,11/07/2017 13:31,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9884,11/07/2017 13:31,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9890,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9889,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9887,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9883,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9881,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9880,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9879,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9877,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9876,11/07/2017 13:30,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9882,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9878,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9875,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9874,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9873,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9536,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9533,11/07/2017 13:29,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9535,11/07/2017 13:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9534,11/07/2017 13:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9532,11/07/2017 13:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9531,11/07/2017 13:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9528,11/07/2017 13:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9888,11/07/2017 13:25,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10735,11/07/2017 13:17,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10734,11/07/2017 13:17,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10730,11/07/2017 13:17,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10729,11/07/2017 13:17,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10732,11/07/2017 13:16,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10731,11/07/2017 13:16,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9923,11/07/2017 13:06,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9922,11/07/2017 13:06,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9921,11/07/2017 13:06,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9920,11/07/2017 13:06,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9919,11/07/2017 13:04,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9918,11/07/2017 13:04,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9917,11/07/2017 13:03,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9916,11/07/2017 13:03,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9915,11/07/2017 13:02,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7897,11/07/2017 1:33,18/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7875,11/07/2017 1:33,14/04/2017 18:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7742,11/07/2017 1:33,12/04/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7741,11/07/2017 1:33,12/04/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7586,11/07/2017 1:33,7/04/2017 20:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7585,11/07/2017 1:33,7/04/2017 20:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7409,11/07/2017 1:33,21/04/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7219,11/07/2017 1:33,13/04/2017 14:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7217,11/07/2017 1:33,14/04/2017 14:59,4.0,20, Improper Input Validation,nan
CVE-2017-6629,11/07/2017 1:33,3/05/2017 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6626,11/07/2017 1:33,3/05/2017 21:59,5.0,200, Information Exposure,nan
CVE-2017-6611,11/07/2017 1:33,20/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6355,11/07/2017 1:33,10/03/2017 2:59,2.1,190, Integer Overflow or Wraparound,nan
CVE-2017-6210,11/07/2017 1:33,15/03/2017 14:59,2.1,476, NULL Pointer Dereference,nan
CVE-2017-6209,11/07/2017 1:33,15/03/2017 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5994,11/07/2017 1:33,15/03/2017 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5956,11/07/2017 1:33,20/03/2017 16:59,2.1,125, Out-of-bounds Read,nan
CVE-2017-5659,11/07/2017 1:33,17/04/2017 18:59,5.0,20, Improper Input Validation,nan
CVE-2017-5580,11/07/2017 1:33,15/03/2017 15:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5190,11/07/2017 1:33,20/04/2017 15:59,3.5,200, Information Exposure,nan
CVE-2017-4913,11/07/2017 1:33,8/06/2017 13:29,6.9,190, Integer Overflow or Wraparound,nan
CVE-2017-4912,11/07/2017 1:33,8/06/2017 13:29,6.9,125, Out-of-bounds Read,nan
CVE-2017-4911,11/07/2017 1:33,8/06/2017 13:29,6.9,787, Out-of-bounds Write,nan
CVE-2017-4910,11/07/2017 1:33,8/06/2017 13:29,6.9,125, Out-of-bounds Read,nan
CVE-2017-4909,11/07/2017 1:33,8/06/2017 13:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4908,11/07/2017 1:33,8/06/2017 13:29,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-4907,11/07/2017 1:33,8/06/2017 13:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3882,11/07/2017 1:33,16/05/2017 17:29,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3873,11/07/2017 1:33,16/05/2017 17:29,7.9,20, Improper Input Validation,nan
CVE-2017-3863,11/07/2017 1:33,20/04/2017 22:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3862,11/07/2017 1:33,20/04/2017 22:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3861,11/07/2017 1:33,20/04/2017 22:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3860,11/07/2017 1:33,20/04/2017 22:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3825,11/07/2017 1:33,16/05/2017 17:29,5.0,20, Improper Input Validation,nan
CVE-2017-3808,11/07/2017 1:33,20/04/2017 22:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3527,11/07/2017 1:33,24/04/2017 19:59,5.0,200, Information Exposure,nan
CVE-2017-3498,11/07/2017 1:33,24/04/2017 19:59,2.1,200, Information Exposure,nan
CVE-2017-3127,11/07/2017 1:33,1/06/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3065,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3057,11/07/2017 1:33,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3056,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3055,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3054,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3053,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3052,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3051,11/07/2017 1:33,12/04/2017 14:59,9.3,125, Out-of-bounds Read,nan
CVE-2017-3050,11/07/2017 1:33,12/04/2017 14:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-3049,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3048,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3047,11/07/2017 1:33,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3046,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3045,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3044,11/07/2017 1:33,12/04/2017 14:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-3043,11/07/2017 1:33,12/04/2017 14:59,4.3,200, Information Exposure,nan
CVE-2017-3042,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3041,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3040,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3039,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3037,11/07/2017 1:33,12/04/2017 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3036,11/07/2017 1:33,12/04/2017 14:59,9.3,787, Out-of-bounds Write,nan
CVE-2017-3035,11/07/2017 1:33,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3034,11/07/2017 1:33,12/04/2017 14:59,9.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-3033,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3032,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3031,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3030,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3029,11/07/2017 1:33,12/04/2017 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3028,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3027,11/07/2017 1:33,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3026,11/07/2017 1:33,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3025,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3024,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3023,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3022,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3021,11/07/2017 1:33,12/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-3020,11/07/2017 1:33,12/04/2017 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3019,11/07/2017 1:33,12/04/2017 14:59,9.3,125, Out-of-bounds Read,nan
CVE-2017-3018,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3017,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3015,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3014,11/07/2017 1:33,12/04/2017 14:59,9.3,416, Use After Free,nan
CVE-2017-3011,11/07/2017 1:33,12/04/2017 14:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2017-3008,11/07/2017 1:33,27/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2340,11/07/2017 1:33,24/04/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2017-2313,11/07/2017 1:33,24/04/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2017-1194,11/07/2017 1:33,28/04/2017 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0586,11/07/2017 1:33,7/04/2017 22:59,2.6,200, Information Exposure,nan
CVE-2017-0585,11/07/2017 1:33,7/04/2017 22:59,2.6,200, Information Exposure,nan
CVE-2017-0584,11/07/2017 1:33,7/04/2017 22:59,2.6,200, Information Exposure,nan
CVE-2017-0560,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0559,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0558,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0557,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0556,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0555,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0547,11/07/2017 1:33,7/04/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-0543,11/07/2017 1:33,7/04/2017 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0542,11/07/2017 1:33,7/04/2017 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0541,11/07/2017 1:33,7/04/2017 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0539,11/07/2017 1:33,7/04/2017 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0538,11/07/2017 1:33,7/04/2017 22:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0328,11/07/2017 1:33,5/04/2017 14:59,2.6,200, Information Exposure,nan
CVE-2017-0208,11/07/2017 1:33,12/04/2017 14:59,4.3,200, Information Exposure,nan
CVE-2017-0205,11/07/2017 1:33,12/04/2017 14:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0201,11/07/2017 1:33,12/04/2017 14:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0200,11/07/2017 1:33,12/04/2017 14:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0197,11/07/2017 1:33,12/04/2017 14:59,9.3,20, Improper Input Validation,nan
CVE-2017-0194,11/07/2017 1:33,12/04/2017 14:59,4.3,200, Information Exposure,nan
CVE-2017-0192,11/07/2017 1:33,12/04/2017 14:59,4.3,200, Information Exposure,nan
CVE-2017-0188,11/07/2017 1:33,12/04/2017 14:59,2.1,200, Information Exposure,nan
CVE-2017-0185,11/07/2017 1:33,12/04/2017 14:59,6.3,20, Improper Input Validation,nan
CVE-2017-0181,11/07/2017 1:33,12/04/2017 14:59,7.4,20, Improper Input Validation,nan
CVE-2017-0180,11/07/2017 1:33,12/04/2017 14:59,7.4,20, Improper Input Validation,nan
CVE-2017-0169,11/07/2017 1:33,12/04/2017 14:59,5.2,20, Improper Input Validation,nan
CVE-2017-0168,11/07/2017 1:33,12/04/2017 14:59,6.3,200, Information Exposure,nan
CVE-2017-0164,11/07/2017 1:33,12/04/2017 14:59,3.5,20, Improper Input Validation,nan
CVE-2017-0163,11/07/2017 1:33,12/04/2017 14:59,7.4,20, Improper Input Validation,nan
CVE-2017-0162,11/07/2017 1:33,12/04/2017 14:59,7.4,20, Improper Input Validation,nan
CVE-2017-0106,11/07/2017 1:33,12/04/2017 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0093,11/07/2017 1:33,12/04/2017 14:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8962,11/07/2017 1:33,26/04/2017 17:59,4.3,255, Credentials Management,nan
CVE-2016-8465,11/07/2017 1:33,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-5551,11/07/2017 1:33,24/04/2017 19:59,1.9,284, Improper Access Control,nan
CVE-2016-5396,11/07/2017 1:33,17/04/2017 18:59,7.8,399, Resource Management Errors,nan
CVE-2016-5349,11/07/2017 1:33,6/04/2017 19:59,4.3,200, Information Exposure,nan
CVE-2016-4912,11/07/2017 1:33,27/03/2017 17:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-10242,11/07/2017 1:33,16/05/2017 14:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-10239,11/07/2017 1:33,16/05/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2016-10238,11/07/2017 1:33,16/05/2017 14:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10237,11/07/2017 1:33,16/05/2017 14:29,9.3,284, Improper Access Control,nan
CVE-2016-10214,11/07/2017 1:33,20/03/2017 16:59,4.9,399, Resource Management Errors,nan
CVE-2016-10163,11/07/2017 1:33,15/03/2017 15:59,4.9,399, Resource Management Errors,nan
CVE-2015-9003,11/07/2017 1:33,16/05/2017 14:29,9.3,310, Cryptographic Issues,nan
CVE-2015-9002,11/07/2017 1:33,16/05/2017 14:29,9.3,189, Numeric Errors,nan
CVE-2015-9001,11/07/2017 1:33,16/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2015-9000,11/07/2017 1:33,16/05/2017 14:29,9.3,476, NULL Pointer Dereference,nan
CVE-2015-8999,11/07/2017 1:33,16/05/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8998,11/07/2017 1:33,16/05/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2015-8997,11/07/2017 1:33,16/05/2017 14:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8996,11/07/2017 1:33,16/05/2017 14:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8995,11/07/2017 1:33,16/05/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9937,11/07/2017 1:33,16/05/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9936,11/07/2017 1:33,16/05/2017 14:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9935,11/07/2017 1:33,16/05/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9934,11/07/2017 1:33,16/05/2017 14:29,9.3,347, Improper Verification of Cryptographic Signature,nan
CVE-2014-9933,11/07/2017 1:33,16/05/2017 14:29,9.3,20, Improper Input Validation,nan
CVE-2014-9932,11/07/2017 1:33,16/05/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9931,11/07/2017 1:33,16/05/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9922,11/07/2017 1:33,4/04/2017 5:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4656,11/07/2017 1:33,3/07/2014 4:22,4.9,189, Numeric Errors,nan
CVE-2014-2706,11/07/2017 1:33,14/04/2014 23:55,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2005-3845,11/07/2017 1:33,26/11/2005 22:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3817,11/07/2017 1:33,26/11/2005 2:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3724,11/07/2017 1:33,21/11/2005 11:03,6.4,200, Information Exposure,nan
CVE-2005-3712,11/07/2017 1:33,31/12/2005 5:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3709,11/07/2017 1:33,31/12/2005 5:00,7.5,189, Numeric Errors,nan
CVE-2005-3678,11/07/2017 1:33,18/11/2005 23:03,5.0,20, Improper Input Validation,nan
CVE-2005-3659,11/07/2017 1:33,31/12/2005 5:00,5.0,399, Resource Management Errors,nan
CVE-2005-3658,11/07/2017 1:33,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3650,11/07/2017 1:33,17/11/2005 11:02,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3646,11/07/2017 1:33,17/11/2005 11:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3645,11/07/2017 1:33,17/11/2005 11:02,5.0,200, Information Exposure,nan
CVE-2005-3640,11/07/2017 1:33,16/11/2005 21:22,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3591,11/07/2017 1:33,16/11/2005 7:42,7.5,20, Improper Input Validation,nan
CVE-2005-3567,11/07/2017 1:33,16/11/2005 7:42,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2005-3554,11/07/2017 1:33,16/11/2005 7:42,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3553,11/07/2017 1:33,16/11/2005 7:42,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3552,11/07/2017 1:33,16/11/2005 7:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3354,11/07/2017 1:33,20/11/2005 21:03,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3348,11/07/2017 1:33,18/11/2005 2:02,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2005-3347,11/07/2017 1:33,18/11/2005 2:02,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-3330,11/07/2017 1:33,27/10/2005 10:02,7.5,20, Improper Input Validation,nan
CVE-2005-3314,11/07/2017 1:33,18/11/2005 22:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3269,11/07/2017 1:33,20/10/2005 23:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3267,11/07/2017 1:33,27/10/2005 10:02,10.0,189, Numeric Errors,nan
CVE-2005-3265,11/07/2017 1:33,27/10/2005 10:02,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3205,11/07/2017 1:33,14/10/2005 10:02,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3126,11/07/2017 1:33,31/12/2005 5:00,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2005-3051,11/07/2017 1:33,24/09/2005 0:03,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2932,11/07/2017 1:33,31/12/2005 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2005-2919,11/07/2017 1:33,20/09/2005 23:03,5.0,399, Resource Management Errors,nan
CVE-2005-2806,11/07/2017 1:33,6/09/2005 22:03,5.0,20, Improper Input Validation,nan
CVE-2005-2527,11/07/2017 1:32,31/12/2005 5:00,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2005-2344,11/07/2017 1:32,31/12/2005 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-1996,11/07/2017 1:32,15/06/2005 4:00,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-1965,11/07/2017 1:32,16/06/2005 4:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-1925,11/07/2017 1:32,18/11/2005 6:03,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-1500,11/07/2017 1:32,11/05/2005 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-1126,11/07/2017 1:32,15/04/2005 4:00,2.1,399, Resource Management Errors,nan
CVE-2005-1017,11/07/2017 1:32,2/05/2005 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-0904,11/07/2017 1:32,2/05/2005 4:00,2.1,20, Improper Input Validation,nan
CVE-2005-0844,11/07/2017 1:32,2/05/2005 4:00,4.6,310, Cryptographic Issues,nan
CVE-2005-0748,11/07/2017 1:32,10/03/2005 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-0543,11/07/2017 1:32,24/02/2005 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-0492,11/07/2017 1:32,2/05/2005 4:00,2.6,20, Improper Input Validation,nan
CVE-2005-0485,11/07/2017 1:32,30/03/2005 5:00,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-0477,11/07/2017 1:32,30/03/2005 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2596,11/07/2017 1:32,31/12/2004 5:00,5.0,20, Improper Input Validation,nan
CVE-2004-2592,11/07/2017 1:32,31/12/2004 5:00,5.0,20, Improper Input Validation,nan
CVE-2004-2533,11/07/2017 1:31,31/12/2004 5:00,5.0,20, Improper Input Validation,nan
CVE-2004-2532,11/07/2017 1:31,31/12/2004 5:00,10.0,255, Credentials Management,nan
CVE-2004-2473,11/07/2017 1:31,31/12/2004 5:00,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2004-2386,11/07/2017 1:31,31/12/2004 5:00,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2004-2320,11/07/2017 1:31,31/12/2004 5:00,5.8,200, Information Exposure,nan
CVE-2004-2111,11/07/2017 1:31,31/12/2004 5:00,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2030,11/07/2017 1:31,22/05/2004 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-1992,11/07/2017 1:31,20/04/2004 4:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1928,11/07/2017 1:31,12/04/2004 4:00,7.5,20, Improper Input Validation,nan
CVE-2004-1927,11/07/2017 1:31,11/04/2004 4:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-1925,11/07/2017 1:31,12/04/2004 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-1924,11/07/2017 1:31,11/04/2004 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-1923,11/07/2017 1:31,11/04/2004 4:00,5.0,200, Information Exposure,nan
CVE-2004-1875,11/07/2017 1:31,30/03/2004 5:00,9.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-1863,11/07/2017 1:31,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-1760,11/07/2017 1:31,21/01/2004 5:00,10.0,287, Improper Authentication,nan
CVE-2004-1759,11/07/2017 1:31,21/01/2004 5:00,5.0,399, Resource Management Errors,nan
CVE-2004-1675,11/07/2017 1:31,11/09/2004 4:00,5.0,20, Improper Input Validation,nan
CVE-2004-1444,11/07/2017 1:31,31/12/2004 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-1424,11/07/2017 1:31,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-1419,11/07/2017 1:31,31/12/2004 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-1417,11/07/2017 1:31,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-1386,11/07/2017 1:30,31/12/2004 5:00,7.5,20, Improper Input Validation,nan
CVE-2004-1371,11/07/2017 1:30,4/08/2004 4:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1366,11/07/2017 1:30,4/08/2004 4:00,4.6,255, Credentials Management,nan
CVE-2004-1363,11/07/2017 1:30,4/08/2004 4:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1339,11/07/2017 1:30,23/12/2004 5:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-1338,11/07/2017 1:30,23/12/2004 5:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2004-1258,11/07/2017 1:30,10/01/2005 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1211,11/07/2017 1:30,10/01/2005 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-1193,11/07/2017 1:30,10/01/2005 5:00,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2004-1114,11/07/2017 1:30,10/01/2005 5:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0940,11/07/2017 1:30,9/02/2005 5:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0867,11/07/2017 1:30,23/12/2004 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2004-0793,11/07/2017 1:30,20/10/2004 4:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2004-0777,11/07/2017 1:30,20/10/2004 4:00,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2004-0678,11/07/2017 1:30,6/08/2004 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-0638,11/07/2017 1:30,31/12/2004 5:00,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0605,11/07/2017 1:30,6/12/2004 5:00,5.0,16, Configuration,nan
CVE-2004-0478,11/07/2017 1:30,7/07/2004 4:00,2.6,399, Resource Management Errors,nan
CVE-2004-0330,11/07/2017 1:30,23/11/2004 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-0285,11/07/2017 1:30,23/11/2004 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-0220,11/07/2017 1:29,4/05/2004 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1227,11/07/2017 1:29,31/12/2003 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1209,11/07/2017 1:29,31/12/2003 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-1151,11/07/2017 1:29,28/10/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-0899,11/07/2017 1:29,3/11/2003 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0792,11/07/2017 1:29,17/11/2003 5:00,5.0,399, Resource Management Errors,nan
CVE-2003-0624,11/07/2017 1:29,1/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-0456,11/07/2017 1:29,18/08/2003 4:00,5.0,200, Information Exposure,nan
CVE-2003-0368,11/07/2017 1:29,3/02/2004 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-0286,11/07/2017 1:29,16/06/2003 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-0222,11/07/2017 1:29,12/05/2003 4:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-1663,11/07/2017 1:29,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2002-1660,11/07/2017 1:29,31/12/2002 5:00,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2002-1651,11/07/2017 1:29,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-0563,11/07/2017 1:29,3/07/2002 4:00,5.0,287, Improper Authentication,nan
CVE-2001-1473,11/07/2017 1:29,18/01/2001 5:00,7.5,310, Cryptographic Issues,nan
CVE-2001-1463,11/07/2017 1:29,19/11/2001 5:00,7.5,310, Cryptographic Issues,nan
CVE-2001-1456,11/07/2017 1:29,4/09/2001 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-1432,11/07/2017 1:29,29/12/2001 5:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2000-1205,11/07/2017 1:29,1/02/2000 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-1999-0656,11/07/2017 1:29,1/01/1999 5:00,5.0,16, Configuration,nan
CVE-2017-10760,10/07/2017 18:07,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10774,10/07/2017 17:54,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10773,10/07/2017 17:53,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10772,10/07/2017 17:53,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10771,10/07/2017 17:52,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10770,10/07/2017 17:51,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10769,10/07/2017 17:51,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10768,10/07/2017 17:44,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8381,10/07/2017 17:32,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10751,10/07/2017 17:29,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10767,10/07/2017 17:28,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10766,10/07/2017 17:28,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10765,10/07/2017 17:28,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10764,10/07/2017 17:24,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10763,10/07/2017 17:10,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10762,10/07/2017 17:08,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10747,10/07/2017 17:04,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9313,10/07/2017 17:03,4/07/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9894,10/07/2017 16:45,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9893,10/07/2017 16:45,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10761,10/07/2017 16:32,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10759,10/07/2017 16:32,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10758,10/07/2017 16:32,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10757,10/07/2017 16:32,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10756,10/07/2017 16:31,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10755,10/07/2017 16:25,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10754,10/07/2017 16:25,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10783,10/07/2017 16:22,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10753,10/07/2017 16:22,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10752,10/07/2017 16:22,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10782,10/07/2017 16:21,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10781,10/07/2017 16:19,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10780,10/07/2017 16:19,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10779,10/07/2017 16:18,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10778,10/07/2017 16:15,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10777,10/07/2017 16:14,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9909,10/07/2017 15:59,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9908,10/07/2017 15:58,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9907,10/07/2017 15:58,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9906,10/07/2017 15:57,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9905,10/07/2017 15:57,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9904,10/07/2017 15:57,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9903,10/07/2017 15:56,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9902,10/07/2017 15:56,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9901,10/07/2017 15:56,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9900,10/07/2017 15:55,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9899,10/07/2017 15:54,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1256,10/07/2017 15:53,5/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1217,10/07/2017 15:53,5/07/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8282,10/07/2017 15:51,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9914,10/07/2017 15:50,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9913,10/07/2017 15:49,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9912,10/07/2017 15:49,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9911,10/07/2017 15:47,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9910,10/07/2017 15:46,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9898,10/07/2017 15:42,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9897,10/07/2017 15:42,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9896,10/07/2017 15:39,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9895,10/07/2017 15:39,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9529,10/07/2017 15:36,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8781,10/07/2017 15:35,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10741,10/07/2017 15:29,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10740,10/07/2017 15:28,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10737,10/07/2017 15:28,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10746,10/07/2017 15:27,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10736,10/07/2017 15:27,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10750,10/07/2017 15:26,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10749,10/07/2017 15:26,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10745,10/07/2017 15:26,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10743,10/07/2017 15:26,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10744,10/07/2017 14:35,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10742,10/07/2017 14:34,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10738,10/07/2017 14:34,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10739,10/07/2017 14:32,5/07/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9926,10/07/2017 14:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9925,10/07/2017 14:28,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9924,10/07/2017 14:27,5/07/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9502,8/07/2017 1:29,14/06/2017 13:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9250,8/07/2017 1:29,28/05/2017 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-8360,8/07/2017 1:29,12/05/2017 7:29,2.1,200, Information Exposure,nan
CVE-2017-8242,8/07/2017 1:29,13/06/2017 20:29,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-8241,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8237,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8236,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8233,8/07/2017 1:29,13/06/2017 20:29,9.3,787, Out-of-bounds Write,nan
CVE-2017-7907,8/07/2017 1:29,19/05/2017 3:29,3.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7903,8/07/2017 1:29,30/06/2017 3:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-7901,8/07/2017 1:29,30/06/2017 3:29,9.0,330, Use of Insufficiently Random Values,nan
CVE-2017-7662,8/07/2017 1:29,16/05/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7661,8/07/2017 1:29,16/05/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7620,8/07/2017 1:29,21/05/2017 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7373,8/07/2017 1:29,13/06/2017 20:29,9.3,415, Double Free,nan
CVE-2017-7372,8/07/2017 1:29,13/06/2017 20:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-7371,8/07/2017 1:29,13/06/2017 20:29,9.3,416, Use After Free,nan
CVE-2017-7370,8/07/2017 1:29,13/06/2017 20:29,7.6,416, Use After Free,nan
CVE-2017-7369,8/07/2017 1:29,13/06/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2017-7368,8/07/2017 1:29,13/06/2017 20:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-7367,8/07/2017 1:29,13/06/2017 20:29,9.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-7366,8/07/2017 1:29,13/06/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-6991,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6988,8/07/2017 1:29,22/05/2017 5:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-6986,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6985,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6977,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6712,8/07/2017 1:29,6/07/2017 0:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6707,8/07/2017 1:29,6/07/2017 0:29,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-6670,8/07/2017 1:29,13/06/2017 6:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-6668,8/07/2017 1:29,13/06/2017 6:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6661,8/07/2017 1:29,13/06/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6659,8/07/2017 1:29,13/06/2017 6:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6656,8/07/2017 1:29,13/06/2017 6:29,4.3,20, Improper Input Validation,nan
CVE-2017-6655,8/07/2017 1:29,13/06/2017 6:29,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6654,8/07/2017 1:29,22/05/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6652,8/07/2017 1:29,18/05/2017 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6651,8/07/2017 1:29,16/05/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-6636,8/07/2017 1:29,22/05/2017 1:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6634,8/07/2017 1:29,22/05/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6633,8/07/2017 1:29,22/05/2017 1:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6621,8/07/2017 1:29,18/05/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-6131,8/07/2017 1:29,23/05/2017 15:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-5004,8/07/2017 1:29,9/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5003,8/07/2017 1:29,9/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4986,8/07/2017 1:29,14/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-4981,8/07/2017 1:29,14/06/2017 21:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-4978,8/07/2017 1:29,19/05/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4918,8/07/2017 1:29,8/06/2017 19:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-4017,8/07/2017 1:29,17/05/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-4016,8/07/2017 1:29,17/05/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-4015,8/07/2017 1:29,17/05/2017 21:29,3.5,20, Improper Input Validation,nan
CVE-2017-4014,8/07/2017 1:29,17/05/2017 21:29,6.0,384, Session Fixation,nan
CVE-2017-4013,8/07/2017 1:29,17/05/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-4011,8/07/2017 1:29,17/05/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3894,8/07/2017 1:29,10/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3128,8/07/2017 1:29,23/05/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3126,8/07/2017 1:29,27/05/2017 0:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-3098,8/07/2017 1:29,20/06/2017 17:29,10.0,20, Improper Input Validation,nan
CVE-2017-3096,8/07/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3095,8/07/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3094,8/07/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3093,8/07/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3089,8/07/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3088,8/07/2017 1:29,20/06/2017 17:29,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3087,8/07/2017 1:29,20/06/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-3067,8/07/2017 1:29,9/05/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-2548,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2546,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2545,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2544,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2543,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2542,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2541,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2539,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2537,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2526,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2512,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2511,8/07/2017 1:29,22/05/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-2506,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2503,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2500,8/07/2017 1:29,22/05/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-2498,8/07/2017 1:29,22/05/2017 5:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-2497,8/07/2017 1:29,22/05/2017 5:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-2496,8/07/2017 1:29,22/05/2017 5:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2495,8/07/2017 1:29,22/05/2017 5:29,4.3,20, Improper Input Validation,nan
CVE-2017-2494,8/07/2017 1:29,22/05/2017 5:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1325,8/07/2017 1:29,26/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1320,8/07/2017 1:29,22/05/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1319,8/07/2017 1:29,8/06/2017 21:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-1214,8/07/2017 1:29,12/06/2017 19:29,3.5,200, Information Exposure,nan
CVE-2017-1104,8/07/2017 1:29,13/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1102,8/07/2017 1:29,13/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1101,8/07/2017 1:29,13/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1100,8/07/2017 1:29,13/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0651,8/07/2017 1:29,14/06/2017 13:29,2.6,200, Information Exposure,nan
CVE-2017-0650,8/07/2017 1:29,14/06/2017 13:29,2.6,200, Information Exposure,nan
CVE-2017-0647,8/07/2017 1:29,14/06/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-0646,8/07/2017 1:29,14/06/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-0645,8/07/2017 1:29,14/06/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-0639,8/07/2017 1:29,14/06/2017 13:29,4.3,200, Information Exposure,nan
CVE-2017-0637,8/07/2017 1:29,14/06/2017 13:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0302,8/07/2017 1:29,9/05/2017 15:29,3.5,118, Incorrect Access of Indexable Resource (‘Range Error’),nan
CVE-2017-0297,8/07/2017 1:29,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-0265,8/07/2017 1:29,12/05/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0254,8/07/2017 1:29,12/05/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0240,8/07/2017 1:29,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0236,8/07/2017 1:29,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0234,8/07/2017 1:29,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0231,8/07/2017 1:29,12/05/2017 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-0228,8/07/2017 1:29,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0227,8/07/2017 1:29,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0223,8/07/2017 1:29,15/05/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0222,8/07/2017 1:29,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0190,8/07/2017 1:29,12/05/2017 14:29,2.1,200, Information Exposure,nan
CVE-2016-9257,8/07/2017 1:29,9/05/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9253,8/07/2017 1:29,9/05/2017 15:29,5.0,20, Improper Input Validation,nan
CVE-2016-9251,8/07/2017 1:29,9/05/2017 15:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8209,8/07/2017 1:29,8/05/2017 18:29,5.0,754, Improper Check for Unusual or Exceptional Conditions,nan
CVE-2016-3051,8/07/2017 1:29,7/06/2017 17:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3019,8/07/2017 1:29,7/06/2017 17:29,4.0,326, Inadequate Encryption Strength,nan
CVE-2016-2908,8/07/2017 1:29,1/02/2017 20:59,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10342,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10341,8/07/2017 1:29,13/06/2017 20:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10340,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10339,8/07/2017 1:29,13/06/2017 20:29,5.8,200, Information Exposure,nan
CVE-2016-10338,8/07/2017 1:29,13/06/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2016-10337,8/07/2017 1:29,13/06/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2016-10336,8/07/2017 1:29,13/06/2017 20:29,4.3,254, 7PK – Security Features,nan
CVE-2016-10335,8/07/2017 1:29,13/06/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2016-10334,8/07/2017 1:29,13/06/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2016-10333,8/07/2017 1:29,13/06/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2016-10332,8/07/2017 1:29,13/06/2017 20:29,4.3,254, 7PK – Security Features,nan
CVE-2015-9033,8/07/2017 1:29,13/06/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2015-9032,8/07/2017 1:29,13/06/2017 20:29,4.3,200, Information Exposure,nan
CVE-2015-9031,8/07/2017 1:29,13/06/2017 20:29,4.3,200, Information Exposure,nan
CVE-2015-9030,8/07/2017 1:29,13/06/2017 20:29,9.3,306, Missing Authentication for Critical Function,nan
CVE-2015-9029,8/07/2017 1:29,13/06/2017 20:29,9.3,284, Improper Access Control,nan
CVE-2015-9028,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9027,8/07/2017 1:29,13/06/2017 20:29,9.3,476, NULL Pointer Dereference,nan
CVE-2015-9026,8/07/2017 1:29,13/06/2017 20:29,9.3,476, NULL Pointer Dereference,nan
CVE-2015-9025,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9024,8/07/2017 1:29,13/06/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2015-9023,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9022,8/07/2017 1:29,13/06/2017 20:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-9021,8/07/2017 1:29,13/06/2017 20:29,4.3,284, Improper Access Control,nan
CVE-2015-9020,8/07/2017 1:29,13/06/2017 20:29,9.3,476, NULL Pointer Dereference,nan
CVE-2015-8871,8/07/2017 1:29,21/09/2016 14:25,7.5,416, Use After Free,nan
CVE-2015-6399,8/07/2017 1:29,15/12/2015 5:59,6.8,399, Resource Management Errors,nan
CVE-2014-9967,8/07/2017 1:29,13/06/2017 20:29,9.3,476, NULL Pointer Dereference,nan
CVE-2014-9966,8/07/2017 1:29,13/06/2017 20:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9965,8/07/2017 1:29,13/06/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2014-9964,8/07/2017 1:29,13/06/2017 20:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9963,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9962,8/07/2017 1:29,13/06/2017 20:29,9.3,20, Improper Input Validation,nan
CVE-2014-9961,8/07/2017 1:29,13/06/2017 20:29,9.3,284, Improper Access Control,nan
CVE-2014-9960,8/07/2017 1:29,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10725,7/07/2017 19:28,5/07/2017 20:29,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10706,7/07/2017 18:57,2/07/2017 13:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7317,7/07/2017 18:05,4/07/2017 2:29,10.0,200, Information Exposure,nan
CVE-2017-7316,7/07/2017 18:05,4/07/2017 2:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6719,7/07/2017 17:40,4/07/2017 0:29,7.2,20, Improper Input Validation,nan
CVE-2017-6718,7/07/2017 17:39,4/07/2017 0:29,7.2,20, Improper Input Validation,nan
CVE-2017-6717,7/07/2017 17:38,4/07/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6716,7/07/2017 17:38,4/07/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6715,7/07/2017 17:38,4/07/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6706,7/07/2017 17:33,4/07/2017 0:29,3.6,200, Information Exposure,nan
CVE-2016-10042,7/07/2017 17:31,29/06/2017 0:29,5.0,284, Improper Access Control,nan
CVE-2017-6705,7/07/2017 17:30,4/07/2017 0:29,2.1,200, Information Exposure,nan
CVE-2017-6704,7/07/2017 17:29,4/07/2017 0:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6703,7/07/2017 17:28,4/07/2017 0:29,4.0,287, Improper Authentication,nan
CVE-2017-6702,7/07/2017 17:27,4/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6701,7/07/2017 17:27,4/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6700,7/07/2017 17:03,4/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6605,7/07/2017 17:03,4/07/2017 0:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6698,7/07/2017 16:56,4/07/2017 0:29,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8894,7/07/2017 16:47,2/07/2017 17:29,6.8,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-8893,7/07/2017 16:46,2/07/2017 17:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6201,7/07/2017 16:42,3/07/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5943,7/07/2017 16:40,3/07/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6725,7/07/2017 15:01,4/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6724,7/07/2017 15:01,4/07/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6722,7/07/2017 14:58,4/07/2017 0:29,5.5,287, Improper Authentication,nan
CVE-2016-6127,7/07/2017 14:56,3/07/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6721,7/07/2017 14:53,4/07/2017 0:29,5.0,20, Improper Input Validation,nan
CVE-2017-9848,7/07/2017 1:29,24/06/2017 17:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9445,7/07/2017 1:29,28/06/2017 6:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9231,7/07/2017 1:29,16/06/2017 22:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-7522,7/07/2017 1:29,27/06/2017 13:29,4.0,476, NULL Pointer Dereference,nan
CVE-2017-6669,7/07/2017 1:29,26/06/2017 7:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6325,7/07/2017 1:29,26/06/2017 21:29,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-4990,7/07/2017 1:29,21/06/2017 20:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-4989,7/07/2017 1:29,21/06/2017 20:29,7.5,287, Improper Authentication,nan
CVE-2017-1310,7/07/2017 1:29,29/06/2017 13:29,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1105,7/07/2017 1:29,27/06/2017 16:29,3.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000216,7/07/2017 1:29,10/10/2016 20:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-1000214,7/07/2017 1:29,25/10/2016 14:29,5.0,287, Improper Authentication,nan
CVE-2016-1000213,7/07/2017 1:29,25/10/2016 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5010,6/07/2017 18:58,27/06/2017 20:29,4.8,254, 7PK – Security Features,nan
CVE-2017-2298,6/07/2017 18:54,30/06/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-1304,6/07/2017 18:40,21/06/2017 18:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4383,6/07/2017 18:27,27/06/2017 20:29,8.5,284, Improper Access Control,nan
CVE-2017-9466,6/07/2017 18:19,26/06/2017 7:29,7.5,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-7686,6/07/2017 18:12,28/06/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-10674,6/07/2017 18:07,30/06/2017 13:29,4.9,20, Improper Input Validation,nan
CVE-2017-10670,6/07/2017 17:59,30/06/2017 12:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-10669,6/07/2017 17:58,30/06/2017 12:29,6.4,347, Improper Verification of Cryptographic Signature,nan
CVE-2017-5241,6/07/2017 15:14,28/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10679,6/07/2017 1:29,29/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-10678,6/07/2017 1:29,29/06/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9129,5/07/2017 18:43,21/06/2017 7:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-9097,5/07/2017 18:41,16/06/2017 3:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-2778,5/07/2017 18:40,27/06/2017 20:29,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-4997,5/07/2017 18:29,29/06/2017 17:29,10.0,20, Improper Input Validation,nan
CVE-2017-9246,5/07/2017 18:21,13/06/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5411,5/07/2017 18:16,13/06/2017 16:29,10.0,255, Credentials Management,nan
CVE-2017-6899,5/07/2017 18:12,16/06/2017 17:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-1000377,5/07/2017 18:09,19/06/2017 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9670,5/07/2017 17:59,15/06/2017 13:29,6.8,824, Access of Uninitialized Pointer,nan
CVE-2017-9830,5/07/2017 17:57,27/06/2017 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-9763,5/07/2017 17:54,19/06/2017 16:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1322,5/07/2017 17:52,27/06/2017 16:29,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-9829,5/07/2017 17:49,23/06/2017 22:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1778,5/07/2017 17:43,27/06/2017 20:29,7.5,287, Improper Authentication,nan
CVE-2017-9990,5/07/2017 17:30,28/06/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6083,5/07/2017 17:27,27/06/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-9145,5/07/2017 17:09,26/06/2017 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9948,5/07/2017 17:01,26/06/2017 14:29,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3948,5/07/2017 16:53,23/06/2017 13:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9097,5/07/2017 16:43,12/06/2017 20:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2016-7062,5/07/2017 16:39,27/06/2017 20:29,2.1,255, Credentials Management,nan
CVE-2016-3997,5/07/2017 16:35,3/07/2017 16:29,6.8,254, 7PK – Security Features,nan
CVE-2016-3998,5/07/2017 16:31,3/07/2017 16:29,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-5045,5/07/2017 16:30,3/07/2017 16:29,6.8,200, Information Exposure,nan
CVE-2016-1000218,5/07/2017 16:26,16/06/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9731,5/07/2017 16:22,16/06/2017 15:29,5.0,200, Information Exposure,nan
CVE-2016-5414,5/07/2017 15:32,27/06/2017 20:29,5.0,284, Improper Access Control,nan
CVE-2015-3840,5/07/2017 15:29,27/06/2017 20:29,2.1,284, Improper Access Control,nan
CVE-2017-2805,5/07/2017 15:21,21/06/2017 13:29,7.5,787, Out-of-bounds Write,nan
CVE-2016-8731,5/07/2017 15:19,21/06/2017 19:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2015-1591,5/07/2017 15:14,27/06/2017 20:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-2850,5/07/2017 15:05,29/06/2017 17:29,6.5,444, Inconsistent Interpretation of HTTP Requests (‘HTTP Request Smuggling’),nan
CVE-2017-2851,5/07/2017 14:56,29/06/2017 17:29,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9996,5/07/2017 14:54,28/06/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9991,5/07/2017 14:53,28/06/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-10798,5/07/2017 13:40,3/07/2017 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10681,5/07/2017 1:29,29/06/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-10680,4/07/2017 1:29,29/06/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7686,4/07/2017 1:29,6/10/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2017-9995,3/07/2017 18:59,28/06/2017 6:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8697,3/07/2017 18:58,27/06/2017 20:29,2.1,284, Improper Access Control,nan
CVE-2017-2813,3/07/2017 18:41,21/06/2017 19:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2015-7898,3/07/2017 17:45,27/06/2017 20:29,2.1,284, Improper Access Control,nan
CVE-2015-7895,3/07/2017 17:45,27/06/2017 20:29,2.1,284, Improper Access Control,nan
CVE-2014-8149,3/07/2017 17:25,27/06/2017 20:29,6.5,20, Improper Input Validation,nan
CVE-2017-9998,3/07/2017 17:14,28/06/2017 11:29,4.3,20, Improper Input Validation,nan
CVE-2016-6342,3/07/2017 16:52,27/06/2017 20:29,5.0,284, Improper Access Control,nan
CVE-2015-3215,3/07/2017 15:33,26/06/2017 15:29,5.0,20, Improper Input Validation,nan
CVE-2015-2245,3/07/2017 14:50,27/06/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2017-9505,3/07/2017 14:42,15/06/2017 16:29,4.0,200, Information Exposure,nan
CVE-2017-10667,3/07/2017 14:37,29/06/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8575,3/07/2017 14:29,29/06/2017 13:29,2.1,200, Information Exposure,nan
CVE-2017-9982,3/07/2017 14:28,27/06/2017 16:29,5.0,20, Improper Input Validation,nan
CVE-2017-8554,3/07/2017 14:28,29/06/2017 13:29,1.9,200, Information Exposure,nan
CVE-2017-9356,3/07/2017 14:22,23/06/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1106,3/07/2017 14:11,28/06/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-10671,3/07/2017 13:01,29/06/2017 8:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2773,3/07/2017 12:49,13/06/2017 6:29,7.5,20, Improper Input Validation,nan
CVE-2016-8219,3/07/2017 12:42,13/06/2017 6:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-9986,1/07/2017 1:30,28/06/2017 6:29,7.2,125, Out-of-bounds Read,nan
CVE-2017-7864,1/07/2017 1:30,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7858,1/07/2017 1:30,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7857,1/07/2017 1:30,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-6508,1/07/2017 1:30,7/03/2017 8:59,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-6060,1/07/2017 1:30,15/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6058,1/07/2017 1:30,20/03/2017 16:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-5931,1/07/2017 1:30,27/03/2017 15:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-5509,1/07/2017 1:30,24/03/2017 15:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-2784,1/07/2017 1:30,20/04/2017 18:59,6.8,295, Improper Certificate Validation,nan
CVE-2016-9942,1/07/2017 1:30,31/12/2016 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9941,1/07/2017 1:30,31/12/2016 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9923,1/07/2017 1:30,23/12/2016 22:59,2.1,416, Use After Free,nan
CVE-2016-9920,1/07/2017 1:30,8/12/2016 18:59,6.0,284, Improper Access Control,nan
CVE-2016-9913,1/07/2017 1:30,29/12/2016 22:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2016-9912,1/07/2017 1:30,23/12/2016 22:59,2.1,400, Uncontrolled Resource Consumption,nan
CVE-2016-9908,1/07/2017 1:30,23/12/2016 22:59,2.1,200, Information Exposure,nan
CVE-2016-9866,1/07/2017 1:30,11/12/2016 3:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9864,1/07/2017 1:30,11/12/2016 3:00,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9863,1/07/2017 1:30,11/12/2016 3:00,5.0,20, Improper Input Validation,nan
CVE-2016-9862,1/07/2017 1:30,11/12/2016 3:00,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-9861,1/07/2017 1:30,11/12/2016 3:00,5.0,254, 7PK – Security Features,nan
CVE-2016-9860,1/07/2017 1:30,11/12/2016 3:00,4.3,20, Improper Input Validation,nan
CVE-2016-9859,1/07/2017 1:30,11/12/2016 2:59,5.0,20, Improper Input Validation,nan
CVE-2016-9858,1/07/2017 1:30,11/12/2016 2:59,5.0,20, Improper Input Validation,nan
CVE-2016-9857,1/07/2017 1:30,11/12/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9856,1/07/2017 1:30,11/12/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9855,1/07/2017 1:30,11/12/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-9854,1/07/2017 1:30,11/12/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-9853,1/07/2017 1:30,11/12/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-9852,1/07/2017 1:30,11/12/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-9851,1/07/2017 1:30,11/12/2016 2:59,5.0,254, 7PK – Security Features,nan
CVE-2016-9850,1/07/2017 1:30,11/12/2016 2:59,5.0,254, 7PK – Security Features,nan
CVE-2016-9849,1/07/2017 1:30,11/12/2016 2:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9848,1/07/2017 1:30,11/12/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-9847,1/07/2017 1:30,11/12/2016 2:59,5.0,310, Cryptographic Issues,nan
CVE-2016-9846,1/07/2017 1:30,29/12/2016 22:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9845,1/07/2017 1:30,29/12/2016 22:59,2.1,200, Information Exposure,nan
CVE-2016-9443,1/07/2017 1:30,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9442,1/07/2017 1:30,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9441,1/07/2017 1:30,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9440,1/07/2017 1:30,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9439,1/07/2017 1:30,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9438,1/07/2017 1:30,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9437,1/07/2017 1:30,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9434,1/07/2017 1:30,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9433,1/07/2017 1:30,12/12/2016 2:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-9432,1/07/2017 1:30,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9431,1/07/2017 1:30,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9430,1/07/2017 1:30,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9429,1/07/2017 1:30,12/12/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9428,1/07/2017 1:30,12/12/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9426,1/07/2017 1:30,12/12/2016 2:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-9425,1/07/2017 1:30,12/12/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9424,1/07/2017 1:30,12/12/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9423,1/07/2017 1:30,12/12/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9422,1/07/2017 1:30,12/12/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9400,1/07/2017 1:30,22/02/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9386,1/07/2017 1:30,23/01/2017 21:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-9385,1/07/2017 1:30,23/01/2017 21:59,4.9,20, Improper Input Validation,nan
CVE-2016-9383,1/07/2017 1:30,23/01/2017 21:59,7.2,20, Improper Input Validation,nan
CVE-2016-9382,1/07/2017 1:30,23/01/2017 21:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-9381,1/07/2017 1:30,23/01/2017 21:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-9380,1/07/2017 1:30,23/01/2017 21:59,4.6,20, Improper Input Validation,nan
CVE-2016-9379,1/07/2017 1:30,23/01/2017 21:59,4.6,20, Improper Input Validation,nan
CVE-2016-9298,1/07/2017 1:30,27/01/2017 22:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9190,1/07/2017 1:30,4/11/2016 10:59,6.8,284, Improper Access Control,nan
CVE-2016-9189,1/07/2017 1:30,4/11/2016 10:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-8860,1/07/2017 1:30,4/01/2017 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8859,1/07/2017 1:30,13/02/2017 18:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-8668,1/07/2017 1:30,4/11/2016 21:59,1.9,125, Out-of-bounds Read,nan
CVE-2016-7994,1/07/2017 1:30,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-7953,1/07/2017 1:30,13/12/2016 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7950,1/07/2017 1:30,13/12/2016 20:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7949,1/07/2017 1:30,13/12/2016 20:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7948,1/07/2017 1:30,13/12/2016 20:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7947,1/07/2017 1:30,13/12/2016 20:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-7946,1/07/2017 1:30,13/12/2016 20:59,5.0,284, Improper Access Control,nan
CVE-2016-7945,1/07/2017 1:30,13/12/2016 20:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-7944,1/07/2017 1:30,13/12/2016 20:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7907,1/07/2017 1:30,5/10/2016 16:59,2.1,399, Resource Management Errors,nan
CVE-2016-7905,1/07/2017 1:30,23/12/2016 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-7785,1/07/2017 1:30,23/12/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2016-7777,1/07/2017 1:30,7/10/2016 14:59,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-7562,1/07/2017 1:30,23/12/2016 5:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7555,1/07/2017 1:30,23/12/2016 5:59,4.3,200, Information Exposure,nan
CVE-2016-7502,1/07/2017 1:30,23/12/2016 5:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-7450,1/07/2017 1:30,23/12/2016 5:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-7423,1/07/2017 1:30,10/10/2016 16:59,2.1,787, Out-of-bounds Write,nan
CVE-2016-7405,1/07/2017 1:30,3/10/2016 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7166,1/07/2017 1:30,21/09/2016 14:25,4.3,399, Resource Management Errors,nan
CVE-2016-7157,1/07/2017 1:30,10/12/2016 0:59,2.1,20, Improper Input Validation,nan
CVE-2016-7133,1/07/2017 1:30,12/09/2016 1:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-7122,1/07/2017 1:30,23/12/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-7094,1/07/2017 1:30,21/09/2016 14:25,1.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7093,1/07/2017 1:30,21/09/2016 14:25,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7092,1/07/2017 1:30,21/09/2016 14:25,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-6652,1/07/2017 1:30,5/10/2016 16:59,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6632,1/07/2017 1:30,11/12/2016 2:59,4.3,399, Resource Management Errors,nan
CVE-2016-6631,1/07/2017 1:30,11/12/2016 2:59,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-6630,1/07/2017 1:30,11/12/2016 2:59,4.0,20, Improper Input Validation,nan
CVE-2016-6629,1/07/2017 1:30,11/12/2016 2:59,10.0,254, 7PK – Security Features,nan
CVE-2016-6628,1/07/2017 1:30,11/12/2016 2:59,6.8,254, 7PK – Security Features,nan
CVE-2016-6627,1/07/2017 1:30,11/12/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-6626,1/07/2017 1:30,11/12/2016 2:59,5.8,254, 7PK – Security Features,nan
CVE-2016-6625,1/07/2017 1:30,11/12/2016 2:59,4.0,200, Information Exposure,nan
CVE-2016-6624,1/07/2017 1:30,11/12/2016 2:59,4.3,254, 7PK – Security Features,nan
CVE-2016-6623,1/07/2017 1:30,11/12/2016 2:59,4.0,20, Improper Input Validation,nan
CVE-2016-6617,1/07/2017 1:30,11/12/2016 2:59,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6613,1/07/2017 1:30,11/12/2016 2:59,2.1,200, Information Exposure,nan
CVE-2016-6612,1/07/2017 1:30,11/12/2016 2:59,4.0,200, Information Exposure,nan
CVE-2016-6611,1/07/2017 1:30,11/12/2016 2:59,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6610,1/07/2017 1:30,11/12/2016 2:59,4.0,200, Information Exposure,nan
CVE-2016-6608,1/07/2017 1:30,11/12/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6607,1/07/2017 1:30,11/12/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6606,1/07/2017 1:30,11/12/2016 2:59,5.0,310, Cryptographic Issues,nan
CVE-2016-6525,1/07/2017 1:30,22/09/2016 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6491,1/07/2017 1:30,13/12/2016 15:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-6490,1/07/2017 1:30,10/12/2016 0:59,2.1,284, Improper Access Control,nan
CVE-2016-6489,1/07/2017 1:30,14/04/2017 18:59,5.0,310, Cryptographic Issues,nan
CVE-2016-6321,1/07/2017 1:30,9/12/2016 22:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6258,1/07/2017 1:29,2/08/2016 16:59,7.2,284, Improper Access Control,nan
CVE-2016-6170,1/07/2017 1:29,6/07/2016 14:59,4.0,20, Improper Input Validation,nan
CVE-2016-5842,1/07/2017 1:29,13/12/2016 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5734,1/07/2017 1:29,3/07/2016 1:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-5732,1/07/2017 1:29,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5704,1/07/2017 1:29,3/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5702,1/07/2017 1:29,3/07/2016 1:59,4.3,254, 7PK – Security Features,nan
CVE-2016-5418,1/07/2017 1:29,21/09/2016 14:25,5.0,20, Improper Input Validation,nan
CVE-2016-5407,1/07/2017 1:29,13/12/2016 20:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-5319,1/07/2017 1:29,20/01/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5145,1/07/2017 1:29,7/08/2016 19:59,6.8,254, 7PK – Security Features,nan
CVE-2016-5144,1/07/2017 1:29,7/08/2016 19:59,7.5,284, Improper Access Control,nan
CVE-2016-5143,1/07/2017 1:29,7/08/2016 19:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-5142,1/07/2017 1:29,7/08/2016 19:59,7.5,416, Use After Free,nan
CVE-2016-5141,1/07/2017 1:29,7/08/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-5140,1/07/2017 1:29,7/08/2016 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5138,1/07/2017 1:29,1/08/2016 2:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-5126,1/07/2017 1:29,1/06/2016 22:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5108,1/07/2017 1:29,8/06/2016 15:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5010,1/07/2017 1:29,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-4964,1/07/2017 1:29,10/12/2016 0:59,4.9,399, Resource Management Errors,nan
CVE-2016-4855,1/07/2017 1:29,12/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4412,1/07/2017 1:29,11/12/2016 2:59,3.6,254, 7PK – Security Features,nan
CVE-2016-4324,1/07/2017 1:29,8/07/2016 19:59,6.8,20, Improper Input Validation,nan
CVE-2016-4301,1/07/2017 1:29,21/09/2016 14:25,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4009,1/07/2017 1:29,13/04/2016 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3105,1/07/2017 1:29,9/05/2016 20:59,6.8,284, Improper Access Control,nan
CVE-2016-2850,1/07/2017 1:29,13/05/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-2849,1/07/2017 1:29,13/05/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2820,1/07/2017 1:29,30/04/2016 17:59,4.3,284, Improper Access Control,nan
CVE-2016-2817,1/07/2017 1:29,30/04/2016 17:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2816,1/07/2017 1:29,30/04/2016 17:59,4.3,284, Improper Access Control,nan
CVE-2016-2814,1/07/2017 1:29,30/04/2016 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2813,1/07/2017 1:29,30/04/2016 17:59,4.3,200, Information Exposure,nan
CVE-2016-2812,1/07/2017 1:29,30/04/2016 17:59,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2810,1/07/2017 1:29,30/04/2016 17:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2809,1/07/2017 1:29,30/04/2016 17:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-2808,1/07/2017 1:29,30/04/2016 17:59,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2805,1/07/2017 1:29,30/04/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2804,1/07/2017 1:29,30/04/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2533,1/07/2017 1:29,13/04/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2326,1/07/2017 1:29,12/02/2016 5:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-2270,1/07/2017 1:29,19/02/2016 16:59,4.6,20, Improper Input Validation,nan
CVE-2016-2217,1/07/2017 1:29,30/01/2017 22:59,5.0,320, Key Management Errors,nan
CVE-2016-2216,1/07/2017 1:29,7/04/2016 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-2197,1/07/2017 1:29,29/12/2016 22:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-2195,1/07/2017 1:29,13/05/2016 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2194,1/07/2017 1:29,13/05/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-2167,1/07/2017 1:29,5/05/2016 18:59,4.9,284, Improper Access Control,nan
CVE-2016-2090,1/07/2017 1:29,13/01/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2088,1/07/2017 1:29,9/03/2016 23:59,4.3,20, Improper Input Validation,nan
CVE-2016-2086,1/07/2017 1:29,7/04/2016 21:59,5.0,20, Improper Input Validation,nan
CVE-2016-2073,1/07/2017 1:29,12/02/2016 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1924,1/07/2017 1:29,27/01/2016 20:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1923,1/07/2017 1:29,27/01/2016 20:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1522,1/07/2017 1:29,13/02/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1521,1/07/2017 1:29,13/02/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1251,1/07/2017 1:29,29/11/2016 20:59,6.8,416, Use After Free,nan
CVE-2016-1249,1/07/2017 1:29,17/02/2017 2:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10328,1/07/2017 1:29,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-10221,1/07/2017 1:29,3/04/2017 5:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10028,1/07/2017 1:29,27/02/2017 22:59,2.1,125, Out-of-bounds Read,nan
CVE-2016-0775,1/07/2017 1:29,13/04/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0766,1/07/2017 1:29,17/02/2016 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0740,1/07/2017 1:29,13/04/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8949,1/07/2017 1:29,19/08/2016 21:59,10.0,416, Use After Free,nan
CVE-2015-8929,1/07/2017 1:29,20/09/2016 14:15,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8927,1/07/2017 1:29,20/09/2016 14:15,4.3,125, Out-of-bounds Read,nan
CVE-2015-8918,1/07/2017 1:29,20/09/2016 14:15,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8806,1/07/2017 1:29,13/04/2016 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8702,1/07/2017 1:29,12/04/2016 14:59,7.8,20, Improper Input Validation,nan
CVE-2015-8701,1/07/2017 1:29,29/12/2016 22:59,2.1,189, Numeric Errors,nan
CVE-2015-8557,1/07/2017 1:29,8/01/2016 20:59,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-8555,1/07/2017 1:29,13/04/2016 15:59,5.0,200, Information Exposure,nan
CVE-2015-8554,1/07/2017 1:29,14/04/2016 14:59,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8394,1/07/2017 1:29,2/12/2015 1:59,7.5,189, Numeric Errors,nan
CVE-2015-8393,1/07/2017 1:29,2/12/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-8390,1/07/2017 1:29,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8389,1/07/2017 1:29,2/12/2015 1:59,7.5,185, Incorrect Regular Expression,nan
CVE-2015-8387,1/07/2017 1:29,2/12/2015 1:59,7.5,189, Numeric Errors,nan
CVE-2015-8380,1/07/2017 1:29,2/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8341,1/07/2017 1:29,17/12/2015 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-8340,1/07/2017 1:29,17/12/2015 19:59,4.7,17, DEPRECATED: Code,nan
CVE-2015-8339,1/07/2017 1:29,17/12/2015 19:59,4.7,19, Data Processing Errors,nan
CVE-2015-8126,1/07/2017 1:29,13/11/2015 3:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8027,1/07/2017 1:29,2/01/2016 21:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-7981,1/07/2017 1:29,24/11/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-7970,1/07/2017 1:29,30/10/2015 15:59,4.9,399, Resource Management Errors,nan
CVE-2015-7814,1/07/2017 1:29,30/10/2015 15:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7707,1/07/2017 1:29,5/10/2015 15:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7662,1/07/2017 1:29,11/11/2015 13:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-7634,1/07/2017 1:29,15/10/2015 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7633,1/07/2017 1:29,15/10/2015 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7632,1/07/2017 1:29,15/10/2015 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7630,1/07/2017 1:29,15/10/2015 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7628,1/07/2017 1:29,15/10/2015 0:00,5.0,200, Information Exposure,nan
CVE-2015-7627,1/07/2017 1:29,15/10/2015 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7626,1/07/2017 1:29,14/10/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7625,1/07/2017 1:29,14/10/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7511,1/07/2017 1:29,19/04/2016 21:59,1.9,200, Information Exposure,nan
CVE-2015-7036,1/07/2017 1:29,22/11/2015 3:59,7.5,20, Improper Input Validation,nan
CVE-2015-6972,1/07/2017 1:29,16/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6927,1/07/2017 1:29,28/09/2015 20:59,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-6855,1/07/2017 1:29,6/11/2015 21:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5289,1/07/2017 1:29,26/10/2015 14:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5288,1/07/2017 1:29,26/10/2015 14:59,6.4,200, Information Exposure,nan
CVE-2015-5277,1/07/2017 1:29,17/12/2015 19:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5259,1/07/2017 1:29,8/01/2016 19:59,9.0,189, Numeric Errors,nan
CVE-2015-5214,1/07/2017 1:29,10/11/2015 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5213,1/07/2017 1:29,10/11/2015 17:59,6.8,189, Numeric Errors,nan
CVE-2015-5212,1/07/2017 1:29,10/11/2015 17:59,6.8,189, Numeric Errors,nan
CVE-2015-4652,1/07/2017 1:29,22/07/2015 1:59,4.3,20, Improper Input Validation,nan
CVE-2015-4651,1/07/2017 1:29,22/07/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-4556,1/07/2017 1:29,29/03/2017 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-4551,1/07/2017 1:29,10/11/2015 17:59,4.3,200, Information Exposure,nan
CVE-2015-3906,1/07/2017 1:29,26/05/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3815,1/07/2017 1:29,26/05/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3814,1/07/2017 1:29,26/05/2015 15:59,5.0,189, Numeric Errors,nan
CVE-2015-3810,1/07/2017 1:29,26/05/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2015-3809,1/07/2017 1:29,26/05/2015 15:59,7.8,189, Numeric Errors,nan
CVE-2015-3808,1/07/2017 1:29,26/05/2015 15:59,7.8,189, Numeric Errors,nan
CVE-2015-3395,1/07/2017 1:29,16/06/2015 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3310,1/07/2017 1:29,24/04/2015 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3202,1/07/2017 1:29,2/07/2015 21:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-3187,1/07/2017 1:29,12/08/2015 14:59,4.0,200, Information Exposure,nan
CVE-2015-3184,1/07/2017 1:29,12/08/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-3182,1/07/2017 1:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-2782,1/07/2017 1:29,8/04/2015 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2697,1/07/2017 1:29,9/11/2015 3:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2696,1/07/2017 1:29,9/11/2015 3:59,7.1,18, DEPRECATED: Source Code,nan
CVE-2015-2695,1/07/2017 1:29,9/11/2015 3:59,7.1,18, DEPRECATED: Source Code,nan
CVE-2015-2330,1/07/2017 1:29,10/03/2017 2:59,5.0,295, Improper Certificate Validation,nan
CVE-2015-1822,1/07/2017 1:29,16/04/2015 14:59,6.5,17, DEPRECATED: Code,nan
CVE-2015-1821,1/07/2017 1:29,16/04/2015 14:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1779,1/07/2017 1:29,12/01/2016 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-1609,1/07/2017 1:29,30/03/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-0860,1/07/2017 1:29,3/12/2015 20:59,7.5,189, Numeric Errors,nan
CVE-2015-0557,1/07/2017 1:29,8/04/2015 18:59,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0556,1/07/2017 1:29,8/04/2015 18:59,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-0339,1/07/2017 1:29,13/03/2015 17:59,10.0,399, Resource Management Errors,nan
CVE-2015-0337,1/07/2017 1:29,13/03/2015 17:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0335,1/07/2017 1:29,13/03/2015 17:59,10.0,399, Resource Management Errors,nan
CVE-2015-0333,1/07/2017 1:29,13/03/2015 17:59,10.0,399, Resource Management Errors,nan
CVE-2014-9764,1/07/2017 1:29,13/05/2016 16:59,5.0,20, Improper Input Validation,nan
CVE-2014-9763,1/07/2017 1:29,13/05/2016 16:59,5.0,189, Numeric Errors,nan
CVE-2014-9762,1/07/2017 1:29,13/05/2016 16:59,5.0,20, Improper Input Validation,nan
CVE-2014-9652,1/07/2017 1:29,30/03/2015 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9651,1/07/2017 1:29,28/08/2015 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9636,1/07/2017 1:29,6/02/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9622,1/07/2017 1:29,21/01/2015 18:59,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9598,1/07/2017 1:29,21/01/2015 15:17,6.8,20, Improper Input Validation,nan
CVE-2014-9597,1/07/2017 1:29,21/01/2015 15:17,6.8,20, Improper Input Validation,nan
CVE-2014-9471,1/07/2017 1:29,16/01/2015 16:59,7.5,20, Improper Input Validation,nan
CVE-2014-8990,1/07/2017 1:29,5/12/2014 16:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-8964,1/07/2017 1:29,16/12/2014 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8738,1/07/2017 1:29,15/01/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8737,1/07/2017 1:29,9/12/2014 23:59,3.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8583,1/07/2017 1:29,16/12/2014 18:59,6.9,254, 7PK – Security Features,nan
CVE-2014-8504,1/07/2017 1:29,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8503,1/07/2017 1:29,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8502,1/07/2017 1:29,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8501,1/07/2017 1:29,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8485,1/07/2017 1:29,9/12/2014 23:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8484,1/07/2017 1:29,9/12/2014 23:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6051,1/07/2017 1:29,30/09/2014 16:55,7.5,189, Numeric Errors,nan
CVE-2014-3776,1/07/2017 1:29,20/05/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2900,1/07/2017 1:29,22/04/2014 14:23,5.8,310, Cryptographic Issues,nan
CVE-2014-2899,1/07/2017 1:29,22/04/2014 14:23,5.0,20, Improper Input Validation,nan
CVE-2014-2830,1/07/2017 1:29,31/03/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2667,1/07/2017 1:29,16/11/2014 1:59,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-2270,1/07/2017 1:29,14/03/2014 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1933,1/07/2017 1:29,17/04/2014 14:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-1932,1/07/2017 1:29,17/04/2014 14:55,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-1684,1/07/2017 1:29,3/03/2014 16:55,4.3,189, Numeric Errors,nan
CVE-2014-1236,1/07/2017 1:29,10/01/2014 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0172,1/07/2017 1:29,11/04/2014 15:55,6.8,189, Numeric Errors,nan
CVE-2013-7459,1/07/2017 1:29,15/02/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4788,1/07/2017 1:29,4/10/2013 17:55,5.1,20, Improper Input Validation,nan
CVE-2013-4458,1/07/2017 1:29,12/12/2013 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4394,1/07/2017 1:29,28/10/2013 22:55,5.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4393,1/07/2017 1:29,28/10/2013 22:55,2.1,399, Resource Management Errors,nan
CVE-2013-4391,1/07/2017 1:29,28/10/2013 22:55,7.5,189, Numeric Errors,nan
CVE-2013-4385,1/07/2017 1:29,9/10/2013 14:54,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4362,1/07/2017 1:29,30/09/2013 22:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4332,1/07/2017 1:29,9/10/2013 22:55,4.3,189, Numeric Errors,nan
CVE-2013-4243,1/07/2017 1:29,10/09/2013 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4237,1/07/2017 1:29,9/10/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2207,1/07/2017 1:29,9/10/2013 22:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1914,1/07/2017 1:29,29/04/2013 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0340,1/07/2017 1:29,21/01/2014 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-6656,1/07/2017 1:29,5/12/2014 16:59,5.0,20, Improper Input Validation,nan
CVE-2012-4424,1/07/2017 1:29,9/10/2013 22:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4411,1/07/2017 1:29,23/11/2012 20:55,4.6,200, Information Exposure,nan
CVE-2012-3515,1/07/2017 1:29,23/11/2012 20:55,7.2,20, Improper Input Validation,nan
CVE-2012-3495,1/07/2017 1:29,23/11/2012 20:55,6.1,20, Improper Input Validation,nan
CVE-2012-3480,1/07/2017 1:29,25/08/2012 10:29,4.6,189, Numeric Errors,nan
CVE-2012-3345,1/07/2017 1:29,15/06/2012 14:55,5.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0433,1/07/2017 1:29,19/11/2012 12:10,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2642,1/07/2017 1:29,7/01/2011 19:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7781,30/06/2017 17:58,27/06/2017 20:29,5.0,275, Permission Issues,nan
CVE-2015-7780,30/06/2017 17:57,27/06/2017 20:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9218,30/06/2017 17:56,27/06/2017 12:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9221,30/06/2017 17:55,27/06/2017 12:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9220,30/06/2017 17:55,27/06/2017 12:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9219,30/06/2017 17:55,27/06/2017 12:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9223,30/06/2017 17:20,27/06/2017 12:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-3745,30/06/2017 17:10,20/06/2017 0:29,2.1,287, Improper Authentication,nan
CVE-2017-9840,30/06/2017 16:21,25/06/2017 12:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-3743,30/06/2017 16:16,20/06/2017 0:29,3.5,200, Information Exposure,nan
CVE-2017-9846,30/06/2017 16:12,24/06/2017 17:29,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9424,30/06/2017 16:12,22/06/2017 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-9953,30/06/2017 16:11,26/06/2017 23:29,5.0,416, Use After Free,nan
CVE-2017-1234,30/06/2017 14:24,27/06/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9738,30/06/2017 14:24,27/06/2017 16:29,5.0,254, 7PK – Security Features,nan
CVE-2016-9972,30/06/2017 14:22,27/06/2017 16:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4232,30/06/2017 1:29,10/09/2013 19:55,6.8,399, Resource Management Errors,nan
CVE-2013-1964,30/06/2017 1:29,21/05/2013 18:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1432,30/06/2017 1:29,28/08/2013 21:55,7.4,399, Resource Management Errors,nan
CVE-2017-9130,29/06/2017 18:59,21/06/2017 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9741,29/06/2017 18:47,18/06/2017 21:29,7.5,20, Improper Input Validation,nan
CVE-2017-4984,29/06/2017 17:24,19/06/2017 12:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-4987,29/06/2017 16:08,19/06/2017 12:29,4.4,427, Uncontrolled Search Path Element,nan
CVE-2017-7458,29/06/2017 15:31,26/06/2017 23:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-9929,29/06/2017 15:30,26/06/2017 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9928,29/06/2017 15:30,26/06/2017 7:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7416,29/06/2017 15:30,26/06/2017 7:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2780,29/06/2017 14:01,22/06/2017 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2782,29/06/2017 14:00,22/06/2017 21:29,6.4,190, Integer Overflow or Wraparound,nan
CVE-2017-2781,29/06/2017 14:00,22/06/2017 21:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9832,29/06/2017 13:48,24/06/2017 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-9831,29/06/2017 13:48,24/06/2017 0:29,4.6,190, Integer Overflow or Wraparound,nan
CVE-2017-9871,29/06/2017 1:29,25/06/2017 19:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2191,29/06/2017 1:29,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2015-7732,28/06/2017 15:18,15/06/2017 14:29,5.0,200, Information Exposure,nan
CVE-2017-5878,28/06/2017 15:12,8/06/2017 16:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-2165,28/06/2017 15:12,9/06/2017 16:29,4.0,200, Information Exposure,nan
CVE-2017-2829,28/06/2017 15:02,21/06/2017 13:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9343,28/06/2017 15:01,13/02/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9590,28/06/2017 15:00,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2015-4596,28/06/2017 15:00,13/06/2017 16:29,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-9580,28/06/2017 14:56,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9588,28/06/2017 14:55,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9586,28/06/2017 14:55,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9592,28/06/2017 14:54,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9589,28/06/2017 14:54,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9585,28/06/2017 14:29,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9583,28/06/2017 14:27,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9582,28/06/2017 14:27,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9587,28/06/2017 14:26,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9594,28/06/2017 14:25,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9579,28/06/2017 14:21,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9575,28/06/2017 14:19,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9574,28/06/2017 14:19,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-9747,28/06/2017 14:08,22/06/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9362,28/06/2017 14:08,13/02/2017 21:59,6.4,287, Improper Authentication,nan
CVE-2017-5167,28/06/2017 13:53,13/02/2017 21:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-8367,28/06/2017 13:53,13/02/2017 21:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-5801,28/06/2017 13:52,13/02/2017 21:59,5.0,284, Improper Access Control,nan
CVE-2016-9333,28/06/2017 13:51,13/02/2017 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-9100,28/06/2017 13:51,25/06/2017 19:29,4.3,476, NULL Pointer Dereference,nan
CVE-2015-9099,28/06/2017 13:51,25/06/2017 19:29,4.3,125, Out-of-bounds Read,nan
CVE-2015-9101,28/06/2017 13:50,25/06/2017 19:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9561,28/06/2017 13:45,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9581,27/06/2017 18:41,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9570,27/06/2017 18:41,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9565,27/06/2017 18:36,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9566,27/06/2017 18:33,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9567,27/06/2017 18:30,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9568,27/06/2017 18:29,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9564,27/06/2017 18:29,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9563,27/06/2017 18:28,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9562,27/06/2017 18:28,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2830,27/06/2017 17:56,21/06/2017 13:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9600,27/06/2017 17:48,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9598,27/06/2017 17:47,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9597,27/06/2017 17:47,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9596,27/06/2017 17:44,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2831,27/06/2017 17:43,21/06/2017 13:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9593,27/06/2017 17:33,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5697,27/06/2017 17:32,14/06/2017 12:29,4.3,20, Improper Input Validation,nan
CVE-2017-9836,27/06/2017 15:37,24/06/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1349,27/06/2017 15:32,23/06/2017 16:29,2.1,200, Information Exposure,nan
CVE-2017-9595,27/06/2017 15:13,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9591,27/06/2017 15:11,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9520,27/06/2017 14:57,8/06/2017 14:29,4.3,416, Use After Free,nan
CVE-2017-9762,27/06/2017 14:50,19/06/2017 16:29,4.3,416, Use After Free,nan
CVE-2017-9761,27/06/2017 14:49,19/06/2017 16:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9560,27/06/2017 14:47,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9559,27/06/2017 14:46,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9558,27/06/2017 13:11,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-4974,27/06/2017 1:29,13/06/2017 6:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1348,27/06/2017 1:29,23/06/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1347,27/06/2017 1:29,23/06/2017 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1302,27/06/2017 1:29,23/06/2017 16:29,2.1,200, Information Exposure,nan
CVE-2017-1193,27/06/2017 1:29,23/06/2017 16:29,4.0,200, Information Exposure,nan
CVE-2017-1132,27/06/2017 1:29,23/06/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1131,27/06/2017 1:29,23/06/2017 16:29,4.0,200, Information Exposure,nan
CVE-2016-6877,27/06/2017 1:29,5/05/2017 20:29,2.6,20, Improper Input Validation,nan
CVE-2016-5893,27/06/2017 1:29,23/06/2017 16:29,2.1,200, Information Exposure,nan
CVE-2016-9983,26/06/2017 19:56,22/06/2017 18:29,3.5,200, Information Exposure,nan
CVE-2016-9982,26/06/2017 19:55,22/06/2017 18:29,4.0,200, Information Exposure,nan
CVE-2017-9573,26/06/2017 18:22,16/06/2017 12:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-9973,26/06/2017 17:30,13/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8547,26/06/2017 17:29,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8544,26/06/2017 17:24,15/06/2017 1:29,2.1,200, Information Exposure,nan
CVE-2017-4994,26/06/2017 16:38,13/06/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-4972,26/06/2017 16:34,13/06/2017 6:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9754,26/06/2017 16:21,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9753,26/06/2017 16:20,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9752,26/06/2017 16:20,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9745,26/06/2017 16:13,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9744,26/06/2017 16:10,19/06/2017 4:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8534,26/06/2017 15:24,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8531,26/06/2017 15:06,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8529,26/06/2017 15:05,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8528,26/06/2017 15:04,15/06/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8519,26/06/2017 15:01,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6667,26/06/2017 14:54,13/06/2017 6:29,10.0,20, Improper Input Validation,nan
CVE-2017-1152,24/06/2017 1:29,14/04/2017 16:59,4.0,384, Session Fixation,nan
CVE-2016-6594,24/06/2017 1:29,8/06/2017 20:29,5.0,254, 7PK – Security Features,nan
CVE-2017-4965,23/06/2017 18:41,13/06/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-4967,23/06/2017 18:40,13/06/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9730,23/06/2017 14:36,19/06/2017 12:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6683,23/06/2017 13:42,13/06/2017 6:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2219,23/06/2017 10:43,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-6682,23/06/2017 10:38,13/06/2017 6:29,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2213,22/06/2017 19:43,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2212,22/06/2017 19:43,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2210,22/06/2017 19:43,9/06/2017 16:29,9.3,427, Uncontrolled Search Path Element,nan
CVE-2017-2211,22/06/2017 19:42,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2214,22/06/2017 19:41,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-2193,22/06/2017 19:01,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2015-3913,22/06/2017 19:00,8/06/2017 21:29,7.8,20, Improper Input Validation,nan
CVE-2017-2176,22/06/2017 18:59,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2017-9759,22/06/2017 18:51,19/06/2017 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4902,22/06/2017 18:40,9/06/2017 16:29,9.3,426, Untrusted Search Path,nan
CVE-2016-7818,22/06/2017 18:33,9/06/2017 16:29,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-0726,22/06/2017 18:32,6/06/2017 18:29,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-9542,22/06/2017 18:31,11/06/2017 23:29,10.0,287, Improper Authentication,nan
CVE-2017-9527,22/06/2017 15:23,11/06/2017 17:29,6.8,416, Use After Free,nan
CVE-2017-9624,22/06/2017 15:17,14/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9623,22/06/2017 15:16,14/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9622,22/06/2017 15:13,14/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9621,22/06/2017 15:01,14/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9557,22/06/2017 12:38,12/06/2017 15:29,5.0,200, Information Exposure,nan
CVE-2017-7629,22/06/2017 12:37,15/06/2017 20:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2016-7830,22/06/2017 12:37,9/06/2017 16:29,5.8,306, Missing Authentication for Critical Function,nan
CVE-2017-9674,22/06/2017 12:36,15/06/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9673,22/06/2017 12:36,15/06/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-1379,22/06/2017 12:36,15/06/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-7876,22/06/2017 12:06,15/06/2017 20:29,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-9544,22/06/2017 12:05,12/06/2017 6:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9728,22/06/2017 12:01,16/06/2017 15:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9668,22/06/2017 12:00,18/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6906,22/06/2017 1:29,15/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2380,22/06/2017 1:29,2/04/2017 1:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-9039,22/06/2017 1:29,31/01/2017 21:59,4.9,400, Uncontrolled Resource Consumption,nan
CVE-2017-2178,21/06/2017 17:12,9/06/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2016-7816,21/06/2017 17:11,9/06/2017 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-2177,21/06/2017 17:01,9/06/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2016-3690,21/06/2017 16:59,8/06/2017 18:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-6680,21/06/2017 16:29,13/06/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-6681,21/06/2017 15:34,13/06/2017 6:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8555,21/06/2017 15:19,15/06/2017 1:29,4.3,20, Improper Input Validation,nan
CVE-2017-8521,21/06/2017 15:18,15/06/2017 1:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8504,21/06/2017 14:32,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2017-8498,21/06/2017 14:28,15/06/2017 1:29,4.3,200, Information Exposure,nan
CVE-2016-5391,21/06/2017 14:07,13/06/2017 17:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-8513,21/06/2017 13:44,15/06/2017 1:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8474,20/06/2017 17:06,15/06/2017 1:29,1.9,200, Information Exposure,nan
CVE-2017-2207,20/06/2017 15:17,9/06/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2206,20/06/2017 15:14,9/06/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-6675,20/06/2017 14:55,13/06/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6674,20/06/2017 14:54,13/06/2017 6:29,5.0,20, Improper Input Validation,nan
CVE-2017-6673,20/06/2017 14:53,13/06/2017 6:29,4.0,200, Information Exposure,nan
CVE-2016-7838,20/06/2017 14:50,9/06/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-6695,20/06/2017 14:48,13/06/2017 6:29,2.1,200, Information Exposure,nan
CVE-2017-6697,20/06/2017 14:47,13/06/2017 6:29,4.0,200, Information Exposure,nan
CVE-2017-6696,20/06/2017 14:47,13/06/2017 6:29,2.1,200, Information Exposure,nan
CVE-2017-6691,20/06/2017 14:46,13/06/2017 6:29,4.0,200, Information Exposure,nan
CVE-2015-2253,20/06/2017 14:23,8/06/2017 16:29,3.5,200, Information Exposure,nan
CVE-2015-2251,20/06/2017 14:11,8/06/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-1099,20/06/2017 14:02,13/06/2017 19:29,4.0,200, Information Exposure,nan
CVE-2015-2252,20/06/2017 13:39,8/06/2017 16:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-2800,20/06/2017 13:20,8/06/2017 16:29,7.8,287, Improper Authentication,nan
CVE-2015-2692,20/06/2017 13:17,8/06/2017 21:29,6.4,284, Improper Access Control,nan
CVE-2017-9464,19/06/2017 18:15,14/06/2017 19:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-9463,19/06/2017 18:15,14/06/2017 19:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7676,19/06/2017 18:12,14/06/2017 17:29,7.5,20, Improper Input Validation,nan
CVE-2017-7667,19/06/2017 18:01,12/06/2017 16:29,5.0,346, Origin Validation Error,nan
CVE-2017-7665,19/06/2017 18:01,12/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8746,19/06/2017 17:46,14/06/2017 17:29,4.3,426, Untrusted Search Path,nan
CVE-2017-8238,16/06/2017 17:43,13/06/2017 20:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8687,16/06/2017 17:40,8/06/2017 16:29,10.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2016-9984,16/06/2017 15:52,13/06/2017 19:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7817,16/06/2017 15:50,9/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7809,16/06/2017 15:47,9/06/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-7810,16/06/2017 15:46,9/06/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2187,16/06/2017 14:36,9/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7814,16/06/2017 14:36,9/06/2017 16:29,5.0,200, Information Exposure,nan
CVE-2016-5405,16/06/2017 14:27,8/06/2017 19:29,5.0,199, Information Management Errors,nan
CVE-2016-4992,16/06/2017 14:23,8/06/2017 19:29,5.0,200, Information Exposure,nan
CVE-2016-3099,16/06/2017 14:23,8/06/2017 19:29,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2016-7813,16/06/2017 14:13,9/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7836,16/06/2017 14:11,9/06/2017 16:29,10.0,287, Improper Authentication,nan
CVE-2016-7811,16/06/2017 13:11,9/06/2017 16:29,5.8,284, Improper Access Control,nan
CVE-2016-5004,16/06/2017 13:06,6/06/2017 18:29,4.3,400, Uncontrolled Resource Consumption,nan
CVE-2017-1278,16/06/2017 13:01,12/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2255,16/06/2017 13:01,8/06/2017 16:29,4.3,19, Data Processing Errors,nan
CVE-2017-1276,16/06/2017 12:52,12/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1247,16/06/2017 12:51,12/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7835,16/06/2017 12:48,9/06/2017 16:29,6.4,416, Use After Free,nan
CVE-2016-4473,16/06/2017 12:47,8/06/2017 20:29,7.5,416, Use After Free,nan
CVE-2016-7831,16/06/2017 12:40,9/06/2017 16:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-7805,16/06/2017 12:37,9/06/2017 16:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-7819,16/06/2017 12:35,9/06/2017 16:29,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-7820,16/06/2017 12:31,9/06/2017 16:29,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7837,16/06/2017 12:11,9/06/2017 16:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7050,16/06/2017 12:03,8/06/2017 19:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2015-5175,15/06/2017 19:59,7/06/2017 20:29,5.0,20, Improper Input Validation,nan
CVE-2016-4471,15/06/2017 19:56,8/06/2017 18:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7808,15/06/2017 19:38,9/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7919,15/06/2017 19:37,8/06/2017 20:29,5.0,476, NULL Pointer Dereference,nan
CVE-2015-3634,15/06/2017 19:36,8/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2015-1379,15/06/2017 19:36,8/06/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2016-7806,15/06/2017 19:35,9/06/2017 16:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-7807,15/06/2017 19:32,9/06/2017 16:29,5.0,284, Improper Access Control,nan
CVE-2017-7564,15/06/2017 16:47,7/06/2017 15:29,5.0,20, Improper Input Validation,nan
CVE-2017-9123,15/06/2017 15:48,12/06/2017 6:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9127,15/06/2017 15:41,12/06/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9126,15/06/2017 15:41,12/06/2017 6:29,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9124,15/06/2017 15:41,12/06/2017 6:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-9548,15/06/2017 15:40,12/06/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9546,15/06/2017 15:40,12/06/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9547,15/06/2017 15:39,12/06/2017 6:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5202,15/06/2017 15:14,7/06/2017 20:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4843,15/06/2017 14:16,8/06/2017 16:29,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2016-3095,15/06/2017 14:13,8/06/2017 19:29,2.1,200, Information Exposure,nan
CVE-2016-4973,15/06/2017 14:12,7/06/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-1179,15/06/2017 13:58,8/06/2017 21:29,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-3091,15/06/2017 13:30,8/06/2017 18:29,5.0,19, Data Processing Errors,nan
CVE-2016-7824,15/06/2017 13:26,9/06/2017 16:29,6.5,284, Improper Access Control,nan
CVE-2016-7822,15/06/2017 13:21,9/06/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1786,15/06/2017 13:08,8/06/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9523,15/06/2017 1:29,9/06/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7823,15/06/2017 1:21,9/06/2017 16:29,2.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5232,15/06/2017 1:21,7/06/2017 20:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-7825,15/06/2017 1:20,9/06/2017 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7821,15/06/2017 1:19,9/06/2017 16:29,4.3,20, Improper Input Validation,nan
CVE-2016-7833,14/06/2017 22:35,9/06/2017 16:29,6.4,284, Improper Access Control,nan
CVE-2016-7832,14/06/2017 22:34,9/06/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-2180,14/06/2017 22:26,9/06/2017 16:29,4.3,200, Information Exposure,nan
CVE-2016-2034,14/06/2017 19:59,8/06/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9710,14/06/2017 19:45,7/06/2017 17:29,5.0,200, Information Exposure,nan
CVE-2017-2179,14/06/2017 19:44,9/06/2017 16:29,6.8,20, Improper Input Validation,nan
CVE-2016-7826,14/06/2017 19:44,9/06/2017 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3295,14/06/2017 19:41,7/06/2017 21:29,5.0,284, Improper Access Control,nan
CVE-2015-6959,14/06/2017 19:39,7/06/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9332,14/06/2017 18:17,6/06/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8538,14/06/2017 18:17,7/06/2017 20:29,4.3,20, Improper Input Validation,nan
CVE-2017-1305,14/06/2017 18:16,7/06/2017 17:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1178,14/06/2017 18:15,7/06/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7313,14/06/2017 16:23,7/06/2017 13:29,5.0,200, Information Exposure,nan
CVE-2017-7314,14/06/2017 16:18,7/06/2017 13:29,5.0,287, Improper Authentication,nan
CVE-2015-7514,14/06/2017 16:17,7/06/2017 14:29,4.0,200, Information Exposure,nan
CVE-2015-8326,14/06/2017 16:15,7/06/2017 14:29,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-7888,14/06/2017 14:49,7/06/2017 14:29,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9834,14/06/2017 14:43,7/06/2017 12:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0254,14/06/2017 14:06,7/06/2017 17:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9698,14/06/2017 14:05,8/06/2017 21:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9991,14/06/2017 14:03,8/06/2017 21:29,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8180,14/06/2017 12:41,6/06/2017 18:29,2.1,287, Improper Authentication,nan
CVE-2016-6098,13/06/2017 19:16,8/06/2017 21:29,5.5,284, Improper Access Control,nan
CVE-2016-6093,13/06/2017 19:16,8/06/2017 21:29,5.0,255, Credentials Management,nan
CVE-2017-8920,13/06/2017 18:34,6/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0768,13/06/2017 18:17,6/06/2017 18:29,5.0,284, Improper Access Control,nan
CVE-2016-0767,13/06/2017 18:16,6/06/2017 18:29,4.0,284, Improper Access Control,nan
CVE-2016-2192,13/06/2017 18:14,6/06/2017 18:29,4.0,284, Improper Access Control,nan
CVE-2017-9451,13/06/2017 17:14,6/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9436,13/06/2017 16:56,5/06/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-1140,13/06/2017 16:53,8/06/2017 21:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9736,13/06/2017 16:53,8/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2016-5959,13/06/2017 16:37,7/06/2017 17:29,5.0,200, Information Exposure,nan
CVE-2016-5960,13/06/2017 16:35,7/06/2017 17:29,2.1,200, Information Exposure,nan
CVE-2017-9437,13/06/2017 15:58,5/06/2017 14:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9518,13/06/2017 13:34,8/06/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9517,13/06/2017 13:34,8/06/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9519,13/06/2017 13:33,8/06/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4909,13/06/2017 13:25,9/06/2017 16:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4910,13/06/2017 13:21,9/06/2017 16:29,4.0,284, Improper Access Control,nan
CVE-2016-7801,13/06/2017 13:20,9/06/2017 16:29,4.0,284, Improper Access Control,nan
CVE-2016-4907,13/06/2017 13:03,9/06/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4906,13/06/2017 13:02,9/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7803,13/06/2017 13:01,9/06/2017 16:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7802,13/06/2017 13:01,9/06/2017 16:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4908,13/06/2017 13:01,9/06/2017 16:29,4.0,284, Improper Access Control,nan
CVE-2016-9157,13/06/2017 1:29,5/12/2016 8:59,7.5,284, Improper Access Control,nan
CVE-2016-9156,13/06/2017 1:29,5/12/2016 8:59,7.5,284, Improper Access Control,nan
CVE-2014-9310,12/06/2017 21:48,7/06/2017 21:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2165,12/06/2017 19:15,23/07/2013 11:03,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7346,12/06/2017 18:47,7/06/2017 21:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6089,12/06/2017 18:30,7/06/2017 17:29,3.6,284, Improper Access Control,nan
CVE-2017-1125,12/06/2017 18:25,7/06/2017 17:29,2.1,200, Information Exposure,nan
CVE-2016-8987,12/06/2017 18:22,8/06/2017 21:29,4.0,200, Information Exposure,nan
CVE-2016-9977,12/06/2017 18:07,7/06/2017 17:29,6.5,20, Improper Input Validation,nan
CVE-2017-9441,12/06/2017 17:47,5/06/2017 19:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9444,12/06/2017 17:44,5/06/2017 19:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9449,12/06/2017 17:41,6/06/2017 15:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9448,12/06/2017 17:41,6/06/2017 15:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4863,12/06/2017 17:12,22/05/2017 16:29,3.3,287, Improper Authentication,nan
CVE-2015-5473,12/06/2017 16:01,1/06/2017 16:29,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9983,12/06/2017 14:51,4/06/2017 23:29,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9432,12/06/2017 14:12,5/06/2017 3:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-9431,12/06/2017 13:53,5/06/2017 3:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-9306,9/06/2017 18:30,31/05/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2171,9/06/2017 18:30,22/05/2017 16:29,4.3,91, XML Injection (aka Blind XPath Injection),nan
CVE-2017-9307,9/06/2017 18:29,31/05/2017 4:29,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-9452,9/06/2017 18:28,6/06/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9443,9/06/2017 18:25,5/06/2017 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9442,9/06/2017 17:08,5/06/2017 19:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3830,9/06/2017 16:34,6/06/2017 18:29,4.3,20, Improper Input Validation,nan
CVE-2017-7669,9/06/2017 16:21,5/06/2017 1:29,8.5,20, Improper Input Validation,nan
CVE-2017-7384,9/06/2017 15:32,1/06/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6705,9/06/2017 15:24,4/06/2017 22:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9946,9/06/2017 15:18,6/06/2017 14:29,9.3,416, Use After Free,nan
CVE-2014-9944,9/06/2017 15:18,6/06/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9923,9/06/2017 15:18,6/06/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9926,9/06/2017 15:17,6/06/2017 14:29,9.3,416, Use After Free,nan
CVE-2014-9930,9/06/2017 15:14,6/06/2017 14:29,9.3,416, Use After Free,nan
CVE-2014-9925,9/06/2017 15:11,6/06/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9928,9/06/2017 15:10,6/06/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9927,9/06/2017 15:10,6/06/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-9006,9/06/2017 15:09,6/06/2017 14:29,9.3,284, Improper Access Control,nan
CVE-2014-9950,9/06/2017 15:09,6/06/2017 14:29,9.3,285, Improper Authorization,nan
CVE-2014-9941,9/06/2017 15:09,6/06/2017 14:29,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9952,9/06/2017 15:06,6/06/2017 14:29,9.3,287, Improper Authentication,nan
CVE-2014-9943,9/06/2017 15:06,6/06/2017 14:29,9.3,476, NULL Pointer Dereference,nan
CVE-2014-9924,9/06/2017 15:06,6/06/2017 14:29,9.3,189, Numeric Errors,nan
CVE-2014-9942,9/06/2017 15:05,6/06/2017 14:29,9.3,665, Improper Initialization,nan
CVE-2014-9929,9/06/2017 15:04,6/06/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2309,9/06/2017 14:54,30/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-9334,9/06/2017 14:43,1/06/2017 5:29,5.0,20, Improper Input Validation,nan
CVE-2017-9331,9/06/2017 14:38,1/06/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8782,9/06/2017 14:35,31/05/2017 4:29,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-9337,9/06/2017 14:30,1/06/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0936,9/06/2017 14:13,1/06/2017 16:29,7.5,320, Key Management Errors,nan
CVE-2017-9366,9/06/2017 14:11,2/06/2017 5:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9336,9/06/2017 13:50,1/06/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0292,9/06/2017 13:40,30/08/2016 17:59,2.1,200, Information Exposure,nan
CVE-2016-8231,9/06/2017 13:39,4/06/2017 21:29,5.0,295, Improper Certificate Validation,nan
CVE-2016-8229,9/06/2017 13:39,4/06/2017 21:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8228,9/06/2017 13:39,4/06/2017 21:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-9363,9/06/2017 13:38,2/06/2017 5:29,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-8230,9/06/2017 13:38,4/06/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-2308,8/06/2017 18:39,30/05/2017 14:29,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-9416,8/06/2017 18:21,4/06/2017 21:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9305,8/06/2017 18:14,31/05/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8402,8/06/2017 18:12,31/05/2017 4:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-9005,8/06/2017 17:49,6/06/2017 14:29,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9945,8/06/2017 17:49,6/06/2017 14:29,9.3,285, Improper Authorization,nan
CVE-2014-9947,8/06/2017 17:48,6/06/2017 14:29,4.3,200, Information Exposure,nan
CVE-2014-9948,8/06/2017 17:47,6/06/2017 14:29,9.3,129, Improper Validation of Array Index,nan
CVE-2015-9007,8/06/2017 17:46,6/06/2017 14:29,9.3,415, Double Free,nan
CVE-2014-9951,8/06/2017 17:46,6/06/2017 14:29,4.3,200, Information Exposure,nan
CVE-2014-9949,8/06/2017 17:46,6/06/2017 14:29,9.3,476, NULL Pointer Dereference,nan
CVE-2016-10297,8/06/2017 17:44,6/06/2017 14:29,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-9016,8/06/2017 17:39,19/01/2017 20:59,7.2,284, Improper Access Control,nan
CVE-2016-8941,8/06/2017 17:39,1/02/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5939,8/06/2017 17:39,1/02/2017 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9435,8/06/2017 17:38,5/06/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9380,8/06/2017 17:29,2/06/2017 15:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-9303,8/06/2017 16:57,29/05/2017 22:29,5.8,20, Improper Input Validation,nan
CVE-2015-6531,8/06/2017 16:53,1/06/2017 16:29,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-2307,8/06/2017 15:09,30/05/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5646,8/06/2017 14:35,26/05/2017 21:29,4.9,346, Origin Validation Error,nan
CVE-2014-3527,8/06/2017 14:31,25/05/2017 17:29,7.5,287, Improper Authentication,nan
CVE-2017-9302,8/06/2017 13:48,29/05/2017 19:29,4.3,369, Divide By Zero,nan
CVE-2017-9252,8/06/2017 13:48,28/05/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0761,8/06/2017 13:42,25/05/2017 17:29,10.0,19, Data Processing Errors,nan
CVE-2015-0269,8/06/2017 13:38,26/05/2017 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9251,8/06/2017 13:36,28/05/2017 20:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10379,8/06/2017 13:31,29/05/2017 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9289,8/06/2017 13:20,29/05/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9149,8/06/2017 13:20,22/05/2017 19:29,5.0,200, Information Exposure,nan
CVE-2017-9295,8/06/2017 13:13,29/05/2017 18:29,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-9297,8/06/2017 12:52,29/05/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-9296,8/06/2017 12:52,29/05/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-9298,8/06/2017 12:51,29/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5609,8/06/2017 12:42,23/05/2017 4:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4455,8/06/2017 12:42,23/05/2017 4:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-5682,8/06/2017 12:41,23/05/2017 4:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-5966,8/06/2017 12:34,23/05/2017 5:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9211,8/06/2017 12:07,23/05/2017 5:29,4.9,476, NULL Pointer Dereference,nan
CVE-2017-0373,8/06/2017 12:07,23/05/2017 18:29,6.8,20, Improper Input Validation,nan
CVE-2016-1033,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1032,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1029,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1028,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1027,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1026,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1025,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1024,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1023,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1022,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1021,8/06/2017 1:29,9/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3084,8/06/2017 0:51,25/05/2017 17:29,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10377,8/06/2017 0:48,29/05/2017 4:29,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9243,8/06/2017 0:46,28/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2165,7/06/2017 18:35,25/05/2017 17:29,4.3,20, Improper Input Validation,nan
CVE-2016-0781,7/06/2017 17:59,25/05/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-9059,7/06/2017 17:59,28/05/2017 0:29,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0780,7/06/2017 17:38,25/05/2017 17:29,5.0,399, Resource Management Errors,nan
CVE-2015-6586,7/06/2017 17:27,23/05/2017 4:29,5.0,200, Information Exposure,nan
CVE-2016-10378,7/06/2017 17:26,29/05/2017 19:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0225,7/06/2017 14:58,25/05/2017 17:29,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2014-0097,7/06/2017 14:23,25/05/2017 17:29,7.5,287, Improper Authentication,nan
CVE-2015-3191,7/06/2017 13:35,25/05/2017 17:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1876,7/06/2017 13:34,23/05/2017 4:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3190,7/06/2017 13:34,25/05/2017 17:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-1834,7/06/2017 13:33,25/05/2017 17:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3189,7/06/2017 13:25,25/05/2017 17:29,4.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-2798,6/06/2017 20:36,24/05/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2799,6/06/2017 20:35,24/05/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9301,6/06/2017 20:29,29/05/2017 19:29,6.8,125, Out-of-bounds Read,nan
CVE-2017-9364,6/06/2017 20:24,2/06/2017 5:29,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-9360,6/06/2017 20:24,2/06/2017 5:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9365,6/06/2017 20:23,2/06/2017 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9361,6/06/2017 20:22,2/06/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9379,6/06/2017 20:21,2/06/2017 15:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9427,6/06/2017 20:20,4/06/2017 23:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-9428,6/06/2017 20:19,4/06/2017 23:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2819,6/06/2017 19:42,24/05/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9217,6/06/2017 19:18,24/05/2017 5:29,5.0,20, Improper Input Validation,nan
CVE-2015-8089,6/06/2017 19:17,23/05/2017 4:29,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-5401,6/06/2017 19:17,23/05/2017 4:29,5.0,20, Improper Input Validation,nan
CVE-2015-6817,6/06/2017 16:32,23/05/2017 4:29,6.8,287, Improper Authentication,nan
CVE-2017-9216,6/06/2017 14:18,24/05/2017 5:29,4.3,476, NULL Pointer Dereference,nan
CVE-2016-10375,6/06/2017 14:12,26/05/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5868,6/06/2017 14:10,26/05/2017 1:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-9249,6/06/2017 14:03,28/05/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7296,6/06/2017 14:02,28/05/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7295,6/06/2017 14:01,28/05/2017 0:29,7.8,416, Use After Free,nan
CVE-2017-8382,5/06/2017 1:29,16/05/2017 10:29,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0351,5/06/2017 1:29,9/05/2017 21:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0350,5/06/2017 1:29,9/05/2017 21:29,7.2,20, Improper Input Validation,nan
CVE-2016-7840,5/06/2017 1:29,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9046,2/06/2017 19:06,21/05/2017 14:29,4.4,20, Improper Input Validation,nan
CVE-2017-9139,2/06/2017 19:03,21/05/2017 22:29,2.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9138,2/06/2017 18:59,21/05/2017 22:29,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9100,2/06/2017 18:34,21/05/2017 4:29,8.3,287, Improper Authentication,nan
CVE-2017-9225,2/06/2017 14:14,24/05/2017 15:29,7.5,787, Out-of-bounds Write,nan
CVE-2017-1159,2/06/2017 12:47,22/05/2017 20:29,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-4054,2/06/2017 12:47,23/05/2017 4:29,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7439,2/06/2017 12:43,26/05/2017 1:29,5.0,200, Information Exposure,nan
CVE-2017-7236,2/06/2017 12:43,26/05/2017 1:29,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3129,2/06/2017 12:39,27/05/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5074,2/06/2017 1:29,10/04/2017 3:59,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2017-9037,1/06/2017 18:02,26/05/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9034,1/06/2017 17:59,26/05/2017 1:29,10.0,20, Improper Input Validation,nan
CVE-2017-9033,1/06/2017 17:59,26/05/2017 1:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9032,1/06/2017 17:57,26/05/2017 1:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7723,1/06/2017 17:09,24/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1282,1/06/2017 16:36,22/05/2017 20:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2794,1/06/2017 16:24,23/05/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2797,1/06/2017 16:19,23/05/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2783,1/06/2017 16:19,23/05/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2793,1/06/2017 16:18,23/05/2017 16:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7433,1/06/2017 15:15,18/05/2017 14:29,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5870,1/06/2017 15:11,23/05/2017 4:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2823,1/06/2017 15:10,24/05/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-2817,1/06/2017 15:10,24/05/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2169,1/06/2017 15:09,22/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7804,1/06/2017 15:07,22/05/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2016-4900,1/06/2017 15:07,22/05/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2015-5468,1/06/2017 15:06,23/05/2017 4:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3083,1/06/2017 1:29,30/05/2017 14:29,5.0,295, Improper Certificate Validation,nan
CVE-2017-7503,31/05/2017 18:13,18/05/2017 15:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4901,31/05/2017 18:10,22/05/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-9067,31/05/2017 15:07,18/05/2017 16:29,4.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4854,31/05/2017 15:05,22/05/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9024,31/05/2017 15:02,21/05/2017 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1292,31/05/2017 15:00,26/05/2017 16:29,5.0,200, Information Exposure,nan
CVE-2017-1291,31/05/2017 15:00,26/05/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7731,31/05/2017 13:59,27/05/2017 0:29,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-7343,31/05/2017 13:59,27/05/2017 0:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7339,31/05/2017 13:54,27/05/2017 0:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7338,31/05/2017 13:54,27/05/2017 0:29,5.0,200, Information Exposure,nan
CVE-2017-2175,31/05/2017 13:43,22/05/2017 16:29,6.8,426, Untrusted Search Path,nan
CVE-2017-2174,31/05/2017 13:43,22/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2173,31/05/2017 13:42,22/05/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5735,31/05/2017 13:42,23/05/2017 4:29,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10374,31/05/2017 13:35,17/05/2017 19:29,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-8477,31/05/2017 13:34,23/05/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5469,31/05/2017 13:31,23/05/2017 4:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5241,31/05/2017 13:31,19/05/2017 19:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-4704,31/05/2017 13:28,23/05/2017 4:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3582,31/05/2017 1:29,29/03/2017 20:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-6112,31/05/2017 0:14,22/05/2017 20:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4045,30/05/2017 20:29,23/05/2017 4:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-4046,30/05/2017 20:09,23/05/2017 4:29,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-9071,30/05/2017 19:28,18/05/2017 16:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9068,30/05/2017 19:21,18/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6821,30/05/2017 19:21,23/05/2017 4:29,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-9069,30/05/2017 19:05,18/05/2017 16:29,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-9070,30/05/2017 19:02,18/05/2017 16:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7288,30/05/2017 19:01,23/05/2017 4:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7475,30/05/2017 18:45,19/05/2017 20:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-8833,30/05/2017 18:19,8/05/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4904,30/05/2017 15:17,22/05/2017 16:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4903,30/05/2017 15:17,22/05/2017 16:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4905,30/05/2017 15:14,22/05/2017 16:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-3403,30/05/2017 15:14,17/05/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-9167,28/05/2017 16:03,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9187,28/05/2017 16:02,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9200,28/05/2017 15:55,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9199,28/05/2017 15:55,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9198,28/05/2017 15:55,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9197,28/05/2017 15:55,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9192,28/05/2017 15:54,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9191,28/05/2017 15:54,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9190,28/05/2017 15:54,23/05/2017 4:29,5.0,416, Use After Free,nan
CVE-2017-9188,28/05/2017 15:53,23/05/2017 4:29,7.5,20, Improper Input Validation,nan
CVE-2017-9186,28/05/2017 15:53,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9183,28/05/2017 15:53,23/05/2017 4:29,7.5,704, Incorrect Type Conversion or Cast,nan
CVE-2017-9189,28/05/2017 15:52,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9185,28/05/2017 15:52,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9184,28/05/2017 15:52,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9181,28/05/2017 15:51,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9179,28/05/2017 15:51,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9178,28/05/2017 15:51,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9177,28/05/2017 15:51,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9176,28/05/2017 15:50,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9175,28/05/2017 15:50,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9174,28/05/2017 15:50,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9173,28/05/2017 15:50,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9172,28/05/2017 15:50,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9168,28/05/2017 15:50,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9170,28/05/2017 15:49,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9169,28/05/2017 15:49,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9163,28/05/2017 15:02,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9151,28/05/2017 15:02,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9162,28/05/2017 15:01,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9161,28/05/2017 15:01,23/05/2017 4:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-9160,28/05/2017 15:00,23/05/2017 4:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9159,28/05/2017 15:00,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9158,28/05/2017 15:00,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9157,28/05/2017 15:00,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9156,28/05/2017 14:58,23/05/2017 4:29,5.0,787, Out-of-bounds Write,nan
CVE-2017-9155,28/05/2017 14:58,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2017-9154,28/05/2017 14:58,23/05/2017 4:29,5.0,125, Out-of-bounds Read,nan
CVE-2015-0924,27/05/2017 1:29,17/01/2015 11:59,7.8,255, Credentials Management,nan
CVE-2017-8921,26/05/2017 18:13,12/05/2017 19:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2157,26/05/2017 18:13,12/05/2017 18:29,4.4,426, Untrusted Search Path,nan
CVE-2017-8245,26/05/2017 18:11,12/05/2017 20:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4839,26/05/2017 18:10,12/05/2017 18:29,4.3,200, Information Exposure,nan
CVE-2016-4838,26/05/2017 18:10,12/05/2017 18:29,6.8,20, Improper Input Validation,nan
CVE-2015-1529,26/05/2017 18:04,23/05/2017 4:29,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-9135,26/05/2017 13:19,21/05/2017 21:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-9133,26/05/2017 13:15,21/05/2017 21:29,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-9134,26/05/2017 13:14,21/05/2017 21:29,5.0,200, Information Exposure,nan
CVE-2017-9132,26/05/2017 13:14,21/05/2017 21:29,5.0,798, Use of Hard-coded Credentials,nan
CVE-2017-9131,26/05/2017 13:14,21/05/2017 21:29,5.0,20, Improper Input Validation,nan
CVE-2017-9030,26/05/2017 12:45,17/05/2017 14:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6195,26/05/2017 12:44,18/05/2017 6:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5215,26/05/2017 12:40,17/05/2017 14:29,7.5,20, Improper Input Validation,nan
CVE-2017-8930,25/05/2017 15:41,14/05/2017 22:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8942,25/05/2017 15:39,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8936,25/05/2017 15:39,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8935,25/05/2017 15:39,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-6890,25/05/2017 15:38,15/05/2017 18:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0171,25/05/2017 15:33,12/05/2017 14:29,4.3,20, Improper Input Validation,nan
CVE-2017-8941,25/05/2017 12:59,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8940,25/05/2017 12:59,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8939,25/05/2017 12:59,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8938,25/05/2017 12:58,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-9051,25/05/2017 1:29,18/05/2017 6:29,7.5,476, NULL Pointer Dereference,nan
CVE-2017-9044,25/05/2017 1:29,18/05/2017 1:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-9043,25/05/2017 1:29,18/05/2017 1:29,6.8,20, Improper Input Validation,nan
CVE-2017-7698,25/05/2017 1:29,10/05/2017 14:29,6.8,416, Use After Free,nan
CVE-2017-2124,25/05/2017 1:29,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0625,25/05/2017 1:29,12/05/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-0355,25/05/2017 1:29,9/05/2017 21:29,4.9,20, Improper Input Validation,nan
CVE-2017-0349,25/05/2017 1:29,9/05/2017 21:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0346,25/05/2017 1:29,9/05/2017 21:29,7.2,20, Improper Input Validation,nan
CVE-2016-8587,25/05/2017 1:29,28/04/2017 19:59,6.0,284, Improper Access Control,nan
CVE-2016-6110,25/05/2017 1:29,1/02/2017 22:59,2.1,255, Credentials Management,nan
CVE-2016-10282,25/05/2017 1:29,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10281,25/05/2017 1:29,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10280,25/05/2017 1:29,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10274,25/05/2017 1:29,12/05/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-9055,24/05/2017 20:41,18/05/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9054,24/05/2017 20:41,18/05/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9053,24/05/2017 20:40,18/05/2017 6:29,7.5,125, Out-of-bounds Read,nan
CVE-2017-9091,24/05/2017 18:29,19/05/2017 18:29,5.0,20, Improper Input Validation,nan
CVE-2017-9090,24/05/2017 18:29,19/05/2017 18:29,5.0,20, Improper Input Validation,nan
CVE-2015-3998,24/05/2017 15:15,17/05/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-9026,24/05/2017 14:39,17/05/2017 10:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-9025,24/05/2017 14:37,17/05/2017 10:29,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8926,24/05/2017 14:31,15/05/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0252,24/05/2017 14:30,15/05/2017 17:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8943,24/05/2017 14:18,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8937,24/05/2017 14:18,15/05/2017 18:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8927,24/05/2017 14:17,15/05/2017 18:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6889,24/05/2017 14:04,15/05/2017 18:29,7.5,190, Integer Overflow or Wraparound,nan
CVE-2015-4070,24/05/2017 14:04,17/05/2017 14:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-5670,24/05/2017 1:29,4/04/2017 16:59,2.1,200, Information Exposure,nan
CVE-2017-2775,24/05/2017 1:29,31/03/2017 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7999,24/05/2017 1:29,18/01/2017 17:59,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-7998,24/05/2017 1:29,18/01/2017 17:59,6.5,20, Improper Input Validation,nan
CVE-2016-7982,24/05/2017 1:29,18/01/2017 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7980,24/05/2017 1:29,18/01/2017 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10295,24/05/2017 1:29,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2016-10283,24/05/2017 1:29,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-0255,23/05/2017 19:51,12/05/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0264,23/05/2017 19:49,12/05/2017 14:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0242,23/05/2017 19:43,12/05/2017 14:29,4.3,200, Information Exposure,nan
CVE-2017-0221,23/05/2017 19:17,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0266,23/05/2017 19:08,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2163,23/05/2017 18:46,12/05/2017 18:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5654,23/05/2017 18:44,12/05/2017 21:29,5.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2017-0238,23/05/2017 18:39,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8929,23/05/2017 18:22,14/05/2017 22:29,5.0,416, Use After Free,nan
CVE-2017-0235,23/05/2017 18:10,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0230,23/05/2017 18:09,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0229,23/05/2017 18:09,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0226,23/05/2017 18:05,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7491,23/05/2017 18:04,15/05/2017 14:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9750,23/05/2017 17:45,15/05/2017 21:29,4.0,255, Credentials Management,nan
CVE-2017-0224,23/05/2017 17:42,12/05/2017 14:29,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5979,23/05/2017 15:54,15/05/2017 21:29,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-2164,23/05/2017 15:15,12/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9735,23/05/2017 15:10,15/05/2017 21:29,4.0,200, Information Exposure,nan
CVE-2017-8934,23/05/2017 3:01,15/05/2017 14:29,2.1,20, Improper Input Validation,nan
CVE-2017-8933,23/05/2017 3:01,15/05/2017 14:29,2.1,20, Improper Input Validation,nan
CVE-2017-7213,23/05/2017 3:01,15/05/2017 10:29,10.0,20, Improper Input Validation,nan
CVE-2017-5655,23/05/2017 3:00,15/05/2017 14:29,4.0,200, Information Exposure,nan
CVE-2017-8908,23/05/2017 1:29,12/05/2017 7:29,4.3,125, Out-of-bounds Read,nan
CVE-2017-7967,23/05/2017 1:29,9/05/2017 17:29,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5527,23/05/2017 1:29,9/05/2017 20:29,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4896,23/05/2017 1:29,12/04/2017 22:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-4895,23/05/2017 1:29,12/04/2017 22:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-4893,23/05/2017 1:29,12/04/2017 22:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4892,23/05/2017 1:29,12/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4891,23/05/2017 1:29,12/04/2017 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4873,23/05/2017 1:29,17/04/2017 15:59,4.0,275, Permission Issues,nan
CVE-2016-4872,23/05/2017 1:29,17/04/2017 15:59,4.0,200, Information Exposure,nan
CVE-2016-4870,23/05/2017 1:29,17/04/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4869,23/05/2017 1:29,17/04/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-4868,23/05/2017 1:29,17/04/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2016-4867,23/05/2017 1:29,17/04/2017 15:59,4.0,200, Information Exposure,nan
CVE-2016-4866,23/05/2017 1:29,17/04/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4865,23/05/2017 1:29,17/04/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10370,23/05/2017 1:29,11/05/2017 18:29,5.0,284, Improper Access Control,nan
CVE-2014-2113,23/05/2017 1:29,27/03/2014 21:55,7.8,20, Improper Input Validation,nan
CVE-2014-2112,23/05/2017 1:29,27/03/2014 21:55,7.8,20, Improper Input Validation,nan
CVE-2014-2111,23/05/2017 1:29,27/03/2014 21:55,7.1,20, Improper Input Validation,nan
CVE-2014-2109,23/05/2017 1:29,27/03/2014 21:55,7.8,20, Improper Input Validation,nan
CVE-2013-2071,23/05/2017 1:29,1/06/2013 14:21,2.6,200, Information Exposure,nan
CVE-2011-3376,23/05/2017 1:29,11/11/2011 21:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2017-8906,21/05/2017 0:25,11/05/2017 20:29,4.3,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2017-2167,21/05/2017 0:18,12/05/2017 18:29,6.8,426, Untrusted Search Path,nan
CVE-2017-8358,20/05/2017 1:29,30/04/2017 17:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-4859,19/05/2017 18:49,12/05/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-4858,19/05/2017 18:45,12/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4857,19/05/2017 18:45,12/05/2017 18:29,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-6799,19/05/2017 18:27,9/05/2017 15:29,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-0590,19/05/2017 18:26,12/05/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4856,19/05/2017 18:26,12/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0587,19/05/2017 18:12,12/05/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0589,19/05/2017 17:47,12/05/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0591,19/05/2017 17:39,12/05/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0602,19/05/2017 16:39,12/05/2017 15:29,4.3,200, Information Exposure,nan
CVE-2016-10294,19/05/2017 16:21,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2016-10292,19/05/2017 16:19,12/05/2017 15:29,4.3,399, Resource Management Errors,nan
CVE-2016-10276,19/05/2017 15:49,12/05/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10275,19/05/2017 15:49,12/05/2017 15:29,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-0598,19/05/2017 15:32,12/05/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-0592,19/05/2017 15:26,12/05/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0588,19/05/2017 15:26,12/05/2017 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10293,19/05/2017 14:54,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2016-10291,19/05/2017 14:54,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10290,19/05/2017 14:53,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10289,19/05/2017 14:40,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10296,19/05/2017 13:13,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2016-10288,19/05/2017 13:12,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10287,19/05/2017 13:11,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10285,19/05/2017 13:11,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-10284,19/05/2017 13:11,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-0626,19/05/2017 13:10,12/05/2017 15:29,4.3,200, Information Exposure,nan
CVE-2016-10286,19/05/2017 13:10,12/05/2017 15:29,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-0632,19/05/2017 13:07,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-0633,19/05/2017 13:04,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-0631,19/05/2017 13:03,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-0624,19/05/2017 13:01,12/05/2017 15:29,4.3,200, Information Exposure,nan
CVE-2017-0628,19/05/2017 13:00,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-0630,19/05/2017 12:41,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-2122,19/05/2017 12:40,12/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4879,19/05/2017 12:39,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0634,19/05/2017 12:20,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-0629,19/05/2017 12:18,12/05/2017 15:29,2.6,200, Information Exposure,nan
CVE-2017-6953,19/05/2017 2:09,8/05/2017 17:29,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8897,19/05/2017 2:08,11/05/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8798,19/05/2017 2:08,11/05/2017 1:29,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1906,19/05/2017 1:29,3/02/2016 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-8875,18/05/2017 17:40,10/05/2017 5:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8845,18/05/2017 17:40,8/05/2017 14:29,4.3,125, Out-of-bounds Read,nan
CVE-2016-4886,18/05/2017 16:23,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4885,18/05/2017 16:23,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4884,18/05/2017 16:23,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4880,18/05/2017 16:23,12/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4883,18/05/2017 16:22,12/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8825,18/05/2017 16:19,8/05/2017 16:29,5.0,476, NULL Pointer Dereference,nan
CVE-2016-4887,18/05/2017 16:19,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4882,18/05/2017 15:48,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4881,18/05/2017 15:48,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4878,18/05/2017 13:53,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4877,18/05/2017 13:52,12/05/2017 18:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4876,18/05/2017 13:42,12/05/2017 18:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-0354,17/05/2017 19:26,9/05/2017 21:29,4.7,20, Improper Input Validation,nan
CVE-2017-0353,17/05/2017 19:25,9/05/2017 21:29,4.9,20, Improper Input Validation,nan
CVE-2017-0348,17/05/2017 19:22,9/05/2017 21:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0347,17/05/2017 19:22,9/05/2017 21:29,7.2,129, Improper Validation of Array Index,nan
CVE-2017-0345,17/05/2017 19:08,9/05/2017 21:29,7.2,129, Improper Validation of Array Index,nan
CVE-2017-0343,17/05/2017 19:05,9/05/2017 21:29,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-0342,17/05/2017 19:01,9/05/2017 21:29,7.2,682, Incorrect Calculation,nan
CVE-2017-0341,17/05/2017 18:58,9/05/2017 21:29,7.2,476, NULL Pointer Dereference,nan
CVE-2017-8892,17/05/2017 18:19,10/05/2017 17:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8874,17/05/2017 18:16,10/05/2017 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8868,17/05/2017 18:15,10/05/2017 5:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8916,17/05/2017 18:12,5/05/2017 19:29,2.1,200, Information Exposure,nan
CVE-2016-10368,17/05/2017 17:37,3/05/2017 10:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-8788,17/05/2017 16:58,5/05/2017 18:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-8794,17/05/2017 16:54,5/05/2017 18:29,6.4,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-8796,17/05/2017 16:52,5/05/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8791,17/05/2017 16:52,5/05/2017 18:29,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-8789,17/05/2017 16:51,5/05/2017 18:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8304,17/05/2017 16:50,5/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8760,17/05/2017 16:49,5/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8790,17/05/2017 16:48,5/05/2017 18:29,7.5,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2017-8795,17/05/2017 16:47,5/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10367,17/05/2017 16:38,3/05/2017 10:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-8792,17/05/2017 16:14,5/05/2017 18:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8367,17/05/2017 16:12,30/04/2017 19:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8768,17/05/2017 16:04,4/05/2017 22:29,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8854,17/05/2017 12:31,9/05/2017 20:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8059,17/05/2017 12:29,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8853,17/05/2017 12:28,9/05/2017 16:29,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6557,17/05/2017 12:27,5/05/2017 10:29,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5918,17/05/2017 12:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5915,17/05/2017 11:27,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5913,17/05/2017 11:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5912,17/05/2017 11:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5911,17/05/2017 11:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5909,17/05/2017 11:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5919,16/05/2017 20:02,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5916,16/05/2017 20:02,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8848,16/05/2017 20:01,8/05/2017 17:29,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8832,16/05/2017 20:01,8/05/2017 6:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8060,16/05/2017 20:01,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8058,16/05/2017 20:01,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-8829,16/05/2017 18:43,8/05/2017 6:29,6.8,502, Deserialization of Untrusted Data,nan
CVE-2017-7229,16/05/2017 18:43,3/05/2017 20:59,6.4,326, Inadequate Encryption Strength,nan
CVE-2017-5914,16/05/2017 18:42,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5907,16/05/2017 18:42,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-10369,16/05/2017 18:41,8/05/2017 18:29,4.6,284, Improper Access Control,nan
CVE-2017-8843,16/05/2017 17:47,8/05/2017 14:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-8801,16/05/2017 17:47,5/05/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8847,16/05/2017 17:46,8/05/2017 14:29,4.3,476, NULL Pointer Dereference,nan
CVE-2017-8846,16/05/2017 17:46,8/05/2017 14:29,4.3,416, Use After Free,nan
CVE-2017-8844,16/05/2017 17:46,8/05/2017 14:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6520,16/05/2017 17:44,1/05/2017 1:59,6.4,417, Channel and Path Errors,nan
CVE-2015-8257,16/05/2017 15:27,2/05/2017 14:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-8878,16/05/2017 12:29,10/05/2017 5:29,4.0,200, Information Exposure,nan
CVE-2017-8877,16/05/2017 12:28,10/05/2017 5:29,4.0,200, Information Exposure,nan
CVE-2017-5891,16/05/2017 12:07,10/05/2017 5:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5892,16/05/2017 1:35,10/05/2017 5:29,5.0,200, Information Exposure,nan
CVE-2017-8804,16/05/2017 1:34,7/05/2017 18:29,7.8,502, Deserialization of Untrusted Data,nan
CVE-2017-8773,16/05/2017 1:33,4/05/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-8419,16/05/2017 1:32,2/05/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5240,16/05/2017 1:32,3/05/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8775,16/05/2017 1:27,4/05/2017 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8774,16/05/2017 1:27,4/05/2017 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5906,16/05/2017 1:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5905,16/05/2017 1:26,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5902,16/05/2017 1:25,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-5901,16/05/2017 1:25,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-3213,16/05/2017 1:25,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2017-3212,16/05/2017 1:25,5/05/2017 7:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-9256,16/05/2017 1:24,9/05/2017 15:29,6.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-9058,16/05/2017 1:20,3/05/2017 10:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7431,15/05/2017 18:53,3/05/2017 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7428,15/05/2017 18:51,3/05/2017 5:59,5.0,20, Improper Input Validation,nan
CVE-2017-8876,15/05/2017 18:44,10/05/2017 5:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8872,15/05/2017 18:37,10/05/2017 5:29,6.4,125, Out-of-bounds Read,nan
CVE-2017-8842,15/05/2017 18:22,8/05/2017 14:29,4.3,369, Divide By Zero,nan
CVE-2017-8778,15/05/2017 18:19,4/05/2017 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8763,15/05/2017 18:19,4/05/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7995,15/05/2017 17:45,3/05/2017 19:59,1.7,200, Information Exposure,nan
CVE-2017-7886,15/05/2017 17:44,10/05/2017 14:29,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7888,15/05/2017 17:38,10/05/2017 14:29,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-7887,15/05/2017 17:36,10/05/2017 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7476,15/05/2017 17:34,2/05/2017 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7440,15/05/2017 17:22,2/05/2017 14:59,4.3,20, Improper Input Validation,nan
CVE-2017-1103,15/05/2017 16:28,10/05/2017 14:29,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-6037,15/05/2017 16:01,10/05/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6035,15/05/2017 15:56,10/05/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5889,15/05/2017 15:56,10/05/2017 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5888,15/05/2017 15:56,10/05/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3032,15/05/2017 15:52,10/05/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5236,15/05/2017 14:57,3/05/2017 16:59,6.8,426, Untrusted Search Path,nan
CVE-2016-4890,13/05/2017 1:29,14/04/2017 18:59,5.0,254, 7PK – Security Features,nan
CVE-2016-4889,13/05/2017 1:29,14/04/2017 18:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-4888,13/05/2017 1:29,14/04/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7430,12/05/2017 18:27,3/05/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9976,12/05/2017 17:55,3/05/2017 17:59,6.8,284, Improper Access Control,nan
CVE-2016-9692,12/05/2017 17:32,5/05/2017 19:29,7.8,20, Improper Input Validation,nan
CVE-2016-9691,12/05/2017 17:31,5/05/2017 19:29,9.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2015-9057,12/05/2017 17:23,3/05/2017 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0382,12/05/2017 17:13,3/05/2017 17:59,2.1,200, Information Exposure,nan
CVE-2016-0255,12/05/2017 17:12,5/05/2017 19:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8827,12/05/2017 15:50,8/05/2017 6:29,6.4,287, Improper Authentication,nan
CVE-2017-8762,12/05/2017 15:30,3/05/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8780,12/05/2017 15:23,4/05/2017 14:29,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2930,12/05/2017 15:02,3/05/2017 17:59,5.0,284, Improper Access Control,nan
CVE-2017-8400,12/05/2017 14:58,1/05/2017 19:59,6.8,787, Out-of-bounds Write,nan
CVE-2017-8455,12/05/2017 14:57,3/05/2017 5:59,6.8,125, Out-of-bounds Read,nan
CVE-2015-9004,12/05/2017 14:54,2/05/2017 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-8453,12/05/2017 14:46,3/05/2017 5:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-7483,12/05/2017 14:43,2/05/2017 14:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-4442,12/05/2017 14:42,2/05/2017 14:59,5.0,200, Information Exposure,nan
CVE-2017-8401,12/05/2017 14:33,1/05/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7216,12/05/2017 13:29,2/05/2017 15:59,4.0,200, Information Exposure,nan
CVE-2017-8454,12/05/2017 13:25,3/05/2017 5:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-6551,12/05/2017 13:24,2/05/2017 14:59,7.5,20, Improper Input Validation,nan
CVE-2017-2154,12/05/2017 1:29,28/04/2017 16:59,6.8,20, Improper Input Validation,nan
CVE-2016-8586,12/05/2017 1:29,28/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1350,12/05/2017 1:29,26/03/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-1344,12/05/2017 1:29,26/03/2016 1:59,7.1,399, Resource Management Errors,nan
CVE-2015-0646,12/05/2017 1:29,26/03/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-0643,12/05/2017 1:29,26/03/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-0642,12/05/2017 1:29,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2017-7644,11/05/2017 16:59,29/04/2017 0:59,4.0,200, Information Exposure,nan
CVE-2017-8342,11/05/2017 16:40,30/04/2017 15:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-5810,11/05/2017 16:36,2/05/2017 14:59,4.0,200, Information Exposure,nan
CVE-2017-8385,11/05/2017 16:30,1/05/2017 6:59,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-8384,11/05/2017 16:09,1/05/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5006,11/05/2017 15:25,2/05/2017 14:59,5.0,200, Information Exposure,nan
CVE-2017-2153,11/05/2017 15:19,28/04/2017 16:59,5.0,20, Improper Input Validation,nan
CVE-2017-2156,11/05/2017 15:18,28/04/2017 16:59,6.8,426, Untrusted Search Path,nan
CVE-2017-2111,11/05/2017 15:03,28/04/2017 16:59,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-2112,11/05/2017 14:20,28/04/2017 16:59,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-8592,11/05/2017 1:29,28/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8591,11/05/2017 1:29,28/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8585,11/05/2017 1:29,28/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5857,11/05/2017 1:29,20/03/2017 16:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2017-8377,10/05/2017 19:23,1/05/2017 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-8376,10/05/2017 19:20,1/05/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2113,10/05/2017 19:18,28/04/2017 16:59,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8364,10/05/2017 19:17,30/04/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7843,10/05/2017 19:15,28/04/2017 16:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7815,10/05/2017 18:48,28/04/2017 16:59,4.9,295, Improper Certificate Validation,nan
CVE-2017-2110,10/05/2017 18:34,28/04/2017 16:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-8584,10/05/2017 18:22,28/04/2017 19:59,7.5,284, Improper Access Control,nan
CVE-2017-2107,10/05/2017 17:51,28/04/2017 16:59,6.9,426, Untrusted Search Path,nan
CVE-2016-8588,10/05/2017 17:49,28/04/2017 19:59,6.0,284, Improper Access Control,nan
CVE-2017-8283,10/05/2017 17:46,26/04/2017 5:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2108,10/05/2017 17:43,28/04/2017 16:59,7.2,426, Untrusted Search Path,nan
CVE-2017-2103,10/05/2017 17:41,28/04/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-8593,10/05/2017 17:41,28/04/2017 19:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1141,10/05/2017 17:38,28/04/2017 17:59,4.0,200, Information Exposure,nan
CVE-2016-8590,10/05/2017 17:35,28/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-8289,10/05/2017 17:34,27/04/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2109,10/05/2017 17:29,28/04/2017 16:59,2.6,200, Information Exposure,nan
CVE-2017-2105,10/05/2017 17:27,28/04/2017 16:59,4.3,200, Information Exposure,nan
CVE-2017-2104,10/05/2017 17:27,28/04/2017 16:59,4.3,200, Information Exposure,nan
CVE-2017-8297,10/05/2017 17:22,27/04/2017 15:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8589,10/05/2017 16:13,28/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-8288,10/05/2017 16:11,27/04/2017 0:59,6.8,20, Improper Input Validation,nan
CVE-2017-8302,10/05/2017 0:44,27/04/2017 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8305,10/05/2017 0:43,27/04/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2106,10/05/2017 0:40,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2096,10/05/2017 0:40,28/04/2017 16:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2097,10/05/2017 0:30,28/04/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-7842,10/05/2017 0:27,28/04/2017 16:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7415,9/05/2017 23:46,27/04/2017 10:59,5.0,200, Information Exposure,nan
CVE-2010-1776,9/05/2017 12:57,24/04/2017 19:59,4.9,254, 7PK – Security Features,nan
CVE-2017-8219,9/05/2017 12:46,25/04/2017 20:59,4.0,20, Improper Input Validation,nan
CVE-2016-7516,9/05/2017 12:40,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7515,9/05/2017 12:40,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7514,9/05/2017 12:40,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7513,9/05/2017 12:40,20/04/2017 18:59,4.3,189, Numeric Errors,nan
CVE-2015-8959,9/05/2017 12:40,20/04/2017 18:59,7.1,399, Resource Management Errors,nan
CVE-2015-8958,9/05/2017 12:40,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2015-8957,9/05/2017 12:40,20/04/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9907,9/05/2017 12:40,19/04/2017 14:59,4.3,20, Improper Input Validation,nan
CVE-2014-9837,9/05/2017 12:40,11/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2014-9829,9/05/2017 12:40,5/04/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2014-8354,9/05/2017 12:40,11/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7534,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7533,9/05/2017 12:39,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7532,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7531,9/05/2017 12:39,19/04/2017 14:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-7530,9/05/2017 12:39,20/04/2017 18:59,4.3,369, Divide By Zero,nan
CVE-2016-7529,9/05/2017 12:39,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7528,9/05/2017 12:39,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7527,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7526,9/05/2017 12:39,20/04/2017 18:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-7525,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7522,9/05/2017 12:39,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7521,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7520,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7519,9/05/2017 12:39,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7518,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7517,9/05/2017 12:39,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7536,9/05/2017 12:38,20/04/2017 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-7535,9/05/2017 12:38,20/04/2017 18:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-7537,9/05/2017 12:37,19/04/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7538,9/05/2017 12:36,20/04/2017 18:59,4.3,787, Out-of-bounds Write,nan
CVE-2017-7852,8/05/2017 19:42,24/04/2017 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8030,8/05/2017 19:41,25/04/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7540,8/05/2017 19:34,20/04/2017 18:59,4.3,19, Data Processing Errors,nan
CVE-2016-1575,8/05/2017 15:31,2/05/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-7271,8/05/2017 1:29,27/03/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6368,6/05/2017 1:29,20/04/2017 22:59,5.0,399, Resource Management Errors,nan
CVE-2017-3162,6/05/2017 0:11,26/04/2017 20:59,7.5,20, Improper Input Validation,nan
CVE-2017-2155,6/05/2017 0:11,28/04/2017 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2152,6/05/2017 0:08,28/04/2017 16:59,5.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-2140,6/05/2017 0:07,28/04/2017 16:59,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-2130,6/05/2017 0:01,28/04/2017 16:59,6.8,426, Untrusted Search Path,nan
CVE-2017-2128,5/05/2017 18:00,28/04/2017 16:59,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8109,5/05/2017 17:58,25/04/2017 17:59,2.1,200, Information Exposure,nan
CVE-2017-8115,5/05/2017 17:57,25/04/2017 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2148,5/05/2017 17:40,28/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2142,5/05/2017 17:39,28/04/2017 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2141,5/05/2017 17:39,28/04/2017 16:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-8110,5/05/2017 17:38,25/04/2017 17:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5625,5/05/2017 17:37,25/04/2017 16:59,2.1,476, NULL Pointer Dereference,nan
CVE-2017-2151,5/05/2017 17:22,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2150,5/05/2017 17:22,28/04/2017 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2136,5/05/2017 17:19,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2134,5/05/2017 17:17,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2127,5/05/2017 13:42,28/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8223,5/05/2017 13:39,25/04/2017 20:59,5.0,287, Improper Authentication,nan
CVE-2017-8224,5/05/2017 13:38,25/04/2017 20:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-7841,5/05/2017 13:37,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7839,5/05/2017 13:36,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2117,5/05/2017 13:23,28/04/2017 16:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2101,5/05/2017 13:23,28/04/2017 16:59,7.5,287, Improper Authentication,nan
CVE-2017-2102,5/05/2017 13:13,28/04/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2090,5/05/2017 13:13,28/04/2017 16:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-1149,5/05/2017 12:51,25/04/2017 18:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-8106,5/05/2017 12:50,24/04/2017 23:59,4.9,476, NULL Pointer Dereference,nan
CVE-2017-2098,5/05/2017 12:47,28/04/2017 16:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2100,5/05/2017 12:44,28/04/2017 16:59,6.8,20, Improper Input Validation,nan
CVE-2017-2123,5/05/2017 12:36,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3560,4/05/2017 18:33,24/04/2017 19:59,4.0,200, Information Exposure,nan
CVE-2017-3552,4/05/2017 18:03,24/04/2017 19:59,3.5,200, Information Exposure,nan
CVE-1999-0226,3/05/2017 16:18,1/01/1999 5:00,10.0,19, Data Processing Errors,nan
CVE-2017-7720,3/05/2017 13:15,26/04/2017 14:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2093,3/05/2017 13:15,28/04/2017 16:59,4.3,200, Information Exposure,nan
CVE-2017-2119,3/05/2017 13:12,28/04/2017 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-2114,3/05/2017 13:11,28/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8057,3/05/2017 13:09,25/04/2017 18:59,5.0,200, Information Exposure,nan
CVE-2017-2120,3/05/2017 13:08,28/04/2017 16:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-3161,3/05/2017 13:06,26/04/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8298,3/05/2017 13:05,27/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7987,3/05/2017 13:05,25/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2116,3/05/2017 12:44,28/04/2017 16:59,4.0,284, Improper Access Control,nan
CVE-2017-2095,3/05/2017 12:42,28/04/2017 16:59,4.0,284, Improper Access Control,nan
CVE-2016-8924,3/05/2017 12:24,26/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8294,3/05/2017 12:21,27/04/2017 14:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-7983,3/05/2017 12:20,25/04/2017 18:59,5.0,200, Information Exposure,nan
CVE-2017-2092,3/05/2017 12:19,28/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8100,3/05/2017 1:59,24/04/2017 18:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5191,3/05/2017 1:59,24/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8271,3/05/2017 1:59,2/04/2017 20:59,5.0,200, Information Exposure,nan
CVE-2017-7986,2/05/2017 18:15,25/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2118,2/05/2017 18:07,28/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7989,2/05/2017 18:06,25/04/2017 18:59,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2017-7984,2/05/2017 18:06,25/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2433,2/05/2017 18:04,21/04/2017 20:59,8.3,284, Improper Access Control,nan
CVE-2017-7386,2/05/2017 1:59,1/04/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5924,2/05/2017 1:59,3/04/2017 5:59,5.0,416, Use After Free,nan
CVE-2017-5923,2/05/2017 1:59,3/04/2017 5:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-9723,2/05/2017 1:59,7/03/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9693,2/05/2017 1:59,7/03/2017 17:59,6.8,20, Improper Input Validation,nan
CVE-2016-8026,2/05/2017 1:59,14/03/2017 22:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6561,2/05/2017 1:59,31/03/2017 19:59,7.8,476, NULL Pointer Dereference,nan
CVE-2016-10211,2/05/2017 1:59,3/04/2017 5:59,5.0,416, Use After Free,nan
CVE-2016-10210,2/05/2017 1:59,3/04/2017 5:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-2564,29/04/2017 18:39,23/04/2017 15:59,4.3,331, Insufficient Entropy,nan
CVE-2017-8098,29/04/2017 18:38,24/04/2017 18:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1210,29/04/2017 18:38,21/04/2017 20:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-8085,29/04/2017 1:59,24/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7590,29/04/2017 1:59,9/04/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6334,29/04/2017 1:59,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6333,29/04/2017 1:59,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3076,29/04/2017 1:59,24/04/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8109,29/04/2017 1:59,24/04/2017 6:59,6.9,255, Credentials Management,nan
CVE-2014-2522,29/04/2017 1:59,18/04/2014 22:14,4.0,20, Improper Input Validation,nan
CVE-2013-5730,29/04/2017 1:59,20/11/2013 13:19,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1633,29/04/2017 1:59,20/09/2012 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7247,28/04/2017 18:49,24/04/2017 18:59,7.8,200, Information Exposure,nan
CVE-2016-1556,28/04/2017 18:39,21/04/2017 15:59,5.0,200, Information Exposure,nan
CVE-2015-7246,28/04/2017 18:33,24/04/2017 18:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-8110,28/04/2017 18:02,24/04/2017 6:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-8099,28/04/2017 17:48,24/04/2017 18:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5047,28/04/2017 17:47,25/04/2017 3:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2015-7245,28/04/2017 17:47,24/04/2017 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3428,28/04/2017 17:47,24/04/2017 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1221,28/04/2017 17:46,21/04/2017 20:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-5048,28/04/2017 17:41,25/04/2017 3:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-5051,28/04/2017 17:40,25/04/2017 3:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-5050,28/04/2017 17:40,25/04/2017 3:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-5049,28/04/2017 17:40,25/04/2017 3:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-8070,28/04/2017 16:34,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2326,28/04/2017 16:28,24/04/2017 15:59,6.8,200, Information Exposure,nan
CVE-2016-3733,28/04/2017 16:26,20/04/2017 21:59,4.0,284, Improper Access Control,nan
CVE-2017-2332,28/04/2017 16:25,24/04/2017 15:59,9.3,287, Improper Authentication,nan
CVE-2017-8071,28/04/2017 16:24,23/04/2017 5:59,2.1,404, Improper Resource Shutdown or Release,nan
CVE-2017-8102,28/04/2017 15:57,24/04/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3438,28/04/2017 15:57,24/04/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1559,28/04/2017 14:39,21/04/2017 15:59,2.6,200, Information Exposure,nan
CVE-2013-7463,28/04/2017 13:15,19/04/2017 17:59,5.0,330, Use of Insufficiently Random Values,nan
CVE-2016-1558,27/04/2017 19:54,21/04/2017 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1557,27/04/2017 19:53,21/04/2017 15:59,5.0,200, Information Exposure,nan
CVE-2016-1187,27/04/2017 19:53,21/04/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-4293,27/04/2017 19:52,20/04/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0107,27/04/2017 19:51,24/04/2017 6:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0104,27/04/2017 19:50,24/04/2017 6:59,6.5,284, Improper Access Control,nan
CVE-2017-8056,27/04/2017 19:45,22/04/2017 22:59,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4832,27/04/2017 19:16,21/04/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-6903,27/04/2017 19:14,24/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-6902,27/04/2017 19:14,24/04/2017 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6761,27/04/2017 19:13,24/04/2017 6:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3067,27/04/2017 19:06,21/04/2017 20:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-8067,27/04/2017 19:05,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8061,27/04/2017 19:05,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7991,27/04/2017 18:53,22/04/2017 1:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7944,27/04/2017 18:53,24/04/2017 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8082,27/04/2017 18:33,24/04/2017 6:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8066,27/04/2017 18:30,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8076,27/04/2017 18:24,23/04/2017 16:59,7.8,326, Inadequate Encryption Strength,nan
CVE-2017-8075,27/04/2017 18:23,23/04/2017 16:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-8074,27/04/2017 18:23,23/04/2017 16:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-4841,27/04/2017 18:20,21/04/2017 14:59,4.3,20, Improper Input Validation,nan
CVE-2017-8069,27/04/2017 18:13,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3731,27/04/2017 18:07,20/04/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-3732,27/04/2017 18:06,20/04/2017 21:59,4.0,200, Information Exposure,nan
CVE-2017-8078,27/04/2017 18:05,23/04/2017 16:59,5.0,287, Improper Authentication,nan
CVE-2017-8101,27/04/2017 18:00,24/04/2017 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3729,27/04/2017 17:51,20/04/2017 21:59,4.0,284, Improper Access Control,nan
CVE-2017-8103,27/04/2017 17:50,24/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-8072,27/04/2017 17:50,23/04/2017 5:59,7.2,388, 7PK – Errors,nan
CVE-2016-1194,27/04/2017 17:50,21/04/2017 14:59,4.0,399, Resource Management Errors,nan
CVE-2015-1521,27/04/2017 17:46,24/04/2017 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3691,27/04/2017 17:13,24/04/2017 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3114,27/04/2017 17:13,24/04/2017 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3734,27/04/2017 17:05,20/04/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-8063,27/04/2017 17:02,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2316,27/04/2017 16:55,24/04/2017 15:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8068,27/04/2017 16:51,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-8065,27/04/2017 16:50,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1522,27/04/2017 16:48,24/04/2017 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4840,27/04/2017 16:39,21/04/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-2334,27/04/2017 16:37,24/04/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-2324,27/04/2017 16:36,24/04/2017 15:59,5.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-2318,27/04/2017 16:35,24/04/2017 15:59,4.0,200, Information Exposure,nan
CVE-2017-2329,27/04/2017 16:31,24/04/2017 15:59,2.1,287, Improper Authentication,nan
CVE-2016-0721,27/04/2017 16:15,21/04/2017 15:59,4.3,384, Session Fixation,nan
CVE-2017-8062,27/04/2017 16:11,23/04/2017 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1561,27/04/2017 14:49,21/04/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-1560,27/04/2017 14:49,21/04/2017 20:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-2328,27/04/2017 13:36,24/04/2017 15:59,2.1,200, Information Exposure,nan
CVE-2017-2325,27/04/2017 13:35,24/04/2017 15:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4830,27/04/2017 13:33,21/04/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-0720,27/04/2017 13:26,21/04/2017 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7992,27/04/2017 13:22,21/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9954,27/04/2017 13:22,21/04/2017 20:59,5.0,399, Resource Management Errors,nan
CVE-2016-5168,27/04/2017 13:20,21/04/2017 20:59,5.0,346, Origin Validation Error,nan
CVE-2016-3702,27/04/2017 13:20,21/04/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-9980,27/04/2017 1:59,20/04/2017 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9979,27/04/2017 1:59,20/04/2017 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9978,27/04/2017 1:59,20/04/2017 21:59,4.0,200, Information Exposure,nan
CVE-2016-8923,27/04/2017 1:59,20/04/2017 21:59,4.0,200, Information Exposure,nan
CVE-2016-5409,27/04/2017 1:59,20/04/2017 17:59,5.0,200, Information Exposure,nan
CVE-2016-4075,27/04/2017 1:59,21/04/2017 2:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-8285,27/04/2017 1:59,20/04/2017 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5329,27/04/2017 1:59,24/04/2017 6:59,4.9,399, Resource Management Errors,nan
CVE-2016-6519,26/04/2017 19:43,21/04/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4846,26/04/2017 19:39,21/04/2017 14:59,9.3,426, Untrusted Search Path,nan
CVE-2016-4818,26/04/2017 19:33,20/04/2017 18:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-8052,26/04/2017 19:31,22/04/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1198,26/04/2017 18:57,21/04/2017 20:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-1186,26/04/2017 18:19,21/04/2017 20:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-2806,26/04/2017 17:19,20/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-4862,26/04/2017 17:09,20/04/2017 18:59,6.5,20, Improper Input Validation,nan
CVE-2016-1184,26/04/2017 17:08,21/04/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2016-4850,26/04/2017 17:05,20/04/2017 18:59,6.8,284, Improper Access Control,nan
CVE-2016-4829,26/04/2017 17:05,21/04/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-7990,26/04/2017 16:51,21/04/2017 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5401,26/04/2017 16:44,20/04/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1161,26/04/2017 16:44,20/04/2017 21:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5160,26/04/2017 14:18,20/04/2017 20:59,3.5,326, Inadequate Encryption Strength,nan
CVE-2017-5183,26/04/2017 13:31,20/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5158,26/04/2017 13:31,20/04/2017 20:59,5.0,200, Information Exposure,nan
CVE-2017-5156,26/04/2017 13:28,20/04/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8721,26/04/2017 13:27,20/04/2017 18:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-3106,26/04/2017 13:26,13/04/2017 14:59,5.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1148,26/04/2017 13:24,21/04/2017 14:59,4.3,295, Improper Certificate Validation,nan
CVE-2013-7450,26/04/2017 13:22,3/04/2017 15:59,5.0,295, Improper Certificate Validation,nan
CVE-2017-7979,26/04/2017 1:59,19/04/2017 23:59,7.2,20, Improper Input Validation,nan
CVE-2017-5887,26/04/2017 1:59,6/04/2017 14:59,5.0,295, Improper Certificate Validation,nan
CVE-2016-10091,25/04/2017 21:03,21/04/2017 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6341,25/04/2017 19:02,20/04/2017 17:59,2.1,200, Information Exposure,nan
CVE-2016-5310,25/04/2017 18:59,14/04/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5309,25/04/2017 18:58,14/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7892,25/04/2017 18:53,17/04/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2016-4849,25/04/2017 18:42,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4847,25/04/2017 18:42,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7834,25/04/2017 17:41,13/04/2017 17:59,3.3,200, Information Exposure,nan
CVE-2016-6347,25/04/2017 17:38,20/04/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1219,25/04/2017 16:09,20/04/2017 17:59,7.5,287, Improper Authentication,nan
CVE-2017-1161,25/04/2017 15:55,17/04/2017 21:59,7.5,20, Improper Input Validation,nan
CVE-2016-4032,25/04/2017 15:49,13/04/2017 16:59,2.1,284, Improper Access Control,nan
CVE-2016-4030,25/04/2017 15:46,13/04/2017 16:59,4.6,284, Improper Access Control,nan
CVE-2016-4455,25/04/2017 15:44,14/04/2017 18:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-4031,25/04/2017 15:40,13/04/2017 16:59,4.6,284, Improper Access Control,nan
CVE-2016-2567,25/04/2017 15:33,13/04/2017 16:59,2.1,20, Improper Input Validation,nan
CVE-2016-2036,25/04/2017 15:32,13/04/2017 16:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-5410,25/04/2017 14:59,19/04/2017 14:59,2.1,287, Improper Authentication,nan
CVE-2016-4842,25/04/2017 14:56,20/04/2017 18:59,4.3,200, Information Exposure,nan
CVE-2016-6299,25/04/2017 14:32,14/04/2017 18:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8780,25/04/2017 14:31,13/04/2017 16:59,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8223,25/04/2017 14:29,13/04/2017 14:59,4.9,275, Permission Issues,nan
CVE-2015-7740,25/04/2017 14:28,13/04/2017 14:59,4.9,20, Improper Input Validation,nan
CVE-2017-7891,25/04/2017 13:49,17/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4844,25/04/2017 13:48,20/04/2017 18:59,4.3,200, Information Exposure,nan
CVE-2016-1220,25/04/2017 13:39,20/04/2017 18:59,4.0,284, Improper Access Control,nan
CVE-2016-1218,25/04/2017 13:38,20/04/2017 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1217,25/04/2017 13:38,20/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1216,25/04/2017 13:31,20/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1215,25/04/2017 13:31,20/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1214,25/04/2017 13:31,20/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1213,25/04/2017 13:27,20/04/2017 18:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-2947,25/04/2017 13:26,13/04/2017 17:59,6.4,441, Unintended Proxy or Intermediary (‘Confused Deputy’),nan
CVE-2017-7192,25/04/2017 1:59,6/04/2017 14:59,5.0,295, Improper Certificate Validation,nan
CVE-2016-9279,25/04/2017 1:59,18/01/2017 17:59,5.0,416, Use After Free,nan
CVE-2016-9278,25/04/2017 1:59,18/01/2017 17:59,4.9,20, Improper Input Validation,nan
CVE-2017-7896,25/04/2017 0:43,18/04/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7871,25/04/2017 0:42,14/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8256,25/04/2017 0:40,17/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7551,25/04/2017 0:39,17/04/2017 16:59,5.0,399, Resource Management Errors,nan
CVE-2016-7060,25/04/2017 0:39,14/04/2017 18:59,2.1,200, Information Exposure,nan
CVE-2017-7978,25/04/2017 0:37,19/04/2017 22:59,5.0,200, Information Exposure,nan
CVE-2017-7282,25/04/2017 0:36,20/04/2017 2:59,7.1,200, Information Exposure,nan
CVE-2017-1160,25/04/2017 0:30,17/04/2017 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1155,24/04/2017 21:28,13/04/2017 17:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10345,24/04/2017 21:26,18/04/2017 20:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6331,24/04/2017 20:26,20/04/2017 17:59,5.0,284, Improper Access Control,nan
CVE-2016-6337,24/04/2017 20:25,20/04/2017 17:59,5.0,284, Improper Access Control,nan
CVE-2016-6336,24/04/2017 20:25,20/04/2017 17:59,4.0,284, Improper Access Control,nan
CVE-2016-6335,24/04/2017 20:24,20/04/2017 17:59,5.0,200, Information Exposure,nan
CVE-2016-6332,24/04/2017 20:23,20/04/2017 17:59,5.0,200, Information Exposure,nan
CVE-2017-7283,24/04/2017 20:21,20/04/2017 2:59,9.0,20, Improper Input Validation,nan
CVE-2016-4843,24/04/2017 15:13,20/04/2017 18:59,4.3,200, Information Exposure,nan
CVE-2016-6727,24/04/2017 15:06,17/04/2017 16:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-7951,24/04/2017 14:59,21/04/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5312,22/04/2017 14:16,14/04/2017 18:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3104,22/04/2017 14:15,14/04/2017 18:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-2565,22/04/2017 14:15,13/04/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-2566,21/04/2017 19:03,13/04/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1301,21/04/2017 19:03,13/04/2017 17:59,7.5,20, Improper Input Validation,nan
CVE-2017-7408,21/04/2017 17:46,14/04/2017 14:59,5.0,20, Improper Input Validation,nan
CVE-2017-7188,21/04/2017 17:43,14/04/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4875,21/04/2017 17:42,14/04/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7722,21/04/2017 17:36,12/04/2017 16:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-7881,21/04/2017 15:24,15/04/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7946,21/04/2017 15:22,18/04/2017 20:59,4.3,416, Use After Free,nan
CVE-2016-0228,21/04/2017 15:19,17/04/2017 21:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2010-1816,21/04/2017 15:16,13/04/2017 16:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3036,21/04/2017 15:10,17/04/2017 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3037,21/04/2017 15:07,17/04/2017 21:59,3.5,200, Information Exposure,nan
CVE-2016-3038,21/04/2017 14:44,17/04/2017 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7879,21/04/2017 13:04,14/04/2017 18:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7878,21/04/2017 13:04,14/04/2017 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7877,21/04/2017 13:03,14/04/2017 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2005,21/04/2017 1:59,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2003,21/04/2017 1:59,15/06/2013 20:55,6.8,189, Numeric Errors,nan
CVE-2013-2002,21/04/2017 1:59,15/06/2013 20:55,6.8,189, Numeric Errors,nan
CVE-2013-1998,21/04/2017 1:59,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1995,21/04/2017 1:59,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5882,21/04/2017 1:59,16/11/2012 12:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7861,21/04/2017 0:54,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2017-7860,21/04/2017 0:53,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2015-6674,21/04/2017 0:52,13/04/2017 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1821,21/04/2017 0:50,13/04/2017 16:59,7.2,20, Improper Input Validation,nan
CVE-2017-0195,20/04/2017 18:20,12/04/2017 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7866,20/04/2017 17:59,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-8927,20/04/2017 17:35,14/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7859,20/04/2017 17:34,14/04/2017 4:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-8926,20/04/2017 17:24,14/04/2017 16:59,4.0,200, Information Exposure,nan
CVE-2016-8925,20/04/2017 17:23,14/04/2017 16:59,6.8,200, Information Exposure,nan
CVE-2016-0727,20/04/2017 16:34,14/04/2017 18:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4874,20/04/2017 16:27,17/04/2017 15:59,3.5,284, Improper Access Control,nan
CVE-2016-4871,20/04/2017 16:23,17/04/2017 15:59,6.8,399, Resource Management Errors,nan
CVE-2014-3887,20/04/2017 16:16,13/04/2017 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3007,20/04/2017 14:44,12/04/2017 14:59,4.6,426, Untrusted Search Path,nan
CVE-2017-2989,20/04/2017 14:32,12/04/2017 14:59,7.5,20, Improper Input Validation,nan
CVE-2013-6662,20/04/2017 14:26,13/04/2017 17:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-7280,20/04/2017 14:21,12/04/2017 22:59,7.5,20, Improper Input Validation,nan
CVE-2017-7281,20/04/2017 14:18,12/04/2017 22:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-8724,20/04/2017 13:46,13/04/2017 19:59,5.0,200, Information Exposure,nan
CVE-2016-8725,20/04/2017 13:44,13/04/2017 19:59,5.0,200, Information Exposure,nan
CVE-2017-7626,20/04/2017 13:42,13/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7628,20/04/2017 13:41,13/04/2017 3:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7562,20/04/2017 13:41,12/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6143,20/04/2017 13:40,13/04/2017 14:59,7.5,284, Improper Access Control,nan
CVE-2015-7563,20/04/2017 13:40,12/04/2017 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5313,20/04/2017 13:31,12/04/2017 22:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-1132,20/04/2017 13:28,13/04/2017 14:59,5.0,295, Improper Certificate Validation,nan
CVE-2016-8719,20/04/2017 13:00,12/04/2017 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1178,20/04/2017 12:59,12/04/2017 22:59,6.4,284, Improper Access Control,nan
CVE-2017-7719,20/04/2017 12:58,12/04/2017 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8720,20/04/2017 12:58,13/04/2017 19:59,4.3,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-8716,20/04/2017 12:49,12/04/2017 19:59,3.3,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2016-8727,20/04/2017 12:44,13/04/2017 19:59,5.0,200, Information Exposure,nan
CVE-2016-8718,20/04/2017 12:33,12/04/2017 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7564,20/04/2017 12:32,12/04/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8722,20/04/2017 12:30,13/04/2017 19:59,5.0,200, Information Exposure,nan
CVE-2016-8712,20/04/2017 12:30,13/04/2017 19:59,4.3,613, Insufficient Session Expiration,nan
CVE-2016-8723,20/04/2017 12:15,13/04/2017 19:59,7.8,476, NULL Pointer Dereference,nan
CVE-2016-1179,20/04/2017 12:14,12/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8726,20/04/2017 12:13,13/04/2017 19:59,7.8,476, NULL Pointer Dereference,nan
CVE-2016-1886,20/04/2017 1:59,25/05/2016 15:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5856,19/04/2017 19:49,12/04/2017 22:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-4899,19/04/2017 19:49,13/04/2017 17:59,10.0,20, Improper Input Validation,nan
CVE-2016-4898,19/04/2017 19:49,13/04/2017 17:59,10.0,20, Improper Input Validation,nan
CVE-2016-4897,19/04/2017 19:48,12/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4337,19/04/2017 19:47,12/04/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2104,19/04/2017 19:46,13/04/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10122,19/04/2017 19:42,13/04/2017 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10121,19/04/2017 19:42,13/04/2017 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10123,19/04/2017 19:41,13/04/2017 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10120,19/04/2017 19:41,13/04/2017 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10119,19/04/2017 19:40,13/04/2017 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-10118,19/04/2017 19:40,13/04/2017 14:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-10117,19/04/2017 19:39,13/04/2017 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-8284,19/04/2017 19:37,13/04/2017 14:59,6.5,284, Improper Access Control,nan
CVE-2015-8283,19/04/2017 19:37,13/04/2017 14:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8282,19/04/2017 19:37,13/04/2017 14:59,7.5,255, Credentials Management,nan
CVE-2015-8107,19/04/2017 19:36,13/04/2017 14:59,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2015-1839,19/04/2017 19:36,13/04/2017 14:59,4.6,19, Data Processing Errors,nan
CVE-2015-1838,19/04/2017 19:35,13/04/2017 14:59,4.6,19, Data Processing Errors,nan
CVE-2012-6697,19/04/2017 19:29,13/04/2017 14:59,5.0,399, Resource Management Errors,nan
CVE-2016-6348,19/04/2017 19:28,12/04/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2884,19/04/2017 1:59,10/04/2017 3:59,5.0,200, Information Exposure,nan
CVE-2017-3125,18/04/2017 20:47,12/04/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-0179,18/04/2017 16:55,12/04/2017 14:59,6.3,20, Improper Input Validation,nan
CVE-2017-0183,18/04/2017 16:54,12/04/2017 14:59,6.3,20, Improper Input Validation,nan
CVE-2017-0182,18/04/2017 16:54,12/04/2017 14:59,6.3,20, Improper Input Validation,nan
CVE-2017-0186,18/04/2017 16:53,12/04/2017 14:59,6.3,20, Improper Input Validation,nan
CVE-2017-0178,18/04/2017 16:37,12/04/2017 14:59,5.2,20, Improper Input Validation,nan
CVE-2017-0184,18/04/2017 16:36,12/04/2017 14:59,5.2,20, Improper Input Validation,nan
CVE-2017-7462,18/04/2017 15:59,11/04/2017 15:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-7461,18/04/2017 15:56,11/04/2017 15:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7689,18/04/2017 12:16,11/04/2017 21:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-5873,17/04/2017 19:11,11/04/2017 15:59,4.6,428, Unquoted Search Path or Element,nan
CVE-2017-7691,17/04/2017 19:06,11/04/2017 21:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-7893,17/04/2017 19:05,11/04/2017 19:59,6.8,20, Improper Input Validation,nan
CVE-2013-6647,17/04/2017 19:03,11/04/2017 19:59,7.5,416, Use After Free,nan
CVE-2017-7617,17/04/2017 18:19,10/04/2017 14:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8355,17/04/2017 18:18,11/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7625,17/04/2017 18:17,10/04/2017 17:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-8237,17/04/2017 17:07,10/04/2017 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-7695,17/04/2017 16:55,11/04/2017 23:59,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-5011,17/04/2017 16:50,11/04/2017 15:59,4.7,399, Resource Management Errors,nan
CVE-2017-7648,17/04/2017 16:39,10/04/2017 19:59,4.3,798, Use of Hard-coded Credentials,nan
CVE-2016-4989,17/04/2017 16:36,11/04/2017 18:59,6.9,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-7547,17/04/2017 15:44,12/04/2017 10:59,7.5,361, 7PK – Time and State,nan
CVE-2016-4468,17/04/2017 15:44,11/04/2017 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7552,17/04/2017 15:43,12/04/2017 10:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7957,17/04/2017 15:42,12/04/2017 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-7958,17/04/2017 15:38,12/04/2017 10:59,5.0,20, Improper Input Validation,nan
CVE-2017-7345,17/04/2017 13:52,10/04/2017 15:59,5.0,200, Information Exposure,nan
CVE-2016-8235,17/04/2017 13:51,10/04/2017 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-7621,17/04/2017 13:50,11/04/2017 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4446,17/04/2017 13:29,11/04/2017 18:59,6.9,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-4445,17/04/2017 13:16,11/04/2017 18:59,6.9,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-5322,17/04/2017 13:08,11/04/2017 18:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7646,17/04/2017 13:07,10/04/2017 19:59,4.0,200, Information Exposure,nan
CVE-2017-5672,17/04/2017 13:06,11/04/2017 15:59,4.0,200, Information Exposure,nan
CVE-2014-8716,17/04/2017 13:00,11/04/2017 19:59,2.1,125, Out-of-bounds Read,nan
CVE-2016-5041,17/04/2017 12:54,10/04/2017 16:59,5.0,476, NULL Pointer Dereference,nan
CVE-2014-8562,17/04/2017 12:52,11/04/2017 19:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7694,17/04/2017 12:49,11/04/2017 23:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-4444,17/04/2017 12:47,11/04/2017 18:59,6.9,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-10322,17/04/2017 12:47,10/04/2017 18:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-7575,15/04/2017 1:59,6/04/2017 21:59,5.0,200, Information Exposure,nan
CVE-2017-7574,15/04/2017 1:59,6/04/2017 21:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-6412,15/04/2017 1:59,30/03/2017 17:59,6.8,384, Session Fixation,nan
CVE-2015-7292,15/04/2017 1:10,10/04/2017 3:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5983,15/04/2017 1:01,10/04/2017 15:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-6879,15/04/2017 1:00,10/04/2017 15:59,5.0,320, Key Management Errors,nan
CVE-2016-6878,15/04/2017 0:58,10/04/2017 15:59,7.5,20, Improper Input Validation,nan
CVE-2015-7824,15/04/2017 0:42,10/04/2017 15:59,5.0,200, Information Exposure,nan
CVE-2015-7826,15/04/2017 0:40,10/04/2017 15:59,7.5,295, Improper Certificate Validation,nan
CVE-2015-8378,15/04/2017 0:39,10/04/2017 14:59,5.0,200, Information Exposure,nan
CVE-2016-6605,14/04/2017 16:43,10/04/2017 14:59,5.0,284, Improper Access Control,nan
CVE-2016-5078,14/04/2017 16:35,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5068,14/04/2017 15:47,10/04/2017 3:59,7.5,287, Improper Authentication,nan
CVE-2016-5067,14/04/2017 15:47,10/04/2017 3:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-5071,14/04/2017 15:46,10/04/2017 3:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5070,14/04/2017 15:46,10/04/2017 3:59,5.0,255, Credentials Management,nan
CVE-2016-5069,14/04/2017 15:46,10/04/2017 3:59,7.5,613, Insufficient Session Expiration,nan
CVE-2016-5066,14/04/2017 15:41,10/04/2017 3:59,10.0,255, Credentials Management,nan
CVE-2016-5065,14/04/2017 15:40,10/04/2017 3:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-5055,14/04/2017 15:31,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5056,14/04/2017 15:30,10/04/2017 3:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2016-5058,14/04/2017 15:29,10/04/2017 3:59,5.0,284, Improper Access Control,nan
CVE-2016-5057,14/04/2017 15:29,10/04/2017 3:59,5.0,254, 7PK – Security Features,nan
CVE-2016-5052,14/04/2017 15:29,10/04/2017 3:59,5.0,254, 7PK – Security Features,nan
CVE-2016-5059,14/04/2017 15:25,10/04/2017 3:59,4.0,200, Information Exposure,nan
CVE-2016-5054,14/04/2017 15:24,10/04/2017 3:59,5.0,284, Improper Access Control,nan
CVE-2016-5053,14/04/2017 15:19,10/04/2017 3:59,7.5,306, Missing Authentication for Critical Function,nan
CVE-2016-5051,14/04/2017 15:16,10/04/2017 3:59,5.0,200, Information Exposure,nan
CVE-2016-5072,14/04/2017 15:13,10/04/2017 3:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-5642,14/04/2017 15:12,10/04/2017 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6534,14/04/2017 15:11,10/04/2017 3:59,6.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-2960,14/04/2017 14:46,10/04/2017 3:59,5.0,200, Information Exposure,nan
CVE-2016-5682,14/04/2017 14:43,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5077,14/04/2017 14:42,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6021,14/04/2017 14:41,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2883,14/04/2017 14:16,10/04/2017 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2882,14/04/2017 14:16,10/04/2017 3:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-2880,14/04/2017 14:16,10/04/2017 3:59,9.0,287, Improper Authentication,nan
CVE-2016-1517,14/04/2017 14:03,10/04/2017 3:59,4.3,20, Improper Input Validation,nan
CVE-2017-3889,14/04/2017 13:45,7/04/2017 17:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-7274,14/04/2017 13:41,10/04/2017 3:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7270,14/04/2017 13:41,10/04/2017 3:59,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7275,14/04/2017 13:40,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7271,14/04/2017 13:40,10/04/2017 3:59,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2015-7272,14/04/2017 13:39,10/04/2017 3:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7273,14/04/2017 13:26,10/04/2017 3:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-5076,14/04/2017 13:23,10/04/2017 3:59,5.0,200, Information Exposure,nan
CVE-2016-5075,14/04/2017 13:21,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5073,14/04/2017 13:19,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6435,14/04/2017 1:59,15/03/2017 14:59,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8258,13/04/2017 19:57,10/04/2017 3:59,7.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-7260,13/04/2017 19:57,10/04/2017 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-8276,13/04/2017 19:56,10/04/2017 3:59,4.3,200, Information Exposure,nan
CVE-2015-8275,13/04/2017 19:56,10/04/2017 3:59,4.3,284, Improper Access Control,nan
CVE-2016-4334,13/04/2017 19:55,10/04/2017 3:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-2889,13/04/2017 19:51,10/04/2017 3:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2888,13/04/2017 19:39,10/04/2017 3:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2885,13/04/2017 19:38,10/04/2017 3:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2007-6760,13/04/2017 19:38,7/04/2017 21:59,7.5,287, Improper Authentication,nan
CVE-2007-6759,13/04/2017 19:37,7/04/2017 21:59,7.5,287, Improper Authentication,nan
CVE-2015-8255,13/04/2017 18:59,10/04/2017 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2887,13/04/2017 17:59,10/04/2017 3:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2015-2886,13/04/2017 17:59,10/04/2017 3:59,5.0,200, Information Exposure,nan
CVE-2015-6035,13/04/2017 17:07,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6028,13/04/2017 17:07,10/04/2017 3:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6027,13/04/2017 17:06,10/04/2017 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2881,13/04/2017 17:06,10/04/2017 3:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2017-7581,13/04/2017 17:04,7/04/2017 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-7589,13/04/2017 16:18,9/04/2017 1:59,4.0,200, Information Exposure,nan
CVE-2017-7591,13/04/2017 16:16,9/04/2017 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9197,13/04/2017 15:04,7/04/2017 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-7604,13/04/2017 14:15,9/04/2017 14:59,6.8,20, Improper Input Validation,nan
CVE-2017-7603,13/04/2017 13:59,9/04/2017 14:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-7570,13/04/2017 13:50,7/04/2017 4:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2017-7566,13/04/2017 13:39,6/04/2017 16:59,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-6805,13/04/2017 13:37,7/04/2017 19:59,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-6513,13/04/2017 1:59,11/03/2017 6:59,6.5,275, Permission Issues,nan
CVE-2017-7572,12/04/2017 20:48,6/04/2017 18:59,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-7569,12/04/2017 20:46,6/04/2017 17:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-7576,12/04/2017 20:37,6/04/2017 22:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-7579,12/04/2017 20:33,7/04/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6130,12/04/2017 20:18,6/04/2017 14:59,5.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-10319,12/04/2017 19:16,6/04/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-1000307,12/04/2017 18:47,6/04/2017 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4673,12/04/2017 18:47,6/04/2017 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6884,12/04/2017 18:29,6/04/2017 17:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7565,12/04/2017 18:07,6/04/2017 15:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10320,12/04/2017 18:02,6/04/2017 18:59,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-7443,12/04/2017 15:20,5/04/2017 20:59,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2016-6100,12/04/2017 14:58,5/04/2017 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7578,12/04/2017 14:45,7/04/2017 4:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7584,12/04/2017 1:59,7/04/2017 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7448,12/04/2017 1:59,5/04/2017 23:59,4.3,369, Divide By Zero,nan
CVE-2015-9019,11/04/2017 19:57,5/04/2017 21:59,5.0,330, Use of Insufficiently Random Values,nan
CVE-2017-6956,11/04/2017 19:33,5/04/2017 14:59,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6340,11/04/2017 19:23,5/04/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5870,11/04/2017 19:01,4/04/2017 18:59,4.6,476, NULL Pointer Dereference,nan
CVE-2015-1612,11/04/2017 17:28,4/04/2017 17:59,5.0,20, Improper Input Validation,nan
CVE-2015-1611,11/04/2017 17:27,4/04/2017 17:59,5.0,20, Improper Input Validation,nan
CVE-2017-5649,11/04/2017 16:51,4/04/2017 18:59,4.0,200, Information Exposure,nan
CVE-2016-3740,11/04/2017 16:42,4/04/2017 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10318,11/04/2017 15:32,4/04/2017 16:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3930,11/04/2017 15:04,3/04/2017 15:59,5.0,284, Improper Access Control,nan
CVE-2014-3929,11/04/2017 15:03,3/04/2017 15:59,5.0,284, Improper Access Control,nan
CVE-2014-3928,11/04/2017 15:01,3/04/2017 15:59,5.0,284, Improper Access Control,nan
CVE-2017-6181,11/04/2017 13:47,3/04/2017 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-10096,11/04/2017 13:36,1/01/2017 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-0888,11/04/2017 1:59,5/04/2017 20:59,4.3,20, Improper Input Validation,nan
CVE-2017-5950,11/04/2017 1:14,3/04/2017 5:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8790,11/04/2017 1:14,2/04/2017 20:59,5.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8773,11/04/2017 1:13,2/04/2017 20:59,5.0,20, Improper Input Validation,nan
CVE-2017-5949,11/04/2017 1:12,3/04/2017 5:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-2404,11/04/2017 1:11,2/04/2017 20:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8572,11/04/2017 1:11,2/04/2017 20:59,7.8,20, Improper Input Validation,nan
CVE-2016-10226,11/04/2017 1:09,3/04/2017 5:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-10222,11/04/2017 1:09,3/04/2017 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-8768,11/04/2017 1:06,2/04/2017 20:59,9.3,254, 7PK – Security Features,nan
CVE-2016-8774,11/04/2017 1:04,2/04/2017 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8797,11/04/2017 1:03,2/04/2017 20:59,5.0,399, Resource Management Errors,nan
CVE-2015-7847,11/04/2017 1:02,2/04/2017 20:59,4.9,20, Improper Input Validation,nan
CVE-2016-10316,10/04/2017 22:40,3/04/2017 5:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10313,10/04/2017 22:40,3/04/2017 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7380,10/04/2017 22:31,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2014-9825,10/04/2017 22:31,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7383,10/04/2017 22:27,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-2379,10/04/2017 22:16,29/03/2017 20:59,3.3,326, Inadequate Encryption Strength,nan
CVE-2017-6194,10/04/2017 22:09,3/04/2017 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10314,10/04/2017 22:09,3/04/2017 5:59,4.0,200, Information Exposure,nan
CVE-2016-10218,10/04/2017 21:44,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7382,10/04/2017 21:40,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6448,10/04/2017 21:37,3/04/2017 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3927,10/04/2017 21:35,3/04/2017 15:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-8776,10/04/2017 20:28,2/04/2017 20:59,2.1,285, Improper Authorization,nan
CVE-2014-8570,10/04/2017 20:26,2/04/2017 20:59,5.0,200, Information Exposure,nan
CVE-2017-7285,10/04/2017 18:28,29/03/2017 14:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-10312,10/04/2017 17:05,3/04/2017 5:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-4980,10/04/2017 16:47,29/03/2017 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10315,10/04/2017 16:28,3/04/2017 5:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7258,10/04/2017 16:27,29/03/2017 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10217,10/04/2017 16:27,3/04/2017 5:59,4.3,416, Use After Free,nan
CVE-2017-6441,10/04/2017 16:12,3/04/2017 5:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-7154,10/04/2017 1:59,21/09/2016 14:25,7.2,416, Use After Free,nan
CVE-2016-5062,10/04/2017 1:59,29/09/2016 10:59,9.3,669, Incorrect Resource Transfer Between Spheres,nan
CVE-2016-5061,10/04/2017 1:59,29/09/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0242,7/04/2017 23:59,22/10/2016 3:59,4.0,200, Information Exposure,nan
CVE-2014-9916,7/04/2017 23:58,24/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8763,7/04/2017 20:13,2/04/2017 20:59,9.3,664, Improper Control of a Resource Through its Lifetime,nan
CVE-2017-7215,7/04/2017 20:04,21/03/2017 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8764,7/04/2017 20:02,2/04/2017 20:59,4.1,20, Improper Input Validation,nan
CVE-2016-8761,7/04/2017 20:00,2/04/2017 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8760,7/04/2017 19:59,2/04/2017 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8759,7/04/2017 19:59,2/04/2017 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2311,7/04/2017 19:40,30/05/2016 1:59,4.0,255, Credentials Management,nan
CVE-2016-7419,7/04/2017 19:38,17/09/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8762,7/04/2017 19:32,2/04/2017 20:59,1.9,20, Improper Input Validation,nan
CVE-2016-8758,7/04/2017 19:32,2/04/2017 20:59,7.1,20, Improper Input Validation,nan
CVE-2016-8756,7/04/2017 19:31,2/04/2017 20:59,7.1,20, Improper Input Validation,nan
CVE-2017-5849,7/04/2017 18:03,15/03/2017 19:59,4.3,787, Out-of-bounds Write,nan
CVE-2015-2246,7/04/2017 17:51,2/04/2017 20:59,4.3,200, Information Exposure,nan
CVE-2017-2477,7/04/2017 17:15,2/04/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8754,7/04/2017 12:11,2/04/2017 20:59,5.4,798, Use of Hard-coded Credentials,nan
CVE-2014-9137,7/04/2017 12:10,2/04/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6177,6/04/2017 14:56,2/04/2017 20:59,4.0,190, Integer Overflow or Wraparound,nan
CVE-2014-4707,6/04/2017 13:59,2/04/2017 20:59,7.5,284, Improper Access Control,nan
CVE-2017-7381,6/04/2017 13:34,3/04/2017 5:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-6349,6/04/2017 13:33,29/03/2017 20:59,2.1,200, Information Exposure,nan
CVE-2014-9823,6/04/2017 13:13,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9824,6/04/2017 12:56,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0218,6/04/2017 1:59,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8795,5/04/2017 23:59,2/04/2017 20:59,7.1,190, Integer Overflow or Wraparound,nan
CVE-2014-9691,5/04/2017 23:59,2/04/2017 20:59,4.0,200, Information Exposure,nan
CVE-2016-8794,5/04/2017 23:58,2/04/2017 20:59,6.2,284, Improper Access Control,nan
CVE-2016-8792,5/04/2017 23:58,2/04/2017 20:59,6.2,284, Improper Access Control,nan
CVE-2016-8791,5/04/2017 23:58,2/04/2017 20:59,6.2,284, Improper Access Control,nan
CVE-2016-8781,5/04/2017 23:57,2/04/2017 20:59,4.0,399, Resource Management Errors,nan
CVE-2014-9694,5/04/2017 23:55,2/04/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9693,5/04/2017 23:54,2/04/2017 20:59,7.5,19, Data Processing Errors,nan
CVE-2014-9692,5/04/2017 23:53,2/04/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-8803,5/04/2017 23:39,2/04/2017 20:59,4.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-8789,5/04/2017 20:02,2/04/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8273,5/04/2017 19:59,2/04/2017 20:59,6.9,284, Improper Access Control,nan
CVE-2016-8802,5/04/2017 19:52,2/04/2017 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8775,5/04/2017 19:50,2/04/2017 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8793,5/04/2017 19:08,2/04/2017 20:59,6.2,284, Improper Access Control,nan
CVE-2016-8272,5/04/2017 19:03,2/04/2017 20:59,2.1,200, Information Exposure,nan
CVE-2014-9136,5/04/2017 18:51,2/04/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8571,5/04/2017 18:50,2/04/2017 20:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9696,5/04/2017 18:45,2/04/2017 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9695,5/04/2017 18:45,2/04/2017 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9690,5/04/2017 18:32,2/04/2017 20:59,5.0,332, Insufficient Entropy in PRNG,nan
CVE-2016-8796,5/04/2017 18:14,2/04/2017 20:59,7.8,20, Improper Input Validation,nan
CVE-2016-8275,5/04/2017 18:13,2/04/2017 20:59,3.5,20, Improper Input Validation,nan
CVE-2016-8274,5/04/2017 18:11,2/04/2017 20:59,7.2,284, Improper Access Control,nan
CVE-2014-3221,5/04/2017 16:48,2/04/2017 20:59,5.0,399, Resource Management Errors,nan
CVE-2016-8780,5/04/2017 16:26,2/04/2017 20:59,6.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-8798,5/04/2017 16:17,2/04/2017 20:59,7.8,284, Improper Access Control,nan
CVE-2016-8801,5/04/2017 16:16,2/04/2017 20:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-4706,5/04/2017 15:36,2/04/2017 20:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7844,5/04/2017 15:23,2/04/2017 20:59,7.8,20, Improper Input Validation,nan
CVE-2015-8671,5/04/2017 15:09,2/04/2017 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3224,5/04/2017 15:07,2/04/2017 20:59,7.8,399, Resource Management Errors,nan
CVE-2014-3223,5/04/2017 15:06,2/04/2017 20:59,7.8,19, Data Processing Errors,nan
CVE-2015-8670,5/04/2017 14:44,2/04/2017 20:59,4.0,20, Improper Input Validation,nan
CVE-2017-7389,5/04/2017 14:20,1/04/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7388,5/04/2017 14:20,1/04/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7387,5/04/2017 14:20,1/04/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7391,5/04/2017 1:59,1/04/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7390,5/04/2017 1:59,1/04/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7255,5/04/2017 1:59,24/03/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6952,5/04/2017 1:59,16/03/2017 21:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-6949,5/04/2017 1:59,16/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9169,5/04/2017 1:59,23/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9168,5/04/2017 1:59,23/03/2017 6:59,4.3,20, Improper Input Validation,nan
CVE-2016-9167,5/04/2017 1:59,23/03/2017 6:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-4119,5/04/2017 1:59,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10309,5/04/2017 1:59,30/03/2017 7:59,7.5,287, Improper Authentication,nan
CVE-2016-9319,4/04/2017 21:13,31/03/2017 0:59,4.3,295, Improper Certificate Validation,nan
CVE-2017-1154,4/04/2017 21:10,31/03/2017 18:59,4.0,200, Information Exposure,nan
CVE-2016-9707,4/04/2017 21:09,31/03/2017 18:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-8935,4/04/2017 20:46,31/03/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8917,4/04/2017 20:45,31/03/2017 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6036,4/04/2017 20:45,31/03/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6031,4/04/2017 20:45,31/03/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6022,4/04/2017 20:44,31/03/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3222,4/04/2017 20:43,2/04/2017 20:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6209,4/04/2017 18:46,31/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6111,4/04/2017 18:46,31/03/2017 18:59,8.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10273,4/04/2017 18:44,26/03/2017 5:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7541,4/04/2017 18:38,30/03/2017 14:59,4.3,254, 7PK – Security Features,nan
CVE-2016-10307,4/04/2017 18:37,30/03/2017 7:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2014-3931,4/04/2017 18:05,31/03/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10305,4/04/2017 17:23,30/03/2017 7:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2008-7313,4/04/2017 17:19,31/03/2017 16:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-5008,4/04/2017 16:57,31/03/2017 16:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5729,4/04/2017 16:15,23/03/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-9243,4/04/2017 16:00,27/03/2017 17:59,5.0,20, Improper Input Validation,nan
CVE-2014-9822,4/04/2017 15:45,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9821,4/04/2017 15:45,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9820,4/04/2017 15:44,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9819,4/04/2017 15:44,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9818,4/04/2017 15:43,30/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6807,4/04/2017 15:42,28/03/2017 20:59,7.5,284, Improper Access Control,nan
CVE-2014-9817,4/04/2017 15:42,30/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9816,4/04/2017 15:41,30/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2014-9814,4/04/2017 15:40,30/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2014-9813,4/04/2017 15:40,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2016-10308,4/04/2017 15:39,30/03/2017 7:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-10306,4/04/2017 15:39,30/03/2017 7:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2014-9815,4/04/2017 15:37,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2014-9812,4/04/2017 15:36,30/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2014-9811,4/04/2017 15:36,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2014-9810,4/04/2017 15:35,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2014-9809,4/04/2017 15:35,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2014-9808,4/04/2017 15:34,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2014-9807,4/04/2017 15:34,30/03/2017 15:59,4.3,415, Double Free,nan
CVE-2014-9806,4/04/2017 15:33,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2017-7360,4/04/2017 15:32,31/03/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7359,4/04/2017 15:32,31/03/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9805,4/04/2017 15:31,30/03/2017 15:59,4.3,20, Improper Input Validation,nan
CVE-2017-6184,4/04/2017 15:26,30/03/2017 17:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6183,4/04/2017 15:24,30/03/2017 17:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-6846,4/04/2017 15:20,29/03/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0864,4/04/2017 15:20,27/03/2017 17:59,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-0863,4/04/2017 15:19,27/03/2017 17:59,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-9826,4/04/2017 15:09,30/03/2017 15:59,7.5,388, 7PK – Errors,nan
CVE-2017-7361,4/04/2017 15:03,31/03/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7363,4/04/2017 14:59,31/03/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7362,4/04/2017 14:57,31/03/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8234,4/04/2017 14:28,29/03/2017 14:59,4.3,310, Cryptographic Issues,nan
CVE-2017-6439,4/04/2017 1:59,15/03/2017 14:59,1.9,787, Out-of-bounds Write,nan
CVE-2017-6438,4/04/2017 1:59,15/03/2017 14:59,4.4,787, Out-of-bounds Write,nan
CVE-2017-6437,4/04/2017 1:59,15/03/2017 14:59,1.9,125, Out-of-bounds Read,nan
CVE-2016-9460,4/04/2017 1:59,28/03/2017 2:59,5.0,284, Improper Access Control,nan
CVE-2016-9192,4/04/2017 1:59,14/12/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9087,4/04/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9020,4/04/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0855,4/04/2017 1:59,23/03/2017 20:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-4976,3/04/2017 15:14,29/03/2017 20:59,2.1,200, Information Exposure,nan
CVE-2014-6440,3/04/2017 14:21,28/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7290,3/04/2017 13:42,30/03/2017 7:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9924,3/04/2017 13:34,29/03/2017 14:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-1133,1/04/2017 1:59,7/03/2017 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9019,1/04/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7789,1/04/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7788,1/04/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10225,31/03/2017 18:58,27/03/2017 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2017-7304,31/03/2017 17:06,29/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-7301,31/03/2017 17:02,29/03/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2017-7277,31/03/2017 17:02,28/03/2017 6:59,6.6,125, Out-of-bounds Read,nan
CVE-2017-7303,31/03/2017 17:00,29/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-7300,31/03/2017 17:00,29/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-7302,31/03/2017 16:28,29/03/2017 15:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-7299,31/03/2017 16:28,29/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-7274,31/03/2017 12:31,27/03/2017 17:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7191,31/03/2017 11:52,27/03/2017 17:59,7.5,416, Use After Free,nan
CVE-2017-6957,31/03/2017 11:37,27/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5932,31/03/2017 11:24,27/03/2017 15:59,4.6,20, Improper Input Validation,nan
CVE-2017-5899,31/03/2017 11:22,27/03/2017 15:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2017-5330,31/03/2017 10:52,27/03/2017 15:59,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-1143,31/03/2017 10:47,27/03/2017 22:59,3.5,200, Information Exposure,nan
CVE-2017-1142,31/03/2017 10:47,27/03/2017 22:59,4.0,200, Information Exposure,nan
CVE-2015-8026,31/03/2017 10:40,27/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7257,31/03/2017 1:59,24/03/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7256,31/03/2017 1:59,24/03/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7243,31/03/2017 1:59,24/03/2017 15:59,5.0,476, NULL Pointer Dereference,nan
CVE-2017-7230,31/03/2017 1:59,22/03/2017 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5239,31/03/2017 1:59,27/03/2017 21:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2017-5238,31/03/2017 1:59,27/03/2017 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5237,31/03/2017 1:59,27/03/2017 21:59,7.8,287, Improper Authentication,nan
CVE-2016-7783,31/03/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7782,31/03/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7781,31/03/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7780,31/03/2017 1:59,7/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10272,31/03/2017 1:59,24/03/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10271,31/03/2017 1:59,24/03/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8702,31/03/2017 1:59,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2016-8005,30/03/2017 16:48,14/03/2017 22:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8010,30/03/2017 16:42,14/03/2017 22:59,4.6,284, Improper Access Control,nan
CVE-2017-7200,30/03/2017 16:39,21/03/2017 6:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-6907,30/03/2017 15:46,15/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8764,30/03/2017 12:31,27/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8763,30/03/2017 12:31,27/03/2017 17:59,6.8,125, Out-of-bounds Read,nan
CVE-2015-8762,30/03/2017 12:31,27/03/2017 17:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-7275,30/03/2017 1:59,27/03/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6518,30/03/2017 1:59,8/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9457,30/03/2017 1:59,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9456,30/03/2017 1:59,28/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9455,30/03/2017 1:59,28/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9454,30/03/2017 1:59,28/03/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4323,30/03/2017 1:59,6/01/2017 21:59,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2380,30/03/2017 1:59,6/01/2017 21:59,4.3,200, Information Exposure,nan
CVE-2016-2378,30/03/2017 1:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2377,30/03/2017 1:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2376,30/03/2017 1:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2375,30/03/2017 1:59,6/01/2017 21:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-2374,30/03/2017 1:59,6/01/2017 21:59,6.8,200, Information Exposure,nan
CVE-2016-2373,30/03/2017 1:59,6/01/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-2372,30/03/2017 1:59,6/01/2017 21:59,4.9,200, Information Exposure,nan
CVE-2016-2371,30/03/2017 1:59,6/01/2017 21:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-2370,30/03/2017 1:59,6/01/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-2369,30/03/2017 1:59,6/01/2017 21:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-2368,30/03/2017 1:59,6/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2367,30/03/2017 1:59,6/01/2017 21:59,3.5,200, Information Exposure,nan
CVE-2016-2366,30/03/2017 1:59,6/01/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-2365,30/03/2017 1:59,6/01/2017 21:59,4.3,476, NULL Pointer Dereference,nan
CVE-2015-8310,30/03/2017 1:59,27/03/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8309,30/03/2017 1:59,27/03/2017 15:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8960,29/03/2017 18:30,27/03/2017 22:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-6056,29/03/2017 18:05,27/03/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9122,29/03/2017 17:49,28/03/2017 2:59,5.0,284, Improper Access Control,nan
CVE-2016-9121,29/03/2017 17:39,28/03/2017 2:59,6.4,326, Inadequate Encryption Strength,nan
CVE-2016-9737,29/03/2017 17:07,27/03/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9123,29/03/2017 17:05,28/03/2017 2:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-6878,29/03/2017 14:05,27/03/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6366,29/03/2017 14:03,15/03/2017 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7262,29/03/2017 13:57,25/03/2017 0:59,4.9,20, Improper Input Validation,nan
CVE-2015-2263,29/03/2017 13:45,23/03/2017 20:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-9920,29/03/2017 13:41,14/03/2017 22:59,4.3,284, Improper Access Control,nan
CVE-2013-7462,29/03/2017 13:30,14/03/2017 22:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7266,29/03/2017 1:59,26/03/2017 5:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-7264,29/03/2017 1:59,26/03/2017 5:59,6.8,416, Use After Free,nan
CVE-2017-7263,29/03/2017 1:59,26/03/2017 5:59,6.8,125, Out-of-bounds Read,nan
CVE-2017-7261,29/03/2017 1:59,24/03/2017 21:59,4.9,20, Improper Input Validation,nan
CVE-2016-10247,29/03/2017 1:59,16/03/2017 14:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-10227,29/03/2017 1:59,21/02/2017 7:59,7.8,399, Resource Management Errors,nan
CVE-2016-10206,29/03/2017 1:59,3/03/2017 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10205,29/03/2017 1:59,3/03/2017 15:59,7.5,384, Session Fixation,nan
CVE-2016-10203,29/03/2017 1:59,3/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1000006,29/03/2017 1:59,6/10/2016 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1000005,29/03/2017 1:59,6/10/2016 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1000004,29/03/2017 1:59,6/10/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1000003,29/03/2017 1:59,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1000002,29/03/2017 1:59,6/10/2016 14:59,5.8,20, Improper Input Validation,nan
CVE-2014-9772,29/03/2017 1:59,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9760,29/03/2017 1:59,13/02/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5328,29/03/2017 1:59,6/02/2017 6:59,4.9,20, Improper Input Validation,nan
CVE-2015-4078,28/03/2017 18:32,23/03/2017 20:59,3.5,200, Information Exposure,nan
CVE-2015-8993,28/03/2017 18:29,14/03/2017 22:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-8991,28/03/2017 18:28,14/03/2017 22:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0229,28/03/2017 18:03,23/03/2017 20:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-7251,28/03/2017 17:42,23/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7250,28/03/2017 17:42,23/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7249,28/03/2017 17:42,23/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7248,28/03/2017 17:37,23/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7247,28/03/2017 17:37,23/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8628,28/03/2017 17:15,23/03/2017 20:59,4.3,200, Information Exposure,nan
CVE-2013-6446,28/03/2017 17:04,23/03/2017 20:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-5538,28/03/2017 16:52,23/03/2017 16:59,10.0,125, Out-of-bounds Read,nan
CVE-2017-7231,28/03/2017 16:41,22/03/2017 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6002,28/03/2017 15:48,27/03/2017 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-7242,28/03/2017 15:19,23/03/2017 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6191,28/03/2017 14:52,23/03/2017 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6895,28/03/2017 14:47,23/03/2017 20:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-1603,28/03/2017 14:11,23/03/2017 6:59,4.0,200, Information Exposure,nan
CVE-2015-8687,28/03/2017 13:47,23/03/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7279,28/03/2017 13:46,23/03/2017 17:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8862,28/03/2017 1:59,15/02/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10130,28/03/2017 1:59,24/03/2017 15:59,4.3,284, Improper Access Control,nan
CVE-2016-10129,28/03/2017 1:59,24/03/2017 15:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-10128,28/03/2017 1:59,24/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000116,28/03/2017 1:59,21/10/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8679,28/03/2017 1:59,7/04/2016 20:59,7.1,284, Improper Access Control,nan
CVE-2014-8706,28/03/2017 1:59,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2015-8678,27/03/2017 19:20,24/03/2017 14:59,7.1,20, Improper Input Validation,nan
CVE-2015-8556,27/03/2017 19:15,24/03/2017 14:59,10.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6206,27/03/2017 18:32,24/03/2017 15:59,10.0,20, Improper Input Validation,nan
CVE-2016-2225,27/03/2017 18:31,24/03/2017 15:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-2224,27/03/2017 18:29,24/03/2017 15:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2015-4166,27/03/2017 18:08,23/03/2017 20:59,7.5,320, Key Management Errors,nan
CVE-2016-9557,27/03/2017 17:30,23/03/2017 18:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9395,27/03/2017 17:14,23/03/2017 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-3179,27/03/2017 16:56,24/03/2017 15:59,2.1,388, 7PK – Errors,nan
CVE-2016-3178,27/03/2017 16:54,24/03/2017 15:59,2.1,125, Out-of-bounds Read,nan
CVE-2016-10133,27/03/2017 16:54,24/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10132,27/03/2017 16:44,24/03/2017 15:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9264,27/03/2017 16:41,23/03/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8008,27/03/2017 16:40,14/03/2017 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5747,27/03/2017 16:36,23/03/2017 6:59,5.0,284, Improper Access Control,nan
CVE-2016-9276,27/03/2017 15:58,23/03/2017 18:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-9275,27/03/2017 15:58,23/03/2017 18:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-9265,27/03/2017 15:58,23/03/2017 18:59,4.3,369, Divide By Zero,nan
CVE-2016-9011,27/03/2017 15:51,23/03/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8886,27/03/2017 15:35,23/03/2017 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8009,27/03/2017 15:26,14/03/2017 22:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-8627,27/03/2017 14:18,23/03/2017 20:59,5.0,284, Improper Access Control,nan
CVE-2015-8626,27/03/2017 14:06,23/03/2017 20:59,5.0,255, Credentials Management,nan
CVE-2015-8625,27/03/2017 13:50,23/03/2017 20:59,5.0,200, Information Exposure,nan
CVE-2015-8624,27/03/2017 13:47,23/03/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8623,27/03/2017 13:47,23/03/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8622,27/03/2017 13:46,23/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6492,25/03/2017 1:59,5/03/2017 20:59,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5851,25/03/2017 1:59,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-10059,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10057,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10056,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10055,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10054,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10052,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10049,25/03/2017 1:59,23/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6607,25/03/2017 1:59,6/10/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-9556,24/03/2017 15:09,23/03/2017 18:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5757,24/03/2017 15:08,23/03/2017 6:59,7.5,200, Information Exposure,nan
CVE-2016-5752,24/03/2017 15:07,23/03/2017 6:59,5.0,200, Information Exposure,nan
CVE-2016-5751,24/03/2017 14:51,23/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5750,24/03/2017 14:24,23/03/2017 6:59,6.5,284, Improper Access Control,nan
CVE-2016-5749,24/03/2017 14:18,23/03/2017 6:59,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-5748,24/03/2017 14:18,23/03/2017 6:59,2.1,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-1597,24/03/2017 14:17,23/03/2017 6:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-6189,24/03/2017 14:07,15/03/2017 15:59,4.4,426, Untrusted Search Path,nan
CVE-2016-5756,24/03/2017 14:05,23/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5755,24/03/2017 14:05,23/03/2017 6:59,4.3,20, Improper Input Validation,nan
CVE-2014-9915,24/03/2017 14:04,23/03/2017 17:59,4.3,189, Numeric Errors,nan
CVE-2016-5754,24/03/2017 14:02,23/03/2017 6:59,5.0,200, Information Exposure,nan
CVE-2016-4504,24/03/2017 14:01,21/03/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-10058,24/03/2017 13:56,23/03/2017 17:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2016-10046,24/03/2017 13:37,23/03/2017 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8954,24/03/2017 13:37,20/03/2017 16:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-10053,24/03/2017 13:36,23/03/2017 17:59,4.3,369, Divide By Zero,nan
CVE-2016-10048,24/03/2017 13:08,23/03/2017 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10047,24/03/2017 13:08,23/03/2017 17:59,7.1,400, Uncontrolled Resource Consumption,nan
CVE-2014-9840,24/03/2017 12:46,22/03/2017 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9839,24/03/2017 12:40,22/03/2017 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9836,24/03/2017 12:39,22/03/2017 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9835,24/03/2017 12:39,22/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9834,24/03/2017 12:39,22/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9833,24/03/2017 12:39,22/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9832,24/03/2017 12:39,22/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-7205,24/03/2017 1:59,21/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7204,24/03/2017 1:59,21/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-7202,24/03/2017 1:59,21/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5874,24/03/2017 1:59,22/03/2017 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5017,24/03/2017 1:59,21/09/2016 14:25,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4617,24/03/2017 1:59,20/02/2017 8:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-1772,24/03/2017 1:59,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1771,24/03/2017 1:59,24/03/2016 1:59,7.1,19, Data Processing Errors,nan
CVE-2015-2272,24/03/2017 1:59,1/06/2015 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1836,24/03/2017 1:59,21/12/2015 11:59,7.5,284, Improper Access Control,nan
CVE-2015-1772,24/03/2017 1:59,21/12/2015 11:59,4.3,287, Improper Authentication,nan
CVE-2015-0757,24/03/2017 1:59,29/05/2015 15:59,5.0,200, Information Exposure,nan
CVE-2013-2193,24/03/2017 1:59,29/05/2014 14:19,4.3,287, Improper Authentication,nan
CVE-2013-2192,24/03/2017 1:59,24/01/2014 18:55,3.2,287, Improper Authentication,nan
CVE-2012-3376,24/03/2017 1:59,12/07/2012 19:55,7.5,310, Cryptographic Issues,nan
CVE-2012-1574,24/03/2017 1:59,12/04/2012 10:45,6.5,310, Cryptographic Issues,nan
CVE-2009-2197,24/03/2017 1:59,24/03/2016 1:59,4.3,19, Data Processing Errors,nan
CVE-2017-1155,23/03/2017 19:47,20/03/2017 16:59,4.0,200, Information Exposure,nan
CVE-2017-6909,23/03/2017 19:46,15/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-3899,23/03/2017 19:46,14/03/2017 22:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9165,23/03/2017 19:46,20/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2015-8992,23/03/2017 18:19,14/03/2017 22:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-9921,23/03/2017 18:00,14/03/2017 22:59,9.7,264, Permissions Privileges and Access Controls,nan
CVE-2017-6905,23/03/2017 17:43,15/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8990,23/03/2017 17:28,14/03/2017 22:59,5.0,254, 7PK – Security Features,nan
CVE-2015-8988,23/03/2017 17:27,14/03/2017 22:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6803,23/03/2017 17:22,20/03/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8007,23/03/2017 17:14,14/03/2017 22:59,3.0,284, Improper Access Control,nan
CVE-2015-8987,23/03/2017 17:11,14/03/2017 22:59,3.5,284, Improper Access Control,nan
CVE-2015-8986,23/03/2017 15:19,14/03/2017 22:59,4.3,254, 7PK – Security Features,nan
CVE-2017-6550,23/03/2017 15:09,20/03/2017 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-6805,23/03/2017 15:08,20/03/2017 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-7222,23/03/2017 13:55,22/03/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8973,23/03/2017 13:20,20/03/2017 16:59,4.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-9697,23/03/2017 13:19,20/03/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-9696,23/03/2017 13:19,20/03/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9694,23/03/2017 13:19,20/03/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-1146,23/03/2017 10:55,20/03/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2981,23/03/2017 10:49,20/03/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-2406,23/03/2017 10:48,20/03/2017 16:59,4.0,275, Permission Issues,nan
CVE-2015-1610,23/03/2017 10:46,20/03/2017 16:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-4931,22/03/2017 19:46,20/03/2017 20:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-4930,22/03/2017 19:45,20/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4928,22/03/2017 19:43,20/03/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4927,22/03/2017 19:34,20/03/2017 20:59,6.8,20, Improper Input Validation,nan
CVE-2016-4926,22/03/2017 19:24,20/03/2017 20:59,7.5,287, Improper Authentication,nan
CVE-2015-8984,22/03/2017 19:12,20/03/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2015-8983,22/03/2017 19:12,20/03/2017 16:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2014-9939,22/03/2017 19:12,21/03/2017 6:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4929,22/03/2017 17:16,20/03/2017 20:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6908,22/03/2017 13:38,15/03/2017 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8989,22/03/2017 13:28,14/03/2017 22:59,4.0,310, Cryptographic Issues,nan
CVE-2017-6955,22/03/2017 1:59,17/03/2017 9:59,5.0,20, Improper Input Validation,nan
CVE-2016-9985,22/03/2017 1:59,8/03/2017 19:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2015-8981,21/03/2017 19:05,16/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5537,21/03/2017 18:56,15/03/2017 15:59,5.0,200, Information Exposure,nan
CVE-2017-3871,21/03/2017 17:53,17/03/2017 22:59,4.0,200, Information Exposure,nan
CVE-2017-6880,21/03/2017 16:54,17/03/2017 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5358,21/03/2017 15:17,15/03/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8855,21/03/2017 14:30,19/03/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6591,21/03/2017 1:59,9/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6510,21/03/2017 1:59,16/03/2017 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6491,21/03/2017 1:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6490,21/03/2017 1:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6489,21/03/2017 1:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6488,21/03/2017 1:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5233,21/03/2017 1:59,2/03/2017 20:59,6.8,426, Untrusted Search Path,nan
CVE-2017-5232,21/03/2017 1:59,2/03/2017 20:59,6.8,426, Untrusted Search Path,nan
CVE-2017-5231,21/03/2017 1:59,2/03/2017 20:59,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5229,21/03/2017 1:59,2/03/2017 20:59,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5228,21/03/2017 1:59,2/03/2017 20:59,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5803,21/03/2017 1:59,13/02/2017 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6958,20/03/2017 19:18,17/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7313,20/03/2017 17:02,17/03/2017 14:59,4.3,399, Resource Management Errors,nan
CVE-2017-6962,20/03/2017 17:00,17/03/2017 9:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2017-6960,20/03/2017 17:00,17/03/2017 9:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2014-8701,20/03/2017 17:00,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2016-10187,20/03/2017 16:59,16/03/2017 15:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3882,20/03/2017 16:59,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2017-6961,20/03/2017 16:58,17/03/2017 9:59,4.3,20, Improper Input Validation,nan
CVE-2014-8704,20/03/2017 16:58,17/03/2017 14:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8703,20/03/2017 16:58,17/03/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8705,20/03/2017 16:57,17/03/2017 14:59,7.5,20, Improper Input Validation,nan
CVE-2014-8722,20/03/2017 16:56,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2015-3881,20/03/2017 16:55,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2014-8708,20/03/2017 16:55,17/03/2017 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3884,20/03/2017 16:54,17/03/2017 14:59,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-3883,20/03/2017 16:51,17/03/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8723,20/03/2017 16:49,17/03/2017 14:59,5.0,200, Information Exposure,nan
CVE-2014-8707,20/03/2017 16:49,17/03/2017 14:59,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6812,18/03/2017 1:59,11/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6811,18/03/2017 1:59,11/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6810,18/03/2017 1:59,11/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6809,18/03/2017 1:59,11/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6808,18/03/2017 1:59,11/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6556,18/03/2017 1:59,9/03/2017 9:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6555,18/03/2017 1:59,9/03/2017 9:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6541,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6540,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6539,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6538,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6537,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6536,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6535,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6534,18/03/2017 1:59,8/03/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5621,18/03/2017 1:59,13/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5620,18/03/2017 1:59,13/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5505,18/03/2017 1:59,16/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7460,17/03/2017 13:23,14/03/2017 22:59,2.1,284, Improper Access Control,nan
CVE-2017-5937,17/03/2017 13:21,15/03/2017 19:59,2.1,476, NULL Pointer Dereference,nan
CVE-2017-5583,17/03/2017 13:19,15/03/2017 14:59,4.0,200, Information Exposure,nan
CVE-2017-5584,17/03/2017 13:18,15/03/2017 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10246,17/03/2017 13:17,16/03/2017 14:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-0770,17/03/2017 12:26,16/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8982,17/03/2017 12:26,15/03/2017 19:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2015-8894,17/03/2017 12:22,15/03/2017 19:59,4.3,415, Double Free,nan
CVE-2017-6367,17/03/2017 1:59,14/03/2017 9:59,5.0,20, Improper Input Validation,nan
CVE-2016-8673,17/03/2017 1:59,23/11/2016 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8672,17/03/2017 1:59,23/11/2016 11:59,5.0,200, Information Exposure,nan
CVE-2017-6061,16/03/2017 20:24,16/03/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7461,16/03/2017 19:38,14/03/2017 22:59,2.1,284, Improper Access Control,nan
CVE-2017-6848,16/03/2017 19:11,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6847,16/03/2017 19:10,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6841,16/03/2017 19:10,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6840,16/03/2017 19:10,15/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-6842,16/03/2017 19:04,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6055,16/03/2017 19:04,17/02/2017 20:59,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-6844,16/03/2017 18:47,15/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6849,16/03/2017 18:34,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6843,16/03/2017 18:34,15/03/2017 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6845,16/03/2017 18:31,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5522,16/03/2017 18:27,15/03/2017 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6846,16/03/2017 18:17,15/03/2017 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6443,16/03/2017 18:17,15/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8363,16/03/2017 18:04,13/02/2017 21:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9357,16/03/2017 17:54,13/02/2017 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8375,16/03/2017 17:25,13/02/2017 22:59,1.9,255, Credentials Management,nan
CVE-2016-9355,16/03/2017 17:08,13/02/2017 22:59,2.1,255, Credentials Management,nan
CVE-2017-6918,16/03/2017 16:00,15/03/2017 16:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6914,16/03/2017 16:00,15/03/2017 16:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6916,16/03/2017 15:59,15/03/2017 16:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6915,16/03/2017 15:59,15/03/2017 16:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6917,16/03/2017 15:37,15/03/2017 16:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5153,16/03/2017 15:27,13/02/2017 21:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-8374,16/03/2017 15:27,13/02/2017 21:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-5872,16/03/2017 15:20,10/03/2017 2:59,5.0,20, Improper Input Validation,nan
CVE-2016-9892,16/03/2017 15:20,2/03/2017 23:59,4.3,295, Improper Certificate Validation,nan
CVE-2015-2877,16/03/2017 15:19,3/03/2017 11:59,2.1,200, Information Exposure,nan
CVE-2016-8362,16/03/2017 15:12,13/02/2017 21:59,4.0,287, Improper Authentication,nan
CVE-2016-8011,16/03/2017 15:10,14/03/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8994,16/03/2017 14:40,2/03/2017 6:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2017-6877,16/03/2017 1:59,14/03/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6874,16/03/2017 1:59,14/03/2017 9:59,6.9,416, Use After Free,nan
CVE-2017-6798,16/03/2017 1:59,10/03/2017 10:59,9.3,426, Untrusted Search Path,nan
CVE-2017-6394,16/03/2017 1:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5668,16/03/2017 1:59,14/03/2017 14:59,7.5,476, NULL Pointer Dereference,nan
CVE-2016-10148,16/03/2017 1:59,18/01/2017 21:59,4.0,284, Improper Access Control,nan
CVE-2016-10140,16/03/2017 1:59,13/01/2017 9:59,5.0,200, Information Exposure,nan
CVE-2016-10139,16/03/2017 1:59,13/01/2017 9:59,7.2,310, Cryptographic Issues,nan
CVE-2016-10138,16/03/2017 1:59,13/01/2017 9:59,7.2,310, Cryptographic Issues,nan
CVE-2016-10137,16/03/2017 1:59,13/01/2017 9:59,7.2,310, Cryptographic Issues,nan
CVE-2016-10136,16/03/2017 1:59,13/01/2017 9:59,7.2,310, Cryptographic Issues,nan
CVE-2016-10135,16/03/2017 1:59,13/01/2017 9:59,4.3,200, Information Exposure,nan
CVE-2016-10131,16/03/2017 1:59,12/01/2017 6:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-10104,16/03/2017 1:59,23/01/2017 7:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-10103,16/03/2017 1:59,23/01/2017 7:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-10102,16/03/2017 1:59,23/01/2017 7:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-8354,15/03/2017 19:57,13/02/2017 21:59,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-8352,15/03/2017 19:53,13/02/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4057,15/03/2017 18:44,21/02/2017 19:59,5.0,200, Information Exposure,nan
CVE-2017-5674,15/03/2017 18:43,13/03/2017 6:59,5.0,200, Information Exposure,nan
CVE-2017-5999,15/03/2017 18:42,6/03/2017 6:59,5.0,326, Inadequate Encryption Strength,nan
CVE-2014-8688,15/03/2017 18:29,14/03/2017 9:59,5.0,200, Information Exposure,nan
CVE-2016-8368,15/03/2017 18:28,13/02/2017 21:59,5.0,399, Resource Management Errors,nan
CVE-2015-6671,15/03/2017 18:23,13/03/2017 7:59,4.3,200, Information Exposure,nan
CVE-2016-8370,15/03/2017 17:58,13/02/2017 21:59,5.0,327, Use of a Broken or Risky Cryptographic Algorithm,nan
CVE-2017-5161,15/03/2017 17:44,13/02/2017 21:59,9.3,427, Uncontrolled Search Path Element,nan
CVE-2016-7553,15/03/2017 17:31,27/02/2017 22:59,2.1,275, Permission Issues,nan
CVE-2016-8232,15/03/2017 17:27,1/03/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4314,15/03/2017 17:25,11/03/2017 6:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5675,15/03/2017 17:11,13/03/2017 6:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2013-4659,15/03/2017 16:58,14/03/2017 9:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6807,15/03/2017 1:59,13/03/2017 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6506,15/03/2017 1:59,10/03/2017 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6427,15/03/2017 1:59,10/03/2017 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2854,15/03/2017 1:59,2/05/2016 10:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2853,15/03/2017 1:59,2/05/2016 10:59,4.4,284, Improper Access Control,nan
CVE-2016-1599,15/03/2017 1:59,24/03/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1185,15/03/2017 1:59,25/04/2016 18:59,2.6,200, Information Exposure,nan
CVE-2016-10101,15/03/2017 1:59,23/01/2017 7:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-7987,14/03/2017 19:59,13/02/2017 21:59,7.8,19, Data Processing Errors,nan
CVE-2017-6466,14/03/2017 19:33,11/03/2017 6:59,9.3,20, Improper Input Validation,nan
CVE-2017-6465,14/03/2017 19:31,10/03/2017 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5933,14/03/2017 19:27,8/02/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-5815,14/03/2017 19:21,13/02/2017 21:59,7.5,284, Improper Access Control,nan
CVE-2016-5782,14/03/2017 19:17,13/02/2017 21:59,7.5,20, Improper Input Validation,nan
CVE-2014-3926,14/03/2017 19:05,13/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5805,14/03/2017 19:01,13/02/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5802,14/03/2017 18:21,13/02/2017 21:59,6.8,787, Out-of-bounds Write,nan
CVE-2015-4049,14/03/2017 17:49,3/02/2017 19:59,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10172,14/03/2017 16:07,14/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10171,14/03/2017 16:07,14/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10170,14/03/2017 16:06,14/03/2017 14:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5374,14/03/2017 15:36,1/03/2017 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8940,14/03/2017 15:01,7/03/2017 17:59,4.0,200, Information Exposure,nan
CVE-2017-6180,14/03/2017 14:54,13/03/2017 6:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9871,14/03/2017 14:07,3/02/2017 7:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8353,14/03/2017 14:07,13/02/2017 21:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9337,14/03/2017 13:16,13/02/2017 21:59,4.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-8216,14/03/2017 13:04,3/02/2017 7:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5813,14/03/2017 13:03,13/02/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-8211,14/03/2017 12:58,3/02/2017 7:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4409,14/03/2017 12:57,13/03/2017 6:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4408,14/03/2017 12:57,13/03/2017 6:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4407,14/03/2017 12:56,13/03/2017 6:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6544,14/03/2017 1:59,8/03/2017 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6503,14/03/2017 1:59,6/03/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2788,14/03/2017 1:59,10/03/2017 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2787,14/03/2017 1:59,10/03/2017 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2786,14/03/2017 1:59,10/03/2017 10:59,5.0,125, Out-of-bounds Read,nan
CVE-2017-2785,14/03/2017 1:59,10/03/2017 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9006,14/03/2017 1:59,8/03/2017 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1985,14/03/2017 1:59,30/01/2016 15:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-10143,14/03/2017 1:59,20/01/2017 8:59,5.0,200, Information Exposure,nan
CVE-2016-9347,13/03/2017 16:52,13/02/2017 21:59,5.4,254, 7PK – Security Features,nan
CVE-2017-6596,13/03/2017 16:39,10/03/2017 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6129,13/03/2017 15:24,13/02/2017 18:59,5.0,20, Improper Input Validation,nan
CVE-2017-5954,13/03/2017 15:23,10/02/2017 7:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-10224,13/03/2017 15:14,13/02/2017 21:59,6.5,254, 7PK – Security Features,nan
CVE-2016-10043,13/03/2017 14:59,31/01/2017 18:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-9554,13/03/2017 14:58,28/01/2017 12:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2017-6589,10/03/2017 19:31,9/03/2017 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5880,9/03/2017 20:28,4/02/2017 5:59,4.0,20, Improper Input Validation,nan
CVE-2017-5995,9/03/2017 20:09,1/03/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-9720,9/03/2017 19:28,7/03/2017 17:59,5.0,200, Information Exposure,nan
CVE-2017-6511,9/03/2017 19:00,7/03/2017 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8236,9/03/2017 18:59,3/03/2017 18:59,5.0,284, Improper Access Control,nan
CVE-2016-3127,9/03/2017 18:58,3/03/2017 18:59,5.0,200, Information Exposure,nan
CVE-2016-10194,9/03/2017 18:56,3/03/2017 15:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9726,9/03/2017 18:55,7/03/2017 17:59,9.0,20, Improper Input Validation,nan
CVE-2016-9727,9/03/2017 18:54,7/03/2017 17:59,8.5,20, Improper Input Validation,nan
CVE-2016-9730,9/03/2017 18:50,7/03/2017 17:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-2766,9/03/2017 18:40,3/02/2017 7:59,7.5,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2017-1124,9/03/2017 18:38,7/03/2017 17:59,1.9,200, Information Exposure,nan
CVE-2016-9164,9/03/2017 18:32,7/03/2017 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2568,9/03/2017 18:30,13/02/2017 18:59,4.4,116, Improper Encoding or Escaping of Output,nan
CVE-2017-5633,9/03/2017 18:20,6/03/2017 6:59,8.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5933,9/03/2017 17:56,8/03/2017 19:59,4.9,254, 7PK – Security Features,nan
CVE-2016-0919,9/03/2017 17:56,3/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8971,9/03/2017 16:54,7/03/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9740,9/03/2017 2:59,7/03/2017 17:59,7.8,399, Resource Management Errors,nan
CVE-2016-9729,9/03/2017 2:59,7/03/2017 17:59,6.4,287, Improper Authentication,nan
CVE-2016-9725,9/03/2017 2:59,7/03/2017 17:59,5.0,200, Information Exposure,nan
CVE-2016-6522,9/03/2017 2:59,7/03/2017 16:59,4.9,190, Integer Overflow or Wraparound,nan
CVE-2016-6350,9/03/2017 2:59,7/03/2017 16:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-6247,9/03/2017 2:59,7/03/2017 16:59,4.9,20, Improper Input Validation,nan
CVE-2016-6246,9/03/2017 2:59,7/03/2017 16:59,4.9,20, Improper Input Validation,nan
CVE-2016-6243,9/03/2017 2:59,7/03/2017 16:59,4.9,20, Improper Input Validation,nan
CVE-2016-6242,9/03/2017 2:59,7/03/2017 16:59,4.9,189, Numeric Errors,nan
CVE-2016-4950,9/03/2017 2:59,7/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2016-4949,9/03/2017 2:59,7/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2016-4948,9/03/2017 2:59,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4947,9/03/2017 2:59,7/03/2017 16:59,5.0,200, Information Exposure,nan
CVE-2016-4946,9/03/2017 2:59,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2880,9/03/2017 2:59,1/03/2017 21:59,2.1,320, Key Management Errors,nan
CVE-2016-9724,8/03/2017 18:44,7/03/2017 17:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9728,8/03/2017 18:42,7/03/2017 17:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9553,8/03/2017 17:36,28/01/2017 12:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-10193,8/03/2017 17:32,3/03/2017 15:59,7.5,284, Improper Access Control,nan
CVE-2016-7145,8/03/2017 17:06,7/03/2017 15:59,7.5,287, Improper Authentication,nan
CVE-2016-10040,8/03/2017 16:55,7/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5315,8/03/2017 16:52,7/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6244,8/03/2017 16:39,7/03/2017 15:59,7.8,20, Improper Input Validation,nan
CVE-2017-6487,8/03/2017 2:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6483,8/03/2017 2:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6481,8/03/2017 2:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6480,8/03/2017 2:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6479,8/03/2017 2:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6478,8/03/2017 2:59,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6446,8/03/2017 2:59,5/03/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6416,8/03/2017 2:59,6/03/2017 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6411,8/03/2017 2:59,6/03/2017 6:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5865,8/03/2017 1:50,3/03/2017 15:59,4.3,200, Information Exposure,nan
CVE-2017-6509,8/03/2017 1:48,7/03/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5866,8/03/2017 1:45,3/03/2017 15:59,4.0,200, Information Exposure,nan
CVE-2016-9148,8/03/2017 1:41,7/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6649,8/03/2017 1:23,3/02/2017 7:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-6648,8/03/2017 1:10,3/02/2017 7:59,2.1,275, Permission Issues,nan
CVE-2016-10127,8/03/2017 1:07,3/03/2017 15:59,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5235,7/03/2017 16:24,2/03/2017 20:59,6.8,426, Untrusted Search Path,nan
CVE-2017-5234,7/03/2017 15:41,2/03/2017 20:59,6.8,426, Untrusted Search Path,nan
CVE-2017-6485,7/03/2017 14:14,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10063,7/03/2017 14:12,2/03/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10069,7/03/2017 14:11,2/03/2017 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-10067,7/03/2017 14:11,2/03/2017 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10071,7/03/2017 14:10,2/03/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-10060,7/03/2017 13:52,2/03/2017 21:59,4.3,20, Improper Input Validation,nan
CVE-2017-6484,7/03/2017 13:48,5/03/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8814,7/03/2017 13:47,3/03/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8813,7/03/2017 13:46,3/03/2017 16:59,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2017-5613,7/03/2017 13:38,3/03/2017 15:59,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2017-5615,7/03/2017 13:34,3/03/2017 15:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10202,7/03/2017 13:11,3/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10204,7/03/2017 12:58,3/03/2017 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10201,7/03/2017 12:58,3/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8815,7/03/2017 12:56,3/03/2017 16:59,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5616,7/03/2017 12:55,3/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6504,7/03/2017 12:39,6/03/2017 2:59,4.3,20, Improper Input Validation,nan
CVE-2017-6413,7/03/2017 2:59,2/03/2017 6:59,5.0,287, Improper Authentication,nan
CVE-2017-6403,7/03/2017 2:59,2/03/2017 6:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2017-6397,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6396,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6395,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6393,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6392,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6391,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6390,7/03/2017 2:59,2/03/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5977,7/03/2017 2:59,1/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5967,7/03/2017 2:59,14/02/2017 6:59,2.1,200, Information Exposure,nan
CVE-2017-5836,7/03/2017 2:59,3/03/2017 15:59,5.0,415, Double Free,nan
CVE-2017-5834,7/03/2017 2:59,3/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5833,7/03/2017 2:59,3/03/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5832,7/03/2017 2:59,3/03/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5831,7/03/2017 2:59,3/03/2017 15:59,5.5,384, Session Fixation,nan
CVE-2017-3847,7/03/2017 2:59,22/02/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9706,7/03/2017 2:59,15/02/2017 19:59,8.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9010,7/03/2017 2:59,15/02/2017 19:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1000001,7/03/2017 2:59,6/10/2016 14:59,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-9578,7/03/2017 2:59,8/01/2015 15:59,5.0,287, Improper Authentication,nan
CVE-2016-7970,4/03/2017 23:31,3/03/2017 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10066,4/03/2017 23:16,3/03/2017 17:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7408,4/03/2017 23:10,3/03/2017 16:59,6.5,284, Improper Access Control,nan
CVE-2016-4038,4/03/2017 23:06,1/02/2017 15:59,7.2,20, Improper Input Validation,nan
CVE-2016-7409,4/03/2017 23:02,3/03/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-7406,4/03/2017 23:00,3/03/2017 16:59,10.0,20, Improper Input Validation,nan
CVE-2016-10061,4/03/2017 22:56,3/03/2017 17:59,4.3,20, Improper Input Validation,nan
CVE-2016-7407,4/03/2017 22:55,3/03/2017 16:59,10.0,20, Improper Input Validation,nan
CVE-2017-6415,4/03/2017 2:59,2/03/2017 1:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6387,4/03/2017 2:59,2/03/2017 1:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-6319,4/03/2017 2:59,2/03/2017 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5886,4/03/2017 2:59,1/03/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5855,4/03/2017 2:59,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5666,4/03/2017 2:59,1/03/2017 15:59,4.3,416, Use After Free,nan
CVE-2016-8508,4/03/2017 2:59,1/03/2017 15:59,4.3,254, 7PK – Security Features,nan
CVE-2016-8507,4/03/2017 2:59,1/03/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-2879,4/03/2017 2:59,1/03/2017 21:59,2.1,326, Inadequate Encryption Strength,nan
CVE-2016-10228,4/03/2017 2:59,2/03/2017 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-10216,3/03/2017 16:21,10/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10215,3/03/2017 16:17,10/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3995,3/03/2017 16:13,13/02/2017 18:59,5.0,200, Information Exposure,nan
CVE-2016-9339,3/03/2017 15:49,13/02/2017 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5163,3/03/2017 14:54,13/02/2017 21:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-6347,3/03/2017 2:59,1/03/2017 20:59,7.2,125, Out-of-bounds Read,nan
CVE-2017-5982,3/03/2017 2:59,28/02/2017 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5854,3/03/2017 2:59,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5853,3/03/2017 2:59,1/03/2017 15:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2017-5665,3/03/2017 2:59,1/03/2017 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-5504,3/03/2017 2:59,1/03/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5503,3/03/2017 2:59,1/03/2017 15:59,4.3,787, Out-of-bounds Write,nan
CVE-2017-5501,3/03/2017 2:59,1/03/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2017-5499,3/03/2017 2:59,1/03/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9826,3/03/2017 2:59,1/03/2017 15:59,4.3,189, Numeric Errors,nan
CVE-2016-9825,3/03/2017 2:59,1/03/2017 15:59,4.3,189, Numeric Errors,nan
CVE-2016-9824,3/03/2017 2:59,1/03/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-9823,3/03/2017 2:59,1/03/2017 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9820,3/03/2017 2:59,1/03/2017 15:59,4.3,189, Numeric Errors,nan
CVE-2016-9819,3/03/2017 2:59,1/03/2017 15:59,4.3,189, Numeric Errors,nan
CVE-2016-8233,3/03/2017 2:59,1/03/2017 22:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-5932,3/03/2017 2:59,1/03/2017 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8372,2/03/2017 19:16,13/02/2017 21:59,4.3,255, Credentials Management,nan
CVE-2016-8359,2/03/2017 19:13,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8350,2/03/2017 19:13,13/02/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8974,2/03/2017 16:19,23/02/2017 16:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-8492,2/03/2017 16:18,8/02/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-0890,2/03/2017 16:18,3/02/2017 7:59,6.0,200, Information Exposure,nan
CVE-2016-10212,2/03/2017 16:12,8/02/2017 16:59,4.3,200, Information Exposure,nan
CVE-2017-5218,2/03/2017 15:59,2/02/2017 7:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9558,2/03/2017 15:58,28/02/2017 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8387,2/03/2017 15:58,27/02/2017 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9132,2/03/2017 15:47,30/01/2017 22:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2017-2790,2/03/2017 15:41,24/02/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2789,2/03/2017 15:39,24/02/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2791,2/03/2017 15:35,24/02/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-6344,2/03/2017 15:34,27/02/2017 7:59,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5585,2/03/2017 15:29,22/02/2017 16:59,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2017-5159,2/03/2017 15:17,13/02/2017 21:59,7.5,99, Improper Control of Resource Identifiers (‘Resource Injection’),nan
CVE-2016-8348,2/03/2017 15:05,13/02/2017 21:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-6500,2/03/2017 15:02,3/02/2017 19:59,6.8,20, Improper Input Validation,nan
CVE-2017-6197,2/03/2017 2:59,24/02/2017 4:59,4.3,476, NULL Pointer Dereference,nan
CVE-2017-6127,2/03/2017 2:59,21/02/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-6077,2/03/2017 2:59,22/02/2017 23:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2017-5927,2/03/2017 2:59,27/02/2017 7:59,5.0,200, Information Exposure,nan
CVE-2017-5926,2/03/2017 2:59,27/02/2017 7:59,5.0,200, Information Exposure,nan
CVE-2017-5925,2/03/2017 2:59,27/02/2017 7:59,5.0,200, Information Exposure,nan
CVE-2016-9975,2/03/2017 2:59,24/02/2017 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9053,2/03/2017 2:59,21/02/2017 22:59,7.5,129, Improper Validation of Array Index,nan
CVE-2016-9051,2/03/2017 2:59,21/02/2017 22:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-9049,2/03/2017 2:59,21/02/2017 22:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9009,2/03/2017 2:59,24/02/2017 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8998,2/03/2017 2:59,24/02/2017 18:59,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8986,2/03/2017 2:59,22/02/2017 19:59,4.0,284, Improper Access Control,nan
CVE-2016-8915,2/03/2017 2:59,22/02/2017 19:59,4.0,284, Improper Access Control,nan
CVE-2016-8715,2/03/2017 2:59,28/02/2017 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8389,2/03/2017 2:59,28/02/2017 15:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2016-8388,2/03/2017 2:59,28/02/2017 15:59,9.3,125, Out-of-bounds Read,nan
CVE-2016-8386,2/03/2017 2:59,27/02/2017 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8385,2/03/2017 2:59,27/02/2017 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3018,2/03/2017 2:59,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3013,2/03/2017 2:59,22/02/2017 19:59,4.0,19, Data Processing Errors,nan
CVE-2015-8862,2/03/2017 2:59,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8861,2/03/2017 2:59,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8859,2/03/2017 2:59,23/01/2017 21:59,5.0,200, Information Exposure,nan
CVE-2015-8858,2/03/2017 2:59,23/01/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2015-8857,2/03/2017 2:59,23/01/2017 21:59,7.5,254, 7PK – Security Features,nan
CVE-2015-8856,2/03/2017 2:59,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8832,2/03/2017 2:59,9/02/2017 15:59,6.5,284, Improper Access Control,nan
CVE-2015-8831,2/03/2017 2:59,9/02/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8771,2/03/2017 2:59,13/02/2017 18:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-8315,2/03/2017 2:59,23/01/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2015-8034,2/03/2017 2:59,30/01/2017 22:59,2.1,200, Information Exposure,nan
CVE-2015-2794,2/03/2017 2:59,6/02/2017 15:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9994,1/03/2017 23:51,1/03/2017 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9993,1/03/2017 23:51,1/03/2017 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9992,1/03/2017 23:50,1/03/2017 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8347,1/03/2017 23:46,13/02/2017 21:59,5.0,287, Improper Authentication,nan
CVE-2016-8341,1/03/2017 23:45,13/02/2017 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5964,1/03/2017 23:28,12/02/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5961,1/03/2017 23:28,12/02/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5960,1/03/2017 23:07,12/02/2017 4:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5990,1/03/2017 23:05,15/02/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5945,1/03/2017 23:04,10/02/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9261,1/03/2017 14:53,28/02/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9259,1/03/2017 14:53,28/02/2017 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10213,1/03/2017 14:02,8/02/2017 16:59,4.3,200, Information Exposure,nan
CVE-2017-5941,1/03/2017 2:59,9/02/2017 19:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2017-5858,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5606,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5605,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5604,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5603,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5602,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5593,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5592,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5590,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5589,1/03/2017 2:59,9/02/2017 20:59,4.3,346, Origin Validation Error,nan
CVE-2017-5586,1/03/2017 2:59,22/02/2017 16:59,7.5,20, Improper Input Validation,nan
CVE-2017-5169,1/03/2017 2:59,13/02/2017 21:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5168,1/03/2017 2:59,13/02/2017 21:59,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-3833,1/03/2017 2:59,22/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2969,1/03/2017 2:59,15/02/2017 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-2968,1/03/2017 2:59,15/02/2017 6:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-8713,1/03/2017 2:59,10/02/2017 17:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-8711,1/03/2017 2:59,10/02/2017 17:59,6.8,20, Improper Input Validation,nan
CVE-2016-8709,1/03/2017 2:59,10/02/2017 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8636,1/03/2017 2:59,22/02/2017 16:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-8494,1/03/2017 2:59,9/02/2017 15:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3180,28/02/2017 19:22,7/02/2017 17:59,6.8,254, 7PK – Security Features,nan
CVE-2016-8358,28/02/2017 19:02,13/02/2017 22:59,6.0,346, Origin Validation Error,nan
CVE-2016-8355,28/02/2017 19:02,13/02/2017 22:59,9.0,306, Missing Authentication for Critical Function,nan
CVE-2016-4043,28/02/2017 18:53,24/02/2017 20:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8903,28/02/2017 18:52,27/02/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2015-8902,28/02/2017 18:50,27/02/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2015-8901,28/02/2017 18:50,27/02/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2015-8900,28/02/2017 18:11,27/02/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2016-8566,28/02/2017 17:52,13/02/2017 21:59,4.6,255, Credentials Management,nan
CVE-2016-3102,28/02/2017 17:37,9/02/2017 15:59,7.5,254, 7PK – Security Features,nan
CVE-2016-8567,28/02/2017 17:14,13/02/2017 21:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-8364,28/02/2017 15:59,13/02/2017 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10029,28/02/2017 15:38,27/02/2017 22:59,2.1,125, Out-of-bounds Read,nan
CVE-2016-8922,28/02/2017 15:18,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5434,28/02/2017 14:28,30/01/2017 22:59,7.1,399, Resource Management Errors,nan
CVE-2016-10079,28/02/2017 2:37,1/02/2017 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-10003,28/02/2017 2:37,27/01/2017 17:59,5.0,200, Information Exposure,nan
CVE-2016-2781,27/02/2017 19:32,7/02/2017 15:59,2.1,20, Improper Input Validation,nan
CVE-2017-3806,27/02/2017 18:42,3/02/2017 7:59,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-5027,27/02/2017 15:44,24/02/2017 20:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-4042,27/02/2017 15:38,24/02/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-4041,27/02/2017 15:37,24/02/2017 20:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9956,24/02/2017 21:15,22/02/2017 16:59,5.0,284, Improper Access Control,nan
CVE-2016-6173,24/02/2017 21:14,9/02/2017 15:59,7.8,399, Resource Management Errors,nan
CVE-2016-5100,24/02/2017 21:14,13/02/2017 18:59,5.0,330, Use of Insufficiently Random Values,nan
CVE-2016-4341,24/02/2017 21:04,7/02/2017 17:59,5.0,200, Information Exposure,nan
CVE-2016-1502,24/02/2017 20:21,7/02/2017 17:59,7.5,287, Improper Authentication,nan
CVE-2016-10192,24/02/2017 20:20,9/02/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5117,24/02/2017 19:26,31/01/2017 19:59,4.3,254, 7PK – Security Features,nan
CVE-2016-6495,24/02/2017 18:52,7/02/2017 17:59,4.3,200, Information Exposure,nan
CVE-2016-8491,24/02/2017 18:47,1/02/2017 17:59,9.4,798, Use of Hard-coded Credentials,nan
CVE-2015-7331,24/02/2017 18:35,30/01/2017 22:59,4.9,254, 7PK – Security Features,nan
CVE-2017-5145,24/02/2017 13:29,13/02/2017 21:59,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5146,24/02/2017 13:27,13/02/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-6055,24/02/2017 13:25,23/02/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9346,23/02/2017 19:44,13/02/2017 21:59,5.0,310, Cryptographic Issues,nan
CVE-2017-0324,23/02/2017 19:30,15/02/2017 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0323,23/02/2017 19:30,15/02/2017 23:59,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0322,23/02/2017 19:30,15/02/2017 23:59,7.2,129, Improper Validation of Array Index,nan
CVE-2016-8346,23/02/2017 19:27,13/02/2017 21:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-0315,23/02/2017 19:26,15/02/2017 23:59,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0314,23/02/2017 19:26,15/02/2017 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9344,23/02/2017 19:25,13/02/2017 21:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2017-0318,23/02/2017 19:08,15/02/2017 23:59,4.9,20, Improper Input Validation,nan
CVE-2017-0321,23/02/2017 19:06,15/02/2017 23:59,7.2,476, NULL Pointer Dereference,nan
CVE-2017-0309,23/02/2017 19:04,15/02/2017 23:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2017-0308,23/02/2017 19:04,15/02/2017 23:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9910,23/02/2017 18:56,22/02/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9909,23/02/2017 18:56,22/02/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9364,23/02/2017 18:53,13/02/2017 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5727,23/02/2017 18:25,9/02/2017 15:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-5726,23/02/2017 18:20,9/02/2017 15:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-3694,23/02/2017 18:20,15/02/2017 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8979,23/02/2017 18:17,15/02/2017 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4056,23/02/2017 18:16,21/02/2017 19:59,2.1,310, Cryptographic Issues,nan
CVE-2016-9773,23/02/2017 16:09,17/02/2017 2:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5881,23/02/2017 15:59,21/02/2017 7:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5998,23/02/2017 15:09,17/02/2017 7:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-6078,23/02/2017 14:59,21/02/2017 7:59,4.3,20, Improper Input Validation,nan
CVE-2017-6072,23/02/2017 14:56,21/02/2017 7:59,5.0,200, Information Exposure,nan
CVE-2017-6071,23/02/2017 14:55,21/02/2017 7:59,5.0,200, Information Exposure,nan
CVE-2017-6070,23/02/2017 14:55,21/02/2017 7:59,7.5,200, Information Exposure,nan
CVE-2017-6065,23/02/2017 14:53,17/02/2017 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8681,22/02/2017 19:18,15/02/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8680,22/02/2017 19:17,15/02/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8679,22/02/2017 19:17,15/02/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8678,22/02/2017 19:12,15/02/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8652,22/02/2017 19:11,17/02/2017 2:59,4.3,20, Improper Input Validation,nan
CVE-2016-7511,22/02/2017 19:08,17/02/2017 17:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-7510,22/02/2017 18:40,17/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-7111,22/02/2017 18:26,17/02/2017 17:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6190,22/02/2017 18:00,17/02/2017 17:59,4.0,200, Information Exposure,nan
CVE-2016-6189,22/02/2017 17:59,17/02/2017 17:59,4.0,184, Incomplete Blacklist,nan
CVE-2016-6062,22/02/2017 17:54,16/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6871,22/02/2017 17:53,17/02/2017 17:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-6870,22/02/2017 17:53,17/02/2017 17:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-6872,22/02/2017 17:50,17/02/2017 17:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-6191,22/02/2017 17:50,17/02/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5364,22/02/2017 17:49,17/02/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5044,22/02/2017 17:49,17/02/2017 17:59,5.0,787, Out-of-bounds Write,nan
CVE-2016-5043,22/02/2017 17:48,17/02/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5042,22/02/2017 17:48,17/02/2017 17:59,5.0,399, Resource Management Errors,nan
CVE-2016-5040,22/02/2017 17:47,17/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5039,22/02/2017 17:47,17/02/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5038,22/02/2017 17:46,17/02/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5037,22/02/2017 17:42,17/02/2017 17:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-5036,22/02/2017 17:42,17/02/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-5035,22/02/2017 17:41,17/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5034,22/02/2017 17:41,17/02/2017 17:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-5033,22/02/2017 17:41,17/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5032,22/02/2017 16:29,17/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5031,22/02/2017 16:28,17/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5030,22/02/2017 16:25,17/02/2017 17:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-5029,22/02/2017 16:25,17/02/2017 17:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-5028,22/02/2017 16:21,17/02/2017 17:59,4.3,476, NULL Pointer Dereference,nan
CVE-2014-9905,22/02/2017 16:18,17/02/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7762,22/02/2017 15:17,20/02/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7761,22/02/2017 15:14,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7759,22/02/2017 15:11,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7667,22/02/2017 15:10,20/02/2017 8:59,5.0,20, Improper Input Validation,nan
CVE-2016-7666,22/02/2017 14:33,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-4685,21/02/2017 23:50,20/02/2017 8:59,4.3,326, Inadequate Encryption Strength,nan
CVE-2016-4670,21/02/2017 23:46,20/02/2017 8:59,2.1,255, Credentials Management,nan
CVE-2016-4780,21/02/2017 23:33,20/02/2017 8:59,9.3,476, NULL Pointer Dereference,nan
CVE-2016-7614,21/02/2017 23:09,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7582,21/02/2017 22:57,20/02/2017 8:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-7581,21/02/2017 22:57,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2016-7765,21/02/2017 19:41,20/02/2017 8:59,2.1,200, Information Exposure,nan
CVE-2016-7742,21/02/2017 19:38,20/02/2017 8:59,6.8,20, Improper Input Validation,nan
CVE-2016-7580,21/02/2017 19:17,20/02/2017 8:59,4.3,20, Improper Input Validation,nan
CVE-2016-7630,21/02/2017 18:26,20/02/2017 8:59,7.5,254, 7PK – Security Features,nan
CVE-2016-7583,21/02/2017 16:18,20/02/2017 8:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-7577,21/02/2017 16:16,20/02/2017 8:59,4.3,200, Information Exposure,nan
CVE-2016-4681,21/02/2017 15:39,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4683,21/02/2017 15:38,20/02/2017 8:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4721,21/02/2017 15:03,20/02/2017 8:59,4.3,254, 7PK – Security Features,nan
CVE-2016-7153,19/02/2017 6:22,6/09/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-7152,19/02/2017 6:22,6/09/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-4845,19/02/2017 6:20,24/09/2016 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3981,19/02/2017 6:19,13/04/2016 16:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000033,19/02/2017 6:16,25/10/2016 14:29,4.3,295, Improper Certificate Validation,nan
CVE-2016-1000007,19/02/2017 6:16,7/10/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000001,19/02/2017 6:16,7/10/2016 18:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-8836,19/02/2017 6:15,30/03/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2146,19/02/2017 6:03,22/09/2016 17:59,4.3,20, Improper Input Validation,nan
CVE-2012-4103,19/02/2017 5:53,2/10/2013 22:55,6.8,20, Improper Input Validation,nan
CVE-2005-3179,19/02/2017 5:09,12/10/2005 13:03,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-9831,18/02/2017 2:59,17/02/2017 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9829,18/02/2017 2:59,17/02/2017 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9828,18/02/2017 2:59,17/02/2017 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9827,18/02/2017 2:59,17/02/2017 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9139,18/02/2017 2:59,17/02/2017 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9369,17/02/2017 18:12,13/02/2017 21:59,10.0,287, Improper Authentication,nan
CVE-2016-9367,17/02/2017 18:11,13/02/2017 21:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2016-9365,17/02/2017 18:09,13/02/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-9363,17/02/2017 18:09,13/02/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9371,17/02/2017 18:08,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9361,17/02/2017 18:08,13/02/2017 21:59,7.5,287, Improper Authentication,nan
CVE-2016-9348,17/02/2017 18:07,13/02/2017 21:59,2.1,255, Credentials Management,nan
CVE-2016-9366,17/02/2017 18:06,13/02/2017 21:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2017-5157,17/02/2017 17:51,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2274,17/02/2017 17:50,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5357,17/02/2017 17:48,17/02/2017 2:59,5.0,416, Use After Free,nan
CVE-2016-5811,17/02/2017 17:48,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6866,17/02/2017 17:43,15/02/2017 19:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-5818,17/02/2017 17:37,13/02/2017 21:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-6832,17/02/2017 17:34,15/02/2017 19:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5417,17/02/2017 17:31,17/02/2017 2:59,5.0,399, Resource Management Errors,nan
CVE-2016-8369,17/02/2017 17:02,13/02/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6077,17/02/2017 17:00,15/02/2017 19:59,6.8,284, Improper Access Control,nan
CVE-2016-8378,17/02/2017 16:57,13/02/2017 21:59,5.0,255, Credentials Management,nan
CVE-2016-1888,17/02/2017 16:56,15/02/2017 15:59,5.0,287, Improper Authentication,nan
CVE-2016-8361,17/02/2017 16:34,13/02/2017 21:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-8360,17/02/2017 15:12,13/02/2017 21:59,6.8,415, Double Free,nan
CVE-2016-5798,17/02/2017 15:07,13/02/2017 21:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9353,17/02/2017 14:56,13/02/2017 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6060,17/02/2017 14:40,15/02/2017 19:59,4.0,200, Information Exposure,nan
CVE-2016-7477,17/02/2017 14:37,15/02/2017 21:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9005,17/02/2017 14:35,8/02/2017 22:59,7.5,284, Improper Access Control,nan
CVE-2016-7393,17/02/2017 14:33,15/02/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-1880,17/02/2017 14:32,15/02/2017 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8357,17/02/2017 14:11,13/02/2017 21:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8675,17/02/2017 14:10,15/02/2017 21:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9356,17/02/2017 14:09,13/02/2017 21:59,4.6,284, Improper Access Control,nan
CVE-2016-7499,17/02/2017 14:05,15/02/2017 21:59,4.3,369, Divide By Zero,nan
CVE-2017-5992,17/02/2017 14:00,15/02/2017 19:59,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-8676,17/02/2017 13:55,15/02/2017 21:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-5786,17/02/2017 13:52,13/02/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-5796,17/02/2017 13:46,13/02/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1883,17/02/2017 13:38,15/02/2017 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9354,17/02/2017 13:36,13/02/2017 21:59,7.1,399, Resource Management Errors,nan
CVE-2017-5141,17/02/2017 13:13,13/02/2017 21:59,6.5,384, Session Fixation,nan
CVE-2016-4396,17/02/2017 2:59,28/10/2016 21:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4395,17/02/2017 2:59,28/10/2016 21:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4394,17/02/2017 2:59,28/10/2016 21:59,5.8,254, 7PK – Security Features,nan
CVE-2016-4393,17/02/2017 2:59,28/10/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1907,17/02/2017 2:59,19/01/2016 5:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8651,17/02/2017 2:59,28/12/2015 23:59,9.3,189, Numeric Errors,nan
CVE-2015-8645,17/02/2017 2:59,28/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8460,17/02/2017 2:59,28/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8459,17/02/2017 2:59,28/12/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8457,17/02/2017 2:59,10/12/2015 6:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8455,17/02/2017 2:59,10/12/2015 6:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8453,17/02/2017 2:59,10/12/2015 6:00,4.3,200, Information Exposure,nan
CVE-2015-8451,17/02/2017 2:59,10/12/2015 6:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8446,17/02/2017 2:59,10/12/2015 6:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8445,17/02/2017 2:59,10/12/2015 6:00,9.3,189, Numeric Errors,nan
CVE-2015-8444,17/02/2017 2:59,10/12/2015 6:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8443,17/02/2017 2:59,10/12/2015 6:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8440,17/02/2017 2:59,10/12/2015 6:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8438,17/02/2017 2:59,10/12/2015 6:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8419,17/02/2017 2:59,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8418,17/02/2017 2:59,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8417,17/02/2017 2:59,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8416,17/02/2017 2:59,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8415,17/02/2017 2:59,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6679,17/02/2017 2:59,22/09/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-6678,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6677,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6676,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5588,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5587,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5582,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5580,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5579,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5578,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5577,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5576,17/02/2017 2:59,22/09/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-5575,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5572,17/02/2017 2:59,22/09/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-5571,17/02/2017 2:59,22/09/2015 10:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5568,17/02/2017 2:59,22/09/2015 10:59,10.0,20, Improper Input Validation,nan
CVE-2015-5567,17/02/2017 2:59,22/09/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4877,17/02/2017 2:59,29/10/2014 10:55,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4345,17/02/2017 2:59,30/11/2011 4:05,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5028,17/02/2017 2:59,30/11/2011 4:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5143,16/02/2017 16:33,13/02/2017 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5166,16/02/2017 16:13,13/02/2017 21:59,5.0,200, Information Exposure,nan
CVE-2017-5165,16/02/2017 16:11,13/02/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5162,16/02/2017 16:09,13/02/2017 21:59,10.0,306, Missing Authentication for Critical Function,nan
CVE-2017-5164,16/02/2017 16:08,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6171,16/02/2017 15:03,9/02/2017 15:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-1889,16/02/2017 14:58,15/02/2017 15:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-5900,16/02/2017 14:45,8/02/2017 22:59,4.3,200, Information Exposure,nan
CVE-2016-8659,16/02/2017 14:38,13/02/2017 18:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2017-5595,16/02/2017 14:09,6/02/2017 17:59,2.1,200, Information Exposure,nan
CVE-2017-5151,16/02/2017 13:57,13/02/2017 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8376,16/02/2017 13:56,13/02/2017 21:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-8356,16/02/2017 13:55,13/02/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4547,16/02/2017 13:40,13/02/2017 18:59,5.0,20, Improper Input Validation,nan
CVE-2016-4546,16/02/2017 13:39,13/02/2017 18:59,2.1,20, Improper Input Validation,nan
CVE-2016-10223,16/02/2017 13:34,14/02/2017 6:59,3.5,284, Improper Access Control,nan
CVE-2015-8750,16/02/2017 13:31,13/02/2017 18:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-5953,15/02/2017 15:31,1/02/2017 22:59,4.3,200, Information Exposure,nan
CVE-2016-6115,15/02/2017 14:14,1/02/2017 22:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0203,15/02/2017 14:13,8/02/2017 22:59,2.1,200, Information Exposure,nan
CVE-2017-1128,15/02/2017 14:09,8/02/2017 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2924,15/02/2017 14:09,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8936,15/02/2017 13:55,9/02/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0371,15/02/2017 13:54,1/02/2017 21:59,1.9,200, Information Exposure,nan
CVE-2016-0206,15/02/2017 13:46,8/02/2017 22:59,2.1,20, Improper Input Validation,nan
CVE-2016-5934,15/02/2017 13:39,8/02/2017 22:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-9748,15/02/2017 13:38,8/02/2017 19:59,4.0,200, Information Exposure,nan
CVE-2016-8936,15/02/2017 13:38,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0214,15/02/2017 13:33,8/02/2017 22:59,6.8,284, Improper Access Control,nan
CVE-2016-5918,15/02/2017 13:19,8/02/2017 22:59,1.9,200, Information Exposure,nan
CVE-2016-5935,15/02/2017 13:15,2/02/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-1127,15/02/2017 13:14,8/02/2017 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2992,15/02/2017 13:13,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0210,15/02/2017 13:13,8/02/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-8954,15/02/2017 12:49,8/02/2017 22:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-9963,15/02/2017 12:47,1/02/2017 15:59,2.6,320, Key Management Errors,nan
CVE-2016-0202,15/02/2017 12:39,8/02/2017 22:59,2.1,200, Information Exposure,nan
CVE-2016-6032,15/02/2017 12:34,8/02/2017 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6001,15/02/2017 12:32,1/02/2017 22:59,3.5,918, Server-Side Request Forgery (SSRF),nan
CVE-2015-7494,14/02/2017 18:45,8/02/2017 22:59,1.7,284, Improper Access Control,nan
CVE-2015-7418,14/02/2017 18:19,8/02/2017 22:59,2.1,200, Information Exposure,nan
CVE-2016-9008,13/02/2017 22:43,1/02/2017 22:59,5.0,284, Improper Access Control,nan
CVE-2016-8963,13/02/2017 22:42,1/02/2017 22:59,2.1,200, Information Exposure,nan
CVE-2016-8961,13/02/2017 22:39,1/02/2017 20:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-8938,13/02/2017 22:38,1/02/2017 22:59,10.0,284, Improper Access Control,nan
CVE-2016-8981,13/02/2017 22:35,1/02/2017 20:59,2.1,200, Information Exposure,nan
CVE-2016-8966,13/02/2017 22:35,1/02/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-8942,13/02/2017 22:28,1/02/2017 20:59,3.5,284, Improper Access Control,nan
CVE-2016-8980,13/02/2017 22:25,1/02/2017 20:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-8977,13/02/2017 22:23,1/02/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-8943,13/02/2017 22:22,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8919,13/02/2017 22:20,1/02/2017 22:59,7.8,399, Resource Management Errors,nan
CVE-2016-7164,13/02/2017 21:55,7/02/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2016-8921,13/02/2017 21:52,1/02/2017 20:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-6199,13/02/2017 21:51,7/02/2017 15:59,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-6104,13/02/2017 21:48,7/02/2017 16:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-6068,13/02/2017 21:31,1/02/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-5985,13/02/2017 21:29,1/02/2017 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5984,13/02/2017 21:26,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5964,13/02/2017 21:25,1/02/2017 20:59,5.0,284, Improper Access Control,nan
CVE-2016-5902,13/02/2017 21:25,8/02/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5896,13/02/2017 21:25,1/02/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-3046,13/02/2017 21:22,1/02/2017 20:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-3034,13/02/2017 21:21,1/02/2017 20:59,2.1,326, Inadequate Encryption Strength,nan
CVE-2016-3020,13/02/2017 20:12,7/02/2017 16:59,4.3,284, Improper Access Control,nan
CVE-2016-2942,13/02/2017 19:50,1/02/2017 22:59,6.0,284, Improper Access Control,nan
CVE-2016-2866,13/02/2017 19:49,8/02/2017 19:59,4.0,200, Information Exposure,nan
CVE-2016-0320,13/02/2017 19:44,1/02/2017 22:59,4.0,284, Improper Access Control,nan
CVE-2015-7493,13/02/2017 19:41,8/02/2017 22:59,1.9,200, Information Exposure,nan
CVE-2016-3043,13/02/2017 17:48,1/02/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-6034,13/02/2017 17:33,1/02/2017 20:59,4.0,200, Information Exposure,nan
CVE-2017-3315,11/02/2017 2:59,27/01/2017 22:59,4.0,200, Information Exposure,nan
CVE-2017-3292,11/02/2017 2:59,27/01/2017 22:59,3.5,200, Information Exposure,nan
CVE-2017-3283,11/02/2017 2:59,27/01/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2017-3280,11/02/2017 2:59,27/01/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2017-3277,11/02/2017 2:59,27/01/2017 22:59,3.5,200, Information Exposure,nan
CVE-2017-3245,11/02/2017 2:59,27/01/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-3236,11/02/2017 2:59,27/01/2017 22:59,4.3,20, Improper Input Validation,nan
CVE-2016-9216,11/02/2017 2:59,26/01/2017 7:59,5.0,399, Resource Management Errors,nan
CVE-2016-8330,11/02/2017 2:59,27/01/2017 22:59,4.3,284, Improper Access Control,nan
CVE-2016-8329,11/02/2017 2:59,27/01/2017 22:59,5.8,254, 7PK – Security Features,nan
CVE-2016-8325,11/02/2017 2:59,27/01/2017 22:59,6.4,284, Improper Access Control,nan
CVE-2016-8324,11/02/2017 2:59,27/01/2017 22:59,5.0,284, Improper Access Control,nan
CVE-2016-8323,11/02/2017 2:59,27/01/2017 22:59,5.5,284, Improper Access Control,nan
CVE-2016-8322,11/02/2017 2:59,27/01/2017 22:59,4.0,200, Information Exposure,nan
CVE-2016-8320,11/02/2017 2:59,27/01/2017 22:59,5.8,284, Improper Access Control,nan
CVE-2016-8319,11/02/2017 2:59,27/01/2017 22:59,5.8,284, Improper Access Control,nan
CVE-2016-8317,11/02/2017 2:59,27/01/2017 22:59,3.5,284, Improper Access Control,nan
CVE-2016-8316,11/02/2017 2:59,27/01/2017 22:59,4.9,284, Improper Access Control,nan
CVE-2016-8315,11/02/2017 2:59,27/01/2017 22:59,5.5,284, Improper Access Control,nan
CVE-2016-8314,11/02/2017 2:59,27/01/2017 22:59,3.5,254, 7PK – Security Features,nan
CVE-2016-8313,11/02/2017 2:59,27/01/2017 22:59,3.5,200, Information Exposure,nan
CVE-2016-8312,11/02/2017 2:59,27/01/2017 22:59,5.8,284, Improper Access Control,nan
CVE-2016-8311,11/02/2017 2:59,27/01/2017 22:59,4.0,284, Improper Access Control,nan
CVE-2016-8310,11/02/2017 2:59,27/01/2017 22:59,7.5,254, 7PK – Security Features,nan
CVE-2016-8309,11/02/2017 2:59,27/01/2017 22:59,4.0,284, Improper Access Control,nan
CVE-2016-8307,11/02/2017 2:59,27/01/2017 22:59,5.0,284, Improper Access Control,nan
CVE-2016-8306,11/02/2017 2:59,27/01/2017 22:59,5.5,254, 7PK – Security Features,nan
CVE-2016-8305,11/02/2017 2:59,27/01/2017 22:59,1.9,200, Information Exposure,nan
CVE-2016-8304,11/02/2017 2:59,27/01/2017 22:59,4.9,284, Improper Access Control,nan
CVE-2016-8303,11/02/2017 2:59,27/01/2017 22:59,5.8,254, 7PK – Security Features,nan
CVE-2016-8302,11/02/2017 2:59,27/01/2017 22:59,4.0,200, Information Exposure,nan
CVE-2016-8300,11/02/2017 2:59,27/01/2017 22:59,3.5,284, Improper Access Control,nan
CVE-2016-8299,11/02/2017 2:59,27/01/2017 22:59,6.5,284, Improper Access Control,nan
CVE-2016-8298,11/02/2017 2:59,27/01/2017 22:59,5.5,284, Improper Access Control,nan
CVE-2016-8297,11/02/2017 2:59,27/01/2017 22:59,5.5,284, Improper Access Control,nan
CVE-2016-8282,11/02/2017 2:59,27/01/2017 22:59,5.8,284, Improper Access Control,nan
CVE-2016-8215,11/02/2017 2:59,25/01/2017 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8214,11/02/2017 2:59,25/01/2017 11:59,4.6,275, Permission Issues,nan
CVE-2016-8213,11/02/2017 2:59,23/01/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6117,11/02/2017 2:59,1/02/2017 21:59,5.0,200, Information Exposure,nan
CVE-2016-6105,11/02/2017 2:59,1/02/2017 21:59,6.4,284, Improper Access Control,nan
CVE-2016-5623,11/02/2017 2:59,27/01/2017 22:59,5.5,254, 7PK – Security Features,nan
CVE-2016-5614,11/02/2017 2:59,27/01/2017 22:59,4.0,200, Information Exposure,nan
CVE-2014-9527,11/02/2017 2:59,6/01/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2012-0213,11/02/2017 2:59,7/08/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2016-2941,10/02/2017 18:45,1/02/2017 22:59,2.1,200, Information Exposure,nan
CVE-2017-5368,10/02/2017 2:59,6/02/2017 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5367,10/02/2017 2:59,6/02/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7147,10/02/2017 2:59,4/02/2017 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3029,10/02/2017 2:59,1/02/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3027,10/02/2017 2:59,1/02/2017 20:59,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-3024,10/02/2017 2:59,1/02/2017 20:59,2.1,200, Information Exposure,nan
CVE-2016-3023,10/02/2017 2:59,1/02/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-3022,10/02/2017 2:59,1/02/2017 20:59,4.0,275, Permission Issues,nan
CVE-2016-3021,10/02/2017 2:59,1/02/2017 20:59,4.0,200, Information Exposure,nan
CVE-2016-10098,10/02/2017 2:59,5/02/2017 18:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0310,10/02/2017 2:59,8/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0308,10/02/2017 2:59,8/02/2017 22:59,4.0,284, Improper Access Control,nan
CVE-2016-0307,10/02/2017 2:59,8/02/2017 22:59,4.0,200, Information Exposure,nan
CVE-2016-0305,10/02/2017 2:59,8/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6096,9/02/2017 22:29,7/02/2017 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6131,9/02/2017 22:28,7/02/2017 15:59,5.0,20, Improper Input Validation,nan
CVE-2016-6269,9/02/2017 22:19,30/01/2017 22:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6097,9/02/2017 22:19,7/02/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-6094,9/02/2017 22:19,7/02/2017 16:59,4.0,200, Information Exposure,nan
CVE-2016-6092,9/02/2017 22:19,7/02/2017 16:59,2.1,200, Information Exposure,nan
CVE-2016-9639,9/02/2017 22:08,7/02/2017 17:59,7.5,284, Improper Access Control,nan
CVE-2017-5137,9/02/2017 21:59,5/02/2017 18:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-10154,9/02/2017 21:55,6/02/2017 6:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3814,9/02/2017 21:41,3/02/2017 7:59,5.0,20, Improper Input Validation,nan
CVE-2016-6044,9/02/2017 21:38,1/02/2017 20:59,4.0,284, Improper Access Control,nan
CVE-2016-6267,9/02/2017 21:37,30/01/2017 22:59,6.5,20, Improper Input Validation,nan
CVE-2016-6043,9/02/2017 21:37,1/02/2017 20:59,4.4,384, Session Fixation,nan
CVE-2016-5949,9/02/2017 21:37,1/02/2017 20:59,4.0,254, 7PK – Security Features,nan
CVE-2016-5948,9/02/2017 21:36,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5576,9/02/2017 21:33,6/02/2017 6:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-8934,9/02/2017 21:33,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3045,9/02/2017 21:26,1/02/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-6045,9/02/2017 21:25,1/02/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5950,9/02/2017 21:25,1/02/2017 20:59,4.0,255, Credentials Management,nan
CVE-2016-8918,9/02/2017 21:21,1/02/2017 20:59,4.3,255, Credentials Management,nan
CVE-2017-5550,9/02/2017 19:15,6/02/2017 6:59,2.1,200, Information Exposure,nan
CVE-2016-6042,9/02/2017 19:10,1/02/2017 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6268,9/02/2017 19:01,30/01/2017 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6266,9/02/2017 19:00,30/01/2017 22:59,6.5,20, Improper Input Validation,nan
CVE-2016-6046,9/02/2017 19:00,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6072,9/02/2017 18:56,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5980,9/02/2017 18:48,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10150,9/02/2017 17:06,6/02/2017 6:59,10.0,416, Use After Free,nan
CVE-2016-6020,9/02/2017 17:03,1/02/2017 20:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-8967,9/02/2017 15:11,1/02/2017 21:59,2.1,255, Credentials Management,nan
CVE-2016-10153,9/02/2017 14:57,6/02/2017 6:59,7.2,399, Resource Management Errors,nan
CVE-2016-6000,8/02/2017 19:04,1/02/2017 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5937,8/02/2017 19:03,1/02/2017 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5952,8/02/2017 18:52,1/02/2017 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5951,8/02/2017 18:51,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9772,8/02/2017 18:46,6/02/2017 17:59,5.0,200, Information Exposure,nan
CVE-2017-5879,8/02/2017 18:44,6/02/2017 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9532,8/02/2017 18:43,6/02/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6059,8/02/2017 18:42,1/02/2017 20:59,7.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2017-5577,8/02/2017 18:32,6/02/2017 6:59,4.9,388, 7PK – Errors,nan
CVE-2016-5822,8/02/2017 18:23,27/01/2017 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-6122,8/02/2017 18:22,1/02/2017 20:59,4.0,200, Information Exposure,nan
CVE-2016-6085,8/02/2017 18:22,1/02/2017 20:59,3.3,284, Improper Access Control,nan
CVE-2016-6082,8/02/2017 18:20,1/02/2017 20:59,10.0,416, Use After Free,nan
CVE-2016-5026,8/02/2017 17:14,30/01/2017 22:59,2.1,284, Improper Access Control,nan
CVE-2016-6040,8/02/2017 17:03,1/02/2017 20:59,6.0,384, Session Fixation,nan
CVE-2016-6099,8/02/2017 16:50,2/02/2017 22:59,5.0,200, Information Exposure,nan
CVE-2015-0176,8/02/2017 14:26,27/04/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5882,8/02/2017 2:59,4/02/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8928,7/02/2017 23:00,1/02/2017 22:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6163,7/02/2017 22:48,3/02/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2017-5627,7/02/2017 22:46,30/01/2017 4:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-9108,7/02/2017 22:45,3/02/2017 15:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-9085,7/02/2017 22:42,3/02/2017 15:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-6234,7/02/2017 22:28,2/02/2017 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-5966,7/02/2017 22:24,1/02/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-6124,7/02/2017 22:23,1/02/2017 20:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-6236,7/02/2017 22:03,2/02/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6116,7/02/2017 21:59,2/02/2017 22:59,4.3,200, Information Exposure,nan
CVE-2016-4352,7/02/2017 21:45,3/02/2017 15:59,4.3,190, Integer Overflow or Wraparound,nan
CVE-2016-8929,7/02/2017 21:44,1/02/2017 22:59,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6084,7/02/2017 21:41,1/02/2017 20:59,3.3,20, Improper Input Validation,nan
CVE-2016-5988,7/02/2017 21:39,1/02/2017 20:59,4.0,200, Information Exposure,nan
CVE-2016-6188,7/02/2017 21:36,3/02/2017 16:59,6.8,399, Resource Management Errors,nan
CVE-2016-3017,7/02/2017 21:21,1/02/2017 20:59,5.0,358, Improperly Implemented Security Check for Standard,nan
CVE-2016-5990,7/02/2017 21:15,1/02/2017 20:59,6.5,284, Improper Access Control,nan
CVE-2016-6126,7/02/2017 21:05,1/02/2017 20:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7544,7/02/2017 20:59,30/01/2017 21:59,5.0,399, Resource Management Errors,nan
CVE-2016-6065,7/02/2017 20:43,1/02/2017 20:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-8933,7/02/2017 20:31,1/02/2017 22:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6235,7/02/2017 20:30,2/02/2017 16:59,4.3,399, Resource Management Errors,nan
CVE-2016-4797,7/02/2017 20:28,3/02/2017 16:59,4.3,369, Divide By Zero,nan
CVE-2016-5958,7/02/2017 20:26,1/02/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-8931,7/02/2017 20:12,1/02/2017 22:59,6.5,284, Improper Access Control,nan
CVE-2017-5628,7/02/2017 19:53,30/01/2017 4:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-3016,7/02/2017 19:51,1/02/2017 20:59,3.5,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-0396,7/02/2017 19:44,1/02/2017 20:59,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0394,7/02/2017 19:43,1/02/2017 20:59,2.1,275, Permission Issues,nan
CVE-2016-4796,7/02/2017 19:41,3/02/2017 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6264,7/02/2017 19:40,27/01/2017 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8930,7/02/2017 19:32,1/02/2017 22:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6103,7/02/2017 19:32,2/02/2017 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6080,7/02/2017 19:20,1/02/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-6238,7/02/2017 19:19,2/02/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8911,7/02/2017 19:11,1/02/2017 20:59,3.5,254, 7PK – Security Features,nan
CVE-2016-3183,7/02/2017 18:56,3/02/2017 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6095,7/02/2017 18:49,2/02/2017 22:59,5.0,284, Improper Access Control,nan
CVE-2016-8913,7/02/2017 18:46,1/02/2017 20:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3176,7/02/2017 18:41,31/01/2017 19:59,4.3,287, Improper Authentication,nan
CVE-2016-6237,7/02/2017 18:40,2/02/2017 16:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-8932,7/02/2017 18:36,1/02/2017 22:59,6.5,284, Improper Access Control,nan
CVE-2016-8912,7/02/2017 18:25,1/02/2017 20:59,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-5115,7/02/2017 18:24,3/02/2017 15:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8411,7/02/2017 18:14,27/01/2017 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6270,7/02/2017 17:27,30/01/2017 22:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-2987,7/02/2017 16:32,1/02/2017 20:59,4.0,200, Information Exposure,nan
CVE-2016-6604,7/02/2017 16:30,30/01/2017 22:59,10.0,476, NULL Pointer Dereference,nan
CVE-2016-5897,7/02/2017 16:25,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5898,7/02/2017 16:24,1/02/2017 20:59,4.0,254, 7PK – Security Features,nan
CVE-2016-5899,7/02/2017 16:23,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6047,7/02/2017 16:22,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6039,7/02/2017 16:21,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6061,7/02/2017 16:20,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6030,7/02/2017 16:20,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6054,7/02/2017 16:19,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6028,7/02/2017 16:18,1/02/2017 20:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-10185,7/02/2017 16:12,30/01/2017 4:59,5.0,254, 7PK – Security Features,nan
CVE-2016-10178,7/02/2017 16:09,30/01/2017 4:59,10.0,254, 7PK – Security Features,nan
CVE-2016-10184,7/02/2017 16:07,30/01/2017 4:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10181,7/02/2017 16:05,30/01/2017 4:59,5.0,200, Information Exposure,nan
CVE-2016-10186,7/02/2017 16:04,30/01/2017 4:59,5.0,399, Resource Management Errors,nan
CVE-2016-10183,7/02/2017 16:04,30/01/2017 4:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10179,7/02/2017 15:54,30/01/2017 4:59,5.0,798, Use of Hard-coded Credentials,nan
CVE-2016-10177,7/02/2017 15:45,30/01/2017 4:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-10180,7/02/2017 15:42,30/01/2017 4:59,5.0,338, Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG),nan
CVE-2016-10182,7/02/2017 15:35,30/01/2017 4:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-3071,7/02/2017 2:59,18/04/2016 14:59,5.0,310, Cryptographic Issues,nan
CVE-2016-10157,7/02/2017 2:59,23/01/2017 7:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-9417,5/02/2017 21:13,31/01/2017 22:59,5.8,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-9420,5/02/2017 21:12,31/01/2017 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-9412,5/02/2017 21:12,31/01/2017 22:59,7.5,284, Improper Access Control,nan
CVE-2016-9411,5/02/2017 21:12,31/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2015-8973,5/02/2017 21:11,31/01/2017 22:59,7.5,284, Improper Access Control,nan
CVE-2016-9416,5/02/2017 21:10,31/01/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9413,5/02/2017 21:10,31/01/2017 22:59,4.3,284, Improper Access Control,nan
CVE-2016-9403,5/02/2017 21:10,31/01/2017 22:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9415,5/02/2017 21:01,31/01/2017 22:59,5.0,284, Improper Access Control,nan
CVE-2016-9414,5/02/2017 20:58,31/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-9410,5/02/2017 20:58,31/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-9402,5/02/2017 20:57,31/01/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8977,5/02/2017 20:57,31/01/2017 22:59,5.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-9418,5/02/2017 20:56,31/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2015-8974,5/02/2017 20:56,31/01/2017 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7569,5/02/2017 20:45,27/01/2017 22:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5941,5/02/2017 20:41,1/02/2017 22:59,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5938,5/02/2017 20:39,1/02/2017 22:59,2.1,200, Information Exposure,nan
CVE-2016-0297,5/02/2017 20:38,1/02/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-0296,5/02/2017 20:37,1/02/2017 20:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-3035,5/02/2017 20:35,1/02/2017 20:59,5.0,200, Information Exposure,nan
CVE-2016-2050,5/02/2017 20:34,31/01/2017 19:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-5942,5/02/2017 20:33,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6125,5/02/2017 20:32,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6123,5/02/2017 20:32,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8920,5/02/2017 20:30,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5940,5/02/2017 20:30,1/02/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0265,5/02/2017 20:29,1/02/2017 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1566,5/02/2017 20:20,2/02/2017 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8698,5/02/2017 20:17,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8696,5/02/2017 20:17,31/01/2017 22:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8703,5/02/2017 20:16,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8702,5/02/2017 20:16,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8697,5/02/2017 20:16,31/01/2017 22:59,4.3,369, Divide By Zero,nan
CVE-2016-8694,5/02/2017 20:16,31/01/2017 22:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8686,5/02/2017 20:16,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8701,5/02/2017 20:15,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8700,5/02/2017 20:15,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8699,5/02/2017 20:15,31/01/2017 22:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8695,5/02/2017 20:15,31/01/2017 22:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8685,5/02/2017 20:15,31/01/2017 22:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1010,4/02/2017 2:59,12/03/2016 15:59,10.0,189, Numeric Errors,nan
CVE-2016-0993,4/02/2017 2:59,12/03/2016 15:59,10.0,189, Numeric Errors,nan
CVE-2016-0963,4/02/2017 2:59,12/03/2016 15:59,10.0,189, Numeric Errors,nan
CVE-2016-9260,3/02/2017 16:12,31/01/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8975,3/02/2017 16:12,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8976,3/02/2017 16:11,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9407,3/02/2017 16:10,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6285,3/02/2017 16:10,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9419,3/02/2017 16:09,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9408,3/02/2017 16:09,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9406,3/02/2017 16:09,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5608,3/02/2017 16:08,28/01/2017 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9405,3/02/2017 16:00,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9421,3/02/2017 15:59,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9409,3/02/2017 15:59,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9404,3/02/2017 15:59,31/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9119,3/02/2017 15:59,30/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5364,3/02/2017 2:59,13/01/2017 9:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3999,3/02/2017 2:59,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3415,3/02/2017 2:59,18/01/2017 22:59,6.4,502, Deserialization of Untrusted Data,nan
CVE-2016-3408,3/02/2017 2:59,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3130,3/02/2017 2:59,13/01/2017 9:59,4.3,255, Credentials Management,nan
CVE-2016-2233,3/02/2017 2:59,18/01/2017 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7102,2/02/2017 2:59,23/01/2017 21:59,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-3412,2/02/2017 2:59,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3410,2/02/2017 2:59,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3409,2/02/2017 2:59,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3407,2/02/2017 2:59,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3406,2/02/2017 2:59,18/01/2017 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2087,2/02/2017 2:59,18/01/2017 17:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10141,2/02/2017 2:59,13/01/2017 9:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2015-1350,2/02/2017 2:59,2/05/2016 10:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2000-1254,2/02/2017 2:59,5/05/2016 1:59,5.0,310, Cryptographic Issues,nan
CVE-2017-5599,1/02/2017 2:59,27/01/2017 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5598,1/02/2017 2:59,27/01/2017 10:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8226,1/02/2017 2:59,26/01/2017 17:59,6.8,19, Data Processing Errors,nan
CVE-2016-8225,1/02/2017 2:59,26/01/2017 17:59,4.6,428, Unquoted Search Path or Element,nan
CVE-2016-7148,1/02/2017 2:59,10/11/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7146,1/02/2017 2:59,10/11/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7037,1/02/2017 2:59,23/01/2017 21:59,5.0,361, 7PK – Time and State,nan
CVE-2016-7036,1/02/2017 2:59,23/01/2017 21:59,7.5,361, 7PK – Time and State,nan
CVE-2016-6164,1/02/2017 2:59,23/01/2017 21:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5876,1/02/2017 2:59,23/01/2017 21:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-5720,1/02/2017 2:59,23/01/2017 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4315,31/01/2017 14:27,8/12/2011 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3250,31/01/2017 13:26,27/01/2017 22:59,7.5,200, Information Exposure,nan
CVE-2017-3242,31/01/2017 2:59,27/01/2017 22:59,1.9,20, Improper Input Validation,nan
CVE-2017-3239,31/01/2017 2:59,27/01/2017 22:59,2.1,200, Information Exposure,nan
CVE-2017-3296,30/01/2017 19:29,27/01/2017 22:59,4.3,200, Information Exposure,nan
CVE-2017-2971,28/01/2017 2:59,24/01/2017 7:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9307,28/01/2017 2:59,25/01/2017 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9306,28/01/2017 2:59,25/01/2017 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9305,28/01/2017 2:59,25/01/2017 19:59,7.5,19, Data Processing Errors,nan
CVE-2016-9304,28/01/2017 2:59,25/01/2017 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9303,28/01/2017 2:59,25/01/2017 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9054,28/01/2017 2:59,26/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9052,28/01/2017 2:59,26/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9050,28/01/2017 2:59,26/01/2017 21:59,6.4,125, Out-of-bounds Read,nan
CVE-2016-8227,28/01/2017 2:59,26/01/2017 17:59,7.2,284, Improper Access Control,nan
CVE-2016-6580,27/01/2017 19:42,10/01/2017 15:59,5.0,399, Resource Management Errors,nan
CVE-2016-6581,27/01/2017 19:41,10/01/2017 15:59,7.8,399, Resource Management Errors,nan
CVE-2016-9221,27/01/2017 19:39,26/01/2017 7:59,3.3,399, Resource Management Errors,nan
CVE-2016-9218,27/01/2017 19:39,26/01/2017 7:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5351,27/01/2017 18:45,12/01/2017 6:59,7.8,400, Uncontrolled Resource Consumption,nan
CVE-2017-2972,27/01/2017 18:25,24/01/2017 7:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5494,27/01/2017 18:20,15/01/2017 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7904,27/01/2017 16:48,16/01/2017 6:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6527,27/01/2017 16:09,18/01/2017 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-5517,27/01/2017 16:08,17/01/2017 9:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5519,27/01/2017 16:07,17/01/2017 9:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5518,27/01/2017 16:07,17/01/2017 9:59,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-6526,27/01/2017 16:05,18/01/2017 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2017-5347,27/01/2017 15:17,12/01/2017 6:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5345,27/01/2017 15:15,12/01/2017 6:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6908,27/01/2017 15:06,26/01/2017 15:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-10025,27/01/2017 14:22,26/01/2017 15:59,2.1,476, NULL Pointer Dereference,nan
CVE-2016-9222,27/01/2017 2:59,26/01/2017 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9220,27/01/2017 2:59,26/01/2017 7:59,3.3,399, Resource Management Errors,nan
CVE-2016-1281,27/01/2017 2:59,23/01/2017 21:59,4.4,426, Untrusted Search Path,nan
CVE-2016-3147,26/01/2017 20:00,23/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0769,26/01/2017 20:00,23/01/2017 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0765,26/01/2017 20:00,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0016,26/01/2017 20:00,24/03/2014 16:31,4.3,332, Insufficient Entropy in PRNG,nan
CVE-2010-4299,26/01/2017 20:00,22/11/2010 12:54,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8971,26/01/2017 19:35,23/01/2017 21:59,4.6,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-8855,26/01/2017 19:33,23/01/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2017-2970,26/01/2017 18:26,24/01/2017 7:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-5542,26/01/2017 18:15,20/01/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5541,26/01/2017 18:15,20/01/2017 8:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2017-5575,26/01/2017 18:14,23/01/2017 7:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5556,26/01/2017 18:14,23/01/2017 7:59,5.8,125, Out-of-bounds Read,nan
CVE-2016-5091,26/01/2017 16:39,23/01/2017 21:59,6.8,254, 7PK – Security Features,nan
CVE-2016-9081,26/01/2017 15:07,23/01/2017 21:59,7.5,255, Credentials Management,nan
CVE-2015-4626,26/01/2017 15:07,23/01/2017 21:59,5.0,189, Numeric Errors,nan
CVE-2016-9012,26/01/2017 15:02,23/01/2017 21:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2017-5553,26/01/2017 15:01,23/01/2017 7:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2783,26/01/2017 14:58,23/01/2017 21:59,10.0,19, Data Processing Errors,nan
CVE-2017-5574,26/01/2017 14:45,23/01/2017 7:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5545,26/01/2017 14:45,21/01/2017 1:59,6.4,125, Out-of-bounds Read,nan
CVE-2017-5569,26/01/2017 13:53,23/01/2017 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2017-5570,26/01/2017 13:52,23/01/2017 17:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7792,26/01/2017 2:59,23/01/2017 21:59,8.3,284, Improper Access Control,nan
CVE-2016-7410,26/01/2017 2:59,23/01/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6521,26/01/2017 2:59,23/01/2017 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6517,26/01/2017 2:59,23/01/2017 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4484,26/01/2017 2:59,23/01/2017 21:59,7.2,287, Improper Authentication,nan
CVE-2017-5476,25/01/2017 20:25,14/01/2017 7:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5475,25/01/2017 20:25,14/01/2017 7:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2017-5474,25/01/2017 20:24,14/01/2017 7:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2017-2576,25/01/2017 20:23,20/01/2017 8:59,5.0,20, Improper Input Validation,nan
CVE-2016-8644,25/01/2017 20:23,20/01/2017 8:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8643,25/01/2017 20:23,20/01/2017 8:59,4.0,284, Improper Access Control,nan
CVE-2016-8642,25/01/2017 20:23,20/01/2017 8:59,5.0,284, Improper Access Control,nan
CVE-2017-2578,25/01/2017 20:22,20/01/2017 8:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5014,25/01/2017 20:22,20/01/2017 8:59,5.8,200, Information Exposure,nan
CVE-2016-5013,25/01/2017 20:22,20/01/2017 8:59,5.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-5012,25/01/2017 20:21,20/01/2017 8:59,5.0,200, Information Exposure,nan
CVE-2016-7038,25/01/2017 20:19,20/01/2017 8:59,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2015-8972,25/01/2017 18:55,23/01/2017 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8362,25/01/2017 18:12,23/01/2017 21:59,10.0,284, Improper Access Control,nan
CVE-2015-7743,25/01/2017 18:09,23/01/2017 21:59,4.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-5697,25/01/2017 14:20,23/01/2017 21:59,5.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2016-4340,25/01/2017 13:59,23/01/2017 21:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1925,24/01/2017 22:21,23/01/2017 21:59,7.5,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2016-5119,24/01/2017 21:18,23/01/2017 21:59,5.1,20, Improper Input Validation,nan
CVE-2016-3177,24/01/2017 21:16,23/01/2017 21:59,7.5,416, Use After Free,nan
CVE-2016-4056,24/01/2017 21:13,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8854,24/01/2017 16:35,23/01/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2015-8860,24/01/2017 16:13,23/01/2017 21:59,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-7454,24/01/2017 15:25,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7453,24/01/2017 15:25,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7452,24/01/2017 15:23,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7451,24/01/2017 15:12,23/01/2017 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9870,24/01/2017 2:59,23/01/2017 7:59,7.2,90, Improper Neutralization of Special Elements used in an LDAP Query (‘LDAP Injection’),nan
CVE-2016-8458,24/01/2017 0:09,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8457,24/01/2017 0:08,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8456,24/01/2017 0:08,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8455,24/01/2017 0:06,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8445,24/01/2017 0:05,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8444,24/01/2017 0:04,12/01/2017 20:59,7.6,284, Improper Access Control,nan
CVE-2016-8443,24/01/2017 0:02,12/01/2017 20:59,7.2,285, Improper Authorization,nan
CVE-2016-8442,24/01/2017 0:02,12/01/2017 20:59,7.2,20, Improper Input Validation,nan
CVE-2016-8441,24/01/2017 0:00,12/01/2017 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8440,23/01/2017 23:59,12/01/2017 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7981,23/01/2017 23:48,18/01/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5516,23/01/2017 19:56,17/01/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2017-5515,23/01/2017 19:56,17/01/2017 9:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7150,23/01/2017 19:53,18/01/2017 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7149,23/01/2017 19:53,18/01/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7101,23/01/2017 19:53,18/01/2017 17:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-6823,23/01/2017 19:53,18/01/2017 17:59,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-9677,23/01/2017 19:51,18/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-9680,23/01/2017 19:50,18/01/2017 22:59,5.0,200, Information Exposure,nan
CVE-2016-9679,23/01/2017 19:50,18/01/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9678,23/01/2017 19:50,18/01/2017 22:59,7.5,416, Use After Free,nan
CVE-2016-9676,23/01/2017 19:49,18/01/2017 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-3890,20/01/2017 20:41,13/01/2017 9:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8212,20/01/2017 20:05,19/01/2017 20:59,7.5,20, Improper Input Validation,nan
CVE-2016-6253,20/01/2017 19:58,20/01/2017 15:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-7794,20/01/2017 18:18,19/01/2017 20:59,7.5,284, Improper Access Control,nan
CVE-2016-7793,20/01/2017 18:16,19/01/2017 20:59,6.8,284, Improper Access Control,nan
CVE-2016-10086,20/01/2017 18:15,18/01/2017 22:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-9584,20/01/2017 17:26,18/01/2017 17:59,6.4,416, Use After Free,nan
CVE-2014-9913,20/01/2017 15:33,18/01/2017 17:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9844,20/01/2017 15:32,18/01/2017 17:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9109,20/01/2017 15:20,18/01/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-7564,20/01/2017 15:19,18/01/2017 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7563,20/01/2017 15:13,18/01/2017 17:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-7144,20/01/2017 15:12,18/01/2017 17:59,6.8,287, Improper Authentication,nan
CVE-2016-6283,20/01/2017 13:58,18/01/2017 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5197,20/01/2017 13:38,19/01/2017 5:59,6.8,20, Improper Input Validation,nan
CVE-2016-5196,20/01/2017 13:36,19/01/2017 5:59,6.8,254, 7PK – Security Features,nan
CVE-2016-7382,20/01/2017 2:59,8/11/2016 20:59,7.2,275, Permission Issues,nan
CVE-2016-6772,20/01/2017 2:59,12/01/2017 15:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3128,20/01/2017 2:59,13/01/2017 9:59,6.4,254, 7PK – Security Features,nan
CVE-2015-8790,20/01/2017 2:59,29/01/2016 19:59,4.3,200, Information Exposure,nan
CVE-2015-7872,20/01/2017 2:59,16/11/2015 11:59,2.1,20, Improper Input Validation,nan
CVE-2015-5119,20/01/2017 2:59,8/07/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9910,20/01/2017 2:59,18/01/2017 17:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-9909,20/01/2017 2:59,18/01/2017 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-2389,20/01/2017 2:59,12/04/2014 4:37,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0148,20/01/2017 2:59,16/06/2013 17:55,7.1,310, Cryptographic Issues,nan
CVE-2012-4599,20/01/2017 2:59,22/08/2012 10:42,10.0,287, Improper Authentication,nan
CVE-1999-0993,20/01/2017 2:59,13/12/1999 5:00,7.5,16, Configuration,nan
CVE-2016-4806,19/01/2017 16:29,11/01/2017 16:59,5.0,200, Information Exposure,nan
CVE-2016-6760,19/01/2017 16:18,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6759,19/01/2017 16:18,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6758,19/01/2017 16:18,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-4808,19/01/2017 16:18,11/01/2017 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6761,19/01/2017 16:17,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6765,19/01/2017 16:13,12/01/2017 15:59,7.1,19, Data Processing Errors,nan
CVE-2016-6764,19/01/2017 16:13,12/01/2017 15:59,7.1,399, Resource Management Errors,nan
CVE-2016-6762,19/01/2017 16:13,12/01/2017 15:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-6769,19/01/2017 16:12,12/01/2017 15:59,2.1,284, Improper Access Control,nan
CVE-2016-6768,19/01/2017 16:12,12/01/2017 15:59,6.8,284, Improper Access Control,nan
CVE-2016-6767,19/01/2017 16:12,12/01/2017 15:59,7.1,399, Resource Management Errors,nan
CVE-2016-6766,19/01/2017 16:12,12/01/2017 15:59,7.1,19, Data Processing Errors,nan
CVE-2016-6770,19/01/2017 16:11,12/01/2017 15:59,4.3,284, Improper Access Control,nan
CVE-2016-6773,19/01/2017 16:08,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8221,19/01/2017 15:59,12/01/2017 22:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-8667,19/01/2017 15:50,18/01/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6782,19/01/2017 15:45,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6781,19/01/2017 15:40,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6780,19/01/2017 15:39,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-6763,19/01/2017 15:39,12/01/2017 15:59,7.1,284, Improper Access Control,nan
CVE-2015-8684,19/01/2017 15:19,18/01/2017 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6778,19/01/2017 15:08,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-6779,19/01/2017 15:05,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-8671,19/01/2017 2:59,13/01/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-6887,19/01/2017 2:59,13/01/2017 16:59,4.3,200, Information Exposure,nan
CVE-2016-1000032,19/01/2017 2:59,25/10/2016 14:29,5.0,284, Improper Access Control,nan
CVE-2016-8404,18/01/2017 20:52,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-9107,18/01/2017 20:49,13/01/2017 16:59,5.0,200, Information Exposure,nan
CVE-2016-8403,18/01/2017 20:49,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8406,18/01/2017 20:39,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8409,18/01/2017 20:38,12/01/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-8408,18/01/2017 20:38,12/01/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-8407,18/01/2017 20:38,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8410,18/01/2017 20:36,12/01/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-10027,18/01/2017 19:49,12/01/2017 23:59,2.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-5737,18/01/2017 19:48,12/01/2017 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8402,18/01/2017 19:43,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8401,18/01/2017 19:43,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-6790,18/01/2017 19:37,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6788,18/01/2017 19:33,12/01/2017 15:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6785,18/01/2017 19:28,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6783,18/01/2017 19:27,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2017-0396,18/01/2017 17:24,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-8606,18/01/2017 16:27,12/01/2017 22:59,7.5,284, Improper Access Control,nan
CVE-2017-0397,18/01/2017 16:16,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-8605,18/01/2017 15:59,12/01/2017 22:59,5.0,275, Permission Issues,nan
CVE-2017-0398,18/01/2017 14:58,13/01/2017 16:59,4.3,200, Information Exposure,nan
CVE-2017-5480,18/01/2017 14:31,15/01/2017 22:59,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8451,18/01/2017 14:29,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2017-2967,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2966,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2965,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2964,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2963,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2962,18/01/2017 2:59,11/01/2017 4:59,9.3,704, Incorrect Type Conversion or Cast,nan
CVE-2017-2961,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2960,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2959,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2958,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2957,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2956,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2955,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2954,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2953,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2952,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2951,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2950,18/01/2017 2:59,11/01/2017 4:59,9.3,416, Use After Free,nan
CVE-2017-2949,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2948,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2947,18/01/2017 2:59,11/01/2017 4:59,4.3,20, Improper Input Validation,nan
CVE-2017-2946,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2945,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2944,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2943,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2942,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2941,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2940,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-2939,18/01/2017 2:59,11/01/2017 4:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2017-0389,18/01/2017 2:59,12/01/2017 20:59,7.8,20, Improper Input Validation,nan
CVE-2017-0388,18/01/2017 2:59,12/01/2017 20:59,2.1,200, Information Exposure,nan
CVE-2016-8475,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8474,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8473,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8472,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8471,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8470,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8469,18/01/2017 2:59,12/01/2017 20:59,2.6,200, Information Exposure,nan
CVE-2016-8468,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8467,18/01/2017 2:59,13/01/2017 16:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-8466,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8464,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8463,18/01/2017 2:59,12/01/2017 20:59,7.1,399, Resource Management Errors,nan
CVE-2016-8462,18/01/2017 2:59,12/01/2017 20:59,2.1,200, Information Exposure,nan
CVE-2016-8461,18/01/2017 2:59,12/01/2017 20:59,2.1,200, Information Exposure,nan
CVE-2016-8460,18/01/2017 2:59,12/01/2017 20:59,4.3,200, Information Exposure,nan
CVE-2016-8459,18/01/2017 2:59,12/01/2017 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8454,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8453,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8452,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8450,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8448,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8447,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8446,18/01/2017 2:59,12/01/2017 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8439,18/01/2017 2:59,12/01/2017 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8438,18/01/2017 2:59,12/01/2017 20:59,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-8437,18/01/2017 2:59,12/01/2017 20:59,10.0,20, Improper Input Validation,nan
CVE-2016-8436,18/01/2017 2:59,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8435,18/01/2017 2:59,12/01/2017 20:59,9.3,284, Improper Access Control,nan
CVE-2016-8434,18/01/2017 2:59,12/01/2017 20:59,9.3,284, Improper Access Control,nan
CVE-2016-8433,18/01/2017 2:59,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8432,18/01/2017 2:59,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8431,18/01/2017 2:59,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8423,18/01/2017 2:59,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8422,18/01/2017 2:59,12/01/2017 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-8415,18/01/2017 2:59,12/01/2017 20:59,7.6,284, Improper Access Control,nan
CVE-2016-8412,18/01/2017 2:59,12/01/2017 20:59,7.6,284, Improper Access Control,nan
CVE-2016-8398,18/01/2017 2:59,12/01/2017 20:59,10.0,254, 7PK – Security Features,nan
CVE-2016-8396,18/01/2017 2:59,12/01/2017 15:59,4.3,200, Information Exposure,nan
CVE-2016-8394,18/01/2017 2:59,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-8393,18/01/2017 2:59,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-8392,18/01/2017 2:59,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-8391,18/01/2017 2:59,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-8006,18/01/2017 2:59,5/01/2017 22:59,1.7,264, Permissions Privileges and Access Controls,nan
CVE-2016-7916,18/01/2017 2:59,16/11/2016 5:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6886,18/01/2017 2:59,13/01/2017 16:59,5.0,320, Key Management Errors,nan
CVE-2016-6791,18/01/2017 2:59,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-6784,18/01/2017 2:59,12/01/2017 15:59,9.3,284, Improper Access Control,nan
CVE-2016-6774,18/01/2017 2:59,12/01/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-6771,18/01/2017 2:59,12/01/2017 15:59,6.8,284, Improper Access Control,nan
CVE-2016-6757,18/01/2017 2:59,12/01/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-6756,18/01/2017 2:59,12/01/2017 15:59,2.6,200, Information Exposure,nan
CVE-2016-6755,18/01/2017 2:59,12/01/2017 15:59,7.6,284, Improper Access Control,nan
CVE-2016-6678,18/01/2017 2:59,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-6354,18/01/2017 2:59,21/09/2016 14:25,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5384,18/01/2017 2:59,13/08/2016 1:59,4.6,415, Double Free,nan
CVE-2016-5361,18/01/2017 2:59,16/06/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-5009,18/01/2017 2:59,12/07/2016 19:59,4.0,20, Improper Input Validation,nan
CVE-2016-4552,18/01/2017 2:59,20/12/2016 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-10126,18/01/2017 2:59,10/01/2017 11:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8962,18/01/2017 2:59,16/11/2016 5:59,9.3,415, Double Free,nan
CVE-2015-8961,18/01/2017 2:59,16/11/2016 5:59,9.3,416, Use After Free,nan
CVE-2015-3441,18/01/2017 2:59,5/01/2017 22:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-3322,18/01/2017 2:59,16/04/2015 23:59,5.0,310, Cryptographic Issues,nan
CVE-2015-3320,18/01/2017 2:59,16/04/2015 23:59,2.1,200, Information Exposure,nan
CVE-2016-6885,17/01/2017 18:23,13/01/2017 16:59,5.0,416, Use After Free,nan
CVE-2010-5327,17/01/2017 17:59,13/01/2017 19:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1000112,16/01/2017 2:59,6/10/2016 14:59,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-7791,13/01/2017 16:07,12/01/2017 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-7790,13/01/2017 16:06,12/01/2017 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-9015,13/01/2017 13:09,11/01/2017 16:59,2.6,295, Improper Certificate Validation,nan
CVE-2016-1242,13/01/2017 2:59,7/09/2016 19:28,4.0,200, Information Exposure,nan
CVE-2016-10125,13/01/2017 2:59,9/01/2017 17:59,6.8,798, Use of Hard-coded Credentials,nan
CVE-2014-3325,12/01/2017 14:08,19/07/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3322,12/01/2017 14:07,24/07/2014 14:55,6.1,20, Improper Input Validation,nan
CVE-2014-3300,12/01/2017 14:07,7/07/2014 11:01,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3299,12/01/2017 14:07,25/06/2014 11:19,6.8,20, Improper Input Validation,nan
CVE-2014-3296,12/01/2017 14:07,21/06/2014 15:55,4.0,200, Information Exposure,nan
CVE-2015-7905,12/01/2017 12:05,13/11/2015 3:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1000012,12/01/2017 12:05,6/10/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-10112,12/01/2017 11:55,4/01/2017 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3321,12/01/2017 11:51,18/07/2014 0:55,5.7,20, Improper Input Validation,nan
CVE-2014-3308,12/01/2017 11:42,7/07/2014 11:01,6.4,20, Improper Input Validation,nan
CVE-2014-3306,12/01/2017 11:39,18/07/2014 0:55,10.0,20, Improper Input Validation,nan
CVE-2016-5024,12/01/2017 11:10,3/01/2017 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-10116,11/01/2017 20:14,4/01/2017 8:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-10115,11/01/2017 20:10,4/01/2017 8:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-4807,11/01/2017 20:09,11/01/2017 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0911,11/01/2017 4:13,19/06/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0912,11/01/2017 4:12,19/06/2016 20:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0881,11/01/2017 4:11,12/02/2016 1:59,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-0914,11/01/2017 4:10,23/06/2016 0:59,6.5,284, Improper Access Control,nan
CVE-2016-0886,11/01/2017 4:09,9/03/2016 23:59,4.0,200, Information Exposure,nan
CVE-2016-9964,11/01/2017 3:00,16/12/2016 9:59,4.3,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2017-5217,11/01/2017 2:59,9/01/2017 8:59,7.1,20, Improper Input Validation,nan
CVE-2017-5216,11/01/2017 2:59,9/01/2017 8:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9885,11/01/2017 2:59,6/01/2017 22:59,7.5,254, 7PK – Security Features,nan
CVE-2016-9869,11/01/2017 2:59,6/01/2017 22:59,2.1,275, Permission Issues,nan
CVE-2016-9868,11/01/2017 2:59,6/01/2017 22:59,2.1,254, 7PK – Security Features,nan
CVE-2016-9867,11/01/2017 2:59,6/01/2017 22:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8334,11/01/2017 2:59,6/01/2017 21:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-4335,11/01/2017 2:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4329,11/01/2017 2:59,6/01/2017 21:59,2.1,20, Improper Input Validation,nan
CVE-2016-4298,11/01/2017 2:59,6/01/2017 21:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-4296,11/01/2017 2:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4295,11/01/2017 2:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4294,11/01/2017 2:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4292,11/01/2017 2:59,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4291,11/01/2017 2:59,6/01/2017 21:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-4290,11/01/2017 2:59,6/01/2017 21:59,6.8,190, Integer Overflow or Wraparound,nan
CVE-2016-10114,11/01/2017 2:59,4/01/2017 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-10097,11/01/2017 2:59,2/01/2017 9:59,5.0,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-10030,11/01/2017 2:59,5/01/2017 11:59,7.6,284, Improper Access Control,nan
CVE-2016-0910,11/01/2017 2:59,10/06/2016 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0908,11/01/2017 2:59,4/06/2016 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-0889,11/01/2017 2:59,15/04/2016 14:59,10.0,20, Improper Input Validation,nan
CVE-2015-2868,11/01/2017 2:59,6/01/2017 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2867,11/01/2017 2:59,6/01/2017 21:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-6831,11/01/2017 2:55,10/01/2017 15:59,5.0,400, Uncontrolled Resource Consumption,nan
CVE-2016-6830,11/01/2017 2:54,10/01/2017 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4336,11/01/2017 2:47,6/01/2017 21:59,7.5,787, Out-of-bounds Write,nan
CVE-2016-6286,11/01/2017 2:18,10/01/2017 15:59,5.0,19, Data Processing Errors,nan
CVE-2016-6837,11/01/2017 2:17,10/01/2017 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6287,11/01/2017 0:30,10/01/2017 15:59,5.0,19, Data Processing Errors,nan
CVE-2016-4288,10/01/2017 16:21,6/01/2017 21:59,7.2,275, Permission Issues,nan
CVE-2016-5646,10/01/2017 15:45,6/01/2017 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2309,10/01/2017 15:43,30/05/2016 1:59,8.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-10108,9/01/2017 17:14,3/01/2017 6:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9951,7/01/2017 3:00,17/12/2016 3:59,4.3,284, Improper Access Control,nan
CVE-2016-9950,7/01/2017 3:00,17/12/2016 3:59,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9949,7/01/2017 3:00,17/12/2016 3:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-9756,7/01/2017 3:00,28/12/2016 7:59,2.1,200, Information Exposure,nan
CVE-2016-9754,7/01/2017 3:00,5/01/2017 11:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-9644,7/01/2017 3:00,28/11/2016 3:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-9451,7/01/2017 3:00,25/11/2016 18:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-9449,7/01/2017 3:00,25/11/2016 18:59,4.0,200, Information Exposure,nan
CVE-2016-9427,7/01/2017 3:00,12/12/2016 2:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-9138,7/01/2017 3:00,4/01/2017 20:59,7.5,416, Use After Free,nan
CVE-2016-8658,7/01/2017 3:00,16/10/2016 21:59,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7995,7/01/2017 3:00,10/12/2016 0:59,2.1,399, Resource Management Errors,nan
CVE-2016-7903,7/01/2017 3:00,4/01/2017 21:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-7902,7/01/2017 3:00,4/01/2017 21:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-7425,7/01/2017 3:00,16/10/2016 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7395,7/01/2017 3:00,11/09/2016 10:59,6.8,19, Data Processing Errors,nan
CVE-2016-6894,7/01/2017 3:00,4/01/2017 21:59,7.8,399, Resource Management Errors,nan
CVE-2016-10041,7/01/2017 3:00,25/12/2016 7:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-3288,7/01/2017 3:00,16/10/2016 21:59,7.2,20, Improper Input Validation,nan
CVE-2014-9912,7/01/2017 3:00,4/01/2017 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5356,7/01/2017 3:00,25/08/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5318,7/01/2017 3:00,26/09/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-5243,7/01/2017 3:00,22/08/2014 17:55,4.3,20, Improper Input Validation,nan
CVE-2014-5241,7/01/2017 3:00,22/08/2014 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5206,7/01/2017 3:00,18/08/2014 11:15,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-5165,7/01/2017 3:00,1/08/2014 11:13,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5164,7/01/2017 3:00,1/08/2014 11:13,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5163,7/01/2017 3:00,1/08/2014 11:13,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5162,7/01/2017 3:00,1/08/2014 11:13,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5161,7/01/2017 3:00,1/08/2014 11:13,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5119,7/01/2017 3:00,29/08/2014 16:55,7.5,189, Numeric Errors,nan
CVE-2014-5045,7/01/2017 3:00,1/08/2014 11:13,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-5031,7/01/2017 3:00,29/07/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5030,7/01/2017 3:00,29/07/2014 14:55,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-5029,7/01/2017 3:00,29/07/2014 14:55,1.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4979,7/01/2017 3:00,26/07/2014 11:11,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4747,7/01/2017 3:00,26/07/2014 15:55,2.1,200, Information Exposure,nan
CVE-2014-4721,7/01/2017 3:00,6/07/2014 23:55,2.6,200, Information Exposure,nan
CVE-2014-4667,7/01/2017 3:00,3/07/2014 4:22,5.0,20, Improper Input Validation,nan
CVE-2014-4615,7/01/2017 3:00,19/08/2014 18:55,5.0,200, Information Exposure,nan
CVE-2014-4193,7/01/2017 3:00,17/06/2014 15:55,5.0,310, Cryptographic Issues,nan
CVE-2014-4039,7/01/2017 3:00,17/06/2014 15:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4038,7/01/2017 3:00,17/06/2014 15:55,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4027,7/01/2017 3:00,23/06/2014 11:21,2.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-3981,7/01/2017 3:00,8/06/2014 18:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3859,7/01/2017 3:00,13/06/2014 11:19,5.0,20, Improper Input Validation,nan
CVE-2014-3803,7/01/2017 3:00,21/05/2014 11:14,4.3,200, Information Exposure,nan
CVE-2014-3609,7/01/2017 3:00,11/09/2014 18:55,5.0,20, Improper Input Validation,nan
CVE-2014-3597,7/01/2017 3:00,23/08/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3555,7/01/2017 3:00,23/07/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3537,7/01/2017 3:00,23/07/2014 14:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3496,7/01/2017 3:00,20/06/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3489,7/01/2017 3:00,7/07/2014 14:55,4.3,255, Credentials Management,nan
CVE-2014-3486,7/01/2017 3:00,7/07/2014 14:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3431,7/01/2017 2:59,21/06/2014 15:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-3160,7/01/2017 2:59,20/07/2014 11:12,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-3113,7/01/2017 2:59,7/07/2014 11:01,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3088,7/01/2017 2:59,1/07/2014 20:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2851,7/01/2017 2:59,14/04/2014 23:55,6.9,189, Numeric Errors,nan
CVE-2014-2653,7/01/2017 2:59,27/03/2014 10:55,5.8,20, Improper Input Validation,nan
CVE-2014-2629,7/01/2017 2:59,12/08/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2626,7/01/2017 2:59,26/07/2014 15:55,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2625,7/01/2017 2:59,26/07/2014 15:55,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2599,7/01/2017 2:59,28/03/2014 15:55,4.9,20, Improper Input Validation,nan
CVE-2014-2519,7/01/2017 2:59,19/07/2014 19:55,5.8,200, Information Exposure,nan
CVE-2014-2514,7/01/2017 2:59,8/07/2014 11:06,8.2,20, Improper Input Validation,nan
CVE-2014-2513,7/01/2017 2:59,8/07/2014 11:06,8.2,20, Improper Input Validation,nan
CVE-2014-2510,7/01/2017 2:59,8/07/2014 11:06,6.8,200, Information Exposure,nan
CVE-2014-2497,7/01/2017 2:59,21/03/2014 14:55,4.3,399, Resource Management Errors,nan
CVE-2014-2198,7/01/2017 2:59,7/07/2014 11:01,10.0,255, Credentials Management,nan
CVE-2014-2197,7/01/2017 2:59,7/07/2014 11:01,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1896,7/01/2017 2:59,1/04/2014 6:35,4.9,20, Improper Input Validation,nan
CVE-2014-1895,7/01/2017 2:59,1/04/2014 6:35,5.8,189, Numeric Errors,nan
CVE-2014-1894,7/01/2017 2:59,1/04/2014 6:35,5.2,189, Numeric Errors,nan
CVE-2014-1893,7/01/2017 2:59,1/04/2014 6:35,5.2,189, Numeric Errors,nan
CVE-2014-1892,7/01/2017 2:59,1/04/2014 6:35,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1891,7/01/2017 2:59,1/04/2014 6:35,5.2,189, Numeric Errors,nan
CVE-2014-1733,7/01/2017 2:59,26/04/2014 10:55,7.5,20, Improper Input Validation,nan
CVE-2014-1732,7/01/2017 2:59,26/04/2014 10:55,7.5,399, Resource Management Errors,nan
CVE-2014-1731,7/01/2017 2:59,26/04/2014 10:55,7.5,20, Improper Input Validation,nan
CVE-2014-1730,7/01/2017 2:59,26/04/2014 10:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1727,7/01/2017 2:59,9/04/2014 10:57,7.5,399, Resource Management Errors,nan
CVE-2014-1725,7/01/2017 2:59,9/04/2014 10:57,5.0,20, Improper Input Validation,nan
CVE-2014-1724,7/01/2017 2:59,9/04/2014 10:57,7.5,399, Resource Management Errors,nan
CVE-2014-1723,7/01/2017 2:59,9/04/2014 10:57,7.5,20, Improper Input Validation,nan
CVE-2014-1722,7/01/2017 2:59,9/04/2014 10:57,7.5,399, Resource Management Errors,nan
CVE-2014-1721,7/01/2017 2:59,9/04/2014 10:57,7.5,189, Numeric Errors,nan
CVE-2014-1720,7/01/2017 2:59,9/04/2014 10:57,7.5,399, Resource Management Errors,nan
CVE-2014-1719,7/01/2017 2:59,9/04/2014 10:57,7.5,399, Resource Management Errors,nan
CVE-2014-1718,7/01/2017 2:59,9/04/2014 10:57,7.5,189, Numeric Errors,nan
CVE-2014-1717,7/01/2017 2:59,9/04/2014 10:57,7.5,189, Numeric Errors,nan
CVE-2014-1715,7/01/2017 2:59,16/03/2014 14:06,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1714,7/01/2017 2:59,16/03/2014 14:06,7.5,20, Improper Input Validation,nan
CVE-2014-1713,7/01/2017 2:59,16/03/2014 14:06,7.5,399, Resource Management Errors,nan
CVE-2014-1703,7/01/2017 2:59,16/03/2014 14:06,7.5,399, Resource Management Errors,nan
CVE-2014-1702,7/01/2017 2:59,16/03/2014 14:06,7.5,399, Resource Management Errors,nan
CVE-2014-1701,7/01/2017 2:59,16/03/2014 14:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1700,7/01/2017 2:59,16/03/2014 14:06,7.5,399, Resource Management Errors,nan
CVE-2014-1609,7/01/2017 2:59,20/03/2014 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1608,7/01/2017 2:59,18/03/2014 17:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1566,7/01/2017 2:59,3/09/2014 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1565,7/01/2017 2:59,3/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1561,7/01/2017 2:59,23/07/2014 11:12,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1557,7/01/2017 2:59,23/07/2014 11:12,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1556,7/01/2017 2:59,23/07/2014 11:12,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1552,7/01/2017 2:59,23/07/2014 11:12,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1549,7/01/2017 2:59,23/07/2014 11:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1546,7/01/2017 2:59,14/08/2014 11:15,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1532,7/01/2017 2:59,30/04/2014 10:49,10.0,399, Resource Management Errors,nan
CVE-2014-1531,7/01/2017 2:59,30/04/2014 10:49,10.0,399, Resource Management Errors,nan
CVE-2014-1530,7/01/2017 2:59,30/04/2014 10:49,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1529,7/01/2017 2:59,30/04/2014 10:49,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1524,7/01/2017 2:59,30/04/2014 10:49,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1523,7/01/2017 2:59,30/04/2014 10:49,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1419,7/01/2017 2:59,24/07/2014 14:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-1360,7/01/2017 2:59,1/07/2014 10:17,2.1,20, Improper Input Validation,nan
CVE-2014-1354,7/01/2017 2:59,1/07/2014 10:17,6.8,399, Resource Management Errors,nan
CVE-2014-1353,7/01/2017 2:59,1/07/2014 10:17,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1352,7/01/2017 2:59,1/07/2014 10:17,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-1351,7/01/2017 2:59,1/07/2014 10:17,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1350,7/01/2017 2:59,1/07/2014 10:17,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1348,7/01/2017 2:59,1/07/2014 10:17,2.1,310, Cryptographic Issues,nan
CVE-2014-0875,7/01/2017 2:59,7/07/2014 11:01,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0600,7/01/2017 2:59,29/08/2014 9:55,7.8,200, Information Exposure,nan
CVE-2014-0598,7/01/2017 2:59,18/06/2014 17:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0545,7/01/2017 2:59,12/08/2014 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0544,7/01/2017 2:59,12/08/2014 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0543,7/01/2017 2:59,12/08/2014 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0542,7/01/2017 2:59,12/08/2014 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0541,7/01/2017 2:59,12/08/2014 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0540,7/01/2017 2:59,12/08/2014 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0474,7/01/2017 2:59,23/04/2014 15:55,10.0,399, Resource Management Errors,nan
CVE-2014-0473,7/01/2017 2:59,23/04/2014 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0472,7/01/2017 2:59,23/04/2014 15:55,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0363,7/01/2017 2:59,30/04/2014 10:49,5.8,254, 7PK – Security Features,nan
CVE-2014-0239,7/01/2017 2:59,28/05/2014 4:58,5.0,20, Improper Input Validation,nan
CVE-2014-0238,7/01/2017 2:59,1/06/2014 4:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0237,7/01/2017 2:59,1/06/2014 4:29,5.0,399, Resource Management Errors,nan
CVE-2014-0203,7/01/2017 2:59,23/06/2014 11:21,4.9,20, Improper Input Validation,nan
CVE-2014-0196,7/01/2017 2:59,7/05/2014 10:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0185,7/01/2017 2:59,6/05/2014 10:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-0093,7/01/2017 2:59,3/04/2014 16:15,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0077,7/01/2017 2:59,14/04/2014 23:55,5.5,20, Improper Input Validation,nan
CVE-2014-0058,7/01/2017 2:59,26/02/2014 15:55,1.9,310, Cryptographic Issues,nan
CVE-2014-0018,7/01/2017 2:59,14/02/2014 15:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-7020,7/01/2017 2:59,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6835,7/01/2017 2:59,14/03/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6666,7/01/2017 2:59,5/03/2014 5:11,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6665,7/01/2017 2:59,5/03/2014 5:11,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6664,7/01/2017 2:59,5/03/2014 5:11,7.5,399, Resource Management Errors,nan
CVE-2013-6663,7/01/2017 2:59,5/03/2014 5:11,7.5,399, Resource Management Errors,nan
CVE-2013-6442,7/01/2017 2:59,14/03/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6400,7/01/2017 2:59,13/12/2013 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5704,7/01/2017 2:59,15/04/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5227,7/01/2017 2:59,18/12/2013 16:04,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-4554,7/01/2017 2:59,24/12/2013 19:55,5.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4553,7/01/2017 2:59,24/12/2013 19:55,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4496,7/01/2017 2:59,14/03/2014 10:55,5.0,255, Credentials Management,nan
CVE-2013-4475,7/01/2017 2:59,13/11/2013 15:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4444,7/01/2017 2:59,12/09/2014 1:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4416,7/01/2017 2:59,2/11/2013 19:55,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4408,7/01/2017 2:59,10/12/2013 6:14,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4375,7/01/2017 2:59,19/01/2014 18:55,2.7,399, Resource Management Errors,nan
CVE-2013-4371,7/01/2017 2:59,17/10/2013 23:55,4.4,399, Resource Management Errors,nan
CVE-2013-4370,7/01/2017 2:59,17/10/2013 23:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4361,7/01/2017 2:59,1/10/2013 17:55,2.1,200, Information Exposure,nan
CVE-2013-4356,7/01/2017 2:59,9/10/2013 22:55,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-4355,7/01/2017 2:59,1/10/2013 17:55,1.5,200, Information Exposure,nan
CVE-2013-4353,7/01/2017 2:59,9/01/2014 1:55,4.3,20, Improper Input Validation,nan
CVE-2013-4329,7/01/2017 2:59,12/09/2013 18:37,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2094,7/01/2017 2:59,14/05/2013 20:55,7.2,189, Numeric Errors,nan
CVE-2013-1442,7/01/2017 2:59,30/09/2013 21:55,1.2,200, Information Exposure,nan
CVE-2012-6150,7/01/2017 2:59,3/12/2013 19:55,3.6,20, Improper Input Validation,nan
CVE-2012-1164,7/01/2017 2:59,29/06/2012 19:55,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1025,7/01/2017 2:59,20/03/2011 2:00,6.8,287, Improper Authentication,nan
CVE-2011-1024,7/01/2017 2:59,20/03/2011 2:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6473,6/01/2017 19:59,14/12/2016 0:59,6.1,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-0579,6/01/2017 17:41,14/01/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-0692,6/01/2017 17:20,11/04/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0634,6/01/2017 17:20,15/05/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0731,6/01/2017 17:13,16/05/2015 2:01,6.1,399, Resource Management Errors,nan
CVE-2015-0729,6/01/2017 17:13,16/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0738,6/01/2017 17:12,17/05/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0736,6/01/2017 17:12,16/05/2015 2:01,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0728,6/01/2017 17:12,15/05/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0693,6/01/2017 17:12,15/04/2015 10:59,7.2,20, Improper Input Validation,nan
CVE-2015-0739,6/01/2017 17:09,19/05/2015 2:00,4.0,20, Improper Input Validation,nan
CVE-2015-0724,6/01/2017 17:09,15/05/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0698,6/01/2017 17:09,15/04/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0696,6/01/2017 17:09,15/04/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0742,6/01/2017 17:03,21/05/2015 10:59,5.0,399, Resource Management Errors,nan
CVE-2015-0741,6/01/2017 17:03,21/05/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0740,6/01/2017 17:03,20/05/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4282,6/01/2017 16:55,6/11/2015 11:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-6316,6/01/2017 16:53,6/11/2015 11:59,6.5,255, Credentials Management,nan
CVE-2015-0697,6/01/2017 16:32,15/04/2015 10:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2015-0699,6/01/2017 16:31,15/04/2015 10:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0704,6/01/2017 16:29,22/04/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0717,6/01/2017 16:28,16/05/2015 14:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-1287,6/01/2017 16:15,11/02/2016 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0700,6/01/2017 16:06,17/04/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0723,6/01/2017 16:05,16/05/2015 14:59,6.1,399, Resource Management Errors,nan
CVE-2015-0691,6/01/2017 16:05,17/04/2015 1:59,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-0703,6/01/2017 15:52,21/04/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0735,6/01/2017 15:31,17/05/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0730,6/01/2017 15:30,16/05/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-0727,6/01/2017 15:30,15/05/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0726,6/01/2017 15:30,16/05/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-0705,6/01/2017 15:30,22/04/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0702,6/01/2017 15:29,21/04/2015 2:59,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-0695,6/01/2017 15:29,17/04/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-6892,6/01/2017 15:24,5/01/2017 22:59,5.0,416, Use After Free,nan
CVE-2016-6891,6/01/2017 15:14,5/01/2017 22:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-6890,6/01/2017 15:14,5/01/2017 22:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000117,6/01/2017 2:59,21/10/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3070,5/01/2017 20:16,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3076,5/01/2017 20:14,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3072,5/01/2017 20:14,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3071,5/01/2017 20:14,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3075,5/01/2017 20:12,13/05/2015 11:00,10.0,416, Use After Free,nan
CVE-2015-3066,5/01/2017 20:09,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3065,5/01/2017 20:09,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3059,5/01/2017 20:09,13/05/2015 10:59,10.0,416, Use After Free,nan
CVE-2015-3048,5/01/2017 20:09,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3046,5/01/2017 20:09,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3073,5/01/2017 20:06,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3069,5/01/2017 20:06,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3068,5/01/2017 20:06,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3074,5/01/2017 20:04,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2015-3055,5/01/2017 20:03,13/05/2015 10:59,7.5,416, Use After Free,nan
CVE-2015-3053,5/01/2017 20:03,13/05/2015 10:59,10.0,416, Use After Free,nan
CVE-2015-3063,5/01/2017 19:54,13/05/2015 10:59,10.0,284, Improper Access Control,nan
CVE-2015-3064,5/01/2017 19:53,13/05/2015 10:59,10.0,284, Improper Access Control,nan
CVE-2015-3062,5/01/2017 19:53,13/05/2015 10:59,10.0,284, Improper Access Control,nan
CVE-2015-3061,5/01/2017 19:53,13/05/2015 10:59,10.0,284, Improper Access Control,nan
CVE-2015-3067,5/01/2017 19:48,13/05/2015 11:00,10.0,284, Improper Access Control,nan
CVE-2012-4511,5/01/2017 14:21,22/10/2012 23:55,5.8,200, Information Exposure,nan
CVE-2011-4129,5/01/2017 14:20,22/10/2012 23:55,5.8,200, Information Exposure,nan
CVE-2015-6335,5/01/2017 14:11,25/10/2015 2:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-6340,5/01/2017 14:06,27/10/2015 2:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8081,5/01/2017 14:04,6/11/2015 21:59,5.0,200, Information Exposure,nan
CVE-2015-7600,5/01/2017 14:04,6/10/2015 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6341,5/01/2017 13:45,25/10/2015 2:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-6467,5/01/2017 13:41,14/12/2016 0:59,5.0,399, Resource Management Errors,nan
CVE-2016-6465,5/01/2017 13:41,14/12/2016 0:59,4.3,20, Improper Input Validation,nan
CVE-2016-6464,5/01/2017 13:41,14/12/2016 0:59,5.0,200, Information Exposure,nan
CVE-2016-6469,5/01/2017 13:35,14/12/2016 0:59,5.0,399, Resource Management Errors,nan
CVE-2016-6470,5/01/2017 13:09,14/12/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6468,5/01/2017 13:09,14/12/2016 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6471,5/01/2017 13:03,14/12/2016 0:59,4.0,200, Information Exposure,nan
CVE-2016-6474,5/01/2017 12:58,14/12/2016 0:59,5.8,287, Improper Authentication,nan
CVE-2016-10107,5/01/2017 2:59,3/01/2017 6:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-10105,5/01/2017 2:59,3/01/2017 6:59,7.5,284, Improper Access Control,nan
CVE-2016-10100,5/01/2017 2:59,2/01/2017 21:59,5.0,20, Improper Input Validation,nan
CVE-2015-6263,4/01/2017 19:44,12/10/2015 1:59,6.3,399, Resource Management Errors,nan
CVE-2015-6265,4/01/2017 19:35,27/08/2015 2:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6278,4/01/2017 19:34,28/09/2015 2:59,7.8,20, Improper Input Validation,nan
CVE-2015-6285,4/01/2017 19:33,14/09/2015 1:59,6.4,134, Use of Externally-Controlled Format String,nan
CVE-2015-6282,4/01/2017 19:33,26/09/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-6280,4/01/2017 19:33,28/09/2015 2:59,9.3,287, Improper Authentication,nan
CVE-2015-6311,4/01/2017 19:28,8/10/2015 20:59,6.1,399, Resource Management Errors,nan
CVE-2015-6310,4/01/2017 19:00,8/10/2015 20:59,5.0,399, Resource Management Errors,nan
CVE-2015-6308,4/01/2017 19:00,2/10/2015 15:59,4.0,399, Resource Management Errors,nan
CVE-2015-6318,4/01/2017 18:58,12/10/2015 10:59,6.9,20, Improper Input Validation,nan
CVE-2015-6324,4/01/2017 18:52,25/10/2015 2:59,7.1,399, Resource Management Errors,nan
CVE-2015-6325,4/01/2017 18:50,25/10/2015 2:59,7.1,399, Resource Management Errors,nan
CVE-2015-6327,4/01/2017 18:49,25/10/2015 2:59,7.8,399, Resource Management Errors,nan
CVE-2015-4331,4/01/2017 18:48,22/08/2015 17:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4330,4/01/2017 18:48,2/09/2015 16:59,6.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4329,4/01/2017 18:37,20/08/2015 10:59,6.5,20, Improper Input Validation,nan
CVE-2015-6256,4/01/2017 18:24,22/08/2015 17:59,5.0,20, Improper Input Validation,nan
CVE-2015-6255,4/01/2017 18:18,19/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6261,4/01/2017 18:17,26/08/2015 14:59,4.0,200, Information Exposure,nan
CVE-2015-6258,4/01/2017 18:17,22/08/2015 17:59,5.0,20, Improper Input Validation,nan
CVE-2015-4319,4/01/2017 18:04,20/08/2015 10:59,5.5,255, Credentials Management,nan
CVE-2015-4307,4/01/2017 18:04,20/09/2015 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4310,4/01/2017 17:58,19/08/2015 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4306,4/01/2017 17:57,20/09/2015 1:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4304,4/01/2017 17:57,20/09/2015 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4229,4/01/2017 17:56,30/06/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-4226,4/01/2017 17:55,30/06/2015 15:59,7.1,399, Resource Management Errors,nan
CVE-2015-4184,4/01/2017 17:49,13/06/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-4182,4/01/2017 17:43,12/06/2015 14:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4185,4/01/2017 16:27,13/06/2015 10:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-4305,4/01/2017 16:24,20/09/2015 1:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0766,4/01/2017 16:14,4/06/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4324,4/01/2017 16:10,19/08/2015 15:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0776,4/01/2017 16:06,12/06/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-0775,4/01/2017 16:06,12/06/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-0774,4/01/2017 16:06,12/06/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0773,4/01/2017 16:03,12/06/2015 10:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0772,4/01/2017 16:03,12/06/2015 14:59,7.1,399, Resource Management Errors,nan
CVE-2015-0771,4/01/2017 16:03,12/06/2015 10:59,6.3,399, Resource Management Errors,nan
CVE-2015-0770,4/01/2017 16:03,7/06/2015 18:59,5.0,93, Improper Neutralization of CRLF Sequences (‘CRLF Injection’),nan
CVE-2015-0768,4/01/2017 16:03,12/06/2015 14:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0769,4/01/2017 16:02,12/06/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-0765,4/01/2017 15:53,4/06/2015 10:59,5.0,399, Resource Management Errors,nan
CVE-2015-4328,4/01/2017 15:50,20/08/2015 0:59,4.0,20, Improper Input Validation,nan
CVE-2015-4327,4/01/2017 15:50,20/08/2015 0:59,7.2,20, Improper Input Validation,nan
CVE-2015-4325,4/01/2017 15:50,12/10/2015 10:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-0747,4/01/2017 15:44,30/05/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-0745,4/01/2017 15:44,30/05/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-0744,4/01/2017 15:44,30/05/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-0743,4/01/2017 15:44,30/05/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-0751,4/01/2017 15:36,29/05/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2015-0755,4/01/2017 15:34,29/05/2015 15:59,6.8,284, Improper Access Control,nan
CVE-2015-0754,4/01/2017 15:34,29/05/2015 15:59,7.5,20, Improper Input Validation,nan
CVE-2015-0753,4/01/2017 15:34,29/05/2015 15:59,6.8,20, Improper Input Validation,nan
CVE-2015-0752,4/01/2017 15:34,29/05/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0756,4/01/2017 15:05,29/05/2015 15:59,6.1,399, Resource Management Errors,nan
CVE-2015-0737,4/01/2017 14:59,12/06/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0733,4/01/2017 14:58,30/05/2015 14:59,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2015-0762,4/01/2017 14:56,4/06/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0761,4/01/2017 14:56,4/06/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0760,4/01/2017 14:56,4/06/2015 10:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0759,4/01/2017 14:56,2/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0758,4/01/2017 14:56,30/05/2015 14:59,4.0,200, Information Exposure,nan
CVE-2015-0764,4/01/2017 14:52,4/06/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-0763,4/01/2017 14:52,4/06/2015 10:59,5.0,200, Information Exposure,nan
CVE-2013-5528,4/01/2017 14:52,11/10/2013 3:54,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9210,4/01/2017 14:43,14/12/2016 0:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9205,4/01/2017 14:43,14/12/2016 0:59,5.0,399, Resource Management Errors,nan
CVE-2016-9204,4/01/2017 14:35,14/12/2016 0:59,6.4,255, Credentials Management,nan
CVE-2016-6859,4/01/2017 14:35,31/12/2016 7:59,4.0,200, Information Exposure,nan
CVE-2016-1005,4/01/2017 2:59,12/03/2016 15:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0992,4/01/2017 2:59,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0989,4/01/2017 2:59,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0986,4/01/2017 2:59,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0962,4/01/2017 2:59,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0961,4/01/2017 2:59,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0960,4/01/2017 2:59,12/03/2016 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8595,3/01/2017 20:03,23/12/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-3052,3/01/2017 20:03,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3051,3/01/2017 20:03,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3049,3/01/2017 20:03,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3050,3/01/2017 19:58,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-10083,3/01/2017 19:49,30/12/2016 7:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3057,3/01/2017 19:46,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3056,3/01/2017 19:39,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3058,3/01/2017 19:38,13/05/2015 10:59,5.0,200, Information Exposure,nan
CVE-2016-10082,3/01/2017 19:32,30/12/2016 7:59,7.5,284, Improper Access Control,nan
CVE-2016-10085,3/01/2017 19:17,30/12/2016 7:59,6.5,284, Improper Access Control,nan
CVE-2015-3459,3/01/2017 19:16,29/04/2015 23:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3060,3/01/2017 19:02,13/05/2015 10:59,10.0,284, Improper Access Control,nan
CVE-2016-10084,3/01/2017 19:00,30/12/2016 7:59,6.5,284, Improper Access Control,nan
CVE-2016-9224,3/01/2017 18:50,26/12/2016 8:59,6.4,20, Improper Input Validation,nan
CVE-2015-0854,3/01/2017 18:50,29/12/2016 18:59,9.3,19, Data Processing Errors,nan
CVE-2016-7456,3/01/2017 18:43,29/12/2016 9:59,10.0,255, Credentials Management,nan
CVE-2016-9891,3/01/2017 18:39,29/12/2016 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1880,3/01/2017 18:39,12/05/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9223,3/01/2017 18:21,26/12/2016 8:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1920,3/01/2017 17:37,20/05/2015 0:59,10.0,284, Improper Access Control,nan
CVE-2015-3980,3/01/2017 3:00,12/05/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3633,3/01/2017 3:00,1/05/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3632,3/01/2017 3:00,1/05/2015 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3306,3/01/2017 3:00,18/05/2015 15:59,10.0,284, Improper Access Control,nan
CVE-2015-3293,3/01/2017 3:00,14/04/2015 18:59,4.0,200, Information Exposure,nan
CVE-2015-3092,3/01/2017 3:00,13/05/2015 11:00,5.0,200, Information Exposure,nan
CVE-2015-3091,3/01/2017 3:00,13/05/2015 11:00,5.0,200, Information Exposure,nan
CVE-2015-3090,3/01/2017 3:00,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3085,3/01/2017 2:59,13/05/2015 11:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-3079,3/01/2017 2:59,13/05/2015 11:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3078,3/01/2017 2:59,13/05/2015 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2720,3/01/2017 2:59,14/05/2015 10:59,4.4,17, DEPRECATED: Code,nan
CVE-2015-2714,3/01/2017 2:59,14/05/2015 10:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-2668,3/01/2017 2:59,12/05/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-2234,3/01/2017 2:59,12/05/2015 19:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-2222,3/01/2017 2:59,12/05/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-2221,3/01/2017 2:59,12/05/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-2170,3/01/2017 2:59,12/05/2015 19:59,5.0,399, Resource Management Errors,nan
CVE-2015-2042,3/01/2017 2:59,21/04/2015 10:59,4.6,17, DEPRECATED: Code,nan
CVE-2015-1889,3/01/2017 2:59,22/04/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1881,3/01/2017 2:59,24/02/2015 15:59,4.0,399, Resource Management Errors,nan
CVE-2015-1782,3/01/2017 2:59,13/03/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-1774,3/01/2017 2:59,28/04/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1264,3/01/2017 2:59,20/05/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1263,3/01/2017 2:59,20/05/2015 10:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-1262,3/01/2017 2:59,20/05/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-1261,3/01/2017 2:59,20/05/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-1259,3/01/2017 2:59,20/05/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-1258,3/01/2017 2:59,20/05/2015 10:59,7.5,189, Numeric Errors,nan
CVE-2015-1257,3/01/2017 2:59,20/05/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1254,3/01/2017 2:59,20/05/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1253,3/01/2017 2:59,20/05/2015 10:59,7.5,284, Improper Access Control,nan
CVE-2015-1252,3/01/2017 2:59,20/05/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1248,3/01/2017 2:59,19/04/2015 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1247,3/01/2017 2:59,19/04/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-1246,3/01/2017 2:59,19/04/2015 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1244,3/01/2017 2:59,19/04/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-1241,3/01/2017 2:59,19/04/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-1240,3/01/2017 2:59,19/04/2015 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1238,3/01/2017 2:59,19/04/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1236,3/01/2017 2:59,19/04/2015 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1235,3/01/2017 2:59,19/04/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1155,3/01/2017 2:59,8/05/2015 0:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1116,3/01/2017 2:59,10/04/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-1115,3/01/2017 2:59,10/04/2015 14:59,4.4,284, Improper Access Control,nan
CVE-2015-1113,3/01/2017 2:59,10/04/2015 14:59,1.9,200, Information Exposure,nan
CVE-2015-1111,3/01/2017 2:59,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1109,3/01/2017 2:59,10/04/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-1108,3/01/2017 2:59,10/04/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-1106,3/01/2017 2:59,10/04/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-1091,3/01/2017 2:59,10/04/2015 14:59,4.3,200, Information Exposure,nan
CVE-2015-1090,3/01/2017 2:59,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1089,3/01/2017 2:59,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1088,3/01/2017 2:59,10/04/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-1087,3/01/2017 2:59,10/04/2015 14:59,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1085,3/01/2017 2:59,10/04/2015 14:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-0840,3/01/2017 2:59,13/04/2015 14:59,4.3,284, Improper Access Control,nan
CVE-2015-0817,3/01/2017 2:59,24/03/2015 0:59,6.8,17, DEPRECATED: Code,nan
CVE-2015-0807,3/01/2017 2:59,1/04/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0801,3/01/2017 2:59,1/04/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0797,3/01/2017 2:59,14/05/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0530,3/01/2017 2:59,17/04/2015 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0513,3/01/2017 2:59,21/01/2015 15:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0357,3/01/2017 2:59,14/04/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-0345,3/01/2017 2:59,15/04/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0189,3/01/2017 2:59,20/05/2015 10:59,4.0,399, Resource Management Errors,nan
CVE-2015-0138,3/01/2017 2:59,25/03/2015 1:59,4.3,310, Cryptographic Issues,nan
CVE-2014-9721,3/01/2017 2:59,3/06/2015 20:59,4.3,20, Improper Input Validation,nan
CVE-2014-9684,3/01/2017 2:59,24/02/2015 15:59,4.0,399, Resource Management Errors,nan
CVE-2014-9569,3/01/2017 2:59,7/01/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9506,3/01/2017 2:59,4/01/2015 21:59,3.5,200, Information Exposure,nan
CVE-2014-9422,3/01/2017 2:59,19/02/2015 11:59,6.1,284, Improper Access Control,nan
CVE-2014-9388,3/01/2017 2:59,17/12/2014 19:59,5.0,284, Improper Access Control,nan
CVE-2014-9328,3/01/2017 2:59,3/02/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9324,3/01/2017 2:59,19/12/2014 15:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9272,3/01/2017 2:59,9/01/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9271,3/01/2017 2:59,9/01/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9269,3/01/2017 2:59,9/01/2015 18:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9161,3/01/2017 2:59,30/01/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9160,3/01/2017 2:59,13/05/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9089,3/01/2017 2:59,28/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8989,3/01/2017 2:59,30/11/2014 1:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-8986,3/01/2017 2:59,24/11/2014 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8730,3/01/2017 2:59,10/12/2014 0:59,4.3,310, Cryptographic Issues,nan
CVE-2014-8630,3/01/2017 2:59,1/02/2015 15:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-8619,3/01/2017 2:59,12/05/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8618,3/01/2017 2:59,12/05/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8616,3/01/2017 2:59,12/05/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8500,3/01/2017 2:59,11/12/2014 2:59,7.8,399, Resource Management Errors,nan
CVE-2014-8160,3/01/2017 2:59,2/03/2015 11:59,5.0,254, 7PK – Security Features,nan
CVE-2014-8134,3/01/2017 2:59,12/12/2014 18:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-8103,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8102,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8101,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8100,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8099,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8097,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8096,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8095,3/01/2017 2:59,10/12/2014 15:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8094,3/01/2017 2:59,10/12/2014 15:59,6.5,190, Integer Overflow or Wraparound,nan
CVE-2014-8026,3/01/2017 2:59,23/12/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8025,3/01/2017 2:59,23/12/2014 2:59,4.3,200, Information Exposure,nan
CVE-2014-8024,3/01/2017 2:59,23/12/2014 2:59,4.3,200, Information Exposure,nan
CVE-2014-8019,3/01/2017 2:59,20/12/2014 0:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8018,3/01/2017 2:59,22/12/2014 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8017,3/01/2017 2:59,22/12/2014 19:59,5.0,200, Information Exposure,nan
CVE-2014-8015,3/01/2017 2:59,22/12/2014 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8014,3/01/2017 2:59,18/12/2014 16:59,5.0,19, Data Processing Errors,nan
CVE-2014-8012,3/01/2017 2:59,18/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8010,3/01/2017 2:59,10/12/2014 21:59,6.5,20, Improper Input Validation,nan
CVE-2014-8008,3/01/2017 2:59,22/01/2015 14:01,6.8,200, Information Exposure,nan
CVE-2014-8007,3/01/2017 2:59,20/12/2014 0:59,4.0,200, Information Exposure,nan
CVE-2014-7948,3/01/2017 2:59,22/01/2015 22:59,4.3,310, Cryptographic Issues,nan
CVE-2014-7947,3/01/2017 2:59,22/01/2015 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7946,3/01/2017 2:59,22/01/2015 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7945,3/01/2017 2:59,22/01/2015 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7944,3/01/2017 2:59,22/01/2015 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7938,3/01/2017 2:59,22/01/2015 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7937,3/01/2017 2:59,22/01/2015 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7931,3/01/2017 2:59,22/01/2015 22:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-7929,3/01/2017 2:59,22/01/2015 22:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-7928,3/01/2017 2:59,22/01/2015 22:59,7.5,19, Data Processing Errors,nan
CVE-2014-7927,3/01/2017 2:59,22/01/2015 22:59,7.5,189, Numeric Errors,nan
CVE-2014-7852,3/01/2017 2:59,11/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7842,3/01/2017 2:59,30/11/2014 1:59,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-7841,3/01/2017 2:59,30/11/2014 1:59,5.0,399, Resource Management Errors,nan
CVE-2014-7823,3/01/2017 2:59,13/11/2014 21:32,5.0,255, Credentials Management,nan
CVE-2014-7822,3/01/2017 2:59,16/03/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-7285,3/01/2017 2:59,17/12/2014 16:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-6040,3/01/2017 2:59,5/12/2014 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4776,3/01/2017 2:59,20/05/2015 10:59,2.1,200, Information Exposure,nan
CVE-2014-4668,3/01/2017 2:59,2/07/2014 4:14,6.8,287, Improper Authentication,nan
CVE-2014-3669,3/01/2017 2:59,29/10/2014 10:55,7.5,189, Numeric Errors,nan
CVE-2014-3611,3/01/2017 2:59,10/11/2014 11:55,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3610,3/01/2017 2:59,10/11/2014 11:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3513,3/01/2017 2:59,19/10/2014 1:55,7.1,20, Improper Input Validation,nan
CVE-2014-3440,3/01/2017 2:59,21/01/2015 15:17,9.0,20, Improper Input Validation,nan
CVE-2014-0558,3/01/2017 2:59,15/10/2014 10:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4289,3/01/2017 2:59,18/04/2014 14:55,10.0,189, Numeric Errors,nan
CVE-2012-5615,3/01/2017 2:59,3/12/2012 12:49,5.0,200, Information Exposure,nan
CVE-2016-9777,31/12/2016 2:59,28/12/2016 7:59,6.9,125, Out-of-bounds Read,nan
CVE-2016-7463,31/12/2016 2:59,29/12/2016 9:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4802,31/12/2016 2:59,24/06/2016 17:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-2115,31/12/2016 2:59,25/04/2016 0:59,4.3,254, 7PK – Security Features,nan
CVE-2016-2114,31/12/2016 2:59,25/04/2016 0:59,4.3,254, 7PK – Security Features,nan
CVE-2016-2113,31/12/2016 2:59,25/04/2016 0:59,5.8,310, Cryptographic Issues,nan
CVE-2016-2112,31/12/2016 2:59,25/04/2016 0:59,4.3,254, 7PK – Security Features,nan
CVE-2016-2111,31/12/2016 2:59,25/04/2016 0:59,4.3,254, 7PK – Security Features,nan
CVE-2016-2110,31/12/2016 2:59,25/04/2016 0:59,4.3,254, 7PK – Security Features,nan
CVE-2016-10037,31/12/2016 2:59,24/12/2016 11:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10031,31/12/2016 2:59,27/12/2016 7:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-8467,31/12/2016 2:59,29/12/2015 22:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7540,31/12/2016 2:59,29/12/2015 22:59,5.0,399, Resource Management Errors,nan
CVE-2015-5986,31/12/2016 2:59,5/09/2015 2:59,7.1,20, Improper Input Validation,nan
CVE-2015-5722,31/12/2016 2:59,5/09/2015 2:59,7.8,20, Improper Input Validation,nan
CVE-2015-5330,31/12/2016 2:59,29/12/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-5299,31/12/2016 2:59,29/12/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-5252,31/12/2016 2:59,29/12/2015 22:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4418,31/12/2016 2:59,9/06/2015 0:59,5.0,284, Improper Access Control,nan
CVE-2015-4161,31/12/2016 2:59,2/06/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4135,31/12/2016 2:59,28/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4127,31/12/2016 2:59,28/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4051,31/12/2016 2:59,8/06/2015 14:59,9.0,284, Improper Access Control,nan
CVE-2015-4050,31/12/2016 2:59,2/06/2015 14:59,4.3,284, Improper Access Control,nan
CVE-2015-3983,31/12/2016 2:59,14/05/2015 14:59,4.3,310, Cryptographic Issues,nan
CVE-2015-3923,31/12/2016 2:59,10/06/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-3921,31/12/2016 2:59,27/05/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3905,31/12/2016 2:59,8/06/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3345,31/12/2016 2:59,21/04/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3339,31/12/2016 2:59,27/05/2015 10:59,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-3223,31/12/2016 2:59,29/12/2015 22:59,5.0,399, Resource Management Errors,nan
CVE-2015-3201,31/12/2016 2:59,8/06/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-3181,31/12/2016 2:59,1/06/2015 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3180,31/12/2016 2:59,1/06/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-3179,31/12/2016 2:59,1/06/2015 19:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3178,31/12/2016 2:59,1/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3177,31/12/2016 2:59,1/06/2015 19:59,3.5,17, DEPRECATED: Code,nan
CVE-2015-3176,31/12/2016 2:59,1/06/2015 19:59,4.3,200, Information Exposure,nan
CVE-2015-3174,31/12/2016 2:59,1/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3108,31/12/2016 2:59,10/06/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-3105,31/12/2016 2:59,10/06/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3104,31/12/2016 2:59,10/06/2015 1:59,10.0,189, Numeric Errors,nan
CVE-2015-3102,31/12/2016 2:59,10/06/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-3101,31/12/2016 2:59,10/06/2015 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3100,31/12/2016 2:59,10/06/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3099,31/12/2016 2:59,10/06/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-3098,31/12/2016 2:59,10/06/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-3096,31/12/2016 2:59,10/06/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2961,31/12/2016 2:59,9/06/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2960,31/12/2016 2:59,9/06/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2959,31/12/2016 2:59,9/06/2015 0:59,7.5,284, Improper Access Control,nan
CVE-2015-2666,31/12/2016 2:59,27/05/2015 10:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2341,31/12/2016 2:59,13/06/2015 14:59,7.8,20, Improper Input Validation,nan
CVE-2015-2340,31/12/2016 2:59,13/06/2015 14:59,6.1,399, Resource Management Errors,nan
CVE-2015-2339,31/12/2016 2:59,13/06/2015 14:59,6.1,399, Resource Management Errors,nan
CVE-2015-2338,31/12/2016 2:59,13/06/2015 14:59,6.1,399, Resource Management Errors,nan
CVE-2015-2337,31/12/2016 2:59,13/06/2015 14:59,5.8,399, Resource Management Errors,nan
CVE-2015-2336,31/12/2016 2:59,13/06/2015 14:59,5.8,399, Resource Management Errors,nan
CVE-2015-2077,31/12/2016 2:59,24/02/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-2066,31/12/2016 2:59,24/02/2015 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2064,31/12/2016 2:59,24/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2052,31/12/2016 2:59,23/02/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2051,31/12/2016 2:59,23/02/2015 17:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1860,31/12/2016 2:59,12/05/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1859,31/12/2016 2:59,12/05/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1858,31/12/2016 2:59,12/05/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1848,31/12/2016 2:59,14/05/2015 14:59,6.8,310, Cryptographic Issues,nan
CVE-2015-1827,31/12/2016 2:59,30/03/2015 14:59,5.0,19, Data Processing Errors,nan
CVE-2015-1815,31/12/2016 2:59,30/03/2015 14:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1804,31/12/2016 2:59,20/03/2015 14:59,8.5,189, Numeric Errors,nan
CVE-2015-1608,31/12/2016 2:59,16/02/2015 2:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1389,31/12/2016 2:59,28/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1269,31/12/2016 2:59,26/06/2015 14:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1268,31/12/2016 2:59,26/06/2015 14:59,5.0,254, 7PK – Security Features,nan
CVE-2015-1267,31/12/2016 2:59,26/06/2015 14:59,5.0,254, 7PK – Security Features,nan
CVE-2015-1266,31/12/2016 2:59,26/06/2015 14:59,5.0,254, 7PK – Security Features,nan
CVE-2015-0847,31/12/2016 2:59,29/05/2015 15:59,7.8,17, DEPRECATED: Code,nan
CVE-2015-0541,31/12/2016 2:59,5/06/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0344,31/12/2016 2:59,13/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0343,31/12/2016 2:59,13/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0283,31/12/2016 2:59,30/03/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-0199,31/12/2016 2:59,24/03/2015 2:01,4.9,399, Resource Management Errors,nan
CVE-2015-0198,31/12/2016 2:59,24/03/2015 2:01,10.0,287, Improper Authentication,nan
CVE-2015-0197,31/12/2016 2:59,24/03/2015 2:01,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9710,31/12/2016 2:59,27/05/2015 10:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9427,31/12/2016 2:59,3/01/2015 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9200,31/12/2016 2:59,1/02/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8514,31/12/2016 2:59,27/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8109,31/12/2016 2:59,29/12/2014 23:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-3684,31/12/2016 2:59,30/10/2014 14:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0045,31/12/2016 2:59,8/02/2014 0:55,7.5,189, Numeric Errors,nan
CVE-2014-0004,31/12/2016 2:59,11/03/2014 19:37,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7441,31/12/2016 2:59,29/05/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2013-7409,31/12/2016 2:59,30/10/2014 15:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7389,31/12/2016 2:59,7/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7375,31/12/2016 2:59,5/05/2014 17:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7368,31/12/2016 2:59,15/04/2014 23:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7365,31/12/2016 2:59,10/04/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7354,31/12/2016 2:59,6/05/2014 14:55,5.0,189, Numeric Errors,nan
CVE-2013-7353,31/12/2016 2:59,6/05/2014 14:55,5.0,189, Numeric Errors,nan
CVE-2013-7349,31/12/2016 2:59,1/04/2014 3:25,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7293,31/12/2016 2:59,15/01/2014 16:13,5.0,284, Improper Access Control,nan
CVE-2013-7280,31/12/2016 2:59,8/01/2014 15:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7277,31/12/2016 2:59,8/01/2014 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7258,31/12/2016 2:59,3/01/2014 18:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7251,31/12/2016 2:59,2/01/2014 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7250,31/12/2016 2:59,2/01/2014 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7242,31/12/2016 2:59,31/12/2013 15:16,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7241,31/12/2016 2:59,31/12/2013 15:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7175,31/12/2016 2:59,24/01/2014 4:38,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7174,31/12/2016 2:59,9/01/2014 18:07,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7079,31/12/2016 2:59,23/12/2013 23:55,5.8,20, Improper Input Validation,nan
CVE-2013-6877,31/12/2016 2:59,19/12/2013 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6836,31/12/2016 2:59,19/12/2013 4:24,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6475,31/12/2016 2:59,14/03/2014 15:55,6.8,189, Numeric Errors,nan
CVE-2013-6474,31/12/2016 2:59,14/03/2014 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6473,31/12/2016 2:59,14/03/2014 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6382,31/12/2016 2:59,27/11/2013 4:43,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6381,31/12/2016 2:59,27/11/2013 4:43,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6369,31/12/2016 2:59,11/04/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6343,31/12/2016 2:59,22/01/2014 5:22,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6037,31/12/2016 2:59,11/03/2014 13:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6030,31/12/2016 2:59,24/01/2014 4:38,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6029,31/12/2016 2:59,4/12/2013 18:25,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6017,31/12/2016 2:59,12/01/2014 18:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5951,31/12/2016 2:59,25/03/2014 16:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5640,31/12/2016 2:59,1/04/2014 3:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5583,31/12/2016 2:59,29/12/2013 4:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5094,31/12/2016 2:59,28/01/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5005,31/12/2016 2:59,29/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5003,31/12/2016 2:59,31/07/2013 13:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5002,31/12/2016 2:59,31/07/2013 13:20,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4996,31/12/2016 2:59,31/07/2013 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4995,31/12/2016 2:59,31/07/2013 13:20,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4730,31/12/2016 2:59,15/05/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4591,31/12/2016 2:59,20/11/2013 13:19,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4588,31/12/2016 2:59,20/11/2013 13:19,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4514,31/12/2016 2:59,12/11/2013 14:35,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4513,31/12/2016 2:59,12/11/2013 14:35,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4512,31/12/2016 2:59,12/11/2013 14:35,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4492,31/12/2016 2:59,7/12/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4474,31/12/2016 2:59,23/11/2013 11:55,5.0,20, Improper Input Validation,nan
CVE-2013-4372,31/12/2016 2:59,30/09/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4365,31/12/2016 2:59,17/10/2013 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4359,31/12/2016 2:59,30/09/2013 21:55,5.0,189, Numeric Errors,nan
CVE-2013-4290,31/12/2016 2:59,18/04/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4258,31/12/2016 2:59,9/10/2013 14:54,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2013-4256,31/12/2016 2:59,9/10/2013 14:54,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4234,31/12/2016 2:59,16/09/2013 19:14,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4231,31/12/2016 2:59,19/01/2014 17:16,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3706,31/12/2016 2:59,6/03/2014 11:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2892,31/12/2016 2:59,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2596,31/12/2016 2:59,13/04/2013 2:59,6.9,189, Numeric Errors,nan
CVE-2013-2248,31/12/2016 2:59,20/07/2013 3:37,5.8,20, Improper Input Validation,nan
CVE-2013-2205,31/12/2016 2:59,8/07/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2110,31/12/2016 2:59,21/06/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2072,31/12/2016 2:59,28/08/2013 21:55,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2031,31/12/2016 2:59,18/11/2013 2:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1961,31/12/2016 2:59,3/07/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6704,31/12/2016 2:59,28/12/2016 7:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3571,31/12/2016 2:59,25/07/2012 10:42,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2749,31/12/2016 2:59,15/08/2011 21:55,7.8,20, Improper Input Validation,nan
CVE-2016-2935,30/12/2016 21:14,30/11/2016 11:59,5.0,20, Improper Input Validation,nan
CVE-2016-2934,30/12/2016 21:14,30/11/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2933,30/12/2016 21:13,30/11/2016 11:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2932,30/12/2016 21:13,30/11/2016 11:59,5.0,91, XML Injection (aka Blind XPath Injection),nan
CVE-2016-2931,30/12/2016 21:13,30/11/2016 11:59,5.0,200, Information Exposure,nan
CVE-2015-3726,30/12/2016 21:13,3/07/2015 2:00,4.6,20, Improper Input Validation,nan
CVE-2015-3725,30/12/2016 21:13,3/07/2015 2:00,4.3,399, Resource Management Errors,nan
CVE-2015-3724,30/12/2016 21:13,3/07/2015 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3713,30/12/2016 21:01,3/07/2015 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3723,30/12/2016 20:56,3/07/2015 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3722,30/12/2016 20:49,3/07/2015 2:00,4.3,254, 7PK – Security Features,nan
CVE-2015-2019,30/12/2016 20:49,28/06/2015 15:59,2.1,17, DEPRECATED: Code,nan
CVE-2015-1986,30/12/2016 20:49,30/06/2015 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1978,30/12/2016 20:35,28/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1974,30/12/2016 20:32,28/06/2015 15:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1972,30/12/2016 20:31,28/06/2015 15:59,4.3,200, Information Exposure,nan
CVE-2015-1967,30/12/2016 20:31,1/07/2015 10:59,4.3,200, Information Exposure,nan
CVE-2016-9681,30/12/2016 19:57,25/12/2016 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9217,29/12/2016 14:41,26/12/2016 8:59,6.5,285, Improper Authorization,nan
CVE-2016-1320,29/12/2016 14:41,12/02/2016 1:59,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-10039,29/12/2016 14:28,24/12/2016 11:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-10038,29/12/2016 14:28,24/12/2016 11:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6299,29/12/2016 13:46,20/09/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6297,29/12/2016 13:46,18/09/2015 22:59,5.0,399, Resource Management Errors,nan
CVE-2015-6296,29/12/2016 13:46,18/09/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6295,29/12/2016 13:46,20/09/2015 14:59,4.8,399, Resource Management Errors,nan
CVE-2015-6294,29/12/2016 13:46,18/09/2015 22:59,6.1,399, Resource Management Errors,nan
CVE-2015-6304,29/12/2016 13:45,24/09/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6301,29/12/2016 13:45,20/09/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-6300,29/12/2016 13:45,20/09/2015 14:59,4.0,20, Improper Input Validation,nan
CVE-2015-4258,29/12/2016 13:34,10/07/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4257,29/12/2016 13:34,10/07/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4256,29/12/2016 13:34,10/07/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4255,29/12/2016 13:34,10/07/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4253,29/12/2016 13:34,10/07/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4252,29/12/2016 13:34,10/07/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4244,29/12/2016 13:34,10/07/2015 10:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4243,29/12/2016 13:33,8/07/2015 14:59,6.1,399, Resource Management Errors,nan
CVE-2015-4242,29/12/2016 13:33,8/07/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4241,29/12/2016 13:33,8/07/2015 14:59,6.1,399, Resource Management Errors,nan
CVE-2015-4240,29/12/2016 13:33,8/07/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-4225,29/12/2016 13:31,27/06/2015 10:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4219,29/12/2016 13:19,24/06/2015 10:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4211,29/12/2016 13:19,24/06/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-4205,29/12/2016 13:19,23/06/2015 14:59,5.7,399, Resource Management Errors,nan
CVE-2015-6276,29/12/2016 13:16,5/09/2015 2:59,5.0,200, Information Exposure,nan
CVE-2015-6259,29/12/2016 13:16,4/09/2015 1:59,9.4,20, Improper Input Validation,nan
CVE-2015-5121,29/12/2016 13:16,14/07/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5120,29/12/2016 13:16,14/07/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6287,29/12/2016 13:15,14/09/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-6284,29/12/2016 13:15,20/09/2015 14:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6290,29/12/2016 13:09,14/09/2015 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6288,29/12/2016 13:09,14/09/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-4202,28/12/2016 18:02,20/06/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-4201,28/12/2016 18:02,20/06/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-4200,28/12/2016 18:02,23/06/2015 12:59,7.8,399, Resource Management Errors,nan
CVE-2015-4199,28/12/2016 18:02,27/06/2015 10:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-4197,28/12/2016 18:02,20/06/2015 14:59,6.1,20, Improper Input Validation,nan
CVE-2015-4204,28/12/2016 18:01,23/06/2015 12:59,6.8,399, Resource Management Errors,nan
CVE-2015-4203,28/12/2016 18:01,23/06/2015 14:59,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-4198,28/12/2016 18:01,20/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4209,28/12/2016 17:53,23/06/2015 14:59,6.4,200, Information Exposure,nan
CVE-2015-4207,28/12/2016 17:53,23/06/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-4213,28/12/2016 17:52,24/06/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-4210,28/12/2016 17:52,23/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4212,28/12/2016 17:46,24/06/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-4196,28/12/2016 17:45,4/07/2015 10:59,5.0,255, Credentials Management,nan
CVE-2015-4195,28/12/2016 17:45,19/06/2015 1:59,4.0,399, Resource Management Errors,nan
CVE-2015-4216,28/12/2016 17:44,26/06/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-4215,28/12/2016 17:44,24/06/2015 10:59,6.1,399, Resource Management Errors,nan
CVE-2015-4214,28/12/2016 17:44,24/06/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-4222,28/12/2016 17:43,26/06/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4221,28/12/2016 17:43,26/06/2015 10:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4218,28/12/2016 17:43,24/06/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-4224,28/12/2016 17:42,26/06/2015 10:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4223,28/12/2016 17:42,25/06/2015 16:59,5.0,399, Resource Management Errors,nan
CVE-2015-4194,28/12/2016 17:42,19/06/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-4230,28/12/2016 17:41,6/07/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-4227,28/12/2016 17:41,30/06/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-4191,28/12/2016 17:41,19/06/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-4231,28/12/2016 17:40,3/07/2015 10:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-4232,28/12/2016 17:18,3/07/2015 10:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-4239,28/12/2016 17:07,3/07/2015 10:59,6.1,399, Resource Management Errors,nan
CVE-2015-4238,28/12/2016 17:07,2/07/2015 14:59,6.8,399, Resource Management Errors,nan
CVE-2015-4237,28/12/2016 17:07,3/07/2015 10:59,4.6,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4234,28/12/2016 17:07,3/07/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-4267,28/12/2016 16:54,15/07/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4263,28/12/2016 16:54,10/07/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-4260,28/12/2016 16:54,10/07/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4272,28/12/2016 16:53,14/07/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4271,28/12/2016 16:53,15/07/2015 18:59,6.4,284, Improper Access Control,nan
CVE-2015-4269,28/12/2016 16:53,14/07/2015 14:59,4.0,399, Resource Management Errors,nan
CVE-2015-4268,28/12/2016 16:53,14/07/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4259,28/12/2016 16:53,10/07/2015 15:59,4.3,310, Cryptographic Issues,nan
CVE-2015-4270,28/12/2016 16:52,14/07/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4233,28/12/2016 16:52,2/07/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4220,28/12/2016 16:52,25/06/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4298,28/12/2016 16:51,19/08/2015 15:59,6.5,284, Improper Access Control,nan
CVE-2015-4273,28/12/2016 16:51,15/07/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-4217,28/12/2016 16:51,26/06/2015 10:59,4.3,310, Cryptographic Issues,nan
CVE-2015-4208,28/12/2016 16:51,24/06/2015 10:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4302,28/12/2016 16:50,19/08/2015 14:59,6.4,284, Improper Access Control,nan
CVE-2015-4301,28/12/2016 16:50,19/08/2015 15:59,6.8,399, Resource Management Errors,nan
CVE-2015-4299,28/12/2016 16:50,19/08/2015 15:59,5.5,284, Improper Access Control,nan
CVE-2015-4526,28/12/2016 16:47,10/07/2015 19:59,7.2,284, Improper Access Control,nan
CVE-2015-4524,28/12/2016 16:47,4/07/2015 14:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-4308,28/12/2016 16:47,19/08/2015 15:59,6.8,200, Information Exposure,nan
CVE-2015-4735,28/12/2016 16:29,16/07/2015 11:00,5.0,200, Information Exposure,nan
CVE-2016-10072,28/12/2016 13:25,27/12/2016 7:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-6910,28/12/2016 2:59,23/12/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6659,28/12/2016 2:59,23/12/2016 5:59,2.6,287, Improper Authentication,nan
CVE-2015-8382,28/12/2016 2:59,2/12/2015 1:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4003,28/12/2016 2:59,7/06/2015 23:59,7.8,189, Numeric Errors,nan
CVE-2015-4002,28/12/2016 2:59,7/06/2015 23:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4001,28/12/2016 2:59,7/06/2015 23:59,9.0,189, Numeric Errors,nan
CVE-2015-3902,28/12/2016 2:59,26/05/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3728,28/12/2016 2:59,3/07/2015 2:00,4.8,254, 7PK – Security Features,nan
CVE-2015-3727,28/12/2016 2:59,3/07/2015 2:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-3669,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3668,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3667,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3666,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3665,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3664,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3663,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3662,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3661,28/12/2016 2:59,3/07/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3660,28/12/2016 2:59,3/07/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3659,28/12/2016 2:59,3/07/2015 1:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-3658,28/12/2016 2:59,3/07/2015 1:59,6.8,254, 7PK – Security Features,nan
CVE-2015-3650,28/12/2016 2:59,10/07/2015 17:59,7.2,284, Improper Access Control,nan
CVE-2015-3644,28/12/2016 2:59,14/05/2015 0:59,5.8,284, Improper Access Control,nan
CVE-2015-3279,28/12/2016 2:59,14/07/2015 16:59,7.5,189, Numeric Errors,nan
CVE-2015-3258,28/12/2016 2:59,14/07/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3112,28/12/2016 2:59,24/06/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3111,28/12/2016 2:59,24/06/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3110,28/12/2016 2:59,24/06/2015 10:59,10.0,189, Numeric Errors,nan
CVE-2015-3109,28/12/2016 2:59,24/06/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2743,28/12/2016 2:59,6/07/2015 2:01,7.5,17, DEPRECATED: Code,nan
CVE-2015-2742,28/12/2016 2:59,6/07/2015 2:01,4.3,200, Information Exposure,nan
CVE-2015-2741,28/12/2016 2:59,6/07/2015 2:01,4.3,310, Cryptographic Issues,nan
CVE-2015-2740,28/12/2016 2:59,6/07/2015 2:01,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2739,28/12/2016 2:59,6/07/2015 2:01,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2736,28/12/2016 2:59,6/07/2015 2:01,9.3,17, DEPRECATED: Code,nan
CVE-2015-2735,28/12/2016 2:59,6/07/2015 2:01,9.3,17, DEPRECATED: Code,nan
CVE-2015-2730,28/12/2016 2:59,6/07/2015 2:01,4.3,310, Cryptographic Issues,nan
CVE-2015-2729,28/12/2016 2:59,6/07/2015 2:01,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2727,28/12/2016 2:59,6/07/2015 2:00,6.8,20, Improper Input Validation,nan
CVE-2015-2726,28/12/2016 2:59,6/07/2015 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2725,28/12/2016 2:59,6/07/2015 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2724,28/12/2016 2:59,6/07/2015 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2265,28/12/2016 2:59,24/03/2015 17:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2206,28/12/2016 2:59,9/03/2015 17:59,5.0,200, Information Exposure,nan
CVE-2015-2126,28/12/2016 2:59,6/07/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1966,28/12/2016 2:59,4/07/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1965,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1964,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1963,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1962,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1959,28/12/2016 2:59,28/06/2015 15:59,4.6,284, Improper Access Control,nan
CVE-2015-1954,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1953,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1949,28/12/2016 2:59,30/06/2015 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1948,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1942,28/12/2016 2:59,30/06/2015 15:59,9.3,20, Improper Input Validation,nan
CVE-2015-1941,28/12/2016 2:59,30/06/2015 15:59,7.8,200, Information Exposure,nan
CVE-2015-1938,28/12/2016 2:59,30/06/2015 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1930,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1929,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1925,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1924,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1923,28/12/2016 2:59,30/06/2015 15:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1884,28/12/2016 2:59,28/06/2015 14:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1868,28/12/2016 2:59,18/05/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2015-1851,28/12/2016 2:59,25/06/2015 16:59,6.8,200, Information Exposure,nan
CVE-2015-1420,28/12/2016 2:59,16/03/2015 10:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0551,28/12/2016 2:59,4/07/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0548,28/12/2016 2:59,4/07/2015 10:59,4.0,20, Improper Input Validation,nan
CVE-2015-0547,28/12/2016 2:59,4/07/2015 10:59,4.0,20, Improper Input Validation,nan
CVE-2015-0543,28/12/2016 2:59,5/07/2015 10:59,5.8,20, Improper Input Validation,nan
CVE-2016-7968,27/12/2016 18:50,23/12/2016 22:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7967,27/12/2016 18:42,23/12/2016 22:59,5.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7966,27/12/2016 18:42,23/12/2016 22:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-8824,27/12/2016 14:45,16/12/2016 21:59,7.2,284, Improper Access Control,nan
CVE-2016-9835,27/12/2016 14:44,5/12/2016 8:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-9757,27/12/2016 14:44,20/12/2016 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8104,27/12/2016 14:44,8/12/2016 17:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8822,27/12/2016 14:43,16/12/2016 21:59,7.2,20, Improper Input Validation,nan
CVE-2016-8821,27/12/2016 14:40,16/12/2016 21:59,7.2,284, Improper Access Control,nan
CVE-2016-8103,27/12/2016 14:35,8/12/2016 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-9561,24/12/2016 2:59,23/12/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-8823,24/12/2016 2:59,16/12/2016 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8820,24/12/2016 2:59,16/12/2016 21:59,5.6,200, Information Exposure,nan
CVE-2016-8819,24/12/2016 2:59,16/12/2016 21:59,7.2,775, Missing Release of File Descriptor or Handle after Effective Lifetime,nan
CVE-2016-8818,24/12/2016 2:59,16/12/2016 21:59,7.2,20, Improper Input Validation,nan
CVE-2016-8817,24/12/2016 2:59,16/12/2016 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8816,24/12/2016 2:59,16/12/2016 21:59,7.2,129, Improper Validation of Array Index,nan
CVE-2016-8815,24/12/2016 2:59,16/12/2016 21:59,7.2,129, Improper Validation of Array Index,nan
CVE-2016-8814,24/12/2016 2:59,16/12/2016 21:59,7.2,476, NULL Pointer Dereference,nan
CVE-2016-8813,24/12/2016 2:59,16/12/2016 21:59,7.2,476, NULL Pointer Dereference,nan
CVE-2016-7439,24/12/2016 2:59,13/12/2016 16:59,2.1,310, Cryptographic Issues,nan
CVE-2016-7438,24/12/2016 2:59,13/12/2016 16:59,2.1,310, Cryptographic Issues,nan
CVE-2016-6881,24/12/2016 2:59,23/12/2016 5:59,4.3,399, Resource Management Errors,nan
CVE-2016-6754,24/12/2016 2:59,25/11/2016 16:59,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-6671,24/12/2016 2:59,23/12/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6330,24/12/2016 2:59,27/09/2016 15:59,9.0,502, Deserialization of Untrusted Data,nan
CVE-2016-5765,24/12/2016 2:59,29/11/2016 11:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5086,24/12/2016 2:59,5/10/2016 10:59,9.3,287, Improper Authentication,nan
CVE-2016-5085,24/12/2016 2:59,5/10/2016 10:59,7.8,330, Use of Insufficiently Random Values,nan
CVE-2016-5084,24/12/2016 2:59,5/10/2016 10:59,5.0,310, Cryptographic Issues,nan
CVE-2015-7863,24/12/2016 2:59,19/10/2015 18:59,5.0,254, 7PK – Security Features,nan
CVE-2015-7862,24/12/2016 2:59,19/10/2015 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7861,24/12/2016 2:59,19/10/2015 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7860,24/12/2016 2:59,19/10/2015 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7649,24/12/2016 2:59,28/10/2015 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7184,24/12/2016 2:59,18/10/2015 10:59,6.8,284, Improper Access Control,nan
CVE-2015-7035,24/12/2016 2:59,23/10/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-7031,24/12/2016 2:59,23/10/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7030,24/12/2016 2:59,23/10/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-7023,24/12/2016 2:59,23/10/2015 21:59,5.8,17, DEPRECATED: Code,nan
CVE-2015-7022,24/12/2016 2:59,23/10/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-7018,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7017,24/12/2016 2:59,23/10/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7015,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7014,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7013,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7012,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7011,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7010,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7009,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7008,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7006,24/12/2016 2:59,23/10/2015 21:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7005,24/12/2016 2:59,23/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7004,24/12/2016 2:59,23/10/2015 10:59,7.1,20, Improper Input Validation,nan
CVE-2015-7002,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7000,24/12/2016 2:59,23/10/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-6999,24/12/2016 2:59,23/10/2015 10:59,5.0,254, 7PK – Security Features,nan
CVE-2015-6997,24/12/2016 2:59,23/10/2015 10:59,4.3,254, 7PK – Security Features,nan
CVE-2015-6996,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6995,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6994,24/12/2016 2:59,23/10/2015 21:59,7.1,399, Resource Management Errors,nan
CVE-2015-6993,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6992,24/12/2016 2:59,23/10/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6991,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6990,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6989,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6982,24/12/2016 2:59,23/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6981,24/12/2016 2:59,23/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6979,24/12/2016 2:59,23/10/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6978,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6977,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6976,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6975,24/12/2016 2:59,23/10/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6974,24/12/2016 2:59,23/10/2015 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6762,24/12/2016 2:59,15/10/2015 10:59,7.5,254, 7PK – Security Features,nan
CVE-2015-6760,24/12/2016 2:59,15/10/2015 10:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-6759,24/12/2016 2:59,15/10/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-6758,24/12/2016 2:59,15/10/2015 10:59,6.8,17, DEPRECATED: Code,nan
CVE-2015-6755,24/12/2016 2:59,15/10/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6665,24/12/2016 2:59,24/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6661,24/12/2016 2:59,24/08/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-6660,24/12/2016 2:59,24/08/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6659,24/12/2016 2:59,24/08/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6658,24/12/2016 2:59,24/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6249,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6248,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6247,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6246,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6245,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6244,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6243,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6242,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-6241,24/12/2016 2:59,24/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-5965,24/12/2016 2:59,11/08/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-5964,24/12/2016 2:59,24/08/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-5942,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5940,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5939,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5937,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5936,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5935,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5931,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5930,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5929,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5928,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5927,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5926,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5925,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5924,24/12/2016 2:59,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5889,24/12/2016 2:59,9/10/2015 5:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5786,24/12/2016 2:59,25/08/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5785,24/12/2016 2:59,25/08/2015 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5782,24/12/2016 2:59,17/08/2015 0:01,4.3,200, Information Exposure,nan
CVE-2015-5781,24/12/2016 2:59,17/08/2015 0:01,4.3,200, Information Exposure,nan
CVE-2015-5778,24/12/2016 2:59,17/08/2015 0:01,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5777,24/12/2016 2:59,17/08/2015 0:01,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5776,24/12/2016 2:59,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5775,24/12/2016 2:59,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5774,24/12/2016 2:59,17/08/2015 0:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5773,24/12/2016 2:59,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5770,24/12/2016 2:59,17/08/2015 0:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5766,24/12/2016 2:59,17/08/2015 0:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5761,24/12/2016 2:59,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5759,24/12/2016 2:59,17/08/2015 0:00,5.0,254, 7PK – Security Features,nan
CVE-2015-5758,24/12/2016 2:59,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5757,24/12/2016 2:59,17/08/2015 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5756,24/12/2016 2:59,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5755,24/12/2016 2:59,17/08/2015 0:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5752,24/12/2016 2:59,17/08/2015 0:00,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5749,24/12/2016 2:59,17/08/2015 0:00,4.3,200, Information Exposure,nan
CVE-2015-5746,24/12/2016 2:59,17/08/2015 0:00,5.0,284, Improper Access Control,nan
CVE-2015-5536,24/12/2016 2:59,13/08/2015 14:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5448,24/12/2016 2:59,26/10/2015 2:59,2.1,200, Information Exposure,nan
CVE-2015-4537,24/12/2016 2:59,22/08/2015 18:59,3.5,200, Information Exposure,nan
CVE-2015-4037,24/12/2016 2:59,26/08/2015 19:59,1.9,17, DEPRECATED: Code,nan
CVE-2015-3988,24/12/2016 2:59,19/05/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3940,24/12/2016 2:59,4/08/2015 1:59,6.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3806,24/12/2016 2:59,17/08/2015 0:00,7.2,284, Improper Access Control,nan
CVE-2015-3805,24/12/2016 2:59,17/08/2015 0:00,7.2,20, Improper Input Validation,nan
CVE-2015-3804,24/12/2016 2:59,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3803,24/12/2016 2:59,17/08/2015 0:00,7.2,20, Improper Input Validation,nan
CVE-2015-3802,24/12/2016 2:59,17/08/2015 0:00,7.2,20, Improper Input Validation,nan
CVE-2015-3800,24/12/2016 2:59,17/08/2015 0:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3798,24/12/2016 2:59,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3797,24/12/2016 2:59,17/08/2015 0:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3795,24/12/2016 2:59,17/08/2015 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3793,24/12/2016 2:59,17/08/2015 0:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3784,24/12/2016 2:59,16/08/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-3782,24/12/2016 2:59,16/08/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-3778,24/12/2016 2:59,16/08/2015 23:59,3.3,200, Information Exposure,nan
CVE-2015-3776,24/12/2016 2:59,16/08/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3768,24/12/2016 2:59,16/08/2015 23:59,9.3,189, Numeric Errors,nan
CVE-2015-3766,24/12/2016 2:59,16/08/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-3763,24/12/2016 2:59,16/08/2015 23:59,4.3,19, Data Processing Errors,nan
CVE-2015-3759,24/12/2016 2:59,16/08/2015 23:59,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-3758,24/12/2016 2:59,16/08/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-3756,24/12/2016 2:59,16/08/2015 23:59,2.1,254, 7PK – Security Features,nan
CVE-2015-3219,24/12/2016 2:59,20/08/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3200,24/12/2016 2:59,9/06/2015 14:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-2775,24/12/2016 2:59,13/04/2015 14:59,7.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1852,24/12/2016 2:59,17/04/2015 17:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-1304,24/12/2016 2:59,12/10/2015 1:59,7.5,284, Improper Access Control,nan
CVE-2015-1303,24/12/2016 2:59,12/10/2015 1:59,7.5,20, Improper Input Validation,nan
CVE-2015-0827,24/12/2016 2:59,25/02/2015 11:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0822,24/12/2016 2:59,25/02/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-0239,24/12/2016 2:59,2/03/2015 11:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9683,24/12/2016 2:59,3/03/2015 11:59,3.6,189, Numeric Errors,nan
CVE-2014-8912,24/12/2016 2:59,28/10/2015 18:59,5.0,284, Improper Access Control,nan
CVE-2014-8133,24/12/2016 2:59,17/12/2014 11:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3565,24/12/2016 2:59,7/10/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-3184,24/12/2016 2:59,28/09/2014 10:55,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2962,24/12/2016 2:59,19/06/2014 10:50,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1594,24/12/2016 2:59,11/12/2014 11:59,6.8,20, Improper Input Validation,nan
CVE-2014-1593,24/12/2016 2:59,11/12/2014 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1590,24/12/2016 2:59,11/12/2014 11:59,4.3,20, Improper Input Validation,nan
CVE-2014-1587,24/12/2016 2:59,11/12/2014 11:59,6.8,20, Improper Input Validation,nan
CVE-2014-1578,24/12/2016 2:59,15/10/2014 10:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1576,24/12/2016 2:59,15/10/2014 10:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5667,24/12/2016 2:59,3/01/2013 11:54,4.4,189, Numeric Errors,nan
CVE-2016-7171,23/12/2016 20:58,5/12/2016 18:59,6.8,295, Improper Certificate Validation,nan
CVE-2016-6938,23/12/2016 20:52,17/09/2016 2:59,10.0,416, Use After Free,nan
CVE-2016-6934,23/12/2016 20:51,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1430,23/12/2016 20:51,16/12/2016 9:59,5.0,255, Credentials Management,nan
CVE-2016-9181,23/12/2016 20:44,22/12/2016 21:59,5.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-9180,23/12/2016 20:20,22/12/2016 21:59,6.4,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-7091,23/12/2016 18:17,22/12/2016 21:59,4.9,200, Information Exposure,nan
CVE-2016-9179,23/12/2016 14:44,22/12/2016 21:59,5.0,20, Improper Input Validation,nan
CVE-2016-9193,23/12/2016 4:27,14/12/2016 0:59,5.0,20, Improper Input Validation,nan
CVE-2016-9155,23/12/2016 4:14,22/11/2016 11:59,5.0,284, Improper Access Control,nan
CVE-2016-8102,23/12/2016 2:59,8/12/2016 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7065,23/12/2016 2:59,13/10/2016 14:59,6.5,502, Deserialization of Untrusted Data,nan
CVE-2016-6933,23/12/2016 2:59,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5303,23/12/2016 2:59,20/12/2016 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2878,23/12/2016 2:59,30/11/2016 18:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2877,23/12/2016 2:59,30/11/2016 18:59,2.1,275, Permission Issues,nan
CVE-2016-2876,23/12/2016 2:59,30/11/2016 18:59,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-2874,23/12/2016 2:59,30/11/2016 18:59,3.5,284, Improper Access Control,nan
CVE-2016-2873,23/12/2016 2:59,30/11/2016 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2355,23/12/2016 2:59,19/12/2016 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6574,23/12/2016 2:59,15/12/2016 22:59,7.8,399, Resource Management Errors,nan
CVE-2015-3271,23/12/2016 2:59,15/12/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-7960,22/12/2016 23:25,13/10/2016 10:59,1.9,200, Information Exposure,nan
CVE-2016-7889,22/12/2016 23:25,15/12/2016 6:59,5.0,200, Information Exposure,nan
CVE-2016-8827,22/12/2016 23:23,16/12/2016 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8826,22/12/2016 23:23,16/12/2016 21:59,4.9,399, Resource Management Errors,nan
CVE-2016-8825,22/12/2016 23:22,16/12/2016 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9212,22/12/2016 21:12,14/12/2016 0:59,5.0,20, Improper Input Validation,nan
CVE-2016-9208,22/12/2016 21:12,14/12/2016 0:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9211,22/12/2016 21:11,14/12/2016 0:59,5.0,20, Improper Input Validation,nan
CVE-2016-9207,22/12/2016 21:11,14/12/2016 0:59,6.4,254, 7PK – Security Features,nan
CVE-2016-9206,22/12/2016 21:11,14/12/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9203,22/12/2016 21:11,14/12/2016 0:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9480,22/12/2016 21:10,29/11/2016 23:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9215,22/12/2016 18:32,14/12/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-9214,22/12/2016 18:32,14/12/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9965,22/12/2016 18:31,16/12/2016 9:59,10.0,388, 7PK – Errors,nan
CVE-2016-9202,22/12/2016 18:31,14/12/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9201,22/12/2016 18:31,14/12/2016 0:59,5.0,200, Information Exposure,nan
CVE-2016-9967,22/12/2016 18:30,16/12/2016 9:59,10.0,388, 7PK – Errors,nan
CVE-2016-9966,22/12/2016 18:30,16/12/2016 9:59,10.0,388, 7PK – Errors,nan
CVE-2016-9200,22/12/2016 18:30,14/12/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9199,22/12/2016 18:22,14/12/2016 0:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-9198,22/12/2016 18:18,14/12/2016 0:59,5.0,399, Resource Management Errors,nan
CVE-2016-6657,22/12/2016 17:13,16/12/2016 9:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-9034,22/12/2016 16:44,14/12/2016 17:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9033,22/12/2016 16:44,14/12/2016 17:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9032,22/12/2016 16:44,14/12/2016 17:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9031,22/12/2016 16:44,14/12/2016 17:59,6.9,190, Integer Overflow or Wraparound,nan
CVE-2016-8733,22/12/2016 16:44,14/12/2016 17:59,7.2,190, Integer Overflow or Wraparound,nan
CVE-2016-9035,22/12/2016 16:43,14/12/2016 17:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9837,22/12/2016 16:28,16/12/2016 9:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5851,22/12/2016 16:19,21/12/2016 22:59,6.8,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-0868,22/12/2016 16:05,28/01/2016 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000217,22/12/2016 14:40,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1000155,22/12/2016 14:40,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000145,22/12/2016 14:40,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000142,22/12/2016 14:40,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000003,22/12/2016 14:40,7/10/2016 18:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-1000152,22/12/2016 14:39,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000137,22/12/2016 14:39,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000132,22/12/2016 14:39,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000122,22/12/2016 14:39,27/10/2016 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1000151,22/12/2016 14:37,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000144,22/12/2016 14:37,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000139,22/12/2016 14:37,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000131,22/12/2016 14:37,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000120,22/12/2016 14:37,27/10/2016 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1000135,22/12/2016 14:36,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000130,22/12/2016 14:36,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000128,22/12/2016 14:36,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1301,22/12/2016 14:36,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1000150,22/12/2016 14:35,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000147,22/12/2016 14:28,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000153,22/12/2016 14:23,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000134,22/12/2016 14:21,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8562,22/12/2016 3:00,18/11/2016 21:59,3.5,20, Improper Input Validation,nan
CVE-2016-8561,22/12/2016 3:00,18/11/2016 21:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7959,22/12/2016 3:00,13/10/2016 10:59,1.9,254, 7PK – Security Features,nan
CVE-2016-7888,22/12/2016 3:00,15/12/2016 6:59,5.0,200, Information Exposure,nan
CVE-2016-7887,22/12/2016 3:00,15/12/2016 6:59,5.0,200, Information Exposure,nan
CVE-2016-7886,22/12/2016 3:00,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7885,22/12/2016 3:00,15/12/2016 6:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-7884,22/12/2016 3:00,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7883,22/12/2016 3:00,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7882,22/12/2016 3:00,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6656,22/12/2016 3:00,16/12/2016 9:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-7327,22/12/2016 3:00,24/09/2015 4:59,4.3,200, Information Exposure,nan
CVE-2015-7235,22/12/2016 3:00,17/09/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7180,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7179,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7178,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7177,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7176,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7175,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7174,22/12/2016 3:00,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6962,22/12/2016 3:00,17/09/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6949,22/12/2016 3:00,15/09/2015 18:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6948,22/12/2016 3:00,15/09/2015 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6943,22/12/2016 3:00,15/09/2015 18:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6908,22/12/2016 3:00,11/09/2015 16:59,5.0,20, Improper Input Validation,nan
CVE-2015-6830,22/12/2016 3:00,14/09/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-6827,22/12/2016 3:00,11/09/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6819,22/12/2016 3:00,6/09/2015 2:59,7.5,189, Numeric Errors,nan
CVE-2015-6805,22/12/2016 3:00,2/09/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6681,22/12/2016 3:00,9/09/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6675,22/12/2016 3:00,11/09/2015 16:59,4.3,284, Improper Access Control,nan
CVE-2015-6672,22/12/2016 3:00,17/09/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6655,22/12/2016 3:00,31/08/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6583,22/12/2016 3:00,3/09/2015 22:59,4.3,254, 7PK – Security Features,nan
CVE-2015-6582,22/12/2016 3:00,3/09/2015 22:59,6.8,254, 7PK – Security Features,nan
CVE-2015-6548,22/12/2016 3:00,20/09/2015 20:59,5.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6547,22/12/2016 3:00,20/09/2015 20:59,8.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-6523,22/12/2016 3:00,19/08/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6506,22/12/2016 3:00,3/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5921,22/12/2016 3:00,18/09/2015 12:01,4.3,200, Information Exposure,nan
CVE-2015-5916,22/12/2016 3:00,18/09/2015 12:00,4.3,200, Information Exposure,nan
CVE-2015-5910,22/12/2016 3:00,18/09/2015 12:00,3.3,200, Information Exposure,nan
CVE-2015-5909,22/12/2016 3:00,18/09/2015 12:00,5.0,200, Information Exposure,nan
CVE-2015-5907,22/12/2016 3:00,18/09/2015 12:00,2.6,310, Cryptographic Issues,nan
CVE-2015-5906,22/12/2016 3:00,18/09/2015 12:00,5.0,200, Information Exposure,nan
CVE-2015-5905,22/12/2016 3:00,18/09/2015 12:00,5.0,254, 7PK – Security Features,nan
CVE-2015-5904,22/12/2016 3:00,18/09/2015 12:00,4.3,254, 7PK – Security Features,nan
CVE-2015-5903,22/12/2016 3:00,18/09/2015 12:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5899,22/12/2016 3:00,18/09/2015 12:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5898,22/12/2016 3:00,18/09/2015 12:00,2.1,200, Information Exposure,nan
CVE-2015-5896,22/12/2016 3:00,18/09/2015 12:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5892,22/12/2016 3:00,18/09/2015 12:00,2.1,200, Information Exposure,nan
CVE-2015-5885,22/12/2016 3:00,18/09/2015 12:00,5.0,200, Information Exposure,nan
CVE-2015-5882,22/12/2016 3:00,18/09/2015 12:00,7.2,284, Improper Access Control,nan
CVE-2015-5880,22/12/2016 3:00,18/09/2015 12:00,4.3,200, Information Exposure,nan
CVE-2015-5879,22/12/2016 3:00,18/09/2015 12:00,5.0,20, Improper Input Validation,nan
CVE-2015-5876,22/12/2016 3:00,18/09/2015 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5874,22/12/2016 3:00,18/09/2015 12:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5869,22/12/2016 3:00,18/09/2015 12:00,3.3,20, Improper Input Validation,nan
CVE-2015-5868,22/12/2016 3:00,18/09/2015 12:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5867,22/12/2016 3:00,18/09/2015 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5863,22/12/2016 3:00,18/09/2015 12:00,2.1,200, Information Exposure,nan
CVE-2015-5862,22/12/2016 3:00,18/09/2015 12:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5861,22/12/2016 3:00,18/09/2015 12:00,2.1,284, Improper Access Control,nan
CVE-2015-5860,22/12/2016 3:00,18/09/2015 11:00,5.0,200, Information Exposure,nan
CVE-2015-5858,22/12/2016 3:00,18/09/2015 11:00,5.0,200, Information Exposure,nan
CVE-2015-5857,22/12/2016 3:00,18/09/2015 11:00,5.0,254, 7PK – Security Features,nan
CVE-2015-5856,22/12/2016 3:00,18/09/2015 11:00,4.3,254, 7PK – Security Features,nan
CVE-2015-5855,22/12/2016 3:00,18/09/2015 11:00,4.3,200, Information Exposure,nan
CVE-2015-5851,22/12/2016 3:00,18/09/2015 11:00,2.1,200, Information Exposure,nan
CVE-2015-5850,22/12/2016 3:00,18/09/2015 11:00,2.1,254, 7PK – Security Features,nan
CVE-2015-5848,22/12/2016 3:00,18/09/2015 11:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5847,22/12/2016 3:00,18/09/2015 11:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5846,22/12/2016 3:00,18/09/2015 11:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5845,22/12/2016 3:00,18/09/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5844,22/12/2016 3:00,18/09/2015 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5843,22/12/2016 3:00,18/09/2015 10:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5842,22/12/2016 3:00,18/09/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-5841,22/12/2016 3:00,18/09/2015 10:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-5840,22/12/2016 3:00,18/09/2015 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5839,22/12/2016 3:00,18/09/2015 10:59,5.0,254, 7PK – Security Features,nan
CVE-2015-5838,22/12/2016 3:00,18/09/2015 10:59,4.3,284, Improper Access Control,nan
CVE-2015-5837,22/12/2016 3:00,18/09/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-5835,22/12/2016 3:00,18/09/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-5834,22/12/2016 3:00,18/09/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-5832,22/12/2016 3:00,18/09/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-5831,22/12/2016 3:00,18/09/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-5829,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5827,22/12/2016 3:00,18/09/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-5826,22/12/2016 3:00,18/09/2015 10:59,4.3,284, Improper Access Control,nan
CVE-2015-5825,22/12/2016 3:00,18/09/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-5824,22/12/2016 3:00,18/09/2015 10:59,4.3,310, Cryptographic Issues,nan
CVE-2015-5823,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5822,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5821,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5820,22/12/2016 3:00,18/09/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-5819,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5818,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5817,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5816,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5815,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5814,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5813,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5812,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5811,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5810,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5809,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5808,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5807,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5806,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5805,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5804,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5803,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5802,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5801,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5800,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5799,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5798,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5797,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5796,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5795,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5794,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5793,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5792,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5791,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5790,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5789,22/12/2016 3:00,18/09/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5788,22/12/2016 3:00,18/09/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-5767,22/12/2016 3:00,18/09/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-5765,22/12/2016 3:00,18/09/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-5764,22/12/2016 3:00,18/09/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-5698,22/12/2016 3:00,30/08/2015 14:59,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5693,22/12/2016 3:00,20/09/2015 20:59,7.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5692,22/12/2016 3:00,20/09/2015 20:59,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-5691,22/12/2016 3:00,20/09/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5690,22/12/2016 3:00,20/09/2015 20:59,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-5689,22/12/2016 3:00,20/09/2015 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5625,22/12/2016 3:00,7/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5528,22/12/2016 3:00,16/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5482,22/12/2016 3:00,18/08/2015 17:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5481,22/12/2016 3:00,18/08/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5475,22/12/2016 3:00,14/08/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5440,22/12/2016 3:00,16/09/2015 14:59,4.9,200, Information Exposure,nan
CVE-2015-5413,22/12/2016 3:00,26/08/2015 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5412,22/12/2016 3:00,26/08/2015 18:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5411,22/12/2016 3:00,26/08/2015 18:59,6.8,200, Information Exposure,nan
CVE-2015-5409,22/12/2016 2:59,26/08/2015 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5199,22/12/2016 2:59,8/09/2015 15:59,7.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5198,22/12/2016 2:59,8/09/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5157,22/12/2016 2:59,31/08/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-4980,22/12/2016 2:59,14/09/2015 22:59,4.0,200, Information Exposure,nan
CVE-2015-4961,22/12/2016 2:59,24/11/2016 19:59,2.9,200, Information Exposure,nan
CVE-2015-4935,22/12/2016 2:59,3/08/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4934,22/12/2016 2:59,3/08/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4933,22/12/2016 2:59,3/08/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4932,22/12/2016 2:59,3/08/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4931,22/12/2016 2:59,3/08/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4552,22/12/2016 2:59,3/09/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4544,22/12/2016 2:59,4/09/2015 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4522,22/12/2016 2:59,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4521,22/12/2016 2:59,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4520,22/12/2016 2:59,24/09/2015 4:59,6.4,254, 7PK – Security Features,nan
CVE-2015-4519,22/12/2016 2:59,24/09/2015 4:59,4.3,200, Information Exposure,nan
CVE-2015-4517,22/12/2016 2:59,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4516,22/12/2016 2:59,24/09/2015 4:59,9.3,254, 7PK – Security Features,nan
CVE-2015-4512,22/12/2016 2:59,24/09/2015 4:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4511,22/12/2016 2:59,24/09/2015 4:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4508,22/12/2016 2:59,24/09/2015 4:59,2.6,254, 7PK – Security Features,nan
CVE-2015-4506,22/12/2016 2:59,24/09/2015 4:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4505,22/12/2016 2:59,24/09/2015 4:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-4504,22/12/2016 2:59,24/09/2015 4:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4503,22/12/2016 2:59,24/09/2015 4:59,5.0,200, Information Exposure,nan
CVE-2015-4502,22/12/2016 2:59,24/09/2015 4:59,4.3,254, 7PK – Security Features,nan
CVE-2015-4501,22/12/2016 2:59,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4500,22/12/2016 2:59,24/09/2015 4:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4499,22/12/2016 2:59,14/09/2015 1:59,7.5,20, Improper Input Validation,nan
CVE-2015-4498,22/12/2016 2:59,29/08/2015 19:59,7.5,254, 7PK – Security Features,nan
CVE-2015-4476,22/12/2016 2:59,24/09/2015 4:59,4.3,254, 7PK – Security Features,nan
CVE-2015-4472,22/12/2016 2:59,11/06/2015 14:59,6.8,189, Numeric Errors,nan
CVE-2015-4167,22/12/2016 2:59,5/08/2015 18:59,4.7,189, Numeric Errors,nan
CVE-2015-4036,22/12/2016 2:59,31/08/2015 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3801,22/12/2016 2:59,18/09/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3455,22/12/2016 2:59,18/05/2015 15:59,2.6,20, Improper Input Validation,nan
CVE-2015-3291,22/12/2016 2:59,31/08/2015 10:59,2.1,17, DEPRECATED: Code,nan
CVE-2015-3239,22/12/2016 2:59,26/08/2015 19:59,3.3,189, Numeric Errors,nan
CVE-2015-2973,22/12/2016 2:59,24/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2967,22/12/2016 2:59,10/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2807,22/12/2016 2:59,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2321,22/12/2016 2:59,13/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2013,22/12/2016 2:59,14/09/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-1943,22/12/2016 2:59,14/09/2015 22:59,7.8,399, Resource Management Errors,nan
CVE-2015-1927,22/12/2016 2:59,14/07/2015 17:59,6.8,284, Improper Access Control,nan
CVE-2015-1885,22/12/2016 2:59,27/04/2015 12:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1802,22/12/2016 2:59,20/03/2015 14:59,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1548,22/12/2016 2:59,10/02/2015 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1300,22/12/2016 2:59,3/09/2015 22:59,5.0,254, 7PK – Security Features,nan
CVE-2015-1298,22/12/2016 2:59,3/09/2015 22:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1297,22/12/2016 2:59,3/09/2015 22:59,7.5,254, 7PK – Security Features,nan
CVE-2015-1296,22/12/2016 2:59,3/09/2015 22:59,5.0,254, 7PK – Security Features,nan
CVE-2015-1293,22/12/2016 2:59,3/09/2015 22:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1292,22/12/2016 2:59,3/09/2015 22:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1291,22/12/2016 2:59,3/09/2015 22:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-1234,22/12/2016 2:59,1/04/2015 21:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1233,22/12/2016 2:59,1/04/2015 21:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-1232,22/12/2016 2:59,9/03/2015 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1229,22/12/2016 2:59,9/03/2015 0:59,5.0,19, Data Processing Errors,nan
CVE-2015-1228,22/12/2016 2:59,9/03/2015 0:59,7.5,399, Resource Management Errors,nan
CVE-2015-1227,22/12/2016 2:59,9/03/2015 0:59,7.5,399, Resource Management Errors,nan
CVE-2015-1226,22/12/2016 2:59,9/03/2015 0:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1225,22/12/2016 2:59,9/03/2015 0:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1224,22/12/2016 2:59,9/03/2015 0:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-1219,22/12/2016 2:59,9/03/2015 0:59,7.5,189, Numeric Errors,nan
CVE-2015-1217,22/12/2016 2:59,9/03/2015 0:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-1215,22/12/2016 2:59,9/03/2015 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1214,22/12/2016 2:59,9/03/2015 0:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2015-1213,22/12/2016 2:59,9/03/2015 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0818,22/12/2016 2:59,24/03/2015 0:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0222,22/12/2016 2:59,16/01/2015 16:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-0221,22/12/2016 2:59,16/01/2015 16:59,5.0,399, Resource Management Errors,nan
CVE-2015-0220,22/12/2016 2:59,16/01/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0219,22/12/2016 2:59,16/01/2015 16:59,5.0,17, DEPRECATED: Code,nan
CVE-2014-9728,22/12/2016 2:59,31/08/2015 10:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9713,22/12/2016 2:59,1/04/2015 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9275,22/12/2016 2:59,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9274,22/12/2016 2:59,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8960,22/12/2016 2:59,30/11/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8958,22/12/2016 2:59,30/11/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8632,22/12/2016 2:59,11/12/2014 11:59,4.3,284, Improper Access Control,nan
CVE-2014-8631,22/12/2016 2:59,11/12/2014 11:59,4.3,284, Improper Access Control,nan
CVE-2014-6054,22/12/2016 2:59,6/10/2014 14:55,4.3,189, Numeric Errors,nan
CVE-2014-6053,22/12/2016 2:59,15/12/2014 18:59,5.0,19, Data Processing Errors,nan
CVE-2014-6052,22/12/2016 2:59,15/12/2014 18:59,7.5,20, Improper Input Validation,nan
CVE-2014-5452,22/12/2016 2:59,2/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5369,22/12/2016 2:59,8/09/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2014-4986,22/12/2016 2:59,20/07/2014 11:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3775,22/12/2016 2:59,22/05/2014 11:14,7.5,20, Improper Input Validation,nan
CVE-2014-3687,22/12/2016 2:59,10/11/2014 11:55,7.8,399, Resource Management Errors,nan
CVE-2014-1591,22/12/2016 2:59,11/12/2014 11:59,4.3,199, Information Management Errors,nan
CVE-2014-1589,22/12/2016 2:59,11/12/2014 11:59,6.8,284, Improper Access Control,nan
CVE-2014-1584,22/12/2016 2:59,15/10/2014 10:55,4.3,310, Cryptographic Issues,nan
CVE-2014-1582,22/12/2016 2:59,15/10/2014 10:55,4.3,310, Cryptographic Issues,nan
CVE-2014-1580,22/12/2016 2:59,15/10/2014 10:55,5.0,200, Information Exposure,nan
CVE-2014-1575,22/12/2016 2:59,15/10/2014 10:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1520,22/12/2016 2:59,30/04/2014 10:49,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-1509,22/12/2016 2:59,19/03/2014 10:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1504,22/12/2016 2:59,19/03/2014 10:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1496,22/12/2016 2:59,19/03/2014 10:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-7422,22/12/2016 2:59,16/08/2015 23:59,7.5,189, Numeric Errors,nan
CVE-2013-6671,22/12/2016 2:59,11/12/2013 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6487,22/12/2016 2:59,6/02/2014 17:00,7.5,189, Numeric Errors,nan
CVE-2013-5618,22/12/2016 2:59,11/12/2013 15:55,10.0,399, Resource Management Errors,nan
CVE-2013-5616,22/12/2016 2:59,11/12/2013 15:55,10.0,399, Resource Management Errors,nan
CVE-2013-5615,22/12/2016 2:59,11/12/2013 15:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5614,22/12/2016 2:59,11/12/2013 15:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5612,22/12/2016 2:59,11/12/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4488,22/12/2016 2:59,10/10/2014 1:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4479,22/12/2016 2:59,7/12/2013 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2212,22/12/2016 2:59,28/08/2013 21:55,5.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7454,21/12/2016 12:34,17/12/2016 3:59,7.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1787,20/12/2016 2:59,24/03/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-1777,20/12/2016 2:59,24/03/2016 1:59,5.0,310, Cryptographic Issues,nan
CVE-2016-1776,20/12/2016 2:59,24/03/2016 1:59,5.0,284, Improper Access Control,nan
CVE-2016-1774,20/12/2016 2:59,24/03/2016 1:59,5.0,284, Improper Access Control,nan
CVE-2014-8241,20/12/2016 2:59,14/12/2016 22:59,7.5,476, NULL Pointer Dereference,nan
CVE-2013-4214,20/12/2016 2:59,23/11/2013 17:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2006-0081,20/12/2016 2:59,4/01/2006 6:03,7.8,399, Resource Management Errors,nan
CVE-2016-6852,16/12/2016 19:12,15/12/2016 6:59,4.3,200, Information Exposure,nan
CVE-2016-6842,16/12/2016 18:41,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6843,16/12/2016 18:32,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6845,16/12/2016 18:30,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6844,16/12/2016 18:30,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6850,16/12/2016 18:29,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6848,16/12/2016 18:29,15/12/2016 6:59,1.9,254, 7PK – Security Features,nan
CVE-2016-6847,16/12/2016 17:03,15/12/2016 6:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5687,16/12/2016 16:54,13/12/2016 15:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-4443,16/12/2016 16:53,14/12/2016 18:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-5688,16/12/2016 16:38,13/12/2016 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5689,16/12/2016 16:37,13/12/2016 15:59,7.5,476, NULL Pointer Dereference,nan
CVE-2016-5691,16/12/2016 16:36,13/12/2016 15:59,7.5,20, Improper Input Validation,nan
CVE-2016-7856,16/12/2016 16:33,15/12/2016 6:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5690,16/12/2016 14:14,13/12/2016 15:59,7.5,476, NULL Pointer Dereference,nan
CVE-2016-4371,16/12/2016 2:59,19/06/2016 1:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3971,16/12/2016 2:59,18/04/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000156,15/12/2016 19:03,14/12/2016 18:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-5060,15/12/2016 17:21,13/12/2016 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9209,15/12/2016 17:08,14/12/2016 0:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1411,15/12/2016 15:18,14/12/2016 0:59,4.3,310, Cryptographic Issues,nan
CVE-2016-6449,15/12/2016 3:08,14/12/2016 0:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6520,15/12/2016 3:06,13/12/2016 15:59,6.4,125, Out-of-bounds Read,nan
CVE-2016-5841,15/12/2016 3:02,13/12/2016 15:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-9888,15/12/2016 3:00,8/12/2016 8:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9839,15/12/2016 3:00,8/12/2016 8:59,5.0,200, Information Exposure,nan
CVE-2016-6712,15/12/2016 3:00,13/12/2016 19:59,7.1,20, Improper Input Validation,nan
CVE-2016-6711,15/12/2016 3:00,13/12/2016 19:59,7.1,20, Improper Input Validation,nan
CVE-2016-6706,15/12/2016 3:00,13/12/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6699,15/12/2016 3:00,13/12/2016 19:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6501,15/12/2016 3:00,9/12/2016 22:59,7.5,20, Improper Input Validation,nan
CVE-2016-4961,15/12/2016 2:59,8/11/2016 20:59,4.9,20, Improper Input Validation,nan
CVE-2016-4960,15/12/2016 2:59,8/11/2016 20:59,6.9,20, Improper Input Validation,nan
CVE-2016-2871,15/12/2016 2:59,30/11/2016 18:59,4.6,255, Credentials Management,nan
CVE-2016-2869,15/12/2016 2:59,30/11/2016 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7951,15/12/2016 2:54,13/12/2016 20:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-7952,15/12/2016 2:44,13/12/2016 20:59,5.0,284, Improper Access Control,nan
CVE-2016-6829,14/12/2016 17:16,9/12/2016 20:59,7.5,798, Use of Hard-coded Credentials,nan
CVE-2016-9919,14/12/2016 2:59,8/12/2016 17:59,7.8,20, Improper Input Validation,nan
CVE-2016-9622,13/12/2016 18:14,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9623,13/12/2016 18:13,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9625,13/12/2016 18:07,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9624,13/12/2016 18:07,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9627,13/12/2016 18:06,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9633,13/12/2016 18:03,12/12/2016 2:59,4.3,399, Resource Management Errors,nan
CVE-2016-9630,13/12/2016 18:03,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6523,13/12/2016 17:25,9/12/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9626,13/12/2016 15:06,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9628,13/12/2016 15:05,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9629,13/12/2016 15:04,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9631,13/12/2016 15:03,12/12/2016 2:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-9632,13/12/2016 15:00,12/12/2016 2:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6364,12/12/2016 19:49,23/08/2016 2:11,5.0,200, Information Exposure,nan
CVE-2016-6369,12/12/2016 19:45,25/08/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6363,12/12/2016 19:44,22/08/2016 10:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6362,12/12/2016 19:44,22/08/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6361,12/12/2016 19:41,22/08/2016 10:59,6.1,20, Improper Input Validation,nan
CVE-2015-6322,12/12/2016 19:40,12/10/2015 10:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-6315,12/12/2016 19:40,13/10/2015 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6371,12/12/2016 19:27,12/09/2016 10:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6365,12/12/2016 19:27,23/08/2016 2:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6370,12/12/2016 19:04,12/09/2016 10:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6279,12/12/2016 19:04,28/09/2015 2:59,7.8,20, Improper Input Validation,nan
CVE-2015-6305,12/12/2016 19:01,26/09/2015 1:59,7.2,426, Untrusted Search Path,nan
CVE-2015-6302,12/12/2016 19:01,26/09/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2016-9539,10/12/2016 2:59,22/11/2016 19:59,7.5,125, Out-of-bounds Read,nan
CVE-2016-9120,10/12/2016 2:59,8/12/2016 21:59,9.3,416, Use After Free,nan
CVE-2015-8967,10/12/2016 2:59,8/12/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8966,10/12/2016 2:59,8/12/2016 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6683,9/12/2016 19:21,14/10/2015 23:59,10.0,416, Use After Free,nan
CVE-2015-6685,9/12/2016 18:53,14/10/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6687,9/12/2016 18:51,14/10/2015 23:59,10.0,416, Use After Free,nan
CVE-2015-6686,9/12/2016 18:48,14/10/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6690,9/12/2016 18:41,14/10/2015 23:59,9.3,416, Use After Free,nan
CVE-2015-6700,9/12/2016 18:40,14/10/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6692,9/12/2016 18:40,14/10/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6699,9/12/2016 18:37,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6691,9/12/2016 18:37,14/10/2015 23:59,10.0,416, Use After Free,nan
CVE-2015-6698,9/12/2016 18:36,14/10/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6701,9/12/2016 18:32,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2013-5195,9/12/2016 18:30,18/12/2013 16:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5833,9/12/2016 16:47,9/10/2015 5:59,7.2,254, 7PK – Security Features,nan
CVE-2015-5830,9/12/2016 16:47,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5780,9/12/2016 16:47,9/10/2015 5:59,10.0,20, Improper Input Validation,nan
CVE-2015-5864,9/12/2016 16:43,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5870,9/12/2016 16:42,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5866,9/12/2016 16:42,9/10/2015 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5865,9/12/2016 16:42,9/10/2015 5:59,4.3,200, Information Exposure,nan
CVE-2015-5854,9/12/2016 16:42,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5853,9/12/2016 16:42,9/10/2015 5:59,3.3,200, Information Exposure,nan
CVE-2015-5849,9/12/2016 16:42,9/10/2015 5:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5836,9/12/2016 16:42,9/10/2015 5:59,4.3,200, Information Exposure,nan
CVE-2015-5872,9/12/2016 16:13,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5871,9/12/2016 16:13,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5873,9/12/2016 15:50,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5875,9/12/2016 15:49,9/10/2015 5:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5878,9/12/2016 15:34,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5877,9/12/2016 15:34,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6329,9/12/2016 14:45,12/10/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6334,9/12/2016 14:44,16/10/2015 1:59,5.0,20, Improper Input Validation,nan
CVE-2015-6333,9/12/2016 14:44,16/10/2015 1:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-6332,9/12/2016 14:44,13/10/2015 0:59,5.0,399, Resource Management Errors,nan
CVE-2015-6331,9/12/2016 14:44,12/10/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6328,9/12/2016 14:44,13/10/2015 0:59,6.8,200, Information Exposure,nan
CVE-2015-6524,9/12/2016 14:29,24/08/2015 14:59,5.0,255, Credentials Management,nan
CVE-2015-6522,9/12/2016 14:29,19/08/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6549,9/12/2016 14:19,6/10/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1898,8/12/2016 18:56,15/04/2015 10:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1897,8/12/2016 18:56,15/04/2015 10:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1896,8/12/2016 18:56,25/05/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4547,8/12/2016 18:55,12/10/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-4543,8/12/2016 18:55,26/09/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-4265,8/12/2016 18:55,12/10/2015 10:59,4.9,399, Resource Management Errors,nan
CVE-2015-4541,8/12/2016 18:53,26/09/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3876,8/12/2016 18:53,2/10/2015 2:59,9.3,20, Improper Input Validation,nan
CVE-2015-4542,8/12/2016 18:52,26/09/2015 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4539,8/12/2016 18:51,26/09/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4548,8/12/2016 18:50,12/10/2015 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-4546,8/12/2016 18:50,2/10/2015 2:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6843,8/12/2016 16:20,18/10/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-7749,8/12/2016 16:19,19/10/2015 18:59,7.8,20, Improper Input Validation,nan
CVE-2015-7034,8/12/2016 16:19,18/10/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6713,8/12/2016 16:19,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7750,8/12/2016 16:18,19/10/2015 18:59,5.0,20, Improper Input Validation,nan
CVE-2015-7619,8/12/2016 16:18,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6939,8/12/2016 16:18,18/09/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6844,8/12/2016 16:18,18/10/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7829,8/12/2016 16:13,15/10/2015 0:00,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7033,8/12/2016 16:13,18/10/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7032,8/12/2016 16:13,18/10/2015 19:59,4.3,200, Information Exposure,nan
CVE-2014-1421,8/12/2016 14:46,25/11/2014 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7760,8/12/2016 3:14,9/10/2015 5:59,5.0,399, Resource Management Errors,nan
CVE-2015-7624,8/12/2016 3:14,14/10/2015 23:59,5.0,284, Improper Access Control,nan
CVE-2015-7623,8/12/2016 3:14,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7620,8/12/2016 3:14,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7618,8/12/2016 3:14,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7616,8/12/2016 3:14,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7614,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7613,8/12/2016 3:13,19/10/2015 10:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7387,8/12/2016 3:13,28/09/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7374,8/12/2016 3:13,25/09/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-7323,8/12/2016 3:13,5/10/2015 15:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7322,8/12/2016 3:13,5/10/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-7310,8/12/2016 3:13,22/09/2015 15:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6846,8/12/2016 3:13,18/10/2015 14:59,6.8,255, Credentials Management,nan
CVE-2015-6749,8/12/2016 3:13,21/09/2015 19:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6725,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6724,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6723,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6722,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6721,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6720,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6719,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6718,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6717,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6716,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6715,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6714,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6712,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6711,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6710,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6709,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6708,8/12/2016 3:13,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6707,8/12/2016 3:12,14/10/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6706,8/12/2016 3:12,14/10/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6705,8/12/2016 3:12,14/10/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-6704,8/12/2016 3:12,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6703,8/12/2016 3:12,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6702,8/12/2016 3:12,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6697,8/12/2016 3:12,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6696,8/12/2016 3:12,14/10/2015 23:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6695,8/12/2016 3:12,14/10/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6694,8/12/2016 3:12,14/10/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6693,8/12/2016 3:12,14/10/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6602,8/12/2016 3:12,2/10/2015 2:59,9.3,20, Improper Input Validation,nan
CVE-2015-6526,8/12/2016 3:12,31/08/2015 20:59,4.9,399, Resource Management Errors,nan
CVE-2015-6003,8/12/2016 3:11,16/10/2015 1:59,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5950,8/12/2016 3:11,30/09/2015 1:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5923,8/12/2016 3:11,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5919,8/12/2016 3:11,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5918,8/12/2016 3:11,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5917,8/12/2016 3:11,9/10/2015 5:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5915,8/12/2016 3:11,9/10/2015 5:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-5914,8/12/2016 3:11,9/10/2015 5:59,4.7,17, DEPRECATED: Code,nan
CVE-2015-5913,8/12/2016 3:11,9/10/2015 5:59,6.8,284, Improper Access Control,nan
CVE-2015-5901,8/12/2016 3:11,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5900,8/12/2016 3:11,9/10/2015 5:59,7.1,254, 7PK – Security Features,nan
CVE-2015-5897,8/12/2016 3:11,9/10/2015 5:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-5894,8/12/2016 3:11,9/10/2015 5:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-5893,8/12/2016 3:11,9/10/2015 5:59,2.1,200, Information Exposure,nan
CVE-2015-5891,8/12/2016 3:11,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5890,8/12/2016 3:11,9/10/2015 5:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5888,8/12/2016 3:11,9/10/2015 5:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5887,8/12/2016 3:11,9/10/2015 5:59,10.0,17, DEPRECATED: Code,nan
CVE-2015-5884,8/12/2016 3:11,9/10/2015 5:59,3.3,200, Information Exposure,nan
CVE-2015-5883,8/12/2016 3:11,9/10/2015 5:59,5.0,20, Improper Input Validation,nan
CVE-2015-5711,8/12/2016 3:10,29/09/2015 18:59,4.0,200, Information Exposure,nan
CVE-2015-5662,8/12/2016 3:10,18/10/2015 10:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5583,8/12/2016 3:10,14/10/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-5523,8/12/2016 3:10,11/08/2015 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5522,8/12/2016 3:10,11/08/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5283,8/12/2016 3:09,19/10/2015 10:59,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5082,8/12/2016 3:09,28/09/2015 15:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-4955,8/12/2016 3:09,3/10/2015 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4950,8/12/2016 3:09,23/08/2015 14:59,4.0,200, Information Exposure,nan
CVE-2015-4948,8/12/2016 3:09,16/10/2015 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-4929,8/12/2016 3:09,11/10/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-4040,8/12/2016 3:08,17/09/2015 16:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3036,8/12/2016 3:08,21/05/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1170,8/12/2016 3:07,6/03/2015 23:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1065,8/12/2016 3:07,12/03/2015 10:59,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0986,8/12/2016 3:07,26/05/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0938,8/12/2016 3:07,17/04/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-0937,8/12/2016 3:07,17/04/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0777,8/12/2016 3:06,5/04/2015 21:59,2.1,200, Information Exposure,nan
CVE-2014-9191,8/12/2016 3:06,10/01/2015 2:59,2.1,399, Resource Management Errors,nan
CVE-2014-6450,8/12/2016 3:06,16/10/2015 20:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6449,8/12/2016 3:06,16/10/2015 20:59,5.0,399, Resource Management Errors,nan
CVE-2014-3789,8/12/2016 3:05,22/05/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2285,8/12/2016 3:05,27/04/2014 22:55,4.3,20, Improper Input Validation,nan
CVE-2014-1370,8/12/2016 3:05,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1344,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1343,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1342,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1341,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1340,8/12/2016 3:05,1/07/2014 10:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1339,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1338,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1337,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1336,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1335,8/12/2016 3:05,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1334,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1333,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1331,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1330,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1329,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1327,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1326,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1324,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1323,8/12/2016 3:04,22/05/2014 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1313,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1312,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1311,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1310,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1309,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1308,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1307,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1305,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1304,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1303,8/12/2016 3:04,26/03/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1302,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1299,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1298,8/12/2016 3:04,2/04/2014 16:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1270,8/12/2016 3:04,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1269,8/12/2016 3:04,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1268,8/12/2016 3:04,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0523,8/12/2016 3:04,14/05/2014 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6935,8/12/2016 3:04,4/12/2013 18:56,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6635,8/12/2016 3:04,7/12/2013 0:55,6.8,399, Resource Management Errors,nan
CVE-2013-5634,8/12/2016 3:03,25/09/2013 10:31,4.3,399, Resource Management Errors,nan
CVE-2013-4560,8/12/2016 3:03,20/11/2013 14:12,2.6,399, Resource Management Errors,nan
CVE-2013-4559,8/12/2016 3:03,20/11/2013 14:12,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4557,8/12/2016 3:03,18/11/2013 2:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4556,8/12/2016 3:03,18/11/2013 2:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4555,8/12/2016 3:03,18/11/2013 2:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4508,8/12/2016 3:03,8/11/2013 4:47,5.8,310, Cryptographic Issues,nan
CVE-2013-4495,8/12/2016 3:03,20/11/2013 14:12,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4449,8/12/2016 3:03,5/02/2014 18:55,4.3,189, Numeric Errors,nan
CVE-2013-4122,8/12/2016 3:03,27/10/2013 0:55,4.3,189, Numeric Errors,nan
CVE-2013-3951,8/12/2016 3:03,5/06/2013 14:39,4.6,20, Improper Input Validation,nan
CVE-2013-1960,8/12/2016 3:03,3/07/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1942,8/12/2016 3:03,15/08/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1881,8/12/2016 3:03,10/10/2013 0:55,4.3,20, Improper Input Validation,nan
CVE-2013-1860,8/12/2016 3:03,22/03/2013 11:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1821,8/12/2016 3:03,9/04/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-1796,8/12/2016 3:03,22/03/2013 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1765,8/12/2016 3:03,14/05/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1464,8/12/2016 3:03,7/02/2013 5:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1434,8/12/2016 3:03,23/08/2013 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0722,8/12/2016 3:03,11/01/2013 22:55,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0249,8/12/2016 3:02,8/03/2013 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0230,8/12/2016 3:02,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6625,8/12/2016 3:02,16/01/2014 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6622,8/12/2016 3:02,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6329,8/12/2016 3:02,4/01/2013 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5195,8/12/2016 3:02,18/12/2012 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4527,8/12/2016 3:02,21/11/2012 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4426,8/12/2016 3:02,21/11/2012 23:55,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2012-4242,8/12/2016 3:02,1/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3488,8/12/2016 3:02,3/10/2012 21:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3417,8/12/2016 3:02,13/08/2012 20:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3414,8/12/2016 3:02,19/07/2013 14:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3400,8/12/2016 3:02,3/10/2012 11:02,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2697,8/12/2016 3:02,24/02/2013 21:55,4.9,20, Improper Input Validation,nan
CVE-2012-2143,8/12/2016 3:02,5/07/2012 14:55,4.3,310, Cryptographic Issues,nan
CVE-2012-0868,8/12/2016 3:02,18/07/2012 23:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0866,8/12/2016 3:02,18/07/2012 23:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0033,8/12/2016 3:02,8/04/2014 14:22,5.0,399, Resource Management Errors,nan
CVE-2011-3581,8/12/2016 3:02,4/11/2011 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3378,8/12/2016 3:02,24/12/2011 19:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2512,8/12/2016 3:02,21/06/2012 15:55,5.8,20, Improper Input Validation,nan
CVE-2011-2212,8/12/2016 3:02,21/06/2012 15:55,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2182,8/12/2016 3:02,13/06/2012 10:24,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1751,8/12/2016 3:02,21/06/2012 15:55,7.4,20, Improper Input Validation,nan
CVE-2011-1574,8/12/2016 3:01,9/05/2011 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5301,8/12/2016 3:01,13/06/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4410,8/12/2016 3:01,6/12/2010 20:13,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4352,8/12/2016 3:01,30/12/2010 19:00,2.1,399, Resource Management Errors,nan
CVE-2010-2761,8/12/2016 3:01,6/12/2010 20:12,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0407,8/12/2016 3:01,18/06/2010 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4901,8/12/2016 3:01,18/06/2010 16:30,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5027,8/12/2016 3:01,10/11/2008 15:23,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-5084,8/12/2016 3:00,29/09/2006 0:07,7.5,20, Improper Input Validation,nan
CVE-2016-0938,7/12/2016 23:43,14/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0931,7/12/2016 23:43,14/01/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2175,7/12/2016 23:43,19/08/2013 13:07,5.0,284, Improper Access Control,nan
CVE-2016-1298,7/12/2016 23:42,26/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0945,7/12/2016 23:42,14/01/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0943,7/12/2016 23:42,14/01/2016 5:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-0942,7/12/2016 23:42,14/01/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0936,7/12/2016 23:42,14/01/2016 5:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1295,7/12/2016 23:41,16/01/2016 5:59,5.0,200, Information Exposure,nan
CVE-2016-1294,7/12/2016 23:41,16/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1293,7/12/2016 23:41,16/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0944,7/12/2016 23:41,14/01/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0933,7/12/2016 23:41,14/01/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0946,7/12/2016 23:39,14/01/2016 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0939,7/12/2016 23:39,14/01/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1296,7/12/2016 23:38,20/01/2016 5:59,5.0,254, 7PK – Security Features,nan
CVE-2013-4777,7/12/2016 21:18,25/09/2013 10:31,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0867,7/12/2016 19:56,18/07/2012 23:55,4.3,295, Improper Certificate Validation,nan
CVE-2016-9799,7/12/2016 19:34,3/12/2016 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9801,7/12/2016 19:32,3/12/2016 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9800,7/12/2016 19:32,3/12/2016 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9804,7/12/2016 19:29,3/12/2016 6:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9803,7/12/2016 19:28,3/12/2016 6:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-9836,7/12/2016 19:27,5/12/2016 17:59,7.5,284, Improper Access Control,nan
CVE-2016-1904,7/12/2016 18:33,19/01/2016 5:59,7.5,189, Numeric Errors,nan
CVE-2016-1901,7/12/2016 18:33,20/01/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1619,7/12/2016 18:33,25/01/2016 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1618,7/12/2016 18:33,25/01/2016 11:59,4.3,310, Cryptographic Issues,nan
CVE-2016-1617,7/12/2016 18:33,25/01/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-1616,7/12/2016 18:33,25/01/2016 11:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1615,7/12/2016 18:32,25/01/2016 11:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1614,7/12/2016 18:32,25/01/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-1612,7/12/2016 18:32,25/01/2016 11:59,6.8,20, Improper Input Validation,nan
CVE-2016-0209,7/12/2016 18:30,27/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0201,7/12/2016 18:30,18/01/2016 5:59,4.3,200, Information Exposure,nan
CVE-2015-8769,7/12/2016 18:30,12/01/2016 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8742,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8741,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8740,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8739,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8738,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8737,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8736,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8735,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8734,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8733,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8732,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8731,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8730,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8729,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8728,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8727,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8726,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8725,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8724,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8723,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8722,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8721,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8720,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8719,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8718,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8717,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8716,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8715,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8714,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8713,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8712,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8711,7/12/2016 18:29,4/01/2016 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-8688,7/12/2016 18:29,15/01/2016 19:59,5.8,20, Improper Input Validation,nan
CVE-2015-8685,7/12/2016 18:29,15/01/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8669,7/12/2016 18:29,26/12/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-8664,7/12/2016 18:29,24/12/2015 3:59,7.5,189, Numeric Errors,nan
CVE-2015-8605,7/12/2016 18:28,14/01/2016 22:59,5.7,20, Improper Input Validation,nan
CVE-2015-8509,7/12/2016 18:28,3/01/2016 5:59,4.3,200, Information Exposure,nan
CVE-2015-8508,7/12/2016 18:28,3/01/2016 5:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8408,7/12/2016 18:27,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8407,7/12/2016 18:27,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8377,7/12/2016 18:27,15/12/2015 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8373,7/12/2016 18:27,22/12/2015 23:59,7.1,20, Improper Input Validation,nan
CVE-2015-8369,7/12/2016 18:27,17/12/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8338,7/12/2016 18:26,17/12/2015 19:59,7.2,254, 7PK – Security Features,nan
CVE-2015-8219,7/12/2016 18:26,17/11/2015 1:59,7.5,20, Improper Input Validation,nan
CVE-2015-8218,7/12/2016 18:26,17/11/2015 1:59,6.8,20, Improper Input Validation,nan
CVE-2015-8214,7/12/2016 18:26,27/11/2015 15:59,9.7,264, Permissions Privileges and Access Controls,nan
CVE-2015-8213,7/12/2016 18:26,7/12/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-8103,7/12/2016 18:26,25/11/2015 20:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-8100,7/12/2016 18:26,10/11/2015 3:59,2.1,200, Information Exposure,nan
CVE-2015-8060,7/12/2016 18:26,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8053,7/12/2016 18:26,18/11/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8052,7/12/2016 18:26,18/11/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8047,7/12/2016 18:26,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8045,7/12/2016 18:26,10/12/2015 5:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8025,7/12/2016 18:25,10/11/2015 17:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-8024,7/12/2016 18:25,2/12/2015 16:59,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-7998,7/12/2016 18:25,17/11/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-7997,7/12/2016 18:25,17/11/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7996,7/12/2016 18:25,17/11/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-7929,7/12/2016 18:25,23/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7928,7/12/2016 18:25,23/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7927,7/12/2016 18:25,23/12/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7926,7/12/2016 18:25,23/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7925,7/12/2016 18:25,23/12/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7885,7/12/2016 18:25,28/12/2015 11:59,2.1,200, Information Exposure,nan
CVE-2015-7884,7/12/2016 18:25,28/12/2015 11:59,1.9,200, Information Exposure,nan
CVE-2015-7873,7/12/2016 18:25,28/10/2015 10:59,5.0,254, 7PK – Security Features,nan
CVE-2015-7804,7/12/2016 18:25,11/12/2015 12:00,6.8,189, Numeric Errors,nan
CVE-2015-7770,7/12/2016 18:25,6/11/2015 11:59,5.0,20, Improper Input Validation,nan
CVE-2015-7763,7/12/2016 18:25,6/11/2015 21:59,5.0,200, Information Exposure,nan
CVE-2015-7762,7/12/2016 18:25,6/11/2015 21:59,5.0,200, Information Exposure,nan
CVE-2015-7761,7/12/2016 18:25,9/10/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-7756,7/12/2016 18:25,19/12/2015 14:59,5.0,310, Cryptographic Issues,nan
CVE-2015-7755,7/12/2016 18:25,19/12/2015 14:59,10.0,287, Improper Authentication,nan
CVE-2015-7697,7/12/2016 18:24,6/11/2015 18:59,4.3,399, Resource Management Errors,nan
CVE-2015-7696,7/12/2016 18:24,6/11/2015 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7509,7/12/2016 18:24,28/12/2015 11:59,4.9,20, Improper Input Validation,nan
CVE-2015-7489,7/12/2016 18:24,1/01/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7447,7/12/2016 18:24,31/12/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-7441,7/12/2016 18:24,1/01/2016 0:59,4.9,17, DEPRECATED: Code,nan
CVE-2015-7421,7/12/2016 18:24,1/01/2016 5:59,5.0,200, Information Exposure,nan
CVE-2015-7420,7/12/2016 18:24,1/01/2016 5:59,5.0,200, Information Exposure,nan
CVE-2015-7417,7/12/2016 18:23,23/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7337,7/12/2016 18:23,29/09/2015 19:59,6.8,20, Improper Input Validation,nan
CVE-2015-7284,7/12/2016 18:23,31/12/2015 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7283,7/12/2016 18:23,31/12/2015 5:59,9.3,255, Credentials Management,nan
CVE-2015-7200,7/12/2016 18:23,5/11/2015 5:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-7199,7/12/2016 18:23,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7198,7/12/2016 18:23,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7197,7/12/2016 18:23,5/11/2015 5:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7196,7/12/2016 18:23,5/11/2015 5:59,6.8,17, DEPRECATED: Code,nan
CVE-2015-7195,7/12/2016 18:23,5/11/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-7194,7/12/2016 18:23,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7193,7/12/2016 18:23,5/11/2015 5:59,7.5,254, 7PK – Security Features,nan
CVE-2015-7192,7/12/2016 18:23,5/11/2015 5:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-7191,7/12/2016 18:23,5/11/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7190,7/12/2016 18:23,5/11/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-7189,7/12/2016 18:23,5/11/2015 5:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7188,7/12/2016 18:23,5/11/2015 5:59,7.5,254, 7PK – Security Features,nan
CVE-2015-7187,7/12/2016 18:23,5/11/2015 5:59,4.3,254, 7PK – Security Features,nan
CVE-2015-7186,7/12/2016 18:23,5/11/2015 5:59,4.3,200, Information Exposure,nan
CVE-2015-7185,7/12/2016 18:23,5/11/2015 5:59,4.3,254, 7PK – Security Features,nan
CVE-2015-7117,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7113,7/12/2016 18:22,11/12/2015 12:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7093,7/12/2016 18:22,11/12/2015 11:59,4.3,20, Improper Input Validation,nan
CVE-2015-7092,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7091,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7090,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7089,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7088,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7087,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7086,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7085,7/12/2016 18:22,9/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7080,7/12/2016 18:22,11/12/2015 11:59,2.1,200, Information Exposure,nan
CVE-2015-7057,7/12/2016 18:22,11/12/2015 11:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7056,7/12/2016 18:22,11/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-7050,7/12/2016 18:22,11/12/2015 11:59,4.3,200, Information Exposure,nan
CVE-2015-7049,7/12/2016 18:22,11/12/2015 11:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7037,7/12/2016 18:22,11/12/2015 11:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6933,7/12/2016 18:22,9/01/2016 2:59,6.5,284, Improper Access Control,nan
CVE-2015-6928,7/12/2016 18:22,28/09/2015 15:59,6.8,284, Improper Access Control,nan
CVE-2015-6862,7/12/2016 18:22,8/01/2016 2:59,7.2,284, Improper Access Control,nan
CVE-2015-6860,7/12/2016 18:22,5/01/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6859,7/12/2016 18:22,5/01/2016 11:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-6852,7/12/2016 18:22,28/12/2015 15:59,4.0,200, Information Exposure,nan
CVE-2015-6851,7/12/2016 18:22,23/12/2015 3:59,7.2,284, Improper Access Control,nan
CVE-2015-6850,7/12/2016 18:22,28/12/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6849,7/12/2016 18:22,5/12/2015 3:59,7.8,20, Improper Input Validation,nan
CVE-2015-6847,7/12/2016 18:21,18/11/2015 11:59,2.1,200, Information Exposure,nan
CVE-2015-6790,7/12/2016 18:21,14/12/2015 11:59,4.3,20, Improper Input Validation,nan
CVE-2015-6737,7/12/2016 18:21,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6736,7/12/2016 18:21,1/09/2015 14:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-6735,7/12/2016 18:21,1/09/2015 14:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-6734,7/12/2016 18:21,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6733,7/12/2016 18:21,1/09/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-6732,7/12/2016 18:21,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6731,7/12/2016 18:21,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6730,7/12/2016 18:21,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6729,7/12/2016 18:21,1/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6728,7/12/2016 18:21,1/09/2015 14:59,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6654,7/12/2016 18:21,3/09/2015 14:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-6647,7/12/2016 18:20,6/01/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6646,7/12/2016 18:20,6/01/2016 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-6645,7/12/2016 18:20,6/01/2016 19:59,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-6643,7/12/2016 18:20,6/01/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-6642,7/12/2016 18:20,6/01/2016 19:59,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6641,7/12/2016 18:20,6/01/2016 19:59,2.9,200, Information Exposure,nan
CVE-2015-6640,7/12/2016 18:20,6/01/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6638,7/12/2016 18:20,6/01/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6637,7/12/2016 18:20,6/01/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6636,7/12/2016 18:20,6/01/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6614,7/12/2016 18:20,3/11/2015 11:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6609,7/12/2016 18:20,3/11/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6555,7/12/2016 18:20,12/11/2015 3:59,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-6554,7/12/2016 18:20,12/11/2015 3:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6478,7/12/2016 18:20,13/11/2015 3:59,6.8,284, Improper Access Control,nan
CVE-2015-6477,7/12/2016 18:20,18/10/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6435,7/12/2016 18:20,22/01/2016 11:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6434,7/12/2016 18:20,8/01/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6433,7/12/2016 18:20,8/01/2016 2:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6432,7/12/2016 18:20,5/01/2016 2:59,5.0,399, Resource Management Errors,nan
CVE-2015-6431,7/12/2016 18:20,23/12/2015 3:59,6.1,399, Resource Management Errors,nan
CVE-2015-6429,7/12/2016 18:20,19/12/2015 14:59,5.0,19, Data Processing Errors,nan
CVE-2015-6428,7/12/2016 18:20,18/12/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-6427,7/12/2016 18:20,18/12/2015 11:59,5.0,254, 7PK – Security Features,nan
CVE-2015-6425,7/12/2016 18:20,16/12/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2015-6424,7/12/2016 18:20,18/12/2015 11:59,7.2,255, Credentials Management,nan
CVE-2015-6423,7/12/2016 18:20,15/01/2016 3:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6422,7/12/2016 18:20,14/12/2015 3:59,4.0,399, Resource Management Errors,nan
CVE-2015-6421,7/12/2016 18:20,27/01/2016 22:59,7.8,399, Resource Management Errors,nan
CVE-2015-6418,7/12/2016 18:20,13/12/2015 3:59,4.3,200, Information Exposure,nan
CVE-2015-6416,7/12/2016 18:20,14/12/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6414,7/12/2016 18:20,13/12/2015 3:59,2.1,200, Information Exposure,nan
CVE-2015-6413,7/12/2016 18:20,13/12/2015 3:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-6410,7/12/2016 18:20,14/12/2015 3:59,4.0,20, Improper Input Validation,nan
CVE-2015-6409,7/12/2016 18:20,26/12/2015 22:59,4.3,200, Information Exposure,nan
CVE-2015-6408,7/12/2016 18:20,12/12/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6407,7/12/2016 18:20,13/12/2015 3:59,4.0,20, Improper Input Validation,nan
CVE-2015-6406,7/12/2016 18:20,13/12/2015 3:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6405,7/12/2016 18:20,13/12/2015 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6403,7/12/2016 18:20,15/12/2015 5:59,7.2,20, Improper Input Validation,nan
CVE-2015-6389,7/12/2016 18:19,13/12/2015 3:59,9.0,287, Improper Authentication,nan
CVE-2015-6367,7/12/2016 18:19,14/11/2015 3:59,7.8,399, Resource Management Errors,nan
CVE-2015-6366,7/12/2016 18:19,13/11/2015 3:59,5.0,284, Improper Access Control,nan
CVE-2015-6365,7/12/2016 18:19,14/11/2015 3:59,4.0,20, Improper Input Validation,nan
CVE-2015-6364,7/12/2016 18:19,14/11/2015 3:59,5.0,200, Information Exposure,nan
CVE-2015-6363,7/12/2016 18:19,12/11/2015 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6362,7/12/2016 18:19,10/11/2015 3:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-6359,7/12/2016 18:19,15/12/2015 5:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6356,7/12/2016 18:19,4/11/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6354,7/12/2016 18:19,31/10/2015 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6353,7/12/2016 18:19,31/10/2015 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6352,7/12/2016 18:19,30/10/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-6351,7/12/2016 18:19,30/10/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-6350,7/12/2016 18:19,30/10/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6349,7/12/2016 18:19,30/10/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6348,7/12/2016 18:19,30/10/2015 10:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-6347,7/12/2016 18:19,30/10/2015 10:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-6346,7/12/2016 18:19,30/10/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6345,7/12/2016 18:19,30/10/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6344,7/12/2016 18:19,30/10/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-6337,7/12/2016 18:19,26/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6336,7/12/2016 18:19,15/01/2016 3:59,7.5,255, Credentials Management,nan
CVE-2015-6326,7/12/2016 18:19,25/10/2015 2:59,7.8,399, Resource Management Errors,nan
CVE-2015-6321,7/12/2016 18:19,6/11/2015 3:59,7.8,399, Resource Management Errors,nan
CVE-2015-6320,7/12/2016 18:19,15/01/2016 3:59,7.8,399, Resource Management Errors,nan
CVE-2015-6319,7/12/2016 18:19,27/01/2016 22:59,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6317,7/12/2016 18:19,23/01/2016 5:59,6.8,284, Improper Access Control,nan
CVE-2015-6314,7/12/2016 18:19,15/01/2016 3:59,10.0,287, Improper Authentication,nan
CVE-2015-6298,7/12/2016 18:19,6/11/2015 11:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6293,7/12/2016 18:19,6/11/2015 3:59,7.8,399, Resource Management Errors,nan
CVE-2015-6292,7/12/2016 18:19,6/11/2015 11:59,7.8,399, Resource Management Errors,nan
CVE-2015-6291,7/12/2016 18:19,6/11/2015 3:59,7.8,20, Improper Input Validation,nan
CVE-2015-6020,7/12/2016 18:17,31/12/2015 5:59,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6017,7/12/2016 18:17,31/12/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6016,7/12/2016 18:17,31/12/2015 5:59,10.0,255, Credentials Management,nan
CVE-2015-5713,7/12/2016 18:17,28/10/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-5712,7/12/2016 18:17,28/10/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-5667,7/12/2016 18:17,31/10/2015 4:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5602,7/12/2016 18:17,17/11/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5504,7/12/2016 18:16,18/08/2015 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5459,7/12/2016 18:16,8/07/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5451,7/12/2016 18:16,23/11/2015 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5447,7/12/2016 18:16,5/01/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5445,7/12/2016 18:16,5/01/2016 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5397,7/12/2016 18:16,14/07/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5365,7/12/2016 18:16,2/07/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5311,7/12/2016 18:16,17/11/2015 15:59,5.0,20, Improper Input Validation,nan
CVE-2015-5306,7/12/2016 18:16,25/11/2015 20:59,6.8,254, 7PK – Security Features,nan
CVE-2015-5302,7/12/2016 18:16,7/12/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-5301,7/12/2016 18:16,17/11/2015 15:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-5292,7/12/2016 18:16,29/10/2015 16:59,6.8,399, Resource Management Errors,nan
CVE-2015-5287,7/12/2016 18:16,7/12/2015 18:59,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5281,7/12/2016 18:16,24/11/2015 20:59,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-5273,7/12/2016 18:16,7/12/2015 18:59,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5149,7/12/2016 18:15,30/06/2015 14:59,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5080,7/12/2016 18:15,16/07/2015 14:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5078,7/12/2016 18:15,28/06/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5061,7/12/2016 18:15,24/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5021,7/12/2016 18:15,4/11/2015 3:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-5020,7/12/2016 18:15,2/01/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5018,7/12/2016 18:15,2/01/2016 5:59,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-5015,7/12/2016 18:15,8/11/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-5004,7/12/2016 18:15,15/12/2015 5:59,4.0,200, Information Exposure,nan
CVE-2015-4997,7/12/2016 18:15,29/10/2015 11:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-4996,7/12/2016 18:15,2/01/2016 5:59,3.6,200, Information Exposure,nan
CVE-2015-4963,7/12/2016 18:15,8/11/2015 22:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-4959,7/12/2016 18:15,18/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4951,7/12/2016 18:15,20/01/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2015-4943,7/12/2016 18:15,1/01/2016 5:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-4942,7/12/2016 18:15,18/01/2016 5:59,5.0,399, Resource Management Errors,nan
CVE-2015-4941,7/12/2016 18:15,1/01/2016 5:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-4940,7/12/2016 18:15,8/11/2015 22:59,2.1,200, Information Exposure,nan
CVE-2015-4928,7/12/2016 18:15,8/11/2015 22:59,4.3,200, Information Exposure,nan
CVE-2015-4927,7/12/2016 18:15,4/11/2015 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1089,7/12/2016 18:15,10/04/2011 2:55,3.3,16, Configuration,nan
CVE-2015-4726,7/12/2016 18:14,23/06/2015 14:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-4725,7/12/2016 18:14,23/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4948,7/12/2016 18:14,14/11/2012 12:30,5.3,295, Improper Certificate Validation,nan
CVE-2015-4716,7/12/2016 18:13,21/10/2015 18:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4714,7/12/2016 18:13,22/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4713,7/12/2016 18:13,22/06/2015 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4679,7/12/2016 18:13,19/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4678,7/12/2016 18:13,19/06/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4677,7/12/2016 18:13,19/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4676,7/12/2016 18:13,19/06/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4675,7/12/2016 18:13,19/06/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4671,7/12/2016 18:13,12/01/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4659,7/12/2016 18:13,18/06/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4654,7/12/2016 18:13,18/06/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4648,7/12/2016 18:13,6/07/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-4647,7/12/2016 18:13,6/07/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4641,7/12/2016 18:13,19/06/2015 14:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4640,7/12/2016 18:13,19/06/2015 14:59,2.9,254, 7PK – Security Features,nan
CVE-2015-4628,7/12/2016 18:13,18/06/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4613,7/12/2016 18:13,16/06/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4612,7/12/2016 18:13,16/06/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4611,7/12/2016 18:13,16/06/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4610,7/12/2016 18:13,16/06/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4609,7/12/2016 18:13,16/06/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4608,7/12/2016 18:13,16/06/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4587,7/12/2016 18:13,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4586,7/12/2016 18:13,23/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4550,7/12/2016 18:13,17/06/2015 10:59,4.3,310, Cryptographic Issues,nan
CVE-2015-4518,7/12/2016 18:13,5/11/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4515,7/12/2016 18:13,5/11/2015 5:59,4.3,200, Information Exposure,nan
CVE-2015-4514,7/12/2016 18:13,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4513,7/12/2016 18:13,5/11/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4221,7/12/2016 18:13,10/10/2013 0:55,7.5,91, XML Injection (aka Blind XPath Injection),nan
CVE-2011-0716,7/12/2016 18:13,21/06/2012 23:55,4.7,399, Resource Management Errors,nan
CVE-2015-4460,7/12/2016 18:12,16/07/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4453,7/12/2016 18:12,5/07/2015 1:59,5.0,287, Improper Authentication,nan
CVE-2015-4414,7/12/2016 18:12,17/06/2015 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4206,7/12/2016 18:12,15/12/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4189,7/12/2016 18:12,23/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4188,7/12/2016 18:12,17/06/2015 10:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4186,7/12/2016 18:12,17/06/2015 10:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4183,7/12/2016 18:11,17/06/2015 10:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4174,7/12/2016 18:11,28/06/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4155,7/12/2016 18:11,2/06/2015 14:59,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-4112,7/12/2016 18:11,19/11/2015 11:59,4.3,254, 7PK – Security Features,nan
CVE-2015-3868,7/12/2016 18:11,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2942,7/12/2016 18:11,13/04/2015 14:59,7.1,399, Resource Management Errors,nan
CVE-2015-2941,7/12/2016 18:11,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2940,7/12/2016 18:11,13/04/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2939,7/12/2016 18:11,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2938,7/12/2016 18:11,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2937,7/12/2016 18:11,13/04/2015 14:59,7.1,399, Resource Management Errors,nan
CVE-2015-2936,7/12/2016 18:10,13/04/2015 14:59,7.1,399, Resource Management Errors,nan
CVE-2015-2935,7/12/2016 18:10,13/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2934,7/12/2016 18:10,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2933,7/12/2016 18:10,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2932,7/12/2016 18:10,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2931,7/12/2016 18:10,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2924,7/12/2016 18:10,16/11/2015 21:59,3.3,20, Improper Input Validation,nan
CVE-2015-2902,7/12/2016 18:10,4/11/2015 3:59,6.8,310, Cryptographic Issues,nan
CVE-2015-2864,7/12/2016 18:10,21/09/2015 10:59,5.0,255, Credentials Management,nan
CVE-2015-2706,7/12/2016 18:10,27/04/2015 11:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-2698,7/12/2016 18:10,13/11/2015 3:59,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2694,7/12/2016 18:10,25/05/2015 19:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1969,7/12/2016 18:09,4/10/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1928,7/12/2016 18:09,2/01/2016 21:59,3.5,20, Improper Input Validation,nan
CVE-2015-1463,7/12/2016 18:09,3/02/2015 16:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-1462,7/12/2016 18:09,3/02/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1461,7/12/2016 18:09,3/02/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2351,7/12/2016 17:43,12/07/2012 20:55,5.0,287, Improper Authentication,nan
CVE-2011-4016,7/12/2016 17:36,2/05/2012 10:09,5.4,284, Improper Access Control,nan
CVE-2015-0798,7/12/2016 13:36,8/04/2015 10:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0810,7/12/2016 3:02,1/04/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-0272,7/12/2016 3:01,17/11/2015 15:59,5.0,20, Improper Input Validation,nan
CVE-2014-9756,7/12/2016 3:01,19/11/2015 20:59,5.0,189, Numeric Errors,nan
CVE-2014-9623,7/12/2016 3:01,23/01/2015 15:59,4.0,399, Resource Management Errors,nan
CVE-2014-8651,7/12/2016 3:01,6/12/2014 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-6287,7/12/2016 3:00,7/10/2014 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4936,7/12/2016 3:00,16/12/2014 18:59,9.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-4638,7/12/2016 3:00,7/01/2015 2:59,5.0,200, Information Exposure,nan
CVE-2014-4636,7/12/2016 3:00,7/01/2015 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4635,7/12/2016 3:00,7/01/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7437,7/12/2016 3:00,29/03/2015 21:59,5.0,189, Numeric Errors,nan
CVE-2013-2492,7/12/2016 3:00,15/03/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5670,7/12/2016 3:00,24/01/2013 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5669,7/12/2016 3:00,24/01/2013 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5668,7/12/2016 3:00,24/01/2013 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2150,7/12/2016 3:00,25/08/2015 17:59,5.0,200, Information Exposure,nan
CVE-2011-4516,7/12/2016 3:00,15/12/2011 3:57,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0963,7/12/2016 2:59,31/03/2011 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1622,7/12/2016 2:59,21/06/2010 16:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0015,7/12/2016 2:59,14/01/2010 18:30,7.5,255, Credentials Management,nan
CVE-2002-2443,7/12/2016 2:59,29/05/2013 14:29,5.0,20, Improper Input Validation,nan
CVE-2016-2201,6/12/2016 20:04,8/02/2016 16:59,5.0,20, Improper Input Validation,nan
CVE-2016-2046,6/12/2016 20:03,17/02/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4837,6/12/2016 20:00,1/08/2016 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4834,6/12/2016 20:00,1/08/2016 2:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-5048,6/12/2016 19:56,26/08/2016 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2200,6/12/2016 19:50,8/02/2016 16:59,7.8,20, Improper Input Validation,nan
CVE-2016-2936,6/12/2016 19:49,30/11/2016 11:59,5.0,255, Credentials Management,nan
CVE-2016-2330,6/12/2016 19:49,12/02/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2937,6/12/2016 19:47,30/11/2016 11:59,6.4,200, Information Exposure,nan
CVE-2016-2994,6/12/2016 19:46,1/12/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2328,6/12/2016 19:45,12/02/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2327,6/12/2016 19:45,12/02/2016 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9751,6/12/2016 19:43,1/12/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8222,6/12/2016 19:43,30/11/2016 15:59,4.7,284, Improper Access Control,nan
CVE-2013-4271,6/12/2016 19:17,10/10/2013 0:55,7.5,502, Deserialization of Untrusted Data,nan
CVE-2016-8224,6/12/2016 19:15,29/11/2016 20:59,4.6,310, Cryptographic Issues,nan
CVE-2013-2119,6/12/2016 19:05,3/01/2014 18:54,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-8223,6/12/2016 18:44,29/11/2016 20:59,7.2,284, Improper Access Control,nan
CVE-2014-3120,6/12/2016 18:13,28/07/2014 19:55,6.8,284, Improper Access Control,nan
CVE-2016-6460,6/12/2016 17:45,19/11/2016 3:03,5.0,254, 7PK – Security Features,nan
CVE-2016-3643,6/12/2016 17:31,17/06/2016 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6716,6/12/2016 15:09,25/11/2016 16:59,4.3,284, Improper Access Control,nan
CVE-2016-6708,6/12/2016 15:09,25/11/2016 16:59,2.1,284, Improper Access Control,nan
CVE-2016-6703,6/12/2016 15:09,25/11/2016 16:59,6.8,284, Improper Access Control,nan
CVE-2016-6702,6/12/2016 15:09,25/11/2016 16:59,6.8,284, Improper Access Control,nan
CVE-2016-6696,6/12/2016 15:09,10/10/2016 11:00,7.5,20, Improper Input Validation,nan
CVE-2016-6695,6/12/2016 15:09,10/10/2016 11:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6682,6/12/2016 15:09,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-6679,6/12/2016 15:09,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-6677,6/12/2016 15:09,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-6694,6/12/2016 15:08,10/10/2016 11:00,7.5,20, Improper Input Validation,nan
CVE-2016-6692,6/12/2016 15:08,10/10/2016 11:00,7.5,476, NULL Pointer Dereference,nan
CVE-2016-6687,6/12/2016 15:08,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-6683,6/12/2016 15:08,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-6680,6/12/2016 15:08,10/10/2016 10:59,6.8,200, Information Exposure,nan
CVE-2016-6676,6/12/2016 15:08,10/10/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6700,6/12/2016 15:07,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6684,6/12/2016 15:07,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-6718,6/12/2016 15:05,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6701,6/12/2016 15:05,25/11/2016 16:59,6.8,284, Improper Access Control,nan
CVE-2016-6688,6/12/2016 15:05,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-6693,6/12/2016 15:04,10/10/2016 11:00,7.5,20, Improper Input Validation,nan
CVE-2016-6690,6/12/2016 15:04,10/10/2016 11:00,7.1,284, Improper Access Control,nan
CVE-2016-6698,6/12/2016 15:03,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6675,6/12/2016 15:03,10/10/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6685,6/12/2016 14:46,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-6681,6/12/2016 14:46,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-6691,6/12/2016 14:41,10/10/2016 11:00,7.5,172, Encoding Error,nan
CVE-2016-6686,6/12/2016 14:41,10/10/2016 11:00,4.3,200, Information Exposure,nan
CVE-2016-2213,6/12/2016 3:08,3/02/2016 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2037,6/12/2016 3:07,22/02/2016 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1987,6/12/2016 3:07,18/02/2016 22:59,2.6,20, Improper Input Validation,nan
CVE-2016-1984,6/12/2016 3:07,22/01/2016 11:59,10.0,255, Credentials Management,nan
CVE-2016-1983,6/12/2016 3:07,27/01/2016 20:59,5.0,20, Improper Input Validation,nan
CVE-2016-1982,6/12/2016 3:07,27/01/2016 20:59,5.0,20, Improper Input Validation,nan
CVE-2016-1949,6/12/2016 3:07,13/02/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1730,6/12/2016 3:07,1/02/2016 11:59,5.8,200, Information Exposure,nan
CVE-2016-1569,6/12/2016 3:07,13/01/2016 15:59,4.0,20, Improper Input Validation,nan
CVE-2016-1567,6/12/2016 3:07,26/01/2016 19:59,6.8,254, 7PK – Security Features,nan
CVE-2016-1341,6/12/2016 3:06,24/02/2016 3:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-1334,6/12/2016 3:06,17/02/2016 16:59,5.0,20, Improper Input Validation,nan
CVE-2016-1333,6/12/2016 3:06,17/02/2016 16:59,6.8,399, Resource Management Errors,nan
CVE-2016-1331,6/12/2016 3:06,15/02/2016 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1330,6/12/2016 3:06,15/02/2016 23:59,6.1,399, Resource Management Errors,nan
CVE-2016-1321,6/12/2016 3:06,15/02/2016 23:59,5.0,200, Information Exposure,nan
CVE-2016-1319,6/12/2016 3:06,9/02/2016 3:59,5.0,200, Information Exposure,nan
CVE-2016-1318,6/12/2016 3:06,9/02/2016 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1317,6/12/2016 3:06,9/02/2016 3:59,4.0,200, Information Exposure,nan
CVE-2016-1316,6/12/2016 3:06,9/02/2016 3:59,5.0,200, Information Exposure,nan
CVE-2016-1311,6/12/2016 3:06,6/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1310,6/12/2016 3:06,6/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1309,6/12/2016 3:06,7/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1308,6/12/2016 3:06,7/02/2016 11:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1307,6/12/2016 3:06,7/02/2016 11:59,5.5,287, Improper Authentication,nan
CVE-2016-1305,6/12/2016 3:06,7/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1304,6/12/2016 3:06,30/01/2016 12:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1302,6/12/2016 3:06,7/02/2016 11:59,9.0,284, Improper Access Control,nan
CVE-2016-1301,6/12/2016 3:06,7/02/2016 11:59,8.5,284, Improper Access Control,nan
CVE-2016-1297,6/12/2016 3:06,26/02/2016 5:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-0981,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0980,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0979,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0978,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0977,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0976,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0972,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0970,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0969,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0968,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0966,6/12/2016 3:06,10/02/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0950,6/12/2016 3:06,10/02/2016 20:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0948,6/12/2016 3:05,10/02/2016 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0860,6/12/2016 3:05,15/01/2016 3:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0756,6/12/2016 3:05,29/01/2016 20:59,5.0,20, Improper Input Validation,nan
CVE-2016-0738,6/12/2016 3:05,29/01/2016 20:59,5.0,399, Resource Management Errors,nan
CVE-2015-8785,6/12/2016 3:04,8/02/2016 3:59,4.9,399, Resource Management Errors,nan
CVE-2015-8748,6/12/2016 3:04,3/02/2016 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8747,6/12/2016 3:04,3/02/2016 18:59,7.5,20, Improper Input Validation,nan
CVE-2015-8631,6/12/2016 3:04,13/02/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8629,6/12/2016 3:04,13/02/2016 2:59,2.1,200, Information Exposure,nan
CVE-2015-8476,6/12/2016 3:03,16/12/2015 21:59,5.0,20, Improper Input Validation,nan
CVE-2015-8151,6/12/2016 3:03,18/02/2016 22:59,5.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-8150,6/12/2016 3:03,18/02/2016 22:59,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8149,6/12/2016 3:03,18/02/2016 22:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8148,6/12/2016 3:03,18/02/2016 22:59,5.0,200, Information Exposure,nan
CVE-2015-7399,6/12/2016 3:03,11/01/2016 11:59,5.0,200, Information Exposure,nan
CVE-2015-6398,6/12/2016 3:03,7/02/2016 11:59,7.8,399, Resource Management Errors,nan
CVE-2015-6005,6/12/2016 3:03,27/12/2015 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6004,6/12/2016 3:03,27/12/2015 3:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5663,6/12/2016 3:03,30/12/2015 5:59,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2015-5654,6/12/2016 3:03,11/10/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5003,6/12/2016 3:02,3/01/2016 5:59,8.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-4981,6/12/2016 3:02,26/10/2015 2:59,2.1,200, Information Exposure,nan
CVE-2015-4974,6/12/2016 3:02,26/10/2015 2:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-4137,6/12/2016 3:02,29/05/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4132,6/12/2016 3:02,28/05/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4069,6/12/2016 3:02,29/05/2015 15:59,7.8,200, Information Exposure,nan
CVE-2015-4068,6/12/2016 3:02,29/05/2015 15:59,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4067,6/12/2016 3:02,29/05/2015 15:59,10.0,189, Numeric Errors,nan
CVE-2015-4060,6/12/2016 3:02,29/05/2015 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4059,6/12/2016 3:02,29/05/2015 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4034,6/12/2016 3:01,6/07/2015 14:59,7.9,284, Improper Access Control,nan
CVE-2015-4032,6/12/2016 3:01,29/05/2015 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3993,6/12/2016 3:01,13/06/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3989,6/12/2016 3:01,15/05/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3961,6/12/2016 3:01,4/08/2015 1:59,3.5,399, Resource Management Errors,nan
CVE-2015-3960,6/12/2016 3:01,4/08/2015 1:59,4.3,310, Cryptographic Issues,nan
CVE-2015-3958,6/12/2016 3:01,6/07/2015 19:59,7.8,19, Data Processing Errors,nan
CVE-2015-3957,6/12/2016 3:01,6/07/2015 19:59,4.6,255, Credentials Management,nan
CVE-2015-3955,6/12/2016 3:01,6/07/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3950,6/12/2016 3:01,5/06/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3949,6/12/2016 3:01,13/06/2015 18:59,2.1,200, Information Exposure,nan
CVE-2015-3942,6/12/2016 3:01,4/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3939,6/12/2016 3:01,31/05/2015 17:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3935,6/12/2016 3:01,10/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3693,6/12/2016 3:01,3/07/2015 1:59,9.3,254, 7PK – Security Features,nan
CVE-2015-3692,6/12/2016 3:01,3/07/2015 1:59,6.8,284, Improper Access Control,nan
CVE-2015-3646,6/12/2016 3:01,12/05/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-3458,6/12/2016 3:01,29/04/2015 22:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3457,6/12/2016 3:01,29/04/2015 22:59,5.0,287, Improper Authentication,nan
CVE-2015-3449,6/12/2016 3:01,16/07/2015 14:59,7.2,254, 7PK – Security Features,nan
CVE-2015-3448,6/12/2016 3:01,29/04/2015 20:59,2.1,200, Information Exposure,nan
CVE-2015-3446,6/12/2016 3:01,1/05/2015 15:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3440,6/12/2016 3:01,3/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3439,6/12/2016 3:01,5/08/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3438,6/12/2016 3:00,5/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3436,6/12/2016 3:00,9/06/2015 14:59,6.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-3435,6/12/2016 3:00,1/05/2015 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3427,6/12/2016 3:00,14/05/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3404,6/12/2016 3:00,22/04/2015 22:59,4.0,200, Information Exposure,nan
CVE-2015-3397,6/12/2016 3:00,14/05/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3388,6/12/2016 3:00,21/04/2015 18:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3387,6/12/2016 3:00,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3386,6/12/2016 3:00,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3385,6/12/2016 3:00,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3384,6/12/2016 3:00,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3382,6/12/2016 3:00,21/04/2015 18:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3381,6/12/2016 3:00,21/04/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3380,6/12/2016 3:00,21/04/2015 18:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3376,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3375,6/12/2016 3:00,21/04/2015 16:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3374,6/12/2016 3:00,21/04/2015 16:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3373,6/12/2016 3:00,21/04/2015 16:59,5.0,200, Information Exposure,nan
CVE-2015-3372,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3370,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3369,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3368,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3367,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3366,6/12/2016 3:00,21/04/2015 16:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3365,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3364,6/12/2016 3:00,21/04/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3363,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3362,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3360,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3359,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3356,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3355,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3354,6/12/2016 3:00,21/04/2015 16:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3353,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3352,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3351,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3350,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3349,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3348,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3347,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3346,6/12/2016 3:00,21/04/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3344,6/12/2016 3:00,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3343,6/12/2016 3:00,21/04/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3324,6/12/2016 2:59,16/04/2015 23:59,4.3,310, Cryptographic Issues,nan
CVE-2015-3323,6/12/2016 2:59,16/04/2015 23:59,5.0,20, Improper Input Validation,nan
CVE-2015-3318,6/12/2016 2:59,17/06/2015 10:59,4.6,20, Improper Input Validation,nan
CVE-2015-3317,6/12/2016 2:59,17/06/2015 10:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2012,6/12/2016 2:59,8/02/2016 16:59,2.1,255, Credentials Management,nan
CVE-2014-9687,6/12/2016 2:59,16/03/2015 14:59,5.0,255, Credentials Management,nan
CVE-2014-7872,6/12/2016 2:59,9/06/2015 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-0350,6/12/2016 2:59,26/04/2014 1:55,6.4,310, Cryptographic Issues,nan
CVE-2013-4376,6/12/2016 2:59,9/12/2013 16:36,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-9274,5/12/2016 19:00,11/11/2016 17:59,4.4,426, Untrusted Search Path,nan
CVE-2016-9752,3/12/2016 3:27,1/12/2016 11:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-9564,3/12/2016 3:27,30/11/2016 11:59,5.0,20, Improper Input Validation,nan
CVE-2016-5890,3/12/2016 3:27,30/11/2016 11:59,3.5,255, Credentials Management,nan
CVE-2016-4421,3/12/2016 3:27,1/05/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-4418,3/12/2016 3:27,1/05/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4417,3/12/2016 3:27,1/05/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4085,3/12/2016 3:27,25/04/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-4083,3/12/2016 3:27,25/04/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-4082,3/12/2016 3:27,25/04/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4081,3/12/2016 3:27,25/04/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-4080,3/12/2016 3:27,25/04/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4079,3/12/2016 3:27,25/04/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4078,3/12/2016 3:27,25/04/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-4076,3/12/2016 3:27,25/04/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-4006,3/12/2016 3:27,25/04/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4004,3/12/2016 3:27,12/04/2016 17:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-3158,3/12/2016 3:26,13/04/2016 16:59,1.7,284, Improper Access Control,nan
CVE-2016-3157,3/12/2016 3:26,12/04/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3155,3/12/2016 3:26,18/03/2016 14:59,3.6,200, Information Exposure,nan
CVE-2016-3144,3/12/2016 3:26,15/04/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3126,3/12/2016 3:26,22/04/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2963,3/12/2016 3:26,30/11/2016 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2952,3/12/2016 3:26,30/11/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-2951,3/12/2016 3:26,30/11/2016 11:59,4.3,310, Cryptographic Issues,nan
CVE-2016-2950,3/12/2016 3:26,30/11/2016 11:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2949,3/12/2016 3:26,30/11/2016 11:59,2.1,200, Information Exposure,nan
CVE-2016-2948,3/12/2016 3:26,30/11/2016 11:59,4.6,798, Use of Hard-coded Credentials,nan
CVE-2016-2944,3/12/2016 3:26,30/11/2016 11:59,5.0,287, Improper Authentication,nan
CVE-2016-2943,3/12/2016 3:26,30/11/2016 11:59,1.9,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-2940,3/12/2016 3:26,30/11/2016 11:59,5.0,200, Information Exposure,nan
CVE-2016-2887,3/12/2016 3:26,30/11/2016 20:59,5.5,284, Improper Access Control,nan
CVE-2016-2846,3/12/2016 3:26,16/03/2016 10:59,6.4,254, 7PK – Security Features,nan
CVE-2016-2845,3/12/2016 3:26,6/03/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-2844,3/12/2016 3:26,6/03/2016 2:59,9.3,20, Improper Input Validation,nan
CVE-2016-2789,3/12/2016 3:25,7/04/2016 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2563,3/12/2016 3:25,7/04/2016 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2562,3/12/2016 3:25,1/03/2016 11:59,5.8,20, Improper Input Validation,nan
CVE-2016-2561,3/12/2016 3:25,1/03/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2560,3/12/2016 3:25,1/03/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2559,3/12/2016 3:25,1/03/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2549,3/12/2016 3:25,27/04/2016 17:59,2.1,20, Improper Input Validation,nan
CVE-2016-2511,3/12/2016 3:25,7/04/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2383,3/12/2016 3:25,27/04/2016 17:59,2.1,200, Information Exposure,nan
CVE-2016-2344,3/12/2016 3:25,28/03/2016 23:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2299,3/12/2016 3:24,22/04/2016 0:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2244,3/12/2016 3:24,4/03/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-2243,3/12/2016 3:24,4/03/2016 15:59,5.4,284, Improper Access Control,nan
CVE-2016-2204,3/12/2016 3:24,22/04/2016 18:59,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-2085,3/12/2016 3:24,27/04/2016 17:59,2.1,19, Data Processing Errors,nan
CVE-2016-2075,3/12/2016 3:24,16/03/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2072,3/12/2016 3:24,17/02/2016 15:59,4.3,254, 7PK – Security Features,nan
CVE-2016-2071,3/12/2016 3:24,17/02/2016 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1994,3/12/2016 3:24,18/03/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-1992,3/12/2016 3:24,17/03/2016 14:59,4.0,200, Information Exposure,nan
CVE-2016-1975,3/12/2016 3:23,13/03/2016 18:59,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1971,3/12/2016 3:23,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1970,3/12/2016 3:23,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1969,3/12/2016 3:23,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1968,3/12/2016 3:23,13/03/2016 18:59,6.8,189, Numeric Errors,nan
CVE-2016-1967,3/12/2016 3:23,13/03/2016 18:59,4.3,200, Information Exposure,nan
CVE-2016-1963,3/12/2016 3:23,13/03/2016 18:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-1959,3/12/2016 3:23,13/03/2016 18:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1918,3/12/2016 3:23,22/04/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1917,3/12/2016 3:23,22/04/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1916,3/12/2016 3:23,22/04/2016 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1788,3/12/2016 3:23,24/03/2016 1:59,2.6,310, Cryptographic Issues,nan
CVE-2016-1780,3/12/2016 3:23,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1773,3/12/2016 3:22,24/03/2016 1:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-1770,3/12/2016 3:22,24/03/2016 1:59,4.3,284, Improper Access Control,nan
CVE-2016-1767,3/12/2016 3:22,24/03/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1765,3/12/2016 3:22,24/03/2016 1:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1764,3/12/2016 3:22,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1763,3/12/2016 3:22,24/03/2016 1:59,3.5,20, Improper Input Validation,nan
CVE-2016-1761,3/12/2016 3:22,24/03/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1760,3/12/2016 3:22,29/03/2016 15:59,2.1,284, Improper Access Control,nan
CVE-2016-1759,3/12/2016 3:22,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1758,3/12/2016 3:22,24/03/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-1757,3/12/2016 3:22,24/03/2016 1:59,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1747,3/12/2016 3:22,24/03/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-1746,3/12/2016 3:22,24/03/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-1738,3/12/2016 3:22,24/03/2016 1:59,7.2,254, 7PK – Security Features,nan
CVE-2016-1737,3/12/2016 3:22,24/03/2016 1:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1736,3/12/2016 3:22,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1735,3/12/2016 3:22,24/03/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1734,3/12/2016 3:22,24/03/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1733,3/12/2016 3:22,24/03/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-1732,3/12/2016 3:22,24/03/2016 1:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1731,3/12/2016 3:22,14/03/2016 1:59,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-1643,3/12/2016 3:21,13/03/2016 22:59,9.3,361, 7PK – Time and State,nan
CVE-2016-1640,3/12/2016 3:21,6/03/2016 2:59,4.3,17, DEPRECATED: Code,nan
CVE-2016-1638,3/12/2016 3:21,6/03/2016 2:59,6.8,284, Improper Access Control,nan
CVE-2016-1637,3/12/2016 3:21,6/03/2016 2:59,4.3,200, Information Exposure,nan
CVE-2016-1636,3/12/2016 3:21,6/03/2016 2:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1632,3/12/2016 3:21,6/03/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1631,3/12/2016 3:21,6/03/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1630,3/12/2016 3:21,6/03/2016 2:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1621,3/12/2016 3:21,12/03/2016 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1386,3/12/2016 3:20,28/04/2016 22:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1384,3/12/2016 3:20,20/04/2016 17:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1378,3/12/2016 3:20,14/04/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-1377,3/12/2016 3:20,12/04/2016 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1376,3/12/2016 3:20,12/04/2016 23:59,5.0,20, Improper Input Validation,nan
CVE-2016-1367,3/12/2016 3:20,21/04/2016 11:00,7.8,399, Resource Management Errors,nan
CVE-2016-1366,3/12/2016 3:20,24/03/2016 22:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-1364,3/12/2016 3:20,21/04/2016 11:00,7.8,20, Improper Input Validation,nan
CVE-2016-1363,3/12/2016 3:20,21/04/2016 11:00,10.0,399, Resource Management Errors,nan
CVE-2016-1362,3/12/2016 3:20,21/04/2016 11:00,7.8,399, Resource Management Errors,nan
CVE-2016-1361,3/12/2016 3:20,12/03/2016 2:59,4.6,399, Resource Management Errors,nan
CVE-2016-1360,3/12/2016 3:20,12/03/2016 2:59,3.0,200, Information Exposure,nan
CVE-2016-1356,3/12/2016 3:20,3/03/2016 22:59,4.3,287, Improper Authentication,nan
CVE-2016-1355,3/12/2016 3:20,3/03/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1353,3/12/2016 3:20,1/03/2016 4:59,5.0,399, Resource Management Errors,nan
CVE-2016-1352,3/12/2016 3:20,14/04/2016 1:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-1351,3/12/2016 3:20,26/03/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-1349,3/12/2016 3:20,26/03/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-1348,3/12/2016 3:20,26/03/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-1347,3/12/2016 3:20,24/03/2016 22:59,7.8,399, Resource Management Errors,nan
CVE-2016-1346,3/12/2016 3:20,6/04/2016 23:59,7.1,399, Resource Management Errors,nan
CVE-2016-1345,3/12/2016 3:20,1/04/2016 0:59,5.0,20, Improper Input Validation,nan
CVE-2016-1329,3/12/2016 3:20,3/03/2016 11:59,10.0,287, Improper Authentication,nan
CVE-2016-1327,3/12/2016 3:20,9/03/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1326,3/12/2016 3:20,9/03/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-1325,3/12/2016 3:20,9/03/2016 20:59,7.8,200, Information Exposure,nan
CVE-2016-1314,3/12/2016 3:20,28/03/2016 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1313,3/12/2016 3:20,6/04/2016 23:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1312,3/12/2016 3:20,9/03/2016 20:59,7.8,399, Resource Management Errors,nan
CVE-2016-1271,3/12/2016 3:20,15/04/2016 14:59,7.2,20, Improper Input Validation,nan
CVE-2016-1268,3/12/2016 3:20,15/04/2016 14:59,7.8,20, Improper Input Validation,nan
CVE-2016-1267,3/12/2016 3:20,15/04/2016 14:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1264,3/12/2016 3:20,15/04/2016 14:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1262,3/12/2016 3:20,15/01/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2016-1260,3/12/2016 3:20,15/01/2016 19:59,5.0,399, Resource Management Errors,nan
CVE-2016-1258,3/12/2016 3:20,15/01/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-1257,3/12/2016 3:20,15/01/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2016-1256,3/12/2016 3:20,15/01/2016 19:59,5.0,399, Resource Management Errors,nan
CVE-2016-1036,3/12/2016 3:20,22/04/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1035,3/12/2016 3:20,12/04/2016 23:59,5.0,200, Information Exposure,nan
CVE-2016-1030,3/12/2016 3:19,9/04/2016 1:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1009,3/12/2016 3:19,9/03/2016 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1008,3/12/2016 3:19,9/03/2016 11:59,7.2,20, Improper Input Validation,nan
CVE-2016-1007,3/12/2016 3:19,9/03/2016 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0859,3/12/2016 3:18,15/01/2016 3:59,10.0,189, Numeric Errors,nan
CVE-2016-0858,3/12/2016 3:18,15/01/2016 3:59,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-0857,3/12/2016 3:18,15/01/2016 3:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0856,3/12/2016 3:18,15/01/2016 3:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0855,3/12/2016 3:18,15/01/2016 3:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0774,3/12/2016 3:18,27/04/2016 17:59,5.6,20, Improper Input Validation,nan
CVE-2016-0771,3/12/2016 3:18,13/03/2016 22:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0737,3/12/2016 3:17,29/01/2016 20:59,5.0,399, Resource Management Errors,nan
CVE-2016-0283,3/12/2016 3:16,19/03/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0227,3/12/2016 3:16,3/03/2016 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0226,3/12/2016 3:16,28/03/2016 23:59,6.9,284, Improper Access Control,nan
CVE-2016-0211,3/12/2016 3:16,28/04/2016 1:59,4.0,20, Improper Input Validation,nan
CVE-2015-8791,3/12/2016 3:14,29/01/2016 19:59,4.3,200, Information Exposure,nan
CVE-2015-8604,3/12/2016 3:13,11/04/2016 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8524,3/12/2016 3:13,29/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8154,3/12/2016 3:13,18/03/2016 14:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8153,3/12/2016 3:13,18/03/2016 14:59,8.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8152,3/12/2016 3:13,18/03/2016 14:59,8.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7916,3/12/2016 3:13,6/02/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7915,3/12/2016 3:13,6/02/2016 5:59,10.0,255, Credentials Management,nan
CVE-2015-7914,3/12/2016 3:13,6/02/2016 5:59,9.3,287, Improper Authentication,nan
CVE-2015-7840,3/12/2016 3:13,15/10/2015 20:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7560,3/12/2016 3:13,13/03/2016 22:59,4.0,284, Improper Access Control,nan
CVE-2015-7518,3/12/2016 3:12,17/12/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7454,3/12/2016 3:12,21/03/2016 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7411,3/12/2016 3:12,12/03/2016 2:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7400,3/12/2016 3:12,2/01/2016 21:59,6.8,399, Resource Management Errors,nan
CVE-2015-7362,3/12/2016 3:12,8/01/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7361,3/12/2016 3:12,15/10/2015 20:59,9.3,287, Improper Authentication,nan
CVE-2015-6854,3/12/2016 3:12,24/03/2016 1:59,6.4,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-6853,3/12/2016 3:12,24/03/2016 1:59,6.4,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-6313,3/12/2016 3:11,6/04/2016 23:59,7.8,399, Resource Management Errors,nan
CVE-2015-6312,3/12/2016 3:11,6/04/2016 23:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6260,3/12/2016 3:11,3/03/2016 22:59,7.8,20, Improper Input Validation,nan
CVE-2015-3626,3/12/2016 3:09,11/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3292,3/12/2016 3:09,31/05/2015 17:59,10.0,17, DEPRECATED: Code,nan
CVE-2015-3289,3/12/2016 3:09,14/08/2015 18:59,4.0,399, Resource Management Errors,nan
CVE-2015-3267,3/12/2016 3:09,11/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3240,3/12/2016 3:09,9/11/2015 16:59,4.3,189, Numeric Errors,nan
CVE-2015-3234,3/12/2016 3:09,22/06/2015 19:59,4.3,20, Improper Input Validation,nan
CVE-2015-3231,3/12/2016 3:09,22/06/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-3224,3/12/2016 3:08,26/07/2015 22:59,4.3,284, Improper Access Control,nan
CVE-2015-3205,3/12/2016 3:08,16/06/2015 16:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-3204,3/12/2016 3:08,1/07/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-3141,3/12/2016 3:08,20/05/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3027,3/12/2016 3:07,10/04/2015 15:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3011,3/12/2016 3:07,8/05/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3010,3/12/2016 3:07,16/06/2015 16:59,2.1,200, Information Exposure,nan
CVE-2015-3005,3/12/2016 3:07,10/04/2015 15:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3004,3/12/2016 3:07,10/04/2015 15:00,4.3,20, Improper Input Validation,nan
CVE-2015-3003,3/12/2016 3:07,10/04/2015 15:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-3002,3/12/2016 3:07,10/04/2015 15:00,6.9,17, DEPRECATED: Code,nan
CVE-2015-2965,3/12/2016 3:07,28/06/2015 19:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2964,3/12/2016 3:07,5/07/2015 1:59,5.0,20, Improper Input Validation,nan
CVE-2015-2963,3/12/2016 3:07,10/07/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2962,3/12/2016 3:07,13/06/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-2958,3/12/2016 3:07,13/06/2015 15:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-2957,3/12/2016 3:07,13/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2956,3/12/2016 3:07,13/06/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2955,3/12/2016 3:07,13/06/2015 14:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2954,3/12/2016 3:07,13/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2953,3/12/2016 3:07,13/06/2015 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2952,3/12/2016 3:07,13/06/2015 15:59,6.5,284, Improper Access Control,nan
CVE-2015-2951,3/12/2016 3:07,5/06/2015 10:59,5.0,20, Improper Input Validation,nan
CVE-2015-2950,3/12/2016 3:07,5/06/2015 10:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2949,3/12/2016 3:07,31/05/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2948,3/12/2016 3:07,31/05/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2946,3/12/2016 3:07,25/05/2015 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2944,3/12/2016 3:07,2/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2861,3/12/2016 3:07,18/06/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2860,3/12/2016 3:07,23/06/2015 16:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2859,3/12/2016 3:07,23/06/2015 21:59,5.8,310, Cryptographic Issues,nan
CVE-2015-2855,3/12/2016 3:07,30/05/2015 19:59,4.3,200, Information Exposure,nan
CVE-2015-2854,3/12/2016 3:07,30/05/2015 19:59,4.3,20, Improper Input Validation,nan
CVE-2015-2852,3/12/2016 3:07,30/05/2015 19:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2851,3/12/2016 3:07,30/05/2015 19:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-2846,3/12/2016 3:07,13/04/2015 14:59,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2841,3/12/2016 3:06,3/04/2015 14:59,5.0,284, Improper Access Control,nan
CVE-2015-2831,3/12/2016 3:06,14/04/2015 18:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2821,3/12/2016 3:06,1/04/2015 14:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2810,3/12/2016 3:06,15/05/2015 22:59,7.5,189, Numeric Errors,nan
CVE-2015-2797,3/12/2016 3:06,19/06/2015 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2790,3/12/2016 3:06,30/03/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-2788,3/12/2016 3:06,14/04/2015 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2779,3/12/2016 3:06,10/04/2015 15:00,5.0,399, Resource Management Errors,nan
CVE-2015-2778,3/12/2016 3:06,10/04/2015 15:00,5.0,399, Resource Management Errors,nan
CVE-2015-2776,3/12/2016 3:06,31/03/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-2771,3/12/2016 3:06,27/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2768,3/12/2016 3:06,27/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2766,3/12/2016 3:06,27/03/2015 14:59,5.0,255, Credentials Management,nan
CVE-2015-2765,3/12/2016 3:06,27/03/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-2764,3/12/2016 3:06,27/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2762,3/12/2016 3:06,27/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2761,3/12/2016 3:06,27/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2760,3/12/2016 3:06,27/03/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2759,3/12/2016 3:05,27/03/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2758,3/12/2016 3:05,27/03/2015 14:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2757,3/12/2016 3:05,27/03/2015 14:59,4.0,399, Resource Management Errors,nan
CVE-2015-2753,3/12/2016 3:05,31/03/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-2704,3/12/2016 3:05,18/05/2015 15:59,5.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-2701,3/12/2016 3:05,25/03/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2684,3/12/2016 3:05,31/03/2015 14:59,4.0,20, Improper Input Validation,nan
CVE-2015-2681,3/12/2016 3:05,23/03/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2680,3/12/2016 3:05,23/03/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2679,3/12/2016 3:05,23/03/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2678,3/12/2016 3:05,23/03/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2676,3/12/2016 3:05,23/03/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2562,3/12/2016 3:05,20/03/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2344,3/12/2016 3:05,16/03/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2335,3/12/2016 3:04,18/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2334,3/12/2016 3:04,18/03/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2333,3/12/2016 3:04,18/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2332,3/12/2016 3:04,18/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2323,3/12/2016 3:04,11/08/2015 14:59,6.4,310, Cryptographic Issues,nan
CVE-2015-2308,3/12/2016 3:04,24/06/2015 10:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-2292,3/12/2016 3:04,17/03/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2241,3/12/2016 3:04,12/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2239,3/12/2016 3:04,9/03/2015 0:59,4.3,19, Data Processing Errors,nan
CVE-2015-2233,3/12/2016 3:04,12/05/2015 19:59,8.3,310, Cryptographic Issues,nan
CVE-2015-2219,3/12/2016 3:04,12/05/2015 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2218,3/12/2016 3:04,5/03/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2216,3/12/2016 3:04,5/03/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2214,3/12/2016 3:04,5/03/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-2209,3/12/2016 3:04,4/03/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-2171,3/12/2016 3:04,30/03/2015 14:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-2169,3/12/2016 3:04,24/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2166,3/12/2016 3:04,6/04/2015 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2122,3/12/2016 3:04,25/05/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-2121,3/12/2016 3:04,25/05/2015 17:59,7.8,200, Information Exposure,nan
CVE-2015-2117,3/12/2016 3:04,27/04/2015 12:59,7.5,287, Improper Authentication,nan
CVE-2015-1191,3/12/2016 3:03,21/01/2015 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1127,3/12/2016 3:03,10/04/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-0718,3/12/2016 3:02,3/03/2016 22:59,7.8,399, Resource Management Errors,nan
CVE-2015-0125,3/12/2016 3:02,18/03/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0124,3/12/2016 3:02,18/03/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0123,3/12/2016 3:02,13/03/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0122,3/12/2016 3:02,13/03/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9769,3/12/2016 3:02,28/03/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9766,3/12/2016 3:02,13/04/2016 14:59,7.5,189, Numeric Errors,nan
CVE-2014-9759,3/12/2016 3:02,11/04/2016 21:59,5.0,200, Information Exposure,nan
CVE-2014-9604,3/12/2016 3:02,16/01/2015 20:59,7.5,189, Numeric Errors,nan
CVE-2014-9603,3/12/2016 3:02,16/01/2015 20:59,7.5,20, Improper Input Validation,nan
CVE-2014-9602,3/12/2016 3:02,16/01/2015 20:59,7.5,189, Numeric Errors,nan
CVE-2014-9319,3/12/2016 3:02,9/12/2014 23:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9318,3/12/2016 3:02,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9316,3/12/2016 3:02,9/12/2014 23:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9093,3/12/2016 3:02,26/11/2014 15:59,7.5,20, Improper Input Validation,nan
CVE-2014-8549,3/12/2016 3:02,5/11/2014 11:55,7.5,189, Numeric Errors,nan
CVE-2014-8548,3/12/2016 3:01,5/11/2014 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8547,3/12/2016 3:01,5/11/2014 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8546,3/12/2016 3:01,5/11/2014 11:55,7.5,189, Numeric Errors,nan
CVE-2014-8545,3/12/2016 3:01,5/11/2014 11:55,7.5,189, Numeric Errors,nan
CVE-2014-8544,3/12/2016 3:01,5/11/2014 11:55,7.5,20, Improper Input Validation,nan
CVE-2014-8543,3/12/2016 3:01,5/11/2014 11:55,7.5,20, Improper Input Validation,nan
CVE-2014-8541,3/12/2016 3:01,5/11/2014 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5272,3/12/2016 3:01,3/11/2014 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5271,3/12/2016 3:01,3/11/2014 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3620,3/12/2016 3:01,18/11/2014 15:59,5.0,310, Cryptographic Issues,nan
CVE-2014-2972,3/12/2016 3:01,4/09/2014 17:55,4.6,189, Numeric Errors,nan
CVE-2014-2098,3/12/2016 3:01,2/03/2014 4:57,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2097,3/12/2016 3:01,2/03/2014 4:57,6.8,20, Improper Input Validation,nan
CVE-2013-7041,3/12/2016 3:00,8/05/2014 14:29,4.3,310, Cryptographic Issues,nan
CVE-2013-7024,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7023,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7022,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7021,3/12/2016 3:00,9/12/2013 16:36,6.8,399, Resource Management Errors,nan
CVE-2013-7019,3/12/2016 3:00,9/12/2013 16:36,6.8,20, Improper Input Validation,nan
CVE-2013-7018,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7016,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7015,3/12/2016 3:00,9/12/2013 16:36,6.8,20, Improper Input Validation,nan
CVE-2013-7014,3/12/2016 3:00,9/12/2013 16:36,6.8,189, Numeric Errors,nan
CVE-2013-7013,3/12/2016 3:00,9/12/2013 16:36,6.8,189, Numeric Errors,nan
CVE-2013-7012,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7011,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7010,3/12/2016 3:00,9/12/2013 16:36,6.8,189, Numeric Errors,nan
CVE-2013-7009,3/12/2016 3:00,9/12/2013 16:36,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4264,3/12/2016 3:00,23/11/2013 17:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4263,3/12/2016 3:00,23/11/2013 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0878,3/12/2016 3:00,23/11/2013 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0877,3/12/2016 3:00,23/11/2013 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0876,3/12/2016 3:00,23/11/2013 17:55,9.3,189, Numeric Errors,nan
CVE-2013-0875,3/12/2016 3:00,23/11/2013 17:55,9.3,189, Numeric Errors,nan
CVE-2013-0874,3/12/2016 3:00,23/11/2013 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0873,3/12/2016 3:00,23/11/2013 17:55,10.0,20, Improper Input Validation,nan
CVE-2013-0872,3/12/2016 3:00,23/11/2013 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0868,3/12/2016 3:00,23/11/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0867,3/12/2016 3:00,23/11/2013 18:55,9.3,20, Improper Input Validation,nan
CVE-2013-0866,3/12/2016 3:00,23/11/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0865,3/12/2016 3:00,23/11/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0864,3/12/2016 3:00,23/11/2013 18:55,10.0,189, Numeric Errors,nan
CVE-2013-0863,3/12/2016 3:00,23/11/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0862,3/12/2016 3:00,23/11/2013 18:55,9.3,189, Numeric Errors,nan
CVE-2013-0861,3/12/2016 3:00,23/11/2013 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0860,3/12/2016 3:00,23/11/2013 18:55,4.3,20, Improper Input Validation,nan
CVE-2012-4245,3/12/2016 2:59,31/08/2012 18:55,6.8,287, Improper Authentication,nan
CVE-2012-2091,3/12/2016 2:59,17/06/2012 3:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4868,3/12/2016 2:59,15/01/2012 3:55,6.1,399, Resource Management Errors,nan
CVE-2016-8503,2/12/2016 23:59,26/10/2016 18:59,5.0,254, 7PK – Security Features,nan
CVE-2016-8343,2/12/2016 23:59,5/10/2016 10:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-8502,2/12/2016 23:55,26/10/2016 18:59,5.0,254, 7PK – Security Features,nan
CVE-2016-8501,2/12/2016 23:53,26/10/2016 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8504,2/12/2016 23:51,26/10/2016 18:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8506,2/12/2016 23:48,26/10/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8505,2/12/2016 23:48,26/10/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7990,2/12/2016 23:38,31/10/2016 10:59,10.0,388, 7PK – Errors,nan
CVE-2016-8279,2/12/2016 23:37,26/09/2016 14:59,7.1,284, Improper Access Control,nan
CVE-2016-8101,2/12/2016 23:37,10/10/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8100,2/12/2016 23:37,10/10/2016 16:59,2.1,200, Information Exposure,nan
CVE-2016-7991,2/12/2016 23:37,31/10/2016 10:59,7.8,388, 7PK – Errors,nan
CVE-2016-7453,2/12/2016 23:19,3/11/2016 10:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7490,2/12/2016 23:18,10/11/2016 16:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-7505,2/12/2016 23:17,29/10/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7504,2/12/2016 23:17,29/10/2016 1:59,7.5,416, Use After Free,nan
CVE-2016-7489,2/12/2016 23:17,10/11/2016 16:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7560,2/12/2016 23:15,5/10/2016 16:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-7506,2/12/2016 23:15,29/10/2016 1:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-7919,2/12/2016 23:13,28/10/2016 15:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-7917,2/12/2016 23:13,16/11/2016 5:59,4.3,200, Information Exposure,nan
CVE-2016-7561,2/12/2016 23:13,5/10/2016 16:59,4.0,200, Information Exposure,nan
CVE-2016-7988,2/12/2016 23:09,31/10/2016 10:59,7.8,388, 7PK – Errors,nan
CVE-2016-7964,2/12/2016 23:09,31/10/2016 10:59,4.3,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-4092,2/12/2016 23:09,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7989,2/12/2016 23:05,31/10/2016 10:59,7.8,254, 7PK – Security Features,nan
CVE-2016-7488,2/12/2016 23:05,10/11/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4567,2/12/2016 23:01,22/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4566,2/12/2016 22:56,22/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1820,2/12/2016 22:49,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1850,2/12/2016 22:46,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1825,2/12/2016 22:45,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1822,2/12/2016 22:40,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1852,2/12/2016 22:39,20/05/2016 11:00,2.1,200, Information Exposure,nan
CVE-2016-1853,2/12/2016 22:38,20/05/2016 11:00,5.0,200, Information Exposure,nan
CVE-2016-4091,2/12/2016 22:15,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8579,2/12/2016 22:08,28/10/2016 15:59,2.1,399, Resource Management Errors,nan
CVE-2016-3033,2/12/2016 10:45,1/12/2016 11:59,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-5393,1/12/2016 20:29,29/11/2016 6:59,6.5,284, Improper Access Control,nan
CVE-2016-4098,1/12/2016 20:29,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4093,1/12/2016 20:29,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4090,1/12/2016 20:29,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4089,1/12/2016 20:29,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4088,1/12/2016 20:29,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4097,1/12/2016 20:28,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4096,1/12/2016 20:28,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4094,1/12/2016 20:28,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4101,1/12/2016 20:26,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4104,1/12/2016 20:25,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4100,1/12/2016 20:25,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4099,1/12/2016 20:25,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4105,1/12/2016 20:22,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4103,1/12/2016 20:22,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1842,1/12/2016 19:56,20/05/2016 10:59,5.0,284, Improper Access Control,nan
CVE-2016-5685,1/12/2016 19:54,29/11/2016 15:59,9.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-1844,1/12/2016 19:54,20/05/2016 10:59,5.0,284, Improper Access Control,nan
CVE-2016-1843,1/12/2016 19:54,20/05/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-2946,1/12/2016 19:42,1/12/2016 11:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2917,1/12/2016 19:24,30/11/2016 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3012,1/12/2016 18:50,1/12/2016 11:59,5.0,200, Information Exposure,nan
CVE-2016-2881,1/12/2016 18:39,30/11/2016 20:59,6.4,254, 7PK – Security Features,nan
CVE-2016-2884,1/12/2016 18:06,30/11/2016 20:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3047,1/12/2016 16:27,1/12/2016 11:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-3055,1/12/2016 16:23,1/12/2016 11:59,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-2991,1/12/2016 15:21,1/12/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2955,1/12/2016 15:16,1/12/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4534,1/12/2016 3:10,5/05/2016 18:59,3.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-4480,1/12/2016 3:10,18/05/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3994,1/12/2016 3:10,13/05/2016 16:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3993,1/12/2016 3:10,13/05/2016 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3659,1/12/2016 3:10,11/04/2016 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-3185,1/12/2016 3:09,16/05/2016 10:59,6.4,20, Improper Input Validation,nan
CVE-2016-3172,1/12/2016 3:09,12/04/2016 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2208,1/12/2016 3:08,19/05/2016 10:59,9.4,399, Resource Management Errors,nan
CVE-2016-2077,1/12/2016 3:08,18/05/2016 14:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2062,1/12/2016 3:08,5/05/2016 21:59,9.3,20, Improper Input Validation,nan
CVE-2016-2059,1/12/2016 3:08,5/05/2016 21:59,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-2025,1/12/2016 3:08,30/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2023,1/12/2016 3:08,30/05/2016 1:59,2.1,200, Information Exposure,nan
CVE-2016-2016,1/12/2016 3:08,14/05/2016 15:59,2.1,284, Improper Access Control,nan
CVE-2016-2015,1/12/2016 3:08,14/05/2016 15:59,6.6,200, Information Exposure,nan
CVE-2016-2014,1/12/2016 3:08,7/05/2016 10:59,8.5,284, Improper Access Control,nan
CVE-2016-2013,1/12/2016 3:08,7/05/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-2012,1/12/2016 3:08,7/05/2016 10:59,7.5,287, Improper Authentication,nan
CVE-2016-2011,1/12/2016 3:08,7/05/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2010,1/12/2016 3:08,7/05/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2009,1/12/2016 3:08,7/05/2016 10:59,6.5,284, Improper Access Control,nan
CVE-2016-2000,1/12/2016 3:08,5/04/2016 18:59,7.5,19, Data Processing Errors,nan
CVE-2016-1999,1/12/2016 3:08,30/05/2016 1:59,10.0,284, Improper Access Control,nan
CVE-2016-1998,1/12/2016 3:08,22/03/2016 10:59,10.0,20, Improper Input Validation,nan
CVE-2016-1997,1/12/2016 3:08,22/03/2016 10:59,10.0,20, Improper Input Validation,nan
CVE-2016-1986,1/12/2016 3:08,12/02/2016 1:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-1849,1/12/2016 3:07,20/05/2016 11:00,2.1,200, Information Exposure,nan
CVE-2016-1848,1/12/2016 3:07,20/05/2016 11:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1846,1/12/2016 3:07,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1815,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1812,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1810,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1806,1/12/2016 3:06,20/05/2016 10:59,9.3,284, Improper Access Control,nan
CVE-2016-1805,1/12/2016 3:06,20/05/2016 10:59,9.3,284, Improper Access Control,nan
CVE-2016-1804,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1800,1/12/2016 3:06,20/05/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2016-1799,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1797,1/12/2016 3:06,20/05/2016 10:59,9.3,284, Improper Access Control,nan
CVE-2016-1796,1/12/2016 3:06,20/05/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-1795,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1792,1/12/2016 3:06,20/05/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1791,1/12/2016 3:06,20/05/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-1790,1/12/2016 3:06,20/05/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1742,1/12/2016 3:06,20/05/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1671,1/12/2016 3:06,14/05/2016 21:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1601,1/12/2016 3:05,26/04/2016 14:59,10.0,255, Credentials Management,nan
CVE-2016-1410,1/12/2016 3:05,28/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-1407,1/12/2016 3:05,25/05/2016 1:59,5.0,20, Improper Input Validation,nan
CVE-2016-1404,1/12/2016 3:05,29/05/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-1402,1/12/2016 3:05,21/05/2016 1:59,5.0,287, Improper Authentication,nan
CVE-2016-1401,1/12/2016 3:05,21/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1400,1/12/2016 3:05,25/05/2016 1:59,5.0,20, Improper Input Validation,nan
CVE-2016-1399,1/12/2016 3:05,14/05/2016 1:59,5.0,399, Resource Management Errors,nan
CVE-2016-1387,1/12/2016 3:05,5/05/2016 21:59,9.0,287, Improper Authentication,nan
CVE-2016-1385,1/12/2016 3:05,26/05/2016 15:59,6.8,399, Resource Management Errors,nan
CVE-2016-1383,1/12/2016 3:05,25/05/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-1382,1/12/2016 3:05,25/05/2016 1:59,7.8,20, Improper Input Validation,nan
CVE-2016-1381,1/12/2016 3:05,25/05/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-1380,1/12/2016 3:05,25/05/2016 1:59,7.8,20, Improper Input Validation,nan
CVE-2016-1369,1/12/2016 3:05,5/05/2016 21:59,7.8,399, Resource Management Errors,nan
CVE-2016-1130,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1129,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1128,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1127,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1126,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1125,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1124,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1123,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1120,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1119,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1118,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1117,1/12/2016 3:05,11/05/2016 11:00,10.0,284, Improper Access Control,nan
CVE-2016-1116,1/12/2016 3:05,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1115,1/12/2016 3:05,11/05/2016 1:59,5.8,20, Improper Input Validation,nan
CVE-2016-1113,1/12/2016 3:04,11/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1112,1/12/2016 3:04,11/05/2016 11:00,10.0,200, Information Exposure,nan
CVE-2016-1095,1/12/2016 3:04,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1093,1/12/2016 3:04,11/05/2016 11:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1092,1/12/2016 3:04,11/05/2016 11:00,5.0,200, Information Exposure,nan
CVE-2016-1088,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1086,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1085,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1084,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1083,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1082,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1081,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1080,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1079,1/12/2016 3:04,11/05/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-1078,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1076,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1074,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1073,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1072,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1071,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1064,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1063,1/12/2016 3:04,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1062,1/12/2016 3:04,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1044,1/12/2016 3:03,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1043,1/12/2016 3:03,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1042,1/12/2016 3:03,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1041,1/12/2016 3:03,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1040,1/12/2016 3:03,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1039,1/12/2016 3:03,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1038,1/12/2016 3:03,11/05/2016 10:59,10.0,284, Improper Access Control,nan
CVE-2016-1037,1/12/2016 3:03,11/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0901,1/12/2016 3:03,7/05/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0900,1/12/2016 3:03,7/05/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0895,1/12/2016 3:03,3/05/2016 15:59,4.3,20, Improper Input Validation,nan
CVE-2016-0894,1/12/2016 3:03,3/05/2016 15:59,6.5,254, 7PK – Security Features,nan
CVE-2016-0893,1/12/2016 3:03,3/05/2016 15:59,4.0,200, Information Exposure,nan
CVE-2016-0892,1/12/2016 3:03,3/05/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0821,1/12/2016 3:03,12/03/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0381,1/12/2016 3:02,15/05/2016 1:59,4.0,20, Improper Input Validation,nan
CVE-2015-8838,1/12/2016 3:01,16/05/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2015-8466,1/12/2016 3:01,13/01/2016 15:59,5.8,20, Improper Input Validation,nan
CVE-2015-6864,1/12/2016 3:01,16/01/2016 5:59,6.5,20, Improper Input Validation,nan
CVE-2015-6863,1/12/2016 3:01,16/01/2016 5:59,7.5,20, Improper Input Validation,nan
CVE-2015-6552,1/12/2016 3:01,7/05/2016 14:59,10.0,284, Improper Access Control,nan
CVE-2015-6551,1/12/2016 3:01,7/05/2016 14:59,4.3,200, Information Exposure,nan
CVE-2015-6550,1/12/2016 3:00,7/05/2016 14:59,10.0,284, Improper Access Control,nan
CVE-2015-1339,1/12/2016 2:59,27/04/2016 17:59,4.9,399, Resource Management Errors,nan
CVE-2011-5326,1/12/2016 2:59,13/05/2016 16:59,5.0,189, Numeric Errors,nan
CVE-2016-5987,30/11/2016 21:02,30/11/2016 11:59,5.0,20, Improper Input Validation,nan
CVE-2016-5905,30/11/2016 20:40,30/11/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2953,30/11/2016 20:35,30/11/2016 11:59,4.3,310, Cryptographic Issues,nan
CVE-2016-3004,30/11/2016 20:19,30/11/2016 11:59,4.9,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3057,30/11/2016 18:45,30/11/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3009,30/11/2016 18:43,30/11/2016 11:59,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3002,30/11/2016 18:42,30/11/2016 11:59,2.1,200, Information Exposure,nan
CVE-2016-2957,30/11/2016 18:41,30/11/2016 11:59,4.0,200, Information Exposure,nan
CVE-2016-9313,30/11/2016 3:07,28/11/2016 3:59,9.3,476, NULL Pointer Dereference,nan
CVE-2016-5838,30/11/2016 3:07,29/06/2016 14:10,5.0,255, Credentials Management,nan
CVE-2016-5835,30/11/2016 3:07,29/06/2016 14:10,5.0,200, Information Exposure,nan
CVE-2016-5834,30/11/2016 3:07,29/06/2016 14:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5833,30/11/2016 3:07,29/06/2016 14:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5709,30/11/2016 3:07,24/06/2016 17:59,1.9,200, Information Exposure,nan
CVE-2016-4810,30/11/2016 3:07,1/06/2016 22:59,5.0,284, Improper Access Control,nan
CVE-2016-4555,30/11/2016 3:07,10/05/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-4554,30/11/2016 3:06,10/05/2016 19:59,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-4553,30/11/2016 3:06,10/05/2016 19:59,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-4159,30/11/2016 3:06,16/06/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4054,30/11/2016 3:06,25/04/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4053,30/11/2016 3:06,25/04/2016 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4052,30/11/2016 3:06,25/04/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4051,30/11/2016 3:06,25/04/2016 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3941,30/11/2016 3:05,18/04/2016 15:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2929,30/11/2016 3:05,25/11/2016 20:59,4.3,284, Improper Access Control,nan
CVE-2016-2928,30/11/2016 3:05,25/11/2016 20:59,4.0,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-2927,30/11/2016 3:05,25/11/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-2494,30/11/2016 3:05,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2298,30/11/2016 3:04,14/05/2016 16:59,10.0,200, Information Exposure,nan
CVE-2016-2295,30/11/2016 3:04,31/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2286,30/11/2016 3:04,31/05/2016 1:59,5.0,287, Improper Authentication,nan
CVE-2016-2285,30/11/2016 3:04,31/05/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1861,30/11/2016 3:04,19/06/2016 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1439,30/11/2016 3:04,23/06/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1437,30/11/2016 3:04,23/06/2016 0:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1436,30/11/2016 3:04,23/06/2016 0:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1435,30/11/2016 3:04,23/06/2016 0:59,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1434,30/11/2016 3:04,23/06/2016 0:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1427,30/11/2016 3:04,18/06/2016 1:59,5.0,287, Improper Authentication,nan
CVE-2016-1396,30/11/2016 3:04,19/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1395,30/11/2016 3:04,19/06/2016 1:59,10.0,20, Improper Input Validation,nan
CVE-2016-1388,30/11/2016 3:04,3/06/2016 2:01,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-1226,30/11/2016 3:03,19/06/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1225,30/11/2016 3:03,19/06/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-0349,30/11/2016 3:02,30/06/2016 1:59,4.0,284, Improper Access Control,nan
CVE-2016-0285,30/11/2016 3:02,24/11/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0284,30/11/2016 3:02,24/11/2016 19:59,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-0273,30/11/2016 3:02,24/11/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0259,30/11/2016 3:02,26/06/2016 14:59,2.1,200, Information Exposure,nan
CVE-2015-8710,30/11/2016 3:02,11/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7473,30/11/2016 3:02,26/06/2016 14:59,2.1,284, Improper Access Control,nan
CVE-2015-7462,30/11/2016 3:02,19/06/2016 20:59,2.1,255, Credentials Management,nan
CVE-2015-2114,30/11/2016 3:01,14/04/2015 22:59,6.8,254, 7PK – Security Features,nan
CVE-2015-2108,30/11/2016 3:01,31/03/2015 10:59,3.5,200, Information Exposure,nan
CVE-2015-2097,30/11/2016 3:01,9/03/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2095,30/11/2016 3:01,9/03/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2094,30/11/2016 3:01,9/03/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2093,30/11/2016 3:01,9/03/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2090,30/11/2016 3:01,26/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2089,30/11/2016 3:01,26/02/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2084,30/11/2016 3:00,25/02/2015 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2083,30/11/2016 3:00,25/02/2015 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2071,30/11/2016 3:00,24/02/2015 17:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2070,30/11/2016 3:00,24/02/2015 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2069,30/11/2016 3:00,24/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2068,30/11/2016 3:00,24/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2067,30/11/2016 3:00,24/02/2015 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2065,30/11/2016 3:00,24/02/2015 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2061,30/11/2016 3:00,9/03/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2058,30/11/2016 3:00,12/08/2015 14:59,6.5,200, Information Exposure,nan
CVE-2015-2055,30/11/2016 3:00,23/02/2015 17:59,7.8,20, Improper Input Validation,nan
CVE-2015-2053,30/11/2016 3:00,23/02/2015 17:59,4.3,20, Improper Input Validation,nan
CVE-2015-2047,30/11/2016 3:00,23/02/2015 17:59,2.6,287, Improper Authentication,nan
CVE-2015-2035,30/11/2016 3:00,20/02/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2034,30/11/2016 3:00,20/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2033,30/11/2016 3:00,20/02/2015 11:59,10.0,287, Improper Authentication,nan
CVE-2015-1984,30/11/2016 3:00,20/07/2015 1:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1982,30/11/2016 3:00,20/07/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-1980,30/11/2016 3:00,20/07/2015 1:59,3.5,20, Improper Input Validation,nan
CVE-2015-1979,30/11/2016 3:00,20/07/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1968,30/11/2016 3:00,20/07/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1951,30/11/2016 3:00,1/07/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-1950,30/11/2016 3:00,1/07/2015 10:59,4.6,255, Credentials Management,nan
CVE-2015-1937,30/11/2016 3:00,30/05/2015 19:59,7.5,284, Improper Access Control,nan
CVE-2015-1936,30/11/2016 3:00,14/07/2015 17:59,6.0,284, Improper Access Control,nan
CVE-2015-1919,30/11/2016 3:00,30/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1915,30/11/2016 3:00,25/05/2015 0:59,4.3,200, Information Exposure,nan
CVE-2015-1913,30/11/2016 3:00,30/06/2015 10:59,5.0,310, Cryptographic Issues,nan
CVE-2015-1911,30/11/2016 3:00,25/05/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1908,30/11/2016 2:59,27/04/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1907,30/11/2016 2:59,8/05/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-1901,30/11/2016 2:59,28/06/2015 14:59,1.9,200, Information Exposure,nan
CVE-2015-1796,30/11/2016 2:59,8/07/2015 15:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1358,30/11/2016 2:59,18/02/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2015-1000011,30/11/2016 2:59,6/10/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1000010,30/11/2016 2:59,6/10/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2013-6501,30/11/2016 2:59,30/03/2015 10:59,4.6,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2016-8878,29/11/2016 19:27,31/10/2016 10:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-8877,29/11/2016 19:27,31/10/2016 10:59,6.8,787, Out-of-bounds Write,nan
CVE-2016-8876,29/11/2016 19:27,31/10/2016 10:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-8906,29/11/2016 19:26,14/11/2016 23:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8875,29/11/2016 19:26,31/10/2016 10:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-8905,29/11/2016 19:25,14/11/2016 23:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8904,29/11/2016 19:24,14/11/2016 23:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8903,29/11/2016 19:22,14/11/2016 23:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8902,29/11/2016 19:22,14/11/2016 23:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9018,29/11/2016 19:20,28/10/2016 15:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-8907,29/11/2016 19:20,14/11/2016 23:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-8871,29/11/2016 19:20,28/10/2016 15:59,2.1,200, Information Exposure,nan
CVE-2016-8908,29/11/2016 19:18,14/11/2016 23:20,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9017,29/11/2016 19:16,28/10/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-8889,29/11/2016 19:16,28/10/2016 15:59,2.1,310, Cryptographic Issues,nan
CVE-2016-9134,29/11/2016 19:15,3/11/2016 10:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9086,29/11/2016 19:15,3/11/2016 10:59,4.0,200, Information Exposure,nan
CVE-2016-8879,29/11/2016 19:15,31/10/2016 10:59,4.3,787, Out-of-bounds Write,nan
CVE-2016-9136,29/11/2016 19:08,3/11/2016 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9135,29/11/2016 19:08,3/11/2016 10:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9176,29/11/2016 19:06,4/11/2016 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-9184,29/11/2016 18:38,4/11/2016 10:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9450,29/11/2016 18:37,25/11/2016 18:59,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-9183,29/11/2016 18:37,4/11/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-9182,29/11/2016 18:37,4/11/2016 10:59,5.0,284, Improper Access Control,nan
CVE-2016-9186,29/11/2016 18:36,4/11/2016 10:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-9188,29/11/2016 18:29,4/11/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9187,29/11/2016 18:27,4/11/2016 10:59,6.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-9272,29/11/2016 18:24,11/11/2016 11:59,6.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9268,29/11/2016 18:24,10/11/2016 20:59,9.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-9242,29/11/2016 18:23,7/11/2016 11:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-9277,29/11/2016 18:22,11/11/2016 19:59,7.8,190, Integer Overflow or Wraparound,nan
CVE-2016-9567,29/11/2016 18:05,23/11/2016 11:59,4.3,200, Information Exposure,nan
CVE-2016-9296,29/11/2016 18:03,12/11/2016 2:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9294,29/11/2016 18:03,12/11/2016 0:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-9287,29/11/2016 18:02,15/11/2016 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0319,29/11/2016 17:09,25/11/2016 20:59,5.0,284, Improper Access Control,nan
CVE-2016-9452,29/11/2016 15:48,25/11/2016 18:59,4.3,20, Improper Input Validation,nan
CVE-2016-0317,29/11/2016 0:03,25/11/2016 20:59,4.3,284, Improper Access Control,nan
CVE-2016-0318,29/11/2016 0:02,25/11/2016 20:59,6.0,284, Improper Access Control,nan
CVE-2016-0316,28/11/2016 23:38,25/11/2016 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-9178,28/11/2016 22:06,28/11/2016 3:59,2.1,200, Information Exposure,nan
CVE-2016-8661,28/11/2016 20:41,15/11/2016 15:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8660,28/11/2016 20:41,16/10/2016 21:59,4.9,19, Data Processing Errors,nan
CVE-2016-8632,28/11/2016 20:40,28/11/2016 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-8600,28/11/2016 20:40,28/10/2016 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8598,28/11/2016 20:40,28/10/2016 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8597,28/11/2016 20:40,28/10/2016 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8596,28/11/2016 20:40,28/10/2016 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8583,28/11/2016 20:40,28/10/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-8335,28/11/2016 20:40,28/10/2016 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-8333,28/11/2016 20:40,28/10/2016 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7965,28/11/2016 20:40,31/10/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-7912,28/11/2016 20:39,16/11/2016 5:59,9.3,416, Use After Free,nan
CVE-2016-7911,28/11/2016 20:39,16/11/2016 5:59,9.3,416, Use After Free,nan
CVE-2016-7854,28/11/2016 20:39,21/10/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7853,28/11/2016 20:39,21/10/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7852,28/11/2016 20:39,21/10/2016 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7435,28/11/2016 20:39,5/10/2016 16:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7420,28/11/2016 20:39,16/09/2016 5:59,4.3,200, Information Exposure,nan
CVE-2016-7402,28/11/2016 20:39,3/11/2016 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-7389,28/11/2016 20:38,8/11/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7160,28/11/2016 20:37,3/11/2016 10:59,7.8,476, NULL Pointer Dereference,nan
CVE-2016-7143,28/11/2016 20:37,21/09/2016 14:25,6.8,285, Improper Authorization,nan
CVE-2016-7119,28/11/2016 20:37,31/08/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7118,28/11/2016 20:37,31/08/2016 14:59,4.9,476, NULL Pointer Dereference,nan
CVE-2016-7115,28/11/2016 20:37,30/08/2016 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7090,28/11/2016 20:37,29/09/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-7089,28/11/2016 20:37,24/08/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-7040,28/11/2016 20:37,7/10/2016 14:59,9.0,284, Improper Access Control,nan
CVE-2016-7031,28/11/2016 20:36,3/10/2016 18:59,4.3,254, 7PK – Security Features,nan
CVE-2016-6935,28/11/2016 20:35,13/10/2016 19:59,7.2,428, Unquoted Search Path or Element,nan
CVE-2016-6753,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6752,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6751,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6750,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6749,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6748,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6747,28/11/2016 20:35,25/11/2016 16:59,7.1,284, Improper Access Control,nan
CVE-2016-6746,28/11/2016 20:35,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-6745,28/11/2016 20:35,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6744,28/11/2016 20:35,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6743,28/11/2016 20:35,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6742,28/11/2016 20:35,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6741,28/11/2016 20:35,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6740,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6739,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6738,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6737,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6736,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6735,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6734,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6733,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6732,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6731,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6730,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6729,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6728,28/11/2016 20:34,25/11/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6725,28/11/2016 20:34,25/11/2016 16:59,10.0,284, Improper Access Control,nan
CVE-2016-6674,28/11/2016 20:33,10/10/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2016-6673,28/11/2016 20:33,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6672,28/11/2016 20:33,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-6669,28/11/2016 20:33,22/09/2016 15:59,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6653,28/11/2016 20:33,6/10/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-6651,28/11/2016 20:33,30/09/2016 0:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-6643,28/11/2016 20:33,18/09/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6642,28/11/2016 20:33,18/09/2016 2:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6641,28/11/2016 20:33,18/09/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6637,28/11/2016 20:33,30/09/2016 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6636,28/11/2016 20:33,30/09/2016 0:59,5.0,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-6550,28/11/2016 20:33,5/10/2016 1:59,4.3,310, Cryptographic Issues,nan
CVE-2016-6537,28/11/2016 20:33,19/09/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-6536,28/11/2016 20:33,19/09/2016 1:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-6535,28/11/2016 20:33,19/09/2016 1:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-6532,28/11/2016 20:33,24/09/2016 10:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-6531,28/11/2016 20:33,24/09/2016 10:59,7.5,255, Credentials Management,nan
CVE-2016-6530,28/11/2016 20:33,21/09/2016 2:59,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-6516,28/11/2016 20:33,6/08/2016 20:59,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6513,28/11/2016 20:33,6/08/2016 23:59,4.3,399, Resource Management Errors,nan
CVE-2016-6511,28/11/2016 20:33,6/08/2016 23:59,4.3,399, Resource Management Errors,nan
CVE-2016-6510,28/11/2016 20:33,6/08/2016 23:59,4.3,189, Numeric Errors,nan
CVE-2016-6509,28/11/2016 20:33,6/08/2016 23:59,4.3,20, Improper Input Validation,nan
CVE-2016-6508,28/11/2016 20:33,6/08/2016 23:59,4.3,399, Resource Management Errors,nan
CVE-2016-6507,28/11/2016 20:33,6/08/2016 23:59,4.3,399, Resource Management Errors,nan
CVE-2016-6506,28/11/2016 20:33,6/08/2016 23:59,4.3,399, Resource Management Errors,nan
CVE-2016-6486,28/11/2016 20:33,8/08/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6463,28/11/2016 20:33,19/11/2016 3:03,5.0,20, Improper Input Validation,nan
CVE-2016-6454,28/11/2016 20:33,3/11/2016 21:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6452,28/11/2016 20:33,3/11/2016 21:59,10.0,287, Improper Authentication,nan
CVE-2016-6446,28/11/2016 20:32,27/10/2016 21:59,5.0,200, Information Exposure,nan
CVE-2016-6444,28/11/2016 20:32,27/10/2016 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6436,28/11/2016 20:32,6/10/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6430,28/11/2016 20:32,3/11/2016 21:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6429,28/11/2016 20:32,3/11/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6419,28/11/2016 20:32,5/10/2016 10:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-6418,28/11/2016 20:32,5/10/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6408,28/11/2016 20:32,24/09/2016 1:59,4.3,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-6405,28/11/2016 20:32,18/09/2016 22:59,6.8,20, Improper Input Validation,nan
CVE-2016-6399,28/11/2016 20:32,12/09/2016 10:59,7.8,20, Improper Input Validation,nan
CVE-2016-6398,28/11/2016 20:32,12/09/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-6397,28/11/2016 20:32,28/10/2016 10:59,10.0,287, Improper Authentication,nan
CVE-2016-6396,28/11/2016 20:32,12/09/2016 10:59,5.0,20, Improper Input Validation,nan
CVE-2016-6395,28/11/2016 20:32,12/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6394,28/11/2016 20:32,12/09/2016 10:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-6377,28/11/2016 20:31,3/09/2016 20:59,6.8,287, Improper Authentication,nan
CVE-2016-6376,28/11/2016 20:31,2/09/2016 0:59,6.1,399, Resource Management Errors,nan
CVE-2016-6366,28/11/2016 20:31,18/08/2016 18:59,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6359,28/11/2016 20:31,22/08/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6355,28/11/2016 20:31,23/08/2016 2:11,7.8,399, Resource Management Errors,nan
CVE-2016-6298,28/11/2016 20:31,1/09/2016 23:59,4.3,200, Information Exposure,nan
CVE-2016-6263,28/11/2016 20:31,7/09/2016 20:59,5.0,125, Out-of-bounds Read,nan
CVE-2016-6232,28/11/2016 20:31,2/08/2016 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6212,28/11/2016 20:31,9/09/2016 14:05,5.0,200, Information Exposure,nan
CVE-2016-6211,28/11/2016 20:31,9/09/2016 14:05,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-6204,28/11/2016 20:31,22/07/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6187,28/11/2016 20:30,6/08/2016 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6156,28/11/2016 20:30,6/08/2016 20:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6150,28/11/2016 20:30,5/08/2016 14:59,7.5,284, Improper Access Control,nan
CVE-2016-6149,28/11/2016 20:30,5/08/2016 14:59,2.1,200, Information Exposure,nan
CVE-2016-6148,28/11/2016 20:30,5/08/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-6147,28/11/2016 20:30,5/08/2016 14:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-6145,28/11/2016 20:30,5/08/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-6144,28/11/2016 20:30,5/08/2016 14:59,4.3,284, Improper Access Control,nan
CVE-2016-6140,28/11/2016 20:30,5/08/2016 14:59,7.6,284, Improper Access Control,nan
CVE-2016-6138,28/11/2016 20:30,5/08/2016 14:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-6130,28/11/2016 20:30,3/07/2016 21:59,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-6027,28/11/2016 20:30,6/10/2016 10:59,5.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6026,28/11/2016 20:30,6/10/2016 10:59,2.9,200, Information Exposure,nan
CVE-2016-6025,28/11/2016 20:30,6/10/2016 10:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-6023,28/11/2016 20:30,6/10/2016 10:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5997,28/11/2016 20:30,26/09/2016 4:59,4.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2016-5996,28/11/2016 20:30,26/09/2016 4:59,5.0,640, Weak Password Recovery Mechanism for Forgotten Password,nan
CVE-2016-5991,28/11/2016 20:30,25/11/2016 3:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-5983,28/11/2016 20:30,5/10/2016 10:59,6.5,284, Improper Access Control,nan
CVE-2016-5981,28/11/2016 20:30,25/11/2016 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5978,28/11/2016 20:30,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5977,28/11/2016 20:30,26/09/2016 4:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-5976,28/11/2016 20:30,26/09/2016 4:59,2.6,200, Information Exposure,nan
CVE-2016-5975,28/11/2016 20:30,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5972,28/11/2016 20:30,26/09/2016 4:59,4.9,284, Improper Access Control,nan
CVE-2016-5971,28/11/2016 20:30,26/09/2016 4:59,5.5,611, Improper Restriction of XML External Entity Reference,nan
CVE-2016-5970,28/11/2016 20:30,26/09/2016 4:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5968,28/11/2016 20:30,25/11/2016 3:59,5.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-5967,28/11/2016 20:30,25/11/2016 3:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-5963,28/11/2016 20:30,26/09/2016 4:59,6.5,284, Improper Access Control,nan
CVE-2016-5957,28/11/2016 20:30,26/09/2016 4:59,5.0,310, Cryptographic Issues,nan
CVE-2016-5955,28/11/2016 20:30,25/11/2016 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5954,28/11/2016 20:30,12/09/2016 10:59,4.0,284, Improper Access Control,nan
CVE-2016-5947,28/11/2016 20:30,26/09/2016 4:59,3.5,20, Improper Input Validation,nan
CVE-2016-5946,28/11/2016 20:30,26/09/2016 4:59,4.0,200, Information Exposure,nan
CVE-2016-5945,28/11/2016 20:30,26/09/2016 4:59,4.0,284, Improper Access Control,nan
CVE-2016-5944,28/11/2016 20:30,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5927,28/11/2016 20:30,12/09/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-5920,28/11/2016 20:30,29/10/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5901,28/11/2016 20:30,5/10/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5892,28/11/2016 20:30,5/10/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5879,28/11/2016 20:29,2/09/2016 14:59,4.6,20, Improper Input Validation,nan
CVE-2016-5878,28/11/2016 20:29,8/08/2016 1:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-5874,28/11/2016 20:29,22/07/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2016-5849,28/11/2016 20:29,4/07/2016 16:59,1.9,200, Information Exposure,nan
CVE-2016-5848,28/11/2016 20:29,4/07/2016 16:59,1.7,255, Credentials Management,nan
CVE-2016-5843,28/11/2016 20:29,17/09/2016 2:59,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5840,28/11/2016 20:29,30/06/2016 16:59,9.0,20, Improper Input Validation,nan
CVE-2016-5814,28/11/2016 20:29,19/09/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5812,28/11/2016 20:29,24/08/2016 2:00,2.1,200, Information Exposure,nan
CVE-2016-5807,28/11/2016 20:29,15/07/2016 16:59,5.5,284, Improper Access Control,nan
CVE-2016-5804,28/11/2016 20:29,15/07/2016 16:59,5.0,287, Improper Authentication,nan
CVE-2016-5799,28/11/2016 20:29,24/08/2016 2:00,10.0,285, Improper Authorization,nan
CVE-2016-5797,28/11/2016 20:29,15/07/2016 16:59,5.0,200, Information Exposure,nan
CVE-2016-5793,28/11/2016 20:29,24/09/2016 10:59,7.2,428, Unquoted Search Path or Element,nan
CVE-2016-5792,28/11/2016 20:29,8/08/2016 0:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5788,28/11/2016 20:29,25/11/2016 3:59,10.0,285, Improper Authorization,nan
CVE-2016-5787,28/11/2016 20:29,15/07/2016 16:59,4.6,284, Improper Access Control,nan
CVE-2016-5781,28/11/2016 20:29,12/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5774,28/11/2016 20:29,12/07/2016 19:59,4.3,310, Cryptographic Issues,nan
CVE-2016-5769,28/11/2016 20:29,7/08/2016 10:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5763,28/11/2016 20:29,15/11/2016 19:30,6.4,254, 7PK – Security Features,nan
CVE-2016-5745,28/11/2016 20:29,5/10/2016 16:59,10.0,284, Improper Access Control,nan
CVE-2016-5744,28/11/2016 20:29,22/07/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-5743,28/11/2016 20:29,22/07/2016 15:59,10.0,20, Improper Input Validation,nan
CVE-2016-5728,28/11/2016 20:29,27/06/2016 10:59,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5721,28/11/2016 20:29,29/08/2016 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5700,28/11/2016 20:28,3/10/2016 16:09,9.3,284, Improper Access Control,nan
CVE-2016-5686,28/11/2016 20:28,5/10/2016 10:59,9.3,287, Improper Authentication,nan
CVE-2016-5681,28/11/2016 20:28,25/08/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5673,28/11/2016 20:28,25/08/2016 21:59,5.0,284, Improper Access Control,nan
CVE-2016-5664,28/11/2016 20:28,26/08/2016 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5663,28/11/2016 20:28,26/08/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5661,28/11/2016 20:28,15/07/2016 18:59,6.5,284, Improper Access Control,nan
CVE-2016-5660,28/11/2016 20:28,15/07/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5654,28/11/2016 20:28,19/07/2016 22:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-5653,28/11/2016 20:28,19/07/2016 22:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-5650,28/11/2016 20:28,24/08/2016 2:00,5.0,284, Improper Access Control,nan
CVE-2016-5645,28/11/2016 20:28,24/08/2016 2:00,7.5,284, Improper Access Control,nan
CVE-2016-5599,28/11/2016 20:27,25/10/2016 14:31,6.4,284, Improper Access Control,nan
CVE-2016-5580,28/11/2016 20:27,25/10/2016 14:30,5.5,284, Improper Access Control,nan
CVE-2016-5565,28/11/2016 20:27,25/10/2016 14:30,4.0,284, Improper Access Control,nan
CVE-2016-5560,28/11/2016 20:27,25/10/2016 14:30,5.5,284, Improper Access Control,nan
CVE-2016-5540,28/11/2016 20:26,25/10/2016 14:30,3.3,254, 7PK – Security Features,nan
CVE-2016-5534,28/11/2016 20:26,25/10/2016 14:30,4.0,284, Improper Access Control,nan
CVE-2016-5533,28/11/2016 20:26,25/10/2016 14:30,5.5,284, Improper Access Control,nan
CVE-2016-5527,28/11/2016 20:26,25/10/2016 14:30,4.3,284, Improper Access Control,nan
CVE-2016-5526,28/11/2016 20:26,25/10/2016 14:30,7.5,284, Improper Access Control,nan
CVE-2016-5524,28/11/2016 20:26,25/10/2016 14:30,5.0,200, Information Exposure,nan
CVE-2016-5522,28/11/2016 20:26,25/10/2016 14:29,4.0,200, Information Exposure,nan
CVE-2016-5521,28/11/2016 20:26,25/10/2016 14:29,7.5,284, Improper Access Control,nan
CVE-2016-5513,28/11/2016 20:26,25/10/2016 14:29,4.0,200, Information Exposure,nan
CVE-2016-5512,28/11/2016 20:26,25/10/2016 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5510,28/11/2016 20:26,25/10/2016 14:29,5.0,200, Information Exposure,nan
CVE-2016-5504,28/11/2016 20:26,25/10/2016 14:29,4.7,200, Information Exposure,nan
CVE-2016-5492,28/11/2016 20:26,25/10/2016 14:29,3.6,284, Improper Access Control,nan
CVE-2016-5491,28/11/2016 20:26,25/10/2016 14:29,5.8,284, Improper Access Control,nan
CVE-2016-5486,28/11/2016 20:26,25/10/2016 14:29,4.9,199, Information Management Errors,nan
CVE-2016-5482,28/11/2016 20:26,25/10/2016 14:29,5.8,284, Improper Access Control,nan
CVE-2016-5481,28/11/2016 20:26,25/10/2016 14:29,4.3,200, Information Exposure,nan
CVE-2016-5432,28/11/2016 20:25,3/10/2016 18:59,2.1,532, Inclusion of Sensitive Information in Log Files,nan
CVE-2016-5430,28/11/2016 20:25,3/09/2016 20:59,5.0,310, Cryptographic Issues,nan
CVE-2016-5429,28/11/2016 20:25,3/09/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-5404,28/11/2016 20:25,7/09/2016 20:59,4.0,284, Improper Access Control,nan
CVE-2016-5368,28/11/2016 20:24,30/06/2016 16:59,7.8,399, Resource Management Errors,nan
CVE-2016-5363,28/11/2016 20:24,17/06/2016 15:59,6.4,254, 7PK – Security Features,nan
CVE-2016-5359,28/11/2016 20:24,7/08/2016 16:59,4.3,399, Resource Management Errors,nan
CVE-2016-5358,28/11/2016 20:24,7/08/2016 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-5357,28/11/2016 20:24,7/08/2016 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-5356,28/11/2016 20:24,7/08/2016 16:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5355,28/11/2016 20:24,7/08/2016 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-5354,28/11/2016 20:24,7/08/2016 16:59,4.3,476, NULL Pointer Dereference,nan
CVE-2016-5353,28/11/2016 20:24,7/08/2016 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-5352,28/11/2016 20:24,7/08/2016 16:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-5351,28/11/2016 20:24,7/08/2016 16:59,4.3,20, Improper Input Validation,nan
CVE-2016-5350,28/11/2016 20:24,7/08/2016 16:59,4.3,399, Resource Management Errors,nan
CVE-2016-5344,28/11/2016 20:24,30/08/2016 17:59,10.0,190, Integer Overflow or Wraparound,nan
CVE-2016-5343,28/11/2016 20:24,10/10/2016 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5342,28/11/2016 20:24,30/08/2016 17:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5243,28/11/2016 20:23,27/06/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-5234,28/11/2016 20:23,13/06/2016 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5233,28/11/2016 20:23,10/06/2016 15:59,4.3,200, Information Exposure,nan
CVE-2016-5232,28/11/2016 20:23,30/06/2016 16:59,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5231,28/11/2016 20:23,30/06/2016 16:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5230,28/11/2016 20:23,30/06/2016 16:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-5101,28/11/2016 20:22,29/06/2016 14:10,9.3,284, Improper Access Control,nan
CVE-2016-5095,28/11/2016 20:22,7/08/2016 10:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-5081,28/11/2016 20:22,24/08/2016 2:00,10.0,798, Use of Hard-coded Credentials,nan
CVE-2016-5050,28/11/2016 20:22,26/08/2016 19:59,7.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-5049,28/11/2016 20:22,26/08/2016 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4962,28/11/2016 20:22,7/06/2016 14:06,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-4911,28/11/2016 20:21,13/06/2016 14:59,4.0,284, Improper Access Control,nan
CVE-2016-4860,28/11/2016 20:21,19/09/2016 1:59,7.5,287, Improper Authentication,nan
CVE-2016-4852,28/11/2016 20:21,12/09/2016 10:59,4.3,20, Improper Input Validation,nan
CVE-2016-4851,28/11/2016 20:21,2/09/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4654,28/11/2016 20:20,18/08/2016 19:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4580,28/11/2016 20:19,23/05/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-4577,28/11/2016 20:19,23/05/2016 19:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4576,28/11/2016 20:19,23/05/2016 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4573,28/11/2016 20:19,9/09/2016 14:05,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-4551,28/11/2016 20:18,5/10/2016 16:59,5.0,284, Improper Access Control,nan
CVE-2016-4533,28/11/2016 20:18,12/07/2016 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4532,28/11/2016 20:18,9/06/2016 10:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4531,28/11/2016 20:18,28/07/2016 2:02,7.5,285, Improper Authorization,nan
CVE-2016-4526,28/11/2016 20:18,19/09/2016 1:59,6.9,427, Uncontrolled Search Path Element,nan
CVE-2016-4523,28/11/2016 20:18,9/06/2016 10:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4522,28/11/2016 20:18,28/07/2016 2:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4519,28/11/2016 20:18,25/06/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4512,28/11/2016 20:18,3/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4510,28/11/2016 20:18,9/06/2016 10:59,6.4,287, Improper Authentication,nan
CVE-2016-4509,28/11/2016 20:18,3/07/2016 14:59,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4503,28/11/2016 20:18,12/07/2016 2:00,5.0,287, Improper Authentication,nan
CVE-2016-4499,28/11/2016 20:18,12/05/2016 1:59,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4498,28/11/2016 20:18,12/05/2016 1:59,6.8,20, Improper Input Validation,nan
CVE-2016-4497,28/11/2016 20:18,12/05/2016 1:59,6.8,20, Improper Input Validation,nan
CVE-2016-4496,28/11/2016 20:18,12/05/2016 1:59,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4485,28/11/2016 20:18,23/05/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-4482,28/11/2016 20:18,23/05/2016 10:59,2.1,200, Information Exposure,nan
CVE-2016-4428,28/11/2016 20:17,12/07/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4407,28/11/2016 20:17,13/10/2016 14:59,4.0,284, Improper Access Control,nan
CVE-2016-4381,28/11/2016 20:17,8/09/2016 16:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-4380,28/11/2016 20:17,8/09/2016 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4379,28/11/2016 20:17,8/09/2016 16:59,4.3,310, Cryptographic Issues,nan
CVE-2016-4378,28/11/2016 20:17,26/08/2016 19:59,5.0,200, Information Exposure,nan
CVE-2016-4376,28/11/2016 20:17,22/08/2016 10:59,7.8,254, 7PK – Security Features,nan
CVE-2016-4374,28/11/2016 20:17,8/08/2016 0:59,4.0,918, Server-Side Request Forgery (SSRF),nan
CVE-2016-4373,28/11/2016 20:17,1/08/2016 2:59,7.5,284, Improper Access Control,nan
CVE-2016-4270,28/11/2016 20:17,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4269,28/11/2016 20:17,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4268,28/11/2016 20:17,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4267,28/11/2016 20:17,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4266,28/11/2016 20:17,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4265,28/11/2016 20:17,26/08/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4095,28/11/2016 20:15,10/11/2016 16:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4066,28/11/2016 20:14,13/07/2016 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4064,28/11/2016 20:14,22/04/2016 15:59,6.8,284, Improper Access Control,nan
CVE-2016-4062,28/11/2016 20:14,22/04/2016 15:59,4.3,19, Data Processing Errors,nan
CVE-2016-4061,28/11/2016 20:14,22/04/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2016-4058,28/11/2016 20:14,27/09/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4057,28/11/2016 20:14,30/06/2016 16:59,6.8,399, Resource Management Errors,nan
CVE-2016-4005,28/11/2016 20:14,13/06/2016 14:59,7.5,310, Cryptographic Issues,nan
CVE-2016-3961,28/11/2016 20:14,15/04/2016 14:59,2.1,20, Improper Input Validation,nan
CVE-2016-3955,28/11/2016 20:14,3/07/2016 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3947,28/11/2016 20:14,7/04/2016 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3946,28/11/2016 20:14,13/10/2016 14:59,4.6,255, Credentials Management,nan
CVE-2016-3940,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3939,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3938,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3937,28/11/2016 20:14,10/10/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2016-3936,28/11/2016 20:14,10/10/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2016-3935,28/11/2016 20:14,10/10/2016 10:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2016-3934,28/11/2016 20:14,10/10/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3933,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3932,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3931,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3928,28/11/2016 20:14,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3925,28/11/2016 20:14,10/10/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-3924,28/11/2016 20:14,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3923,28/11/2016 20:13,10/10/2016 10:59,4.3,284, Improper Access Control,nan
CVE-2016-3922,28/11/2016 20:13,10/10/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-3921,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3920,28/11/2016 20:13,10/10/2016 10:59,7.1,20, Improper Input Validation,nan
CVE-2016-3918,28/11/2016 20:13,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3917,28/11/2016 20:13,10/10/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3916,28/11/2016 20:13,10/10/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3915,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3914,28/11/2016 20:13,10/10/2016 10:59,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-3913,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3912,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3911,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3910,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3909,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3908,28/11/2016 20:13,10/10/2016 10:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3907,28/11/2016 20:13,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-3906,28/11/2016 20:13,25/11/2016 16:59,4.3,200, Information Exposure,nan
CVE-2016-3905,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3904,28/11/2016 20:13,25/11/2016 16:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-3903,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3902,28/11/2016 20:13,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3901,28/11/2016 20:13,10/10/2016 10:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2016-3900,28/11/2016 20:13,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3882,28/11/2016 20:13,10/10/2016 10:59,6.1,284, Improper Access Control,nan
CVE-2016-3860,28/11/2016 20:13,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-3856,28/11/2016 20:12,6/08/2016 10:59,6.8,19, Data Processing Errors,nan
CVE-2016-3855,28/11/2016 20:12,6/08/2016 10:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-3854,28/11/2016 20:12,6/08/2016 10:59,6.8,125, Out-of-bounds Read,nan
CVE-2016-3853,28/11/2016 20:12,5/08/2016 20:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3852,28/11/2016 20:12,5/08/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-3851,28/11/2016 20:12,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3850,28/11/2016 20:12,5/08/2016 20:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3849,28/11/2016 20:12,5/08/2016 20:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-3848,28/11/2016 20:12,5/08/2016 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-3846,28/11/2016 20:12,5/08/2016 20:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-3845,28/11/2016 20:12,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3844,28/11/2016 20:12,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3843,28/11/2016 20:12,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3842,28/11/2016 20:12,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3840,28/11/2016 20:12,5/08/2016 20:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3839,28/11/2016 20:12,5/08/2016 20:59,4.3,284, Improper Access Control,nan
CVE-2016-3838,28/11/2016 20:12,5/08/2016 20:59,4.3,284, Improper Access Control,nan
CVE-2016-3837,28/11/2016 20:12,5/08/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-3836,28/11/2016 20:12,5/08/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-3835,28/11/2016 20:12,5/08/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-3834,28/11/2016 20:12,5/08/2016 20:59,4.3,200, Information Exposure,nan
CVE-2016-3833,28/11/2016 20:12,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3832,28/11/2016 20:12,5/08/2016 20:59,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3831,28/11/2016 20:12,5/08/2016 20:59,5.0,20, Improper Input Validation,nan
CVE-2016-3830,28/11/2016 20:12,5/08/2016 20:59,7.1,20, Improper Input Validation,nan
CVE-2016-3829,28/11/2016 20:12,5/08/2016 20:59,7.1,172, Encoding Error,nan
CVE-2016-3828,28/11/2016 20:12,5/08/2016 20:59,7.1,172, Encoding Error,nan
CVE-2016-3827,28/11/2016 20:12,5/08/2016 20:59,7.1,172, Encoding Error,nan
CVE-2016-3826,28/11/2016 20:12,5/08/2016 20:59,4.6,20, Improper Input Validation,nan
CVE-2016-3825,28/11/2016 20:12,5/08/2016 20:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3824,28/11/2016 20:12,5/08/2016 20:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3823,28/11/2016 20:12,5/08/2016 20:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3821,28/11/2016 20:12,5/08/2016 20:59,7.5,476, NULL Pointer Dereference,nan
CVE-2016-3820,28/11/2016 20:12,5/08/2016 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3819,28/11/2016 20:12,5/08/2016 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3707,28/11/2016 20:12,27/06/2016 10:59,6.8,284, Improper Access Control,nan
CVE-2016-3677,28/11/2016 20:12,13/06/2016 14:59,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-3635,28/11/2016 20:12,13/10/2016 14:59,6.0,284, Improper Access Control,nan
CVE-2016-3132,28/11/2016 20:06,7/08/2016 10:59,7.5,415, Double Free,nan
CVE-2016-3093,28/11/2016 20:06,7/06/2016 18:59,5.0,20, Improper Input Validation,nan
CVE-2016-3082,28/11/2016 20:06,26/04/2016 14:59,10.0,20, Improper Input Validation,nan
CVE-2016-3060,28/11/2016 20:06,29/10/2016 1:59,3.5,284, Improper Access Control,nan
CVE-2016-3056,28/11/2016 20:06,14/10/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3054,28/11/2016 20:06,8/08/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3042,28/11/2016 20:06,1/10/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3040,28/11/2016 20:06,26/09/2016 4:59,4.9,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-3028,28/11/2016 20:05,25/11/2016 3:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-3025,28/11/2016 20:05,25/11/2016 3:59,5.0,254, 7PK – Security Features,nan
CVE-2016-3010,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3008,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3007,28/11/2016 20:05,26/09/2016 4:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3006,28/11/2016 20:05,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3005,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3003,28/11/2016 20:05,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3001,28/11/2016 20:05,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3000,28/11/2016 20:05,26/09/2016 4:59,4.0,20, Improper Input Validation,nan
CVE-2016-2999,28/11/2016 20:05,26/09/2016 4:59,4.0,200, Information Exposure,nan
CVE-2016-2998,28/11/2016 20:05,1/09/2016 10:59,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2997,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2995,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2986,28/11/2016 20:05,25/11/2016 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2985,28/11/2016 20:05,25/11/2016 3:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-2984,28/11/2016 20:05,25/11/2016 3:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-2956,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2954,28/11/2016 20:05,1/09/2016 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2947,28/11/2016 20:05,25/11/2016 3:59,4.0,200, Information Exposure,nan
CVE-2016-2945,28/11/2016 20:05,8/07/2016 1:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2923,28/11/2016 20:05,7/07/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2914,28/11/2016 20:05,8/08/2016 1:59,5.5,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2016-2912,28/11/2016 20:05,8/08/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2889,28/11/2016 20:05,8/07/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2883,28/11/2016 20:05,2/07/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2882,28/11/2016 20:05,2/07/2016 14:59,4.0,200, Information Exposure,nan
CVE-2016-2875,28/11/2016 20:05,8/08/2016 1:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-2870,28/11/2016 20:05,2/07/2016 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2865,28/11/2016 20:05,15/07/2016 18:59,4.0,200, Information Exposure,nan
CVE-2016-2864,28/11/2016 20:05,24/11/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2856,28/11/2016 20:05,14/03/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2826,28/11/2016 20:04,13/06/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2504,28/11/2016 20:04,5/08/2016 20:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-2497,28/11/2016 20:04,5/08/2016 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2408,28/11/2016 20:04,2/08/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2390,28/11/2016 20:04,19/04/2016 21:59,4.3,20, Improper Input Validation,nan
CVE-2016-2162,28/11/2016 20:03,12/04/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2066,28/11/2016 20:03,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2065,28/11/2016 20:03,7/08/2016 21:59,10.0,787, Out-of-bounds Write,nan
CVE-2016-2064,28/11/2016 20:03,7/08/2016 21:59,7.2,125, Out-of-bounds Read,nan
CVE-2016-2063,28/11/2016 20:03,7/08/2016 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2048,28/11/2016 20:02,8/02/2016 19:59,6.0,284, Improper Access Control,nan
CVE-2016-1951,28/11/2016 20:02,7/08/2016 19:59,7.5,190, Integer Overflow or Wraparound,nan
CVE-2016-1927,28/11/2016 20:02,20/02/2016 1:59,5.0,255, Credentials Management,nan
CVE-2016-1606,28/11/2016 20:00,3/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1598,28/11/2016 20:00,27/10/2016 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1505,28/11/2016 19:59,3/02/2016 18:59,7.5,21, Pathname Traversal and Equivalence Errors,nan
CVE-2016-1477,28/11/2016 19:59,23/08/2016 2:10,4.0,200, Information Exposure,nan
CVE-2016-1467,28/11/2016 19:59,28/07/2016 1:59,6.1,399, Resource Management Errors,nan
CVE-2016-1458,28/11/2016 19:59,18/08/2016 19:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1441,28/11/2016 19:59,3/07/2016 1:59,6.4,20, Improper Input Validation,nan
CVE-2016-1405,28/11/2016 19:58,8/06/2016 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1394,28/11/2016 19:58,3/07/2016 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1393,28/11/2016 19:58,12/05/2016 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1237,28/11/2016 19:58,29/06/2016 14:10,4.9,284, Improper Access Control,nan
CVE-2016-1205,28/11/2016 19:58,28/04/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1201,28/11/2016 19:58,30/04/2016 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1200,28/11/2016 19:58,30/04/2016 10:59,6.5,284, Improper Access Control,nan
CVE-2016-1000154,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000149,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000148,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000146,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000143,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000141,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000140,28/11/2016 19:57,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000138,28/11/2016 19:56,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000136,28/11/2016 19:56,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000133,28/11/2016 19:56,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000129,28/11/2016 19:56,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000127,28/11/2016 19:56,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000126,28/11/2016 19:56,10/10/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1000121,28/11/2016 19:56,27/10/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0930,28/11/2016 19:56,18/09/2016 2:59,5.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-0929,28/11/2016 19:56,18/09/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-0928,28/11/2016 19:56,18/09/2016 2:59,5.8,601, URL Redirection to Untrusted Site (‘Open Redirect’),nan
CVE-2016-0922,28/11/2016 19:56,18/09/2016 2:59,5.0,285, Improper Authorization,nan
CVE-2016-0896,28/11/2016 19:55,18/09/2016 2:59,7.5,254, 7PK – Security Features,nan
CVE-2016-0870,28/11/2016 19:55,19/09/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-0832,28/11/2016 19:55,12/03/2016 21:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-0831,28/11/2016 19:55,12/03/2016 21:59,4.3,200, Information Exposure,nan
CVE-2016-0830,28/11/2016 19:55,12/03/2016 21:59,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0829,28/11/2016 19:55,12/03/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0828,28/11/2016 19:55,12/03/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0827,28/11/2016 19:55,12/03/2016 21:59,9.3,189, Numeric Errors,nan
CVE-2016-0826,28/11/2016 19:55,12/03/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0825,28/11/2016 19:55,12/03/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0824,28/11/2016 19:55,12/03/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-0823,28/11/2016 19:55,12/03/2016 21:59,2.1,200, Information Exposure,nan
CVE-2016-0822,28/11/2016 19:55,12/03/2016 21:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-0820,28/11/2016 19:55,12/03/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0819,28/11/2016 19:55,12/03/2016 21:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0818,28/11/2016 19:55,12/03/2016 21:59,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-0816,28/11/2016 19:55,12/03/2016 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0815,28/11/2016 19:55,12/03/2016 21:59,10.0,20, Improper Input Validation,nan
CVE-2016-0757,28/11/2016 19:55,13/04/2016 17:59,4.0,284, Improper Access Control,nan
CVE-2016-0397,28/11/2016 19:53,30/08/2016 17:59,4.3,200, Information Exposure,nan
CVE-2016-0393,28/11/2016 19:53,17/07/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-0389,28/11/2016 19:53,7/07/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-0387,28/11/2016 19:53,2/07/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0379,28/11/2016 19:53,26/09/2016 4:59,3.5,19, Data Processing Errors,nan
CVE-2016-0378,28/11/2016 19:53,24/11/2016 19:59,4.3,200, Information Exposure,nan
CVE-2016-0372,28/11/2016 19:53,24/11/2016 19:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0370,28/11/2016 19:53,1/09/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0365,28/11/2016 19:53,1/07/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-0353,28/11/2016 19:53,24/11/2016 19:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0328,28/11/2016 19:53,22/10/2016 3:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0326,28/11/2016 19:53,22/10/2016 3:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0325,28/11/2016 19:53,24/11/2016 19:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-0321,28/11/2016 19:53,17/07/2016 22:59,2.1,200, Information Exposure,nan
CVE-2016-0306,28/11/2016 19:52,17/05/2016 14:08,4.3,200, Information Exposure,nan
CVE-2016-0293,28/11/2016 19:52,1/09/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0269,28/11/2016 19:52,15/07/2016 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0249,28/11/2016 19:52,16/10/2016 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0248,28/11/2016 19:52,26/09/2016 4:59,4.3,200, Information Exposure,nan
CVE-2016-0247,28/11/2016 19:52,22/10/2016 3:59,2.1,200, Information Exposure,nan
CVE-2016-0246,28/11/2016 19:52,22/10/2016 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0241,28/11/2016 19:52,22/10/2016 3:59,6.5,284, Improper Access Control,nan
CVE-2016-0240,28/11/2016 19:52,22/10/2016 3:59,4.3,254, 7PK – Security Features,nan
CVE-2016-0239,28/11/2016 19:52,22/10/2016 3:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-0236,28/11/2016 19:52,21/10/2016 17:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-0230,28/11/2016 19:52,7/07/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-8978,28/11/2016 19:50,22/11/2016 17:59,5.0,399, Resource Management Errors,nan
CVE-2015-8969,28/11/2016 19:50,3/11/2016 10:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-8968,28/11/2016 19:50,3/11/2016 10:59,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-8964,28/11/2016 19:50,16/11/2016 5:59,7.1,200, Information Exposure,nan
CVE-2015-8963,28/11/2016 19:50,16/11/2016 5:59,7.6,416, Use After Free,nan
CVE-2015-8955,28/11/2016 19:50,10/10/2016 10:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-8953,28/11/2016 19:50,16/10/2016 21:59,4.9,399, Resource Management Errors,nan
CVE-2015-8951,28/11/2016 19:50,10/10/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8950,28/11/2016 19:50,10/10/2016 10:59,4.3,200, Information Exposure,nan
CVE-2015-8944,28/11/2016 19:50,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2015-8943,28/11/2016 19:50,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-8942,28/11/2016 19:50,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8941,28/11/2016 19:50,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8940,28/11/2016 19:50,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8939,28/11/2016 19:50,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8938,28/11/2016 19:50,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8937,28/11/2016 19:50,6/08/2016 10:59,6.8,19, Data Processing Errors,nan
CVE-2015-8899,28/11/2016 19:50,30/06/2016 17:59,5.0,20, Improper Input Validation,nan
CVE-2015-8892,28/11/2016 19:50,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8891,28/11/2016 19:50,11/07/2016 1:59,9.3,189, Numeric Errors,nan
CVE-2015-8890,28/11/2016 19:50,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8889,28/11/2016 19:50,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8888,28/11/2016 19:50,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8834,28/11/2016 19:49,22/05/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8820,28/11/2016 19:49,4/03/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8703,28/11/2016 19:48,30/12/2015 5:59,4.0,200, Information Exposure,nan
CVE-2015-8658,28/11/2016 19:48,4/03/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8657,28/11/2016 19:48,4/03/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8656,28/11/2016 19:48,4/03/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8654,28/11/2016 19:48,4/03/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8652,28/11/2016 19:48,4/03/2016 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8615,28/11/2016 19:48,8/01/2016 19:59,2.1,254, 7PK – Security Features,nan
CVE-2015-8579,28/11/2016 19:48,16/12/2015 18:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-8578,28/11/2016 19:48,16/12/2015 18:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-8571,28/11/2016 19:48,15/12/2015 21:59,6.8,189, Numeric Errors,nan
CVE-2015-8570,28/11/2016 19:48,15/12/2015 21:59,7.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-8523,28/11/2016 19:48,5/04/2016 17:59,5.0,284, Improper Access Control,nan
CVE-2015-8522,28/11/2016 19:48,5/04/2016 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8521,28/11/2016 19:47,5/04/2016 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8520,28/11/2016 19:47,5/04/2016 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8519,28/11/2016 19:47,5/04/2016 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8458,28/11/2016 19:47,21/12/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8267,28/11/2016 19:46,24/12/2015 0:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8265,28/11/2016 19:46,1/02/2016 21:59,5.0,20, Improper Input Validation,nan
CVE-2015-8088,28/11/2016 19:46,12/01/2016 19:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8086,28/11/2016 19:46,3/10/2016 21:59,4.0,326, Inadequate Encryption Strength,nan
CVE-2015-8085,28/11/2016 19:46,3/10/2016 21:59,4.0,326, Inadequate Encryption Strength,nan
CVE-2015-8040,28/11/2016 19:45,2/11/2015 19:59,6.8,20, Improper Input Validation,nan
CVE-2015-8021,28/11/2016 19:45,12/04/2016 14:59,4.0,284, Improper Access Control,nan
CVE-2015-8019,28/11/2016 19:45,2/05/2016 10:59,7.2,20, Improper Input Validation,nan
CVE-2015-7937,28/11/2016 19:45,21/12/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7936,28/11/2016 19:45,23/12/2015 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7935,28/11/2016 19:45,23/12/2015 3:59,5.0,200, Information Exposure,nan
CVE-2015-7934,28/11/2016 19:45,24/12/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-7932,28/11/2016 19:45,24/12/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-7931,28/11/2016 19:45,24/12/2015 1:59,5.8,200, Information Exposure,nan
CVE-2015-7792,28/11/2016 19:44,30/12/2015 5:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7695,28/11/2016 19:44,7/06/2016 14:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7676,28/11/2016 19:44,15/04/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7665,28/11/2016 19:44,27/12/2015 19:59,5.0,200, Information Exposure,nan
CVE-2015-7546,28/11/2016 19:43,3/02/2016 18:59,6.0,254, 7PK – Security Features,nan
CVE-2015-7445,28/11/2016 19:43,1/01/2016 5:59,3.5,200, Information Exposure,nan
CVE-2015-7442,28/11/2016 19:43,2/01/2016 5:59,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7429,28/11/2016 19:43,2/01/2016 5:59,4.0,200, Information Exposure,nan
CVE-2015-7425,28/11/2016 19:43,21/02/2016 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7410,28/11/2016 19:43,1/01/2016 5:59,5.8,17, DEPRECATED: Code,nan
CVE-2015-7407,28/11/2016 19:43,2/01/2016 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7282,28/11/2016 19:42,31/12/2015 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-7281,28/11/2016 19:42,31/12/2015 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7280,28/11/2016 19:42,31/12/2015 5:59,10.0,255, Credentials Management,nan
CVE-2015-7278,28/11/2016 19:42,31/12/2015 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7277,28/11/2016 19:42,31/12/2015 5:59,9.3,255, Credentials Management,nan
CVE-2015-7226,28/11/2016 19:42,17/09/2015 16:59,5.0,200, Information Exposure,nan
CVE-2015-6934,28/11/2016 19:40,21/12/2015 3:59,7.5,20, Improper Input Validation,nan
CVE-2015-6867,28/11/2016 19:40,4/11/2015 3:59,7.5,284, Improper Access Control,nan
CVE-2015-6861,28/11/2016 19:40,5/01/2016 11:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-6426,28/11/2016 19:39,18/12/2015 11:59,7.2,20, Improper Input Validation,nan
CVE-2015-6419,28/11/2016 19:39,12/12/2015 16:59,6.8,200, Information Exposure,nan
CVE-2015-6417,28/11/2016 19:39,12/12/2015 11:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6411,28/11/2016 19:39,15/12/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-6404,28/11/2016 19:39,15/12/2015 5:59,4.0,200, Information Exposure,nan
CVE-2015-6400,28/11/2016 19:38,13/12/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6375,28/11/2016 19:38,21/11/2015 11:59,2.1,200, Information Exposure,nan
CVE-2015-6029,28/11/2016 19:38,4/11/2015 3:59,5.0,254, 7PK – Security Features,nan
CVE-2015-5723,28/11/2016 19:35,7/06/2016 14:06,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5721,28/11/2016 19:35,3/09/2016 20:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5720,28/11/2016 19:35,3/09/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5610,28/11/2016 19:34,21/07/2015 17:59,4.0,200, Information Exposure,nan
CVE-2015-5515,28/11/2016 19:34,18/08/2015 18:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-5512,28/11/2016 19:33,18/08/2015 18:00,5.0,284, Improper Access Control,nan
CVE-2015-5511,28/11/2016 19:33,18/08/2015 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5509,28/11/2016 19:33,18/08/2015 18:00,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5508,28/11/2016 19:33,18/08/2015 18:00,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5507,28/11/2016 19:33,18/08/2015 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5506,28/11/2016 19:33,18/08/2015 18:00,5.0,200, Information Exposure,nan
CVE-2015-5502,28/11/2016 19:33,18/08/2015 18:00,7.5,284, Improper Access Control,nan
CVE-2015-5501,28/11/2016 19:33,18/08/2015 18:00,7.5,254, 7PK – Security Features,nan
CVE-2015-5496,28/11/2016 19:33,18/08/2015 17:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5490,28/11/2016 19:33,18/08/2015 17:59,5.0,200, Information Exposure,nan
CVE-2015-5471,28/11/2016 19:33,12/01/2016 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5453,28/11/2016 19:33,8/07/2015 15:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5452,28/11/2016 19:33,8/07/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5434,28/11/2016 19:33,5/01/2016 11:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-5380,28/11/2016 19:33,9/07/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5286,28/11/2016 19:32,26/10/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5229,28/11/2016 19:32,8/04/2016 15:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-5163,28/11/2016 19:32,19/08/2015 15:59,3.5,200, Information Exposure,nan
CVE-2015-5151,28/11/2016 19:32,30/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5049,28/11/2016 19:31,1/01/2016 5:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5005,28/11/2016 19:31,8/11/2015 22:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4930,28/11/2016 19:31,4/10/2015 2:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-4694,28/11/2016 19:29,8/01/2016 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4657,28/11/2016 19:29,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4656,28/11/2016 19:29,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4655,28/11/2016 19:29,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4559,28/11/2016 19:29,15/06/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4545,28/11/2016 19:29,21/12/2015 17:13,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4532,28/11/2016 19:29,20/08/2015 10:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4531,28/11/2016 19:29,20/08/2015 10:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4530,28/11/2016 19:29,20/08/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4283,28/11/2016 19:27,21/07/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2015-4160,28/11/2016 19:27,2/06/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4159,28/11/2016 19:27,2/06/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4129,28/11/2016 19:27,5/07/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4004,28/11/2016 19:27,7/06/2015 23:59,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3951,28/11/2016 19:27,13/06/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-3720,28/11/2016 19:25,3/07/2015 2:00,4.3,200, Information Exposure,nan
CVE-2015-3244,28/11/2016 19:23,16/07/2015 11:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-2984,28/11/2016 19:22,22/08/2015 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2823,28/11/2016 19:21,8/04/2015 16:59,6.8,287, Improper Authentication,nan
CVE-2015-2822,28/11/2016 19:21,8/04/2015 16:59,4.3,20, Improper Input Validation,nan
CVE-2015-2092,28/11/2016 19:19,9/03/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1946,28/11/2016 19:19,14/07/2015 17:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-1776,28/11/2016 19:18,19/04/2016 21:59,2.1,200, Information Exposure,nan
CVE-2015-1601,28/11/2016 19:18,6/04/2015 1:59,6.8,254, 7PK – Security Features,nan
CVE-2015-1473,28/11/2016 19:18,8/04/2015 10:59,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1157,28/11/2016 19:17,28/05/2015 1:59,7.8,17, DEPRECATED: Code,nan
CVE-2015-1156,28/11/2016 19:17,8/05/2015 0:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-1000013,28/11/2016 19:17,6/10/2016 14:59,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2015-1000,28/11/2016 19:17,5/06/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0851,28/11/2016 19:17,12/08/2015 14:59,5.0,189, Numeric Errors,nan
CVE-2015-0701,28/11/2016 19:17,7/05/2015 1:59,10.0,20, Improper Input Validation,nan
CVE-2015-0572,28/11/2016 19:16,10/10/2016 10:59,7.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0571,28/11/2016 19:16,9/05/2016 10:59,9.3,284, Improper Access Control,nan
CVE-2015-0570,28/11/2016 19:16,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0568,28/11/2016 19:16,7/08/2016 21:59,7.2,416, Use After Free,nan
CVE-2015-0536,28/11/2016 19:16,20/08/2015 10:59,2.6,189, Numeric Errors,nan
CVE-2015-0535,28/11/2016 19:16,20/08/2015 10:59,4.3,284, Improper Access Control,nan
CVE-2015-0533,28/11/2016 19:16,20/08/2015 10:59,4.3,310, Cryptographic Issues,nan
CVE-2015-0128,28/11/2016 19:15,18/03/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9906,28/11/2016 19:15,19/08/2016 21:59,10.0,416, Use After Free,nan
CVE-2014-9903,28/11/2016 19:15,27/06/2016 10:59,2.1,200, Information Exposure,nan
CVE-2014-9902,28/11/2016 19:15,5/08/2016 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9901,28/11/2016 19:15,5/08/2016 20:59,7.8,284, Improper Access Control,nan
CVE-2014-9900,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9899,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9898,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9897,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9896,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9895,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9894,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9893,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9892,28/11/2016 19:15,6/08/2016 10:59,4.3,200, Information Exposure,nan
CVE-2014-9891,28/11/2016 19:15,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9890,28/11/2016 19:15,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9889,28/11/2016 19:15,6/08/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2014-9888,28/11/2016 19:15,6/08/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9887,28/11/2016 19:15,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9886,28/11/2016 19:15,6/08/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2014-9885,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9884,28/11/2016 19:15,6/08/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2014-9883,28/11/2016 19:15,6/08/2016 10:59,6.8,191, Integer Underflow (Wrap or Wraparound),nan
CVE-2014-9882,28/11/2016 19:15,6/08/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9881,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9880,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9879,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9878,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9877,28/11/2016 19:15,6/08/2016 10:59,6.8,19, Data Processing Errors,nan
CVE-2014-9876,28/11/2016 19:15,6/08/2016 10:59,6.8,189, Numeric Errors,nan
CVE-2014-9875,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9874,28/11/2016 19:15,6/08/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9873,28/11/2016 19:15,6/08/2016 10:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9872,28/11/2016 19:15,6/08/2016 10:59,6.8,20, Improper Input Validation,nan
CVE-2014-9871,28/11/2016 19:15,6/08/2016 10:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9870,28/11/2016 19:15,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9869,28/11/2016 19:15,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9868,28/11/2016 19:15,6/08/2016 10:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-9867,28/11/2016 19:15,6/08/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9866,28/11/2016 19:15,6/08/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2014-9865,28/11/2016 19:15,6/08/2016 10:59,9.3,284, Improper Access Control,nan
CVE-2014-9864,28/11/2016 19:15,6/08/2016 10:59,9.3,20, Improper Input Validation,nan
CVE-2014-9863,28/11/2016 19:15,6/08/2016 10:59,9.3,190, Integer Overflow or Wraparound,nan
CVE-2014-9802,28/11/2016 19:15,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9801,28/11/2016 19:15,11/07/2016 1:59,9.3,189, Numeric Errors,nan
CVE-2014-9800,28/11/2016 19:15,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9799,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9796,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9795,28/11/2016 19:14,11/07/2016 1:59,10.0,189, Numeric Errors,nan
CVE-2014-9793,28/11/2016 19:14,11/07/2016 1:59,9.3,254, 7PK – Security Features,nan
CVE-2014-9792,28/11/2016 19:14,11/07/2016 1:59,9.3,189, Numeric Errors,nan
CVE-2014-9790,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9788,28/11/2016 19:14,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9787,28/11/2016 19:14,11/07/2016 1:59,9.3,189, Numeric Errors,nan
CVE-2014-9786,28/11/2016 19:14,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9785,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9784,28/11/2016 19:14,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9783,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9782,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9781,28/11/2016 19:14,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9780,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9779,28/11/2016 19:14,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-9778,28/11/2016 19:14,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9777,28/11/2016 19:14,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9735,28/11/2016 19:14,30/06/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9508,28/11/2016 19:14,4/01/2015 21:59,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-9423,28/11/2016 19:13,19/02/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-9196,28/11/2016 19:13,20/07/2015 1:59,9.3,254, 7PK – Security Features,nan
CVE-2014-8602,28/11/2016 19:13,11/12/2014 2:59,4.3,399, Resource Management Errors,nan
CVE-2014-8480,28/11/2016 19:13,10/11/2014 11:55,4.9,399, Resource Management Errors,nan
CVE-2014-7144,28/11/2016 19:12,2/10/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2014-7142,28/11/2016 19:12,26/11/2014 15:59,6.4,20, Improper Input Validation,nan
CVE-2014-7141,28/11/2016 19:12,26/11/2014 15:59,6.4,19, Data Processing Errors,nan
CVE-2014-6221,28/11/2016 19:12,6/04/2015 0:59,9.4,310, Cryptographic Issues,nan
CVE-2014-5415,28/11/2016 19:12,5/10/2016 10:59,9.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-5414,28/11/2016 19:12,5/10/2016 10:59,9.4,254, 7PK – Security Features,nan
CVE-2014-5325,28/11/2016 19:12,24/11/2014 2:59,5.0,200, Information Exposure,nan
CVE-2014-5075,28/11/2016 19:12,25/10/2014 21:55,6.8,310, Cryptographic Issues,nan
CVE-2014-4703,28/11/2016 19:12,5/12/2014 16:59,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4702,28/11/2016 19:12,5/12/2014 16:59,2.1,200, Information Exposure,nan
CVE-2014-4701,28/11/2016 19:12,5/12/2014 16:59,2.1,200, Information Exposure,nan
CVE-2014-3487,28/11/2016 19:11,9/07/2014 11:07,4.3,20, Improper Input Validation,nan
CVE-2014-3480,28/11/2016 19:11,9/07/2014 11:07,4.3,20, Improper Input Validation,nan
CVE-2014-3479,28/11/2016 19:11,9/07/2014 11:07,4.3,189, Numeric Errors,nan
CVE-2014-3478,28/11/2016 19:11,9/07/2014 11:07,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3383,28/11/2016 19:11,10/10/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-3199,28/11/2016 19:11,8/10/2014 10:55,5.0,399, Resource Management Errors,nan
CVE-2014-3198,28/11/2016 19:11,8/10/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3197,28/11/2016 19:11,8/10/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3196,28/11/2016 19:11,8/10/2014 10:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3195,28/11/2016 19:11,8/10/2014 10:55,5.0,399, Resource Management Errors,nan
CVE-2014-3194,28/11/2016 19:11,8/10/2014 10:55,7.5,416, Use After Free,nan
CVE-2014-3193,28/11/2016 19:11,8/10/2014 10:55,7.5,416, Use After Free,nan
CVE-2014-3191,28/11/2016 19:11,8/10/2014 10:55,7.5,416, Use After Free,nan
CVE-2014-3190,28/11/2016 19:11,8/10/2014 10:55,7.5,416, Use After Free,nan
CVE-2014-3189,28/11/2016 19:11,8/10/2014 10:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2360,28/11/2016 19:11,24/07/2014 14:55,7.5,20, Improper Input Validation,nan
CVE-2014-2338,28/11/2016 19:10,16/04/2014 18:37,6.4,287, Improper Authentication,nan
CVE-2014-1959,28/11/2016 19:10,7/03/2014 0:10,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1573,28/11/2016 19:10,13/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1572,28/11/2016 19:10,13/10/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0919,28/11/2016 19:10,8/05/2015 1:59,4.0,200, Information Exposure,nan
CVE-2014-0475,28/11/2016 19:10,29/07/2014 14:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0207,28/11/2016 19:10,9/07/2014 11:07,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0092,28/11/2016 19:10,7/03/2014 0:10,5.8,310, Cryptographic Issues,nan
CVE-2013-7443,28/11/2016 19:10,12/08/2015 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7440,28/11/2016 19:10,7/06/2016 18:59,4.3,19, Data Processing Errors,nan
CVE-2013-7424,28/11/2016 19:10,26/08/2015 19:59,5.1,17, DEPRECATED: Code,nan
CVE-2013-7315,28/11/2016 19:10,23/01/2014 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-7073,28/11/2016 19:10,23/12/2013 23:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6444,28/11/2016 19:09,5/05/2014 17:06,5.8,20, Improper Input Validation,nan
CVE-2013-6418,28/11/2016 19:09,5/05/2014 17:06,5.8,20, Improper Input Validation,nan
CVE-2013-6410,28/11/2016 19:09,7/12/2013 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4396,28/11/2016 19:09,10/10/2013 10:55,6.5,399, Resource Management Errors,nan
CVE-2013-4347,28/11/2016 19:09,20/05/2014 14:55,5.8,310, Cryptographic Issues,nan
CVE-2013-4346,28/11/2016 19:09,20/05/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4248,28/11/2016 19:09,18/08/2013 2:52,4.3,20, Improper Input Validation,nan
CVE-2013-4152,28/11/2016 19:09,23/01/2014 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-3060,28/11/2016 19:09,21/04/2013 21:55,6.4,287, Improper Authentication,nan
CVE-2013-1981,28/11/2016 19:08,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1880,28/11/2016 19:08,5/02/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1775,28/11/2016 19:08,5/03/2013 21:38,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0189,28/11/2016 19:08,8/02/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6692,28/11/2016 19:08,17/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6689,28/11/2016 19:08,2/05/2016 10:59,7.2,284, Improper Access Control,nan
CVE-2012-6551,28/11/2016 19:08,21/04/2013 21:55,5.0,399, Resource Management Errors,nan
CVE-2012-6330,28/11/2016 19:08,4/01/2013 21:55,5.0,189, Numeric Errors,nan
CVE-2012-6092,28/11/2016 19:08,21/04/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5643,28/11/2016 19:08,20/12/2012 12:02,5.0,20, Improper Input Validation,nan
CVE-2012-3954,28/11/2016 19:08,25/07/2012 10:42,3.3,399, Resource Management Errors,nan
CVE-2012-3570,28/11/2016 19:08,25/07/2012 10:42,5.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3440,28/11/2016 19:08,8/08/2012 10:26,5.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-3137,28/11/2016 19:08,21/09/2012 23:55,6.4,287, Improper Authentication,nan
CVE-2012-2845,28/11/2016 19:08,13/07/2012 10:34,6.4,189, Numeric Errors,nan
CVE-2012-2841,28/11/2016 19:08,13/07/2012 10:34,7.5,189, Numeric Errors,nan
CVE-2012-2840,28/11/2016 19:08,13/07/2012 10:34,7.5,189, Numeric Errors,nan
CVE-2012-2837,28/11/2016 19:08,13/07/2012 10:34,5.0,189, Numeric Errors,nan
CVE-2012-2836,28/11/2016 19:08,13/07/2012 10:34,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2814,28/11/2016 19:08,13/07/2012 10:34,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2813,28/11/2016 19:08,13/07/2012 10:34,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2812,28/11/2016 19:08,13/07/2012 10:34,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4096,28/11/2016 19:07,17/11/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2010-5324,28/11/2016 19:07,7/06/2015 23:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-5313,28/11/2016 19:07,30/11/2014 1:59,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4651,28/11/2016 19:07,11/03/2011 22:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2252,28/11/2016 19:07,6/07/2010 17:17,6.8,20, Improper Input Validation,nan
CVE-2009-4219,28/11/2016 19:07,7/12/2009 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1436,28/11/2016 19:07,27/04/2009 18:00,4.9,20, Improper Input Validation,nan
CVE-2007-6755,28/11/2016 19:07,11/10/2013 22:55,5.8,310, Cryptographic Issues,nan
CVE-2005-1787,25/11/2016 18:27,27/05/2005 4:00,7.5,20, Improper Input Validation,nan
CVE-2005-1775,25/11/2016 18:27,31/05/2005 4:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-1778,25/11/2016 18:26,31/05/2005 4:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2988,25/11/2016 17:09,25/11/2016 3:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2996,25/11/2016 16:54,24/11/2016 19:59,4.0,20, Improper Input Validation,nan
CVE-2014-8991,22/11/2016 15:57,24/11/2014 15:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-1732,22/11/2016 1:42,28/03/2007 20:19,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1038,18/11/2016 20:01,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6943,18/11/2016 19:34,19/01/2007 2:28,5.0,20, Improper Input Validation,nan
CVE-2013-1037,18/11/2016 19:30,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1041,18/11/2016 19:08,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1039,18/11/2016 19:08,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1040,18/11/2016 19:07,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6402,18/11/2016 17:24,10/12/2006 2:28,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6401,18/11/2016 17:23,10/12/2006 2:28,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6096,18/11/2016 17:21,24/11/2006 18:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5940,18/11/2016 17:15,16/11/2006 0:07,10.0,189, Numeric Errors,nan
CVE-2006-5937,18/11/2016 17:13,16/11/2006 0:07,7.5,190, Integer Overflow or Wraparound,nan
CVE-2013-1047,17/11/2016 20:44,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1501,17/11/2016 13:55,19/03/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-0856,17/11/2016 12:31,24/11/2015 20:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-4496,15/11/2016 20:10,16/08/2015 1:59,9.3,189, Numeric Errors,nan
CVE-2014-1506,15/11/2016 18:05,19/03/2014 10:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1507,15/11/2016 17:53,19/03/2014 10:55,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5455,14/11/2016 23:11,25/08/2014 16:55,6.9,428, Unquoted Search Path or Element,nan
CVE-2012-0206,9/11/2016 20:25,17/02/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2011-3691,8/11/2016 18:30,27/09/2011 19:55,9.3,426, Untrusted Search Path,nan
CVE-2016-4065,8/11/2016 17:55,22/04/2016 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0332,8/11/2016 17:47,25/02/2011 19:00,9.3,189, Numeric Errors,nan
CVE-2010-2598,8/11/2016 14:56,2/07/2010 12:43,4.3,20, Improper Input Validation,nan
CVE-2013-1431,8/11/2016 14:38,23/09/2013 20:55,6.8,20, Improper Input Validation,nan
CVE-2013-4984,8/11/2016 14:00,10/09/2013 11:28,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-8869,7/11/2016 19:15,4/11/2016 21:59,7.5,20, Improper Input Validation,nan
CVE-2000-0400,7/11/2016 18:25,13/05/2000 4:00,7.5,20, Improper Input Validation,nan
CVE-2013-3468,7/11/2016 15:02,29/08/2013 12:07,7.8,20, Improper Input Validation,nan
CVE-2013-3467,7/11/2016 15:02,30/08/2013 1:55,4.6,399, Resource Management Errors,nan
CVE-2013-3462,7/11/2016 15:02,25/08/2013 3:27,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3466,7/11/2016 14:59,29/08/2013 12:07,9.3,287, Improper Authentication,nan
CVE-2013-3463,7/11/2016 14:51,30/08/2013 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-3461,7/11/2016 14:47,25/08/2013 3:27,7.1,399, Resource Management Errors,nan
CVE-2013-3460,7/11/2016 14:44,25/08/2013 3:27,7.8,399, Resource Management Errors,nan
CVE-2013-3471,4/11/2016 19:52,29/08/2013 12:07,4.3,255, Credentials Management,nan
CVE-2013-3469,4/11/2016 19:52,4/09/2013 3:24,5.0,200, Information Exposure,nan
CVE-2013-3472,4/11/2016 19:48,29/08/2013 12:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5470,4/11/2016 19:46,4/09/2013 3:24,5.0,20, Improper Input Validation,nan
CVE-2013-3470,4/11/2016 19:46,30/08/2013 1:55,5.0,20, Improper Input Validation,nan
CVE-2016-4025,4/11/2016 19:03,3/11/2016 10:59,2.1,254, 7PK – Security Features,nan
CVE-2012-1313,4/11/2016 18:34,27/09/2013 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6706,2/11/2016 17:42,29/11/2013 4:33,5.4,20, Improper Input Validation,nan
CVE-2013-5507,1/11/2016 20:07,13/10/2013 10:20,7.1,310, Cryptographic Issues,nan
CVE-2013-3415,1/11/2016 20:07,13/10/2013 10:20,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5508,1/11/2016 18:45,13/10/2013 10:20,7.1,20, Improper Input Validation,nan
CVE-2013-5509,1/11/2016 18:40,13/10/2013 10:20,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5510,1/11/2016 18:39,13/10/2013 10:20,4.3,287, Improper Authentication,nan
CVE-2013-5511,1/11/2016 18:37,13/10/2013 10:20,10.0,287, Improper Authentication,nan
CVE-2013-5515,1/11/2016 18:07,13/10/2013 10:20,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5513,1/11/2016 18:07,13/10/2013 10:20,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5512,1/11/2016 18:07,13/10/2013 10:20,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-2185,1/11/2016 16:35,19/01/2014 18:02,7.5,20, Improper Input Validation,nan
CVE-2012-4081,31/10/2016 17:05,20/09/2013 18:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2696,27/10/2016 14:50,5/08/2010 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1000009,27/10/2016 1:59,6/10/2016 14:59,6.4,284, Improper Access Control,nan
CVE-2015-1000008,27/10/2016 1:59,6/10/2016 14:59,5.0,200, Information Exposure,nan
CVE-2015-1000007,27/10/2016 1:59,6/10/2016 14:59,5.0,285, Improper Authorization,nan
CVE-2015-1000000,27/10/2016 1:59,6/10/2016 14:59,5.0,434, Unrestricted Upload of File with Dangerous Type,nan
CVE-2014-8298,26/10/2016 2:00,10/12/2014 15:59,7.5,19, Data Processing Errors,nan
CVE-2014-7208,26/10/2016 2:00,19/12/2014 15:59,7.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-5459,26/10/2016 2:00,27/09/2014 10:55,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-5120,26/10/2016 2:00,23/08/2014 1:55,6.4,20, Improper Input Validation,nan
CVE-2012-2738,26/10/2016 1:59,22/07/2012 16:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3158,25/10/2016 1:59,15/11/2014 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1222,21/10/2016 16:15,5/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0973,20/10/2016 18:46,18/01/2015 18:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4327,19/10/2016 17:05,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-3959,19/10/2016 16:45,3/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2032,18/10/2016 15:11,18/11/2013 2:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9495,18/10/2016 3:45,10/01/2015 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3683,18/10/2016 3:44,2/11/2014 0:55,5.0,189, Numeric Errors,nan
CVE-2014-3670,18/10/2016 3:44,29/10/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3668,18/10/2016 3:44,29/10/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3634,18/10/2016 3:44,2/11/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3564,18/10/2016 3:44,20/10/2014 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7439,18/10/2016 3:43,16/04/2015 14:59,7.5,189, Numeric Errors,nan
CVE-2013-7393,18/10/2016 3:43,28/07/2014 19:55,2.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-4262,18/10/2016 3:43,28/07/2014 19:55,2.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2005-3775,18/10/2016 3:37,23/11/2005 1:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3571,18/10/2016 3:36,16/11/2005 7:42,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-3543,18/10/2016 3:36,16/11/2005 7:42,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3485,18/10/2016 3:35,3/11/2005 22:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3047,18/10/2016 3:32,24/09/2005 0:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3046,18/10/2016 3:32,24/09/2005 0:03,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-2983,18/10/2016 3:31,20/09/2005 0:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-2071,18/10/2016 3:24,29/06/2005 4:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-2033,18/10/2016 3:24,20/06/2005 4:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-1957,18/10/2016 3:23,12/06/2005 4:00,7.5,287, Improper Authentication,nan
CVE-2005-1770,18/10/2016 3:22,31/05/2005 4:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-1754,18/10/2016 3:22,31/12/2005 5:00,5.0,200, Information Exposure,nan
CVE-2005-1753,18/10/2016 3:22,31/12/2005 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2005-1682,18/10/2016 3:21,20/05/2005 4:00,2.1,20, Improper Input Validation,nan
CVE-2005-0896,18/10/2016 3:15,2/05/2005 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-0797,18/10/2016 3:14,15/03/2005 5:00,5.0,200, Information Exposure,nan
CVE-2004-2694,18/10/2016 3:07,31/12/2004 5:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2004-1926,18/10/2016 3:03,11/04/2004 4:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2004-1367,18/10/2016 2:53,4/08/2004 4:00,4.4,200, Information Exposure,nan
CVE-2003-1489,18/10/2016 2:39,31/12/2003 5:00,5.0,287, Improper Authentication,nan
CVE-2003-0795,18/10/2016 2:37,15/12/2003 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-0738,18/10/2016 2:37,20/10/2003 4:00,7.8,134, Use of Externally-Controlled Format String,nan
CVE-2003-0373,18/10/2016 2:33,16/06/2003 4:00,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0372,18/10/2016 2:33,16/06/2003 4:00,4.6,189, Numeric Errors,nan
CVE-2003-0310,18/10/2016 2:32,16/06/2003 4:00,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-0218,18/10/2016 2:30,12/05/2003 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0096,18/10/2016 2:29,3/03/2003 5:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0095,18/10/2016 2:29,3/03/2003 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2404,18/10/2016 2:28,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2400,18/10/2016 2:28,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2342,18/10/2016 2:28,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2340,18/10/2016 2:28,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-1203,18/10/2016 2:24,28/10/2002 5:00,5.0,399, Resource Management Errors,nan
CVE-2002-1200,18/10/2016 2:24,28/10/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-1175,18/10/2016 2:24,11/10/2002 4:00,5.0,20, Improper Input Validation,nan
CVE-2002-1174,18/10/2016 2:24,11/10/2002 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-0813,18/10/2016 2:22,12/08/2002 4:00,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-0270,18/10/2016 2:18,29/05/2002 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-0159,18/10/2016 2:16,22/04/2002 4:00,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2002-0083,18/10/2016 2:16,15/03/2002 5:00,10.0,189, Numeric Errors,nan
CVE-2001-1205,18/10/2016 2:14,30/12/2001 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-1999-1547,18/10/2016 2:05,25/11/1999 5:00,7.5,20, Improper Input Validation,nan
CVE-1999-0606,18/10/2016 1:59,1/04/1999 5:00,5.0,200, Information Exposure,nan
CVE-1999-0605,18/10/2016 1:59,1/04/1999 5:00,5.0,200, Information Exposure,nan
CVE-2015-3276,15/10/2016 2:01,7/12/2015 20:59,5.0,310, Cryptographic Issues,nan
CVE-2014-3647,15/10/2016 1:59,10/11/2014 11:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-3638,14/10/2016 13:04,13/10/2016 14:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0741,12/10/2016 2:01,19/04/2016 21:59,7.8,399, Resource Management Errors,nan
CVE-2012-3520,12/10/2016 1:59,3/10/2012 11:02,1.9,287, Improper Authentication,nan
CVE-2016-7424,11/10/2016 12:21,7/10/2016 14:59,4.3,476, NULL Pointer Dereference,nan
CVE-2013-6015,7/10/2016 1:59,17/10/2013 23:55,4.3,20, Improper Input Validation,nan
CVE-2010-2685,7/10/2016 1:59,12/07/2010 13:27,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-8278,6/10/2016 17:18,3/10/2016 21:59,7.8,20, Improper Input Validation,nan
CVE-2016-8277,6/10/2016 17:18,3/10/2016 21:59,6.8,20, Improper Input Validation,nan
CVE-2016-2307,5/10/2016 18:59,5/10/2016 10:59,5.0,200, Information Exposure,nan
CVE-2015-8875,5/10/2016 1:59,1/06/2016 22:59,6.8,189, Numeric Errors,nan
CVE-2016-7572,4/10/2016 18:06,3/10/2016 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-7571,4/10/2016 17:54,3/10/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7570,4/10/2016 17:42,3/10/2016 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-8276,4/10/2016 17:37,3/10/2016 21:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6801,4/10/2016 17:36,21/09/2016 14:25,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-8280,4/10/2016 17:32,3/10/2016 21:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1371,4/10/2016 15:20,3/10/2016 18:59,4.3,284, Improper Access Control,nan
CVE-2016-5398,4/10/2016 15:15,3/10/2016 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1372,4/10/2016 14:50,3/10/2016 18:59,4.3,284, Improper Access Control,nan
CVE-2013-4119,4/10/2016 14:40,3/10/2016 21:59,5.0,476, NULL Pointer Dereference,nan
CVE-2016-3698,4/10/2016 2:08,13/06/2016 19:59,6.8,284, Improper Access Control,nan
CVE-2015-0800,4/10/2016 2:02,1/04/2015 10:59,5.0,200, Information Exposure,nan
CVE-2014-2018,4/10/2016 2:01,17/02/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1595,4/10/2016 2:01,11/12/2014 11:59,2.1,199, Information Management Errors,nan
CVE-2013-6630,4/10/2016 1:59,19/11/2013 4:50,5.0,189, Numeric Errors,nan
CVE-2016-0883,3/10/2016 17:37,18/09/2016 2:59,5.0,287, Improper Authentication,nan
CVE-2016-0897,3/10/2016 17:34,18/09/2016 2:59,7.5,310, Cryptographic Issues,nan
CVE-2013-1830,3/10/2016 17:27,25/03/2013 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0059,1/10/2016 1:59,17/11/2014 22:59,2.1,200, Information Exposure,nan
CVE-2013-6114,30/09/2016 17:32,4/11/2013 15:55,5.0,190, Integer Overflow or Wraparound,nan
CVE-2016-7176,30/09/2016 15:13,9/09/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7175,30/09/2016 15:08,9/09/2016 10:59,4.3,125, Out-of-bounds Read,nan
CVE-2016-0927,30/09/2016 14:44,18/09/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3154,30/09/2016 14:33,5/10/2005 23:02,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2015-8336,30/09/2016 12:42,14/04/2016 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8304,30/09/2016 12:38,13/04/2016 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1038,29/09/2016 18:35,3/04/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-7177,29/09/2016 14:36,9/09/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-7180,29/09/2016 14:35,9/09/2016 10:59,4.3,416, Use After Free,nan
CVE-2016-7179,29/09/2016 14:35,9/09/2016 10:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5722,29/09/2016 14:34,24/06/2016 17:59,7.5,200, Information Exposure,nan
CVE-2016-7178,29/09/2016 14:33,9/09/2016 10:59,4.3,787, Out-of-bounds Write,nan
CVE-2012-2673,29/09/2016 1:59,25/07/2012 19:55,5.0,189, Numeric Errors,nan
CVE-2016-7142,28/09/2016 15:49,26/09/2016 15:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-5408,28/09/2016 15:42,10/08/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6913,28/09/2016 15:31,26/09/2016 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4972,28/09/2016 15:27,26/09/2016 16:59,7.5,20, Improper Input Validation,nan
CVE-2016-7162,28/09/2016 15:26,26/09/2016 15:59,5.0,20, Improper Input Validation,nan
CVE-2016-6146,28/09/2016 14:34,27/09/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-7498,28/09/2016 14:30,27/09/2016 15:59,6.8,399, Resource Management Errors,nan
CVE-2016-5974,28/09/2016 14:12,26/09/2016 4:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6840,28/09/2016 13:54,26/09/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-6826,28/09/2016 13:54,26/09/2016 16:59,7.1,284, Improper Access Control,nan
CVE-2016-6901,28/09/2016 13:51,26/09/2016 16:59,6.8,20, Improper Input Validation,nan
CVE-2016-6518,28/09/2016 13:48,26/09/2016 15:59,5.0,399, Resource Management Errors,nan
CVE-2016-3639,28/09/2016 13:28,26/09/2016 16:59,5.0,200, Information Exposure,nan
CVE-2016-6276,27/09/2016 16:41,26/09/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5395,27/09/2016 15:54,26/09/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4077,23/09/2016 16:44,14/10/2013 3:34,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4072,23/09/2016 16:34,20/09/2013 16:55,4.3,20, Improper Input Validation,nan
CVE-2012-4074,23/09/2016 16:22,20/09/2013 16:55,5.8,255, Credentials Management,nan
CVE-2016-5247,23/09/2016 15:34,22/09/2016 15:59,7.2,254, 7PK – Security Features,nan
CVE-2016-4564,23/09/2016 2:00,4/06/2016 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4563,23/09/2016 2:00,4/06/2016 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4562,23/09/2016 2:00,4/06/2016 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-6322,22/09/2016 17:57,22/09/2016 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-6340,22/09/2016 17:48,22/09/2016 15:59,2.1,254, 7PK – Security Features,nan
CVE-2013-5532,22/09/2016 17:48,11/10/2013 3:54,5.0,20, Improper Input Validation,nan
CVE-2013-5533,22/09/2016 17:46,11/10/2013 3:54,6.0,20, Improper Input Validation,nan
CVE-2013-5526,22/09/2016 17:46,10/10/2013 10:55,7.1,20, Improper Input Validation,nan
CVE-2013-1194,22/09/2016 17:37,18/04/2013 18:55,5.0,200, Information Exposure,nan
CVE-2012-4141,22/09/2016 17:35,5/10/2013 10:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-4136,22/09/2016 17:35,3/10/2013 11:03,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4107,22/09/2016 17:32,13/10/2013 10:20,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4095,22/09/2016 17:31,2/10/2013 22:55,5.5,20, Improper Input Validation,nan
CVE-2016-6824,22/09/2016 17:26,22/09/2016 15:59,6.8,20, Improper Input Validation,nan
CVE-2012-4088,22/09/2016 17:16,26/09/2013 14:16,4.3,255, Credentials Management,nan
CVE-2012-4106,22/09/2016 14:44,13/10/2013 10:20,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4105,22/09/2016 14:35,13/10/2013 10:19,4.6,20, Improper Input Validation,nan
CVE-2012-4099,22/09/2016 14:35,14/10/2013 3:34,4.3,20, Improper Input Validation,nan
CVE-2012-4097,22/09/2016 14:34,14/10/2013 3:34,4.3,20, Improper Input Validation,nan
CVE-2012-4093,22/09/2016 14:27,20/09/2013 16:55,4.6,20, Improper Input Validation,nan
CVE-2012-4092,22/09/2016 14:26,26/09/2013 14:16,5.8,20, Improper Input Validation,nan
CVE-2016-6158,22/09/2016 14:20,21/09/2016 14:25,7.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6159,22/09/2016 14:18,21/09/2016 14:25,6.8,287, Improper Authentication,nan
CVE-2012-4079,22/09/2016 14:10,26/09/2013 14:16,5.0,20, Improper Input Validation,nan
CVE-2013-5530,21/09/2016 20:37,25/10/2013 3:52,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-5559,21/09/2016 20:36,4/11/2013 16:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4967,21/09/2016 20:22,21/09/2016 14:25,4.0,200, Information Exposure,nan
CVE-2016-4968,21/09/2016 20:19,21/09/2016 14:25,4.0,200, Information Exposure,nan
CVE-2016-4969,21/09/2016 20:15,21/09/2016 14:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4966,21/09/2016 19:29,21/09/2016 14:25,4.0,287, Improper Authentication,nan
CVE-2016-4965,21/09/2016 19:28,21/09/2016 14:25,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-7327,21/09/2016 15:35,18/02/2014 11:55,6.8,20, Improper Input Validation,nan
CVE-2000-0368,21/09/2016 13:06,12/03/2001 5:00,2.1,200, Information Exposure,nan
CVE-2013-5502,20/09/2016 18:13,23/09/2013 10:18,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5332,20/09/2016 3:56,6/02/2015 11:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-5197,20/09/2016 3:56,23/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5196,20/09/2016 3:56,23/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5195,20/09/2016 3:55,23/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6711,16/09/2016 20:47,14/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6710,16/09/2016 20:47,14/12/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5486,16/09/2016 20:47,23/09/2013 10:18,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-3448,16/09/2016 20:45,2/08/2013 12:10,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3438,16/09/2016 18:03,24/07/2013 12:01,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3437,16/09/2016 18:03,23/07/2013 11:03,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3435,16/09/2016 17:53,23/07/2013 11:03,5.0,399, Resource Management Errors,nan
CVE-2013-6981,15/09/2016 19:24,28/12/2013 4:53,5.4,20, Improper Input Validation,nan
CVE-2013-6976,15/09/2016 19:23,19/12/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6709,15/09/2016 19:21,14/12/2013 22:55,5.0,200, Information Exposure,nan
CVE-2013-6705,15/09/2016 19:21,3/12/2013 19:56,6.1,20, Improper Input Validation,nan
CVE-2013-6704,15/09/2016 19:21,3/12/2013 19:56,7.1,399, Resource Management Errors,nan
CVE-2013-6703,15/09/2016 19:19,3/12/2013 19:56,7.1,20, Improper Input Validation,nan
CVE-2013-6702,15/09/2016 19:19,4/12/2013 18:56,4.3,20, Improper Input Validation,nan
CVE-2013-6701,15/09/2016 19:19,18/12/2013 16:04,5.0,20, Improper Input Validation,nan
CVE-2013-6690,15/09/2016 19:14,3/12/2013 19:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8227,13/09/2016 17:32,24/11/2015 20:59,8.5,20, Improper Input Validation,nan
CVE-2014-3802,9/09/2016 15:08,20/05/2014 23:55,6.8,20, Improper Input Validation,nan
CVE-2014-0739,9/09/2016 14:42,22/02/2014 21:55,4.3,287, Improper Authentication,nan
CVE-2014-0738,9/09/2016 14:42,22/02/2014 21:55,4.3,287, Improper Authentication,nan
CVE-2014-0731,9/09/2016 14:42,22/02/2014 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6974,9/09/2016 14:32,10/01/2014 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4073,9/09/2016 13:58,20/09/2013 16:55,5.8,310, Cryptographic Issues,nan
CVE-2016-6838,9/09/2016 3:15,7/09/2016 19:28,4.3,310, Cryptographic Issues,nan
CVE-2013-1944,9/09/2016 1:59,29/04/2013 22:55,5.0,200, Information Exposure,nan
CVE-2016-6825,8/09/2016 19:39,7/09/2016 19:28,5.0,285, Improper Authorization,nan
CVE-2016-6900,8/09/2016 19:19,7/09/2016 19:28,2.1,399, Resource Management Errors,nan
CVE-2016-6899,8/09/2016 19:17,7/09/2016 19:28,4.3,310, Cryptographic Issues,nan
CVE-2016-6670,8/09/2016 19:14,7/09/2016 19:28,5.0,200, Information Exposure,nan
CVE-2014-0720,8/09/2016 19:11,22/02/2014 21:55,7.1,20, Improper Input Validation,nan
CVE-2014-0718,8/09/2016 19:11,22/02/2014 21:55,7.1,20, Improper Input Validation,nan
CVE-2016-1241,8/09/2016 19:06,7/09/2016 19:28,3.5,200, Information Exposure,nan
CVE-2014-0719,8/09/2016 19:05,22/02/2014 21:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0709,8/09/2016 18:58,22/02/2014 21:55,9.3,255, Credentials Management,nan
CVE-2016-6181,8/09/2016 17:17,7/09/2016 19:28,6.9,284, Improper Access Control,nan
CVE-2016-6180,8/09/2016 17:17,7/09/2016 19:28,6.9,284, Improper Access Control,nan
CVE-2016-6184,8/09/2016 17:16,7/09/2016 19:28,6.9,284, Improper Access Control,nan
CVE-2016-6183,8/09/2016 17:16,7/09/2016 19:28,6.9,284, Improper Access Control,nan
CVE-2016-5422,8/09/2016 17:08,7/09/2016 19:28,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-6182,8/09/2016 16:33,7/09/2016 19:28,9.3,284, Improper Access Control,nan
CVE-2016-6898,8/09/2016 15:42,7/09/2016 19:28,4.9,284, Improper Access Control,nan
CVE-2016-6839,8/09/2016 15:34,7/09/2016 19:28,4.3,113, Improper Neutralization of CRLF Sequences in HTTP Headers (‘HTTP Response Splitting’),nan
CVE-2016-7108,8/09/2016 14:56,7/09/2016 19:28,4.0,200, Information Exposure,nan
CVE-2016-7109,8/09/2016 14:45,7/09/2016 19:28,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7110,8/09/2016 14:42,7/09/2016 19:28,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-7107,8/09/2016 14:03,7/09/2016 19:28,5.0,284, Improper Access Control,nan
CVE-2016-6345,8/09/2016 13:40,7/09/2016 18:59,4.0,200, Information Exposure,nan
CVE-2014-3295,8/09/2016 12:03,14/06/2014 4:26,4.8,287, Improper Authentication,nan
CVE-2014-3294,8/09/2016 12:03,10/06/2014 11:19,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3292,8/09/2016 11:08,10/06/2014 11:19,5.5,20, Improper Input Validation,nan
CVE-2014-3291,7/09/2016 19:11,8/06/2014 16:55,5.7,20, Improper Input Validation,nan
CVE-2014-9087,7/09/2016 19:03,1/12/2014 15:59,5.0,189, Numeric Errors,nan
CVE-2014-3287,7/09/2016 19:03,10/06/2014 11:19,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3286,7/09/2016 19:03,8/06/2014 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3285,7/09/2016 19:02,29/05/2014 17:55,5.0,20, Improper Input Validation,nan
CVE-2014-3284,7/09/2016 19:02,25/05/2014 22:55,6.1,20, Improper Input Validation,nan
CVE-2014-3283,7/09/2016 18:32,29/05/2014 17:55,5.8,20, Improper Input Validation,nan
CVE-2014-3282,7/09/2016 18:17,29/05/2014 17:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3280,7/09/2016 18:17,3/06/2014 4:44,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2199,7/09/2016 18:17,20/05/2014 11:13,5.0,200, Information Exposure,nan
CVE-2014-2196,7/09/2016 18:16,26/05/2014 0:25,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2176,7/09/2016 18:13,14/06/2014 11:18,7.1,399, Resource Management Errors,nan
CVE-2014-2151,7/09/2016 18:13,18/06/2014 16:55,4.0,20, Improper Input Validation,nan
CVE-2014-2121,7/09/2016 18:12,19/03/2014 1:15,5.0,20, Improper Input Validation,nan
CVE-2014-3277,7/09/2016 17:04,29/05/2014 17:55,4.0,287, Improper Authentication,nan
CVE-2014-3274,7/09/2016 17:04,26/05/2014 0:25,4.3,310, Cryptographic Issues,nan
CVE-2014-3276,7/09/2016 17:01,26/05/2014 0:25,4.0,399, Resource Management Errors,nan
CVE-2014-3273,7/09/2016 17:01,20/05/2014 11:13,6.1,20, Improper Input Validation,nan
CVE-2014-3272,7/09/2016 16:58,26/05/2014 0:25,6.0,20, Improper Input Validation,nan
CVE-2014-3271,7/09/2016 16:57,20/05/2014 11:13,5.0,20, Improper Input Validation,nan
CVE-2014-3270,7/09/2016 16:52,20/05/2014 11:13,5.0,20, Improper Input Validation,nan
CVE-2014-3267,7/09/2016 16:52,26/05/2014 0:25,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3265,7/09/2016 16:50,20/05/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3263,7/09/2016 16:36,16/05/2014 11:12,5.4,20, Improper Input Validation,nan
CVE-2014-3262,7/09/2016 16:23,16/05/2014 11:12,4.3,20, Improper Input Validation,nan
CVE-2014-3188,7/09/2016 15:32,8/10/2014 10:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1174,7/09/2016 15:27,31/03/2009 14:09,10.0,310, Cryptographic Issues,nan
CVE-2014-0636,6/09/2016 17:04,11/04/2014 19:55,5.8,310, Cryptographic Issues,nan
CVE-2014-8601,6/09/2016 14:30,10/12/2014 15:59,5.0,399, Resource Management Errors,nan
CVE-2014-4630,6/09/2016 14:15,30/12/2014 15:59,4.3,310, Cryptographic Issues,nan
CVE-2014-9517,6/09/2016 13:48,5/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7286,6/09/2016 13:46,22/12/2014 15:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9223,6/09/2016 13:44,24/12/2014 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4301,6/09/2016 13:38,18/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4303,6/09/2016 13:33,18/06/2014 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3290,6/09/2016 13:33,14/06/2014 11:18,4.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-3214,6/09/2016 13:32,9/05/2014 1:55,5.0,20, Improper Input Validation,nan
CVE-2014-4304,6/09/2016 13:31,18/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2313,6/09/2016 13:25,13/06/2012 10:24,1.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3922,6/09/2016 13:21,30/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2779,2/09/2016 21:40,18/06/2014 16:55,4.3,20, Improper Input Validation,nan
CVE-2012-6684,2/09/2016 12:54,8/01/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8923,31/08/2016 15:17,25/03/2015 1:59,1.9,200, Information Exposure,nan
CVE-2014-7300,31/08/2016 15:08,25/12/2014 21:59,7.2,399, Resource Management Errors,nan
CVE-2014-1829,30/08/2016 17:11,15/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-7204,30/08/2016 14:10,7/10/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2015-5399,29/08/2016 15:15,26/08/2016 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6892,26/08/2016 19:25,21/01/2015 18:59,3.5,200, Information Exposure,nan
CVE-2016-5383,26/08/2016 19:12,26/08/2016 14:59,6.5,284, Improper Access Control,nan
CVE-2014-9206,26/08/2016 18:55,14/03/2015 1:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0189,26/08/2016 12:02,2/05/2014 14:55,2.1,310, Cryptographic Issues,nan
CVE-2015-0528,24/08/2016 19:28,29/03/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0523,24/08/2016 19:26,12/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2014-7145,24/08/2016 17:54,28/09/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-0159,24/08/2016 15:32,14/04/2014 15:09,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4135,24/08/2016 15:31,5/11/2013 21:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4134,24/08/2016 15:30,5/11/2013 21:55,4.3,310, Cryptographic Issues,nan
CVE-2016-4369,24/08/2016 1:59,8/06/2016 15:00,6.5,284, Improper Access Control,nan
CVE-2016-4367,24/08/2016 1:59,8/06/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-4363,24/08/2016 1:59,8/06/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0529,23/08/2016 18:00,5/04/2015 1:59,5.0,255, Credentials Management,nan
CVE-2014-9472,23/08/2016 17:45,9/03/2015 14:59,7.1,399, Resource Management Errors,nan
CVE-2016-6493,23/08/2016 15:02,19/08/2016 21:59,7.5,254, 7PK – Security Features,nan
CVE-2015-7558,23/08/2016 14:50,20/05/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2014-3994,23/08/2016 14:49,16/06/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2027,23/08/2016 13:18,8/06/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2026,23/08/2016 13:17,8/06/2016 14:59,5.0,200, Information Exposure,nan
CVE-2014-6410,23/08/2016 2:08,28/09/2014 10:55,4.7,399, Resource Management Errors,nan
CVE-2014-3688,23/08/2016 2:08,30/11/2014 1:59,5.0,399, Resource Management Errors,nan
CVE-2014-3673,23/08/2016 2:08,10/11/2014 11:55,7.8,399, Resource Management Errors,nan
CVE-2014-2324,23/08/2016 2:07,14/03/2014 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2323,23/08/2016 2:07,14/03/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6657,23/08/2016 2:06,28/09/2014 10:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2384,23/08/2016 2:05,13/06/2012 10:24,4.9,189, Numeric Errors,nan
CVE-2012-2383,23/08/2016 2:05,13/06/2012 10:24,4.9,189, Numeric Errors,nan
CVE-2012-2375,23/08/2016 2:05,13/06/2012 10:24,4.6,189, Numeric Errors,nan
CVE-2012-2373,23/08/2016 2:05,9/08/2012 10:29,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2137,23/08/2016 2:05,22/01/2013 23:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1583,23/08/2016 2:05,16/06/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2012-1088,23/08/2016 2:05,15/02/2014 14:57,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-0058,23/08/2016 2:04,17/05/2012 11:00,4.9,399, Resource Management Errors,nan
CVE-2012-0050,23/08/2016 2:04,19/01/2012 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-4619,23/08/2016 2:04,6/01/2012 1:55,5.0,399, Resource Management Errors,nan
CVE-2011-4576,23/08/2016 2:04,6/01/2012 1:55,5.0,310, Cryptographic Issues,nan
CVE-2011-4110,23/08/2016 2:04,27/01/2012 15:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-4108,23/08/2016 2:04,6/01/2012 1:55,4.3,310, Cryptographic Issues,nan
CVE-2011-4077,23/08/2016 2:04,27/01/2012 15:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2723,23/08/2016 2:03,6/09/2011 15:55,5.7,399, Resource Management Errors,nan
CVE-2011-2518,23/08/2016 2:03,24/05/2012 23:55,4.9,20, Improper Input Validation,nan
CVE-2011-2492,23/08/2016 2:03,28/07/2011 22:55,1.9,200, Information Exposure,nan
CVE-2011-2213,23/08/2016 2:03,29/08/2011 18:55,4.9,399, Resource Management Errors,nan
CVE-2011-0923,23/08/2016 2:03,9/02/2011 1:00,10.0,20, Improper Input Validation,nan
CVE-2011-0921,23/08/2016 2:03,9/02/2011 1:00,10.0,20, Improper Input Validation,nan
CVE-2011-0546,23/08/2016 2:03,31/05/2011 20:55,6.5,20, Improper Input Validation,nan
CVE-2010-3710,23/08/2016 2:02,25/10/2010 20:01,4.3,399, Resource Management Errors,nan
CVE-2010-3709,23/08/2016 2:02,9/11/2010 1:00,4.3,20, Improper Input Validation,nan
CVE-2010-2531,23/08/2016 2:01,20/08/2010 22:00,4.3,200, Information Exposure,nan
CVE-2010-2484,23/08/2016 2:01,20/08/2010 22:00,5.0,200, Information Exposure,nan
CVE-2010-2101,23/08/2016 2:01,27/05/2010 22:30,5.0,200, Information Exposure,nan
CVE-2010-2100,23/08/2016 2:01,27/05/2010 22:30,5.0,200, Information Exposure,nan
CVE-2010-2097,23/08/2016 2:01,27/05/2010 22:30,5.0,200, Information Exposure,nan
CVE-2010-1864,23/08/2016 2:01,7/05/2010 23:00,5.0,200, Information Exposure,nan
CVE-2010-1862,23/08/2016 2:01,7/05/2010 23:00,5.0,200, Information Exposure,nan
CVE-2010-1860,23/08/2016 2:01,7/05/2010 23:00,5.0,200, Information Exposure,nan
CVE-2009-0158,23/08/2016 1:59,13/05/2009 15:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0760,22/08/2016 17:43,19/08/2016 21:59,6.5,284, Improper Access Control,nan
CVE-2016-5817,22/08/2016 17:02,22/08/2016 10:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5689,19/08/2016 18:31,25/01/2013 12:00,7.1,20, Improper Input Validation,nan
CVE-2016-5021,18/08/2016 17:09,24/06/2016 17:59,4.0,200, Information Exposure,nan
CVE-2016-3949,18/08/2016 16:36,27/06/2016 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-8229,18/08/2016 16:34,24/11/2015 20:59,4.0,20, Improper Input Validation,nan
CVE-2016-2901,18/08/2016 15:23,26/06/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2442,18/08/2016 15:21,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2427,18/08/2016 15:03,18/04/2016 0:59,4.3,200, Information Exposure,nan
CVE-2014-5370,18/08/2016 14:59,21/04/2015 15:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0929,18/08/2016 14:52,21/01/2013 21:55,7.6,134, Use of Externally-Controlled Format String,nan
CVE-2012-6086,18/08/2016 14:48,29/01/2014 18:55,4.3,310, Cryptographic Issues,nan
CVE-2011-4914,18/08/2016 14:41,21/06/2012 23:55,6.4,20, Improper Input Validation,nan
CVE-2011-4913,18/08/2016 14:41,21/06/2012 23:55,7.8,20, Improper Input Validation,nan
CVE-2016-2044,17/08/2016 19:37,20/02/2016 1:59,5.0,200, Information Exposure,nan
CVE-2012-2149,17/08/2016 18:38,21/06/2012 15:55,7.5,189, Numeric Errors,nan
CVE-2009-3569,17/08/2016 18:13,6/10/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5671,16/08/2016 15:42,3/08/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2441,16/08/2016 12:41,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-5640,15/08/2016 15:42,3/08/2016 1:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-5670,15/08/2016 15:08,3/08/2016 1:59,10.0,255, Credentials Management,nan
CVE-2016-6257,12/08/2016 16:27,2/08/2016 14:59,3.3,310, Cryptographic Issues,nan
CVE-2016-1278,12/08/2016 13:41,5/08/2016 15:59,6.9,287, Improper Authentication,nan
CVE-2014-9717,12/08/2016 1:59,2/05/2016 10:59,3.6,284, Improper Access Control,nan
CVE-2016-4999,11/08/2016 15:59,5/08/2016 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9410,11/08/2016 15:46,7/08/2016 21:59,7.2,20, Improper Input Validation,nan
CVE-2015-0573,11/08/2016 15:05,7/08/2016 21:59,10.0,476, NULL Pointer Dereference,nan
CVE-2016-3640,11/08/2016 14:12,5/08/2016 14:59,2.1,200, Information Exposure,nan
CVE-2016-6162,10/08/2016 18:35,6/08/2016 20:59,4.6,20, Improper Input Validation,nan
CVE-2015-3854,10/08/2016 17:42,7/08/2016 21:59,5.0,284, Improper Access Control,nan
CVE-2016-3857,10/08/2016 15:33,5/08/2016 20:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8945,5/08/2016 19:15,5/08/2016 15:59,1.9,255, Credentials Management,nan
CVE-2016-5392,5/08/2016 18:46,5/08/2016 15:59,6.8,200, Information Exposure,nan
CVE-2016-3097,5/08/2016 18:45,5/08/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3080,5/08/2016 17:57,5/08/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5220,4/08/2016 18:43,27/10/2015 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1335,4/08/2016 18:21,19/02/2016 19:59,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-1390,4/08/2016 3:37,4/06/2016 1:59,7.2,20, Improper Input Validation,nan
CVE-2015-8837,4/08/2016 3:33,30/03/2016 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1900,4/08/2016 3:28,29/06/2015 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1895,4/08/2016 3:26,25/05/2015 0:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1894,4/08/2016 3:26,25/05/2015 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1893,4/08/2016 3:26,6/04/2015 0:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1892,4/08/2016 3:25,1/04/2015 2:00,5.0,200, Information Exposure,nan
CVE-2015-1890,4/08/2016 3:25,6/04/2015 0:59,3.5,200, Information Exposure,nan
CVE-2015-1886,4/08/2016 3:22,27/04/2015 11:59,7.8,399, Resource Management Errors,nan
CVE-2015-1882,4/08/2016 3:18,27/04/2015 12:59,8.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-1875,4/08/2016 3:17,11/03/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1874,4/08/2016 3:17,9/03/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-6259,4/08/2016 3:15,2/08/2016 16:59,4.9,20, Improper Input Validation,nan
CVE-2016-6178,3/08/2016 17:30,2/08/2016 16:59,7.5,20, Improper Input Validation,nan
CVE-2016-6192,3/08/2016 14:51,2/08/2016 16:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2045,2/08/2016 18:42,20/02/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1846,2/08/2016 14:43,19/05/2015 18:59,7.8,399, Resource Management Errors,nan
CVE-2015-1845,2/08/2016 14:42,19/05/2015 18:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7252,2/08/2016 13:58,18/01/2015 18:59,5.0,310, Cryptographic Issues,nan
CVE-2011-4620,2/08/2016 13:35,31/12/2011 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1605,1/08/2016 15:02,1/08/2016 2:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2809,29/07/2016 19:08,1/04/2015 2:00,5.0,200, Information Exposure,nan
CVE-2016-1340,29/07/2016 16:32,16/04/2016 1:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1339,29/07/2016 16:31,16/04/2016 1:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-8708,28/07/2016 20:07,11/04/2016 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8946,27/07/2016 15:46,22/07/2016 14:59,2.1,20, Improper Input Validation,nan
CVE-2014-3686,27/07/2016 1:59,16/10/2014 0:55,6.8,20, Improper Input Validation,nan
CVE-2015-1843,26/07/2016 1:59,6/04/2015 15:59,4.3,20, Improper Input Validation,nan
CVE-2015-1842,26/07/2016 1:59,10/04/2015 15:00,10.0,255, Credentials Management,nan
CVE-2015-1977,18/07/2016 18:22,15/07/2016 18:59,5.0,200, Information Exposure,nan
CVE-2016-1451,18/07/2016 15:08,15/07/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1909,15/07/2016 15:42,15/01/2016 20:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8764,15/07/2016 15:19,22/10/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2014-8763,15/07/2016 15:19,22/10/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2014-3678,15/07/2016 15:01,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6374,15/07/2016 15:00,25/11/2013 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6373,15/07/2016 14:59,25/11/2013 19:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2034,15/07/2016 14:32,14/05/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-5850,14/07/2016 21:19,12/07/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4985,14/07/2016 21:10,12/07/2016 19:59,5.0,200, Information Exposure,nan
CVE-2016-5109,14/07/2016 19:04,13/07/2016 15:59,2.1,284, Improper Access Control,nan
CVE-2016-2219,14/07/2016 15:21,12/07/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5092,14/07/2016 15:17,13/07/2016 15:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0974,13/07/2016 18:27,25/08/2014 1:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0973,13/07/2016 18:26,25/08/2014 1:55,7.2,287, Improper Authentication,nan
CVE-2016-3795,12/07/2016 18:09,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3771,12/07/2016 18:09,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3807,12/07/2016 17:58,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3812,12/07/2016 17:57,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3809,12/07/2016 17:57,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3805,12/07/2016 17:54,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3810,12/07/2016 17:53,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3813,12/07/2016 17:52,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3811,12/07/2016 17:52,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3799,12/07/2016 17:52,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3798,12/07/2016 17:51,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3804,12/07/2016 17:50,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3800,12/07/2016 17:50,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3802,12/07/2016 17:49,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3801,12/07/2016 17:49,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3803,12/07/2016 17:48,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3818,12/07/2016 17:41,11/07/2016 2:00,7.1,284, Improper Access Control,nan
CVE-2016-3816,12/07/2016 17:40,11/07/2016 2:00,4.3,200, Information Exposure,nan
CVE-2016-3808,12/07/2016 17:40,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3806,12/07/2016 17:39,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3792,12/07/2016 17:36,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3772,12/07/2016 17:36,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3770,12/07/2016 17:31,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3796,12/07/2016 17:16,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3767,12/07/2016 17:14,11/07/2016 2:00,9.3,399, Resource Management Errors,nan
CVE-2016-3766,12/07/2016 17:13,11/07/2016 2:00,7.8,20, Improper Input Validation,nan
CVE-2016-3765,12/07/2016 17:12,11/07/2016 2:00,6.4,399, Resource Management Errors,nan
CVE-2016-3764,12/07/2016 17:11,11/07/2016 2:00,5.0,20, Improper Input Validation,nan
CVE-2016-2457,12/07/2016 17:11,9/05/2016 10:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-3775,12/07/2016 17:06,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3773,12/07/2016 14:58,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3768,12/07/2016 14:57,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3774,12/07/2016 14:53,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3769,12/07/2016 14:51,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3763,12/07/2016 14:32,11/07/2016 2:00,5.0,20, Improper Input Validation,nan
CVE-2016-3762,12/07/2016 14:25,11/07/2016 2:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3761,12/07/2016 14:10,11/07/2016 2:00,2.1,200, Information Exposure,nan
CVE-2016-3760,12/07/2016 14:05,11/07/2016 2:00,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-3758,12/07/2016 14:03,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3759,12/07/2016 13:57,11/07/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-2508,12/07/2016 13:56,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2507,12/07/2016 13:55,11/07/2016 1:59,9.3,189, Numeric Errors,nan
CVE-2016-2505,12/07/2016 13:53,11/07/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9803,12/07/2016 13:52,11/07/2016 1:59,9.3,19, Data Processing Errors,nan
CVE-2016-2502,11/07/2016 18:53,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3742,11/07/2016 18:46,11/07/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-2501,11/07/2016 18:45,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3749,11/07/2016 18:44,11/07/2016 1:59,4.6,255, Credentials Management,nan
CVE-2016-2503,11/07/2016 18:43,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3752,11/07/2016 18:30,11/07/2016 1:59,7.5,254, 7PK – Security Features,nan
CVE-2016-2067,11/07/2016 18:29,11/07/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3748,11/07/2016 18:28,11/07/2016 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3744,11/07/2016 18:28,11/07/2016 1:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-3743,11/07/2016 18:24,11/07/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-3741,11/07/2016 18:23,11/07/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-3755,11/07/2016 17:57,11/07/2016 1:59,7.8,20, Improper Input Validation,nan
CVE-2016-3753,11/07/2016 17:43,11/07/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-3756,11/07/2016 17:41,11/07/2016 1:59,7.8,20, Improper Input Validation,nan
CVE-2016-3750,11/07/2016 17:41,11/07/2016 1:59,7.5,20, Improper Input Validation,nan
CVE-2016-3757,11/07/2016 17:25,11/07/2016 1:59,5.9,20, Improper Input Validation,nan
CVE-2016-3745,11/07/2016 17:23,11/07/2016 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2506,11/07/2016 17:22,11/07/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2068,11/07/2016 17:13,11/07/2016 1:59,9.3,189, Numeric Errors,nan
CVE-2014-9798,11/07/2016 17:11,11/07/2016 1:59,7.1,284, Improper Access Control,nan
CVE-2015-8893,11/07/2016 14:36,11/07/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3754,11/07/2016 14:24,11/07/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-0350,8/07/2016 17:13,8/07/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2888,8/07/2016 17:07,8/07/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0315,8/07/2016 17:07,8/07/2016 1:59,6.5,284, Improper Access Control,nan
CVE-2016-3956,8/07/2016 15:42,2/07/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2961,8/07/2016 15:35,2/07/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-0271,8/07/2016 15:33,8/07/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0252,8/07/2016 15:31,8/07/2016 1:59,1.9,200, Information Exposure,nan
CVE-2016-0375,8/07/2016 15:22,1/07/2016 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0313,8/07/2016 15:21,8/07/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5248,8/07/2016 13:59,30/06/2016 16:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-1228,8/07/2016 13:48,3/07/2016 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4507,8/07/2016 13:27,6/07/2016 14:59,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1443,8/07/2016 13:23,7/07/2016 14:59,6.8,254, 7PK – Security Features,nan
CVE-2016-4508,8/07/2016 13:20,6/07/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3988,8/07/2016 12:44,3/07/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0391,7/07/2016 18:03,2/07/2016 14:59,7.5,284, Improper Access Control,nan
CVE-2016-2968,6/07/2016 23:40,2/07/2016 14:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-0386,6/07/2016 11:52,2/07/2016 14:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4474,6/07/2016 11:51,30/06/2016 16:59,3.3,254, 7PK – Security Features,nan
CVE-2016-0399,6/07/2016 11:30,2/07/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2867,6/07/2016 11:28,2/07/2016 14:59,6.9,254, 7PK – Security Features,nan
CVE-2016-2861,6/07/2016 11:26,2/07/2016 14:59,4.3,200, Information Exposure,nan
CVE-2016-0398,5/07/2016 23:51,2/07/2016 14:59,4.3,20, Improper Input Validation,nan
CVE-2016-2872,5/07/2016 18:29,2/07/2016 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-5360,1/07/2016 22:28,30/06/2016 17:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-5249,1/07/2016 18:45,30/06/2016 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0374,1/07/2016 17:31,1/07/2016 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-0364,1/07/2016 13:55,1/07/2016 1:59,4.0,200, Information Exposure,nan
CVE-2014-9039,30/06/2016 17:06,25/11/2014 23:59,4.3,254, 7PK – Security Features,nan
CVE-2014-9037,30/06/2016 16:58,25/11/2014 23:59,6.8,310, Cryptographic Issues,nan
CVE-2014-8112,30/06/2016 16:55,10/03/2015 14:59,4.0,200, Information Exposure,nan
CVE-2014-8105,30/06/2016 16:53,10/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2014-3424,30/06/2016 16:25,8/05/2014 10:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3423,30/06/2016 16:23,8/05/2014 10:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3422,30/06/2016 16:20,8/05/2014 10:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3421,30/06/2016 16:12,8/05/2014 10:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-2925,30/06/2016 16:00,22/04/2014 13:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2719,30/06/2016 15:59,22/04/2014 13:06,6.3,200, Information Exposure,nan
CVE-2013-5948,30/06/2016 15:54,22/04/2014 13:06,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-0260,30/06/2016 15:44,29/06/2016 1:59,5.0,399, Resource Management Errors,nan
CVE-2016-0322,30/06/2016 13:08,30/06/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0267,29/06/2016 17:29,29/06/2016 1:59,4.0,200, Information Exposure,nan
CVE-2016-0298,29/06/2016 16:53,29/06/2016 1:59,4.0,200, Information Exposure,nan
CVE-2014-4872,29/06/2016 14:33,10/10/2014 10:55,7.5,287, Improper Authentication,nan
CVE-2014-4874,28/06/2016 18:24,10/10/2014 10:55,4.0,200, Information Exposure,nan
CVE-2015-0257,28/06/2016 18:23,1/05/2015 15:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-0844,28/06/2016 18:21,14/04/2015 18:59,5.0,200, Information Exposure,nan
CVE-2016-5087,28/06/2016 17:23,26/06/2016 1:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-4513,28/06/2016 15:22,26/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0229,28/06/2016 14:58,28/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0224,28/06/2016 14:58,28/06/2016 1:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0233,28/06/2016 13:58,28/06/2016 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4824,28/06/2016 0:33,25/06/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-4825,28/06/2016 0:32,25/06/2016 21:59,6.8,20, Improper Input Validation,nan
CVE-2016-4826,28/06/2016 0:31,25/06/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4822,28/06/2016 0:28,25/06/2016 21:59,5.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-5435,28/06/2016 0:23,24/06/2016 17:59,7.1,399, Resource Management Errors,nan
CVE-2016-4827,28/06/2016 0:02,25/06/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2686,27/06/2016 23:57,2/05/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-5723,27/06/2016 18:44,24/06/2016 17:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1193,27/06/2016 18:43,25/06/2016 21:59,5.0,200, Information Exposure,nan
CVE-2016-4828,27/06/2016 18:22,25/06/2016 21:59,6.4,19, Data Processing Errors,nan
CVE-2016-1190,27/06/2016 18:20,25/06/2016 21:59,4.0,284, Improper Access Control,nan
CVE-2016-4440,27/06/2016 17:59,27/06/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3713,27/06/2016 17:57,27/06/2016 10:59,5.6,284, Improper Access Control,nan
CVE-2016-4528,27/06/2016 17:14,25/06/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4703,27/06/2016 14:34,12/01/2016 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4467,27/06/2016 14:31,11/06/2015 14:59,4.3,189, Numeric Errors,nan
CVE-2015-4396,27/06/2016 14:31,15/06/2015 14:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9714,24/06/2016 15:55,13/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5240,24/06/2016 15:53,27/10/2015 16:59,3.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9718,23/06/2016 18:30,21/04/2015 16:59,4.9,399, Resource Management Errors,nan
CVE-2015-2149,23/06/2016 17:55,18/03/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1209,23/06/2016 17:54,14/05/2016 15:59,7.5,20, Improper Input Validation,nan
CVE-2016-4530,23/06/2016 12:02,19/06/2016 20:59,4.0,20, Improper Input Validation,nan
CVE-2014-9712,23/06/2016 12:00,27/03/2015 14:59,4.0,200, Information Exposure,nan
CVE-2014-8242,23/06/2016 12:00,26/10/2015 17:59,5.8,310, Cryptographic Issues,nan
CVE-2016-1183,23/06/2016 11:58,19/06/2016 1:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-6060,23/06/2016 11:56,4/09/2014 17:55,3.3,399, Resource Management Errors,nan
CVE-2016-1862,22/06/2016 11:56,19/06/2016 20:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1860,22/06/2016 11:56,19/06/2016 20:59,4.3,254, 7PK – Security Features,nan
CVE-2016-4518,21/06/2016 22:49,19/06/2016 20:59,4.0,20, Improper Input Validation,nan
CVE-2015-8289,21/06/2016 22:02,20/06/2016 1:59,4.3,255, Credentials Management,nan
CVE-2016-4814,21/06/2016 21:58,19/06/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4811,21/06/2016 21:42,19/06/2016 20:59,5.1,284, Improper Access Control,nan
CVE-2016-2363,21/06/2016 18:59,20/06/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-4514,21/06/2016 18:37,19/06/2016 20:59,4.6,284, Improper Access Control,nan
CVE-2016-1197,21/06/2016 18:14,19/06/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1196,21/06/2016 18:13,19/06/2016 20:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1192,21/06/2016 18:12,19/06/2016 20:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1191,21/06/2016 18:11,19/06/2016 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7776,21/06/2016 18:01,19/06/2016 20:59,4.3,200, Information Exposure,nan
CVE-2015-7775,21/06/2016 17:55,19/06/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4820,21/06/2016 17:48,19/06/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4813,21/06/2016 13:52,19/06/2016 1:59,9.0,284, Improper Access Control,nan
CVE-2016-4816,21/06/2016 13:09,19/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-4815,21/06/2016 13:04,19/06/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1224,21/06/2016 13:01,19/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1223,21/06/2016 13:00,19/06/2016 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1424,20/06/2016 23:32,19/06/2016 1:59,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1431,20/06/2016 23:29,18/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1432,20/06/2016 23:26,18/06/2016 1:59,6.8,399, Resource Management Errors,nan
CVE-2016-4158,20/06/2016 13:44,16/06/2016 14:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-5433,20/06/2016 12:46,17/06/2016 15:59,5.8,310, Cryptographic Issues,nan
CVE-2016-3670,20/06/2016 12:35,13/06/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-5302,20/06/2016 12:23,13/06/2016 14:59,7.5,284, Improper Access Control,nan
CVE-2016-4167,17/06/2016 13:21,16/06/2016 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4165,17/06/2016 13:13,16/06/2016 14:59,10.0,20, Improper Input Validation,nan
CVE-2016-4164,17/06/2016 13:13,16/06/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4157,17/06/2016 13:09,16/06/2016 14:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-4511,17/06/2016 13:00,10/06/2016 1:59,1.9,310, Cryptographic Issues,nan
CVE-2014-5704,17/06/2016 2:00,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2013-4545,17/06/2016 1:59,23/11/2013 11:55,4.3,310, Cryptographic Issues,nan
CVE-2011-1944,17/06/2016 1:59,2/09/2011 16:55,9.3,189, Numeric Errors,nan
CVE-2016-2492,16/06/2016 14:14,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4527,15/06/2016 18:48,10/06/2016 1:59,1.9,255, Credentials Management,nan
CVE-2016-4524,15/06/2016 18:48,10/06/2016 1:59,2.1,310, Cryptographic Issues,nan
CVE-2016-4021,15/06/2016 18:45,26/05/2016 14:59,7.8,399, Resource Management Errors,nan
CVE-2016-1418,15/06/2016 18:42,8/06/2016 14:59,7.2,20, Improper Input Validation,nan
CVE-2016-4516,15/06/2016 18:41,10/06/2016 1:59,2.1,200, Information Exposure,nan
CVE-2015-5318,15/06/2016 17:14,25/11/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5317,15/06/2016 17:13,25/11/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-1814,15/06/2016 17:04,16/10/2015 20:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1812,15/06/2016 17:02,16/10/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1808,15/06/2016 17:01,16/10/2015 20:59,3.5,20, Improper Input Validation,nan
CVE-2016-2500,15/06/2016 16:58,13/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2015-1807,15/06/2016 16:58,16/10/2015 20:59,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1231,15/06/2016 16:48,12/01/2016 20:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1806,15/06/2016 16:48,16/10/2015 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7528,15/06/2016 16:32,11/04/2016 21:59,5.0,200, Information Exposure,nan
CVE-2007-4629,15/06/2016 16:28,31/08/2007 1:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1813,15/06/2016 14:35,16/10/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1810,15/06/2016 14:35,16/10/2015 20:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-3680,15/06/2016 14:34,16/10/2014 19:55,4.0,200, Information Exposure,nan
CVE-2014-3667,15/06/2016 14:34,16/10/2014 19:55,4.0,200, Information Exposure,nan
CVE-2014-3666,15/06/2016 14:33,16/10/2014 19:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3665,15/06/2016 14:01,25/11/2015 20:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-3663,15/06/2016 13:36,16/10/2014 19:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4420,15/06/2016 13:22,18/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1905,15/06/2016 12:32,3/02/2016 18:59,4.0,284, Improper Access Control,nan
CVE-2011-5165,15/06/2016 12:26,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3662,14/06/2016 18:48,16/10/2014 19:55,5.0,200, Information Exposure,nan
CVE-2016-5365,14/06/2016 18:37,14/06/2016 14:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-5366,14/06/2016 18:31,14/06/2016 14:59,5.0,284, Improper Access Control,nan
CVE-2016-5367,14/06/2016 18:30,14/06/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2785,14/06/2016 14:32,10/06/2016 15:59,7.5,284, Improper Access Control,nan
CVE-2016-2061,14/06/2016 14:15,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2493,14/06/2016 13:39,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2490,14/06/2016 13:20,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2488,14/06/2016 13:17,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2489,14/06/2016 13:15,13/06/2016 1:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2496,14/06/2016 13:10,13/06/2016 1:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2463,14/06/2016 13:08,13/06/2016 1:59,7.5,189, Numeric Errors,nan
CVE-2016-2495,14/06/2016 12:53,13/06/2016 1:59,7.1,20, Improper Input Validation,nan
CVE-2016-2498,14/06/2016 12:45,13/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-2499,14/06/2016 12:44,13/06/2016 1:59,4.3,200, Information Exposure,nan
CVE-2016-2174,14/06/2016 12:33,13/06/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4355,14/06/2016 12:27,13/06/2016 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4354,14/06/2016 12:27,13/06/2016 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4353,14/06/2016 11:57,13/06/2016 19:59,5.0,20, Improper Input Validation,nan
CVE-2016-4356,14/06/2016 11:56,13/06/2016 19:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4495,14/06/2016 11:42,10/06/2016 1:59,5.0,310, Cryptographic Issues,nan
CVE-2016-2464,14/06/2016 11:34,13/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-2475,14/06/2016 11:31,13/06/2016 1:59,6.8,20, Improper Input Validation,nan
CVE-2015-5320,14/06/2016 0:52,25/11/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-5321,14/06/2016 0:51,25/11/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-5322,14/06/2016 0:49,25/11/2015 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5323,14/06/2016 0:48,25/11/2015 20:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-5324,14/06/2016 0:20,25/11/2015 20:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5325,14/06/2016 0:19,25/11/2015 20:59,7.5,284, Improper Access Control,nan
CVE-2015-5326,14/06/2016 0:15,25/11/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7536,14/06/2016 0:14,3/02/2016 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7537,14/06/2016 0:13,3/02/2016 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7539,14/06/2016 0:09,3/02/2016 18:59,7.6,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-3661,13/06/2016 23:45,16/10/2014 19:55,5.0,399, Resource Management Errors,nan
CVE-2014-2068,13/06/2016 23:43,17/10/2014 15:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2066,13/06/2016 23:40,17/10/2014 15:55,6.8,287, Improper Authentication,nan
CVE-2014-2065,13/06/2016 23:39,17/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2064,13/06/2016 23:38,17/10/2014 15:55,5.0,200, Information Exposure,nan
CVE-2014-2062,13/06/2016 23:36,17/10/2014 15:55,6.5,287, Improper Authentication,nan
CVE-2014-2061,13/06/2016 23:35,17/10/2014 15:55,5.0,310, Cryptographic Issues,nan
CVE-2014-2058,13/06/2016 23:32,17/10/2014 15:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7330,13/06/2016 23:27,17/10/2014 15:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0331,13/06/2016 23:25,19/03/2013 14:55,4.0,20, Improper Input Validation,nan
CVE-2016-2484,13/06/2016 18:29,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2481,13/06/2016 18:28,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2482,13/06/2016 18:26,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2486,13/06/2016 18:25,13/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-2479,13/06/2016 18:25,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2485,13/06/2016 18:24,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2483,13/06/2016 18:23,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2476,13/06/2016 18:23,13/06/2016 1:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2478,13/06/2016 18:22,13/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-2487,13/06/2016 18:21,13/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-2480,13/06/2016 18:21,13/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2013-0328,13/06/2016 15:47,19/03/2013 14:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0327,13/06/2016 15:45,19/03/2013 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4344,13/06/2016 15:28,1/12/2011 11:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2477,13/06/2016 15:22,13/06/2016 1:59,9.3,20, Improper Input Validation,nan
CVE-2016-4494,10/06/2016 21:55,10/06/2016 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1421,10/06/2016 21:50,10/06/2016 1:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8268,10/06/2016 21:25,10/06/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-4368,10/06/2016 14:38,8/06/2016 14:59,7.5,20, Improper Input Validation,nan
CVE-2016-1582,10/06/2016 14:31,9/06/2016 16:59,2.1,200, Information Exposure,nan
CVE-2016-1581,10/06/2016 14:27,9/06/2016 16:59,2.1,284, Improper Access Control,nan
CVE-2015-8800,10/06/2016 14:25,8/06/2016 14:59,4.9,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-4470,9/06/2016 21:40,11/06/2015 14:59,4.3,189, Numeric Errors,nan
CVE-2015-4362,9/06/2016 21:40,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4391,9/06/2016 21:39,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4390,9/06/2016 21:39,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4379,9/06/2016 21:38,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4355,9/06/2016 21:38,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4351,9/06/2016 21:38,15/06/2015 14:59,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-4350,9/06/2016 21:36,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4383,9/06/2016 21:33,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4345,9/06/2016 21:33,15/06/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-4393,9/06/2016 21:32,15/06/2015 14:59,6.0,20, Improper Input Validation,nan
CVE-2015-4352,9/06/2016 21:31,15/06/2015 14:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4469,9/06/2016 21:30,11/06/2015 14:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4395,9/06/2016 21:30,15/06/2015 14:59,3.5,200, Information Exposure,nan
CVE-2015-4344,9/06/2016 21:30,15/06/2015 14:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4389,9/06/2016 21:29,15/06/2015 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4471,9/06/2016 21:28,11/06/2015 14:59,4.3,189, Numeric Errors,nan
CVE-2015-4468,9/06/2016 21:28,11/06/2015 14:59,4.3,189, Numeric Errors,nan
CVE-2015-4394,9/06/2016 21:28,15/06/2015 14:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4353,9/06/2016 21:27,15/06/2015 14:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7827,9/06/2016 18:00,13/05/2016 14:59,5.0,200, Information Exposure,nan
CVE-2015-4426,9/06/2016 17:29,18/08/2015 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4545,9/06/2016 11:35,7/06/2016 18:59,5.0,20, Improper Input Validation,nan
CVE-2016-3708,9/06/2016 11:35,8/06/2016 17:59,5.5,284, Improper Access Control,nan
CVE-2016-3703,9/06/2016 11:29,8/06/2016 17:59,3.5,284, Improper Access Control,nan
CVE-2016-2142,9/06/2016 11:29,8/06/2016 17:59,2.1,200, Information Exposure,nan
CVE-2016-2149,9/06/2016 11:25,8/06/2016 17:59,4.0,200, Information Exposure,nan
CVE-2016-3738,9/06/2016 11:24,8/06/2016 17:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-2160,9/06/2016 11:22,8/06/2016 17:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3711,9/06/2016 11:20,8/06/2016 17:59,2.1,200, Information Exposure,nan
CVE-2013-2099,9/06/2016 1:59,9/10/2013 14:53,4.3,399, Resource Management Errors,nan
CVE-2014-9747,8/06/2016 15:03,7/06/2016 14:06,5.0,399, Resource Management Errors,nan
CVE-2016-4502,7/06/2016 14:25,31/05/2016 1:59,5.0,284, Improper Access Control,nan
CVE-2016-4501,7/06/2016 14:23,31/05/2016 1:59,6.4,284, Improper Access Control,nan
CVE-2016-4506,7/06/2016 14:22,31/05/2016 1:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-4505,7/06/2016 14:22,31/05/2016 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1403,7/06/2016 14:21,4/06/2016 14:59,7.2,20, Improper Input Validation,nan
CVE-2016-1211,7/06/2016 14:13,4/06/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3944,7/06/2016 13:16,3/06/2016 14:59,9.3,20, Improper Input Validation,nan
CVE-2016-1212,6/06/2016 18:45,5/06/2016 1:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-4812,6/06/2016 18:29,4/06/2016 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1229,6/06/2016 18:28,5/06/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1230,6/06/2016 18:06,5/06/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1902,3/06/2016 14:58,1/06/2016 22:59,5.0,310, Cryptographic Issues,nan
CVE-2016-4423,3/06/2016 14:50,1/06/2016 22:59,5.0,399, Resource Management Errors,nan
CVE-2016-0879,2/06/2016 13:58,31/05/2016 1:59,7.8,200, Information Exposure,nan
CVE-2014-2299,2/06/2016 2:25,11/03/2014 13:01,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6636,2/06/2016 2:20,3/03/2014 4:50,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-9023,2/06/2016 2:19,20/11/2014 17:50,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1471,2/06/2016 2:19,4/02/2014 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4500,1/06/2016 18:38,1/06/2016 15:59,4.9,254, 7PK – Security Features,nan
CVE-2016-4521,1/06/2016 14:29,31/05/2016 1:59,10.0,200, Information Exposure,nan
CVE-2015-7876,1/06/2016 14:15,21/10/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8672,1/06/2016 14:03,12/01/2016 20:59,5.0,19, Data Processing Errors,nan
CVE-2016-0876,1/06/2016 12:31,31/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-0877,31/05/2016 18:50,31/05/2016 1:59,7.8,399, Resource Management Errors,nan
CVE-2016-0875,31/05/2016 18:35,31/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-1413,31/05/2016 18:26,28/05/2016 1:59,4.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-0878,31/05/2016 18:07,31/05/2016 1:59,7.8,20, Improper Input Validation,nan
CVE-2016-1379,31/05/2016 17:43,28/05/2016 1:59,6.8,399, Resource Management Errors,nan
CVE-2016-2354,31/05/2016 15:13,22/04/2016 0:59,8.0,284, Improper Access Control,nan
CVE-2016-2331,31/05/2016 15:08,25/04/2016 18:59,10.0,255, Credentials Management,nan
CVE-2009-1046,31/05/2016 15:08,23/03/2009 16:30,4.7,399, Resource Management Errors,nan
CVE-2011-3129,31/05/2016 14:37,10/08/2011 21:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3681,27/05/2016 16:03,26/05/2016 16:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3065,27/05/2016 15:46,27/09/2005 19:03,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3680,27/05/2016 15:28,26/05/2016 16:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4790,26/05/2016 22:10,26/05/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4789,26/05/2016 22:07,26/05/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4575,26/05/2016 13:50,25/05/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1322,26/05/2016 13:48,29/04/2015 20:59,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-1887,26/05/2016 13:19,25/05/2016 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-5755,26/05/2016 12:33,16/07/2014 14:19,10.0,255, Credentials Management,nan
CVE-2015-8577,26/05/2016 12:32,16/12/2015 18:59,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-0116,26/05/2016 12:24,28/06/2015 22:59,3.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-1939,26/05/2016 12:22,3/03/2014 4:50,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2005-1795,25/05/2016 18:34,27/05/2005 4:00,7.5,20, Improper Input Validation,nan
CVE-2016-4783,25/05/2016 18:22,23/05/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4782,25/05/2016 18:20,23/05/2016 19:59,9.3,20, Improper Input Validation,nan
CVE-2001-0780,25/05/2016 17:38,18/10/2001 4:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2855,25/05/2016 16:03,23/05/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3664,25/05/2016 15:16,23/05/2016 19:59,5.8,200, Information Exposure,nan
CVE-2016-4087,25/05/2016 15:10,23/05/2016 19:59,5.1,20, Improper Input Validation,nan
CVE-2014-1610,25/05/2016 15:01,30/01/2014 23:55,6.0,20, Improper Input Validation,nan
CVE-2016-4568,24/05/2016 22:47,23/05/2016 10:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4344,24/05/2016 15:23,22/05/2016 1:59,7.5,189, Numeric Errors,nan
CVE-2016-4345,24/05/2016 14:24,22/05/2016 1:59,7.5,189, Numeric Errors,nan
CVE-2015-7557,23/05/2016 13:31,20/05/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-2536,20/05/2016 3:02,22/02/2016 15:59,6.8,399, Resource Management Errors,nan
CVE-2001-0775,20/05/2016 3:00,18/10/2001 4:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4425,19/05/2016 21:21,17/05/2016 14:08,5.0,20, Improper Input Validation,nan
CVE-2016-2860,19/05/2016 16:43,13/05/2016 16:59,4.0,284, Improper Access Control,nan
CVE-2016-1580,19/05/2016 16:08,13/05/2016 14:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3969,19/05/2016 16:04,6/04/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0341,19/05/2016 16:03,15/05/2016 1:59,5.0,200, Information Exposure,nan
CVE-2016-0323,19/05/2016 14:03,17/05/2016 14:08,4.0,284, Improper Access Control,nan
CVE-2016-1208,19/05/2016 13:44,14/05/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-4536,19/05/2016 13:40,13/05/2016 16:59,5.0,200, Information Exposure,nan
CVE-2015-1498,18/05/2016 22:36,16/02/2015 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1656,18/05/2016 22:36,8/03/2013 18:55,4.3,20, Improper Input Validation,nan
CVE-2016-0707,18/05/2016 21:46,18/05/2016 14:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-3943,18/05/2016 21:45,18/04/2016 15:59,7.2,254, 7PK – Security Features,nan
CVE-2015-8106,18/05/2016 21:45,18/04/2016 14:59,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2016-1206,18/05/2016 21:40,14/05/2016 16:59,3.3,200, Information Exposure,nan
CVE-2016-3628,18/05/2016 21:39,20/04/2016 10:59,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3950,18/05/2016 21:34,18/04/2016 14:59,6.8,20, Improper Input Validation,nan
CVE-2016-0731,18/05/2016 21:34,18/05/2016 14:59,4.0,284, Improper Access Control,nan
CVE-2016-3984,18/05/2016 21:28,8/04/2016 15:59,3.6,284, Improper Access Control,nan
CVE-2015-7378,18/05/2016 21:25,18/04/2016 15:59,7.2,254, 7PK – Security Features,nan
CVE-2013-4473,18/05/2016 18:39,23/11/2013 11:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4506,18/05/2016 18:37,20/06/2014 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4580,18/05/2016 18:23,12/05/2014 14:55,6.8,287, Improper Authentication,nan
CVE-2016-1207,17/05/2016 14:50,14/05/2016 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2456,16/05/2016 18:37,9/05/2016 10:59,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-2196,16/05/2016 14:48,13/05/2016 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5726,16/05/2016 14:47,13/05/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2014-9742,16/05/2016 14:46,13/05/2016 14:59,5.0,310, Cryptographic Issues,nan
CVE-2016-1236,16/05/2016 14:32,11/05/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0390,16/05/2016 14:05,15/05/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4561,16/05/2016 13:59,10/05/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2060,16/05/2016 13:56,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-4350,16/05/2016 13:52,9/05/2016 20:59,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5727,13/05/2016 19:12,13/05/2016 14:59,7.8,399, Resource Management Errors,nan
CVE-2009-0127,13/05/2016 17:09,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2016-2461,10/05/2016 18:23,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2462,10/05/2016 18:20,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2439,10/05/2016 17:57,9/05/2016 10:59,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2458,10/05/2016 17:56,9/05/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-2449,10/05/2016 17:55,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2448,10/05/2016 17:55,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2452,10/05/2016 17:54,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2440,10/05/2016 17:28,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2429,10/05/2016 17:27,9/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2428,10/05/2016 17:25,9/05/2016 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2430,10/05/2016 17:20,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2451,10/05/2016 17:15,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2450,10/05/2016 17:15,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2351,10/05/2016 15:20,7/05/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2350,10/05/2016 15:14,7/05/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-4422,10/05/2016 14:24,6/05/2016 17:59,10.0,287, Improper Authentication,nan
CVE-2016-4535,10/05/2016 12:35,5/05/2016 18:59,7.8,20, Improper Input Validation,nan
CVE-2016-2094,10/05/2016 12:11,6/05/2016 17:59,5.0,399, Resource Management Errors,nan
CVE-2016-4351,9/05/2016 22:35,5/05/2016 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-4074,9/05/2016 22:23,6/05/2016 17:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1368,9/05/2016 22:15,5/05/2016 21:59,7.8,399, Resource Management Errors,nan
CVE-2016-2459,9/05/2016 22:08,9/05/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-2432,9/05/2016 22:04,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2445,9/05/2016 21:55,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2437,9/05/2016 21:55,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2453,9/05/2016 21:54,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2435,9/05/2016 21:53,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2444,9/05/2016 21:52,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2443,9/05/2016 21:49,9/05/2016 10:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2436,9/05/2016 21:47,9/05/2016 10:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2454,9/05/2016 21:29,9/05/2016 10:59,7.1,20, Improper Input Validation,nan
CVE-2015-0857,9/05/2016 19:26,6/05/2016 17:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0858,9/05/2016 18:36,6/05/2016 17:59,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-2352,9/05/2016 17:49,7/05/2016 14:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3171,9/05/2016 17:46,12/04/2016 15:59,6.8,19, Data Processing Errors,nan
CVE-2016-0864,9/05/2016 17:44,13/02/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-1176,9/05/2016 17:40,5/04/2016 17:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0863,9/05/2016 17:13,13/02/2016 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2005-2741,9/05/2016 16:50,26/10/2005 0:02,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2005-0139,9/05/2016 16:49,21/09/2005 20:03,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7228,9/05/2016 15:36,3/11/2014 22:55,7.5,310, Cryptographic Issues,nan
CVE-2005-0138,9/05/2016 15:32,21/09/2005 20:03,7.5,17, DEPRECATED: Code,nan
CVE-2015-2672,6/05/2016 16:46,2/05/2016 10:59,4.9,20, Improper Input Validation,nan
CVE-2013-7449,6/05/2016 15:54,21/04/2016 14:59,5.8,310, Cryptographic Issues,nan
CVE-2016-1576,6/05/2016 12:57,2/05/2016 10:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1199,6/05/2016 1:09,30/04/2016 10:59,5.0,200, Information Exposure,nan
CVE-2016-2280,6/05/2016 1:05,21/04/2016 11:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2070,6/05/2016 1:03,2/05/2016 10:59,7.8,189, Numeric Errors,nan
CVE-2008-7316,6/05/2016 0:54,2/05/2016 10:59,2.1,20, Improper Input Validation,nan
CVE-2013-5679,6/05/2016 0:14,30/09/2013 17:09,2.6,310, Cryptographic Issues,nan
CVE-2015-4176,5/05/2016 17:01,2/05/2016 10:59,2.1,200, Information Exposure,nan
CVE-2013-0339,5/05/2016 15:29,21/01/2014 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-2333,4/05/2016 19:33,25/04/2016 18:59,5.0,310, Cryptographic Issues,nan
CVE-2016-2332,4/05/2016 19:18,25/04/2016 18:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2016-4420,4/05/2016 14:06,1/05/2016 1:59,4.3,20, Improper Input Validation,nan
CVE-2016-4419,4/05/2016 14:06,1/05/2016 1:59,4.3,399, Resource Management Errors,nan
CVE-2016-4416,4/05/2016 14:04,1/05/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-4415,4/05/2016 14:04,1/05/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2346,4/05/2016 13:39,25/04/2016 18:59,6.8,345, Insufficient Verification of Data Authenticity,nan
CVE-2016-2202,28/04/2016 22:21,20/04/2016 17:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2016-2304,28/04/2016 18:15,22/04/2016 0:59,4.3,200, Information Exposure,nan
CVE-2016-2293,28/04/2016 18:06,21/04/2016 11:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-2294,28/04/2016 18:04,21/04/2016 11:00,5.0,200, Information Exposure,nan
CVE-2016-3688,28/04/2016 17:14,19/04/2016 14:59,4.0,200, Information Exposure,nan
CVE-2016-2305,27/04/2016 18:35,22/04/2016 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2300,27/04/2016 18:16,22/04/2016 0:59,6.4,287, Improper Authentication,nan
CVE-2016-2306,27/04/2016 18:12,22/04/2016 0:59,7.8,310, Cryptographic Issues,nan
CVE-2016-2302,27/04/2016 18:11,22/04/2016 0:59,5.0,200, Information Exposure,nan
CVE-2016-2301,27/04/2016 18:04,22/04/2016 0:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2146,25/04/2016 13:58,15/04/2016 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2145,25/04/2016 13:54,15/04/2016 14:59,5.0,20, Improper Input Validation,nan
CVE-2016-2425,25/04/2016 13:17,18/04/2016 0:59,4.3,200, Information Exposure,nan
CVE-2016-2423,25/04/2016 13:08,18/04/2016 0:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2421,25/04/2016 13:06,18/04/2016 0:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-2416,25/04/2016 12:54,18/04/2016 0:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2424,25/04/2016 12:53,18/04/2016 0:59,7.1,20, Improper Input Validation,nan
CVE-2016-2426,25/04/2016 12:50,18/04/2016 0:59,4.3,200, Information Exposure,nan
CVE-2016-2422,25/04/2016 12:48,18/04/2016 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2419,25/04/2016 12:47,18/04/2016 0:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2557,22/04/2016 16:18,12/04/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2558,22/04/2016 16:17,12/04/2016 14:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2420,22/04/2016 15:23,18/04/2016 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2412,22/04/2016 14:41,18/04/2016 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-3162,22/04/2016 14:11,12/04/2016 15:59,6.5,284, Improper Access Control,nan
CVE-2016-4040,22/04/2016 14:04,19/04/2016 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2414,21/04/2016 15:24,18/04/2016 0:59,4.9,20, Improper Input Validation,nan
CVE-2016-2413,21/04/2016 15:17,18/04/2016 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-5271,21/04/2016 15:12,15/04/2016 17:59,5.0,200, Information Exposure,nan
CVE-2016-2084,21/04/2016 14:02,13/04/2016 16:59,4.0,200, Information Exposure,nan
CVE-2016-2409,21/04/2016 14:00,18/04/2016 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-2103,21/04/2016 13:55,14/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2415,21/04/2016 13:54,18/04/2016 0:59,7.1,200, Information Exposure,nan
CVE-2016-0850,21/04/2016 13:29,18/04/2016 0:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2016-0847,21/04/2016 13:23,18/04/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1274,20/04/2016 21:31,15/04/2016 14:59,7.8,19, Data Processing Errors,nan
CVE-2016-1273,20/04/2016 21:23,15/04/2016 14:59,4.3,310, Cryptographic Issues,nan
CVE-2015-8346,20/04/2016 21:08,12/04/2016 14:59,5.0,199, Information Management Errors,nan
CVE-2015-8537,20/04/2016 19:42,12/04/2016 14:59,5.0,200, Information Exposure,nan
CVE-2016-2410,20/04/2016 19:29,18/04/2016 0:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-0849,20/04/2016 19:26,18/04/2016 0:59,7.2,189, Numeric Errors,nan
CVE-2015-8473,20/04/2016 19:26,12/04/2016 14:59,4.0,200, Information Exposure,nan
CVE-2016-0848,20/04/2016 19:24,18/04/2016 0:59,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2016-1270,20/04/2016 19:19,15/04/2016 14:59,5.0,19, Data Processing Errors,nan
CVE-2016-0844,20/04/2016 19:17,18/04/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0843,20/04/2016 19:12,18/04/2016 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1269,20/04/2016 19:00,15/04/2016 14:59,7.8,399, Resource Management Errors,nan
CVE-2016-0841,20/04/2016 18:58,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0839,20/04/2016 18:57,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0837,20/04/2016 18:57,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0838,20/04/2016 18:52,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0835,20/04/2016 18:50,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0712,20/04/2016 18:42,11/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0711,20/04/2016 18:41,11/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0710,20/04/2016 18:24,11/04/2016 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-0709,20/04/2016 18:14,11/04/2016 14:59,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5233,20/04/2016 17:37,11/04/2016 21:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6276,20/04/2016 17:24,13/04/2016 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0842,20/04/2016 16:43,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0840,20/04/2016 16:41,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2418,20/04/2016 15:40,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2515,20/04/2016 15:25,13/04/2016 16:59,7.8,399, Resource Management Errors,nan
CVE-2015-8682,20/04/2016 14:28,13/04/2016 14:59,7.8,20, Improper Input Validation,nan
CVE-2016-0836,20/04/2016 2:51,18/04/2016 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2411,20/04/2016 1:22,18/04/2016 0:59,9.3,20, Improper Input Validation,nan
CVE-2016-3972,20/04/2016 1:18,18/04/2016 15:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0735,19/04/2016 14:01,11/04/2016 19:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8843,19/04/2016 3:51,13/04/2016 15:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0733,19/04/2016 3:44,12/04/2016 14:59,7.5,287, Improper Authentication,nan
CVE-2016-3163,19/04/2016 3:01,12/04/2016 15:59,5.0,254, 7PK – Security Features,nan
CVE-2015-8841,18/04/2016 18:57,12/04/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2556,18/04/2016 18:43,12/04/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-3987,18/04/2016 18:39,12/04/2016 2:00,10.0,284, Improper Access Control,nan
CVE-2015-5247,18/04/2016 18:37,14/04/2016 15:59,4.0,284, Improper Access Control,nan
CVE-2016-3079,18/04/2016 18:14,14/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8240,18/04/2016 18:12,11/04/2016 14:59,5.0,19, Data Processing Errors,nan
CVE-2011-4600,18/04/2016 18:06,14/04/2016 15:59,4.3,284, Improper Access Control,nan
CVE-2016-3985,18/04/2016 16:24,12/04/2016 2:00,3.3,284, Improper Access Control,nan
CVE-2016-1180,18/04/2016 16:16,8/04/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3986,18/04/2016 15:15,12/04/2016 2:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0284,18/04/2016 15:11,14/04/2016 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3686,18/04/2016 14:26,13/04/2016 16:59,4.3,200, Information Exposure,nan
CVE-2015-7502,18/04/2016 12:36,11/04/2016 21:59,1.9,200, Information Exposure,nan
CVE-2015-5303,18/04/2016 12:13,11/04/2016 21:59,5.0,254, 7PK – Security Features,nan
CVE-2016-1235,14/04/2016 22:26,11/04/2016 15:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2171,14/04/2016 22:23,11/04/2016 14:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2016-3065,14/04/2016 22:09,11/04/2016 15:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3154,14/04/2016 21:49,8/04/2016 14:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-3153,14/04/2016 21:49,8/04/2016 14:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-3170,14/04/2016 21:44,12/04/2016 15:59,5.0,200, Information Exposure,nan
CVE-2016-3187,14/04/2016 21:39,8/04/2016 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-3188,14/04/2016 21:24,8/04/2016 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-2405,14/04/2016 21:00,12/04/2016 17:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-3678,14/04/2016 20:18,11/04/2016 15:59,7.8,20, Improper Input Validation,nan
CVE-2016-1495,14/04/2016 20:16,13/04/2016 14:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8620,14/04/2016 20:15,13/04/2016 14:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1496,14/04/2016 20:08,13/04/2016 14:59,7.1,399, Resource Management Errors,nan
CVE-2015-8108,14/04/2016 17:29,12/04/2016 1:59,5.0,254, 7PK – Security Features,nan
CVE-2016-3168,14/04/2016 14:33,12/04/2016 15:59,8.5,254, 7PK – Security Features,nan
CVE-2016-3978,14/04/2016 14:22,8/04/2016 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3676,14/04/2016 14:18,11/04/2016 15:59,5.8,254, 7PK – Security Features,nan
CVE-2015-8305,14/04/2016 13:59,7/04/2016 19:59,7.1,20, Improper Input Validation,nan
CVE-2015-5158,14/04/2016 13:14,12/04/2016 1:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1375,14/04/2016 0:44,8/04/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3675,14/04/2016 0:42,11/04/2016 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-2393,14/04/2016 0:40,11/04/2016 14:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-8606,13/04/2016 23:31,13/04/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5167,13/04/2016 23:19,12/04/2016 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5329,13/04/2016 23:13,11/04/2016 21:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0266,13/04/2016 18:12,11/04/2016 19:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6700,13/04/2016 15:49,11/04/2016 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6699,13/04/2016 15:48,11/04/2016 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6698,13/04/2016 15:07,11/04/2016 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-3165,13/04/2016 0:51,12/04/2016 15:59,5.0,284, Improper Access Control,nan
CVE-2016-3169,13/04/2016 0:22,12/04/2016 15:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-0265,12/04/2016 22:36,11/04/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3332,11/04/2016 18:54,27/05/2015 10:59,4.9,399, Resource Management Errors,nan
CVE-2016-1177,11/04/2016 18:36,5/04/2016 18:59,4.3,254, 7PK – Security Features,nan
CVE-2015-0237,11/04/2016 18:34,1/05/2015 15:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6541,11/04/2016 17:44,8/04/2016 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-3983,11/04/2016 17:27,8/04/2016 15:59,5.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-8681,11/04/2016 14:30,7/04/2016 20:59,9.3,284, Improper Access Control,nan
CVE-2015-8680,11/04/2016 14:29,7/04/2016 20:59,9.3,284, Improper Access Control,nan
CVE-2015-8319,11/04/2016 14:28,7/04/2016 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8318,11/04/2016 14:27,7/04/2016 20:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8307,11/04/2016 14:17,7/04/2016 20:59,9.3,284, Improper Access Control,nan
CVE-2014-9465,7/04/2016 21:09,19/02/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2014-1571,7/04/2016 20:57,13/10/2014 1:55,4.0,200, Information Exposure,nan
CVE-2013-6422,7/04/2016 20:55,23/12/2013 22:55,4.0,20, Improper Input Validation,nan
CVE-2016-1173,7/04/2016 20:49,6/04/2016 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1172,7/04/2016 20:48,6/04/2016 23:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1171,7/04/2016 20:47,6/04/2016 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1170,7/04/2016 20:46,6/04/2016 23:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1169,7/04/2016 20:45,6/04/2016 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-3968,7/04/2016 19:07,6/04/2016 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7921,7/04/2016 19:04,6/04/2016 23:59,6.4,255, Credentials Management,nan
CVE-2016-1174,7/04/2016 18:30,6/04/2016 23:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0871,7/04/2016 16:54,6/04/2016 23:59,5.0,200, Information Exposure,nan
CVE-2016-2292,7/04/2016 16:18,6/04/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2291,7/04/2016 16:10,6/04/2016 23:59,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2290,7/04/2016 16:02,6/04/2016 23:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2277,7/04/2016 15:56,6/04/2016 23:59,6.9,284, Improper Access Control,nan
CVE-2016-2272,7/04/2016 15:44,6/04/2016 23:59,5.0,284, Improper Access Control,nan
CVE-2014-5360,7/04/2016 13:40,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1175,6/04/2016 18:36,5/04/2016 17:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3925,6/04/2016 12:53,1/06/2014 4:29,5.0,255, Credentials Management,nan
CVE-2015-1008,6/04/2016 12:47,26/05/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0984,6/04/2016 12:47,31/03/2015 1:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0746,6/04/2016 12:47,22/05/2015 0:59,5.0,254, 7PK – Security Features,nan
CVE-2014-8611,6/04/2016 12:40,18/09/2015 10:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0010,6/04/2016 12:12,20/01/2014 15:14,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0289,6/04/2016 12:05,5/04/2016 17:59,4.0,284, Improper Access Control,nan
CVE-2014-7812,4/04/2016 18:44,15/01/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7811,4/04/2016 18:43,15/01/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2246,4/04/2016 17:42,16/03/2014 14:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2242,4/04/2016 17:41,2/03/2014 4:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1517,4/04/2016 17:41,20/04/2014 1:55,4.0,287, Improper Authentication,nan
CVE-2014-0754,4/04/2016 17:38,3/10/2014 18:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2289,4/04/2016 15:59,1/04/2016 23:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0213,4/04/2016 15:50,28/07/2010 12:48,2.6,19, Data Processing Errors,nan
CVE-2010-3615,4/04/2016 15:45,6/12/2010 13:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0218,4/04/2016 15:30,5/10/2010 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9036,4/04/2016 13:17,25/11/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9035,4/04/2016 13:16,25/11/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9034,4/04/2016 13:15,25/11/2014 23:59,5.0,19, Data Processing Errors,nan
CVE-2014-8762,4/04/2016 13:15,22/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-8074,4/04/2016 13:15,17/10/2014 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7217,4/04/2016 13:15,3/10/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2282,4/04/2016 13:14,11/03/2014 13:01,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3824,1/04/2016 18:48,29/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3820,1/04/2016 18:47,29/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1399,1/04/2016 18:36,29/04/2015 22:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-1167,1/04/2016 18:17,1/04/2016 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1168,1/04/2016 18:16,1/04/2016 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0538,1/04/2016 12:47,7/05/2015 1:59,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1151,1/04/2016 1:05,28/04/2015 22:59,5.0,284, Improper Access Control,nan
CVE-2015-1150,1/04/2016 1:05,28/04/2015 22:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-0555,1/04/2016 1:05,24/02/2015 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0532,1/04/2016 1:05,1/05/2015 10:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0531,1/04/2016 1:04,7/05/2015 1:59,5.0,284, Improper Access Control,nan
CVE-2014-1635,31/03/2016 17:35,12/11/2014 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6111,31/03/2016 17:32,2/11/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6023,31/03/2016 17:31,2/11/2013 21:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5464,31/03/2016 12:37,22/07/2015 10:59,1.3,284, Improper Access Control,nan
CVE-2009-5078,30/03/2016 21:36,30/06/2011 15:55,6.4,254, 7PK – Security Features,nan
CVE-2009-5044,30/03/2016 21:36,24/06/2011 20:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2016-1160,28/03/2016 21:09,26/03/2016 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0955,23/03/2016 0:57,10/02/2016 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2509,23/03/2016 0:54,18/02/2016 22:59,2.9,200, Information Exposure,nan
CVE-2012-5810,23/03/2016 0:49,4/11/2012 22:55,5.8,310, Cryptographic Issues,nan
CVE-2015-2286,22/03/2016 13:13,19/03/2016 10:59,4.3,200, Information Exposure,nan
CVE-2016-2245,22/03/2016 12:16,19/03/2016 15:59,10.0,287, Improper Authentication,nan
CVE-2016-2314,22/03/2016 12:14,15/02/2016 2:59,6.3,17, DEPRECATED: Code,nan
CVE-2015-7448,22/03/2016 12:00,12/03/2016 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9768,21/03/2016 23:19,18/03/2016 14:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-2281,21/03/2016 23:17,18/03/2016 14:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9252,21/03/2016 16:36,15/12/2014 18:59,2.1,200, Information Exposure,nan
CVE-2014-9251,21/03/2016 16:31,15/12/2014 18:59,5.0,255, Credentials Management,nan
CVE-2014-9250,21/03/2016 16:23,15/12/2014 18:59,5.0,200, Information Exposure,nan
CVE-2014-9249,21/03/2016 16:22,15/12/2014 18:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9248,21/03/2016 16:21,15/12/2014 18:59,5.0,255, Credentials Management,nan
CVE-2014-9247,21/03/2016 16:20,15/12/2014 18:59,4.0,200, Information Exposure,nan
CVE-2014-9385,21/03/2016 16:15,15/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9245,21/03/2016 16:03,15/12/2014 18:59,5.0,200, Information Exposure,nan
CVE-2014-6261,21/03/2016 16:01,15/12/2014 18:59,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6260,21/03/2016 16:00,15/12/2014 18:59,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-6259,21/03/2016 15:59,15/12/2014 18:59,5.0,399, Resource Management Errors,nan
CVE-2014-6258,21/03/2016 15:58,15/12/2014 18:59,5.0,399, Resource Management Errors,nan
CVE-2014-6257,21/03/2016 15:51,15/12/2014 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6256,21/03/2016 15:44,15/12/2014 18:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-6253,21/03/2016 13:16,15/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-2287,21/03/2016 12:37,19/03/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4094,21/03/2016 12:36,2/06/2015 14:59,5.8,310, Cryptographic Issues,nan
CVE-2015-5968,21/03/2016 11:54,18/03/2016 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1562,19/03/2016 1:01,12/03/2016 2:59,4.0,200, Information Exposure,nan
CVE-2016-1338,19/03/2016 0:54,12/03/2016 2:59,8.0,399, Resource Management Errors,nan
CVE-2016-0222,17/03/2016 22:03,14/03/2016 1:59,4.0,284, Improper Access Control,nan
CVE-2016-0806,16/03/2016 16:16,7/02/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-0262,16/03/2016 13:04,14/03/2016 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1357,14/03/2016 22:13,3/03/2016 22:59,5.0,200, Information Exposure,nan
CVE-2016-2282,14/03/2016 16:38,4/03/2016 15:59,5.0,255, Credentials Management,nan
CVE-2016-1134,14/03/2016 15:58,22/01/2016 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-0813,14/03/2016 15:42,7/02/2016 1:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-0812,14/03/2016 15:41,7/02/2016 1:59,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2016-0811,14/03/2016 15:34,7/02/2016 1:59,7.8,200, Information Exposure,nan
CVE-2016-0810,14/03/2016 15:33,7/02/2016 1:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2016-0809,14/03/2016 15:32,7/02/2016 1:59,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2016-0808,14/03/2016 15:28,7/02/2016 1:59,4.9,19, Data Processing Errors,nan
CVE-2016-0804,14/03/2016 14:48,7/02/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7262,11/03/2016 16:27,27/02/2016 5:59,8.5,18, DEPRECATED: Source Code,nan
CVE-2015-5012,11/03/2016 15:23,15/02/2016 2:59,5.0,310, Cryptographic Issues,nan
CVE-2016-0805,11/03/2016 15:10,7/02/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7261,11/03/2016 15:09,27/02/2016 5:59,7.5,255, Credentials Management,nan
CVE-2016-0807,11/03/2016 15:06,7/02/2016 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-2283,11/03/2016 13:39,4/03/2016 15:59,5.0,255, Credentials Management,nan
CVE-2016-1135,11/03/2016 13:26,22/01/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1158,10/03/2016 22:16,3/03/2016 22:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5042,10/03/2016 21:50,15/02/2016 2:59,5.0,20, Improper Input Validation,nan
CVE-2016-1145,10/03/2016 21:36,30/01/2016 15:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-0232,10/03/2016 21:31,15/02/2016 23:59,4.0,200, Information Exposure,nan
CVE-2016-0231,10/03/2016 21:07,15/02/2016 23:59,4.0,200, Information Exposure,nan
CVE-2015-7408,10/03/2016 20:10,15/02/2016 2:59,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-5970,10/03/2016 20:01,18/02/2016 22:59,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2016-2275,10/03/2016 19:52,21/02/2016 5:59,10.0,284, Improper Access Control,nan
CVE-2015-4991,10/03/2016 19:34,15/02/2016 2:59,2.1,200, Information Exposure,nan
CVE-2013-7448,10/03/2016 19:05,23/02/2016 19:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2016-2231,10/03/2016 16:53,15/02/2016 2:59,9.0,19, Data Processing Errors,nan
CVE-2015-5010,10/03/2016 15:57,15/02/2016 2:59,5.0,254, 7PK – Security Features,nan
CVE-2015-7492,10/03/2016 2:01,15/02/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0803,10/03/2016 1:22,7/02/2016 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7923,7/03/2016 16:35,30/01/2016 12:59,9.3,310, Cryptographic Issues,nan
CVE-2016-1156,7/03/2016 13:04,19/02/2016 19:59,3.5,20, Improper Input Validation,nan
CVE-2015-8286,7/03/2016 12:35,18/02/2016 5:59,10.0,254, 7PK – Security Features,nan
CVE-2016-1488,4/03/2016 18:08,30/01/2016 12:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8772,4/03/2016 18:03,29/01/2016 20:59,8.5,19, Data Processing Errors,nan
CVE-2016-2049,4/03/2016 17:59,1/02/2016 21:59,6.8,284, Improper Access Control,nan
CVE-2016-1342,4/03/2016 16:49,26/02/2016 5:59,5.0,200, Information Exposure,nan
CVE-2016-1354,4/03/2016 16:07,3/03/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-2398,4/03/2016 14:40,17/02/2016 16:59,3.3,254, 7PK – Security Features,nan
CVE-2016-0212,3/03/2016 19:35,29/02/2016 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0213,3/03/2016 19:34,29/02/2016 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0216,3/03/2016 17:04,29/02/2016 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-0244,3/03/2016 16:43,29/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7769,3/03/2016 14:47,19/02/2016 19:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-2214,2/03/2016 17:05,8/02/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5342,2/03/2016 16:00,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5335,2/03/2016 15:57,22/02/2016 5:59,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5341,2/03/2016 15:41,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5340,2/03/2016 15:36,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7457,2/03/2016 15:06,29/02/2016 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7491,2/03/2016 14:30,29/02/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7455,2/03/2016 14:10,29/02/2016 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5339,2/03/2016 14:10,22/02/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5338,2/03/2016 14:07,22/02/2016 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5337,2/03/2016 14:06,22/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5336,2/03/2016 14:04,22/02/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5332,2/03/2016 14:00,22/02/2016 5:59,7.1,399, Resource Management Errors,nan
CVE-2015-5331,2/03/2016 13:35,22/02/2016 5:59,4.0,254, 7PK – Security Features,nan
CVE-2016-1154,2/03/2016 13:22,19/02/2016 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2016-1882,2/03/2016 0:14,29/01/2016 19:59,7.8,19, Data Processing Errors,nan
CVE-2015-7444,2/03/2016 0:12,15/02/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-2199,1/03/2016 15:44,1/02/2016 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1322,1/03/2016 15:29,12/02/2016 1:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0867,1/03/2016 15:18,30/01/2016 15:59,7.8,200, Information Exposure,nan
CVE-2016-2537,29/02/2016 22:22,23/02/2016 5:59,5.0,20, Improper Input Validation,nan
CVE-2016-1323,29/02/2016 18:31,12/02/2016 1:59,4.0,200, Information Exposure,nan
CVE-2015-4956,29/02/2016 18:27,15/02/2016 2:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2008,29/02/2016 18:11,15/02/2016 2:59,3.5,284, Improper Access Control,nan
CVE-2015-7398,26/02/2016 14:41,15/02/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5050,26/02/2016 14:28,15/02/2016 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4957,26/02/2016 14:14,15/02/2016 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8794,25/02/2016 17:41,29/01/2016 19:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8773,25/02/2016 12:47,29/01/2016 20:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-2230,25/02/2016 12:43,8/02/2016 16:59,10.0,255, Credentials Management,nan
CVE-2016-1324,24/02/2016 15:44,12/02/2016 1:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1303,24/02/2016 15:32,30/01/2016 12:59,7.8,20, Improper Input Validation,nan
CVE-2016-1157,24/02/2016 15:13,23/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8269,24/02/2016 11:34,4/02/2016 11:59,6.5,287, Improper Authentication,nan
CVE-2015-8531,24/02/2016 11:33,15/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0869,23/02/2016 16:26,26/01/2016 19:59,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1152,22/02/2016 22:32,17/02/2016 2:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2016-1151,22/02/2016 22:32,17/02/2016 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1150,22/02/2016 22:31,17/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1149,22/02/2016 22:30,17/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8797,22/02/2016 22:10,15/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8795,22/02/2016 22:07,15/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8489,22/02/2016 22:04,17/02/2016 2:59,6.8,20, Improper Input Validation,nan
CVE-2015-8488,22/02/2016 21:57,17/02/2016 2:59,4.3,200, Information Exposure,nan
CVE-2015-8487,22/02/2016 21:56,17/02/2016 2:59,2.6,200, Information Exposure,nan
CVE-2015-8486,22/02/2016 21:03,17/02/2016 2:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8485,22/02/2016 21:02,17/02/2016 2:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8484,22/02/2016 20:54,17/02/2016 2:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7798,22/02/2016 20:39,17/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7797,22/02/2016 20:39,17/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7796,22/02/2016 20:39,17/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7795,22/02/2016 16:22,17/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7680,18/02/2016 23:16,10/02/2016 15:59,5.0,200, Information Exposure,nan
CVE-2015-7679,18/02/2016 23:15,10/02/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-0958,18/02/2016 22:56,10/02/2016 20:59,7.8,200, Information Exposure,nan
CVE-2015-7678,18/02/2016 22:49,10/02/2016 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7675,18/02/2016 22:45,10/02/2016 15:59,4.0,200, Information Exposure,nan
CVE-2016-1299,18/02/2016 21:58,27/01/2016 22:59,5.0,399, Resource Management Errors,nan
CVE-2016-0865,18/02/2016 21:38,13/02/2016 2:59,9.0,255, Credentials Management,nan
CVE-2016-0866,18/02/2016 19:42,13/02/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2005,18/02/2016 19:05,15/02/2016 2:59,5.0,200, Information Exposure,nan
CVE-2016-0754,17/02/2016 15:56,29/01/2016 20:59,5.0,20, Improper Input Validation,nan
CVE-2016-1306,16/02/2016 20:11,6/02/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7677,12/02/2016 0:42,10/02/2016 15:59,4.0,200, Information Exposure,nan
CVE-2016-1140,10/02/2016 17:33,30/01/2016 15:59,4.3,254, 7PK – Security Features,nan
CVE-2016-1139,10/02/2016 17:30,30/01/2016 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2016-1136,10/02/2016 17:26,30/01/2016 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7909,9/02/2016 19:54,22/01/2016 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2016-1143,9/02/2016 1:03,30/01/2016 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1141,2/02/2016 15:25,30/01/2016 15:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2016-1896,1/02/2016 1:16,27/01/2016 5:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-1233,1/02/2016 1:16,26/01/2016 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2016-1300,28/01/2016 18:33,27/01/2016 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7487,28/01/2016 0:43,27/01/2016 5:59,4.9,200, Information Exposure,nan
CVE-2015-7439,28/01/2016 0:40,27/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7488,28/01/2016 0:39,27/01/2016 5:59,2.1,200, Information Exposure,nan
CVE-2015-6925,25/01/2016 18:21,22/01/2016 15:59,5.0,399, Resource Management Errors,nan
CVE-2015-6412,25/01/2016 15:37,22/01/2016 11:59,10.0,255, Credentials Management,nan
CVE-2016-1912,22/01/2016 0:28,15/01/2016 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6527,22/01/2016 0:24,19/01/2016 5:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-5002,22/01/2016 0:23,18/01/2016 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4988,22/01/2016 0:23,18/01/2016 5:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8675,21/01/2016 17:29,15/01/2016 19:59,2.1,255, Credentials Management,nan
CVE-2016-1715,21/01/2016 17:06,12/01/2016 20:59,5.5,189, Numeric Errors,nan
CVE-2016-0852,21/01/2016 16:14,15/01/2016 3:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2016-0853,21/01/2016 16:08,15/01/2016 3:59,5.0,200, Information Exposure,nan
CVE-2015-7470,21/01/2016 15:50,17/01/2016 5:59,5.0,200, Information Exposure,nan
CVE-2015-7469,21/01/2016 15:48,17/01/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7468,21/01/2016 15:47,17/01/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7467,21/01/2016 15:36,17/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8280,21/01/2016 15:13,15/01/2016 3:59,5.0,200, Information Exposure,nan
CVE-2016-0851,20/01/2016 19:55,15/01/2016 3:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8281,20/01/2016 19:54,15/01/2016 3:59,7.8,310, Cryptographic Issues,nan
CVE-2015-8279,20/01/2016 19:53,15/01/2016 3:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7414,20/01/2016 19:52,17/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1913,20/01/2016 19:26,15/01/2016 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8400,20/01/2016 14:15,12/01/2016 19:59,4.3,254, 7PK – Security Features,nan
CVE-2015-4960,20/01/2016 12:51,17/01/2016 5:59,3.5,254, 7PK – Security Features,nan
CVE-2015-4958,20/01/2016 12:36,17/01/2016 5:59,2.1,200, Information Exposure,nan
CVE-2015-8673,20/01/2016 8:15,12/01/2016 20:59,4.6,255, Credentials Management,nan
CVE-2015-8306,20/01/2016 7:58,12/01/2016 19:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3948,20/01/2016 7:49,15/01/2016 3:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3947,18/01/2016 14:02,15/01/2016 3:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3946,18/01/2016 13:42,15/01/2016 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-3943,18/01/2016 13:38,15/01/2016 3:59,5.0,200, Information Exposure,nan
CVE-2015-7939,18/01/2016 13:12,9/01/2016 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7938,18/01/2016 11:59,9/01/2016 2:59,10.0,287, Improper Authentication,nan
CVE-2015-7541,18/01/2016 11:55,8/01/2016 21:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-7759,15/01/2016 0:15,12/01/2016 20:59,4.3,20, Improper Input Validation,nan
CVE-2015-8098,15/01/2016 0:10,12/01/2016 19:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8611,14/01/2016 19:30,12/01/2016 20:59,10.0,255, Credentials Management,nan
CVE-2015-8512,14/01/2016 15:28,9/01/2016 2:59,2.1,284, Improper Access Control,nan
CVE-2015-8510,14/01/2016 15:28,9/01/2016 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8511,14/01/2016 15:19,9/01/2016 2:59,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-8225,14/01/2016 14:32,8/01/2016 19:59,7.1,20, Improper Input Validation,nan
CVE-2015-8303,13/01/2016 19:02,8/01/2016 19:59,2.1,200, Information Exposure,nan
CVE-2015-8226,13/01/2016 19:01,8/01/2016 19:59,7.1,20, Improper Input Validation,nan
CVE-2015-7754,13/01/2016 18:55,8/01/2016 19:59,9.3,20, Improper Input Validation,nan
CVE-2015-6566,13/01/2016 13:02,11/01/2016 15:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-8481,13/01/2016 2:06,8/01/2016 19:59,3.5,200, Information Exposure,nan
CVE-2015-8333,12/01/2016 18:25,11/01/2016 15:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8231,12/01/2016 17:15,11/01/2016 15:59,7.8,399, Resource Management Errors,nan
CVE-2015-8230,12/01/2016 17:15,11/01/2016 15:59,7.8,399, Resource Management Errors,nan
CVE-2015-8757,12/01/2016 2:59,8/01/2016 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8760,12/01/2016 2:56,8/01/2016 19:59,4.3,20, Improper Input Validation,nan
CVE-2015-8756,12/01/2016 2:56,8/01/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8754,12/01/2016 2:55,8/01/2016 19:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8755,12/01/2016 2:53,8/01/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1500,12/01/2016 2:51,8/01/2016 21:59,3.5,200, Information Exposure,nan
CVE-2016-1498,12/01/2016 2:50,8/01/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8766,12/01/2016 2:49,8/01/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1501,12/01/2016 2:48,8/01/2016 21:59,4.0,200, Information Exposure,nan
CVE-2015-8761,12/01/2016 2:46,8/01/2016 19:59,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-8376,12/01/2016 2:46,8/01/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8759,12/01/2016 2:45,8/01/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2016-1565,12/01/2016 2:44,8/01/2016 21:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8758,12/01/2016 2:44,8/01/2016 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7466,12/01/2016 2:43,10/01/2016 3:59,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-7465,12/01/2016 2:42,10/01/2016 3:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6980,12/01/2016 1:29,11/01/2016 11:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-7151,12/01/2016 1:22,8/01/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6444,12/01/2016 1:21,8/01/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8331,11/01/2016 23:36,11/01/2016 15:59,5.8,20, Improper Input Validation,nan
CVE-2015-8335,11/01/2016 17:33,11/01/2016 15:59,4.0,200, Information Exposure,nan
CVE-2016-1131,8/01/2016 15:08,8/01/2016 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7435,8/01/2016 1:41,2/01/2016 21:59,1.9,254, 7PK – Security Features,nan
CVE-2015-7436,8/01/2016 1:40,2/01/2016 21:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-5037,8/01/2016 1:36,3/01/2016 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4962,8/01/2016 1:35,3/01/2016 5:59,2.7,200, Information Exposure,nan
CVE-2015-4946,8/01/2016 1:22,3/01/2016 5:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-7430,7/01/2016 20:17,2/01/2016 21:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7426,7/01/2016 20:16,2/01/2016 21:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-7422,7/01/2016 20:08,2/01/2016 21:59,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2007,7/01/2016 20:00,3/01/2016 0:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1985,7/01/2016 19:50,3/01/2016 0:59,1.9,284, Improper Access Control,nan
CVE-2015-7437,7/01/2016 15:13,2/01/2016 21:59,2.1,200, Information Exposure,nan
CVE-2015-7396,7/01/2016 4:44,2/01/2016 21:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7431,6/01/2016 19:50,2/01/2016 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7451,6/01/2016 19:48,2/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7438,6/01/2016 19:44,2/01/2016 21:59,1.9,200, Information Exposure,nan
CVE-2015-7452,6/01/2016 19:43,2/01/2016 21:59,4.0,200, Information Exposure,nan
CVE-2015-5036,6/01/2016 19:42,3/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5035,6/01/2016 19:42,3/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5017,6/01/2016 19:42,3/01/2016 5:59,5.5,284, Improper Access Control,nan
CVE-2015-5023,6/01/2016 19:40,3/01/2016 5:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7409,6/01/2016 19:24,1/01/2016 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7456,6/01/2016 19:23,1/01/2016 11:59,4.0,200, Information Exposure,nan
CVE-2015-7402,6/01/2016 19:22,2/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4990,6/01/2016 18:58,2/01/2016 5:59,1.9,200, Information Exposure,nan
CVE-2015-5051,6/01/2016 18:16,3/01/2016 5:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4989,6/01/2016 15:35,2/01/2016 5:59,5.0,200, Information Exposure,nan
CVE-2014-5040,5/01/2016 19:42,5/01/2016 2:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-7416,5/01/2016 19:39,2/01/2016 21:59,2.1,20, Improper Input Validation,nan
CVE-2015-7415,5/01/2016 19:38,1/01/2016 5:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5995,31/12/2015 21:11,31/12/2015 5:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5994,31/12/2015 21:11,31/12/2015 5:59,7.9,255, Credentials Management,nan
CVE-2015-2918,31/12/2015 20:41,31/12/2015 5:59,4.3,20, Improper Input Validation,nan
CVE-2015-2913,31/12/2015 20:40,31/12/2015 5:59,4.3,200, Information Exposure,nan
CVE-2015-2912,31/12/2015 20:32,31/12/2015 5:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2896,31/12/2015 20:31,31/12/2015 5:59,5.0,200, Information Exposure,nan
CVE-2015-2895,31/12/2015 20:30,31/12/2015 5:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2894,31/12/2015 20:30,31/12/2015 5:59,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2015-2875,31/12/2015 20:29,31/12/2015 5:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2874,31/12/2015 20:29,31/12/2015 5:59,10.0,255, Credentials Management,nan
CVE-2014-4876,31/12/2015 20:28,31/12/2015 5:59,4.3,200, Information Exposure,nan
CVE-2014-3260,31/12/2015 20:28,31/12/2015 5:59,6.8,310, Cryptographic Issues,nan
CVE-2015-5990,31/12/2015 20:07,31/12/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5988,31/12/2015 20:05,31/12/2015 16:59,9.3,255, Credentials Management,nan
CVE-2015-5989,31/12/2015 20:00,31/12/2015 16:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7794,30/12/2015 18:29,30/12/2015 5:59,5.0,20, Improper Input Validation,nan
CVE-2015-7793,30/12/2015 18:29,30/12/2015 5:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-7786,30/12/2015 18:25,29/12/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7788,30/12/2015 18:23,30/12/2015 5:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-7789,30/12/2015 18:22,30/12/2015 5:59,3.3,20, Improper Input Validation,nan
CVE-2015-7787,30/12/2015 18:21,30/12/2015 5:59,3.3,200, Information Exposure,nan
CVE-2015-7784,30/12/2015 18:20,30/12/2015 5:59,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7790,30/12/2015 18:19,30/12/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7782,30/12/2015 18:19,30/12/2015 5:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7783,29/12/2015 1:46,27/12/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8254,28/12/2015 21:43,27/12/2015 3:59,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-8253,28/12/2015 21:38,27/12/2015 3:59,4.3,200, Information Exposure,nan
CVE-2015-8252,28/12/2015 19:39,27/12/2015 3:59,4.3,200, Information Exposure,nan
CVE-2015-6537,28/12/2015 18:41,27/12/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7911,23/12/2015 21:04,23/12/2015 3:59,10.0,255, Credentials Management,nan
CVE-2015-6471,23/12/2015 20:42,23/12/2015 3:59,4.3,200, Information Exposure,nan
CVE-2014-1381,22/12/2015 18:57,1/07/2014 10:17,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1380,22/12/2015 18:56,1/07/2014 10:17,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1375,22/12/2015 18:56,1/07/2014 10:17,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-1371,22/12/2015 18:54,1/07/2014 10:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1378,22/12/2015 18:44,1/07/2014 10:17,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-7907,22/12/2015 18:41,21/12/2015 11:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1317,22/12/2015 18:27,1/07/2014 10:17,2.1,200, Information Exposure,nan
CVE-2015-6480,21/12/2015 21:01,21/12/2015 11:59,7.5,287, Improper Authentication,nan
CVE-2015-7919,21/12/2015 19:49,21/12/2015 11:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-7908,21/12/2015 18:29,21/12/2015 11:59,9.3,200, Information Exposure,nan
CVE-2015-7906,21/12/2015 18:27,21/12/2015 11:59,10.0,255, Credentials Management,nan
CVE-2014-4724,19/12/2015 2:02,7/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5881,18/12/2015 19:55,11/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4669,18/12/2015 19:05,28/06/2014 15:55,3.5,200, Information Exposure,nan
CVE-2015-8602,18/12/2015 18:45,17/12/2015 19:59,3.5,200, Information Exposure,nan
CVE-2015-8601,18/12/2015 18:45,17/12/2015 19:59,5.0,200, Information Exposure,nan
CVE-2015-8368,18/12/2015 18:43,17/12/2015 19:59,6.0,254, 7PK – Security Features,nan
CVE-2015-6556,18/12/2015 18:42,18/12/2015 11:59,2.3,200, Information Exposure,nan
CVE-2015-4027,18/12/2015 18:03,17/12/2015 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-7183,18/12/2015 17:49,4/02/2014 5:39,7.8,287, Improper Authentication,nan
CVE-2013-7179,18/12/2015 17:46,4/02/2014 5:39,8.3,20, Improper Input Validation,nan
CVE-2015-8565,17/12/2015 17:30,16/12/2015 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8564,17/12/2015 17:30,16/12/2015 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-8563,17/12/2015 17:28,16/12/2015 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5304,17/12/2015 17:13,16/12/2015 21:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8572,16/12/2015 19:55,15/12/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9268,16/12/2015 19:00,8/12/2014 16:59,6.8,20, Improper Input Validation,nan
CVE-2015-8561,16/12/2015 13:22,15/12/2015 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7918,16/12/2015 13:21,15/12/2015 5:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6361,15/12/2015 3:19,13/12/2015 3:59,6.5,20, Improper Input Validation,nan
CVE-2014-0012,14/12/2015 23:07,19/05/2014 14:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-8505,9/12/2015 18:20,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8507,9/12/2015 18:17,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6634,9/12/2015 18:14,8/12/2015 23:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6621,9/12/2015 18:11,8/12/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6625,9/12/2015 18:09,8/12/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6624,9/12/2015 18:09,8/12/2015 23:59,4.3,200, Information Exposure,nan
CVE-2015-6623,9/12/2015 18:08,8/12/2015 23:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6618,9/12/2015 17:43,8/12/2015 23:59,4.3,254, 7PK – Security Features,nan
CVE-2015-6629,9/12/2015 17:12,8/12/2015 23:59,5.0,200, Information Exposure,nan
CVE-2015-8084,8/12/2015 20:49,7/12/2015 20:59,7.1,20, Improper Input Validation,nan
CVE-2015-7348,8/12/2015 20:47,7/12/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8482,8/12/2015 20:46,7/12/2015 20:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-1342,8/12/2015 20:37,7/12/2015 20:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1369,8/12/2015 20:36,1/07/2014 10:17,4.3,20, Improper Input Validation,nan
CVE-2015-1344,8/12/2015 20:34,7/12/2015 20:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-1346,8/12/2015 20:28,22/05/2014 19:55,5.0,20, Improper Input Validation,nan
CVE-2015-6384,7/12/2015 20:29,5/12/2015 3:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-8480,7/12/2015 20:25,6/12/2015 1:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8479,7/12/2015 20:24,6/12/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3281,4/12/2015 18:43,8/06/2014 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3279,4/12/2015 18:43,29/05/2014 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3278,4/12/2015 18:42,8/06/2014 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4911,4/12/2015 16:21,22/07/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2014-4164,4/12/2015 16:21,16/06/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3898,4/12/2015 16:21,14/08/2014 5:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5239,4/12/2015 16:19,14/08/2014 5:01,4.0,310, Cryptographic Issues,nan
CVE-2014-5193,4/12/2015 16:18,7/08/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5196,4/12/2015 16:17,12/08/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2949,4/12/2015 16:16,18/06/2014 16:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0972,4/12/2015 16:16,1/08/2014 11:13,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-3819,4/12/2015 16:16,4/10/2012 11:11,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0859,4/12/2015 15:15,3/12/2015 20:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-3323,3/12/2015 18:45,18/07/2014 0:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3298,3/12/2015 18:38,2/07/2014 10:35,4.0,255, Credentials Management,nan
CVE-2014-3297,3/12/2015 18:37,2/07/2014 10:35,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5859,30/11/2015 19:50,22/11/2015 3:59,4.3,200, Information Exposure,nan
CVE-2015-1453,30/11/2015 19:49,2/02/2015 16:59,5.0,310, Cryptographic Issues,nan
CVE-2015-1112,30/11/2015 19:48,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-0680,30/11/2015 19:48,28/03/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-0175,30/11/2015 19:47,27/04/2015 12:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0174,30/11/2015 19:47,27/04/2015 12:59,4.0,200, Information Exposure,nan
CVE-2014-4818,30/11/2015 19:20,24/02/2015 20:59,2.1,200, Information Exposure,nan
CVE-2014-4499,30/11/2015 19:20,30/01/2015 11:59,2.1,200, Information Exposure,nan
CVE-2014-4497,30/11/2015 19:20,30/01/2015 11:59,10.0,189, Numeric Errors,nan
CVE-2014-2130,30/11/2015 19:03,6/03/2015 2:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7286,27/11/2015 19:36,25/11/2015 4:59,6.4,310, Cryptographic Issues,nan
CVE-2015-6848,27/11/2015 19:35,27/11/2015 2:59,8.5,284, Improper Access Control,nan
CVE-2015-1494,27/11/2015 19:20,17/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0618,27/11/2015 19:18,21/02/2015 11:59,7.1,19, Data Processing Errors,nan
CVE-2015-0584,27/11/2015 19:17,20/02/2015 2:59,7.2,20, Improper Input Validation,nan
CVE-2014-5027,27/11/2015 18:39,25/07/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5242,27/11/2015 17:14,25/11/2015 20:59,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5266,25/11/2015 20:39,18/08/2014 11:15,5.0,399, Resource Management Errors,nan
CVE-2014-5265,25/11/2015 20:38,18/08/2014 11:15,5.0,399, Resource Management Errors,nan
CVE-2015-7808,25/11/2015 20:23,24/11/2015 20:59,7.5,20, Improper Input Validation,nan
CVE-2014-5240,25/11/2015 20:22,18/08/2014 11:15,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5204,25/11/2015 20:21,18/08/2014 11:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8228,25/11/2015 18:31,24/11/2015 20:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7287,25/11/2015 18:29,25/11/2015 4:59,7.5,255, Credentials Management,nan
CVE-2015-7285,25/11/2015 18:27,25/11/2015 4:59,5.8,287, Improper Authentication,nan
CVE-2015-7288,25/11/2015 16:44,25/11/2015 4:59,4.3,254, 7PK – Security Features,nan
CVE-2015-5053,25/11/2015 15:58,24/11/2015 20:59,10.0,284, Improper Access Control,nan
CVE-2015-6929,24/11/2015 18:13,16/09/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0905,24/11/2015 18:10,8/04/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1782,24/11/2015 18:09,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3571,24/11/2015 18:07,6/10/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6380,24/11/2015 17:01,24/11/2015 4:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6377,24/11/2015 16:57,24/11/2015 4:59,7.8,399, Resource Management Errors,nan
CVE-2015-7290,23/11/2015 16:54,21/11/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7289,23/11/2015 16:54,21/11/2015 11:59,9.3,255, Credentials Management,nan
CVE-2009-5149,23/11/2015 16:52,21/11/2015 11:59,4.3,255, Credentials Management,nan
CVE-2015-7291,23/11/2015 16:47,21/11/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7777,23/11/2015 16:21,21/11/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6376,23/11/2015 15:37,21/11/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5787,23/11/2015 15:36,22/11/2015 3:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1376,20/11/2015 16:11,1/07/2014 10:17,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1373,20/11/2015 16:10,1/07/2014 10:17,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1372,20/11/2015 16:10,1/07/2014 10:17,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-8566,20/11/2015 16:08,15/11/2014 21:59,6.4,200, Information Exposure,nan
CVE-2014-8481,20/11/2015 16:08,10/11/2014 11:55,4.9,399, Resource Management Errors,nan
CVE-2014-3674,20/11/2015 16:02,13/11/2014 21:32,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3602,20/11/2015 16:01,13/11/2014 21:32,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-8087,20/11/2015 15:10,19/11/2015 20:59,5.0,399, Resource Management Errors,nan
CVE-2015-7772,20/11/2015 15:08,20/11/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7771,20/11/2015 15:07,20/11/2015 3:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8083,20/11/2015 14:59,19/11/2015 20:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7845,20/11/2015 14:58,19/11/2015 20:59,5.0,20, Improper Input Validation,nan
CVE-2015-8236,19/11/2015 19:16,19/11/2015 11:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8090,19/11/2015 19:14,18/11/2015 21:59,4.0,200, Information Exposure,nan
CVE-2015-7910,19/11/2015 19:08,19/11/2015 11:59,7.8,284, Improper Access Control,nan
CVE-2014-6144,19/11/2015 19:01,13/03/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7404,19/11/2015 17:44,14/11/2015 3:59,1.9,200, Information Exposure,nan
CVE-2014-8617,19/11/2015 17:43,4/03/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6374,19/11/2015 17:19,19/11/2015 2:59,4.3,20, Improper Input Validation,nan
CVE-2015-6373,19/11/2015 17:19,18/11/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6372,19/11/2015 17:18,18/11/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6371,19/11/2015 17:18,19/11/2015 2:59,4.0,200, Information Exposure,nan
CVE-2015-6370,19/11/2015 17:16,19/11/2015 2:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-6369,19/11/2015 17:09,19/11/2015 2:59,4.9,20, Improper Input Validation,nan
CVE-2015-6368,19/11/2015 17:08,19/11/2015 2:59,5.0,200, Information Exposure,nan
CVE-2015-1306,19/11/2015 17:00,22/01/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-8233,18/11/2015 20:03,17/11/2015 15:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6330,18/11/2015 20:02,18/11/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-8232,18/11/2015 19:34,17/11/2015 15:59,4.3,200, Information Exposure,nan
CVE-2015-8222,18/11/2015 19:33,17/11/2015 15:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-5217,18/11/2015 17:31,17/11/2015 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7897,17/11/2015 17:54,16/11/2015 19:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5447,17/11/2015 16:28,20/10/2014 15:55,2.1,200, Information Exposure,nan
CVE-2014-4494,17/11/2015 16:25,30/01/2015 11:59,6.8,20, Improper Input Validation,nan
CVE-2014-4493,17/11/2015 16:24,30/01/2015 11:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4253,17/11/2015 16:15,28/01/2011 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3689,17/11/2015 16:09,28/01/2011 22:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-3454,17/11/2015 16:08,28/01/2011 22:00,9.3,189, Numeric Errors,nan
CVE-2010-3453,17/11/2015 16:06,28/01/2011 22:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3450,17/11/2015 16:03,28/01/2011 22:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5498,17/11/2015 15:17,30/09/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9685,17/11/2015 4:12,25/02/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9057,17/11/2015 4:12,16/12/2014 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0852,16/11/2015 19:40,7/12/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0848,16/11/2015 19:40,7/12/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4437,16/11/2015 19:39,1/10/2012 3:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3977,16/11/2015 19:26,15/11/2015 3:59,7.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7774,16/11/2015 19:24,14/11/2015 3:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-7427,16/11/2015 19:20,14/11/2015 3:59,5.0,200, Information Exposure,nan
CVE-2014-6037,13/11/2015 17:53,26/10/2014 19:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0310,13/11/2015 17:08,23/01/2015 21:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5233,13/11/2015 16:53,14/01/2015 11:59,1.9,200, Information Exposure,nan
CVE-2014-5232,13/11/2015 16:52,14/01/2015 11:59,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-5231,13/11/2015 16:52,14/01/2015 11:59,2.1,200, Information Exposure,nan
CVE-2014-5213,13/11/2015 16:51,19/12/2014 18:59,4.0,200, Information Exposure,nan
CVE-2014-5212,13/11/2015 16:51,19/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7994,12/11/2015 20:17,10/11/2015 17:59,7.5,20, Improper Input Validation,nan
CVE-2015-7993,12/11/2015 20:16,10/11/2015 17:59,7.5,20, Improper Input Validation,nan
CVE-2015-7992,12/11/2015 20:16,10/11/2015 17:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7991,12/11/2015 19:58,10/11/2015 17:59,5.0,200, Information Exposure,nan
CVE-2015-7828,12/11/2015 19:44,10/11/2015 17:59,10.0,20, Improper Input Validation,nan
CVE-2015-7817,12/11/2015 19:06,12/11/2015 3:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-7818,12/11/2015 19:04,12/11/2015 3:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7819,12/11/2015 18:49,12/11/2015 3:59,5.0,255, Credentials Management,nan
CVE-2015-7820,12/11/2015 18:46,12/11/2015 3:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-3647,10/11/2015 19:12,18/06/2013 18:55,6.8,200, Information Exposure,nan
CVE-2013-3646,10/11/2015 19:11,18/06/2013 18:55,6.8,17, DEPRECATED: Code,nan
CVE-2012-6334,10/11/2015 18:58,31/12/2012 11:50,2.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-5848,10/11/2015 18:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2012-4006,10/11/2015 18:57,17/08/2012 20:55,4.3,200, Information Exposure,nan
CVE-2015-5655,10/11/2015 18:53,10/11/2015 3:59,5.8,310, Cryptographic Issues,nan
CVE-2015-8007,10/11/2015 18:52,9/11/2015 18:59,4.0,200, Information Exposure,nan
CVE-2015-8006,10/11/2015 18:27,9/11/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8002,10/11/2015 18:26,9/11/2015 18:59,6.8,399, Resource Management Errors,nan
CVE-2015-8004,10/11/2015 17:54,9/11/2015 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-8003,10/11/2015 17:53,9/11/2015 18:59,6.8,399, Resource Management Errors,nan
CVE-2015-8001,10/11/2015 17:50,9/11/2015 18:59,3.5,284, Improper Access Control,nan
CVE-2015-8095,10/11/2015 16:45,9/11/2015 16:59,5.0,200, Information Exposure,nan
CVE-2014-8873,10/11/2015 16:32,9/11/2015 16:59,10.0,20, Improper Input Validation,nan
CVE-2015-8005,10/11/2015 14:19,9/11/2015 18:59,5.0,200, Information Exposure,nan
CVE-2015-7412,9/11/2015 20:25,8/11/2015 22:59,2.6,200, Information Exposure,nan
CVE-2015-5044,9/11/2015 20:12,8/11/2015 22:59,3.3,20, Improper Input Validation,nan
CVE-2015-5043,9/11/2015 20:12,8/11/2015 22:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-5019,9/11/2015 20:11,8/11/2015 22:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-8082,9/11/2015 19:33,6/11/2015 21:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-7395,9/11/2015 19:26,8/11/2015 3:59,4.0,284, Improper Access Control,nan
CVE-2015-4966,9/11/2015 19:25,8/11/2015 22:59,6.5,255, Credentials Management,nan
CVE-2015-1999,9/11/2015 19:10,8/11/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-1997,9/11/2015 19:10,8/11/2015 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1996,9/11/2015 19:09,8/11/2015 22:59,2.1,200, Information Exposure,nan
CVE-2015-1995,9/11/2015 19:08,8/11/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1994,9/11/2015 19:08,8/11/2015 22:59,5.0,200, Information Exposure,nan
CVE-2015-1989,9/11/2015 16:20,8/11/2015 22:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5305,9/11/2015 13:46,6/11/2015 18:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5672,6/11/2015 15:35,6/11/2015 11:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3825,5/11/2015 16:22,14/10/2014 14:55,6.8,20, Improper Input Validation,nan
CVE-2014-3818,5/11/2015 16:21,14/10/2014 14:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5105,5/11/2015 15:43,27/04/2014 20:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-5673,4/11/2015 19:41,4/11/2015 3:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-7244,4/11/2015 19:32,4/11/2015 3:59,7.5,284, Improper Access Control,nan
CVE-2014-8013,4/11/2015 19:28,3/02/2015 22:59,4.9,20, Improper Input Validation,nan
CVE-2015-7253,4/11/2015 18:59,4/11/2015 3:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-5717,4/11/2015 18:41,31/08/2015 10:59,5.8,310, Cryptographic Issues,nan
CVE-2015-7650,4/11/2015 18:18,4/11/2015 3:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5578,4/11/2015 17:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-2828,4/11/2015 17:38,15/04/2014 14:55,7.8,287, Improper Authentication,nan
CVE-2014-1910,4/11/2015 17:35,21/02/2014 15:30,5.8,310, Cryptographic Issues,nan
CVE-2014-0103,4/11/2015 17:35,29/07/2014 14:55,2.1,310, Cryptographic Issues,nan
CVE-2013-4669,4/11/2015 17:34,25/06/2013 14:38,5.4,310, Cryptographic Issues,nan
CVE-2012-5811,4/11/2015 17:34,4/11/2012 22:55,5.8,310, Cryptographic Issues,nan
CVE-2012-5809,4/11/2015 17:33,4/11/2012 22:55,5.8,310, Cryptographic Issues,nan
CVE-2000-0219,4/11/2015 17:31,23/02/2000 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-5082,4/11/2015 16:32,6/08/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5308,4/11/2015 2:47,2/11/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3270,4/11/2015 2:45,2/11/2015 19:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-3186,4/11/2015 2:45,2/11/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5470,4/11/2015 2:44,2/11/2015 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-8074,3/11/2015 23:18,3/11/2015 11:59,5.0,200, Information Exposure,nan
CVE-2015-8073,3/11/2015 23:17,3/11/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8072,3/11/2015 23:16,3/11/2015 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-8038,3/11/2015 23:12,2/11/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-8037,3/11/2015 23:11,2/11/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0598,2/11/2015 18:32,6/03/2015 3:00,6.8,19, Data Processing Errors,nan
CVE-2015-0594,2/11/2015 18:31,27/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0632,2/11/2015 18:30,27/02/2015 2:59,5.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0657,2/11/2015 18:29,6/03/2015 3:00,5.0,20, Improper Input Validation,nan
CVE-2015-0656,2/11/2015 18:29,4/03/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0655,2/11/2015 18:29,28/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0651,2/11/2015 18:29,27/02/2015 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0661,2/11/2015 18:28,6/03/2015 3:00,4.0,20, Improper Input Validation,nan
CVE-2015-6032,2/11/2015 18:26,31/10/2015 4:59,9.3,255, Credentials Management,nan
CVE-2015-6033,2/11/2015 18:16,31/10/2015 4:59,9.3,310, Cryptographic Issues,nan
CVE-2015-6343,2/11/2015 18:14,31/10/2015 4:59,5.0,399, Resource Management Errors,nan
CVE-2015-8028,2/11/2015 18:11,30/10/2015 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9033,2/11/2015 18:11,25/11/2014 23:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5458,2/11/2015 18:07,25/08/2014 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5399,2/11/2015 18:06,28/08/2014 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8029,2/11/2015 18:04,30/10/2015 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5389,2/11/2015 18:03,6/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-8030,2/11/2015 18:02,30/10/2015 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1253,2/11/2015 17:49,14/02/2014 13:10,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5671,30/10/2015 20:03,29/10/2015 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5670,30/10/2015 20:02,29/10/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5955,30/10/2015 20:01,29/10/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-5668,30/10/2015 20:00,29/10/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3230,30/10/2015 19:57,29/10/2015 20:59,7.5,254, 7PK – Security Features,nan
CVE-2015-6006,30/10/2015 19:56,29/10/2015 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7859,30/10/2015 19:40,29/10/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-7899,30/10/2015 19:37,29/10/2015 20:59,5.0,284, Improper Access Control,nan
CVE-2014-3397,30/10/2015 18:01,19/10/2014 1:55,7.8,399, Resource Management Errors,nan
CVE-2015-5629,29/10/2015 16:06,11/09/2015 21:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-2899,29/10/2015 16:04,29/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2898,29/10/2015 16:04,29/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2901,29/10/2015 16:02,29/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2900,29/10/2015 16:01,29/10/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6034,29/10/2015 15:55,28/10/2015 18:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-2224,29/10/2015 15:51,9/08/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2223,29/10/2015 15:51,9/08/2011 22:55,5.0,310, Cryptographic Issues,nan
CVE-2011-2221,29/10/2015 15:50,9/08/2011 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7903,28/10/2015 21:05,28/10/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7900,28/10/2015 21:04,28/10/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-6494,28/10/2015 21:04,28/10/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6493,28/10/2015 21:03,28/10/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6492,28/10/2015 21:03,28/10/2015 10:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6490,28/10/2015 21:03,28/10/2015 10:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6488,28/10/2015 21:02,28/10/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6486,28/10/2015 21:02,28/10/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3972,28/10/2015 20:59,28/10/2015 10:59,10.0,254, 7PK – Security Features,nan
CVE-2015-3973,28/10/2015 20:58,28/10/2015 10:59,5.0,254, 7PK – Security Features,nan
CVE-2015-3971,28/10/2015 20:57,28/10/2015 10:59,7.5,284, Improper Access Control,nan
CVE-2015-3970,28/10/2015 20:57,28/10/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3969,28/10/2015 20:57,28/10/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-3968,28/10/2015 20:57,28/10/2015 10:59,7.5,255, Credentials Management,nan
CVE-2015-3967,28/10/2015 20:57,28/10/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5188,28/10/2015 18:54,27/10/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5178,28/10/2015 18:46,27/10/2015 16:59,4.3,254, 7PK – Security Features,nan
CVE-2015-3996,28/10/2015 18:41,27/10/2015 16:59,4.3,254, 7PK – Security Features,nan
CVE-2015-7902,28/10/2015 18:33,28/10/2015 10:59,5.0,200, Information Exposure,nan
CVE-2014-7256,28/10/2015 18:14,5/12/2014 17:59,7.8,399, Resource Management Errors,nan
CVE-2014-7243,28/10/2015 18:11,5/12/2014 17:59,5.0,200, Information Exposure,nan
CVE-2014-9304,28/10/2015 18:10,7/12/2014 21:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8671,28/10/2015 17:56,7/11/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7881,28/10/2015 11:40,26/10/2015 14:59,3.5,284, Improper Access Control,nan
CVE-2015-7699,28/10/2015 11:40,26/10/2015 15:59,9.0,20, Improper Input Validation,nan
CVE-2015-0663,28/10/2015 2:17,17/03/2015 2:01,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-0662,28/10/2015 2:17,17/03/2015 2:01,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-0660,28/10/2015 2:17,14/03/2015 1:59,7.2,284, Improper Access Control,nan
CVE-2015-1165,28/10/2015 2:16,9/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-0682,28/10/2015 2:16,3/04/2015 10:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0665,28/10/2015 2:16,17/03/2015 2:01,6.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1464,28/10/2015 2:15,9/03/2015 14:59,6.4,284, Improper Access Control,nan
CVE-2015-5251,28/10/2015 2:07,26/10/2015 17:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-5665,28/10/2015 2:06,27/10/2015 2:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3674,28/10/2015 1:23,10/06/2013 3:19,4.3,20, Improper Input Validation,nan
CVE-2013-3672,28/10/2015 1:23,10/06/2013 3:19,4.3,20, Improper Input Validation,nan
CVE-2015-5014,27/10/2015 1:16,26/10/2015 2:59,9.3,20, Improper Input Validation,nan
CVE-2015-5011,27/10/2015 1:13,26/10/2015 2:59,3.2,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1005,27/10/2015 1:09,25/10/2015 2:59,2.1,200, Information Exposure,nan
CVE-2015-1003,27/10/2015 1:06,25/10/2015 2:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-7003,27/10/2015 0:50,23/10/2015 21:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-6987,27/10/2015 0:42,23/10/2015 21:59,2.1,20, Improper Input Validation,nan
CVE-2015-6985,27/10/2015 0:41,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7021,27/10/2015 0:40,23/10/2015 21:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5945,27/10/2015 0:23,23/10/2015 21:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-7020,27/10/2015 0:22,23/10/2015 21:59,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5944,27/10/2015 0:21,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5943,27/10/2015 0:20,23/10/2015 21:59,4.3,254, 7PK – Security Features,nan
CVE-2015-1001,27/10/2015 0:19,25/10/2015 2:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5938,27/10/2015 0:16,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5934,27/10/2015 0:13,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5933,27/10/2015 0:13,23/10/2015 21:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7016,27/10/2015 0:02,23/10/2015 21:59,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-6984,26/10/2015 23:47,23/10/2015 21:59,8.8,284, Improper Access Control,nan
CVE-2015-7019,26/10/2015 23:30,23/10/2015 21:59,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0529,23/10/2015 15:39,14/05/2014 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6397,23/10/2015 15:38,7/12/2013 20:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3344,23/10/2015 15:19,10/07/2013 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7822,22/10/2015 19:51,21/10/2015 15:59,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7698,22/10/2015 19:51,21/10/2015 18:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4718,22/10/2015 19:25,21/10/2015 18:59,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-4717,22/10/2015 18:14,21/10/2015 18:59,7.8,399, Resource Management Errors,nan
CVE-2015-0670,22/10/2015 14:40,21/03/2015 1:59,6.4,287, Improper Authentication,nan
CVE-2015-0658,22/10/2015 14:37,28/03/2015 1:59,7.9,20, Improper Input Validation,nan
CVE-2013-7438,22/10/2015 14:14,29/03/2015 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1251,21/10/2015 16:29,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3757,21/10/2015 16:23,15/05/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3808,21/10/2015 16:22,21/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5397,21/10/2015 16:21,28/08/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1244,21/10/2015 14:58,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7751,20/10/2015 16:10,19/10/2015 18:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2015-7752,20/10/2015 16:04,19/10/2015 18:59,7.8,399, Resource Management Errors,nan
CVE-2015-5661,20/10/2015 3:14,18/10/2015 19:59,4.3,200, Information Exposure,nan
CVE-2015-7856,19/10/2015 19:34,16/10/2015 20:59,10.0,255, Credentials Management,nan
CVE-2015-5444,19/10/2015 18:25,18/10/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7839,16/10/2015 18:34,15/10/2015 20:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5660,16/10/2015 18:06,16/10/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7838,16/10/2015 16:25,15/10/2015 20:59,10.0,20, Improper Input Validation,nan
CVE-2013-7445,16/10/2015 16:22,16/10/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-7729,16/10/2015 15:06,15/10/2015 20:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3396,16/10/2015 15:06,26/06/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1996,16/10/2015 15:06,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7728,16/10/2015 15:05,15/10/2015 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7727,16/10/2015 15:04,15/10/2015 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7725,16/10/2015 15:04,15/10/2015 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6507,16/10/2015 15:02,15/10/2015 20:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7726,16/10/2015 15:01,15/10/2015 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7730,16/10/2015 14:59,15/10/2015 20:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0774,16/10/2015 14:54,28/02/2014 6:18,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0471,16/10/2015 14:53,30/04/2014 14:22,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5647,13/10/2015 17:05,12/10/2015 10:59,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5646,13/10/2015 17:05,12/10/2015 10:59,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5443,13/10/2015 17:04,12/10/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-7602,13/10/2015 16:52,29/09/2015 19:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3586,13/10/2015 16:51,21/04/2015 17:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3497,13/10/2015 16:49,3/07/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1949,13/10/2015 16:38,16/01/2015 16:59,7.2,284, Improper Access Control,nan
CVE-2014-1874,13/10/2015 16:36,28/02/2014 6:18,4.4,20, Improper Input Validation,nan
CVE-2014-1695,13/10/2015 16:35,1/03/2014 0:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0632,13/10/2015 16:35,1/04/2014 6:28,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6975,13/10/2015 16:34,20/05/2014 11:13,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0928,13/10/2015 16:33,21/01/2013 21:55,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-5659,13/10/2015 16:32,11/10/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5648,13/10/2015 15:19,11/10/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7767,9/10/2015 21:14,9/10/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4498,9/10/2015 20:47,30/01/2015 11:59,4.7,17, DEPRECATED: Code,nan
CVE-2015-7766,9/10/2015 17:43,9/10/2015 14:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5649,9/10/2015 17:28,8/10/2015 20:59,7.0,287, Improper Authentication,nan
CVE-2015-1337,9/10/2015 17:26,9/10/2015 14:59,6.8,20, Improper Input Validation,nan
CVE-2015-0845,9/10/2015 17:25,17/04/2015 17:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3370,8/10/2015 15:18,19/10/2014 1:55,7.1,399, Resource Management Errors,nan
CVE-2014-3369,8/10/2015 15:17,19/10/2014 1:55,7.1,399, Resource Management Errors,nan
CVE-2014-3368,8/10/2015 15:17,19/10/2014 1:55,7.8,399, Resource Management Errors,nan
CVE-2014-3888,8/10/2015 15:15,10/07/2014 11:06,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3936,8/10/2015 15:10,2/06/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3551,8/10/2015 15:07,29/07/2014 11:10,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3550,8/10/2015 15:07,29/07/2014 11:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3182,8/10/2015 15:03,28/09/2014 10:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2370,8/10/2015 14:59,24/07/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2711,8/10/2015 14:58,14/04/2014 15:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2732,8/10/2015 14:51,19/04/2014 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2712,8/10/2015 14:50,14/04/2014 15:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1462,8/10/2015 14:48,31/01/2013 21:55,7.8,189, Numeric Errors,nan
CVE-2014-2351,8/10/2015 14:47,20/05/2014 11:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7262,8/10/2015 14:45,5/01/2014 20:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2538,8/10/2015 14:44,25/03/2014 18:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1091,8/10/2015 14:44,2/05/2013 18:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1070,8/10/2015 14:43,17/02/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6469,8/10/2015 14:31,2/01/2013 11:46,5.0,200, Information Exposure,nan
CVE-2012-6468,8/10/2015 14:30,2/01/2013 11:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6069,8/10/2015 14:23,21/01/2013 21:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3878,7/10/2015 19:03,6/10/2015 17:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3879,7/10/2015 19:00,6/10/2015 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-7717,7/10/2015 18:50,6/10/2015 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-4939,7/10/2015 18:49,6/10/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7716,7/10/2015 18:42,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6606,7/10/2015 18:41,6/10/2015 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6603,7/10/2015 18:40,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6601,7/10/2015 18:40,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6604,7/10/2015 18:39,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6599,7/10/2015 18:38,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6596,7/10/2015 18:37,6/10/2015 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-6598,7/10/2015 18:36,6/10/2015 17:59,10.0,20, Improper Input Validation,nan
CVE-2015-3877,7/10/2015 18:36,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3875,7/10/2015 18:36,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3874,7/10/2015 18:35,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3873,7/10/2015 18:35,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3872,7/10/2015 18:34,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6600,7/10/2015 18:33,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4973,7/10/2015 15:09,6/10/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3871,7/10/2015 15:09,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5022,7/10/2015 15:08,6/10/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-5024,7/10/2015 15:06,6/10/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-5642,7/10/2015 15:05,6/10/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5643,7/10/2015 14:56,6/10/2015 1:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5644,7/10/2015 14:53,6/10/2015 1:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-5645,7/10/2015 14:48,6/10/2015 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7314,7/10/2015 14:45,6/10/2015 1:59,4.3,200, Information Exposure,nan
CVE-2015-3870,7/10/2015 14:34,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3869,7/10/2015 14:33,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3867,7/10/2015 14:32,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3865,7/10/2015 14:31,6/10/2015 17:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3847,7/10/2015 14:30,6/10/2015 17:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-3823,7/10/2015 14:28,6/10/2015 17:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4992,7/10/2015 11:33,6/10/2015 1:59,3.5,20, Improper Input Validation,nan
CVE-2015-0987,7/10/2015 8:13,6/10/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-5650,6/10/2015 23:57,6/10/2015 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5641,6/10/2015 23:57,6/10/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5640,6/10/2015 23:56,6/10/2015 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4971,6/10/2015 23:55,6/10/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4967,6/10/2015 23:54,6/10/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4965,6/10/2015 23:54,6/10/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-4944,6/10/2015 23:53,6/10/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3938,6/10/2015 23:52,6/10/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-5687,6/10/2015 23:50,5/10/2015 14:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1015,6/10/2015 23:49,6/10/2015 1:59,2.1,200, Information Exposure,nan
CVE-2015-0988,6/10/2015 23:49,6/10/2015 1:59,2.1,200, Information Exposure,nan
CVE-2015-7708,6/10/2015 23:38,5/10/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4964,6/10/2015 23:33,6/10/2015 1:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7709,6/10/2015 23:30,5/10/2015 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-7685,6/10/2015 18:25,5/10/2015 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1166,6/10/2015 3:04,7/01/2014 19:55,5.5,20, Improper Input Validation,nan
CVE-2011-1170,6/10/2015 2:57,22/06/2011 22:55,2.1,200, Information Exposure,nan
CVE-2011-1171,6/10/2015 2:55,22/06/2011 22:55,2.1,200, Information Exposure,nan
CVE-2011-1172,6/10/2015 2:53,22/06/2011 22:55,2.1,200, Information Exposure,nan
CVE-2011-0726,6/10/2015 2:49,18/07/2011 22:55,2.1,20, Improper Input Validation,nan
CVE-2012-2932,6/10/2015 2:48,24/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4743,6/10/2015 2:43,9/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4744,6/10/2015 2:39,9/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4871,6/10/2015 2:38,7/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4960,6/10/2015 2:37,21/07/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5102,6/10/2015 2:36,25/07/2014 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4858,6/10/2015 2:33,26/07/2014 11:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7832,6/10/2015 2:27,24/11/2014 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7833,6/10/2015 2:24,24/11/2014 11:59,4.0,200, Information Exposure,nan
CVE-2014-8555,5/10/2015 21:45,12/11/2014 16:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9031,5/10/2015 21:43,25/11/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9032,5/10/2015 21:41,25/11/2014 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9038,5/10/2015 21:40,25/11/2014 23:59,6.4,20, Improper Input Validation,nan
CVE-2015-0271,5/10/2015 21:34,10/03/2015 14:59,4.0,200, Information Exposure,nan
CVE-2015-1773,5/10/2015 21:33,8/04/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0297,5/10/2015 21:33,24/04/2015 14:59,9.0,284, Improper Access Control,nan
CVE-2015-2031,5/10/2015 21:27,4/10/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1983,5/10/2015 21:25,4/10/2015 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1934,5/10/2015 21:14,4/10/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2015-2027,5/10/2015 21:07,4/10/2015 2:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-2026,5/10/2015 21:04,4/10/2015 2:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1888,5/10/2015 20:49,3/10/2015 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2025,5/10/2015 20:47,4/10/2015 2:59,4.3,200, Information Exposure,nan
CVE-2015-2011,5/10/2015 20:45,4/10/2015 2:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0145,5/10/2015 20:43,3/10/2015 22:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0144,5/10/2015 20:35,3/10/2015 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0143,5/10/2015 20:27,3/10/2015 22:59,4.0,200, Information Exposure,nan
CVE-2015-0142,5/10/2015 20:26,3/10/2015 22:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8916,5/10/2015 19:47,3/10/2015 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0195,5/10/2015 19:44,3/10/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0141,5/10/2015 19:36,3/10/2015 22:59,4.0,284, Improper Access Control,nan
CVE-2015-5651,5/10/2015 19:29,3/10/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5653,5/10/2015 18:50,2/10/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1933,5/10/2015 17:55,4/10/2015 2:59,2.1,200, Information Exposure,nan
CVE-2011-4048,3/10/2015 1:59,12/11/2011 0:55,4.3,255, Credentials Management,nan
CVE-2015-1338,2/10/2015 20:48,1/10/2015 20:59,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-7612,2/10/2015 20:41,1/10/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6575,1/10/2015 18:10,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-3863,1/10/2015 18:10,1/10/2015 0:59,9.3,189, Numeric Errors,nan
CVE-2015-3861,1/10/2015 18:09,1/10/2015 0:59,5.0,189, Numeric Errors,nan
CVE-2015-3860,1/10/2015 18:08,1/10/2015 0:59,7.2,284, Improper Access Control,nan
CVE-2015-3858,1/10/2015 18:07,1/10/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3849,1/10/2015 18:07,1/10/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-3845,1/10/2015 18:03,1/10/2015 0:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-3844,1/10/2015 18:03,1/10/2015 0:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-3843,1/10/2015 18:03,1/10/2015 0:59,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-0679,1/10/2015 17:16,28/03/2015 1:59,6.1,20, Improper Input Validation,nan
CVE-2015-0678,1/10/2015 17:16,11/04/2015 1:59,7.8,20, Improper Input Validation,nan
CVE-2015-0675,1/10/2015 17:16,13/04/2015 1:59,8.3,284, Improper Access Control,nan
CVE-2015-0669,1/10/2015 17:15,21/03/2015 1:59,6.4,20, Improper Input Validation,nan
CVE-2015-0668,1/10/2015 17:15,20/03/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0637,1/10/2015 17:14,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0636,1/10/2015 17:13,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0635,1/10/2015 17:13,26/03/2015 10:59,9.0,20, Improper Input Validation,nan
CVE-2014-6446,1/10/2015 17:08,26/09/2014 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-3842,1/10/2015 16:47,1/10/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3836,1/10/2015 16:46,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-3832,1/10/2015 16:46,1/10/2015 0:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3835,1/10/2015 16:44,1/10/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-3834,1/10/2015 16:42,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-3831,1/10/2015 16:38,1/10/2015 0:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1541,1/10/2015 16:33,1/10/2015 0:59,4.3,284, Improper Access Control,nan
CVE-2015-3833,1/10/2015 16:30,1/10/2015 0:59,4.3,284, Improper Access Control,nan
CVE-2015-3837,1/10/2015 16:28,1/10/2015 0:59,9.3,20, Improper Input Validation,nan
CVE-2015-1536,1/10/2015 16:23,1/10/2015 0:59,8.5,189, Numeric Errors,nan
CVE-2014-7917,1/10/2015 16:18,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2014-7916,1/10/2015 16:18,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2014-7915,1/10/2015 16:17,1/10/2015 0:59,10.0,189, Numeric Errors,nan
CVE-2015-7603,30/09/2015 18:26,29/09/2015 19:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2917,30/09/2015 18:19,21/09/2015 10:59,4.3,20, Improper Input Validation,nan
CVE-2015-2916,30/09/2015 18:19,21/09/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2915,30/09/2015 18:19,21/09/2015 10:59,7.3,255, Credentials Management,nan
CVE-2015-1084,30/09/2015 17:39,18/03/2015 22:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-7604,30/09/2015 16:14,29/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0299,30/09/2015 16:14,29/09/2015 19:59,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9202,29/09/2015 19:34,28/09/2015 2:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0614,29/09/2015 19:32,3/04/2015 18:59,7.1,19, Data Processing Errors,nan
CVE-2015-0613,29/09/2015 19:32,3/04/2015 18:59,7.1,19, Data Processing Errors,nan
CVE-2015-0612,29/09/2015 19:32,3/04/2015 18:59,7.1,19, Data Processing Errors,nan
CVE-2015-0683,29/09/2015 19:31,3/04/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-0666,29/09/2015 19:31,3/04/2015 10:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0616,29/09/2015 19:31,3/04/2015 18:59,7.1,19, Data Processing Errors,nan
CVE-2015-0615,29/09/2015 19:31,3/04/2015 18:59,7.1,19, Data Processing Errors,nan
CVE-2015-0685,29/09/2015 19:30,3/04/2015 2:00,7.8,20, Improper Input Validation,nan
CVE-2015-0684,29/09/2015 19:30,3/04/2015 10:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0686,29/09/2015 19:29,3/04/2015 2:00,6.3,399, Resource Management Errors,nan
CVE-2015-0687,29/09/2015 19:28,3/04/2015 2:00,6.3,399, Resource Management Errors,nan
CVE-2015-1129,29/09/2015 19:27,10/04/2015 14:59,4.3,310, Cryptographic Issues,nan
CVE-2015-0694,29/09/2015 19:27,11/04/2015 1:59,5.0,284, Improper Access Control,nan
CVE-2015-0690,29/09/2015 19:27,7/04/2015 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0688,29/09/2015 19:27,4/04/2015 1:59,7.1,399, Resource Management Errors,nan
CVE-2015-3974,29/09/2015 19:23,28/09/2015 2:59,9.0,255, Credentials Management,nan
CVE-2015-6307,29/09/2015 19:17,28/09/2015 2:59,6.1,399, Resource Management Errors,nan
CVE-2015-7386,29/09/2015 19:00,28/09/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3872,29/09/2015 18:48,27/05/2014 13:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3871,29/09/2015 18:48,27/05/2014 13:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7383,29/09/2015 1:31,28/09/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7382,29/09/2015 1:07,28/09/2015 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-7381,29/09/2015 1:06,28/09/2015 2:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-7375,29/09/2015 1:06,25/09/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-6475,29/09/2015 1:00,26/09/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6474,29/09/2015 1:00,26/09/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-6469,29/09/2015 0:58,26/09/2015 1:59,5.0,200, Information Exposure,nan
CVE-2015-6468,29/09/2015 0:57,26/09/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6010,29/09/2015 0:52,28/09/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6007,29/09/2015 0:48,28/09/2015 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2349,29/09/2015 0:41,19/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0158,29/09/2015 0:33,24/03/2015 2:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2021,28/09/2015 16:33,13/05/2013 23:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2020,28/09/2015 16:31,13/05/2013 23:55,5.0,189, Numeric Errors,nan
CVE-2015-6303,24/09/2015 22:57,24/09/2015 14:59,4.3,200, Information Exposure,nan
CVE-2015-2350,24/09/2015 18:12,19/03/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0885,24/09/2015 16:46,28/02/2015 2:59,5.0,399, Resource Management Errors,nan
CVE-2015-7309,23/09/2015 19:15,22/09/2015 15:59,6.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-6238,23/09/2015 19:12,21/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6460,23/09/2015 18:55,18/09/2015 22:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6459,23/09/2015 18:53,18/09/2015 22:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5638,23/09/2015 18:39,20/09/2015 14:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5637,23/09/2015 18:39,20/09/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5636,23/09/2015 18:37,20/09/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5635,23/09/2015 18:36,20/09/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5634,23/09/2015 18:32,20/09/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5633,23/09/2015 18:30,20/09/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-5632,23/09/2015 18:29,20/09/2015 17:59,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-3962,23/09/2015 18:27,18/09/2015 22:59,5.0,310, Cryptographic Issues,nan
CVE-2015-7234,23/09/2015 15:41,17/09/2015 16:59,4.0,20, Improper Input Validation,nan
CVE-2015-7307,23/09/2015 3:04,21/09/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7306,23/09/2015 3:03,21/09/2015 19:59,4.9,284, Improper Access Control,nan
CVE-2015-7305,23/09/2015 3:00,21/09/2015 19:59,5.0,200, Information Exposure,nan
CVE-2015-7304,23/09/2015 2:58,21/09/2015 19:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7238,22/09/2015 19:00,18/09/2015 14:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-7237,22/09/2015 18:59,18/09/2015 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5274,22/09/2015 18:54,18/09/2015 14:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-4638,22/09/2015 18:49,18/09/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2014-4671,22/09/2015 18:47,9/07/2014 5:04,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5992,22/09/2015 1:40,21/09/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-7227,22/09/2015 0:24,17/09/2015 16:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7229,22/09/2015 0:23,17/09/2015 16:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-7231,22/09/2015 0:20,17/09/2015 16:59,5.0,20, Improper Input Validation,nan
CVE-2015-7230,22/09/2015 0:16,17/09/2015 16:59,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-5991,21/09/2015 19:55,21/09/2015 10:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5993,21/09/2015 15:52,21/09/2015 10:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-7233,18/09/2015 18:38,17/09/2015 16:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-7232,18/09/2015 18:32,17/09/2015 16:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6966,18/09/2015 1:53,16/09/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1173,17/09/2015 18:43,16/09/2015 18:59,7.5,284, Improper Access Control,nan
CVE-2015-1148,17/09/2015 18:43,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1144,17/09/2015 18:42,10/04/2015 14:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1142,17/09/2015 18:39,10/04/2015 14:59,2.1,20, Improper Input Validation,nan
CVE-2015-6965,17/09/2015 18:21,16/09/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6829,17/09/2015 18:21,16/09/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6920,17/09/2015 18:20,11/09/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2136,17/09/2015 18:20,16/09/2015 14:59,4.0,200, Information Exposure,nan
CVE-2014-9476,17/09/2015 18:14,16/01/2015 16:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9475,17/09/2015 18:14,16/01/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1138,17/09/2015 17:47,10/04/2015 14:59,4.9,20, Improper Input Validation,nan
CVE-2015-1130,17/09/2015 17:41,10/04/2015 14:59,7.2,254, 7PK – Security Features,nan
CVE-2015-6969,16/09/2015 19:48,16/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5472,16/09/2015 19:47,15/09/2015 18:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5088,16/09/2015 19:31,6/08/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4958,16/09/2015 19:30,26/09/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4930,16/09/2015 19:29,29/08/2014 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4854,16/09/2015 19:29,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3275,16/09/2015 19:28,26/05/2014 0:25,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3266,16/09/2015 19:28,26/05/2014 0:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2192,16/09/2015 19:27,20/05/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2186,16/09/2015 19:27,30/04/2014 10:49,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2145,16/09/2015 19:26,5/04/2014 4:01,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2125,16/09/2015 19:18,2/04/2014 3:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2120,16/09/2015 19:15,19/03/2014 1:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2118,16/09/2015 19:15,27/03/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2117,16/09/2015 19:14,4/04/2014 15:10,4.3,20, Improper Input Validation,nan
CVE-2014-2116,16/09/2015 19:14,4/04/2014 15:10,4.3,20, Improper Input Validation,nan
CVE-2014-2115,16/09/2015 19:14,4/04/2014 15:10,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2114,16/09/2015 19:11,4/04/2014 15:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2104,16/09/2015 19:10,2/03/2014 4:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0735,16/09/2015 18:58,20/02/2014 5:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0734,16/09/2015 18:57,20/02/2014 5:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0727,16/09/2015 18:57,13/02/2014 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0726,16/09/2015 18:57,13/02/2014 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0723,16/09/2015 17:46,13/02/2014 5:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5998,16/09/2015 13:05,14/09/2015 14:59,10.0,287, Improper Authentication,nan
CVE-2015-6915,14/09/2015 19:42,11/09/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6914,14/09/2015 19:41,11/09/2015 16:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-6286,14/09/2015 19:32,14/09/2015 1:59,5.7,399, Resource Management Errors,nan
CVE-2015-5630,14/09/2015 19:29,11/09/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6466,14/09/2015 19:25,11/09/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5631,14/09/2015 19:23,11/09/2015 16:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-6921,14/09/2015 19:10,11/09/2015 20:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6919,14/09/2015 19:09,11/09/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6751,11/09/2015 17:59,31/08/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2990,11/09/2015 17:59,5/09/2015 2:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1149,11/09/2015 17:58,10/04/2015 14:59,7.5,189, Numeric Errors,nan
CVE-2015-1128,11/09/2015 17:58,10/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-1126,11/09/2015 17:57,10/04/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-1125,11/09/2015 17:57,10/04/2015 14:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-1066,11/09/2015 15:51,12/03/2015 10:59,10.0,189, Numeric Errors,nan
CVE-2015-0654,11/09/2015 15:50,13/03/2015 1:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-0139,11/09/2015 15:50,13/03/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1064,11/09/2015 15:48,12/03/2015 10:59,1.9,200, Information Exposure,nan
CVE-2015-0652,11/09/2015 15:45,13/03/2015 1:59,7.8,20, Improper Input Validation,nan
CVE-2015-0522,11/09/2015 15:44,12/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0521,11/09/2015 15:44,12/03/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0177,11/09/2015 15:42,13/03/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0129,11/09/2015 15:42,13/03/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0716,10/09/2015 16:10,7/05/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0715,10/09/2015 16:09,7/05/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0714,10/09/2015 16:09,2/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0712,10/09/2015 16:08,1/05/2015 10:59,5.0,399, Resource Management Errors,nan
CVE-2015-0711,10/09/2015 16:07,29/04/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-0667,10/09/2015 16:06,18/03/2015 23:59,5.0,284, Improper Access Control,nan
CVE-2015-0710,10/09/2015 16:05,29/04/2015 1:59,6.1,399, Resource Management Errors,nan
CVE-2015-0664,10/09/2015 16:05,18/03/2015 23:59,4.3,20, Improper Input Validation,nan
CVE-2015-0709,10/09/2015 16:04,29/04/2015 1:59,6.8,399, Resource Management Errors,nan
CVE-2015-0708,10/09/2015 16:03,29/04/2015 1:59,6.1,399, Resource Management Errors,nan
CVE-2014-8761,10/09/2015 15:56,22/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-8760,10/09/2015 15:56,25/10/2014 0:55,5.0,310, Cryptographic Issues,nan
CVE-2014-4873,10/09/2015 15:32,10/10/2014 10:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3408,10/09/2015 15:30,19/10/2014 1:55,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2853,10/09/2015 15:28,29/04/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7401,10/09/2015 15:27,19/12/2014 20:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4442,10/09/2015 15:27,19/12/2014 15:59,5.0,310, Cryptographic Issues,nan
CVE-2013-4440,10/09/2015 15:26,19/12/2014 15:59,5.0,255, Credentials Management,nan
CVE-2015-1841,9/09/2015 18:32,8/09/2015 15:59,3.7,17, DEPRECATED: Code,nan
CVE-2015-5250,9/09/2015 17:09,8/09/2015 15:59,4.0,20, Improper Input Validation,nan
CVE-2014-7831,8/09/2015 18:21,24/11/2014 11:59,4.0,200, Information Exposure,nan
CVE-2014-7830,8/09/2015 18:21,24/11/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7280,8/09/2015 18:20,21/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5387,8/09/2015 18:19,4/11/2014 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5383,8/09/2015 18:18,21/08/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5316,8/09/2015 18:01,22/09/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5242,8/09/2015 17:55,22/08/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5201,8/09/2015 17:53,12/08/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5191,8/09/2015 17:51,7/08/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2989,8/09/2015 15:24,7/09/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2991,8/09/2015 15:22,5/09/2015 2:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5624,8/09/2015 15:21,7/09/2015 14:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2986,8/09/2015 15:21,5/09/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2985,8/09/2015 15:15,5/09/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6810,4/09/2015 18:59,4/09/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0673,4/09/2015 18:58,26/03/2015 10:59,4.0,200, Information Exposure,nan
CVE-2015-0672,4/09/2015 18:58,26/03/2015 10:59,5.0,399, Resource Management Errors,nan
CVE-2015-0650,4/09/2015 18:57,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0645,4/09/2015 18:57,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0644,4/09/2015 18:55,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0641,4/09/2015 18:51,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0640,4/09/2015 18:51,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0639,4/09/2015 18:51,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0638,4/09/2015 18:50,26/03/2015 10:59,7.1,20, Improper Input Validation,nan
CVE-2015-6809,4/09/2015 18:26,4/09/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6812,4/09/2015 18:25,4/09/2015 17:59,7.8,399, Resource Management Errors,nan
CVE-2015-6807,4/09/2015 18:01,4/09/2015 15:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5688,4/09/2015 17:53,4/09/2015 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5612,4/09/2015 17:47,4/09/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1516,4/09/2015 17:29,3/09/2015 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5190,4/09/2015 15:49,3/09/2015 14:59,8.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-5189,4/09/2015 15:48,3/09/2015 14:59,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2015-5498,3/09/2015 15:59,18/08/2015 17:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5487,3/09/2015 15:59,18/08/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4289,3/09/2015 15:58,1/08/2015 1:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4286,3/09/2015 15:51,29/07/2015 14:59,5.0,20, Improper Input Validation,nan
CVE-2015-4285,3/09/2015 15:50,23/07/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2014-8488,3/09/2015 14:57,10/12/2014 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4955,3/09/2015 14:56,20/07/2014 11:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4954,3/09/2015 14:54,20/07/2014 11:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9060,3/09/2015 14:38,24/11/2014 11:59,5.0,20, Improper Input Validation,nan
CVE-2014-9059,3/09/2015 14:37,24/11/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7848,3/09/2015 14:37,24/11/2014 11:59,5.0,200, Information Exposure,nan
CVE-2014-7847,3/09/2015 14:36,24/11/2014 11:59,5.0,399, Resource Management Errors,nan
CVE-2014-7846,3/09/2015 14:27,24/11/2014 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7845,3/09/2015 14:27,24/11/2014 11:59,7.5,255, Credentials Management,nan
CVE-2014-7838,3/09/2015 14:25,24/11/2014 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7837,3/09/2015 14:25,24/11/2014 11:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7836,3/09/2015 14:24,24/11/2014 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7835,3/09/2015 14:24,24/11/2014 11:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7834,3/09/2015 14:23,24/11/2014 11:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2687,3/09/2015 14:21,27/07/2011 2:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-6587,2/09/2015 18:15,2/09/2015 10:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4848,2/09/2015 17:21,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5317,2/09/2015 17:20,18/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6727,2/09/2015 17:19,1/09/2015 14:59,5.0,200, Information Exposure,nan
CVE-2014-4847,2/09/2015 17:19,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4846,2/09/2015 17:19,10/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4645,2/09/2015 17:16,25/06/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6520,2/09/2015 17:15,1/09/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4603,2/09/2015 17:15,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4598,2/09/2015 17:12,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4349,2/09/2015 17:11,25/06/2014 11:19,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4348,2/09/2015 17:06,25/06/2014 11:19,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4194,2/09/2015 17:05,9/07/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4189,2/09/2015 17:05,17/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4188,2/09/2015 17:04,17/06/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4158,2/09/2015 17:03,13/06/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3976,2/09/2015 17:01,5/06/2014 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3933,2/09/2015 16:56,2/06/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3892,2/09/2015 16:56,20/07/2014 11:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7444,2/09/2015 16:30,1/09/2015 14:59,5.0,200, Information Exposure,nan
CVE-2012-5961,2/09/2015 16:29,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6754,1/09/2015 18:33,31/08/2015 19:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6753,1/09/2015 18:33,31/08/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6752,1/09/2015 18:32,31/08/2015 18:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6750,1/09/2015 18:23,31/08/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3148,1/09/2015 18:10,31/08/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2332,1/09/2015 17:27,31/08/2015 18:59,5.5,20, Improper Input Validation,nan
CVE-2014-2331,1/09/2015 17:26,31/08/2015 18:59,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5965,1/09/2015 17:08,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5964,1/09/2015 17:07,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5963,1/09/2015 17:06,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5962,1/09/2015 17:05,31/01/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3823,1/09/2015 16:59,25/07/2006 13:22,5.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2330,1/09/2015 15:17,31/08/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2329,1/09/2015 14:55,31/08/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6747,31/08/2015 19:08,31/08/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-6746,31/08/2015 19:08,31/08/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-6745,31/08/2015 19:08,31/08/2015 14:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-6743,31/08/2015 19:07,31/08/2015 14:59,6.5,255, Credentials Management,nan
CVE-2015-6742,31/08/2015 19:06,31/08/2015 14:59,6.5,255, Credentials Management,nan
CVE-2015-3966,31/08/2015 18:55,30/08/2015 14:59,4.0,20, Improper Input Validation,nan
CVE-2015-2987,31/08/2015 18:40,28/08/2015 15:59,2.6,17, DEPRECATED: Code,nan
CVE-2014-3913,31/08/2015 18:29,4/06/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3878,31/08/2015 18:28,5/06/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3549,31/08/2015 18:24,29/07/2014 11:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3548,31/08/2015 18:24,29/07/2014 11:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3547,31/08/2015 18:14,29/07/2014 11:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3544,31/08/2015 18:09,29/07/2014 11:10,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1171,31/08/2015 17:45,28/08/2015 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0943,31/08/2015 17:44,31/08/2015 14:59,5.8,254, 7PK – Security Features,nan
CVE-2014-4865,28/08/2015 16:36,10/09/2014 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4710,28/08/2015 16:35,29/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4596,28/08/2015 16:35,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4594,28/08/2015 16:34,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4587,28/08/2015 16:34,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4571,28/08/2015 16:34,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4570,28/08/2015 16:34,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4569,28/08/2015 16:26,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4554,28/08/2015 16:26,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4549,28/08/2015 16:26,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4545,28/08/2015 16:26,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4543,28/08/2015 16:25,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4520,28/08/2015 16:22,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4515,28/08/2015 16:21,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4502,28/08/2015 16:21,23/07/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4037,28/08/2015 15:51,11/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4023,28/08/2015 15:49,28/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3996,28/08/2015 15:48,5/12/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-3158,27/08/2015 14:00,26/08/2015 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5430,27/08/2015 13:45,27/08/2015 2:59,5.0,200, Information Exposure,nan
CVE-2015-5403,27/08/2015 13:38,27/08/2015 2:59,4.0,200, Information Exposure,nan
CVE-2015-5402,27/08/2015 13:38,27/08/2015 2:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-2140,27/08/2015 13:34,27/08/2015 2:59,6.5,20, Improper Input Validation,nan
CVE-2015-2139,27/08/2015 13:25,27/08/2015 2:59,4.0,200, Information Exposure,nan
CVE-2013-1886,26/08/2015 16:08,24/01/2014 16:55,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2015-6525,26/08/2015 2:56,24/08/2015 14:59,7.5,189, Numeric Errors,nan
CVE-2015-5058,26/08/2015 2:54,24/08/2015 14:59,7.8,399, Resource Management Errors,nan
CVE-2014-8987,25/08/2015 19:36,24/08/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5222,25/08/2015 18:20,24/08/2015 14:59,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0298,25/08/2015 18:05,24/08/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2908,24/08/2015 17:58,23/08/2015 21:59,9.0,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-2983,24/08/2015 17:10,22/08/2015 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2905,24/08/2015 17:09,23/08/2015 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2018,24/08/2015 16:49,23/08/2015 15:59,3.5,200, Information Exposure,nan
CVE-2012-3507,24/08/2015 16:48,25/08/2012 10:29,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0464,24/08/2015 16:43,29/01/2010 18:30,5.0,200, Information Exposure,nan
CVE-2009-4077,24/08/2015 16:40,25/11/2009 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4076,24/08/2015 16:38,25/11/2009 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2982,24/08/2015 16:37,22/08/2015 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6557,24/08/2015 15:49,23/08/2015 1:59,2.1,200, Information Exposure,nan
CVE-2012-6121,24/08/2015 14:22,24/02/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5961,21/08/2015 16:30,8/08/2015 0:59,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2015-4527,21/08/2015 16:20,23/07/2015 14:59,7.8,200, Information Exposure,nan
CVE-2015-4295,21/08/2015 16:18,1/08/2015 1:59,4.0,200, Information Exposure,nan
CVE-2015-4294,21/08/2015 16:10,1/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4293,21/08/2015 16:07,30/07/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-4292,21/08/2015 16:06,1/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4291,21/08/2015 16:04,1/08/2015 1:59,7.8,399, Resource Management Errors,nan
CVE-2015-4290,21/08/2015 16:04,29/07/2015 14:59,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-5960,21/08/2015 15:44,8/08/2015 0:59,1.9,284, Improper Access Control,nan
CVE-2015-5962,21/08/2015 15:36,8/08/2015 0:59,5.0,189, Numeric Errors,nan
CVE-2014-0753,21/08/2015 15:13,21/01/2014 1:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-6528,21/08/2015 15:09,20/08/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5513,20/08/2015 20:55,18/08/2015 18:00,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5491,20/08/2015 20:43,18/08/2015 17:59,3.5,200, Information Exposure,nan
CVE-2015-5514,20/08/2015 17:58,18/08/2015 18:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6519,20/08/2015 17:38,18/08/2015 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5500,20/08/2015 2:30,18/08/2015 18:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5499,20/08/2015 2:30,18/08/2015 17:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5497,20/08/2015 2:26,18/08/2015 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5495,20/08/2015 2:22,18/08/2015 17:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5493,20/08/2015 2:12,18/08/2015 17:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5492,20/08/2015 2:10,18/08/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6515,19/08/2015 23:11,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6514,19/08/2015 23:11,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-6512,19/08/2015 23:10,18/08/2015 15:59,5.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-6254,19/08/2015 22:54,17/08/2015 20:59,6.0,17, DEPRECATED: Code,nan
CVE-2015-6513,19/08/2015 18:51,18/08/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5489,19/08/2015 18:48,18/08/2015 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5488,19/08/2015 18:42,18/08/2015 17:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4425,19/08/2015 18:19,18/08/2015 17:59,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5485,19/08/2015 17:34,18/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0277,19/08/2015 16:59,17/08/2015 20:59,6.0,284, Improper Access Control,nan
CVE-2014-9743,19/08/2015 16:43,17/08/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3235,18/08/2015 7:33,14/08/2015 18:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5685,13/08/2015 18:31,13/08/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-4376,13/08/2015 18:31,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4380,13/08/2015 18:30,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5519,13/08/2015 18:28,14/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5474,13/08/2015 18:28,13/08/2015 14:59,9.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-2210,13/08/2015 18:25,4/04/2014 15:10,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2191,13/08/2015 18:24,7/05/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2190,13/08/2015 18:24,7/05/2014 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2092,13/08/2015 18:23,2/03/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2091,13/08/2015 18:05,2/03/2014 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2022,13/08/2015 18:04,15/10/2014 14:55,7.1,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0821,13/08/2015 17:54,27/02/2014 1:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0820,13/08/2015 17:53,27/02/2014 1:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0812,13/08/2015 17:52,1/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0811,13/08/2015 17:50,22/02/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0736,13/08/2015 17:45,20/02/2014 5:18,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0639,13/08/2015 17:44,25/05/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3213,12/08/2015 18:48,12/08/2015 14:59,7.2,284, Improper Access Control,nan
CVE-2014-2281,12/08/2015 17:42,11/03/2014 13:01,4.3,20, Improper Input Validation,nan
CVE-2015-5369,11/08/2015 18:25,11/08/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2015-2897,11/08/2015 18:10,8/08/2015 1:59,10.0,200, Information Exposure,nan
CVE-2015-5176,11/08/2015 18:08,11/08/2015 14:59,5.8,17, DEPRECATED: Code,nan
CVE-2014-6214,11/08/2015 17:51,13/03/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2543,11/08/2015 14:44,8/04/2014 23:47,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2541,11/08/2015 14:39,8/04/2014 23:47,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2364,11/08/2015 14:38,19/07/2014 5:09,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-7253,11/08/2015 14:36,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2015-2980,10/08/2015 15:05,8/08/2015 1:59,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2871,10/08/2015 15:04,1/08/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-4494,10/08/2015 12:59,8/08/2015 0:59,4.3,200, Information Exposure,nan
CVE-2015-2745,10/08/2015 12:51,8/08/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2744,10/08/2015 12:51,8/08/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4845,7/08/2015 18:20,10/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2316,7/08/2015 18:16,9/03/2014 13:16,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2244,7/08/2015 18:15,2/03/2014 4:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1407,7/08/2015 17:59,10/01/2014 16:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1405,7/08/2015 17:58,10/01/2014 16:47,5.8,20, Improper Input Validation,nan
CVE-2013-6674,7/08/2015 17:41,17/02/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6028,7/08/2015 17:40,12/01/2014 18:34,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8954,6/08/2015 16:45,17/11/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8508,6/08/2015 16:44,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8507,6/08/2015 16:41,15/12/2014 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8375,6/08/2015 16:41,21/10/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8349,6/08/2015 16:39,24/11/2014 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7295,6/08/2015 16:28,7/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5456,6/08/2015 16:28,25/08/2014 16:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5417,6/08/2015 15:05,5/11/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5408,6/08/2015 14:56,5/11/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1648,6/08/2015 14:45,23/04/2014 11:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5323,6/08/2015 14:34,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2014-1973,5/08/2015 16:32,20/07/2014 11:12,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1899,5/08/2015 16:31,2/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1879,5/08/2015 16:28,20/02/2014 15:27,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0992,5/08/2015 16:06,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0991,5/08/2015 16:06,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0990,5/08/2015 16:05,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0989,5/08/2015 16:05,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0988,5/08/2015 16:04,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0987,5/08/2015 16:03,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0986,5/08/2015 16:02,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0985,5/08/2015 16:01,20/09/2014 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0784,5/08/2015 15:51,14/03/2014 10:55,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0783,5/08/2015 15:50,14/03/2014 10:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0781,5/08/2015 15:45,14/03/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0729,5/08/2015 15:41,13/02/2014 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0728,5/08/2015 15:40,13/02/2014 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5308,5/08/2015 11:31,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2014-9736,4/08/2015 19:25,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2013-7405,4/08/2015 19:24,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2015-1987,4/08/2015 19:21,3/08/2015 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-1970,4/08/2015 19:20,3/08/2015 19:59,2.1,200, Information Exposure,nan
CVE-2015-1958,4/08/2015 19:20,3/08/2015 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-1956,4/08/2015 19:20,3/08/2015 19:59,7.8,399, Resource Management Errors,nan
CVE-2015-1955,4/08/2015 19:20,3/08/2015 19:59,7.8,399, Resource Management Errors,nan
CVE-2011-5324,4/08/2015 19:19,4/08/2015 14:59,10.0,255, Credentials Management,nan
CVE-2015-1009,4/08/2015 17:44,1/08/2015 1:59,1.7,200, Information Exposure,nan
CVE-2015-5618,3/08/2015 19:01,1/08/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2870,3/08/2015 18:37,1/08/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3738,1/08/2015 1:40,20/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3415,1/08/2015 1:38,29/05/2014 14:19,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3414,1/08/2015 1:38,29/05/2014 14:19,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3247,1/08/2015 1:38,15/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3115,1/08/2015 1:37,8/05/2014 14:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2975,1/08/2015 1:36,28/07/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2947,1/08/2015 1:36,22/05/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2916,1/08/2015 1:35,5/05/2014 16:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0747,1/08/2015 1:35,27/02/2014 1:55,6.8,20, Improper Input Validation,nan
CVE-2014-0746,1/08/2015 1:35,27/02/2014 1:55,4.0,200, Information Exposure,nan
CVE-2014-0745,1/08/2015 1:35,27/02/2014 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0740,1/08/2015 1:34,27/02/2014 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1975,30/07/2015 14:59,18/03/2014 5:18,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2236,30/07/2015 14:57,5/03/2014 16:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2235,30/07/2015 14:55,5/03/2014 16:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2080,30/07/2015 14:52,1/03/2014 0:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1971,30/07/2015 14:50,20/03/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5015,30/07/2015 14:50,14/02/2014 13:10,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1968,30/07/2015 14:49,27/02/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5013,30/07/2015 14:49,11/02/2014 2:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2639,30/07/2015 14:43,11/02/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0742,29/07/2015 17:11,27/02/2014 1:55,6.2,20, Improper Input Validation,nan
CVE-2015-4288,29/07/2015 17:07,29/07/2015 1:59,4.3,310, Cryptographic Issues,nan
CVE-2015-4287,29/07/2015 17:05,29/07/2015 1:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2979,29/07/2015 17:00,29/07/2015 14:59,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2978,29/07/2015 16:57,29/07/2015 14:59,5.0,287, Improper Authentication,nan
CVE-2015-2977,29/07/2015 16:55,29/07/2015 14:59,7.5,20, Improper Input Validation,nan
CVE-2015-2974,29/07/2015 16:54,29/07/2015 1:59,5.0,20, Improper Input Validation,nan
CVE-2014-5331,29/07/2015 16:50,19/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5330,29/07/2015 16:50,19/10/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5322,29/07/2015 16:50,22/09/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5319,29/07/2015 16:48,26/09/2014 10:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2314,29/07/2015 16:21,9/03/2014 13:16,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2102,29/07/2015 16:20,27/02/2014 1:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1843,29/07/2015 16:19,29/04/2014 10:37,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1842,29/07/2015 16:18,29/04/2014 10:37,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1841,29/07/2015 16:17,29/04/2014 10:37,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0743,29/07/2015 16:17,27/02/2014 1:55,5.0,287, Improper Authentication,nan
CVE-2014-0741,29/07/2015 16:16,27/02/2014 1:55,6.2,310, Cryptographic Issues,nan
CVE-2013-1871,29/07/2015 16:16,14/02/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1096,29/07/2015 16:13,28/12/2013 4:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0527,28/07/2015 15:19,24/03/2015 0:59,2.1,200, Information Exposure,nan
CVE-2015-1075,28/07/2015 15:16,18/03/2015 22:59,6.8,399, Resource Management Errors,nan
CVE-2015-2183,28/07/2015 15:05,10/03/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6321,28/07/2015 15:04,10/01/2014 12:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4857,28/07/2015 15:04,31/12/2005 5:00,4.0,399, Resource Management Errors,nan
CVE-2005-4856,28/07/2015 15:03,31/12/2005 5:00,5.0,19, Data Processing Errors,nan
CVE-2005-4854,28/07/2015 14:55,31/12/2005 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6872,28/07/2015 14:49,21/01/2014 15:17,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6780,28/07/2015 14:48,13/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6334,28/07/2015 14:42,10/01/2014 12:02,6.4,20, Improper Input Validation,nan
CVE-2005-4853,28/07/2015 14:41,31/12/2005 5:00,9.4,264, Permissions Privileges and Access Controls,nan
CVE-2006-7219,28/07/2015 14:35,6/07/2007 19:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-7218,28/07/2015 14:35,6/07/2007 19:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-4945,27/07/2015 18:34,26/07/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2976,27/07/2015 18:21,25/07/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2848,27/07/2015 18:04,26/07/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2847,27/07/2015 18:04,26/07/2015 18:59,5.0,284, Improper Access Control,nan
CVE-2013-7181,27/07/2015 16:12,4/02/2014 5:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6054,27/07/2015 16:11,12/12/2013 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6021,27/07/2015 16:11,19/10/2013 10:36,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6045,27/07/2015 16:10,12/12/2013 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6038,27/07/2015 16:09,17/12/2013 15:21,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6691,27/07/2015 15:59,20/05/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1978,27/07/2015 15:58,21/05/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2670,24/07/2015 18:39,29/03/2014 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0763,24/07/2015 18:39,12/04/2014 4:37,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0620,24/07/2015 18:38,8/01/2014 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0344,24/07/2015 18:38,29/03/2014 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0341,24/07/2015 18:35,15/04/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0339,24/07/2015 18:35,16/03/2014 14:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0338,24/07/2015 18:33,16/03/2014 14:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0334,24/07/2015 18:32,2/03/2014 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0218,24/07/2015 18:31,27/05/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5405,24/07/2015 14:51,3/04/2015 10:59,9.0,200, Information Exposure,nan
CVE-2015-1571,22/07/2015 18:37,10/02/2015 20:59,4.3,310, Cryptographic Issues,nan
CVE-2015-5360,22/07/2015 18:35,16/07/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-5357,22/07/2015 18:35,16/07/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2013-6177,22/07/2015 17:53,21/11/2013 4:40,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6176,22/07/2015 17:53,21/11/2013 4:40,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6175,22/07/2015 17:52,21/11/2013 4:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6174,22/07/2015 17:52,21/11/2013 4:40,5.8,20, Improper Input Validation,nan
CVE-2013-6173,22/07/2015 17:52,21/11/2013 4:40,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4637,21/07/2015 15:13,16/07/2015 14:59,4.3,310, Cryptographic Issues,nan
CVE-2015-3621,21/07/2015 15:12,16/07/2015 14:59,9.3,20, Improper Input Validation,nan
CVE-2015-5530,21/07/2015 11:26,16/07/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-5529,21/07/2015 11:25,16/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5363,21/07/2015 11:21,16/07/2015 14:59,5.0,19, Data Processing Errors,nan
CVE-2015-0795,21/07/2015 10:55,18/07/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0130,20/07/2015 18:19,20/07/2015 1:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2972,20/07/2015 17:28,19/07/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-5520,17/07/2015 22:32,14/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5386,17/07/2015 22:32,16/07/2015 19:59,9.3,20, Improper Input Validation,nan
CVE-2015-2969,15/07/2015 18:55,10/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5362,15/07/2015 18:47,14/07/2015 17:59,9.3,399, Resource Management Errors,nan
CVE-2015-3007,15/07/2015 18:31,14/07/2015 17:59,7.2,284, Improper Access Control,nan
CVE-2015-1595,15/07/2015 15:07,7/03/2015 2:59,4.3,200, Information Exposure,nan
CVE-2015-5521,14/07/2015 18:24,14/07/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5147,14/07/2015 18:23,14/07/2015 16:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4254,13/07/2015 14:21,10/07/2015 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2970,13/07/2015 12:18,10/07/2015 15:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0765,9/07/2015 16:13,12/04/2014 4:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0768,9/07/2015 16:12,12/04/2014 4:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0767,9/07/2015 16:12,12/04/2014 4:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0766,9/07/2015 16:12,12/04/2014 4:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0764,9/07/2015 16:11,12/04/2014 4:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8175,9/07/2015 15:44,8/07/2015 15:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-5455,9/07/2015 15:21,8/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9741,9/07/2015 15:20,8/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2850,8/07/2015 21:53,7/07/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2849,8/07/2015 21:46,7/07/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4525,8/07/2015 18:55,4/07/2015 10:59,9.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-3653,8/07/2015 16:05,6/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9739,8/07/2015 15:54,6/07/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1011,8/07/2015 15:27,6/07/2015 19:59,5.0,200, Information Exposure,nan
CVE-2014-5406,8/07/2015 15:18,6/07/2015 19:59,9.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2014-9738,8/07/2015 15:01,6/07/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9740,8/07/2015 14:46,6/07/2015 15:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4228,2/07/2015 17:58,2/07/2015 14:59,5.4,399, Resource Management Errors,nan
CVE-2014-1836,2/07/2015 17:26,1/07/2015 14:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-5150,1/07/2015 15:43,30/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-5148,1/07/2015 15:36,30/06/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9734,1/07/2015 15:12,30/06/2015 14:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2966,1/07/2015 14:37,30/06/2015 15:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-4354,30/06/2015 14:17,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4356,30/06/2015 14:16,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4358,30/06/2015 14:15,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4357,30/06/2015 14:15,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4359,30/06/2015 14:14,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4360,30/06/2015 14:13,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4361,30/06/2015 14:12,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4366,30/06/2015 14:11,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4365,30/06/2015 14:11,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4372,30/06/2015 14:10,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4349,30/06/2015 13:16,15/06/2015 14:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4348,30/06/2015 13:15,15/06/2015 14:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4347,30/06/2015 13:14,15/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4346,30/06/2015 13:14,15/06/2015 14:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0989,29/06/2015 17:11,28/06/2015 10:59,4.3,19, Data Processing Errors,nan
CVE-2015-0131,29/06/2015 16:36,28/06/2015 22:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0127,29/06/2015 16:30,28/06/2015 22:59,3.5,254, 7PK – Security Features,nan
CVE-2015-0118,29/06/2015 16:27,28/06/2015 22:59,4.3,310, Cryptographic Issues,nan
CVE-2015-0115,29/06/2015 16:26,28/06/2015 22:59,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4370,26/06/2015 17:44,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4369,26/06/2015 17:44,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4367,26/06/2015 17:44,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4392,26/06/2015 16:02,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4388,26/06/2015 16:02,15/06/2015 14:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4387,26/06/2015 16:01,15/06/2015 14:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4386,26/06/2015 16:00,15/06/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4385,26/06/2015 16:00,15/06/2015 14:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4382,26/06/2015 16:00,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4381,26/06/2015 15:59,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4374,26/06/2015 15:56,16/06/2015 17:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4373,26/06/2015 15:56,15/06/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4053,25/06/2015 16:23,8/06/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-4018,25/06/2015 16:22,21/05/2015 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4016,25/06/2015 16:21,20/05/2015 18:59,5.0,17, DEPRECATED: Code,nan
CVE-2015-3337,25/06/2015 16:07,1/05/2015 15:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-3325,25/06/2015 15:50,15/05/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4875,24/06/2015 18:52,24/06/2015 10:59,5.0,255, Credentials Management,nan
CVE-2015-0972,24/06/2015 17:50,23/06/2015 16:59,5.0,255, Credentials Management,nan
CVE-2014-4882,23/06/2015 18:47,23/06/2015 16:59,7.5,287, Improper Authentication,nan
CVE-2015-4590,23/06/2015 14:19,22/06/2015 18:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-4658,19/06/2015 14:37,18/06/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5559,19/06/2015 14:20,3/12/2012 21:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4139,19/06/2015 14:17,18/06/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4140,19/06/2015 14:14,18/06/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4338,18/06/2015 15:24,17/06/2015 18:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-4337,18/06/2015 15:23,17/06/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4336,18/06/2015 15:22,17/06/2015 18:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-4377,17/06/2015 11:54,15/06/2015 14:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4397,16/06/2015 22:52,15/06/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-4378,16/06/2015 18:17,15/06/2015 14:59,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4375,16/06/2015 17:16,15/06/2015 14:59,4.3,200, Information Exposure,nan
CVE-2014-9284,16/06/2015 15:59,9/06/2015 0:59,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-4716,16/06/2015 13:28,13/06/2015 18:59,8.8,310, Cryptographic Issues,nan
CVE-2014-8606,11/06/2015 18:33,10/06/2015 18:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8607,11/06/2015 17:53,10/06/2015 18:59,2.1,200, Information Exposure,nan
CVE-2015-4465,11/06/2015 17:47,10/06/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8605,11/06/2015 17:35,10/06/2015 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8604,11/06/2015 17:33,10/06/2015 18:59,5.0,200, Information Exposure,nan
CVE-2014-8603,11/06/2015 17:32,10/06/2015 18:59,6.5,20, Improper Input Validation,nan
CVE-2014-6284,9/06/2015 15:48,8/06/2015 14:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8887,8/06/2015 18:42,7/06/2015 18:59,4.0,20, Improper Input Validation,nan
CVE-2015-0779,8/06/2015 18:40,7/06/2015 23:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6222,8/06/2015 18:37,7/06/2015 18:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0767,8/06/2015 18:22,7/06/2015 18:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-6175,8/06/2015 18:06,7/06/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5323,8/06/2015 17:59,7/06/2015 23:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9201,5/06/2015 17:59,5/06/2015 10:59,6.4,20, Improper Input Validation,nan
CVE-2014-9090,4/06/2015 2:01,30/11/2014 1:59,4.9,17, DEPRECATED: Code,nan
CVE-2014-8369,4/06/2015 2:01,10/11/2014 11:55,4.6,189, Numeric Errors,nan
CVE-2014-4608,4/06/2015 2:00,3/07/2014 4:22,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0850,3/06/2015 13:18,2/06/2015 14:59,10.0,20, Improper Input Validation,nan
CVE-2015-2273,2/06/2015 18:37,1/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2271,2/06/2015 18:32,1/06/2015 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-2270,2/06/2015 18:06,1/06/2015 19:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-2269,2/06/2015 18:04,1/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2267,2/06/2015 17:58,1/06/2015 19:59,4.0,284, Improper Access Control,nan
CVE-2015-2266,2/06/2015 17:44,1/06/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-1493,2/06/2015 17:43,1/06/2015 19:59,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0218,2/06/2015 17:36,1/06/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0217,2/06/2015 17:35,1/06/2015 19:59,6.8,399, Resource Management Errors,nan
CVE-2015-0216,2/06/2015 16:53,1/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0215,2/06/2015 16:50,1/06/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-2268,2/06/2015 16:48,1/06/2015 19:59,6.8,399, Resource Management Errors,nan
CVE-2015-0214,2/06/2015 16:47,1/06/2015 19:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1010,2/06/2015 16:45,31/05/2015 17:59,4.9,310, Cryptographic Issues,nan
CVE-2015-0213,2/06/2015 16:39,1/06/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0212,2/06/2015 16:36,1/06/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4138,2/06/2015 14:24,30/05/2015 19:59,4.3,200, Information Exposure,nan
CVE-2015-4066,2/06/2015 14:08,27/05/2015 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0211,2/06/2015 11:49,1/06/2015 19:59,4.0,200, Information Exposure,nan
CVE-2015-0193,2/06/2015 11:47,30/05/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1551,29/05/2015 16:29,28/05/2015 14:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1550,29/05/2015 14:47,28/05/2015 14:59,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1392,29/05/2015 14:46,28/05/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4065,28/05/2015 14:57,27/05/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4064,28/05/2015 14:56,27/05/2015 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-4063,28/05/2015 14:55,27/05/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-4062,28/05/2015 14:54,27/05/2015 18:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2945,27/05/2015 16:53,25/05/2015 17:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1013,27/05/2015 16:44,26/05/2015 1:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0962,27/05/2015 13:58,25/05/2015 22:59,4.3,18, DEPRECATED: Source Code,nan
CVE-2015-0540,27/05/2015 13:50,25/05/2015 19:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0156,27/05/2015 12:33,25/05/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0170,26/05/2015 18:03,25/05/2015 14:59,2.1,200, Information Exposure,nan
CVE-2015-0169,26/05/2015 18:03,25/05/2015 14:59,4.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-0168,26/05/2015 18:02,25/05/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0161,26/05/2015 18:02,25/05/2015 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0160,26/05/2015 18:01,25/05/2015 14:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0120,26/05/2015 18:00,25/05/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0180,26/05/2015 17:57,25/05/2015 14:59,5.5,284, Improper Access Control,nan
CVE-2014-8927,26/05/2015 17:55,25/05/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2014-6190,26/05/2015 17:54,25/05/2015 14:59,5.0,200, Information Exposure,nan
CVE-2014-2174,26/05/2015 17:54,25/05/2015 0:59,8.3,284, Improper Access Control,nan
CVE-2014-8926,26/05/2015 17:51,25/05/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2015-0713,26/05/2015 17:47,25/05/2015 0:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0750,26/05/2015 17:40,23/05/2015 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0722,26/05/2015 17:40,25/05/2015 0:59,7.8,399, Resource Management Errors,nan
CVE-2014-6192,26/05/2015 17:05,25/05/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4778,26/05/2015 17:04,25/05/2015 14:59,4.3,20, Improper Input Validation,nan
CVE-2014-4774,26/05/2015 17:04,25/05/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1899,26/05/2015 16:38,25/05/2015 0:59,7.8,399, Resource Management Errors,nan
CVE-2015-1909,26/05/2015 16:37,25/05/2015 0:59,5.0,200, Information Exposure,nan
CVE-2015-1910,26/05/2015 16:34,25/05/2015 0:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0171,26/05/2015 14:59,25/05/2015 14:59,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0916,22/05/2015 14:09,22/05/2015 0:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0915,22/05/2015 14:09,22/05/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3912,22/05/2015 14:05,21/05/2015 19:59,5.0,200, Information Exposure,nan
CVE-2015-3911,22/05/2015 14:05,21/05/2015 19:59,9.0,284, Improper Access Control,nan
CVE-2015-3999,21/05/2015 17:14,20/05/2015 18:59,2.1,200, Information Exposure,nan
CVE-2015-1188,21/05/2015 16:57,20/05/2015 18:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3243,21/05/2015 16:55,20/05/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1665,21/05/2015 16:54,20/05/2015 18:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1664,21/05/2015 16:53,20/05/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2131,19/05/2015 16:22,4/01/2015 21:59,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2015-0971,15/05/2015 15:13,14/05/2015 14:59,5.0,399, Resource Management Errors,nan
CVE-2014-1901,15/05/2015 14:23,14/05/2015 0:59,6.8,20, Improper Input Validation,nan
CVE-2014-1900,15/05/2015 13:28,14/05/2015 0:59,5.0,200, Information Exposure,nan
CVE-2012-5849,15/05/2015 13:27,14/05/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1902,15/05/2015 12:50,14/05/2015 0:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3186,14/05/2015 2:00,28/09/2014 10:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8672,12/05/2015 17:30,7/11/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1398,12/05/2015 2:03,29/04/2015 22:59,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1397,12/05/2015 2:03,29/04/2015 22:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5256,12/05/2015 2:01,5/09/2014 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3185,12/05/2015 2:00,28/09/2014 10:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2319,12/05/2015 1:59,17/05/2012 11:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1585,12/05/2015 1:59,8/06/2013 13:05,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1476,12/05/2015 1:59,21/06/2012 23:55,4.0,189, Numeric Errors,nan
CVE-2011-1163,12/05/2015 1:59,10/04/2011 2:51,2.1,20, Improper Input Validation,nan
CVE-2015-2347,11/05/2015 15:12,8/05/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3610,7/05/2015 14:26,7/05/2015 10:59,5.4,310, Cryptographic Issues,nan
CVE-2013-7436,6/05/2015 1:59,10/04/2015 14:59,4.3,310, Cryptographic Issues,nan
CVE-2011-4326,6/05/2015 1:59,17/05/2012 11:00,7.1,399, Resource Management Errors,nan
CVE-2011-4112,6/05/2015 1:59,17/05/2012 11:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1080,6/05/2015 1:59,21/06/2012 23:55,2.1,20, Improper Input Validation,nan
CVE-2011-1079,6/05/2015 1:59,21/06/2012 23:55,5.4,20, Improper Input Validation,nan
CVE-2011-1078,6/05/2015 1:59,21/06/2012 23:55,1.9,200, Information Exposure,nan
CVE-2015-0913,4/05/2015 12:59,1/05/2015 10:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0914,1/05/2015 14:23,1/05/2015 10:59,5.0,284, Improper Access Control,nan
CVE-2014-9050,30/04/2015 2:01,1/12/2014 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8626,30/04/2015 2:01,23/11/2014 2:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6416,30/04/2015 2:00,28/09/2014 10:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0113,27/04/2015 17:48,27/04/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-6092,27/04/2015 17:46,27/04/2015 11:59,5.0,17, DEPRECATED: Code,nan
CVE-2014-6090,27/04/2015 17:00,27/04/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0846,27/04/2015 15:11,24/04/2015 14:59,5.0,200, Information Exposure,nan
CVE-2012-5451,27/04/2015 14:37,24/04/2015 14:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2930,27/04/2015 14:30,24/04/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4403,27/04/2015 14:28,24/04/2015 14:59,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0911,24/04/2015 16:52,24/04/2015 1:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0910,24/04/2015 16:51,24/04/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0707,23/04/2015 16:48,23/04/2015 2:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-3379,23/04/2015 16:40,21/04/2015 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1602,23/04/2015 4:54,6/04/2015 1:59,2.1,200, Information Exposure,nan
CVE-2015-0677,23/04/2015 4:50,13/04/2015 1:59,7.8,20, Improper Input Validation,nan
CVE-2015-0676,23/04/2015 4:49,13/04/2015 1:59,7.1,20, Improper Input Validation,nan
CVE-2014-7839,23/04/2015 1:59,25/11/2014 15:59,6.4,20, Improper Input Validation,nan
CVE-2014-2237,23/04/2015 1:59,1/04/2014 6:35,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0110,23/04/2015 1:59,8/05/2014 14:29,4.3,399, Resource Management Errors,nan
CVE-2014-0109,23/04/2015 1:59,8/05/2014 14:29,4.3,399, Resource Management Errors,nan
CVE-2014-0035,23/04/2015 1:59,7/07/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2014-0034,23/04/2015 1:59,7/07/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2015-3357,22/04/2015 22:16,21/04/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0969,20/04/2015 17:45,18/04/2015 2:00,5.0,200, Information Exposure,nan
CVE-2015-0967,20/04/2015 17:42,18/04/2015 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9447,18/04/2015 1:59,2/01/2015 20:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9428,18/04/2015 1:59,2/01/2015 21:59,7.8,399, Resource Management Errors,nan
CVE-2014-9258,18/04/2015 1:59,19/12/2014 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1314,17/04/2015 18:07,16/04/2015 23:59,2.1,200, Information Exposure,nan
CVE-2015-0907,15/04/2015 20:16,15/04/2015 10:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0906,15/04/2015 19:01,15/04/2015 10:59,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0932,15/04/2015 17:02,5/04/2015 1:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8360,15/04/2015 15:21,14/04/2015 18:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5032,15/04/2015 15:19,14/04/2015 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9311,15/04/2015 15:15,14/04/2015 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9146,15/04/2015 15:11,14/04/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9145,15/04/2015 13:20,14/04/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9706,15/04/2015 2:02,31/03/2015 14:59,7.5,19, Data Processing Errors,nan
CVE-2015-3030,9/04/2015 18:27,8/04/2015 18:59,4.0,200, Information Exposure,nan
CVE-2015-3029,9/04/2015 18:26,8/04/2015 18:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-3028,9/04/2015 18:26,8/04/2015 18:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-2063,9/04/2015 18:23,9/03/2015 14:59,4.3,189, Numeric Errors,nan
CVE-2015-0876,7/04/2015 14:12,7/04/2015 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0951,6/04/2015 17:07,5/04/2015 1:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0950,6/04/2015 17:03,5/04/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0903,6/04/2015 16:57,3/04/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0119,6/04/2015 16:49,6/04/2015 0:59,7.5,284, Improper Access Control,nan
CVE-2015-0995,3/04/2015 19:32,3/04/2015 10:59,5.0,255, Credentials Management,nan
CVE-2015-0994,3/04/2015 19:32,3/04/2015 10:59,4.0,254, 7PK – Security Features,nan
CVE-2015-0993,3/04/2015 19:31,3/04/2015 10:59,6.4,254, 7PK – Security Features,nan
CVE-2015-0992,3/04/2015 19:28,3/04/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-0991,3/04/2015 15:18,3/04/2015 10:59,5.0,200, Information Exposure,nan
CVE-2015-0976,3/04/2015 15:16,3/04/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0902,3/04/2015 15:15,3/04/2015 10:59,5.0,200, Information Exposure,nan
CVE-2014-5403,3/04/2015 15:09,3/04/2015 10:59,5.0,310, Cryptographic Issues,nan
CVE-2014-5400,3/04/2015 15:09,3/04/2015 10:59,2.1,200, Information Exposure,nan
CVE-2015-0838,1/04/2015 3:09,31/03/2015 14:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2792,31/03/2015 17:30,30/03/2015 14:59,7.5,284, Improper Access Control,nan
CVE-2015-0985,31/03/2015 17:10,31/03/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0900,31/03/2015 17:06,31/03/2015 10:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2770,30/03/2015 19:46,27/03/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2769,30/03/2015 19:46,27/03/2015 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-2785,30/03/2015 19:17,29/03/2015 21:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9205,30/03/2015 18:46,29/03/2015 10:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5427,30/03/2015 17:06,29/03/2015 10:59,5.0,200, Information Exposure,nan
CVE-2014-0005,28/03/2015 1:59,20/02/2015 16:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-2184,27/03/2015 17:43,27/03/2015 14:59,7.5,17, DEPRECATED: Code,nan
CVE-2015-0898,27/03/2015 7:35,21/03/2015 1:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0649,27/03/2015 7:33,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0274,27/03/2015 1:59,16/03/2015 10:59,7.2,19, Data Processing Errors,nan
CVE-2015-0647,26/03/2015 18:26,26/03/2015 10:59,7.8,20, Improper Input Validation,nan
CVE-2015-0648,26/03/2015 17:52,26/03/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2015-1388,26/03/2015 13:15,24/03/2015 17:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3646,26/03/2015 1:59,10/11/2014 11:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3181,26/03/2015 1:59,28/09/2014 10:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2309,26/03/2015 1:59,11/03/2014 13:01,6.1,189, Numeric Errors,nan
CVE-2013-2899,26/03/2015 1:59,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4398,26/03/2015 1:59,18/02/2013 4:41,4.9,20, Improper Input Validation,nan
CVE-2015-2284,25/03/2015 21:13,24/03/2015 17:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8925,25/03/2015 20:51,25/03/2015 1:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6134,25/03/2015 20:47,25/03/2015 1:59,1.2,200, Information Exposure,nan
CVE-2011-2727,25/03/2015 20:46,30/12/2014 2:59,4.3,200, Information Exposure,nan
CVE-2014-100003,24/03/2015 20:49,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5308,24/03/2015 20:48,1/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9194,24/03/2015 16:49,17/01/2015 2:59,7.8,19, Data Processing Errors,nan
CVE-2015-0941,24/03/2015 16:11,22/03/2015 1:59,4.3,310, Cryptographic Issues,nan
CVE-2015-0137,24/03/2015 15:11,24/03/2015 0:59,4.3,20, Improper Input Validation,nan
CVE-2015-0105,24/03/2015 14:54,24/03/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0106,24/03/2015 14:53,24/03/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0103,24/03/2015 14:46,24/03/2015 0:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9261,24/03/2015 14:45,23/03/2015 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0136,24/03/2015 14:28,24/03/2015 0:59,2.1,200, Information Exposure,nan
CVE-2015-0880,24/03/2015 13:56,20/02/2015 11:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8172,24/03/2015 2:00,16/03/2015 10:59,4.9,17, DEPRECATED: Code,nan
CVE-2014-8115,23/03/2015 16:53,20/02/2015 16:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0893,23/03/2015 16:16,5/03/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0891,23/03/2015 16:16,5/03/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0892,23/03/2015 15:57,5/03/2015 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2563,23/03/2015 13:30,20/03/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0671,20/03/2015 14:46,20/03/2015 1:59,5.0,399, Resource Management Errors,nan
CVE-2015-0896,19/03/2015 13:41,18/03/2015 23:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6131,18/03/2015 17:00,18/03/2015 10:59,4.0,200, Information Exposure,nan
CVE-2012-4046,18/03/2015 16:55,24/12/2012 18:55,3.3,200, Information Exposure,nan
CVE-2015-2293,18/03/2015 16:13,17/03/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-0132,18/03/2015 16:13,18/03/2015 10:59,7.8,399, Resource Management Errors,nan
CVE-2014-6129,18/03/2015 15:04,18/03/2015 10:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0178,18/03/2015 14:52,18/03/2015 10:59,4.3,200, Information Exposure,nan
CVE-2015-0149,18/03/2015 14:52,18/03/2015 10:59,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0146,18/03/2015 14:51,18/03/2015 10:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3645,18/03/2015 2:01,10/11/2014 11:55,2.1,20, Improper Input Validation,nan
CVE-2014-3065,18/03/2015 2:00,2/12/2014 1:59,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4483,18/03/2015 1:59,4/11/2013 15:55,4.9,189, Numeric Errors,nan
CVE-2011-2406,18/03/2015 1:59,11/08/2011 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9426,17/03/2015 2:01,31/12/2014 2:59,7.5,17, DEPRECATED: Code,nan
CVE-2014-3556,17/03/2015 2:00,29/12/2014 20:59,4.3,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0982,16/03/2015 18:36,14/03/2015 1:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0981,16/03/2015 18:35,14/03/2015 1:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0980,16/03/2015 18:35,14/03/2015 1:59,9.0,20, Improper Input Validation,nan
CVE-2015-0979,16/03/2015 18:34,14/03/2015 1:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2285,13/03/2015 14:05,12/03/2015 14:59,7.2,19, Data Processing Errors,nan
CVE-2015-2208,12/03/2015 16:42,12/03/2015 14:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-1483,12/03/2015 14:24,6/03/2015 3:00,7.5,20, Improper Input Validation,nan
CVE-2014-7896,12/03/2015 2:00,3/03/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4040,12/03/2015 1:59,17/06/2014 15:55,5.0,310, Cryptographic Issues,nan
CVE-2015-2182,11/03/2015 19:38,11/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0201,11/03/2015 19:20,10/03/2015 14:59,5.0,254, 7PK – Security Features,nan
CVE-2014-9566,11/03/2015 19:19,10/03/2015 14:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5322,11/03/2015 15:05,11/03/2015 14:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2184,11/03/2015 14:55,10/03/2015 14:59,5.0,200, Information Exposure,nan
CVE-2015-2244,10/03/2015 17:30,9/03/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2243,10/03/2015 17:29,9/03/2015 17:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-2242,10/03/2015 17:29,9/03/2015 17:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9689,9/03/2015 17:51,9/03/2015 0:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-5319,9/03/2015 17:49,9/03/2015 0:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1599,9/03/2015 15:57,7/03/2015 2:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2015-1596,9/03/2015 15:23,7/03/2015 2:59,5.8,310, Cryptographic Issues,nan
CVE-2015-1598,9/03/2015 15:17,7/03/2015 2:59,2.1,200, Information Exposure,nan
CVE-2015-1597,9/03/2015 15:15,7/03/2015 2:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-0895,9/03/2015 15:09,7/03/2015 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9369,9/03/2015 15:09,7/03/2015 2:59,7.8,20, Improper Input Validation,nan
CVE-2015-0894,9/03/2015 13:21,7/03/2015 2:59,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9371,7/03/2015 3:30,16/12/2014 18:59,10.0,20, Improper Input Validation,nan
CVE-2015-0607,6/03/2015 16:17,6/03/2015 3:00,4.3,287, Improper Authentication,nan
CVE-2013-4709,5/03/2015 13:24,20/09/2013 15:26,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-2199,4/03/2015 19:14,3/03/2015 19:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-2198,4/03/2015 19:13,3/03/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2197,4/03/2015 19:13,3/03/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2196,4/03/2015 19:11,3/03/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0934,4/03/2015 19:10,4/03/2015 2:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-0933,4/03/2015 19:09,4/03/2015 2:59,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0887,4/03/2015 17:20,28/02/2015 2:59,7.1,399, Resource Management Errors,nan
CVE-2015-0631,4/03/2015 17:14,21/02/2015 11:59,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-7816,4/03/2015 16:41,1/12/2014 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8921,3/03/2015 17:45,2/03/2015 2:59,4.3,200, Information Exposure,nan
CVE-2013-4476,3/03/2015 2:59,13/11/2013 15:55,1.2,310, Cryptographic Issues,nan
CVE-2014-9682,2/03/2015 20:26,28/02/2015 1:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2015-2078,28/02/2015 2:59,24/02/2015 23:59,5.0,310, Cryptographic Issues,nan
CVE-2013-7391,27/02/2015 17:42,19/07/2014 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4273,27/02/2015 17:42,19/07/2014 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0977,27/02/2015 17:41,27/02/2015 2:59,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-2088,26/02/2015 19:15,26/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2086,26/02/2015 19:14,26/02/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-2043,26/02/2015 19:07,25/02/2015 22:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9282,25/02/2015 17:14,24/02/2015 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1605,25/02/2015 16:58,24/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6115,25/02/2015 16:48,24/02/2015 20:59,5.0,200, Information Exposure,nan
CVE-2015-2048,24/02/2015 17:18,23/02/2015 17:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1315,24/02/2015 17:04,23/02/2015 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7247,24/02/2015 16:18,26/11/2014 2:59,10.0,19, Data Processing Errors,nan
CVE-2014-7922,23/02/2015 19:03,23/02/2015 2:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-6184,23/02/2015 19:02,22/02/2015 2:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1361,21/02/2015 3:02,27/01/2015 20:04,6.8,17, DEPRECATED: Code,nan
CVE-2015-1360,21/02/2015 3:02,27/01/2015 20:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1359,21/02/2015 3:02,27/01/2015 20:04,6.8,189, Numeric Errors,nan
CVE-2014-9648,21/02/2015 3:01,27/01/2015 20:01,4.3,284, Improper Access Control,nan
CVE-2014-9646,21/02/2015 3:01,27/01/2015 19:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2015-1604,21/02/2015 1:40,19/02/2015 15:59,6.5,20, Improper Input Validation,nan
CVE-2015-1603,21/02/2015 1:38,19/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1515,21/02/2015 1:23,19/02/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1879,20/02/2015 18:49,19/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0879,20/02/2015 18:40,20/02/2015 11:59,4.3,20, Improper Input Validation,nan
CVE-2015-0878,20/02/2015 18:39,20/02/2015 11:59,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0628,20/02/2015 18:37,20/02/2015 2:59,5.0,200, Information Exposure,nan
CVE-2015-0875,20/02/2015 1:56,15/02/2015 2:59,1.8,200, Information Exposure,nan
CVE-2015-0623,19/02/2015 20:00,19/02/2015 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0626,19/02/2015 19:59,19/02/2015 0:59,4.3,20, Improper Input Validation,nan
CVE-2015-0622,19/02/2015 19:32,19/02/2015 0:59,7.1,20, Improper Input Validation,nan
CVE-2014-5286,19/02/2015 19:05,19/02/2015 2:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-1456,19/02/2015 18:59,3/02/2015 16:59,4.0,200, Information Exposure,nan
CVE-2015-1455,19/02/2015 18:59,3/02/2015 16:59,7.5,255, Credentials Management,nan
CVE-2015-1452,19/02/2015 18:59,2/02/2015 16:59,7.8,17, DEPRECATED: Code,nan
CVE-2015-1451,19/02/2015 18:58,2/02/2015 16:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6304,19/02/2015 18:54,19/02/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-6303,19/02/2015 18:53,19/02/2015 11:59,5.0,399, Resource Management Errors,nan
CVE-2014-6301,19/02/2015 18:52,19/02/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1619,18/02/2015 18:57,17/02/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1618,18/02/2015 18:56,17/02/2015 15:59,4.0,200, Information Exposure,nan
CVE-2015-1617,18/02/2015 18:56,17/02/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1616,18/02/2015 18:56,17/02/2015 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9101,18/02/2015 18:53,26/11/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1356,18/02/2015 18:37,18/02/2015 2:59,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-1355,18/02/2015 18:35,18/02/2015 2:59,2.1,310, Cryptographic Issues,nan
CVE-2015-1621,18/02/2015 17:56,17/02/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9375,17/02/2015 20:16,16/02/2015 15:59,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1496,17/02/2015 17:55,16/02/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1495,17/02/2015 17:54,16/02/2015 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1501,17/02/2015 17:33,16/02/2015 15:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2015-1500,17/02/2015 17:32,16/02/2015 15:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0931,17/02/2015 17:17,14/02/2015 3:01,6.8,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-1613,17/02/2015 17:13,16/02/2015 15:59,4.0,200, Information Exposure,nan
CVE-2014-9300,17/02/2015 15:51,7/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8678,17/02/2015 15:22,25/11/2014 15:59,7.8,200, Information Exposure,nan
CVE-2014-9372,17/02/2015 15:16,16/12/2014 18:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-7850,17/02/2015 14:36,28/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6139,17/02/2015 12:35,13/02/2015 2:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-0873,13/02/2015 23:34,13/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8385,13/02/2015 23:20,13/02/2015 2:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0154,13/02/2015 23:19,13/02/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-1471,13/02/2015 20:57,12/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1582,12/02/2015 17:55,11/02/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1581,12/02/2015 17:55,11/02/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1580,12/02/2015 17:54,11/02/2015 19:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1577,12/02/2015 17:53,11/02/2015 19:59,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1576,12/02/2015 17:52,11/02/2015 19:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1575,12/02/2015 17:51,11/02/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1169,11/02/2015 19:47,10/02/2015 20:59,7.5,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2015-1377,11/02/2015 19:45,10/02/2015 20:59,4.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-1569,11/02/2015 19:44,10/02/2015 20:59,4.3,310, Cryptographic Issues,nan
CVE-2015-1570,11/02/2015 19:35,10/02/2015 20:59,4.3,310, Cryptographic Issues,nan
CVE-2014-8733,11/02/2015 17:20,10/02/2015 19:59,2.1,200, Information Exposure,nan
CVE-2014-7731,11/02/2015 16:54,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7539,11/02/2015 16:50,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7270,11/02/2015 16:42,1/02/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7246,10/02/2015 18:09,14/11/2014 0:59,3.5,20, Improper Input Validation,nan
CVE-2013-3737,10/02/2015 18:03,16/11/2014 2:59,5.0,200, Information Exposure,nan
CVE-2015-1565,9/02/2015 19:29,9/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1566,9/02/2015 19:28,9/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1564,9/02/2015 19:28,9/02/2015 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9203,9/02/2015 19:26,7/02/2015 15:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-0871,9/02/2015 19:25,7/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0212,9/02/2015 19:23,24/02/2013 21:55,4.0,200, Information Exposure,nan
CVE-2015-1562,9/02/2015 19:16,9/02/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9643,9/02/2015 16:09,6/02/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9642,9/02/2015 16:09,6/02/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9641,9/02/2015 16:02,6/02/2015 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2015-1442,9/02/2015 14:14,6/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0605,9/02/2015 14:08,6/02/2015 11:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0604,9/02/2015 14:05,6/02/2015 11:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0603,9/02/2015 14:05,6/02/2015 11:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9354,9/02/2015 14:04,6/02/2015 11:59,4.0,200, Information Exposure,nan
CVE-2015-1479,6/02/2015 20:40,4/02/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9353,6/02/2015 16:06,6/02/2015 11:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5776,5/02/2015 17:37,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-9049,5/02/2015 16:19,4/02/2015 18:59,4.0,200, Information Exposure,nan
CVE-2014-9048,5/02/2015 16:18,4/02/2015 18:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9046,5/02/2015 16:15,4/02/2015 18:59,5.0,200, Information Exposure,nan
CVE-2014-9045,5/02/2015 16:15,4/02/2015 18:59,5.0,287, Improper Authentication,nan
CVE-2014-9562,5/02/2015 16:08,4/02/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9044,5/02/2015 15:22,4/02/2015 18:59,5.0,200, Information Exposure,nan
CVE-2014-9043,5/02/2015 15:21,4/02/2015 18:59,5.0,287, Improper Authentication,nan
CVE-2014-9042,5/02/2015 15:20,4/02/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5341,5/02/2015 15:20,4/02/2015 18:59,4.3,200, Information Exposure,nan
CVE-2014-9041,5/02/2015 14:19,4/02/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1478,4/02/2015 19:54,4/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1477,4/02/2015 19:54,4/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1476,4/02/2015 19:40,4/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1469,4/02/2015 17:53,3/02/2015 22:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1460,4/02/2015 17:51,3/02/2015 16:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-0930,4/02/2015 17:35,3/02/2015 22:59,10.0,255, Credentials Management,nan
CVE-2015-0929,4/02/2015 17:33,3/02/2015 22:59,10.0,284, Improper Access Control,nan
CVE-2015-0869,4/02/2015 17:31,1/02/2015 15:59,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2015-1441,4/02/2015 17:02,3/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1400,4/02/2015 16:58,3/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1348,4/02/2015 16:40,3/02/2015 16:59,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9633,4/02/2015 16:39,3/02/2015 16:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2015-1450,4/02/2015 5:27,2/02/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1449,4/02/2015 5:27,2/02/2015 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1448,4/02/2015 5:27,2/02/2015 15:59,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1404,4/02/2015 5:24,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1402,4/02/2015 5:23,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1383,4/02/2015 5:20,2/02/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1357,4/02/2015 5:19,2/02/2015 15:59,5.0,200, Information Exposure,nan
CVE-2015-1049,4/02/2015 5:19,2/02/2015 15:59,6.8,20, Improper Input Validation,nan
CVE-2015-1030,4/02/2015 5:17,20/01/2015 15:59,5.0,399, Resource Management Errors,nan
CVE-2015-1403,4/02/2015 5:16,3/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1405,4/02/2015 5:13,3/02/2015 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8587,4/02/2015 5:08,4/11/2014 15:55,7.5,310, Cryptographic Issues,nan
CVE-2014-7782,4/02/2015 5:04,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6382,4/02/2015 5:03,16/01/2015 16:59,7.1,20, Improper Input Validation,nan
CVE-2014-9559,4/02/2015 3:37,3/02/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7269,4/02/2015 3:33,1/02/2015 15:59,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2015-0926,3/02/2015 15:20,1/02/2015 2:59,6.8,284, Improper Access Control,nan
CVE-2015-0870,3/02/2015 4:13,1/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8268,2/02/2015 23:20,1/02/2015 2:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-8267,2/02/2015 22:56,1/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8266,2/02/2015 22:55,1/02/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7266,2/02/2015 22:50,1/02/2015 15:59,7.8,399, Resource Management Errors,nan
CVE-2014-8511,2/02/2015 16:49,27/12/2014 15:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4467,2/02/2015 15:05,30/01/2015 11:59,4.3,17, DEPRECATED: Code,nan
CVE-2015-1369,28/01/2015 19:35,27/01/2015 20:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9197,28/01/2015 18:52,27/01/2015 19:59,7.8,284, Improper Access Control,nan
CVE-2015-1362,28/01/2015 16:17,27/01/2015 20:04,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5211,28/01/2015 16:08,27/01/2015 20:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2015-1363,28/01/2015 16:03,27/01/2015 20:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1364,28/01/2015 15:53,27/01/2015 20:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1372,28/01/2015 4:13,27/01/2015 20:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1371,28/01/2015 4:13,27/01/2015 20:04,7.5,20, Improper Input Validation,nan
CVE-2015-1374,28/01/2015 2:24,27/01/2015 20:04,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2015-1373,28/01/2015 2:24,27/01/2015 20:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6611,28/01/2015 0:40,25/10/2014 10:55,4.3,20, Improper Input Validation,nan
CVE-2014-0136,28/01/2015 0:31,27/10/2014 1:55,5.0,20, Improper Input Validation,nan
CVE-2015-1308,26/01/2015 19:40,26/01/2015 15:59,4.3,200, Information Exposure,nan
CVE-2015-1307,26/01/2015 19:40,26/01/2015 15:59,4.3,284, Improper Access Control,nan
CVE-2014-6386,26/01/2015 19:38,16/01/2015 16:59,7.8,17, DEPRECATED: Code,nan
CVE-2014-6384,26/01/2015 19:35,16/01/2015 16:59,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-6383,26/01/2015 19:35,16/01/2015 16:59,5.0,17, DEPRECATED: Code,nan
CVE-2014-2927,26/01/2015 18:32,15/10/2014 14:55,9.3,287, Improper Authentication,nan
CVE-2014-2081,26/01/2015 17:33,20/10/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-1347,26/01/2015 13:49,23/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8802,26/01/2015 12:56,23/01/2015 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2015-1028,26/01/2015 12:55,21/01/2015 15:28,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0925,24/01/2015 2:26,22/01/2015 14:02,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8009,24/01/2015 2:19,10/12/2014 21:59,5.0,200, Information Exposure,nan
CVE-2014-8003,24/01/2015 2:17,10/12/2014 21:59,7.2,20, Improper Input Validation,nan
CVE-2014-4514,24/01/2015 1:36,21/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1194,23/01/2015 21:56,21/01/2015 18:59,4.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2015-1193,23/01/2015 21:49,21/01/2015 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-1192,23/01/2015 21:40,21/01/2015 18:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8478,23/01/2015 21:16,21/01/2015 17:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8479,23/01/2015 21:12,21/01/2015 17:59,6.8,20, Improper Input Validation,nan
CVE-2015-1204,23/01/2015 21:08,21/01/2015 15:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0554,23/01/2015 20:43,21/01/2015 18:59,9.4,264, Permissions Privileges and Access Controls,nan
CVE-2015-0867,23/01/2015 20:37,21/01/2015 15:17,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2015-0553,22/01/2015 21:00,21/01/2015 15:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7843,22/01/2015 14:01,30/11/2014 1:59,4.9,17, DEPRECATED: Code,nan
CVE-2014-9199,21/01/2015 21:06,17/01/2015 2:59,5.0,200, Information Exposure,nan
CVE-2014-8386,21/01/2015 17:38,20/01/2015 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5418,21/01/2015 17:36,17/01/2015 2:59,7.8,399, Resource Management Errors,nan
CVE-2014-2355,21/01/2015 15:57,17/01/2015 2:59,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5419,21/01/2015 15:54,17/01/2015 2:59,5.0,310, Cryptographic Issues,nan
CVE-2015-0862,20/01/2015 17:45,18/01/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9480,20/01/2015 14:25,16/01/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9479,20/01/2015 14:25,16/01/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9478,20/01/2015 14:24,16/01/2015 16:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9477,20/01/2015 14:22,16/01/2015 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7814,20/01/2015 13:49,16/01/2015 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3692,20/01/2015 13:49,16/01/2015 16:59,10.0,255, Credentials Management,nan
CVE-2013-2035,18/01/2015 2:59,28/08/2013 23:55,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5629,18/01/2015 2:59,12/03/2013 23:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5370,18/01/2015 2:59,28/11/2012 13:03,5.0,310, Cryptographic Issues,nan
CVE-2012-0034,18/01/2015 2:59,5/02/2013 23:55,2.1,255, Credentials Management,nan
CVE-2011-4575,18/01/2015 2:59,5/02/2013 23:55,4.3,20, Improper Input Validation,nan
CVE-2009-5066,18/01/2015 2:59,13/08/2012 20:55,2.1,255, Credentials Management,nan
CVE-2014-9593,16/01/2015 18:34,15/01/2015 15:59,5.0,200, Information Exposure,nan
CVE-2014-9596,16/01/2015 18:31,15/01/2015 23:59,4.3,310, Cryptographic Issues,nan
CVE-2014-9587,16/01/2015 17:19,15/01/2015 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9561,16/01/2015 16:30,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9560,16/01/2015 16:30,15/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8153,16/01/2015 0:37,15/01/2015 15:59,4.0,20, Improper Input Validation,nan
CVE-2015-1052,15/01/2015 22:47,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1040,15/01/2015 22:46,15/01/2015 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-1039,15/01/2015 22:45,15/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3314,15/01/2015 18:19,14/01/2015 19:59,5.0,20, Improper Input Validation,nan
CVE-2014-10035,14/01/2015 21:42,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100039,14/01/2015 20:02,13/01/2015 15:59,2.1,20, Improper Input Validation,nan
CVE-2014-100035,14/01/2015 20:00,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-100033,14/01/2015 19:59,13/01/2015 15:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-100037,14/01/2015 19:56,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100021,14/01/2015 19:51,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100018,14/01/2015 19:48,13/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-100012,14/01/2015 19:45,13/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9507,14/01/2015 2:59,4/01/2015 21:59,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9459,14/01/2015 2:59,2/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10028,14/01/2015 0:31,13/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-10026,14/01/2015 0:31,13/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-10025,14/01/2015 0:31,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10024,14/01/2015 0:30,13/01/2015 11:59,7.5,189, Numeric Errors,nan
CVE-2014-10022,14/01/2015 0:29,13/01/2015 11:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-10015,14/01/2015 0:20,13/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-10006,13/01/2015 23:57,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-10005,13/01/2015 23:55,13/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-100009,13/01/2015 22:30,13/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2014-10027,13/01/2015 21:00,13/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2604,13/01/2015 20:43,12/01/2015 19:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-9510,13/01/2015 1:49,9/01/2015 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9190,12/01/2015 21:34,10/01/2015 2:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9501,12/01/2015 19:09,9/01/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9500,12/01/2015 19:09,9/01/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9498,12/01/2015 19:08,9/01/2015 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7419,12/01/2015 17:31,9/01/2015 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4644,12/01/2015 7:10,25/06/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9582,11/01/2015 2:59,8/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9581,11/01/2015 2:59,8/01/2015 20:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4054,9/01/2015 23:44,23/10/2010 20:39,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2055,9/01/2015 23:44,22/07/2010 5:43,7.2,17, DEPRECATED: Code,nan
CVE-2009-4270,9/01/2015 23:42,21/12/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4883,8/01/2015 19:56,28/11/2014 2:59,4.3,345, Insufficient Verification of Data Authenticity,nan
CVE-2015-0919,8/01/2015 19:55,8/01/2015 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2015-0918,8/01/2015 19:55,8/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2015-0917,8/01/2015 19:54,8/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9579,8/01/2015 19:54,8/01/2015 15:59,5.0,200, Information Exposure,nan
CVE-2014-9577,8/01/2015 19:50,8/01/2015 15:59,4.0,200, Information Exposure,nan
CVE-2014-9576,8/01/2015 19:44,8/01/2015 15:59,5.0,200, Information Exposure,nan
CVE-2014-9575,8/01/2015 19:43,8/01/2015 15:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-1425,8/01/2015 19:15,7/01/2015 19:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-2223,8/01/2015 13:41,11/09/2014 14:16,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0122,8/01/2015 13:36,22/04/2013 3:27,1.9,20, Improper Input Validation,nan
CVE-2014-8376,7/01/2015 14:22,21/10/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4517,7/01/2015 13:55,21/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1797,7/01/2015 3:40,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8131,6/01/2015 18:57,6/01/2015 15:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3764,6/01/2015 18:25,6/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3628,6/01/2015 18:25,6/01/2015 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9518,6/01/2015 17:37,5/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9524,6/01/2015 16:57,5/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9523,6/01/2015 16:55,5/01/2015 20:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9521,6/01/2015 16:55,5/01/2015 20:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9520,6/01/2015 16:52,5/01/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9519,6/01/2015 16:48,5/01/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9516,6/01/2015 16:48,5/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9389,6/01/2015 16:46,5/01/2015 20:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9277,6/01/2015 16:46,4/01/2015 21:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9509,6/01/2015 14:42,4/01/2015 21:59,7.5,20, Improper Input Validation,nan
CVE-2014-9276,6/01/2015 14:16,4/01/2015 21:59,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9455,6/01/2015 12:14,2/01/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9450,6/01/2015 3:05,2/01/2015 20:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9448,6/01/2015 3:03,2/01/2015 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9446,6/01/2015 3:00,2/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9457,5/01/2015 23:41,2/01/2015 20:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9444,5/01/2015 21:17,2/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9443,5/01/2015 21:16,2/01/2015 19:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9442,5/01/2015 21:15,2/01/2015 19:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9435,5/01/2015 21:08,2/01/2015 19:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9434,5/01/2015 21:07,2/01/2015 19:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7293,5/01/2015 21:05,2/01/2015 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9461,5/01/2015 20:05,2/01/2015 22:59,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7418,5/01/2015 20:02,2/01/2015 22:59,6.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-9464,5/01/2015 18:31,3/01/2015 22:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5320,5/01/2015 18:29,3/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-5319,5/01/2015 18:28,3/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-5318,5/01/2015 18:27,3/01/2015 11:59,4.3,255, Credentials Management,nan
CVE-2010-5317,5/01/2015 18:20,3/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5316,5/01/2015 18:20,3/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5315,5/01/2015 18:20,3/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-5314,5/01/2015 18:18,3/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6456,3/01/2015 2:22,15/04/2014 23:55,5.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-6457,3/01/2015 2:21,24/01/2014 18:55,5.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6458,3/01/2015 2:19,24/01/2014 18:55,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0028,3/01/2015 2:08,24/01/2014 18:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1447,3/01/2015 1:44,24/01/2014 18:55,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3633,3/01/2015 1:37,6/10/2014 14:55,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8752,3/01/2015 1:31,31/12/2014 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9254,3/01/2015 1:30,31/12/2014 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9325,3/01/2015 1:29,31/12/2014 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9367,3/01/2015 1:28,31/12/2014 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9391,3/01/2015 1:26,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9392,3/01/2015 1:24,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9395,3/01/2015 1:22,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9398,3/01/2015 1:18,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9399,3/01/2015 1:17,31/12/2014 21:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6436,3/01/2015 1:03,7/01/2014 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5651,3/01/2015 1:01,30/09/2013 21:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5304,3/01/2015 0:59,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5303,3/01/2015 0:58,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5296,3/01/2015 0:57,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5288,3/01/2015 0:57,1/01/2015 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5287,3/01/2015 0:56,1/01/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5286,3/01/2015 0:56,1/01/2015 2:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5301,3/01/2015 0:38,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5300,3/01/2015 0:37,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5302,3/01/2015 0:36,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5299,3/01/2015 0:36,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5285,3/01/2015 0:36,1/01/2015 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5298,3/01/2015 0:35,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5297,3/01/2015 0:35,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5295,3/01/2015 0:35,1/01/2015 11:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5294,3/01/2015 0:34,1/01/2015 11:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-5293,3/01/2015 0:33,1/01/2015 2:59,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5292,3/01/2015 0:32,1/01/2015 2:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-5291,3/01/2015 0:32,1/01/2015 2:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-5290,3/01/2015 0:31,1/01/2015 2:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-5289,3/01/2015 0:30,1/01/2015 2:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-5307,2/01/2015 17:06,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5306,2/01/2015 17:06,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5305,2/01/2015 17:03,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4400,2/01/2015 16:31,9/12/2013 16:36,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4401,2/01/2015 16:30,2/11/2013 18:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4297,2/01/2015 16:25,30/09/2013 21:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4292,2/01/2015 16:23,30/09/2013 21:55,2.1,399, Resource Management Errors,nan
CVE-2011-5309,2/01/2015 15:57,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5310,2/01/2015 15:56,1/01/2015 11:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5312,2/01/2015 15:55,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5311,2/01/2015 15:55,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5313,2/01/2015 15:52,1/01/2015 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5314,2/01/2015 15:51,1/01/2015 11:59,5.0,200, Information Exposure,nan
CVE-2011-5315,2/01/2015 15:49,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5316,2/01/2015 15:48,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5317,2/01/2015 15:46,1/01/2015 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5318,2/01/2015 15:43,1/01/2015 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-1999-0491,31/12/2014 15:18,20/04/1999 4:00,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5314,30/12/2014 21:22,24/11/2014 2:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8414,30/12/2014 21:18,24/11/2014 15:59,5.0,399, Resource Management Errors,nan
CVE-2014-9016,30/12/2014 21:11,24/11/2014 15:59,5.0,20, Improper Input Validation,nan
CVE-2014-2224,30/12/2014 16:37,29/12/2014 20:59,5.0,254, 7PK – Security Features,nan
CVE-2014-1908,30/12/2014 16:37,29/12/2014 20:59,5.0,200, Information Exposure,nan
CVE-2014-1905,30/12/2014 16:37,29/12/2014 20:59,10.0,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-6229,30/12/2014 15:34,28/12/2014 15:59,5.0,200, Information Exposure,nan
CVE-2014-6228,30/12/2014 15:34,28/12/2014 15:59,7.5,189, Numeric Errors,nan
CVE-2014-5386,30/12/2014 15:33,28/12/2014 15:59,5.0,310, Cryptographic Issues,nan
CVE-2013-3295,30/12/2014 15:31,30/12/2014 2:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2209,30/12/2014 15:28,28/12/2014 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2208,30/12/2014 15:28,28/12/2014 15:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0748,30/12/2014 11:22,27/12/2014 2:59,7.2,20, Improper Input Validation,nan
CVE-2013-4793,30/12/2014 11:21,27/12/2014 18:59,7.5,287, Improper Authentication,nan
CVE-2013-4754,30/12/2014 11:20,26/12/2014 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9188,29/12/2014 23:15,27/12/2014 15:59,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8513,29/12/2014 23:12,27/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8512,29/12/2014 23:11,27/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7193,29/12/2014 23:09,25/12/2014 11:59,5.8,284, Improper Access Control,nan
CVE-2013-6241,29/12/2014 23:00,27/12/2014 18:59,4.0,200, Information Exposure,nan
CVE-2013-5958,29/12/2014 22:55,27/12/2014 18:59,5.0,399, Resource Management Errors,nan
CVE-2013-4769,29/12/2014 22:54,26/12/2014 23:59,4.3,19, Data Processing Errors,nan
CVE-2013-4753,29/12/2014 22:53,26/12/2014 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3623,29/12/2014 22:53,26/12/2014 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3592,29/12/2014 22:48,26/12/2014 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3591,29/12/2014 22:47,26/12/2014 2:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1798,29/12/2014 22:46,26/12/2014 2:59,7.5,20, Improper Input Validation,nan
CVE-2011-1795,29/12/2014 21:19,26/12/2014 2:59,7.5,189, Numeric Errors,nan
CVE-2011-1794,29/12/2014 21:04,26/12/2014 2:59,7.5,189, Numeric Errors,nan
CVE-2010-2062,29/12/2014 21:03,26/12/2014 20:59,7.5,189, Numeric Errors,nan
CVE-2010-1445,29/12/2014 21:02,26/12/2014 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1444,29/12/2014 20:58,26/12/2014 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1441,29/12/2014 20:52,26/12/2014 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1442,29/12/2014 20:14,26/12/2014 20:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1793,29/12/2014 19:15,26/12/2014 2:59,7.5,20, Improper Input Validation,nan
CVE-2014-7038,29/12/2014 18:24,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-2217,29/12/2014 17:53,25/12/2014 21:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1449,29/12/2014 17:50,25/12/2014 21:59,5.0,284, Improper Access Control,nan
CVE-2014-3971,29/12/2014 16:47,25/12/2014 11:59,5.0,20, Improper Input Validation,nan
CVE-2013-4663,29/12/2014 16:32,28/12/2014 0:59,7.5,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2012-1415,29/12/2014 16:31,28/12/2014 2:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1303,29/12/2014 16:20,28/12/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1203,29/12/2014 16:20,28/12/2014 0:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4720,29/12/2014 16:20,28/12/2014 0:59,5.0,20, Improper Input Validation,nan
CVE-2010-5075,29/12/2014 16:14,28/12/2014 1:59,2.1,189, Numeric Errors,nan
CVE-2004-2771,29/12/2014 14:56,24/12/2014 18:59,7.5,20, Improper Input Validation,nan
CVE-2014-7999,24/12/2014 20:17,24/12/2014 0:59,7.7,264, Permissions Privileges and Access Controls,nan
CVE-2014-7995,24/12/2014 20:17,24/12/2014 0:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-4322,24/12/2014 17:03,24/12/2014 15:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7994,24/12/2014 15:38,24/12/2014 0:59,5.4,20, Improper Input Validation,nan
CVE-2014-7993,24/12/2014 15:28,24/12/2014 0:59,3.3,200, Information Exposure,nan
CVE-2014-9412,23/12/2014 19:13,23/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9115,23/12/2014 19:12,23/12/2014 11:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5217,23/12/2014 19:10,23/12/2014 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5216,23/12/2014 19:07,23/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5215,23/12/2014 19:07,23/12/2014 11:59,4.0,200, Information Exposure,nan
CVE-2014-9263,23/12/2014 17:17,8/12/2014 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9266,23/12/2014 17:13,8/12/2014 16:59,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5208,22/12/2014 19:27,22/12/2014 17:59,7.5,284, Improper Access Control,nan
CVE-2014-3410,22/12/2014 15:54,20/12/2014 0:59,4.3,200, Information Exposure,nan
CVE-2014-9193,22/12/2014 15:35,20/12/2014 0:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9368,22/12/2014 12:50,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9341,22/12/2014 12:49,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9340,22/12/2014 12:49,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9339,22/12/2014 12:48,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9338,22/12/2014 12:48,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9337,22/12/2014 12:47,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-9336,22/12/2014 12:45,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7275,22/12/2014 4:10,8/10/2014 1:55,5.8,310, Cryptographic Issues,nan
CVE-2014-7274,22/12/2014 4:09,8/10/2014 1:55,5.8,310, Cryptographic Issues,nan
CVE-2014-9407,19/12/2014 19:15,19/12/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-7273,19/12/2014 19:14,8/10/2014 1:55,6.8,310, Cryptographic Issues,nan
CVE-2014-7268,19/12/2014 18:59,19/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7267,19/12/2014 18:58,19/12/2014 11:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7249,19/12/2014 17:13,19/12/2014 11:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7241,19/12/2014 14:07,19/12/2014 11:59,6.8,20, Improper Input Validation,nan
CVE-2014-8016,19/12/2014 13:50,19/12/2014 2:59,5.0,399, Resource Management Errors,nan
CVE-2014-9406,18/12/2014 19:44,18/12/2014 15:59,10.0,255, Credentials Management,nan
CVE-2014-5438,18/12/2014 17:58,17/12/2014 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5437,18/12/2014 17:58,17/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3137,18/12/2014 15:45,25/10/2014 22:55,6.8,20, Improper Input Validation,nan
CVE-2011-4103,18/12/2014 15:35,27/10/2014 1:55,7.5,20, Improper Input Validation,nan
CVE-2014-8006,17/12/2014 20:32,17/12/2014 0:59,4.3,287, Improper Authentication,nan
CVE-2014-9373,17/12/2014 19:50,16/12/2014 18:59,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8751,17/12/2014 19:42,16/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5466,17/12/2014 19:31,16/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5359,17/12/2014 19:30,16/12/2014 18:59,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4626,17/12/2014 19:15,17/12/2014 1:59,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9150,17/12/2014 16:35,30/11/2014 2:59,6.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-9141,17/12/2014 16:17,3/12/2014 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-8756,17/12/2014 15:15,17/10/2014 15:55,6.8,20, Improper Input Validation,nan
CVE-2014-7178,17/12/2014 2:46,28/11/2014 15:59,9.3,20, Improper Input Validation,nan
CVE-2014-8755,16/12/2014 20:07,17/10/2014 15:55,6.8,20, Improper Input Validation,nan
CVE-2014-8610,16/12/2014 20:06,15/12/2014 18:59,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-8379,16/12/2014 20:00,21/10/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8609,16/12/2014 18:15,15/12/2014 18:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-7911,16/12/2014 18:14,15/12/2014 18:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-2358,16/12/2014 18:13,19/10/2014 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4633,16/12/2014 17:39,12/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8307,16/12/2014 17:26,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8306,16/12/2014 17:26,16/10/2014 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5697,16/12/2014 17:23,20/10/2014 16:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-5696,16/12/2014 17:23,20/10/2014 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5694,16/12/2014 17:21,20/10/2014 16:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8269,16/12/2014 14:54,13/12/2014 0:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6254,16/12/2014 14:06,15/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6381,16/12/2014 13:54,12/12/2014 15:59,2.9,20, Improper Input Validation,nan
CVE-2014-3364,16/12/2014 13:34,13/12/2014 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8956,16/12/2014 3:32,12/12/2014 15:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8515,16/12/2014 3:30,12/12/2014 15:59,6.8,77, Improper Neutralization of Special Elements used in a Command (‘Command Injection’),nan
CVE-2014-7136,15/12/2014 19:50,12/12/2014 15:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6636,15/12/2014 19:37,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6408,15/12/2014 19:36,12/12/2014 15:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-6407,15/12/2014 19:36,12/12/2014 15:59,7.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4628,15/12/2014 19:31,12/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9113,15/12/2014 16:27,2/12/2014 16:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-8270,12/12/2014 20:38,12/12/2014 11:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-7265,12/12/2014 20:32,12/12/2014 11:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7261,12/12/2014 20:31,12/12/2014 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7260,12/12/2014 20:30,12/12/2014 0:59,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7250,12/12/2014 20:28,12/12/2014 3:03,5.0,399, Resource Management Errors,nan
CVE-2014-4323,12/12/2014 20:07,12/12/2014 11:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9264,12/12/2014 17:15,11/12/2014 15:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7263,12/12/2014 17:14,12/12/2014 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7262,12/12/2014 17:14,12/12/2014 0:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7264,12/12/2014 14:21,11/12/2014 23:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8372,12/12/2014 14:00,11/12/2014 15:59,4.0,200, Information Exposure,nan
CVE-2014-8449,12/12/2014 4:04,10/12/2014 21:59,10.0,189, Numeric Errors,nan
CVE-2014-1950,12/12/2014 3:01,14/02/2014 15:55,4.6,399, Resource Management Errors,nan
CVE-2013-2211,12/12/2014 2:59,28/08/2013 21:55,7.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2195,12/12/2014 2:59,23/08/2013 16:55,6.9,189, Numeric Errors,nan
CVE-2013-2194,12/12/2014 2:59,23/08/2013 16:55,6.9,189, Numeric Errors,nan
CVE-2013-2078,12/12/2014 2:59,14/08/2013 15:55,4.7,20, Improper Input Validation,nan
CVE-2013-2077,12/12/2014 2:59,28/08/2013 21:55,5.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-2076,12/12/2014 2:59,28/08/2013 21:55,4.3,200, Information Exposure,nan
CVE-2014-9158,12/12/2014 1:40,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8461,12/12/2014 1:39,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8460,12/12/2014 1:36,10/12/2014 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8459,12/12/2014 1:36,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8458,12/12/2014 1:35,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8457,12/12/2014 1:34,10/12/2014 21:59,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8456,12/12/2014 1:33,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8452,12/12/2014 1:30,10/12/2014 21:59,5.0,200, Information Exposure,nan
CVE-2014-8453,12/12/2014 1:26,10/12/2014 21:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8451,12/12/2014 1:21,10/12/2014 21:59,5.0,200, Information Exposure,nan
CVE-2014-8448,12/12/2014 1:19,10/12/2014 21:59,5.0,200, Information Exposure,nan
CVE-2014-8447,12/12/2014 1:18,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8445,12/12/2014 0:43,10/12/2014 21:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9362,11/12/2014 18:56,10/12/2014 20:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9091,11/12/2014 18:24,10/12/2014 15:59,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-9364,11/12/2014 17:36,10/12/2014 20:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9361,11/12/2014 13:49,10/12/2014 20:59,4.3,200, Information Exposure,nan
CVE-2014-8584,11/12/2014 13:46,4/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8496,10/12/2014 18:29,10/12/2014 0:59,10.0,255, Credentials Management,nan
CVE-2014-5732,10/12/2014 18:21,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-9351,10/12/2014 16:56,9/12/2014 23:59,6.4,20, Improper Input Validation,nan
CVE-2014-7283,10/12/2014 15:26,13/10/2014 10:55,4.9,399, Resource Management Errors,nan
CVE-2014-9345,9/12/2014 21:49,8/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9265,9/12/2014 18:50,8/12/2014 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9267,9/12/2014 18:48,8/12/2014 16:59,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9305,9/12/2014 18:21,8/12/2014 16:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5429,8/12/2014 19:30,6/12/2014 15:59,5.0,399, Resource Management Errors,nan
CVE-2014-7255,8/12/2014 18:58,5/12/2014 17:59,5.0,399, Resource Management Errors,nan
CVE-2014-3616,8/12/2014 17:55,8/12/2014 11:59,4.3,284, Improper Access Control,nan
CVE-2014-4880,8/12/2014 16:00,8/12/2014 11:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-7253,8/12/2014 13:54,5/12/2014 17:59,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-9212,6/12/2014 1:38,5/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3627,6/12/2014 1:15,5/12/2014 16:59,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-7258,5/12/2014 19:50,5/12/2014 17:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7259,5/12/2014 19:46,5/12/2014 17:59,5.0,200, Information Exposure,nan
CVE-2014-8800,5/12/2014 19:17,5/12/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8123,5/12/2014 17:20,5/12/2014 16:59,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-9103,5/12/2014 16:53,26/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9102,5/12/2014 16:53,26/11/2014 15:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9154,5/12/2014 16:32,1/12/2014 16:59,4.0,200, Information Exposure,nan
CVE-2014-9155,5/12/2014 16:10,1/12/2014 16:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3703,5/12/2014 16:01,2/12/2014 1:59,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8789,5/12/2014 15:50,2/12/2014 16:59,6.5,20, Improper Input Validation,nan
CVE-2014-8728,5/12/2014 15:50,2/12/2014 16:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8788,5/12/2014 15:47,2/12/2014 16:59,4.0,200, Information Exposure,nan
CVE-2014-8771,5/12/2014 15:35,3/12/2014 18:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8772,5/12/2014 15:28,3/12/2014 18:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9234,5/12/2014 14:12,3/12/2014 21:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-9235,5/12/2014 14:10,3/12/2014 21:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9236,5/12/2014 14:05,3/12/2014 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9237,5/12/2014 14:04,3/12/2014 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9239,5/12/2014 14:00,3/12/2014 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9240,5/12/2014 13:56,3/12/2014 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9241,5/12/2014 13:55,3/12/2014 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9242,5/12/2014 13:54,3/12/2014 21:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9243,5/12/2014 13:50,3/12/2014 21:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6034,5/12/2014 13:45,4/12/2014 17:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-6035,5/12/2014 13:33,4/12/2014 17:59,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5992,3/12/2014 19:46,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5665,3/12/2014 19:46,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5972,3/12/2014 19:45,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-9179,3/12/2014 19:08,2/12/2014 16:59,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9184,3/12/2014 19:00,2/12/2014 18:59,5.0,287, Improper Authentication,nan
CVE-2014-9183,3/12/2014 18:41,2/12/2014 18:59,10.0,255, Credentials Management,nan
CVE-2014-9182,3/12/2014 18:39,2/12/2014 18:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3988,3/12/2014 18:37,3/12/2014 1:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5705,3/12/2014 3:00,15/04/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9181,2/12/2014 18:41,2/12/2014 16:59,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5284,2/12/2014 14:08,2/12/2014 1:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6494,2/12/2014 13:25,2/12/2014 1:59,2.1,17, DEPRECATED: Code,nan
CVE-2014-9156,1/12/2014 19:15,1/12/2014 16:59,4.0,200, Information Exposure,nan
CVE-2014-9151,1/12/2014 19:08,1/12/2014 16:59,7.5,284, Improper Access Control,nan
CVE-2014-9153,1/12/2014 19:07,1/12/2014 16:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9152,1/12/2014 19:04,1/12/2014 16:59,7.5,255, Credentials Management,nan
CVE-2014-5268,1/12/2014 18:57,1/12/2014 16:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-8425,28/11/2014 18:17,28/11/2014 15:59,7.8,200, Information Exposure,nan
CVE-2014-8424,28/11/2014 18:04,28/11/2014 15:59,7.8,287, Improper Authentication,nan
CVE-2014-8423,28/11/2014 18:00,28/11/2014 15:59,10.0,74, Neutralization of Special Elements in Output Used by a Downstream Component (‘Injection’),nan
CVE-2014-3407,28/11/2014 15:41,28/11/2014 2:59,5.0,399, Resource Management Errors,nan
CVE-2014-5426,28/11/2014 15:13,27/11/2014 15:59,5.0,17, DEPRECATED: Code,nan
CVE-2014-9098,28/11/2014 14:14,26/11/2014 15:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9097,28/11/2014 14:10,26/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9096,28/11/2014 13:53,26/11/2014 15:59,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-9100,26/11/2014 21:55,26/11/2014 15:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-9099,26/11/2014 21:55,26/11/2014 15:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6609,26/11/2014 21:51,26/11/2014 15:59,4.0,20, Improper Input Validation,nan
CVE-2014-6610,26/11/2014 21:33,26/11/2014 15:59,4.0,19, Data Processing Errors,nan
CVE-2014-8002,26/11/2014 20:24,25/11/2014 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8001,26/11/2014 20:21,25/11/2014 17:59,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8558,26/11/2014 18:50,25/11/2014 15:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8552,26/11/2014 16:54,26/11/2014 11:59,5.0,200, Information Exposure,nan
CVE-2014-8551,26/11/2014 16:53,26/11/2014 11:59,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8627,25/11/2014 19:19,24/11/2014 15:59,5.0,310, Cryptographic Issues,nan
CVE-2014-1424,24/11/2014 17:02,24/11/2014 15:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-5326,24/11/2014 15:39,24/11/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8388,24/11/2014 14:09,21/11/2014 2:59,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8999,24/11/2014 13:58,20/11/2014 13:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7796,22/11/2014 3:03,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7465,22/11/2014 3:00,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7464,22/11/2014 3:00,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7463,22/11/2014 3:00,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7462,22/11/2014 2:59,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7195,21/11/2014 15:42,21/11/2014 2:59,4.0,200, Information Exposure,nan
CVE-2014-7194,21/11/2014 14:58,21/11/2014 2:59,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-9025,21/11/2014 13:02,20/11/2014 17:50,5.0,200, Information Exposure,nan
CVE-2014-9026,21/11/2014 2:43,20/11/2014 17:50,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-9022,20/11/2014 19:15,20/11/2014 17:50,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-9024,20/11/2014 19:05,20/11/2014 17:50,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-9001,20/11/2014 15:09,20/11/2014 13:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-9000,20/11/2014 15:00,20/11/2014 13:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2382,20/11/2014 14:04,20/11/2014 13:55,7.2,399, Resource Management Errors,nan
CVE-2014-3697,20/11/2014 2:59,29/10/2014 10:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3641,20/11/2014 2:59,8/10/2014 19:55,4.0,200, Information Exposure,nan
CVE-2014-3621,20/11/2014 2:59,2/10/2014 14:55,4.0,200, Information Exposure,nan
CVE-2014-6625,19/11/2014 19:34,19/11/2014 18:59,9.0,284, Improper Access Control,nan
CVE-2012-2301,19/11/2014 19:34,16/11/2014 2:59,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6627,19/11/2014 19:30,19/11/2014 18:59,9.0,284, Improper Access Control,nan
CVE-2014-6626,19/11/2014 19:22,19/11/2014 18:59,10.0,284, Improper Access Control,nan
CVE-2014-6622,19/11/2014 19:17,19/11/2014 18:59,5.0,200, Information Exposure,nan
CVE-2014-6621,19/11/2014 19:16,19/11/2014 18:59,5.0,200, Information Exposure,nan
CVE-2014-8518,19/11/2014 3:03,29/10/2014 14:55,2.1,255, Credentials Management,nan
CVE-2014-5263,19/11/2014 3:02,26/08/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3953,19/11/2014 3:01,15/07/2014 14:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3657,19/11/2014 3:01,6/10/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-2734,19/11/2014 3:00,24/04/2014 23:55,5.8,399, Resource Management Errors,nan
CVE-2014-1943,19/11/2014 3:00,18/02/2014 19:55,5.0,399, Resource Management Errors,nan
CVE-2014-0572,19/11/2014 2:59,15/10/2014 10:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-0571,19/11/2014 2:59,15/10/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0570,19/11/2014 2:59,15/10/2014 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0205,19/11/2014 2:59,28/09/2014 19:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7345,19/11/2014 2:59,24/03/2014 16:31,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-7177,19/11/2014 2:59,1/02/2014 15:55,5.0,20, Improper Input Validation,nan
CVE-2013-7176,19/11/2014 2:59,1/02/2014 15:55,5.0,20, Improper Input Validation,nan
CVE-2014-6792,19/11/2014 1:57,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7777,19/11/2014 1:36,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5577,19/11/2014 1:36,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-3910,19/11/2014 0:56,5/09/2014 17:55,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7469,18/11/2014 17:34,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2012-6665,18/11/2014 16:54,17/11/2014 22:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1669,18/11/2014 12:52,17/11/2014 22:59,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-8949,18/11/2014 2:04,16/11/2014 11:59,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7527,17/11/2014 18:32,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-3755,17/11/2014 17:38,16/11/2014 11:59,5.0,399, Resource Management Errors,nan
CVE-2014-3756,17/11/2014 17:36,16/11/2014 11:59,5.0,19, Data Processing Errors,nan
CVE-2014-0233,17/11/2014 17:24,16/11/2014 11:59,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3209,17/11/2014 17:06,16/11/2014 1:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-8948,17/11/2014 16:30,16/11/2014 11:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5388,17/11/2014 15:29,15/11/2014 21:59,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3502,17/11/2014 14:10,15/11/2014 21:59,4.3,200, Information Exposure,nan
CVE-2014-3501,17/11/2014 14:03,15/11/2014 21:59,4.3,254, 7PK – Security Features,nan
CVE-2014-3500,17/11/2014 13:55,15/11/2014 21:59,6.4,17, DEPRECATED: Code,nan
CVE-2014-7248,17/11/2014 13:45,15/11/2014 2:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7044,14/11/2014 17:10,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-3689,14/11/2014 17:05,14/11/2014 15:59,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-5424,14/11/2014 15:33,14/11/2014 0:59,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-6982,14/11/2014 15:31,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6869,14/11/2014 15:30,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7446,14/11/2014 15:29,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7664,14/11/2014 15:28,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7762,14/11/2014 15:27,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7443,14/11/2014 15:26,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7570,14/11/2014 15:25,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7427,14/11/2014 15:24,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6834,14/11/2014 15:23,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6972,14/11/2014 15:22,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7495,14/11/2014 15:21,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7632,14/11/2014 15:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7441,14/11/2014 15:18,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-8476,14/11/2014 15:01,13/11/2014 21:32,2.1,200, Information Exposure,nan
CVE-2014-8538,14/11/2014 14:58,29/10/2014 18:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7779,14/11/2014 14:55,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7774,14/11/2014 14:54,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7767,14/11/2014 14:53,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7737,14/11/2014 14:49,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7718,14/11/2014 14:48,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7670,14/11/2014 14:47,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7571,14/11/2014 14:47,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7550,14/11/2014 14:45,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7460,14/11/2014 14:41,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7439,14/11/2014 14:40,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7352,14/11/2014 14:39,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7073,14/11/2014 14:38,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6954,14/11/2014 14:37,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6946,14/11/2014 14:36,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6927,14/11/2014 14:35,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6890,14/11/2014 14:34,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6885,14/11/2014 14:33,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6836,14/11/2014 14:29,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6750,14/11/2014 14:28,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6743,14/11/2014 14:27,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6713,14/11/2014 14:26,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7804,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7803,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7802,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7800,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7799,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7798,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7797,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7795,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7794,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7793,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7791,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7789,14/11/2014 14:19,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7788,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7787,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7786,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7785,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7784,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7783,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7781,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7780,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7778,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7776,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7775,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7773,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7772,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7771,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7770,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7769,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7768,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7766,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7765,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7764,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7763,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7761,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7760,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7759,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7758,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7757,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7756,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7755,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7754,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7753,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7752,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7751,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7750,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7749,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7748,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7746,14/11/2014 14:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7745,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7744,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7743,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7742,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7741,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7740,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7739,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7735,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7734,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7733,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7728,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7727,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7726,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7725,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7724,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7723,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7722,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7721,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7720,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7719,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7717,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7716,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7715,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7714,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7713,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7712,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7710,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7708,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7707,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7705,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7703,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7702,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7701,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7700,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7698,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7697,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7696,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7695,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7694,14/11/2014 14:17,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7693,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7692,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7691,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7690,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7689,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7688,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7686,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7685,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7683,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7682,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7681,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7677,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7676,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7674,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7671,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7668,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7667,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7666,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7663,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7661,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7660,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7659,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7656,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7655,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7652,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7650,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7649,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7648,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7647,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7646,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7644,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7643,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7642,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7640,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7638,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7636,14/11/2014 14:16,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7634,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7633,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7631,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7630,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7629,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7628,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7626,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7624,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7622,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7621,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7620,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7618,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7617,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7616,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7614,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7613,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7612,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7611,14/11/2014 14:15,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4906,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4905,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4904,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4903,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4901,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4900,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4899,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4898,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4897,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4896,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4895,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4894,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4892,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4891,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4890,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4889,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4888,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4887,14/11/2014 14:15,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7610,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7609,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7608,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7607,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7606,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7605,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7604,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7603,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7602,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7598,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7597,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7596,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7595,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7593,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7592,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7591,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7590,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7589,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7587,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7585,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7584,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7582,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7581,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7580,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7578,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7577,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7576,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7575,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7573,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7572,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7569,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7568,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7567,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7566,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7565,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7564,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7563,14/11/2014 14:14,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7562,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7560,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7559,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7558,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7557,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7555,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7554,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7553,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7552,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7551,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7547,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7546,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7544,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7543,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7542,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7538,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7536,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7535,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7534,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7533,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7532,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7530,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7529,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7528,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7526,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7525,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7524,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7523,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7522,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7521,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7520,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7519,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7518,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7517,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7516,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7515,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7513,14/11/2014 14:13,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7510,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7509,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7508,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7507,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7506,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7505,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7502,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7501,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7499,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7498,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7497,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7494,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7493,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7492,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7491,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7490,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7488,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7487,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7486,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7485,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7484,14/11/2014 14:12,20/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7483,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7481,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7478,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7476,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7475,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7472,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7471,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7470,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7468,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7467,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7466,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7461,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7459,14/11/2014 14:12,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7458,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7457,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7456,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7455,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7454,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7452,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7450,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7449,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7448,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7447,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7445,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7444,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7437,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7436,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7435,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7434,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7433,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7432,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7431,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7430,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7428,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7425,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7424,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7423,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7422,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7421,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7420,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7419,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7418,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7417,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7416,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7415,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7414,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7413,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7410,14/11/2014 14:11,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7409,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7408,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7407,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7406,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7405,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7403,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7402,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7399,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7398,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7397,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7396,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7395,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7394,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7393,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7392,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7391,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7390,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7389,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7388,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7387,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7385,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7384,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7382,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7380,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7379,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7378,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7376,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7375,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7374,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7373,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7372,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7371,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7370,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7369,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7368,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7367,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7366,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7364,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7362,14/11/2014 14:10,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7361,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7360,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7359,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7358,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7357,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7354,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7353,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7351,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7348,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7346,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7345,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7344,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7342,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7341,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7340,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7339,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7338,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7337,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7336,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7335,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7334,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7333,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7331,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7330,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7329,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7328,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7327,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7326,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7325,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7323,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7321,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7320,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7317,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7316,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7315,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7314,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7313,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7310,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7309,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7307,14/11/2014 14:09,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7135,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7134,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7132,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7131,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7129,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7128,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7127,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7125,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7124,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7123,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7122,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7121,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7120,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7119,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7118,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7117,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7116,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7115,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7113,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7111,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7109,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7108,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7107,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7106,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7104,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7103,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7102,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7101,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7100,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7099,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7098,14/11/2014 14:08,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7084,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7083,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7080,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7079,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7075,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7070,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7056,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7052,14/11/2014 14:08,19/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7093,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7092,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7091,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7090,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7089,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7088,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7087,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7086,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7085,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7082,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7078,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7077,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7076,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7072,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7071,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7069,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7068,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7067,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7066,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7065,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7064,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7063,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7062,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7061,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7060,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7059,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7058,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7057,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7055,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7054,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7053,14/11/2014 14:07,19/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7050,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7049,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7048,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7045,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7043,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7042,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7041,14/11/2014 14:07,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7040,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7039,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7037,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7036,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7035,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7034,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7033,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7032,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7031,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7030,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7029,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7028,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7027,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7026,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7025,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7024,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7023,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7022,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7021,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7020,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7019,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7018,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7017,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7016,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7015,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7013,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7012,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7011,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7010,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7009,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7008,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7007,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7006,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7005,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7004,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7003,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7002,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7001,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7000,14/11/2014 14:06,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6999,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6998,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6997,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6996,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6995,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6994,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6993,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6992,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6991,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6990,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6989,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6988,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6987,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6986,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6985,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6984,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6983,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6981,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6980,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6979,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6978,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6977,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6976,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6975,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6974,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6973,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6971,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6970,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6969,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6968,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6967,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6966,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6965,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6964,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6963,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6962,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6961,14/11/2014 14:05,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7047,14/11/2014 14:04,10/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7046,14/11/2014 14:04,10/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6960,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6959,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6958,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6957,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6956,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6955,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6953,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6952,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6951,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6950,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6949,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6948,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6947,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6945,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6944,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6943,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6942,14/11/2014 14:04,15/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6941,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6940,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6939,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6938,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6937,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6936,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6935,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6934,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6933,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6932,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6931,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6930,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6929,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6928,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6926,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6925,14/11/2014 14:04,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6904,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6891,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6887,14/11/2014 14:04,11/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4881,14/11/2014 14:04,16/10/2014 19:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6924,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6923,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6922,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6921,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6920,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6919,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6918,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6917,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6916,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6914,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6913,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6912,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6911,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6910,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6909,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6908,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6907,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6906,14/11/2014 14:03,4/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6905,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6903,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6902,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6901,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6900,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6899,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6898,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6897,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6896,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6895,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6894,14/11/2014 14:03,3/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6893,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6892,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6889,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6888,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6886,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6884,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6883,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6882,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6880,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6879,14/11/2014 14:03,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6878,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6877,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6876,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6875,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6874,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6873,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6872,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6871,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6870,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6868,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6867,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6866,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6865,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6864,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6863,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6862,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6861,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6860,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6859,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6858,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6857,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6856,14/11/2014 14:02,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6855,14/11/2014 14:02,1/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6854,14/11/2014 14:02,1/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6853,14/11/2014 14:02,1/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6852,14/11/2014 14:02,1/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6851,14/11/2014 14:02,1/10/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6850,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6848,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6847,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6846,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6845,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6844,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6843,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6842,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6841,14/11/2014 14:02,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6840,14/11/2014 14:01,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6839,14/11/2014 14:01,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6838,14/11/2014 14:01,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6837,14/11/2014 14:01,30/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6835,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6833,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6832,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6831,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6830,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6829,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6828,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6827,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6826,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6825,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6824,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6823,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6822,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6821,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6820,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6819,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6818,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6817,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6816,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6815,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6814,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6813,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6812,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6810,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6808,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6807,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6806,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6805,14/11/2014 14:01,30/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6804,14/11/2014 14:01,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6803,14/11/2014 14:01,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6802,14/11/2014 14:01,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6801,14/11/2014 14:01,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6800,14/11/2014 14:01,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6799,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6798,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6797,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6796,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6795,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6794,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6793,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6791,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6790,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6789,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6788,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6787,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6786,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6785,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6784,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6783,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6782,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6781,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6779,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6778,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6777,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6776,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6775,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6774,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6773,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6772,14/11/2014 14:00,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6771,14/11/2014 14:00,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6770,14/11/2014 14:00,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6769,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6768,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6766,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6765,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6764,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6763,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6762,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6761,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6760,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6759,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6758,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6757,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6756,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6755,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6754,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6753,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6752,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6751,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6749,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6748,14/11/2014 13:59,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6747,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6746,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6745,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6744,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6742,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6741,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6740,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6739,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6738,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6737,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6736,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6735,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6734,14/11/2014 13:59,27/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6732,14/11/2014 13:59,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6731,14/11/2014 13:59,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6730,14/11/2014 13:59,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6729,14/11/2014 13:59,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6728,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6727,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6725,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6724,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6723,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6722,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6721,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6719,14/11/2014 13:58,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6718,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6717,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6716,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6715,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6714,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6712,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6711,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6710,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6709,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6707,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6706,14/11/2014 13:58,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6733,14/11/2014 13:45,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-8652,14/11/2014 13:44,10/11/2014 11:55,5.0,16, Configuration,nan
CVE-2014-6780,14/11/2014 13:42,29/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6767,14/11/2014 13:35,28/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5205,14/11/2014 3:06,18/08/2014 11:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4909,14/11/2014 3:06,29/07/2014 14:55,6.8,189, Numeric Errors,nan
CVE-2014-3654,14/11/2014 3:04,3/11/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3595,14/11/2014 3:04,22/09/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3535,14/11/2014 3:04,28/09/2014 19:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2665,14/11/2014 3:00,6/08/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1787,14/11/2014 3:00,6/06/2011 19:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-5519,13/11/2014 22:51,11/09/2014 14:16,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5590,13/11/2014 22:37,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5588,13/11/2014 22:29,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-8736,13/11/2014 14:24,12/11/2014 16:55,5.0,200, Information Exposure,nan
CVE-2014-4885,10/11/2014 17:24,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4884,10/11/2014 17:18,21/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-8510,10/11/2014 13:42,7/11/2014 19:55,4.0,20, Improper Input Validation,nan
CVE-2014-6623,10/11/2014 13:39,7/11/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6620,10/11/2014 13:38,7/11/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5038,10/11/2014 13:37,7/11/2014 19:55,2.1,200, Information Exposure,nan
CVE-2014-5037,10/11/2014 13:32,7/11/2014 19:55,2.1,200, Information Exposure,nan
CVE-2014-5587,9/11/2014 21:10,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5585,9/11/2014 21:03,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5563,9/11/2014 13:45,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-8669,7/11/2014 3:45,6/11/2014 15:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8667,7/11/2014 3:39,6/11/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8666,7/11/2014 3:36,6/11/2014 15:55,5.0,200, Information Exposure,nan
CVE-2014-8665,7/11/2014 3:31,6/11/2014 15:55,5.0,200, Information Exposure,nan
CVE-2014-8663,7/11/2014 3:17,6/11/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8661,7/11/2014 3:04,6/11/2014 15:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6030,6/11/2014 19:49,6/11/2014 18:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8656,6/11/2014 19:20,6/11/2014 15:55,10.0,255, Credentials Management,nan
CVE-2014-8622,6/11/2014 19:09,5/11/2014 23:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5545,6/11/2014 16:34,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4577,6/11/2014 12:38,21/10/2014 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2374,5/11/2014 22:45,5/11/2014 11:55,7.5,200, Information Exposure,nan
CVE-2014-2373,5/11/2014 22:44,5/11/2014 11:55,7.5,287, Improper Authentication,nan
CVE-2014-3461,5/11/2014 18:50,4/11/2014 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4150,5/11/2014 16:26,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4149,5/11/2014 16:24,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4537,5/11/2014 15:42,4/11/2014 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4538,5/11/2014 15:41,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4539,5/11/2014 15:40,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4541,5/11/2014 15:36,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4542,5/11/2014 15:34,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6399,5/11/2014 15:32,4/11/2014 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0182,5/11/2014 15:28,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4531,5/11/2014 15:18,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4533,5/11/2014 15:16,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4534,5/11/2014 15:15,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4148,5/11/2014 15:12,4/11/2014 21:55,7.5,189, Numeric Errors,nan
CVE-2013-4530,5/11/2014 15:03,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4529,5/11/2014 15:00,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4526,5/11/2014 14:57,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4527,5/11/2014 14:56,4/11/2014 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4151,5/11/2014 14:28,4/11/2014 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6432,5/11/2014 8:28,20/09/2014 10:55,5.0,399, Resource Management Errors,nan
CVE-2014-6431,5/11/2014 8:28,20/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6430,5/11/2014 8:28,20/09/2014 10:55,5.0,20, Improper Input Validation,nan
CVE-2014-6429,5/11/2014 8:28,20/09/2014 10:55,5.0,20, Improper Input Validation,nan
CVE-2014-6428,5/11/2014 8:28,20/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6427,5/11/2014 8:28,20/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6426,5/11/2014 8:28,20/09/2014 10:55,5.0,399, Resource Management Errors,nan
CVE-2014-6425,5/11/2014 8:28,20/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6424,5/11/2014 8:28,20/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6423,5/11/2014 8:28,20/09/2014 10:55,5.0,399, Resource Management Errors,nan
CVE-2014-6422,5/11/2014 8:28,20/09/2014 10:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4311,5/11/2014 3:50,4/11/2014 2:55,5.0,200, Information Exposure,nan
CVE-2012-6661,5/11/2014 3:32,3/11/2014 22:55,5.0,310, Cryptographic Issues,nan
CVE-2012-5508,5/11/2014 3:19,3/11/2014 22:55,5.0,200, Information Exposure,nan
CVE-2012-5500,5/11/2014 3:09,3/11/2014 22:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0488,4/11/2014 22:12,3/11/2014 22:55,6.8,20, Improper Input Validation,nan
CVE-2014-0489,4/11/2014 22:10,3/11/2014 22:55,7.5,20, Improper Input Validation,nan
CVE-2014-0490,4/11/2014 21:32,3/11/2014 22:55,7.5,20, Improper Input Validation,nan
CVE-2014-0204,4/11/2014 21:30,3/11/2014 23:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-8244,4/11/2014 2:42,1/11/2014 10:55,7.5,200, Information Exposure,nan
CVE-2014-8243,4/11/2014 2:38,1/11/2014 10:55,3.3,310, Cryptographic Issues,nan
CVE-2014-8509,3/11/2014 20:56,31/10/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-8578,3/11/2014 19:14,31/10/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4820,2/11/2014 0:59,27/10/2014 1:55,4.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3304,31/10/2014 19:04,30/10/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4594,31/10/2014 1:16,25/10/2014 22:55,4.3,287, Improper Authentication,nan
CVE-2014-5520,31/10/2014 1:11,26/10/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2702,31/10/2014 0:43,27/10/2014 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4586,31/10/2014 0:41,27/10/2014 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8526,30/10/2014 15:30,29/10/2014 14:55,2.1,200, Information Exposure,nan
CVE-2014-8527,30/10/2014 15:29,29/10/2014 14:55,3.6,255, Credentials Management,nan
CVE-2014-8528,30/10/2014 15:28,29/10/2014 14:55,2.1,200, Information Exposure,nan
CVE-2014-8529,30/10/2014 15:26,29/10/2014 14:55,2.1,310, Cryptographic Issues,nan
CVE-2014-8521,30/10/2014 15:23,29/10/2014 14:55,3.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8522,30/10/2014 15:18,29/10/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2014-8523,30/10/2014 15:17,29/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8524,30/10/2014 15:16,29/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-1927,29/10/2014 1:22,25/10/2014 21:55,7.5,20, Improper Input Validation,nan
CVE-2011-4953,29/10/2014 1:17,27/10/2014 1:55,6.8,20, Improper Input Validation,nan
CVE-2010-5077,29/10/2014 1:16,27/10/2014 20:55,7.8,20, Improper Input Validation,nan
CVE-2012-1111,29/10/2014 1:10,27/10/2014 20:55,4.6,200, Information Exposure,nan
CVE-2014-3520,28/10/2014 13:29,26/10/2014 20:55,6.0,310, Cryptographic Issues,nan
CVE-2014-1929,27/10/2014 19:38,25/10/2014 21:55,4.4,20, Improper Input Validation,nan
CVE-2014-1928,27/10/2014 19:24,25/10/2014 21:55,4.6,20, Improper Input Validation,nan
CVE-2013-7408,27/10/2014 15:40,26/10/2014 20:55,7.5,310, Cryptographic Issues,nan
CVE-2014-6251,27/10/2014 15:04,25/10/2014 0:55,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6230,27/10/2014 14:58,25/10/2014 0:55,4.3,20, Improper Input Validation,nan
CVE-2014-8363,25/10/2014 0:21,20/10/2014 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5169,24/10/2014 18:11,20/10/2014 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5420,24/10/2014 17:59,19/10/2014 1:55,3.5,255, Credentials Management,nan
CVE-2012-5242,24/10/2014 17:57,21/10/2014 14:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5243,24/10/2014 17:26,21/10/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-8366,24/10/2014 17:24,20/10/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8346,24/10/2014 14:24,24/10/2014 10:55,7.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5006,24/10/2014 14:12,21/10/2014 15:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-7298,24/10/2014 14:00,24/10/2014 10:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-5005,24/10/2014 13:16,21/10/2014 15:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-7281,24/10/2014 13:02,23/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8364,24/10/2014 12:58,20/10/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3978,24/10/2014 12:53,20/10/2014 16:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3830,24/10/2014 12:52,20/10/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8365,24/10/2014 12:51,20/10/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6646,24/10/2014 7:28,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6418,24/10/2014 7:28,28/09/2014 10:55,7.1,399, Resource Management Errors,nan
CVE-2014-6417,24/10/2014 7:28,28/09/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2013-5150,24/10/2014 6:57,19/09/2013 10:28,1.9,200, Information Exposure,nan
CVE-2011-2713,24/10/2014 6:19,21/10/2011 18:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1173,24/10/2014 5:37,31/03/2009 14:09,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-1172,24/10/2014 5:37,31/03/2009 14:09,10.0,20, Improper Input Validation,nan
CVE-2014-3573,23/10/2014 16:32,18/10/2014 0:55,6.5,20, Improper Input Validation,nan
CVE-2014-8325,23/10/2014 15:51,22/10/2014 14:55,7.8,399, Resource Management Errors,nan
CVE-2014-2278,23/10/2014 15:42,17/10/2014 23:55,5.1,20, Improper Input Validation,nan
CVE-2014-7968,23/10/2014 14:39,22/10/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2014-8303,23/10/2014 14:15,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8302,23/10/2014 14:14,16/10/2014 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8301,23/10/2014 14:10,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6387,23/10/2014 13:37,22/10/2014 14:55,5.0,287, Improper Authentication,nan
CVE-2014-3395,23/10/2014 13:23,30/09/2014 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-7407,23/10/2014 0:06,22/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-8329,23/10/2014 0:02,20/10/2014 15:55,10.0,287, Improper Authentication,nan
CVE-2014-8330,22/10/2014 23:35,20/10/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5423,22/10/2014 19:23,19/10/2014 1:55,1.9,255, Credentials Management,nan
CVE-2014-5422,22/10/2014 19:21,19/10/2014 1:55,9.7,255, Credentials Management,nan
CVE-2014-5421,22/10/2014 19:19,19/10/2014 1:55,6.8,255, Credentials Management,nan
CVE-2014-3381,22/10/2014 19:04,19/10/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5425,22/10/2014 18:15,19/10/2014 1:55,5.0,399, Resource Management Errors,nan
CVE-2014-3406,22/10/2014 18:08,19/10/2014 1:55,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-6312,22/10/2014 17:33,15/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8765,22/10/2014 15:08,14/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6313,22/10/2014 14:58,14/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7201,22/10/2014 14:26,10/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7200,22/10/2014 14:22,10/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8294,22/10/2014 13:44,15/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-8293,22/10/2014 13:05,15/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8295,22/10/2014 1:40,15/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3593,22/10/2014 1:15,15/10/2014 14:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-8069,21/10/2014 18:00,14/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-8304,21/10/2014 2:43,16/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2880,17/10/2014 7:12,17/04/2014 14:55,5.8,20, Improper Input Validation,nan
CVE-2014-6881,16/10/2014 7:27,2/10/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5273,16/10/2014 7:23,22/08/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5033,16/10/2014 7:22,19/08/2014 18:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-8748,16/10/2014 2:24,13/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7284,15/10/2014 19:20,13/10/2014 10:55,6.4,200, Information Exposure,nan
CVE-2014-5328,15/10/2014 15:32,12/10/2014 1:55,6.8,399, Resource Management Errors,nan
CVE-2014-4867,15/10/2014 15:22,10/10/2014 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-5327,15/10/2014 14:33,12/10/2014 1:55,6.8,399, Resource Management Errors,nan
CVE-2014-3402,15/10/2014 13:05,10/10/2014 10:55,5.0,287, Improper Authentication,nan
CVE-2014-3394,13/10/2014 23:36,10/10/2014 10:55,5.0,16, Configuration,nan
CVE-2014-3393,13/10/2014 23:23,10/10/2014 10:55,4.3,20, Improper Input Validation,nan
CVE-2014-3391,13/10/2014 22:53,10/10/2014 10:55,6.8,20, Improper Input Validation,nan
CVE-2014-3392,13/10/2014 22:46,10/10/2014 10:55,8.3,20, Improper Input Validation,nan
CVE-2014-3390,13/10/2014 18:48,10/10/2014 10:55,6.8,20, Improper Input Validation,nan
CVE-2014-3388,13/10/2014 0:36,10/10/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-3386,13/10/2014 0:34,10/10/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-3387,13/10/2014 0:29,10/10/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-3384,13/10/2014 0:27,10/10/2014 10:55,7.8,399, Resource Management Errors,nan
CVE-2014-3385,12/10/2014 16:43,10/10/2014 10:55,7.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3382,12/10/2014 16:39,10/10/2014 10:55,7.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7226,10/10/2014 19:59,10/10/2014 1:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3201,10/10/2014 19:42,10/10/2014 1:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3403,10/10/2014 17:55,10/10/2014 1:55,5.0,310, Cryptographic Issues,nan
CVE-2014-3404,10/10/2014 17:52,10/10/2014 1:55,4.3,310, Cryptographic Issues,nan
CVE-2014-3147,10/10/2014 16:22,10/10/2014 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7861,10/10/2014 5:25,5/10/2014 10:55,9.3,20, Improper Input Validation,nan
CVE-2014-6288,10/10/2014 5:24,3/10/2014 14:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-5267,10/10/2014 5:23,30/09/2014 14:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-5253,10/10/2014 5:23,25/08/2014 14:55,4.9,255, Credentials Management,nan
CVE-2014-5252,10/10/2014 5:23,25/08/2014 14:55,4.9,255, Credentials Management,nan
CVE-2014-5251,10/10/2014 5:23,25/08/2014 14:55,4.9,255, Credentials Management,nan
CVE-2014-3947,10/10/2014 5:22,3/10/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5499,10/10/2014 4:59,30/09/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2012-5497,10/10/2014 4:59,30/09/2014 14:55,5.0,200, Information Exposure,nan
CVE-2012-5488,10/10/2014 4:59,30/09/2014 14:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5485,10/10/2014 4:59,30/09/2014 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-7982,10/10/2014 1:50,8/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7984,10/10/2014 1:49,8/10/2014 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-7983,10/10/2014 1:43,8/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-7981,10/10/2014 1:32,8/10/2014 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-7296,10/10/2014 1:28,8/10/2014 19:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6631,9/10/2014 18:07,8/10/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6632,9/10/2014 16:46,8/10/2014 19:55,7.5,287, Improper Authentication,nan
CVE-2014-7980,9/10/2014 15:47,8/10/2014 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5308,9/10/2014 12:55,8/10/2014 17:55,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3187,8/10/2014 18:28,8/10/2014 10:55,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6434,8/10/2014 15:02,7/10/2014 14:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-6433,8/10/2014 15:00,7/10/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5503,8/10/2014 14:52,7/10/2014 14:55,10.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5502,8/10/2014 14:44,7/10/2014 14:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-5501,8/10/2014 14:44,7/10/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3399,8/10/2014 1:55,7/10/2014 10:55,5.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4510,8/10/2014 1:37,6/10/2014 23:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1436,7/10/2014 23:33,6/10/2014 23:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6607,7/10/2014 23:18,6/10/2014 23:55,7.5,255, Credentials Management,nan
CVE-2014-7870,7/10/2014 23:15,6/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4870,7/10/2014 23:02,7/10/2014 10:55,7.2,20, Improper Input Validation,nan
CVE-2014-4869,7/10/2014 23:02,7/10/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4868,7/10/2014 23:00,7/10/2014 10:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-7869,7/10/2014 17:33,6/10/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3642,7/10/2014 17:22,6/10/2014 14:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3521,7/10/2014 16:58,6/10/2014 14:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0994,7/10/2014 16:39,6/10/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0168,7/10/2014 15:20,6/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0140,7/10/2014 14:56,6/10/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0074,7/10/2014 14:16,6/10/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2013-6496,7/10/2014 13:52,6/10/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-2645,6/10/2014 18:50,6/10/2014 1:55,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5410,6/10/2014 18:41,3/10/2014 18:55,7.1,399, Resource Management Errors,nan
CVE-2014-3396,6/10/2014 18:30,5/10/2014 1:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3398,6/10/2014 18:25,5/10/2014 1:55,5.0,200, Information Exposure,nan
CVE-2014-3400,6/10/2014 18:23,5/10/2014 1:55,4.0,200, Information Exposure,nan
CVE-2014-6299,6/10/2014 18:02,3/10/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-6296,6/10/2014 17:46,3/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6295,6/10/2014 17:46,3/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6294,6/10/2014 17:46,3/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6293,6/10/2014 17:39,3/10/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-6289,6/10/2014 17:22,3/10/2014 14:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-6298,6/10/2014 17:09,3/10/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6297,6/10/2014 17:09,3/10/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6290,6/10/2014 16:26,3/10/2014 14:55,7.5,20, Improper Input Validation,nan
CVE-2014-6705,5/10/2014 0:15,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6704,5/10/2014 0:14,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6708,5/10/2014 0:13,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6703,5/10/2014 0:12,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6702,5/10/2014 0:09,25/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6701,5/10/2014 0:08,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6700,5/10/2014 0:07,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6699,5/10/2014 0:06,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6698,5/10/2014 0:04,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6697,5/10/2014 0:01,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6696,5/10/2014 0:00,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6695,4/10/2014 23:59,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6694,4/10/2014 23:58,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6693,4/10/2014 23:57,24/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5323,4/10/2014 23:56,24/09/2014 0:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6692,4/10/2014 23:53,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6691,4/10/2014 23:49,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6690,4/10/2014 23:48,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6689,4/10/2014 23:47,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6688,4/10/2014 23:46,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6687,4/10/2014 23:46,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-7199,4/10/2014 5:21,30/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3423,4/10/2014 4:53,7/08/2012 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3422,4/10/2014 4:53,7/08/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3860,4/10/2014 4:29,8/12/2010 20:00,5.0,200, Information Exposure,nan
CVE-2014-6686,3/10/2014 12:26,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6682,3/10/2014 12:26,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6680,3/10/2014 12:25,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6679,3/10/2014 12:23,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6674,3/10/2014 12:22,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6673,3/10/2014 12:22,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6667,3/10/2014 12:19,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2012-5495,2/10/2014 18:57,30/09/2014 14:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6269,2/10/2014 18:31,30/09/2014 14:55,5.0,189, Numeric Errors,nan
CVE-2012-5507,2/10/2014 18:25,30/09/2014 14:55,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-5959,2/10/2014 18:14,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2012-5506,2/10/2014 18:12,30/09/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2012-5505,2/10/2014 18:07,30/09/2014 14:55,5.0,200, Information Exposure,nan
CVE-2012-5496,2/10/2014 17:58,30/09/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2012-5489,2/10/2014 17:54,30/09/2014 14:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0811,2/10/2014 16:39,1/10/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5444,2/10/2014 0:19,30/09/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2014-7190,1/10/2014 19:30,30/09/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6316,1/10/2014 18:01,30/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5501,1/10/2014 17:28,30/09/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5504,1/10/2014 16:46,30/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5502,1/10/2014 16:45,30/09/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5494,1/10/2014 16:43,30/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5493,1/10/2014 16:41,30/09/2014 14:55,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5492,1/10/2014 16:35,30/09/2014 14:55,5.0,200, Information Exposure,nan
CVE-2012-5491,1/10/2014 16:30,30/09/2014 14:55,4.3,200, Information Exposure,nan
CVE-2012-5490,1/10/2014 14:59,30/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5487,1/10/2014 14:28,30/09/2014 14:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3823,1/10/2014 3:30,29/09/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2013-3068,1/10/2014 1:13,29/09/2014 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3083,1/10/2014 1:04,29/09/2014 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3092,1/10/2014 1:01,29/09/2014 22:55,8.3,287, Improper Authentication,nan
CVE-2013-3086,1/10/2014 1:00,29/09/2014 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3089,1/10/2014 0:59,29/09/2014 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3632,30/09/2014 18:39,29/09/2014 22:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3811,30/09/2014 18:26,29/09/2014 14:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-3066,30/09/2014 18:25,29/09/2014 22:55,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-3065,30/09/2014 18:25,29/09/2014 22:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5619,30/09/2014 17:47,29/09/2014 22:55,2.1,20, Improper Input Validation,nan
CVE-2014-7152,30/09/2014 17:14,26/09/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-6445,30/09/2014 15:06,26/09/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3183,29/09/2014 18:49,28/09/2014 10:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-6664,29/09/2014 17:59,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6685,29/09/2014 2:02,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6684,29/09/2014 2:01,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6683,29/09/2014 2:00,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6681,29/09/2014 1:59,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6678,29/09/2014 1:58,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6677,29/09/2014 1:57,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6676,29/09/2014 1:56,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6675,29/09/2014 1:53,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6672,29/09/2014 1:52,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6671,29/09/2014 1:51,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6669,29/09/2014 1:50,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6668,29/09/2014 1:49,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6666,29/09/2014 1:38,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6670,29/09/2014 1:36,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6665,29/09/2014 1:34,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5324,27/09/2014 2:58,26/09/2014 10:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-6663,26/09/2014 17:58,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6662,26/09/2014 16:47,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5528,26/09/2014 16:14,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6661,26/09/2014 15:55,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6660,26/09/2014 15:36,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6720,26/09/2014 15:34,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6659,26/09/2014 15:34,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6658,26/09/2014 15:24,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6657,26/09/2014 15:23,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6656,26/09/2014 15:12,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6655,26/09/2014 15:05,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6654,26/09/2014 15:03,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6653,26/09/2014 14:53,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6652,26/09/2014 14:51,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6651,26/09/2014 14:46,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6650,26/09/2014 14:45,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6726,26/09/2014 14:44,26/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6647,26/09/2014 14:35,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6648,26/09/2014 14:31,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6649,26/09/2014 14:28,23/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6638,26/09/2014 14:22,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6645,26/09/2014 14:18,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6641,26/09/2014 14:16,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6642,26/09/2014 14:15,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6643,26/09/2014 14:13,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6640,26/09/2014 14:11,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6639,26/09/2014 14:04,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6637,26/09/2014 13:36,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6023,25/09/2014 18:31,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6022,25/09/2014 18:30,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6021,25/09/2014 18:29,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5809,25/09/2014 18:26,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5987,25/09/2014 16:31,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5989,25/09/2014 16:20,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5988,25/09/2014 16:19,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5986,25/09/2014 12:58,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5985,25/09/2014 12:50,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5962,25/09/2014 1:24,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5963,25/09/2014 1:22,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5964,25/09/2014 1:21,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5965,25/09/2014 1:19,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-0484,24/09/2014 18:50,22/09/2014 15:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-5966,24/09/2014 15:32,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5967,24/09/2014 15:31,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5969,24/09/2014 15:18,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5968,24/09/2014 15:18,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4973,24/09/2014 14:53,23/09/2014 15:55,6.9,20, Improper Input Validation,nan
CVE-2014-5961,24/09/2014 2:27,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5960,24/09/2014 2:26,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5958,24/09/2014 1:45,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5957,24/09/2014 1:44,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5956,24/09/2014 1:43,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5955,24/09/2014 1:42,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5954,24/09/2014 1:41,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5953,24/09/2014 1:38,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5952,24/09/2014 1:35,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5951,24/09/2014 1:34,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5945,24/09/2014 1:34,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5950,24/09/2014 1:33,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5946,24/09/2014 1:33,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6012,24/09/2014 1:32,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6014,24/09/2014 1:31,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6013,24/09/2014 1:31,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6016,24/09/2014 1:30,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6018,24/09/2014 1:29,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6017,24/09/2014 1:29,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6020,24/09/2014 1:28,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6019,24/09/2014 1:28,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6015,24/09/2014 1:27,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6011,24/09/2014 1:26,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5947,23/09/2014 21:05,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5948,23/09/2014 21:03,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5949,23/09/2014 21:02,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6002,23/09/2014 21:01,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6003,23/09/2014 21:00,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6001,23/09/2014 20:59,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6004,23/09/2014 20:58,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6005,23/09/2014 20:57,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6007,23/09/2014 20:56,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6008,23/09/2014 20:55,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6010,23/09/2014 20:54,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6009,23/09/2014 20:54,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6000,23/09/2014 20:53,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5993,23/09/2014 20:23,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5991,23/09/2014 20:23,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5998,23/09/2014 20:13,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5997,23/09/2014 20:13,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5999,23/09/2014 20:10,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5990,23/09/2014 20:08,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5996,23/09/2014 20:06,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5995,23/09/2014 20:04,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5994,23/09/2014 20:03,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5944,23/09/2014 18:55,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5943,23/09/2014 18:54,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5942,23/09/2014 18:52,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5941,23/09/2014 18:51,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5940,23/09/2014 18:50,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5970,23/09/2014 17:49,19/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5971,23/09/2014 17:48,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5977,23/09/2014 17:47,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5978,23/09/2014 17:46,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5973,23/09/2014 17:44,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5976,23/09/2014 17:43,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5974,23/09/2014 17:43,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5975,23/09/2014 17:29,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5979,23/09/2014 17:28,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5980,23/09/2014 17:26,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5981,23/09/2014 17:25,20/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5984,23/09/2014 17:23,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5982,23/09/2014 17:18,22/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5939,23/09/2014 16:55,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5938,23/09/2014 16:54,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5937,23/09/2014 16:54,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5936,23/09/2014 16:53,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5935,23/09/2014 16:52,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5934,23/09/2014 16:51,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5933,23/09/2014 16:50,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5932,23/09/2014 16:49,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5931,23/09/2014 16:48,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5930,23/09/2014 16:47,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5929,23/09/2014 16:46,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5928,23/09/2014 16:46,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5927,23/09/2014 16:45,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5926,23/09/2014 16:41,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5925,23/09/2014 16:32,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5924,23/09/2014 16:32,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5923,23/09/2014 16:30,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5922,23/09/2014 16:29,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5921,23/09/2014 16:28,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5917,23/09/2014 16:26,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6392,23/09/2014 5:48,15/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5911,23/09/2014 1:09,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5909,23/09/2014 1:09,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5912,23/09/2014 1:08,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5914,23/09/2014 1:07,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5913,23/09/2014 1:07,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5915,23/09/2014 1:06,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5918,23/09/2014 1:05,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5916,23/09/2014 1:05,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5919,23/09/2014 1:04,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5920,23/09/2014 1:03,18/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5910,23/09/2014 1:03,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5908,23/09/2014 0:37,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5907,23/09/2014 0:27,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5906,23/09/2014 0:24,17/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5905,23/09/2014 0:23,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5904,23/09/2014 0:22,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5903,23/09/2014 0:21,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5901,23/09/2014 0:19,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5899,22/09/2014 18:58,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5902,22/09/2014 18:45,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5900,22/09/2014 18:24,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5898,22/09/2014 17:49,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5897,22/09/2014 17:48,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5896,22/09/2014 17:47,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5895,22/09/2014 17:46,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5893,22/09/2014 17:44,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5892,22/09/2014 17:43,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5891,22/09/2014 17:42,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5890,22/09/2014 17:41,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5889,22/09/2014 17:40,15/09/2014 14:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5888,22/09/2014 17:38,12/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5887,22/09/2014 17:37,12/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5886,22/09/2014 17:36,12/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5885,22/09/2014 17:36,12/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5884,22/09/2014 17:35,12/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5883,22/09/2014 17:34,12/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5882,22/09/2014 17:33,11/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5879,22/09/2014 17:31,11/09/2014 16:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5320,22/09/2014 15:29,22/09/2014 1:55,5.0,200, Information Exposure,nan
CVE-2014-7153,22/09/2014 15:17,22/09/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2942,22/09/2014 14:43,22/09/2014 10:55,7.2,255, Credentials Management,nan
CVE-2014-5321,22/09/2014 13:52,22/09/2014 1:55,5.8,310, Cryptographic Issues,nan
CVE-2014-5871,22/09/2014 1:08,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5873,22/09/2014 1:07,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5872,22/09/2014 1:07,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5874,22/09/2014 1:06,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5875,22/09/2014 1:05,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5876,22/09/2014 1:04,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5878,22/09/2014 1:03,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5877,22/09/2014 1:03,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5865,22/09/2014 0:04,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5864,22/09/2014 0:03,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5866,22/09/2014 0:02,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5867,22/09/2014 0:01,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5869,22/09/2014 0:00,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5870,21/09/2014 23:58,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5868,21/09/2014 23:57,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5859,21/09/2014 23:34,10/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5860,21/09/2014 23:33,10/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5858,21/09/2014 23:31,10/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5861,21/09/2014 23:30,10/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5857,21/09/2014 23:28,10/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5863,21/09/2014 23:23,11/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5862,21/09/2014 23:20,10/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6025,21/09/2014 22:07,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5856,21/09/2014 22:06,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5855,21/09/2014 22:05,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5854,21/09/2014 22:04,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5853,21/09/2014 22:04,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5852,21/09/2014 22:03,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5851,21/09/2014 22:01,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5850,21/09/2014 22:00,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5846,21/09/2014 2:24,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5845,21/09/2014 2:23,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5844,21/09/2014 2:13,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5843,21/09/2014 2:06,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5842,21/09/2014 2:05,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5841,21/09/2014 2:03,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5840,21/09/2014 1:59,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5847,21/09/2014 1:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5849,21/09/2014 1:53,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5826,21/09/2014 1:16,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5827,21/09/2014 1:15,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5828,21/09/2014 1:14,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5829,21/09/2014 1:13,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5830,21/09/2014 1:12,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5832,21/09/2014 1:11,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5831,21/09/2014 1:11,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5833,21/09/2014 1:10,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5834,21/09/2014 1:08,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5835,21/09/2014 1:07,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5836,21/09/2014 1:06,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5837,21/09/2014 1:05,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5838,21/09/2014 1:04,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5839,21/09/2014 1:03,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5825,21/09/2014 0:05,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5824,21/09/2014 0:02,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5823,20/09/2014 23:58,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5822,20/09/2014 23:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5821,20/09/2014 23:50,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5820,20/09/2014 23:47,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5819,20/09/2014 23:46,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5818,20/09/2014 23:45,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5815,20/09/2014 23:44,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5817,20/09/2014 23:43,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5816,20/09/2014 23:42,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5813,20/09/2014 23:40,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5812,20/09/2014 23:39,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5811,20/09/2014 23:37,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5810,20/09/2014 23:36,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5808,20/09/2014 23:35,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5807,19/09/2014 19:39,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2012-6659,19/09/2014 18:00,19/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5791,19/09/2014 1:28,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5790,19/09/2014 1:28,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5804,19/09/2014 1:27,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5803,19/09/2014 1:27,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5805,19/09/2014 1:26,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5806,18/09/2014 18:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2012-6658,18/09/2014 15:33,17/09/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5787,17/09/2014 18:58,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5793,17/09/2014 18:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5792,17/09/2014 18:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5797,17/09/2014 18:56,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5794,17/09/2014 18:56,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5800,17/09/2014 18:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5799,17/09/2014 18:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5798,17/09/2014 18:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5801,17/09/2014 18:54,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5796,17/09/2014 18:54,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5802,17/09/2014 18:53,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5789,17/09/2014 16:17,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5788,17/09/2014 16:15,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5785,17/09/2014 16:11,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5784,17/09/2014 16:07,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5783,17/09/2014 16:05,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5786,17/09/2014 16:04,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5782,17/09/2014 13:00,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5781,17/09/2014 12:59,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5780,17/09/2014 12:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5778,17/09/2014 12:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5777,17/09/2014 12:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5775,17/09/2014 12:53,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5774,17/09/2014 12:53,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5779,17/09/2014 12:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5441,16/09/2014 18:49,12/09/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5757,16/09/2014 18:25,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5756,16/09/2014 18:25,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5759,16/09/2014 18:24,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5758,16/09/2014 18:24,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5761,16/09/2014 18:23,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5760,16/09/2014 18:23,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5764,16/09/2014 18:22,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5763,16/09/2014 18:22,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5762,16/09/2014 18:22,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5767,16/09/2014 18:21,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5766,16/09/2014 18:21,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5765,16/09/2014 18:21,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5769,16/09/2014 18:20,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5768,16/09/2014 18:20,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5772,16/09/2014 18:19,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5771,16/09/2014 18:19,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5773,16/09/2014 18:17,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-0993,16/09/2014 15:04,15/09/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5755,16/09/2014 14:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5743,16/09/2014 14:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5742,16/09/2014 14:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5753,16/09/2014 14:51,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5744,16/09/2014 14:51,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5754,16/09/2014 14:50,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5752,16/09/2014 14:50,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5750,16/09/2014 14:19,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5751,16/09/2014 14:18,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5749,16/09/2014 13:50,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5746,16/09/2014 13:49,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5745,16/09/2014 13:49,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5748,16/09/2014 13:48,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5747,16/09/2014 13:48,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-2375,16/09/2014 13:47,15/09/2014 14:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2376,16/09/2014 13:44,15/09/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2377,16/09/2014 13:31,15/09/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-5741,16/09/2014 1:25,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5739,16/09/2014 1:24,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5738,16/09/2014 1:24,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5770,16/09/2014 1:22,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5740,16/09/2014 1:21,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5737,15/09/2014 18:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5407,15/09/2014 18:12,15/09/2014 14:55,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5736,15/09/2014 17:48,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-3617,15/09/2014 17:47,15/09/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2284,13/09/2014 5:25,24/03/2014 16:43,5.0,20, Improper Input Validation,nan
CVE-2014-6043,12/09/2014 15:03,11/09/2014 15:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-5584,12/09/2014 3:05,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5605,12/09/2014 3:04,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5734,12/09/2014 3:03,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5733,12/09/2014 3:02,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5731,12/09/2014 3:01,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5730,12/09/2014 2:59,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5729,12/09/2014 2:58,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5728,12/09/2014 2:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5727,12/09/2014 2:57,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5735,12/09/2014 2:56,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5726,12/09/2014 2:55,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5725,12/09/2014 2:54,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5724,12/09/2014 2:53,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5723,12/09/2014 2:52,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5722,12/09/2014 2:51,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5721,12/09/2014 2:50,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5720,12/09/2014 2:49,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5719,12/09/2014 2:47,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5717,12/09/2014 2:45,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5716,12/09/2014 2:44,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5715,12/09/2014 2:44,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5714,12/09/2014 2:43,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5713,12/09/2014 2:42,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5712,12/09/2014 2:39,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5711,12/09/2014 2:38,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5710,12/09/2014 2:37,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5709,12/09/2014 2:26,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5708,12/09/2014 2:25,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5707,12/09/2014 2:24,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5706,12/09/2014 2:23,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5705,12/09/2014 2:22,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5703,12/09/2014 2:20,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5702,12/09/2014 2:19,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5701,12/09/2014 2:18,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5700,12/09/2014 2:18,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5699,12/09/2014 2:17,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5698,12/09/2014 2:14,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5697,12/09/2014 2:13,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5696,12/09/2014 2:12,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5695,12/09/2014 2:11,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5694,12/09/2014 2:10,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5693,12/09/2014 2:09,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5692,12/09/2014 2:08,9/09/2014 10:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6024,12/09/2014 2:06,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5691,12/09/2014 2:02,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5690,12/09/2014 2:00,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5689,12/09/2014 1:59,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5688,12/09/2014 1:57,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5686,12/09/2014 1:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6239,11/09/2014 19:48,11/09/2014 14:16,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5608,11/09/2014 17:09,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5611,11/09/2014 17:08,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5609,11/09/2014 17:08,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5612,11/09/2014 17:07,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-6240,11/09/2014 17:06,11/09/2014 14:16,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5613,11/09/2014 17:00,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5614,11/09/2014 16:59,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5610,11/09/2014 15:51,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5680,11/09/2014 15:17,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5615,11/09/2014 15:17,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5685,11/09/2014 15:16,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5687,11/09/2014 14:15,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5681,11/09/2014 14:06,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5682,11/09/2014 13:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5684,11/09/2014 13:54,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5683,11/09/2014 13:52,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5676,11/09/2014 13:24,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5679,11/09/2014 13:18,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5678,11/09/2014 13:12,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5677,11/09/2014 13:11,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5617,11/09/2014 1:58,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5616,11/09/2014 1:58,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5620,11/09/2014 1:57,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5618,11/09/2014 1:57,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5623,11/09/2014 1:56,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5622,11/09/2014 1:56,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5621,11/09/2014 1:56,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5624,11/09/2014 1:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5675,11/09/2014 1:53,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5674,11/09/2014 1:45,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5673,11/09/2014 1:43,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5672,11/09/2014 1:42,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5671,11/09/2014 1:37,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5670,11/09/2014 1:35,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5669,11/09/2014 1:33,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5668,11/09/2014 1:32,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5666,11/09/2014 1:31,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5664,11/09/2014 1:30,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5663,11/09/2014 1:28,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5662,11/09/2014 1:27,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5661,11/09/2014 1:26,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5660,11/09/2014 1:23,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5659,11/09/2014 1:22,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5658,11/09/2014 1:22,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5657,11/09/2014 1:21,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5656,11/09/2014 1:20,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5655,11/09/2014 1:16,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5654,11/09/2014 1:14,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5653,11/09/2014 1:13,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5652,11/09/2014 1:12,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5651,11/09/2014 1:08,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5650,11/09/2014 1:07,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5649,11/09/2014 1:00,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5647,11/09/2014 0:58,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5645,11/09/2014 0:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5644,11/09/2014 0:52,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5643,11/09/2014 0:51,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5642,11/09/2014 0:50,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5641,11/09/2014 0:49,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5639,11/09/2014 0:47,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5638,10/09/2014 23:39,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5637,10/09/2014 23:38,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5636,10/09/2014 23:38,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5635,10/09/2014 23:34,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5634,10/09/2014 23:34,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5633,10/09/2014 23:32,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5632,10/09/2014 23:30,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5631,10/09/2014 23:29,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5630,10/09/2014 23:29,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5629,10/09/2014 23:27,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5628,10/09/2014 23:22,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5627,10/09/2014 23:21,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5626,10/09/2014 23:19,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5625,10/09/2014 23:17,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-4864,10/09/2014 17:45,10/09/2014 10:55,3.3,255, Credentials Management,nan
CVE-2014-5313,10/09/2014 17:43,10/09/2014 10:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5604,10/09/2014 2:14,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5603,10/09/2014 2:07,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5602,10/09/2014 2:05,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5601,10/09/2014 2:04,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5600,10/09/2014 2:02,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5599,10/09/2014 2:01,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5598,10/09/2014 2:01,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5597,10/09/2014 1:59,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5596,10/09/2014 1:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5595,10/09/2014 1:47,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5594,10/09/2014 1:36,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5593,10/09/2014 1:33,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5592,10/09/2014 1:22,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5591,10/09/2014 1:13,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5589,10/09/2014 0:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5586,10/09/2014 0:23,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5583,9/09/2014 21:03,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5582,9/09/2014 20:37,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5580,9/09/2014 20:25,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5581,9/09/2014 20:19,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5574,9/09/2014 19:18,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5576,9/09/2014 19:13,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5572,9/09/2014 19:03,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5573,9/09/2014 19:01,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5571,9/09/2014 18:56,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5562,9/09/2014 18:51,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5570,9/09/2014 18:50,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5569,9/09/2014 18:50,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5568,9/09/2014 18:46,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5567,9/09/2014 18:41,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5566,9/09/2014 18:39,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5565,9/09/2014 18:33,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5564,9/09/2014 18:14,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5560,9/09/2014 18:10,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5561,9/09/2014 18:09,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5534,9/09/2014 18:07,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5559,9/09/2014 18:04,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5558,9/09/2014 18:02,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5557,9/09/2014 17:57,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5553,9/09/2014 17:52,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5556,9/09/2014 17:48,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5555,9/09/2014 17:48,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5537,9/09/2014 17:47,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5554,9/09/2014 17:44,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5547,9/09/2014 17:40,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5546,9/09/2014 17:37,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5543,9/09/2014 17:37,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5549,9/09/2014 17:36,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5548,9/09/2014 17:36,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5552,9/09/2014 17:35,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5551,9/09/2014 17:35,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5550,9/09/2014 17:35,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5544,9/09/2014 16:56,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5542,9/09/2014 16:51,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5541,9/09/2014 16:44,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5540,9/09/2014 16:43,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5526,9/09/2014 16:40,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5539,9/09/2014 16:39,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5531,9/09/2014 16:39,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5538,9/09/2014 16:31,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5536,9/09/2014 16:26,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5535,9/09/2014 15:30,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5532,9/09/2014 15:20,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5529,9/09/2014 15:04,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5527,9/09/2014 14:56,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5525,9/09/2014 14:55,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-5524,9/09/2014 14:47,9/09/2014 1:55,5.4,310, Cryptographic Issues,nan
CVE-2014-3900,8/09/2014 17:54,17/08/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3905,8/09/2014 17:51,17/08/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3904,8/09/2014 17:51,17/08/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5260,8/09/2014 17:49,16/08/2014 4:39,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-4862,8/09/2014 17:23,5/09/2014 17:55,5.0,200, Information Exposure,nan
CVE-2014-4863,8/09/2014 17:11,5/09/2014 17:55,5.0,200, Information Exposure,nan
CVE-2014-5504,8/09/2014 17:00,4/09/2014 17:55,7.5,255, Credentials Management,nan
CVE-2014-5508,8/09/2014 16:27,5/09/2014 14:55,3.5,189, Numeric Errors,nan
CVE-2014-6029,8/09/2014 16:22,5/09/2014 14:55,4.9,20, Improper Input Validation,nan
CVE-2014-6028,8/09/2014 16:20,5/09/2014 14:55,4.0,20, Improper Input Validation,nan
CVE-2014-2379,8/09/2014 15:09,5/09/2014 17:55,5.4,310, Cryptographic Issues,nan
CVE-2014-2378,8/09/2014 15:07,5/09/2014 17:55,7.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5269,8/09/2014 14:47,4/09/2014 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-5036,8/09/2014 14:32,5/09/2014 14:55,1.9,200, Information Exposure,nan
CVE-2014-2957,5/09/2014 16:12,4/09/2014 17:55,6.8,20, Improper Input Validation,nan
CVE-2013-6398,4/09/2014 5:25,15/01/2014 16:08,2.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-4736,4/09/2014 5:23,10/02/2014 18:15,7.8,189, Numeric Errors,nan
CVE-2014-5465,3/09/2014 20:15,3/09/2014 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5521,3/09/2014 14:15,2/09/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0485,3/09/2014 13:33,2/09/2014 14:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5076,2/09/2014 19:13,2/09/2014 10:55,4.3,200, Information Exposure,nan
CVE-2014-3862,2/09/2014 19:04,2/09/2014 10:55,4.3,200, Information Exposure,nan
CVE-2014-3861,2/09/2014 19:02,2/09/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6124,2/09/2014 18:51,31/08/2014 10:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-2598,2/09/2014 18:44,31/08/2014 10:55,6.6,20, Improper Input Validation,nan
CVE-2013-2597,2/09/2014 18:43,31/08/2014 10:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2595,2/09/2014 18:41,31/08/2014 10:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3908,2/09/2014 18:04,30/08/2014 9:55,5.8,310, Cryptographic Issues,nan
CVE-2010-5110,2/09/2014 16:54,29/08/2014 16:55,4.3,20, Improper Input Validation,nan
CVE-2014-5398,28/08/2014 15:22,28/08/2014 1:55,2.1,20, Improper Input Validation,nan
CVE-2014-0762,28/08/2014 14:03,28/08/2014 1:55,4.7,20, Improper Input Validation,nan
CVE-2014-0761,28/08/2014 14:01,28/08/2014 1:55,7.1,20, Improper Input Validation,nan
CVE-2014-4325,28/08/2014 1:35,25/08/2014 1:55,7.2,287, Improper Authentication,nan
CVE-2014-3907,27/08/2014 16:27,26/08/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5115,27/08/2014 5:37,29/07/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5457,26/08/2014 17:21,25/08/2014 16:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-5453,26/08/2014 15:16,25/08/2014 16:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-4197,22/08/2014 17:12,22/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5303,22/08/2014 14:18,21/08/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5302,22/08/2014 13:29,21/08/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5142,22/08/2014 13:25,21/08/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5384,21/08/2014 23:16,21/08/2014 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5210,21/08/2014 16:57,21/08/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5159,21/08/2014 16:52,21/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5158,21/08/2014 16:49,21/08/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5382,21/08/2014 14:51,20/08/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4929,21/08/2014 14:44,20/08/2014 14:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5350,20/08/2014 17:55,19/08/2014 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5349,20/08/2014 17:36,19/08/2014 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5348,20/08/2014 17:26,19/08/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5346,20/08/2014 17:18,19/08/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5345,20/08/2014 17:17,19/08/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5344,20/08/2014 17:07,19/08/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3906,19/08/2014 17:13,19/08/2014 11:16,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7144,18/08/2014 14:51,16/08/2014 4:39,4.3,310, Cryptographic Issues,nan
CVE-2014-3902,15/08/2014 20:38,15/08/2014 11:15,5.8,310, Cryptographic Issues,nan
CVE-2014-5248,14/08/2014 18:55,14/08/2014 18:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5685,14/08/2014 18:13,14/08/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1980,14/08/2014 14:41,14/08/2014 5:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7395,14/08/2014 3:40,12/08/2014 16:55,4.9,255, Credentials Management,nan
CVE-2014-5199,13/08/2014 18:40,12/08/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5197,13/08/2014 18:29,12/08/2014 20:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5198,13/08/2014 18:28,12/08/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5202,13/08/2014 17:38,12/08/2014 23:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2357,12/08/2014 15:34,11/08/2014 22:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3930,11/08/2014 18:12,4/04/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0806,11/08/2014 15:04,22/01/2014 21:55,4.3,200, Information Exposure,nan
CVE-2010-4755,8/08/2014 21:01,2/03/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2014-3914,7/08/2014 17:44,7/08/2014 11:13,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3855,7/08/2014 16:26,7/08/2014 11:13,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3854,7/08/2014 16:24,7/08/2014 11:13,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3853,7/08/2014 16:23,7/08/2014 11:13,5.0,200, Information Exposure,nan
CVE-2014-3852,7/08/2014 16:08,7/08/2014 11:13,5.0,200, Information Exposure,nan
CVE-2014-3851,7/08/2014 15:57,7/08/2014 11:13,2.1,200, Information Exposure,nan
CVE-2014-3800,7/08/2014 15:49,7/08/2014 11:13,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3459,7/08/2014 15:18,7/08/2014 11:13,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-5194,7/08/2014 14:30,7/08/2014 11:13,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3774,7/08/2014 14:07,7/08/2014 11:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3773,7/08/2014 14:07,7/08/2014 11:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3772,7/08/2014 14:03,7/08/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3771,7/08/2014 13:57,7/08/2014 11:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7394,7/08/2014 13:37,7/08/2014 11:13,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6771,7/08/2014 13:34,7/08/2014 11:13,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5183,7/08/2014 13:30,6/08/2014 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5187,7/08/2014 13:25,6/08/2014 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5186,7/08/2014 13:22,6/08/2014 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5185,7/08/2014 13:14,6/08/2014 19:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5184,7/08/2014 13:06,6/08/2014 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5182,7/08/2014 12:46,6/08/2014 19:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5181,7/08/2014 12:42,6/08/2014 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5180,7/08/2014 12:30,6/08/2014 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5090,7/08/2014 12:13,6/08/2014 18:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5089,7/08/2014 12:12,6/08/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7318,6/08/2014 13:04,29/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0539,5/08/2014 14:17,9/07/2014 5:04,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0537,5/08/2014 14:16,9/07/2014 5:04,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7259,4/08/2014 21:42,29/04/2014 14:38,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-1804,4/08/2014 21:41,29/04/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3045,4/08/2014 19:05,19/07/2014 5:09,2.1,200, Information Exposure,nan
CVE-2014-1987,4/08/2014 19:00,20/07/2014 11:12,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-1993,4/08/2014 18:38,20/07/2014 11:12,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1996,4/08/2014 16:54,20/07/2014 11:12,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1999,4/08/2014 16:27,20/07/2014 11:12,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3159,4/08/2014 16:26,20/07/2014 11:12,6.4,20, Improper Input Validation,nan
CVE-2014-3894,4/08/2014 16:06,20/07/2014 11:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5101,4/08/2014 15:29,25/07/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2356,4/08/2014 15:19,30/07/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-5758,4/08/2014 14:13,3/08/2014 18:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-5757,4/08/2014 14:10,3/08/2014 18:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5756,4/08/2014 14:08,3/08/2014 18:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5160,1/08/2014 17:47,1/08/2014 11:13,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6651,1/08/2014 14:07,31/07/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4699,1/08/2014 5:10,9/07/2014 11:07,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-3817,1/08/2014 5:09,11/07/2014 20:55,7.8,20, Improper Input Validation,nan
CVE-2014-3897,30/07/2014 19:03,29/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3895,30/07/2014 18:48,29/07/2014 20:55,6.4,287, Improper Authentication,nan
CVE-2014-3553,29/07/2014 19:13,29/07/2014 11:10,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3552,29/07/2014 19:10,29/07/2014 11:10,6.0,287, Improper Authentication,nan
CVE-2014-3546,29/07/2014 18:33,29/07/2014 11:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3545,29/07/2014 18:32,29/07/2014 11:10,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3543,29/07/2014 18:06,29/07/2014 11:10,4.3,200, Information Exposure,nan
CVE-2014-3542,29/07/2014 16:51,29/07/2014 11:10,4.3,200, Information Exposure,nan
CVE-2014-3541,29/07/2014 16:39,29/07/2014 11:10,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2974,29/07/2014 14:28,28/07/2014 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-5113,29/07/2014 14:18,28/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5112,29/07/2014 14:09,28/07/2014 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-5111,29/07/2014 13:51,28/07/2014 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-5105,29/07/2014 13:05,28/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5104,29/07/2014 13:04,28/07/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4725,28/07/2014 19:18,27/07/2014 18:55,7.5,287, Improper Authentication,nan
CVE-2014-4857,28/07/2014 19:05,26/07/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2966,28/07/2014 19:00,26/07/2014 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4927,25/07/2014 15:52,24/07/2014 14:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4685,25/07/2014 14:49,24/07/2014 14:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-4684,25/07/2014 14:42,24/07/2014 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4683,25/07/2014 14:37,24/07/2014 14:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-4682,25/07/2014 14:27,24/07/2014 14:55,5.0,200, Information Exposure,nan
CVE-2014-2971,25/07/2014 14:00,24/07/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2968,24/07/2014 18:49,24/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2369,24/07/2014 18:29,24/07/2014 14:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4672,24/07/2014 5:01,3/07/2014 17:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3815,24/07/2014 5:00,11/07/2014 20:55,7.8,20, Improper Input Validation,nan
CVE-2014-3433,24/07/2014 5:00,27/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3432,24/07/2014 5:00,27/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1649,24/07/2014 4:58,16/05/2014 11:12,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-2023,24/07/2014 4:49,15/08/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2022,24/07/2014 4:49,17/08/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1994,23/07/2014 18:55,20/07/2014 11:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3043,23/07/2014 18:49,19/07/2014 5:09,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2368,23/07/2014 18:48,19/07/2014 5:09,5.0,200, Information Exposure,nan
CVE-2014-2367,23/07/2014 18:47,19/07/2014 5:09,4.3,200, Information Exposure,nan
CVE-2014-2366,23/07/2014 18:46,19/07/2014 5:09,4.0,200, Information Exposure,nan
CVE-2014-4503,23/07/2014 18:25,23/07/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2014-4501,23/07/2014 18:07,23/07/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1995,23/07/2014 17:40,20/07/2014 11:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2682,23/07/2014 17:27,19/07/2014 19:55,5.0,20, Improper Input Validation,nan
CVE-2014-3939,23/07/2014 17:19,23/07/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3938,23/07/2014 17:14,23/07/2014 14:55,9.3,189, Numeric Errors,nan
CVE-2014-3518,23/07/2014 13:14,22/07/2014 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1992,22/07/2014 22:59,20/07/2014 11:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3884,22/07/2014 22:55,20/07/2014 11:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3886,22/07/2014 22:54,20/07/2014 11:12,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3885,22/07/2014 22:54,20/07/2014 11:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5022,22/07/2014 19:21,22/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5021,22/07/2014 19:10,22/07/2014 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4017,22/07/2014 19:05,10/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-5020,22/07/2014 19:03,22/07/2014 14:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-5019,22/07/2014 19:00,22/07/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-5017,22/07/2014 14:01,21/07/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-5016,22/07/2014 13:58,21/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3161,21/07/2014 23:51,20/07/2014 11:12,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6445,18/07/2014 18:50,30/04/2014 14:22,5.0,310, Cryptographic Issues,nan
CVE-2014-0470,18/07/2014 18:40,30/04/2014 14:22,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-1955,18/07/2014 18:38,30/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1957,18/07/2014 18:32,30/04/2014 14:22,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7374,18/07/2014 18:15,1/05/2014 17:28,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-6648,18/07/2014 17:49,22/05/2014 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-4155,18/07/2014 5:24,19/06/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3821,18/07/2014 5:23,11/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3819,18/07/2014 5:23,11/07/2014 20:55,7.8,20, Improper Input Validation,nan
CVE-2014-3816,18/07/2014 5:23,11/07/2014 20:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2842,18/07/2014 5:23,15/04/2014 14:55,7.8,399, Resource Management Errors,nan
CVE-2013-6221,18/07/2014 5:18,18/06/2014 16:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4907,17/07/2014 5:07,11/07/2014 11:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4715,17/07/2014 5:07,3/07/2014 4:22,5.0,189, Numeric Errors,nan
CVE-2014-4505,17/07/2014 5:07,20/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4162,17/07/2014 5:07,16/06/2014 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3924,17/07/2014 5:07,30/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3822,17/07/2014 5:07,11/07/2014 20:55,5.4,20, Improper Input Validation,nan
CVE-2014-2965,17/07/2014 5:06,3/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2039,17/07/2014 5:05,28/02/2014 6:18,4.9,20, Improper Input Validation,nan
CVE-2013-7339,17/07/2014 5:03,24/03/2014 16:40,4.7,399, Resource Management Errors,nan
CVE-2013-6378,17/07/2014 5:01,27/11/2013 4:43,4.4,189, Numeric Errors,nan
CVE-2014-2938,16/07/2014 18:54,22/05/2014 20:55,8.3,287, Improper Authentication,nan
CVE-2014-4154,16/07/2014 17:49,16/07/2014 14:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4018,16/07/2014 17:44,16/07/2014 14:19,7.8,255, Credentials Management,nan
CVE-2014-3777,16/07/2014 17:28,16/07/2014 14:19,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4663,15/07/2014 19:25,15/07/2014 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4031,15/07/2014 19:17,15/07/2014 14:55,4.0,200, Information Exposure,nan
CVE-2014-1474,15/07/2014 16:37,15/07/2014 14:55,5.0,189, Numeric Errors,nan
CVE-2014-2955,15/07/2014 16:24,14/07/2014 21:55,10.0,287, Improper Authentication,nan
CVE-2014-4946,14/07/2014 18:34,14/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4937,14/07/2014 18:29,11/07/2014 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4939,14/07/2014 18:27,11/07/2014 20:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4945,14/07/2014 18:25,14/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4940,14/07/2014 18:25,11/07/2014 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4941,14/07/2014 18:20,11/07/2014 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4944,14/07/2014 18:15,14/07/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4942,14/07/2014 18:12,11/07/2014 20:55,5.0,200, Information Exposure,nan
CVE-2014-4013,14/07/2014 18:08,14/07/2014 14:55,4.9,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4938,14/07/2014 17:42,11/07/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6117,14/07/2014 13:33,11/07/2014 19:55,7.5,287, Improper Authentication,nan
CVE-2014-4527,11/07/2014 17:59,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4532,11/07/2014 17:58,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3889,11/07/2014 17:58,2/07/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-4531,11/07/2014 17:57,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3890,11/07/2014 17:57,2/07/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-4524,11/07/2014 17:55,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4522,11/07/2014 17:55,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4526,11/07/2014 17:54,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4574,11/07/2014 17:53,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4529,11/07/2014 17:53,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4576,11/07/2014 17:37,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4537,11/07/2014 17:37,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4541,11/07/2014 17:35,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4540,11/07/2014 17:35,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4597,11/07/2014 17:33,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4542,11/07/2014 17:33,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4547,11/07/2014 17:31,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4591,11/07/2014 17:28,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3992,11/07/2014 17:05,11/07/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3991,11/07/2014 17:05,11/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3499,11/07/2014 16:48,11/07/2014 14:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-3485,11/07/2014 15:31,11/07/2014 14:55,4.0,200, Information Exposure,nan
CVE-2014-0174,11/07/2014 15:23,11/07/2014 14:55,4.3,200, Information Exposure,nan
CVE-2014-4908,11/07/2014 14:49,11/07/2014 11:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4856,11/07/2014 0:49,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4855,11/07/2014 0:42,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4853,11/07/2014 0:10,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4852,11/07/2014 0:08,10/07/2014 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4579,10/07/2014 18:42,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4588,10/07/2014 18:11,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4593,10/07/2014 17:54,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4601,10/07/2014 17:53,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4850,10/07/2014 17:51,10/07/2014 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4849,10/07/2014 17:42,10/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2963,10/07/2014 16:40,10/07/2014 11:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4552,10/07/2014 15:39,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4551,10/07/2014 15:39,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4572,10/07/2014 15:12,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4573,10/07/2014 15:08,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4557,10/07/2014 14:52,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4581,10/07/2014 14:51,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4560,10/07/2014 14:51,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4568,10/07/2014 14:50,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4566,10/07/2014 14:50,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4742,10/07/2014 14:05,9/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4741,10/07/2014 13:49,9/07/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4580,9/07/2014 19:00,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4578,9/07/2014 19:00,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4590,9/07/2014 18:59,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4582,9/07/2014 18:55,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4595,9/07/2014 18:53,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4600,9/07/2014 18:51,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4599,9/07/2014 18:51,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4604,9/07/2014 18:49,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4605,9/07/2014 18:48,2/07/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4606,9/07/2014 18:45,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4555,9/07/2014 18:42,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4546,9/07/2014 18:42,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4534,9/07/2014 18:39,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4614,9/07/2014 18:37,2/07/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3891,9/07/2014 18:17,9/07/2014 11:07,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4565,9/07/2014 16:04,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4563,9/07/2014 1:45,2/07/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4195,9/07/2014 1:29,3/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0602,9/07/2014 1:18,7/07/2014 11:01,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2956,8/07/2014 18:49,8/07/2014 11:06,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-4723,8/07/2014 15:27,7/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4646,8/07/2014 15:12,7/07/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0184,8/07/2014 14:16,7/07/2014 14:55,4.9,255, Credentials Management,nan
CVE-2014-0180,8/07/2014 14:12,7/07/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2014-0176,8/07/2014 13:39,7/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2969,7/07/2014 19:14,7/07/2014 11:01,8.3,255, Credentials Management,nan
CVE-2014-2967,7/07/2014 19:10,7/07/2014 11:01,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-4168,7/07/2014 14:49,3/07/2014 17:55,5.0,287, Improper Authentication,nan
CVE-2014-4719,7/07/2014 14:15,3/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4718,7/07/2014 14:10,3/07/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4717,7/07/2014 14:06,3/07/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-4716,7/07/2014 13:57,3/07/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3492,2/07/2014 17:50,1/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3491,2/07/2014 17:45,1/07/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4602,2/07/2014 17:40,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4585,2/07/2014 17:12,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4584,2/07/2014 17:09,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4583,2/07/2014 16:59,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4575,2/07/2014 16:54,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4564,2/07/2014 16:23,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4556,2/07/2014 16:20,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4538,2/07/2014 15:18,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4533,2/07/2014 15:04,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4528,2/07/2014 14:59,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4521,2/07/2014 13:59,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4518,2/07/2014 13:32,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4516,2/07/2014 13:24,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4513,1/07/2014 18:34,1/07/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2934,1/07/2014 17:57,8/05/2014 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2933,1/07/2014 17:56,8/05/2014 10:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7061,30/06/2014 22:12,2/05/2014 14:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-4649,30/06/2014 22:10,28/06/2014 15:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7060,30/06/2014 22:03,2/05/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-7003,30/06/2014 18:33,5/05/2014 17:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0164,30/06/2014 18:32,5/05/2014 17:06,2.1,310, Cryptographic Issues,nan
CVE-2010-5299,30/06/2014 18:07,23/05/2014 0:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3881,30/06/2014 14:57,28/06/2014 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2006,30/06/2014 14:39,28/06/2014 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3011,30/06/2014 14:06,27/06/2014 23:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7138,27/06/2014 17:08,9/01/2014 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3842,27/06/2014 16:56,22/05/2014 15:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3841,27/06/2014 16:56,22/05/2014 15:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3843,27/06/2014 16:53,22/05/2014 15:13,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3844,27/06/2014 16:52,22/05/2014 15:13,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3845,27/06/2014 16:51,22/05/2014 15:13,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2948,27/06/2014 16:50,22/05/2014 20:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3788,27/06/2014 16:48,22/05/2014 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1668,27/06/2014 16:35,23/05/2014 14:55,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6647,27/06/2014 13:24,26/05/2014 22:55,4.9,20, Improper Input Validation,nan
CVE-2014-0202,26/06/2014 15:46,30/05/2014 14:55,2.1,255, Credentials Management,nan
CVE-2013-6788,26/06/2014 15:38,30/05/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2014-4643,26/06/2014 14:30,25/06/2014 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4030,26/06/2014 14:25,25/06/2014 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3814,26/06/2014 4:50,13/06/2014 14:55,7.8,20, Improper Input Validation,nan
CVE-2014-2959,26/06/2014 4:50,2/06/2014 19:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2707,26/06/2014 4:49,17/04/2014 14:55,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2610,26/06/2014 4:49,19/06/2014 10:50,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2609,26/06/2014 4:49,19/06/2014 10:50,10.0,287, Improper Authentication,nan
CVE-2011-2514,25/06/2014 18:10,14/05/2014 0:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2513,25/06/2014 18:09,14/05/2014 0:55,5.0,200, Information Exposure,nan
CVE-2014-3846,25/06/2014 18:00,22/05/2014 15:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3923,25/06/2014 17:59,30/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4599,25/06/2014 16:59,9/06/2014 19:55,4.3,399, Resource Management Errors,nan
CVE-2014-3882,25/06/2014 14:35,25/06/2014 11:19,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3921,24/06/2014 17:21,30/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5572,24/06/2014 17:07,30/05/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-3780,24/06/2014 16:50,30/05/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2012-5560,24/06/2014 16:27,30/05/2014 14:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3227,24/06/2014 15:55,30/05/2014 18:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2051,24/06/2014 15:38,5/06/2014 15:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4595,24/06/2014 15:37,9/06/2014 19:55,4.3,310, Cryptographic Issues,nan
CVE-2013-2562,24/06/2014 15:34,9/06/2014 19:55,2.1,255, Credentials Management,nan
CVE-2013-2563,24/06/2014 15:29,9/06/2014 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2564,24/06/2014 15:20,9/06/2014 19:55,5.0,399, Resource Management Errors,nan
CVE-2013-4597,24/06/2014 15:10,9/06/2014 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6223,24/06/2014 15:03,9/06/2014 19:55,2.1,255, Credentials Management,nan
CVE-2013-1973,24/06/2014 15:01,9/06/2014 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-5023,24/06/2014 14:51,10/06/2014 14:55,4.7,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3216,24/06/2014 14:42,10/06/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2014-3873,24/06/2014 14:41,10/06/2014 14:55,2.1,20, Improper Input Validation,nan
CVE-2014-3883,23/06/2014 17:19,21/06/2014 15:55,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-4507,23/06/2014 15:05,20/06/2014 14:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4821,23/06/2014 14:08,20/06/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4309,21/06/2014 4:42,18/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4160,21/06/2014 4:41,13/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4044,21/06/2014 4:41,17/06/2014 14:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3880,21/06/2014 4:41,10/06/2014 14:55,4.9,20, Improper Input Validation,nan
CVE-2014-3790,21/06/2014 4:41,1/06/2014 4:29,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3460,21/06/2014 4:41,20/05/2014 11:13,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3000,21/06/2014 4:41,2/05/2014 14:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0599,21/06/2014 4:38,18/06/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0510,21/06/2014 4:38,27/03/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0167,21/06/2014 4:38,15/04/2014 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0134,21/06/2014 4:38,8/05/2014 14:29,3.5,200, Information Exposure,nan
CVE-2013-6491,21/06/2014 4:36,2/02/2014 0:55,4.3,310, Cryptographic Issues,nan
CVE-2013-4469,21/06/2014 4:32,2/11/2013 18:55,1.9,399, Resource Management Errors,nan
CVE-2013-4463,21/06/2014 4:32,6/02/2014 5:44,2.1,399, Resource Management Errors,nan
CVE-2012-2027,21/06/2014 4:17,9/05/2012 4:36,9.3,399, Resource Management Errors,nan
CVE-2012-2052,20/06/2014 18:04,19/06/2014 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1068,20/06/2014 17:57,19/06/2014 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-4335,20/06/2014 17:54,19/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4334,20/06/2014 17:51,19/06/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3778,20/06/2014 14:44,19/06/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2001,19/06/2014 19:06,19/06/2014 10:50,5.8,310, Cryptographic Issues,nan
CVE-2014-4153,19/06/2014 18:59,18/06/2014 19:55,7.8,200, Information Exposure,nan
CVE-2014-4152,19/06/2014 18:57,18/06/2014 19:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4151,19/06/2014 18:55,18/06/2014 19:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-4174,19/06/2014 17:16,18/06/2014 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4192,19/06/2014 16:30,17/06/2014 15:55,5.0,310, Cryptographic Issues,nan
CVE-2014-4191,19/06/2014 16:26,17/06/2014 15:55,5.0,310, Cryptographic Issues,nan
CVE-2013-6078,19/06/2014 16:10,17/06/2014 15:55,5.8,310, Cryptographic Issues,nan
CVE-2014-2000,19/06/2014 15:28,18/06/2014 16:55,2.6,200, Information Exposure,nan
CVE-2014-4308,19/06/2014 14:21,18/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4307,19/06/2014 14:18,18/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4306,19/06/2014 14:17,18/06/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-4305,19/06/2014 14:13,18/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4302,18/06/2014 18:53,18/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3876,18/06/2014 18:24,18/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4190,18/06/2014 17:06,17/06/2014 14:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-4032,18/06/2014 4:33,11/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4012,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4011,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4010,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4009,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4008,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4007,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4006,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4005,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-4004,18/06/2014 4:33,9/06/2014 20:55,5.0,255, Credentials Management,nan
CVE-2014-3962,18/06/2014 4:33,4/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3840,18/06/2014 4:32,27/05/2014 13:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2946,18/06/2014 4:32,2/06/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2752,18/06/2014 4:32,10/04/2014 20:55,7.5,255, Credentials Management,nan
CVE-2014-2751,18/06/2014 4:32,10/04/2014 20:55,7.5,255, Credentials Management,nan
CVE-2014-2504,18/06/2014 4:32,26/05/2014 0:25,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2503,18/06/2014 4:32,6/06/2014 0:55,7.5,20, Improper Input Validation,nan
CVE-2014-2502,18/06/2014 4:32,4/06/2014 4:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5355,18/06/2014 4:25,9/12/2013 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5354,18/06/2014 4:25,9/12/2013 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-4166,17/06/2014 14:58,16/06/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4163,17/06/2014 14:39,16/06/2014 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3995,17/06/2014 14:22,16/06/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5111,17/06/2014 13:00,16/06/2014 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2004,16/06/2014 17:10,16/06/2014 14:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2003,16/06/2014 16:43,16/06/2014 14:55,7.6,20, Improper Input Validation,nan
CVE-2014-2002,16/06/2014 15:56,14/06/2014 11:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4161,16/06/2014 14:33,13/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3812,16/06/2014 13:26,13/06/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2013-2182,13/06/2014 16:26,13/06/2014 14:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-3522,13/06/2014 15:48,13/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3521,13/06/2014 15:31,13/06/2014 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2084,13/06/2014 4:54,17/05/2014 19:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7065,13/06/2014 4:51,29/04/2014 14:38,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-4036,12/06/2014 18:19,11/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-4033,12/06/2014 17:46,11/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3980,12/06/2014 17:37,11/06/2014 14:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-3915,12/06/2014 16:58,11/06/2014 14:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3911,12/06/2014 16:24,11/06/2014 14:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3850,12/06/2014 16:10,11/06/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3781,12/06/2014 15:51,11/06/2014 14:55,5.8,287, Improper Authentication,nan
CVE-2011-3625,12/06/2014 13:27,11/06/2014 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5300,12/06/2014 13:08,11/06/2014 14:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3986,9/06/2014 17:23,8/06/2014 18:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-3982,9/06/2014 17:14,8/06/2014 18:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-4728,9/06/2014 14:27,6/06/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-4727,9/06/2014 14:19,6/06/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-4725,9/06/2014 14:18,6/06/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-4724,9/06/2014 14:07,6/06/2014 14:55,5.0,200, Information Exposure,nan
CVE-2012-5390,9/06/2014 13:18,6/06/2014 14:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3739,6/06/2014 16:08,5/06/2014 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3975,6/06/2014 14:56,5/06/2014 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3974,6/06/2014 14:54,5/06/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3973,6/06/2014 13:55,5/06/2014 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3912,6/06/2014 13:17,5/06/2014 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2346,5/06/2014 18:40,5/06/2014 17:55,4.0,20, Improper Input Validation,nan
CVE-2014-2345,5/06/2014 18:34,5/06/2014 17:55,7.1,20, Improper Input Validation,nan
CVE-2014-1998,5/06/2014 18:19,5/06/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3837,5/06/2014 17:38,4/06/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3836,5/06/2014 17:38,4/06/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3838,5/06/2014 17:37,4/06/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3963,5/06/2014 17:35,4/06/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3948,5/06/2014 17:33,4/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3949,5/06/2014 17:32,4/06/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0304,5/06/2014 17:28,5/06/2014 15:44,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3961,5/06/2014 14:48,4/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3960,5/06/2014 13:30,4/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2352,5/06/2014 12:49,30/05/2014 23:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2354,5/06/2014 12:40,30/05/2014 23:55,5.0,255, Credentials Management,nan
CVE-2014-2353,5/06/2014 12:36,30/05/2014 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2342,5/06/2014 12:32,30/05/2014 23:55,5.0,20, Improper Input Validation,nan
CVE-2014-3835,5/06/2014 11:10,4/06/2014 14:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3127,5/06/2014 4:31,14/05/2014 0:55,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2655,5/06/2014 4:31,2/04/2014 16:06,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0162,5/06/2014 4:28,27/04/2014 20:55,6.0,20, Improper Input Validation,nan
CVE-2014-0056,5/06/2014 4:28,8/05/2014 14:29,2.1,287, Improper Authentication,nan
CVE-2014-3834,4/06/2014 19:10,4/06/2014 14:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3833,4/06/2014 19:09,4/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3832,4/06/2014 19:06,4/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3786,4/06/2014 19:05,4/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1941,4/06/2014 18:18,4/06/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2013-0204,4/06/2014 18:01,4/06/2014 14:55,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5336,4/06/2014 17:28,4/06/2014 14:55,4.0,20, Improper Input Validation,nan
CVE-2012-5056,4/06/2014 17:15,4/06/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3946,4/06/2014 15:26,3/06/2014 14:55,4.0,200, Information Exposure,nan
CVE-2014-3945,4/06/2014 15:24,3/06/2014 14:55,4.0,287, Improper Authentication,nan
CVE-2014-3944,4/06/2014 15:15,3/06/2014 14:55,5.8,287, Improper Authentication,nan
CVE-2014-2343,4/06/2014 14:00,30/05/2014 23:55,2.1,20, Improper Input Validation,nan
CVE-2014-2939,3/06/2014 15:30,2/06/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3937,3/06/2014 15:09,2/06/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0042,3/06/2014 15:05,2/06/2014 15:55,4.3,310, Cryptographic Issues,nan
CVE-2014-0041,3/06/2014 15:04,2/06/2014 15:55,4.3,310, Cryptographic Issues,nan
CVE-2013-6470,3/06/2014 15:00,2/06/2014 15:55,5.0,287, Improper Authentication,nan
CVE-2013-7386,3/06/2014 14:56,2/06/2014 15:55,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2013-4596,3/06/2014 14:49,2/06/2014 15:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1412,3/06/2014 12:27,2/06/2014 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-5280,3/06/2014 11:50,2/06/2014 15:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3735,3/06/2014 11:45,19/05/2014 14:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3935,3/06/2014 11:08,2/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3934,3/06/2014 11:03,2/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-3932,3/06/2014 10:49,2/06/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0469,31/05/2014 4:30,5/05/2014 16:07,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4250,31/05/2014 4:25,20/05/2014 14:55,6.5,20, Improper Input Validation,nan
CVE-2012-5650,31/05/2014 4:17,18/03/2014 17:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1166,31/05/2014 4:09,21/05/2014 14:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-3417,30/05/2014 16:36,29/05/2014 14:19,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-3416,30/05/2014 16:35,29/05/2014 14:19,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0246,30/05/2014 13:59,29/05/2014 14:19,4.3,255, Credentials Management,nan
CVE-2014-0201,30/05/2014 13:47,29/05/2014 14:19,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-0200,30/05/2014 13:46,29/05/2014 14:19,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-0199,30/05/2014 13:44,29/05/2014 14:19,2.1,310, Cryptographic Issues,nan
CVE-2013-4178,30/05/2014 13:35,29/05/2014 14:19,5.0,287, Improper Authentication,nan
CVE-2013-4177,30/05/2014 13:34,29/05/2014 14:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2107,30/05/2014 0:32,23/05/2014 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0943,30/05/2014 0:19,22/05/2014 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-5649,30/05/2014 0:16,23/05/2014 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2713,29/05/2014 23:44,23/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2712,29/05/2014 23:44,23/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0213,29/05/2014 23:34,27/05/2014 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0214,29/05/2014 23:32,27/05/2014 0:55,6.8,287, Improper Authentication,nan
CVE-2014-0215,29/05/2014 23:30,27/05/2014 0:55,4.0,200, Information Exposure,nan
CVE-2014-0216,29/05/2014 23:26,27/05/2014 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0217,29/05/2014 23:24,27/05/2014 0:55,4.3,200, Information Exposure,nan
CVE-2014-3866,29/05/2014 23:22,26/05/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2720,29/05/2014 23:21,27/05/2014 11:15,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0177,28/05/2014 17:51,27/05/2014 14:55,3.6,310, Cryptographic Issues,nan
CVE-2013-2111,28/05/2014 16:25,27/05/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-3870,28/05/2014 14:02,27/05/2014 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2200,27/05/2014 16:09,26/05/2014 0:25,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-1191,27/05/2014 16:05,26/05/2014 0:25,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3849,27/05/2014 14:36,23/05/2014 14:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-3848,27/05/2014 14:34,23/05/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2350,23/05/2014 14:14,22/05/2014 20:55,7.5,255, Credentials Management,nan
CVE-2014-2349,23/05/2014 14:13,22/05/2014 20:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-3220,23/05/2014 4:08,5/05/2014 17:06,9.0,255, Credentials Management,nan
CVE-2014-1736,23/05/2014 4:07,6/05/2014 10:44,7.5,189, Numeric Errors,nan
CVE-2013-6401,23/05/2014 4:03,21/03/2014 1:04,5.0,310, Cryptographic Issues,nan
CVE-2014-3807,22/05/2014 15:16,21/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3792,21/05/2014 23:37,20/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3791,21/05/2014 22:35,20/05/2014 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3739,21/05/2014 22:07,20/05/2014 14:55,5.8,20, Improper Input Validation,nan
CVE-2013-7383,21/05/2014 18:47,20/05/2014 14:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4380,21/05/2014 18:44,20/05/2014 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4321,21/05/2014 17:39,20/05/2014 14:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4320,21/05/2014 13:08,20/05/2014 14:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6146,21/05/2014 12:47,20/05/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3444,20/05/2014 19:35,20/05/2014 11:13,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-3268,20/05/2014 18:50,20/05/2014 11:13,5.0,20, Improper Input Validation,nan
CVE-2014-3269,20/05/2014 18:46,20/05/2014 11:13,6.8,20, Improper Input Validation,nan
CVE-2014-3264,20/05/2014 17:18,20/05/2014 11:13,6.3,20, Improper Input Validation,nan
CVE-2014-2194,20/05/2014 13:57,20/05/2014 11:13,6.8,20, Improper Input Validation,nan
CVE-2014-2193,20/05/2014 13:56,20/05/2014 11:13,4.3,20, Improper Input Validation,nan
CVE-2014-3787,20/05/2014 12:43,19/05/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-7385,20/05/2014 12:08,19/05/2014 14:55,6.8,310, Cryptographic Issues,nan
CVE-2013-7033,20/05/2014 12:03,19/05/2014 14:55,4.3,310, Cryptographic Issues,nan
CVE-2013-6766,20/05/2014 11:37,19/05/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2013-4467,20/05/2014 4:06,11/03/2014 19:37,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1407,20/05/2014 4:00,13/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6342,20/05/2014 3:57,13/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6994,19/05/2014 19:21,19/05/2014 14:55,6.4,310, Cryptographic Issues,nan
CVE-2013-6807,19/05/2014 19:16,19/05/2014 14:55,6.8,310, Cryptographic Issues,nan
CVE-2013-6806,19/05/2014 19:15,19/05/2014 14:55,6.8,287, Improper Authentication,nan
CVE-2013-6805,19/05/2014 19:08,19/05/2014 14:55,5.0,310, Cryptographic Issues,nan
CVE-2013-6765,19/05/2014 19:03,19/05/2014 14:55,7.5,287, Improper Authentication,nan
CVE-2013-6413,19/05/2014 18:54,19/05/2014 14:55,5.0,399, Resource Management Errors,nan
CVE-2013-4431,19/05/2014 18:43,19/05/2014 14:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4430,19/05/2014 18:42,19/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4432,19/05/2014 18:40,19/05/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4429,19/05/2014 18:40,19/05/2014 14:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4427,19/05/2014 18:11,19/05/2014 14:55,2.1,20, Improper Input Validation,nan
CVE-2013-4406,19/05/2014 17:10,19/05/2014 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1347,19/05/2014 16:52,18/05/2014 11:12,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-4498,19/05/2014 16:45,17/05/2014 20:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-3453,19/05/2014 16:32,17/05/2014 19:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7382,19/05/2014 15:46,17/05/2014 19:55,5.0,255, Credentials Management,nan
CVE-2014-3742,19/05/2014 15:22,16/05/2014 15:55,5.0,399, Resource Management Errors,nan
CVE-2014-3452,19/05/2014 15:04,16/05/2014 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0782,19/05/2014 14:57,16/05/2014 11:12,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1613,16/05/2014 18:43,16/05/2014 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7379,16/05/2014 17:55,16/05/2014 15:55,6.8,287, Improper Authentication,nan
CVE-2014-3750,16/05/2014 17:46,16/05/2014 11:12,5.8,310, Cryptographic Issues,nan
CVE-2014-3761,16/05/2014 17:33,16/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3760,16/05/2014 17:22,16/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1810,16/05/2014 12:51,15/05/2014 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0197,16/05/2014 12:44,15/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2989,16/05/2014 4:26,13/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2976,16/05/2014 4:26,23/04/2014 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2936,16/05/2014 4:26,8/05/2014 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2935,16/05/2014 4:26,8/05/2014 10:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0512,16/05/2014 4:24,27/03/2014 10:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0511,16/05/2014 4:24,27/03/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1763,16/05/2014 4:15,28/02/2013 19:55,7.2,20, Improper Input Validation,nan
CVE-2011-4970,16/05/2014 3:58,13/05/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3598,16/05/2014 3:56,8/10/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0137,15/05/2014 19:49,14/05/2014 19:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0078,15/05/2014 19:49,14/05/2014 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3441,15/05/2014 18:58,14/05/2014 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3443,15/05/2014 18:55,14/05/2014 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7376,15/05/2014 15:00,14/05/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5939,15/05/2014 14:43,14/05/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5655,15/05/2014 14:21,14/05/2014 19:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4471,15/05/2014 14:03,14/05/2014 19:55,5.0,255, Credentials Management,nan
CVE-2013-4455,15/05/2014 13:11,14/05/2014 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-3514,15/05/2014 13:01,14/05/2014 19:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2700,15/05/2014 12:53,14/05/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2226,15/05/2014 12:44,14/05/2014 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2087,15/05/2014 12:42,14/05/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5249,15/05/2014 12:21,14/05/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2046,14/05/2014 18:55,14/05/2014 0:55,9.7,310, Cryptographic Issues,nan
CVE-2014-1849,14/05/2014 18:43,14/05/2014 0:55,10.0,255, Credentials Management,nan
CVE-2013-4502,14/05/2014 18:34,13/05/2014 15:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2692,14/05/2014 18:04,13/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4552,14/05/2014 18:00,13/05/2014 15:55,7.5,287, Improper Authentication,nan
CVE-2010-4832,14/05/2014 17:59,14/05/2014 0:55,4.3,310, Cryptographic Issues,nan
CVE-2011-4407,14/05/2014 17:57,14/05/2014 0:55,4.3,20, Improper Input Validation,nan
CVE-2014-3456,14/05/2014 17:49,13/05/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4562,14/05/2014 17:19,13/05/2014 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4504,14/05/2014 16:57,13/05/2014 15:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4503,14/05/2014 16:50,13/05/2014 15:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4501,14/05/2014 16:43,13/05/2014 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4500,14/05/2014 16:36,13/05/2014 15:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-3246,14/05/2014 15:40,13/05/2014 14:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2705,14/05/2014 15:35,13/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0513,14/05/2014 15:15,14/05/2014 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0528,14/05/2014 14:54,14/05/2014 11:13,10.0,399, Resource Management Errors,nan
CVE-2014-0527,14/05/2014 14:52,14/05/2014 11:13,10.0,399, Resource Management Errors,nan
CVE-2014-0526,14/05/2014 14:49,14/05/2014 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0525,14/05/2014 14:45,14/05/2014 11:13,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0524,14/05/2014 14:40,14/05/2014 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0522,14/05/2014 13:29,14/05/2014 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0521,14/05/2014 13:23,14/05/2014 11:13,4.3,200, Information Exposure,nan
CVE-2014-3455,13/05/2014 17:56,12/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3454,13/05/2014 17:53,12/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3243,13/05/2014 17:39,12/05/2014 14:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3242,13/05/2014 17:37,12/05/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-6472,13/05/2014 14:43,12/05/2014 14:55,5.0,200, Information Exposure,nan
CVE-2013-6454,13/05/2014 14:21,12/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6453,13/05/2014 14:01,12/05/2014 14:55,7.5,20, Improper Input Validation,nan
CVE-2013-6452,13/05/2014 13:36,12/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5984,13/05/2014 13:21,12/05/2014 14:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5749,13/05/2014 12:59,12/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5748,13/05/2014 12:53,12/05/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4772,12/05/2014 18:51,12/05/2014 14:55,9.3,287, Improper Authentication,nan
CVE-2013-4581,12/05/2014 18:29,12/05/2014 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4577,12/05/2014 16:43,12/05/2014 14:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-4574,12/05/2014 16:38,12/05/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4571,12/05/2014 16:32,12/05/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-3134,10/05/2014 4:06,30/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3133,10/05/2014 4:06,30/04/2014 14:22,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3132,10/05/2014 4:06,30/04/2014 14:22,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3131,10/05/2014 4:06,30/04/2014 14:22,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-3130,10/05/2014 4:06,30/04/2014 14:22,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-3129,10/05/2014 4:06,30/04/2014 14:22,5.0,200, Information Exposure,nan
CVE-2014-0357,10/05/2014 4:02,15/04/2014 10:55,5.0,287, Improper Authentication,nan
CVE-2013-5572,10/05/2014 3:58,1/10/2013 3:48,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4549,10/05/2014 3:56,23/12/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-1803,10/05/2014 3:52,5/05/2014 17:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0219,10/05/2014 3:39,21/06/2012 15:55,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1991,9/05/2014 18:27,9/05/2014 10:50,5.8,20, Improper Input Validation,nan
CVE-2014-2854,9/05/2014 17:49,8/05/2014 18:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5916,9/05/2014 17:42,8/05/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3207,9/05/2014 17:37,8/05/2014 14:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-3123,9/05/2014 17:29,8/05/2014 14:29,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1682,9/05/2014 16:41,8/05/2014 14:29,4.0,287, Improper Authentication,nan
CVE-2014-0135,9/05/2014 16:12,8/05/2014 14:29,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0090,9/05/2014 14:50,8/05/2014 14:29,6.8,287, Improper Authentication,nan
CVE-2013-6889,9/05/2014 14:28,8/05/2014 14:29,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-6372,9/05/2014 14:24,8/05/2014 14:29,2.1,255, Credentials Management,nan
CVE-2013-4544,9/05/2014 14:07,8/05/2014 14:29,4.9,20, Improper Input Validation,nan
CVE-2014-0192,8/05/2014 18:21,8/05/2014 14:29,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0210,8/05/2014 15:29,8/05/2014 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0187,8/05/2014 15:00,8/05/2014 14:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0173,8/05/2014 14:59,8/05/2014 14:29,5.0,310, Cryptographic Issues,nan
CVE-2013-0174,8/05/2014 14:58,8/05/2014 14:29,5.0,200, Information Exposure,nan
CVE-2013-0171,8/05/2014 14:52,8/05/2014 14:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5477,8/05/2014 14:50,8/05/2014 14:29,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-0345,8/05/2014 14:49,8/05/2014 14:29,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-2136,8/05/2014 13:47,8/05/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2135,8/05/2014 13:40,8/05/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2134,8/05/2014 13:32,8/05/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2133,8/05/2014 13:29,8/05/2014 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2132,8/05/2014 13:21,8/05/2014 10:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5016,8/05/2014 11:32,8/05/2014 10:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-2181,7/05/2014 16:33,7/05/2014 10:55,6.8,287, Improper Authentication,nan
CVE-2014-0685,7/05/2014 16:05,7/05/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0684,7/05/2014 15:48,7/05/2014 10:55,4.6,20, Improper Input Validation,nan
CVE-2014-3204,7/05/2014 14:09,6/05/2014 14:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-3203,7/05/2014 14:09,6/05/2014 14:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-3202,7/05/2014 13:43,6/05/2014 14:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-2558,7/05/2014 13:23,6/05/2014 14:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6619,7/05/2014 3:45,6/03/2014 15:55,6.4,20, Improper Input Validation,nan
CVE-2013-4215,6/05/2014 19:10,5/05/2014 17:06,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-0149,6/05/2014 19:07,5/05/2014 17:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2347,6/05/2014 13:16,6/05/2014 10:44,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0350,5/05/2014 17:27,5/05/2014 17:06,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-5109,5/05/2014 17:19,5/05/2014 17:06,4.3,189, Numeric Errors,nan
CVE-2014-1406,5/05/2014 15:29,10/01/2014 16:47,4.3,20, Improper Input Validation,nan
CVE-2014-1408,5/05/2014 15:28,10/01/2014 16:47,7.8,255, Credentials Management,nan
CVE-2014-0621,5/05/2014 15:23,8/01/2014 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-3001,5/05/2014 14:54,2/05/2014 14:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-3139,5/05/2014 12:57,2/05/2014 10:55,7.5,287, Improper Authentication,nan
CVE-2014-2992,5/05/2014 5:34,26/04/2014 1:55,6.4,310, Cryptographic Issues,nan
CVE-2014-2741,5/05/2014 5:34,11/04/2014 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2553,5/05/2014 5:34,2/04/2014 16:05,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1263,5/05/2014 5:32,27/02/2014 1:55,4.3,310, Cryptographic Issues,nan
CVE-2014-0361,5/05/2014 5:31,21/04/2014 22:55,3.0,310, Cryptographic Issues,nan
CVE-2013-6052,5/05/2014 5:29,12/12/2013 18:55,5.0,200, Information Exposure,nan
CVE-2013-5965,5/05/2014 5:28,30/09/2013 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4484,5/05/2014 5:26,1/11/2013 2:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4310,5/05/2014 5:25,30/09/2013 21:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2504,5/05/2014 5:22,29/12/2013 4:25,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2030,5/05/2014 5:21,27/12/2013 1:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2006,5/05/2014 5:21,21/05/2013 18:55,2.1,200, Information Exposure,nan
CVE-2013-0930,5/05/2014 5:19,31/01/2013 15:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6514,5/05/2014 5:17,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6068,5/05/2014 5:16,21/01/2013 21:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3524,5/05/2014 5:12,18/09/2012 17:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-3154,5/05/2014 4:59,17/04/2014 14:55,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4238,5/05/2014 4:36,10/12/2009 23:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4237,5/05/2014 4:36,10/12/2009 23:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2175,2/05/2014 18:17,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2173,2/05/2014 18:15,2/05/2014 10:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-2162,2/05/2014 18:14,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2164,2/05/2014 18:13,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2163,2/05/2014 18:13,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2167,2/05/2014 18:12,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2165,2/05/2014 18:12,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2169,2/05/2014 18:11,2/05/2014 10:55,9.0,20, Improper Input Validation,nan
CVE-2014-2168,2/05/2014 18:11,2/05/2014 10:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2171,2/05/2014 18:10,2/05/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2172,2/05/2014 18:09,2/05/2014 10:55,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2170,2/05/2014 18:00,2/05/2014 10:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2166,2/05/2014 17:41,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2161,2/05/2014 16:43,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2160,2/05/2014 16:40,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2159,2/05/2014 16:23,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2158,2/05/2014 16:18,2/05/2014 10:55,7.8,20, Improper Input Validation,nan
CVE-2014-2157,2/05/2014 16:03,2/05/2014 10:55,7.1,20, Improper Input Validation,nan
CVE-2014-2156,2/05/2014 15:49,2/05/2014 10:55,7.1,20, Improper Input Validation,nan
CVE-2014-1989,2/05/2014 15:35,2/05/2014 10:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1443,2/05/2014 15:21,2/05/2014 1:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1442,2/05/2014 15:19,2/05/2014 1:59,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1441,2/05/2014 15:11,2/05/2014 1:59,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-7110,2/05/2014 14:52,2/05/2014 1:59,4.3,20, Improper Input Validation,nan
CVE-2013-2073,2/05/2014 14:49,2/05/2014 1:59,4.3,20, Improper Input Validation,nan
CVE-2014-0646,2/05/2014 13:49,1/05/2014 17:29,6.9,310, Cryptographic Issues,nan
CVE-2014-2545,1/05/2014 19:15,30/04/2014 10:49,5.0,200, Information Exposure,nan
CVE-2014-0786,1/05/2014 16:18,1/05/2014 1:56,5.0,310, Cryptographic Issues,nan
CVE-2014-2260,1/05/2014 15:42,30/04/2014 23:58,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1807,1/05/2014 15:35,30/04/2014 23:58,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1806,1/05/2014 15:27,30/04/2014 23:58,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2565,1/05/2014 13:49,30/04/2014 14:22,6.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2001-1593,1/05/2014 1:20,5/04/2014 21:55,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-7372,30/04/2014 14:23,29/04/2014 20:55,5.0,310, Cryptographic Issues,nan
CVE-2013-7302,30/04/2014 14:04,29/04/2014 14:38,6.8,287, Improper Authentication,nan
CVE-2013-7284,30/04/2014 13:56,29/04/2014 14:38,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7373,30/04/2014 12:57,29/04/2014 20:55,7.5,200, Information Exposure,nan
CVE-2013-7236,30/04/2014 11:21,29/04/2014 14:38,7.5,20, Improper Input Validation,nan
CVE-2013-7235,30/04/2014 11:18,29/04/2014 14:38,7.5,20, Improper Input Validation,nan
CVE-2013-7234,30/04/2014 11:14,29/04/2014 14:38,4.3,20, Improper Input Validation,nan
CVE-2013-7221,29/04/2014 19:03,29/04/2014 14:38,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-7134,29/04/2014 18:13,29/04/2014 14:38,7.5,255, Credentials Management,nan
CVE-2013-7111,29/04/2014 17:59,29/04/2014 14:38,5.0,200, Information Exposure,nan
CVE-2013-7068,29/04/2014 17:52,29/04/2014 14:38,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-7066,29/04/2014 17:45,29/04/2014 14:38,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-7064,29/04/2014 17:09,29/04/2014 14:38,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7063,29/04/2014 16:40,29/04/2014 14:38,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2183,29/04/2014 16:19,29/04/2014 10:37,6.3,20, Improper Input Validation,nan
CVE-2014-2185,29/04/2014 16:08,29/04/2014 10:37,4.0,200, Information Exposure,nan
CVE-2014-2184,29/04/2014 16:08,29/04/2014 10:37,5.0,20, Improper Input Validation,nan
CVE-2014-2182,29/04/2014 15:46,29/04/2014 10:37,6.1,20, Improper Input Validation,nan
CVE-2014-2180,29/04/2014 15:42,29/04/2014 10:37,4.0,20, Improper Input Validation,nan
CVE-2014-0079,29/04/2014 11:52,28/04/2014 14:09,5.0,20, Improper Input Validation,nan
CVE-2014-0037,29/04/2014 11:35,28/04/2014 14:09,5.0,20, Improper Input Validation,nan
CVE-2013-4285,29/04/2014 11:09,28/04/2014 14:09,2.1,255, Credentials Management,nan
CVE-2013-0296,28/04/2014 19:28,27/04/2014 21:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-3603,28/04/2014 19:12,27/04/2014 21:55,4.4,20, Improper Input Validation,nan
CVE-2011-3602,28/04/2014 18:30,27/04/2014 21:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-3007,28/04/2014 17:51,27/04/2014 20:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-6053,28/04/2014 17:38,27/04/2014 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-6887,28/04/2014 17:35,27/04/2014 20:55,6.4,20, Improper Input Validation,nan
CVE-2014-2994,28/04/2014 16:06,27/04/2014 4:32,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2889,28/04/2014 15:47,27/04/2014 0:55,4.6,189, Numeric Errors,nan
CVE-2013-5660,25/04/2014 18:44,25/04/2014 17:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4726,25/04/2014 18:38,25/04/2014 17:12,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4723,25/04/2014 18:38,25/04/2014 17:12,5.8,20, Improper Input Validation,nan
CVE-2013-4722,25/04/2014 18:34,25/04/2014 17:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3069,25/04/2014 18:07,25/04/2014 17:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2025,25/04/2014 18:01,25/04/2014 17:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5956,25/04/2014 17:42,25/04/2014 14:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2909,25/04/2014 17:10,25/04/2014 5:12,5.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0769,25/04/2014 13:58,25/04/2014 5:12,9.3,287, Improper Authentication,nan
CVE-2014-0760,25/04/2014 13:56,25/04/2014 5:12,9.3,287, Improper Authentication,nan
CVE-2013-5359,25/04/2014 13:39,9/01/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5358,25/04/2014 13:39,9/01/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5357,25/04/2014 13:38,9/01/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5349,25/04/2014 13:38,9/01/2014 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5723,24/04/2014 18:46,24/04/2014 10:55,6.1,20, Improper Input Validation,nan
CVE-2012-3946,24/04/2014 18:38,24/04/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2393,24/04/2014 18:32,24/04/2014 5:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2392,24/04/2014 18:29,24/04/2014 5:06,4.3,200, Information Exposure,nan
CVE-2014-2391,24/04/2014 18:27,24/04/2014 5:06,4.3,200, Information Exposure,nan
CVE-2014-1647,24/04/2014 18:06,23/04/2014 19:55,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1646,24/04/2014 18:00,23/04/2014 19:55,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2154,24/04/2014 14:09,23/04/2014 11:52,5.0,399, Resource Management Errors,nan
CVE-2014-1322,24/04/2014 13:56,23/04/2014 11:52,4.9,200, Information Exposure,nan
CVE-2014-1321,24/04/2014 13:52,23/04/2014 11:52,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1314,24/04/2014 11:24,23/04/2014 11:52,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2739,24/04/2014 5:06,14/04/2014 23:55,4.6,20, Improper Input Validation,nan
CVE-2014-2665,24/04/2014 5:06,20/04/2014 1:55,4.0,287, Improper Authentication,nan
CVE-2014-1974,24/04/2014 5:05,19/04/2014 19:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5170,24/04/2014 4:58,24/10/2013 3:48,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1319,23/04/2014 18:02,23/04/2014 11:52,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1318,23/04/2014 17:58,23/04/2014 11:52,10.0,20, Improper Input Validation,nan
CVE-2014-1316,23/04/2014 17:52,23/04/2014 11:52,5.0,20, Improper Input Validation,nan
CVE-2014-1315,23/04/2014 17:48,23/04/2014 11:52,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2012-5427,23/04/2014 17:05,23/04/2014 11:52,4.0,20, Improper Input Validation,nan
CVE-2012-5044,23/04/2014 16:52,23/04/2014 11:52,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5039,23/04/2014 16:44,23/04/2014 11:52,4.3,399, Resource Management Errors,nan
CVE-2012-5037,23/04/2014 16:38,23/04/2014 11:52,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-5036,23/04/2014 16:31,23/04/2014 11:52,6.8,399, Resource Management Errors,nan
CVE-2012-5032,23/04/2014 15:41,23/04/2014 11:52,6.4,287, Improper Authentication,nan
CVE-2012-5017,23/04/2014 15:34,23/04/2014 11:52,6.8,20, Improper Input Validation,nan
CVE-2012-4658,23/04/2014 15:13,23/04/2014 11:52,5.0,287, Improper Authentication,nan
CVE-2012-4651,23/04/2014 14:58,23/04/2014 11:52,4.3,189, Numeric Errors,nan
CVE-2012-6623,23/04/2014 14:35,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3062,23/04/2014 14:35,23/04/2014 11:52,5.7,20, Improper Input Validation,nan
CVE-2013-5030,23/04/2014 14:26,16/10/2013 10:52,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-1366,23/04/2014 14:26,23/04/2014 11:52,6.1,20, Improper Input Validation,nan
CVE-2012-1317,23/04/2014 14:21,23/04/2014 11:52,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0360,23/04/2014 14:18,23/04/2014 11:52,5.0,399, Resource Management Errors,nan
CVE-2014-2890,23/04/2014 13:37,22/04/2014 14:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1615,23/04/2014 12:36,22/04/2014 14:23,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4472,23/04/2014 12:20,22/04/2014 14:23,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1421,23/04/2014 11:50,22/04/2014 14:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2269,22/04/2014 16:31,22/04/2014 13:06,6.4,20, Improper Input Validation,nan
CVE-2012-5353,22/04/2014 16:29,9/10/2012 23:55,5.8,287, Improper Authentication,nan
CVE-2013-6469,22/04/2014 15:37,22/04/2014 13:06,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2922,22/04/2014 15:06,21/04/2014 22:55,6.4,20, Improper Input Validation,nan
CVE-2014-2921,22/04/2014 15:04,21/04/2014 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2155,21/04/2014 19:59,19/04/2014 21:55,5.0,20, Improper Input Validation,nan
CVE-2014-2733,21/04/2014 19:31,19/04/2014 19:55,5.0,20, Improper Input Validation,nan
CVE-2014-1990,21/04/2014 19:23,19/04/2014 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0778,21/04/2014 18:50,19/04/2014 19:55,5.0,200, Information Exposure,nan
CVE-2014-2597,21/04/2014 18:15,18/04/2014 22:14,4.9,20, Improper Input Validation,nan
CVE-2014-2289,21/04/2014 17:50,18/04/2014 22:14,3.5,20, Improper Input Validation,nan
CVE-2014-2288,21/04/2014 17:50,18/04/2014 22:14,4.3,20, Improper Input Validation,nan
CVE-2014-2287,21/04/2014 17:37,18/04/2014 22:14,3.5,20, Improper Input Validation,nan
CVE-2014-2286,21/04/2014 17:20,18/04/2014 22:14,7.5,20, Improper Input Validation,nan
CVE-2014-2014,21/04/2014 16:19,18/04/2014 22:14,4.3,255, Credentials Management,nan
CVE-2013-4279,21/04/2014 15:31,18/04/2014 22:14,5.0,200, Information Exposure,nan
CVE-2014-2844,21/04/2014 15:08,18/04/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7369,21/04/2014 14:49,18/04/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2745,19/04/2014 4:48,11/04/2014 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2744,19/04/2014 4:48,11/04/2014 1:55,7.8,20, Improper Input Validation,nan
CVE-2014-2672,19/04/2014 4:48,1/04/2014 6:35,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-1986,19/04/2014 4:48,15/04/2014 23:13,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1690,19/04/2014 4:47,28/02/2014 6:18,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7114,19/04/2014 4:45,19/12/2013 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7112,19/04/2014 4:45,19/12/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-2209,19/04/2014 4:35,31/07/2013 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1919,19/04/2014 4:34,13/05/2013 23:55,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-1918,19/04/2014 4:34,13/05/2013 23:55,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1917,19/04/2014 4:34,13/05/2013 23:55,1.9,20, Improper Input Validation,nan
CVE-2013-1808,19/04/2014 4:34,2/04/2013 3:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6075,19/04/2014 4:29,13/02/2013 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5634,19/04/2014 4:28,14/02/2013 22:55,6.1,16, Configuration,nan
CVE-2014-2310,18/04/2014 15:52,17/04/2014 14:55,5.0,20, Improper Input Validation,nan
CVE-2014-0036,18/04/2014 13:48,17/04/2014 14:55,6.8,310, Cryptographic Issues,nan
CVE-2014-0071,17/04/2014 16:00,17/04/2014 14:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2143,17/04/2014 15:57,17/04/2014 14:55,6.5,20, Improper Input Validation,nan
CVE-2014-0645,17/04/2014 15:10,17/04/2014 1:55,4.7,255, Credentials Management,nan
CVE-2014-0644,17/04/2014 15:06,17/04/2014 1:55,7.8,200, Information Exposure,nan
CVE-2011-4406,17/04/2014 14:33,16/04/2014 18:37,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1764,17/04/2014 14:30,16/04/2014 18:37,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-4089,17/04/2014 14:15,16/04/2014 18:37,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4193,17/04/2014 14:04,16/04/2014 18:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4768,16/04/2014 15:21,16/04/2014 0:55,5.0,20, Improper Input Validation,nan
CVE-2012-0214,16/04/2014 15:13,15/04/2014 23:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2236,16/04/2014 14:53,15/04/2014 23:55,6.0,20, Improper Input Validation,nan
CVE-2014-2874,16/04/2014 14:47,15/04/2014 23:13,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2873,16/04/2014 14:43,15/04/2014 23:13,5.0,200, Information Exposure,nan
CVE-2014-2872,16/04/2014 14:41,15/04/2014 23:13,5.0,200, Information Exposure,nan
CVE-2014-2871,16/04/2014 14:40,15/04/2014 23:13,5.0,200, Information Exposure,nan
CVE-2014-2870,16/04/2014 14:38,15/04/2014 23:13,5.0,255, Credentials Management,nan
CVE-2014-2869,16/04/2014 14:37,15/04/2014 23:13,5.0,200, Information Exposure,nan
CVE-2014-2384,16/04/2014 14:23,15/04/2014 23:13,4.9,399, Resource Management Errors,nan
CVE-2014-2866,16/04/2014 14:22,15/04/2014 23:13,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2865,16/04/2014 14:20,15/04/2014 23:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2864,16/04/2014 14:18,15/04/2014 23:13,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2863,16/04/2014 14:16,15/04/2014 23:13,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2862,16/04/2014 14:14,15/04/2014 23:13,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0642,16/04/2014 14:03,15/04/2014 23:13,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2860,16/04/2014 13:58,15/04/2014 23:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2859,16/04/2014 13:58,15/04/2014 23:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2580,16/04/2014 13:57,15/04/2014 23:13,4.4,399, Resource Management Errors,nan
CVE-2014-2690,16/04/2014 13:07,15/04/2014 14:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-0359,15/04/2014 19:11,15/04/2014 10:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0358,15/04/2014 19:07,15/04/2014 10:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0356,15/04/2014 17:56,15/04/2014 10:55,7.9,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-0355,15/04/2014 17:56,15/04/2014 10:55,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0354,15/04/2014 17:56,15/04/2014 10:55,7.8,255, Credentials Management,nan
CVE-2014-0353,15/04/2014 17:55,15/04/2014 10:55,6.1,287, Improper Authentication,nan
CVE-2014-0348,15/04/2014 16:57,15/04/2014 10:55,3.5,287, Improper Authentication,nan
CVE-2014-0155,15/04/2014 15:06,14/04/2014 23:55,5.5,20, Improper Input Validation,nan
CVE-2014-2852,15/04/2014 14:35,14/04/2014 15:09,5.0,20, Improper Input Validation,nan
CVE-2014-2714,15/04/2014 14:06,14/04/2014 15:09,7.1,20, Improper Input Validation,nan
CVE-2014-0772,14/04/2014 17:44,12/04/2014 4:37,5.0,200, Information Exposure,nan
CVE-2014-0771,14/04/2014 17:42,12/04/2014 4:37,5.0,200, Information Exposure,nan
CVE-2014-0770,14/04/2014 17:40,12/04/2014 4:37,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0347,14/04/2014 17:39,12/04/2014 4:37,3.5,255, Credentials Management,nan
CVE-2013-2828,14/04/2014 17:19,12/04/2014 4:37,4.7,20, Improper Input Validation,nan
CVE-2013-2809,14/04/2014 17:13,12/04/2014 4:37,7.1,20, Improper Input Validation,nan
CVE-2014-1210,14/04/2014 16:58,11/04/2014 19:55,5.8,310, Cryptographic Issues,nan
CVE-2014-1209,14/04/2014 16:51,11/04/2014 19:55,9.3,20, Improper Input Validation,nan
CVE-2014-1969,14/04/2014 16:26,11/04/2014 16:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0777,14/04/2014 16:19,11/04/2014 16:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2850,14/04/2014 15:38,11/04/2014 15:55,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-2849,14/04/2014 15:38,11/04/2014 15:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2848,14/04/2014 15:21,11/04/2014 15:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-2847,14/04/2014 15:15,11/04/2014 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2708,14/04/2014 12:52,11/04/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2706,14/04/2014 11:13,11/04/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2742,11/04/2014 19:49,11/04/2014 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2829,11/04/2014 19:45,11/04/2014 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2746,11/04/2014 19:39,11/04/2014 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2743,11/04/2014 19:36,11/04/2014 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-7367,11/04/2014 18:19,10/04/2014 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7366,11/04/2014 18:13,10/04/2014 20:55,5.0,287, Improper Authentication,nan
CVE-2013-7364,11/04/2014 17:16,10/04/2014 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-7362,11/04/2014 17:03,10/04/2014 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7361,11/04/2014 16:52,10/04/2014 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7355,11/04/2014 16:19,10/04/2014 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0740,11/04/2014 16:14,10/04/2014 20:29,5.8,20, Improper Input Validation,nan
CVE-2013-6468,11/04/2014 14:54,10/04/2014 20:29,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3252,11/04/2014 14:38,10/04/2014 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3251,11/04/2014 14:30,10/04/2014 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2699,11/04/2014 14:22,10/04/2014 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2693,11/04/2014 13:29,10/04/2014 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4921,11/04/2014 13:24,10/04/2014 20:29,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2141,10/04/2014 18:33,10/04/2014 4:34,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2129,10/04/2014 18:29,10/04/2014 4:34,7.1,20, Improper Input Validation,nan
CVE-2014-2128,10/04/2014 18:22,10/04/2014 4:34,5.0,287, Improper Authentication,nan
CVE-2014-2127,10/04/2014 18:09,10/04/2014 4:34,8.5,20, Improper Input Validation,nan
CVE-2014-2126,10/04/2014 18:04,10/04/2014 4:34,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-2265,9/04/2014 4:17,14/03/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6642,8/04/2014 17:13,8/04/2014 14:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2095,8/04/2014 14:52,7/04/2014 15:55,6.9,20, Improper Input Validation,nan
CVE-2013-1946,7/04/2014 17:00,6/04/2014 16:55,4.3,20, Improper Input Validation,nan
CVE-2012-5566,7/04/2014 15:59,5/04/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5565,7/04/2014 15:36,5/04/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5567,7/04/2014 15:32,5/04/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6640,7/04/2014 15:23,5/04/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0337,7/04/2014 14:36,5/04/2014 4:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2144,7/04/2014 14:16,5/04/2014 4:01,6.1,20, Improper Input Validation,nan
CVE-2013-5365,5/04/2014 3:56,2/04/2014 16:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0789,4/04/2014 17:52,4/04/2014 15:09,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0638,4/04/2014 16:37,4/04/2014 15:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0637,4/04/2014 16:34,4/04/2014 15:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0592,4/04/2014 16:20,4/04/2014 14:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2287,4/04/2014 16:01,4/04/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6770,3/04/2014 17:09,31/03/2014 14:58,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-7352,3/04/2014 15:36,2/04/2014 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3484,3/04/2014 15:13,2/04/2014 16:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4240,2/04/2014 17:56,2/04/2014 16:05,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1297,2/04/2014 17:07,2/04/2014 16:17,5.0,20, Improper Input Validation,nan
CVE-2014-2138,2/04/2014 16:56,2/04/2014 3:58,4.3,20, Improper Input Validation,nan
CVE-2014-2137,2/04/2014 16:28,2/04/2014 3:58,4.3,20, Improper Input Validation,nan
CVE-2014-1942,2/04/2014 16:05,2/04/2014 3:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3588,2/04/2014 15:29,2/04/2014 3:58,7.8,20, Improper Input Validation,nan
CVE-2014-2212,2/04/2014 15:03,1/04/2014 17:55,5.0,255, Credentials Management,nan
CVE-2014-1691,2/04/2014 14:50,1/04/2014 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7348,1/04/2014 15:12,1/04/2014 6:35,4.6,399, Resource Management Errors,nan
CVE-2013-1869,1/04/2014 14:46,1/04/2014 6:35,4.3,20, Improper Input Validation,nan
CVE-2012-0032,1/04/2014 14:40,1/04/2014 6:35,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2011-4573,1/04/2014 14:38,1/04/2014 6:35,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3346,1/04/2014 14:35,1/04/2014 6:35,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-2590,1/04/2014 14:25,1/04/2014 6:29,5.0,20, Improper Input Validation,nan
CVE-2014-0635,1/04/2014 14:16,1/04/2014 6:28,7.5,287, Improper Authentication,nan
CVE-2014-0634,1/04/2014 14:14,1/04/2014 6:28,6.0,20, Improper Input Validation,nan
CVE-2014-0633,1/04/2014 14:13,1/04/2014 6:28,7.7,20, Improper Input Validation,nan
CVE-2009-5141,1/04/2014 11:07,1/04/2014 3:24,4.0,134, Use of Externally-Controlled Format String,nan
CVE-2014-2537,1/04/2014 6:29,18/03/2014 17:04,7.8,399, Resource Management Errors,nan
CVE-2014-2536,1/04/2014 6:29,18/03/2014 17:04,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2534,1/04/2014 6:29,18/03/2014 5:18,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-2241,1/04/2014 6:29,18/03/2014 17:04,6.8,20, Improper Input Validation,nan
CVE-2014-2240,1/04/2014 6:29,12/03/2014 14:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1515,1/04/2014 6:28,25/03/2014 13:25,1.9,200, Information Exposure,nan
CVE-2013-6660,1/04/2014 6:26,24/02/2014 4:48,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6659,1/04/2014 6:26,24/02/2014 4:48,6.4,310, Cryptographic Issues,nan
CVE-2013-6658,1/04/2014 6:26,24/02/2014 4:48,7.5,399, Resource Management Errors,nan
CVE-2013-6657,1/04/2014 6:26,24/02/2014 4:48,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-6656,1/04/2014 6:26,24/02/2014 4:48,5.0,200, Information Exposure,nan
CVE-2013-6655,1/04/2014 6:26,24/02/2014 4:48,7.5,399, Resource Management Errors,nan
CVE-2013-6654,1/04/2014 6:26,24/02/2014 4:48,7.5,20, Improper Input Validation,nan
CVE-2013-6653,1/04/2014 6:26,24/02/2014 4:48,7.5,399, Resource Management Errors,nan
CVE-2013-1777,1/04/2014 6:19,11/07/2013 22:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-5138,1/04/2014 5:44,7/03/2014 0:10,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6775,31/03/2014 19:08,31/03/2014 14:58,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6769,31/03/2014 19:01,31/03/2014 14:58,10.0,20, Improper Input Validation,nan
CVE-2013-6768,31/03/2014 18:59,31/03/2014 14:58,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7347,31/03/2014 18:23,31/03/2014 14:58,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2012-3359,31/03/2014 18:12,31/03/2014 14:58,3.7,255, Credentials Management,nan
CVE-2014-1982,31/03/2014 17:57,31/03/2014 14:58,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2014-1516,31/03/2014 17:33,29/03/2014 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1644,31/03/2014 16:40,29/03/2014 1:55,7.5,255, Credentials Management,nan
CVE-2014-1645,31/03/2014 16:27,29/03/2014 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2131,31/03/2014 16:07,29/03/2014 1:55,6.1,399, Resource Management Errors,nan
CVE-2014-2108,28/03/2014 13:49,27/03/2014 21:55,7.8,20, Improper Input Validation,nan
CVE-2014-2107,28/03/2014 13:41,27/03/2014 21:55,7.1,20, Improper Input Validation,nan
CVE-2014-2106,28/03/2014 13:30,27/03/2014 21:55,7.8,20, Improper Input Validation,nan
CVE-2011-3196,27/03/2014 22:02,21/03/2014 4:38,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-3199,27/03/2014 22:00,21/03/2014 4:38,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3197,27/03/2014 21:59,21/03/2014 4:38,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0089,27/03/2014 18:59,27/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7346,27/03/2014 18:56,27/03/2014 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0732,27/03/2014 18:09,27/03/2014 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0623,27/03/2014 15:37,27/03/2014 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1828,26/03/2014 18:18,26/03/2014 10:55,4.3,20, Improper Input Validation,nan
CVE-2014-1827,26/03/2014 18:14,26/03/2014 10:55,4.3,20, Improper Input Validation,nan
CVE-2014-1826,26/03/2014 18:11,26/03/2014 10:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2573,26/03/2014 13:41,25/03/2014 16:55,2.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-2249,26/03/2014 4:57,16/03/2014 14:06,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0333,26/03/2014 4:56,27/02/2014 20:55,5.0,189, Numeric Errors,nan
CVE-2014-0017,26/03/2014 4:55,14/03/2014 15:55,1.9,310, Cryptographic Issues,nan
CVE-2013-6383,26/03/2014 4:54,27/11/2013 4:43,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-6172,26/03/2014 4:54,5/11/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4387,26/03/2014 4:50,10/10/2013 10:55,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2851,26/03/2014 4:48,7/06/2013 14:03,6.0,134, Use of Externally-Controlled Format String,nan
CVE-2013-2116,26/03/2014 4:47,3/07/2013 18:55,5.0,20, Improper Input Validation,nan
CVE-2013-1619,26/03/2014 4:46,8/02/2013 19:55,4.0,310, Cryptographic Issues,nan
CVE-2013-1378,26/03/2014 4:45,10/04/2013 3:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1375,26/03/2014 4:45,13/03/2013 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1371,26/03/2014 4:45,13/03/2013 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0650,26/03/2014 4:44,13/03/2013 16:55,10.0,399, Resource Management Errors,nan
CVE-2013-0646,26/03/2014 4:44,13/03/2013 16:55,10.0,189, Numeric Errors,nan
CVE-2012-0390,26/03/2014 4:28,6/01/2012 1:55,4.3,310, Cryptographic Issues,nan
CVE-2012-0027,26/03/2014 4:27,6/01/2012 1:55,5.0,399, Resource Management Errors,nan
CVE-2011-4577,26/03/2014 4:25,6/01/2012 1:55,4.3,399, Resource Management Errors,nan
CVE-2011-3210,26/03/2014 4:22,22/09/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-3207,26/03/2014 4:22,22/09/2011 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1633,26/03/2014 4:05,3/06/2010 14:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-1710,26/03/2014 2:04,16/03/2014 14:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1711,26/03/2014 2:01,16/03/2014 14:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1707,26/03/2014 1:53,16/03/2014 14:06,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1758,26/03/2014 0:54,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2325,26/03/2014 0:42,14/03/2014 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0307,26/03/2014 0:41,14/03/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0298,26/03/2014 0:40,14/03/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0297,26/03/2014 0:39,14/03/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2567,26/03/2014 0:20,21/03/2014 10:55,4.3,200, Information Exposure,nan
CVE-2013-1822,25/03/2014 21:07,14/03/2014 16:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1850,25/03/2014 21:04,14/03/2014 16:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2150,25/03/2014 21:03,14/03/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0301,25/03/2014 20:56,14/03/2014 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0300,25/03/2014 20:55,14/03/2014 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0299,25/03/2014 20:49,14/03/2014 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2047,25/03/2014 19:36,14/03/2014 16:55,6.8,287, Improper Authentication,nan
CVE-2014-2049,25/03/2014 19:32,14/03/2014 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0628,25/03/2014 15:13,25/03/2014 13:25,5.0,20, Improper Input Validation,nan
CVE-2011-5272,24/03/2014 23:05,21/03/2014 4:38,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2077,24/03/2014 22:55,20/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0708,24/03/2014 22:48,21/03/2014 1:04,5.0,200, Information Exposure,nan
CVE-2013-7340,24/03/2014 22:47,21/03/2014 4:38,4.3,399, Resource Management Errors,nan
CVE-2014-0123,24/03/2014 22:39,24/03/2014 14:20,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0125,24/03/2014 22:37,24/03/2014 14:20,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0124,24/03/2014 22:37,24/03/2014 14:20,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0126,24/03/2014 22:34,24/03/2014 14:20,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0129,24/03/2014 22:33,24/03/2014 14:20,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2572,24/03/2014 22:29,24/03/2014 14:20,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-2571,24/03/2014 22:24,24/03/2014 14:20,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2057,24/03/2014 22:16,24/03/2014 16:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2586,24/03/2014 22:15,24/03/2014 16:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2585,24/03/2014 17:10,24/03/2014 16:35,4.9,20, Improper Input Validation,nan
CVE-2014-2258,24/03/2014 16:01,24/03/2014 14:20,7.8,399, Resource Management Errors,nan
CVE-2014-2256,24/03/2014 16:00,24/03/2014 14:20,7.8,399, Resource Management Errors,nan
CVE-2014-2254,24/03/2014 15:59,24/03/2014 14:20,7.8,399, Resource Management Errors,nan
CVE-2014-2252,24/03/2014 15:51,24/03/2014 14:20,6.1,399, Resource Management Errors,nan
CVE-2014-2250,24/03/2014 15:47,24/03/2014 14:20,8.3,310, Cryptographic Issues,nan
CVE-2014-0127,24/03/2014 15:33,24/03/2014 14:20,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0122,24/03/2014 15:28,24/03/2014 14:20,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-7343,24/03/2014 15:16,24/03/2014 14:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7342,24/03/2014 15:14,24/03/2014 14:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7341,24/03/2014 14:56,24/03/2014 14:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5276,21/03/2014 14:54,21/03/2014 4:38,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5275,21/03/2014 14:53,21/03/2014 4:38,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-5273,21/03/2014 14:47,21/03/2014 4:38,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3198,21/03/2014 14:44,21/03/2014 4:38,2.1,255, Credentials Management,nan
CVE-2011-3195,21/03/2014 14:37,21/03/2014 4:38,6.5,20, Improper Input Validation,nan
CVE-2014-1970,20/03/2014 17:12,20/03/2014 15:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0322,20/03/2014 17:09,5/03/2012 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1979,20/03/2014 16:36,19/03/2014 14:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-1977,20/03/2014 16:03,19/03/2014 14:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1978,20/03/2014 16:02,19/03/2014 14:17,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2212,19/03/2014 15:06,28/04/2012 10:06,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0132,19/03/2014 14:12,18/03/2014 17:02,6.5,287, Improper Authentication,nan
CVE-2014-0057,19/03/2014 14:03,18/03/2014 17:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3938,19/03/2014 13:59,18/03/2014 17:02,9.3,189, Numeric Errors,nan
CVE-2013-2643,19/03/2014 13:55,18/03/2014 17:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2642,19/03/2014 13:54,18/03/2014 17:02,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-2641,19/03/2014 13:48,18/03/2014 17:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1976,18/03/2014 16:05,18/03/2014 5:18,5.8,310, Cryptographic Issues,nan
CVE-2013-2086,17/03/2014 15:43,14/03/2014 16:55,5.0,200, Information Exposure,nan
CVE-2013-2047,17/03/2014 15:37,14/03/2014 16:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2048,17/03/2014 15:26,14/03/2014 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2044,17/03/2014 15:24,14/03/2014 16:55,5.8,20, Improper Input Validation,nan
CVE-2013-2043,17/03/2014 15:22,14/03/2014 16:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2042,17/03/2014 15:19,14/03/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2041,17/03/2014 15:17,14/03/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2040,17/03/2014 15:15,14/03/2014 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2039,17/03/2014 15:14,14/03/2014 16:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1963,17/03/2014 15:10,14/03/2014 16:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6476,17/03/2014 13:10,14/03/2014 15:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-2038,16/03/2014 4:45,28/02/2014 6:18,3.7,20, Improper Input Validation,nan
CVE-2014-1438,16/03/2014 4:45,18/01/2014 22:55,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2014-0020,16/03/2014 4:43,6/02/2014 16:10,5.0,20, Improper Input Validation,nan
CVE-2013-7268,16/03/2014 4:43,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7267,16/03/2014 4:43,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7266,16/03/2014 4:43,6/01/2014 16:55,4.9,20, Improper Input Validation,nan
CVE-2013-7027,16/03/2014 4:43,9/12/2013 18:55,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6493,16/03/2014 4:42,3/03/2014 16:55,2.1,200, Information Exposure,nan
CVE-2013-6486,16/03/2014 4:42,6/02/2014 16:10,9.3,20, Improper Input Validation,nan
CVE-2013-6485,16/03/2014 4:42,6/02/2014 16:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6484,16/03/2014 4:42,6/02/2014 16:10,5.0,20, Improper Input Validation,nan
CVE-2013-6483,16/03/2014 4:42,6/02/2014 16:10,6.4,20, Improper Input Validation,nan
CVE-2013-6482,16/03/2014 4:42,6/02/2014 17:00,5.0,20, Improper Input Validation,nan
CVE-2013-6481,16/03/2014 4:42,6/02/2014 17:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6479,16/03/2014 4:42,6/02/2014 16:10,5.0,399, Resource Management Errors,nan
CVE-2013-6478,16/03/2014 4:42,6/02/2014 16:10,4.3,20, Improper Input Validation,nan
CVE-2013-6477,16/03/2014 4:42,6/02/2014 16:10,5.0,189, Numeric Errors,nan
CVE-2013-6380,16/03/2014 4:42,27/11/2013 4:43,4.7,20, Improper Input Validation,nan
CVE-2013-6376,16/03/2014 4:42,14/12/2013 18:08,5.2,189, Numeric Errors,nan
CVE-2013-4587,16/03/2014 4:39,14/12/2013 18:08,7.2,20, Improper Input Validation,nan
CVE-2013-4579,16/03/2014 4:39,20/11/2013 13:19,4.3,310, Cryptographic Issues,nan
CVE-2013-3948,16/03/2014 4:38,5/06/2013 14:39,4.3,20, Improper Input Validation,nan
CVE-2012-6152,16/03/2014 4:31,6/02/2014 16:10,5.0,20, Improper Input Validation,nan
CVE-2014-0694,14/03/2014 17:56,14/03/2014 10:55,5.0,255, Credentials Management,nan
CVE-2014-0505,14/03/2014 17:07,14/03/2014 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5133,14/03/2014 16:40,14/03/2014 10:55,8.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2319,14/03/2014 16:37,14/03/2014 10:55,5.0,310, Cryptographic Issues,nan
CVE-2014-1285,14/03/2014 15:57,14/03/2014 10:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1281,14/03/2014 15:50,14/03/2014 10:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-1276,14/03/2014 15:20,14/03/2014 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1274,14/03/2014 15:03,14/03/2014 10:55,2.1,200, Information Exposure,nan
CVE-2013-3729,13/03/2014 17:42,13/03/2014 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5117,13/03/2014 16:06,12/03/2014 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7335,13/03/2014 15:56,12/03/2014 14:55,4.3,20, Improper Input Validation,nan
CVE-2013-3943,13/03/2014 15:24,12/03/2014 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5639,12/03/2014 18:03,11/03/2014 19:37,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4199,12/03/2014 1:48,11/03/2014 19:37,3.5,20, Improper Input Validation,nan
CVE-2013-4198,12/03/2014 1:44,11/03/2014 19:37,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4197,12/03/2014 1:40,11/03/2014 19:37,5.5,20, Improper Input Validation,nan
CVE-2013-4196,12/03/2014 1:37,11/03/2014 19:37,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4195,12/03/2014 1:30,11/03/2014 19:37,5.8,20, Improper Input Validation,nan
CVE-2013-4194,12/03/2014 1:28,11/03/2014 19:37,4.3,200, Information Exposure,nan
CVE-2013-4193,12/03/2014 1:24,11/03/2014 19:37,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4192,12/03/2014 1:22,11/03/2014 19:37,4.0,20, Improper Input Validation,nan
CVE-2013-4191,12/03/2014 1:10,11/03/2014 19:37,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-4190,12/03/2014 1:06,11/03/2014 19:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4188,12/03/2014 0:59,11/03/2014 19:37,4.3,399, Resource Management Errors,nan
CVE-2013-2754,12/03/2014 0:47,11/03/2014 19:37,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7334,11/03/2014 16:30,11/03/2014 16:17,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-2321,11/03/2014 16:22,11/03/2014 13:01,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0102,11/03/2014 15:03,11/03/2014 13:01,5.2,310, Cryptographic Issues,nan
CVE-2014-0100,11/03/2014 14:30,11/03/2014 13:01,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0049,11/03/2014 14:26,11/03/2014 13:01,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6031,11/03/2014 14:11,11/03/2014 13:00,4.3,287, Improper Authentication,nan
CVE-2013-6944,11/03/2014 13:48,11/03/2014 13:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6943,11/03/2014 13:47,11/03/2014 13:00,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6942,11/03/2014 13:43,11/03/2014 13:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6940,11/03/2014 13:39,11/03/2014 13:00,5.0,255, Credentials Management,nan
CVE-2011-1749,10/03/2014 21:29,26/02/2014 15:55,3.3,20, Improper Input Validation,nan
CVE-2011-2941,10/03/2014 21:26,26/02/2014 15:55,5.8,20, Improper Input Validation,nan
CVE-2012-2134,10/03/2014 19:18,26/02/2014 15:55,4.3,399, Resource Management Errors,nan
CVE-2011-4580,10/03/2014 19:18,26/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3712,10/03/2014 19:17,26/02/2014 15:55,10.0,310, Cryptographic Issues,nan
CVE-2014-1245,10/03/2014 17:40,27/02/2014 1:55,9.3,189, Numeric Errors,nan
CVE-2014-1248,10/03/2014 17:39,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1249,10/03/2014 17:38,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1259,10/03/2014 17:37,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1250,10/03/2014 17:37,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1247,10/03/2014 17:37,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1260,10/03/2014 17:36,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1264,10/03/2014 17:32,27/02/2014 1:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4710,10/03/2014 17:25,3/03/2014 4:50,9.3,20, Improper Input Validation,nan
CVE-2014-2313,10/03/2014 16:38,9/03/2014 13:16,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-2317,10/03/2014 16:25,9/03/2014 13:16,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1945,10/03/2014 16:24,9/03/2014 13:16,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2046,10/03/2014 14:15,9/03/2014 13:16,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2045,10/03/2014 14:12,9/03/2014 13:16,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-2020,8/03/2014 5:13,18/02/2014 11:55,5.0,189, Numeric Errors,nan
CVE-2014-1948,8/03/2014 5:13,14/02/2014 15:55,2.6,255, Credentials Management,nan
CVE-2014-0006,8/03/2014 5:12,23/01/2014 1:55,4.3,200, Information Exposure,nan
CVE-2013-7328,8/03/2014 5:12,18/02/2014 11:55,5.8,189, Numeric Errors,nan
CVE-2013-6490,8/03/2014 5:11,6/02/2014 17:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6489,8/03/2014 5:11,6/02/2014 17:00,5.0,189, Numeric Errors,nan
CVE-2013-6419,8/03/2014 5:11,7/01/2014 18:55,5.0,200, Information Exposure,nan
CVE-2013-4112,8/03/2014 5:09,28/09/2013 19:55,5.4,200, Information Exposure,nan
CVE-2013-1921,8/03/2014 5:05,28/09/2013 19:55,1.9,310, Cryptographic Issues,nan
CVE-2013-0849,8/03/2014 5:03,7/12/2013 21:55,9.3,20, Improper Input Validation,nan
CVE-2013-0846,8/03/2014 5:03,7/12/2013 21:55,9.3,20, Improper Input Validation,nan
CVE-2013-0845,8/03/2014 5:03,7/12/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0244,8/03/2014 5:02,19/01/2014 17:16,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1571,8/03/2014 4:55,17/07/2012 21:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0826,8/03/2014 4:54,28/10/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0825,8/03/2014 4:54,28/10/2013 22:55,6.8,200, Information Exposure,nan
CVE-2011-4105,8/03/2014 4:51,17/02/2012 23:55,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1837,8/03/2014 4:47,15/02/2014 14:57,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1836,8/03/2014 4:47,15/02/2014 14:57,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1835,8/03/2014 4:47,15/02/2014 14:57,4.4,255, Credentials Management,nan
CVE-2011-1834,8/03/2014 4:47,15/02/2014 14:57,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1833,8/03/2014 4:47,3/10/2012 11:02,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1832,8/03/2014 4:47,15/02/2014 14:57,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1831,8/03/2014 4:47,15/02/2014 14:57,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-2211,7/03/2014 20:32,3/03/2014 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-1887,7/03/2014 20:04,3/03/2014 4:50,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2014-1886,7/03/2014 20:02,3/03/2014 4:50,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-1885,7/03/2014 20:01,3/03/2014 4:50,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2014-0701,7/03/2014 19:50,6/03/2014 11:55,7.8,399, Resource Management Errors,nan
CVE-2014-2245,7/03/2014 19:43,5/03/2014 16:37,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2014-0336,7/03/2014 19:19,6/03/2014 11:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0335,7/03/2014 19:19,6/03/2014 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0629,7/03/2014 19:16,6/03/2014 11:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0630,7/03/2014 19:14,6/03/2014 11:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0704,7/03/2014 19:12,6/03/2014 11:55,7.1,399, Resource Management Errors,nan
CVE-2014-0703,7/03/2014 19:12,6/03/2014 11:55,10.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0705,7/03/2014 19:08,6/03/2014 11:55,7.1,399, Resource Management Errors,nan
CVE-2011-3153,7/03/2014 19:07,6/03/2014 15:55,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-0706,7/03/2014 19:03,6/03/2014 11:55,7.8,399, Resource Management Errors,nan
CVE-2014-0707,7/03/2014 19:02,6/03/2014 11:55,7.8,399, Resource Management Errors,nan
CVE-2014-1911,7/03/2014 18:54,6/03/2014 11:55,7.8,287, Improper Authentication,nan
CVE-2013-3630,7/03/2014 14:40,1/11/2013 2:55,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3242,7/03/2014 13:46,3/05/2013 11:57,5.5,20, Improper Input Validation,nan
CVE-2013-3062,7/03/2014 13:39,1/05/2013 12:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3288,7/03/2014 13:14,22/11/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1694,6/03/2014 4:50,4/02/2014 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-0861,6/03/2014 4:50,22/02/2014 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0737,6/03/2014 4:50,22/02/2014 21:55,4.3,287, Improper Authentication,nan
CVE-2014-0721,6/03/2014 4:50,22/02/2014 21:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-0044,6/03/2014 4:50,8/02/2014 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7107,6/03/2014 4:50,15/01/2014 16:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7069,6/03/2014 4:50,14/12/2013 17:21,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6952,6/03/2014 4:49,22/02/2014 21:55,10.0,310, Cryptographic Issues,nan
CVE-2013-6950,6/03/2014 4:49,22/02/2014 21:55,7.8,310, Cryptographic Issues,nan
CVE-2013-6949,6/03/2014 4:49,22/02/2014 21:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6948,6/03/2014 4:49,22/02/2014 21:55,7.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6891,6/03/2014 4:49,26/01/2014 1:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-6824,6/03/2014 4:49,19/12/2013 4:24,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6767,6/03/2014 4:49,20/12/2013 22:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6645,6/03/2014 4:49,16/01/2014 12:17,6.8,399, Resource Management Errors,nan
CVE-2013-6641,6/03/2014 4:49,16/01/2014 12:17,7.5,399, Resource Management Errors,nan
CVE-2013-6640,6/03/2014 4:49,7/12/2013 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6639,6/03/2014 4:49,7/12/2013 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6638,6/03/2014 4:49,7/12/2013 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6636,6/03/2014 4:49,7/12/2013 0:55,4.3,20, Improper Input Validation,nan
CVE-2013-6634,6/03/2014 4:49,7/12/2013 0:55,6.8,287, Improper Authentication,nan
CVE-2013-6440,6/03/2014 4:49,14/02/2014 15:55,5.0,200, Information Exposure,nan
CVE-2013-6431,6/03/2014 4:49,9/12/2013 18:55,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-6428,6/03/2014 4:49,14/12/2013 17:21,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6427,6/03/2014 4:49,9/12/2013 18:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6425,6/03/2014 4:49,18/01/2014 19:55,5.0,189, Numeric Errors,nan
CVE-2013-6402,6/03/2014 4:49,5/01/2014 20:55,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-6359,6/03/2014 4:49,13/12/2013 18:55,4.3,20, Improper Input Validation,nan
CVE-2013-6048,6/03/2014 4:49,13/12/2013 18:55,5.0,20, Improper Input Validation,nan
CVE-2013-5179,6/03/2014 4:48,24/10/2013 3:48,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5178,6/03/2014 4:48,24/10/2013 3:48,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5139,6/03/2014 4:48,19/09/2013 10:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4592,6/03/2014 4:47,20/11/2013 13:19,4.0,399, Resource Management Errors,nan
CVE-2013-4563,6/03/2014 4:47,20/11/2013 13:19,7.1,189, Numeric Errors,nan
CVE-2013-4515,6/03/2014 4:47,12/11/2013 14:35,4.9,200, Information Exposure,nan
CVE-2013-4511,6/03/2014 4:47,12/11/2013 14:35,6.9,189, Numeric Errors,nan
CVE-2013-4477,6/03/2014 4:47,2/11/2013 19:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4377,6/03/2014 4:47,11/10/2013 22:55,2.3,399, Resource Management Errors,nan
CVE-2013-4348,6/03/2014 4:47,4/11/2013 15:55,7.1,399, Resource Management Errors,nan
CVE-2013-4270,6/03/2014 4:47,9/12/2013 18:55,3.6,20, Improper Input Validation,nan
CVE-2013-4244,6/03/2014 4:47,28/09/2013 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4113,6/03/2014 4:47,13/07/2013 13:10,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2930,6/03/2014 4:46,9/12/2013 18:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1792,6/03/2014 4:44,22/03/2013 11:59,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1032,6/03/2014 4:43,16/09/2013 13:02,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4610,6/03/2014 4:33,10/02/2014 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4085,6/03/2014 4:33,23/11/2012 20:55,6.8,287, Improper Authentication,nan
CVE-2011-3590,6/03/2014 4:32,15/02/2014 14:57,5.7,310, Cryptographic Issues,nan
CVE-2011-3589,6/03/2014 4:32,15/02/2014 14:57,5.7,310, Cryptographic Issues,nan
CVE-2011-3588,6/03/2014 4:32,15/02/2014 14:57,5.7,310, Cryptographic Issues,nan
CVE-2011-2500,6/03/2014 4:30,15/02/2014 14:57,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2319,5/03/2014 19:12,10/06/2013 17:55,5.8,310, Cryptographic Issues,nan
CVE-2012-1251,5/03/2014 19:12,4/06/2012 17:55,5.8,310, Cryptographic Issues,nan
CVE-2013-3641,5/03/2014 19:11,10/06/2013 17:55,5.8,310, Cryptographic Issues,nan
CVE-2013-4699,5/03/2014 19:09,21/08/2013 16:55,5.8,310, Cryptographic Issues,nan
CVE-2013-4700,5/03/2014 19:03,21/08/2013 16:55,5.8,310, Cryptographic Issues,nan
CVE-2012-6606,5/03/2014 19:02,31/08/2013 17:55,5.8,310, Cryptographic Issues,nan
CVE-2013-1651,5/03/2014 19:01,5/09/2013 11:44,5.8,310, Cryptographic Issues,nan
CVE-2013-1228,5/03/2014 19:00,6/09/2013 11:15,4.3,310, Cryptographic Issues,nan
CVE-2013-5999,5/03/2014 18:58,22/11/2013 19:55,5.8,310, Cryptographic Issues,nan
CVE-2010-3443,5/03/2014 18:48,23/11/2013 11:55,5.0,399, Resource Management Errors,nan
CVE-2013-6392,5/03/2014 18:29,30/11/2013 2:55,4.9,399, Resource Management Errors,nan
CVE-2013-6918,5/03/2014 17:46,30/11/2013 11:43,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-2234,5/03/2014 17:44,5/03/2014 5:11,6.4,20, Improper Input Validation,nan
CVE-2012-0434,4/03/2014 18:56,2/12/2013 4:36,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0414,4/03/2014 18:56,2/12/2013 4:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6696,4/03/2014 18:54,2/12/2013 22:55,7.1,20, Improper Input Validation,nan
CVE-2013-6695,4/03/2014 18:54,2/12/2013 22:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6834,4/03/2014 18:52,21/11/2013 4:40,4.9,20, Improper Input Validation,nan
CVE-2014-1840,4/03/2014 17:36,3/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4981,4/03/2014 16:51,3/03/2014 16:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4980,4/03/2014 16:50,3/03/2014 16:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1409,4/03/2014 16:11,3/03/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2090,3/03/2014 20:58,2/03/2014 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-2243,3/03/2014 20:55,2/03/2014 4:57,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-2264,3/03/2014 20:47,2/03/2014 17:55,7.8,255, Credentials Management,nan
CVE-2012-6637,3/03/2014 20:42,3/03/2014 4:50,7.5,20, Improper Input Validation,nan
CVE-2014-1881,3/03/2014 20:39,3/03/2014 4:50,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1884,3/03/2014 20:37,3/03/2014 4:50,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1883,3/03/2014 20:32,3/03/2014 4:50,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-1882,3/03/2014 20:26,3/03/2014 4:50,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2818,3/03/2014 17:46,1/12/2013 15:55,4.7,20, Improper Input Validation,nan
CVE-2013-3519,3/03/2014 17:45,4/12/2013 18:56,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-2089,3/03/2014 17:25,2/03/2014 17:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-2099,3/03/2014 16:42,2/03/2014 4:57,6.8,189, Numeric Errors,nan
CVE-2011-3634,3/03/2014 15:41,1/03/2014 0:55,2.6,200, Information Exposure,nan
CVE-2014-2103,28/02/2014 16:48,27/02/2014 20:55,6.8,20, Improper Input Validation,nan
CVE-2014-2231,28/02/2014 15:27,27/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6699,28/02/2014 0:11,22/11/2013 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6608,27/02/2014 21:47,25/11/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2825,27/02/2014 21:44,4/12/2013 20:55,4.3,20, Improper Input Validation,nan
CVE-2014-1265,27/02/2014 21:39,27/02/2014 1:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-3315,27/02/2014 21:37,27/10/2011 21:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-1256,27/02/2014 19:38,27/02/2014 1:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1262,27/02/2014 19:36,27/02/2014 1:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1255,27/02/2014 19:36,27/02/2014 1:55,7.5,20, Improper Input Validation,nan
CVE-2014-2075,27/02/2014 19:26,27/02/2014 11:55,10.0,287, Improper Authentication,nan
CVE-2014-1967,27/02/2014 18:58,27/02/2014 1:55,5.8,310, Cryptographic Issues,nan
CVE-2013-6812,27/02/2014 18:48,28/12/2013 4:53,5.8,310, Cryptographic Issues,nan
CVE-2014-1261,27/02/2014 18:07,27/02/2014 1:55,7.5,189, Numeric Errors,nan
CVE-2014-1258,27/02/2014 17:59,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1246,27/02/2014 17:13,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0817,27/02/2014 17:08,27/02/2014 1:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2014-0816,27/02/2014 16:38,27/02/2014 1:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-1257,27/02/2014 13:55,27/02/2014 1:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2014-1254,27/02/2014 13:50,27/02/2014 1:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1243,27/02/2014 13:47,27/02/2014 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6945,25/02/2014 18:18,4/12/2013 22:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6000,25/02/2014 18:16,5/12/2013 12:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6881,25/02/2014 18:11,7/01/2014 17:04,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-4564,25/02/2014 18:02,7/01/2014 17:04,5.0,189, Numeric Errors,nan
CVE-2013-2214,25/02/2014 14:54,10/02/2014 23:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-7288,25/02/2014 14:47,10/01/2014 16:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6953,25/02/2014 14:38,3/01/2014 18:55,5.0,200, Information Exposure,nan
CVE-2013-7097,25/02/2014 14:05,8/01/2014 15:29,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7275,25/02/2014 14:03,8/01/2014 15:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7240,25/02/2014 13:18,3/01/2014 18:54,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0031,25/02/2014 12:38,15/01/2014 16:08,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-7106,25/02/2014 12:19,15/01/2014 16:08,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1853,25/02/2014 2:44,24/01/2014 18:55,2.1,310, Cryptographic Issues,nan
CVE-2013-7256,25/02/2014 2:17,3/01/2014 18:54,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7317,25/02/2014 2:14,24/01/2014 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7289,25/02/2014 2:01,10/01/2014 16:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6884,25/02/2014 1:44,7/01/2014 17:04,10.0,255, Credentials Management,nan
CVE-2012-6635,25/02/2014 1:38,21/01/2014 1:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6634,25/02/2014 1:37,21/01/2014 1:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6633,25/02/2014 1:36,21/01/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4978,25/02/2014 1:13,5/02/2014 15:10,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1594,25/02/2014 1:04,5/02/2014 18:55,5.8,20, Improper Input Validation,nan
CVE-2011-3344,25/02/2014 0:43,5/02/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2927,25/02/2014 0:43,5/02/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2920,25/02/2014 0:28,5/02/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2074,25/02/2014 0:26,5/02/2014 19:55,5.0,200, Information Exposure,nan
CVE-2011-4613,25/02/2014 0:16,5/02/2014 19:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-2919,25/02/2014 0:13,5/02/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0875,24/02/2014 23:41,4/02/2014 23:55,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6493,24/02/2014 22:17,4/02/2014 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1966,24/02/2014 19:53,24/02/2014 4:48,7.8,399, Resource Management Errors,nan
CVE-2014-0758,24/02/2014 19:45,24/02/2014 4:48,9.3,20, Improper Input Validation,nan
CVE-2013-6652,24/02/2014 19:20,24/02/2014 4:48,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2817,24/02/2014 18:48,24/02/2014 4:48,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2014-0730,24/02/2014 17:53,22/02/2014 21:55,6.8,20, Improper Input Validation,nan
CVE-2013-6951,24/02/2014 17:19,22/02/2014 21:55,7.1,310, Cryptographic Issues,nan
CVE-2014-0710,24/02/2014 16:55,22/02/2014 21:55,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-5192,21/02/2014 19:49,28/01/2014 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2747,21/02/2014 19:48,29/01/2014 18:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-6930,21/02/2014 19:45,29/01/2014 5:37,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6931,21/02/2014 19:44,29/01/2014 5:37,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6108,21/02/2014 19:43,15/02/2014 14:57,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-4661,21/02/2014 19:35,29/01/2014 18:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4662,21/02/2014 19:29,29/01/2014 18:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4889,21/02/2014 19:15,29/01/2014 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4888,21/02/2014 19:13,29/01/2014 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1376,21/02/2014 18:46,30/01/2014 15:06,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4738,21/02/2014 18:18,3/02/2014 3:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4327,21/02/2014 18:12,3/02/2014 3:55,2.1,200, Information Exposure,nan
CVE-2013-0234,21/02/2014 18:08,2/02/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4979,21/02/2014 17:44,31/01/2014 15:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1931,21/02/2014 5:06,10/02/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-1930,21/02/2014 5:06,10/02/2014 22:55,4.3,200, Information Exposure,nan
CVE-2014-1915,21/02/2014 5:06,7/02/2014 15:48,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2014-1476,21/02/2014 5:06,24/01/2014 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2014-1219,21/02/2014 5:06,14/02/2014 13:10,5.1,20, Improper Input Validation,nan
CVE-2014-0814,21/02/2014 5:06,14/02/2014 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-0757,21/02/2014 5:06,31/01/2014 6:15,5.0,399, Resource Management Errors,nan
CVE-2014-0751,21/02/2014 5:06,25/01/2014 22:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0750,21/02/2014 5:06,25/01/2014 22:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0027,21/02/2014 5:06,26/01/2014 1:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2014-0009,21/02/2014 5:06,20/01/2014 15:14,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2014-0008,21/02/2014 5:06,20/01/2014 15:14,4.0,255, Credentials Management,nan
CVE-2013-7320,21/02/2014 5:06,6/02/2014 16:10,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7135,21/02/2014 5:05,28/01/2014 0:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-7039,21/02/2014 5:05,13/12/2013 18:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7038,21/02/2014 5:05,13/12/2013 18:55,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4415,21/02/2014 5:02,14/02/2014 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3933,21/02/2014 5:01,11/02/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1623,21/02/2014 4:58,8/02/2013 19:55,4.3,310, Cryptographic Issues,nan
CVE-2013-1492,21/02/2014 4:58,28/03/2013 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0422,21/02/2014 4:56,10/01/2013 21:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6618,21/02/2014 4:56,24/12/2013 20:55,2.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6149,21/02/2014 4:55,14/02/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5614,21/02/2014 4:55,3/12/2012 12:49,4.0,20, Improper Input Validation,nan
CVE-2012-5613,21/02/2014 4:55,3/12/2012 12:49,6.0,16, Configuration,nan
CVE-2012-3174,21/02/2014 4:52,14/01/2013 22:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2749,21/02/2014 4:51,17/08/2012 0:55,4.0,399, Resource Management Errors,nan
CVE-2012-2122,21/02/2014 4:50,26/06/2012 18:55,5.1,287, Improper Authentication,nan
CVE-2012-2102,21/02/2014 4:50,17/08/2012 0:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0553,21/02/2014 4:48,28/03/2013 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0394,21/02/2014 4:48,8/01/2012 15:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3206,21/02/2014 4:44,8/01/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1764,21/02/2014 4:42,5/10/2011 2:56,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2011-1575,21/02/2014 4:41,23/05/2011 22:55,5.8,399, Resource Management Errors,nan
CVE-2011-1097,21/02/2014 4:40,30/03/2011 22:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0192,21/02/2014 4:39,3/03/2011 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0191,21/02/2014 4:39,3/03/2011 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4665,21/02/2014 4:37,3/05/2011 20:55,4.3,189, Numeric Errors,nan
CVE-2010-4336,21/02/2014 4:36,17/12/2010 19:00,5.0,399, Resource Management Errors,nan
CVE-2010-3089,21/02/2014 4:34,15/09/2010 20:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2441,21/02/2014 4:33,24/06/2010 17:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3601,21/02/2014 2:19,17/02/2014 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1069,21/02/2014 2:14,17/02/2014 16:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2014-1861,21/02/2014 2:04,18/02/2014 11:55,9.3,20, Improper Input Validation,nan
CVE-2013-6396,21/02/2014 0:40,18/02/2014 19:55,5.8,310, Cryptographic Issues,nan
CVE-2014-0732,21/02/2014 0:26,20/02/2014 5:18,5.0,287, Improper Authentication,nan
CVE-2014-0733,20/02/2014 23:52,20/02/2014 15:27,5.0,287, Improper Authentication,nan
CVE-2013-4420,20/02/2014 23:51,20/02/2014 16:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4083,19/02/2014 0:40,17/02/2014 16:55,4.3,310, Cryptographic Issues,nan
CVE-2012-0270,18/02/2014 19:49,17/02/2014 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-0627,18/02/2014 19:46,18/02/2014 0:55,5.0,310, Cryptographic Issues,nan
CVE-2014-0626,18/02/2014 19:45,18/02/2014 0:55,5.0,310, Cryptographic Issues,nan
CVE-2014-0625,18/02/2014 19:43,18/02/2014 0:55,5.0,399, Resource Management Errors,nan
CVE-2013-0346,18/02/2014 19:40,15/02/2014 14:57,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-4737,18/02/2014 19:35,15/02/2014 14:57,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-6638,18/02/2014 19:21,15/02/2014 14:57,7.8,399, Resource Management Errors,nan
CVE-2012-2663,18/02/2014 19:12,15/02/2014 14:57,7.5,20, Improper Input Validation,nan
CVE-2012-1171,18/02/2014 18:57,15/02/2014 14:57,5.0,200, Information Exposure,nan
CVE-2011-3605,18/02/2014 18:55,17/02/2014 16:55,5.0,20, Improper Input Validation,nan
CVE-2011-3604,18/02/2014 18:54,17/02/2014 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6166,18/02/2014 18:27,15/02/2014 14:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6167,18/02/2014 18:21,15/02/2014 14:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2909,18/02/2014 18:19,15/02/2014 14:57,4.9,200, Information Exposure,nan
CVE-2013-6492,18/02/2014 15:49,14/02/2014 15:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6441,18/02/2014 15:43,14/02/2014 15:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-1100,14/02/2014 19:19,14/02/2014 15:55,5.8,287, Improper Authentication,nan
CVE-2012-0062,14/02/2014 18:46,14/02/2014 15:55,5.8,287, Improper Authentication,nan
CVE-2012-0052,14/02/2014 18:44,14/02/2014 15:55,5.8,20, Improper Input Validation,nan
CVE-2013-2829,14/02/2014 17:48,14/02/2014 13:10,7.1,20, Improper Input Validation,nan
CVE-2014-1467,14/02/2014 17:34,14/02/2014 13:10,5.0,255, Credentials Management,nan
CVE-2014-0724,13/02/2014 17:13,13/02/2014 5:24,4.0,20, Improper Input Validation,nan
CVE-2014-0725,13/02/2014 14:11,13/02/2014 5:24,5.0,287, Improper Authentication,nan
CVE-2014-0722,13/02/2014 14:08,13/02/2014 5:24,5.0,287, Improper Authentication,nan
CVE-2013-1980,12/02/2014 14:09,11/02/2014 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1413,12/02/2014 13:55,11/02/2014 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7295,12/02/2014 4:50,17/01/2014 21:55,4.0,310, Cryptographic Issues,nan
CVE-2013-7182,12/02/2014 4:50,4/02/2014 5:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4481,12/02/2014 4:39,2/05/2013 14:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4466,12/02/2014 4:39,25/04/2013 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3514,12/02/2014 4:38,25/08/2012 10:29,5.0,310, Cryptographic Issues,nan
CVE-2012-2864,12/02/2014 4:37,22/08/2012 10:42,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1018,12/02/2014 4:27,25/02/2011 19:00,10.0,20, Improper Input Validation,nan
CVE-2011-0543,12/02/2014 4:26,2/09/2011 23:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0541,12/02/2014 4:26,2/09/2011 23:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-0064,11/02/2014 19:56,10/02/2014 23:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-5012,11/02/2014 15:22,11/02/2014 2:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6143,10/02/2014 20:06,31/01/2014 16:55,5.0,399, Resource Management Errors,nan
CVE-2011-4930,10/02/2014 20:00,10/02/2014 18:15,4.4,134, Use of Externally-Controlled Format String,nan
CVE-2011-4092,10/02/2014 19:45,10/02/2014 18:15,5.8,20, Improper Input Validation,nan
CVE-2010-4777,10/02/2014 18:39,10/02/2014 18:15,4.3,20, Improper Input Validation,nan
CVE-2014-1916,10/02/2014 17:26,8/02/2014 0:55,5.0,399, Resource Management Errors,nan
CVE-2013-1904,10/02/2014 15:44,8/02/2014 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5524,10/02/2014 15:16,8/02/2014 0:55,4.3,20, Improper Input Validation,nan
CVE-2011-4099,10/02/2014 15:09,8/02/2014 0:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-4226,7/02/2014 20:57,6/02/2014 17:00,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-2038,7/02/2014 15:24,6/02/2014 17:00,4.3,20, Improper Input Validation,nan
CVE-2013-4739,7/02/2014 4:49,3/02/2014 3:55,4.9,200, Information Exposure,nan
CVE-2013-2635,7/02/2014 4:47,22/03/2013 11:59,1.9,399, Resource Management Errors,nan
CVE-2013-2634,7/02/2014 4:47,22/03/2013 11:59,1.9,399, Resource Management Errors,nan
CVE-2013-2239,7/02/2014 4:46,12/11/2013 14:35,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-2237,7/02/2014 4:46,4/07/2013 21:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2232,7/02/2014 4:46,4/07/2013 21:55,4.9,20, Improper Input Validation,nan
CVE-2013-2146,7/02/2014 4:46,7/06/2013 14:03,4.7,20, Improper Input Validation,nan
CVE-2013-2128,7/02/2014 4:46,7/06/2013 14:03,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1848,7/02/2014 4:46,22/03/2013 11:59,6.2,20, Improper Input Validation,nan
CVE-2013-0914,7/02/2014 4:45,22/03/2013 11:59,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-5854,7/02/2014 4:43,19/11/2012 12:10,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5534,7/02/2014 4:43,3/12/2012 21:55,7.5,20, Improper Input Validation,nan
CVE-2012-0059,6/02/2014 16:06,5/02/2014 18:55,4.3,310, Cryptographic Issues,nan
CVE-2013-1852,5/02/2014 18:13,5/02/2014 15:10,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3365,5/02/2014 14:26,4/02/2014 21:55,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-3098,5/02/2014 14:19,4/02/2014 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4383,4/02/2014 20:40,31/01/2014 15:07,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6035,4/02/2014 16:26,4/02/2014 5:39,10.0,287, Improper Authentication,nan
CVE-2013-6034,4/02/2014 16:25,4/02/2014 5:39,10.0,255, Credentials Management,nan
CVE-2013-6033,4/02/2014 15:37,4/02/2014 5:39,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6032,4/02/2014 15:29,4/02/2014 5:39,10.0,20, Improper Input Validation,nan
CVE-2013-7301,3/02/2014 18:44,2/02/2014 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4331,3/02/2014 18:22,2/02/2014 0:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-6838,31/01/2014 6:07,28/01/2014 0:55,10.0,310, Cryptographic Issues,nan
CVE-2012-6087,31/01/2014 5:51,16/09/2013 13:02,5.8,20, Improper Input Validation,nan
CVE-2013-2234,30/01/2014 5:10,4/07/2013 21:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2014-1202,28/01/2014 4:57,25/01/2014 1:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5385,28/01/2014 4:55,2/01/2014 14:59,8.5,20, Improper Input Validation,nan
CVE-2013-5128,28/01/2014 4:55,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5127,28/01/2014 4:55,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5126,28/01/2014 4:55,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5125,28/01/2014 4:55,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1798,28/01/2014 4:51,22/03/2013 11:59,6.2,20, Improper Input Validation,nan
CVE-2013-1797,28/01/2014 4:51,22/03/2013 11:59,6.8,399, Resource Management Errors,nan
CVE-2013-1790,28/01/2014 4:51,9/04/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1788,28/01/2014 4:51,9/04/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1643,28/01/2014 4:51,6/03/2013 13:10,5.0,200, Information Exposure,nan
CVE-2013-1635,28/01/2014 4:51,6/03/2013 13:10,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1443,28/01/2014 4:51,23/09/2013 20:55,5.0,287, Improper Authentication,nan
CVE-2013-1417,28/01/2014 4:51,20/11/2013 14:12,3.5,20, Improper Input Validation,nan
CVE-2013-1046,28/01/2014 4:51,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1045,28/01/2014 4:51,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1044,28/01/2014 4:51,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1043,28/01/2014 4:51,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1042,28/01/2014 4:51,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1024,28/01/2014 4:50,5/06/2013 14:39,6.8,20, Improper Input Validation,nan
CVE-2013-0857,28/01/2014 4:50,7/12/2013 21:55,9.3,20, Improper Input Validation,nan
CVE-2013-0854,28/01/2014 4:50,7/12/2013 21:55,9.3,20, Improper Input Validation,nan
CVE-2013-0853,28/01/2014 4:50,7/12/2013 21:55,9.3,189, Numeric Errors,nan
CVE-2013-0850,28/01/2014 4:50,7/12/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0844,28/01/2014 4:50,7/12/2013 21:55,9.3,189, Numeric Errors,nan
CVE-2012-2870,28/01/2014 4:45,31/08/2012 19:55,4.3,399, Resource Management Errors,nan
CVE-2012-2825,28/01/2014 4:45,27/06/2012 10:18,5.0,20, Improper Input Validation,nan
CVE-2012-2807,28/01/2014 4:45,27/06/2012 10:18,6.8,189, Numeric Errors,nan
CVE-2012-0841,28/01/2014 4:42,21/12/2012 5:46,5.0,399, Resource Management Errors,nan
CVE-2014-0022,27/01/2014 17:20,26/01/2014 16:58,5.0,20, Improper Input Validation,nan
CVE-2013-7248,27/01/2014 15:58,26/01/2014 1:55,10.0,255, Credentials Management,nan
CVE-2013-7247,27/01/2014 15:57,26/01/2014 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6434,24/01/2014 22:23,24/01/2014 18:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5350,24/01/2014 22:00,24/01/2014 15:08,7.5,20, Improper Input Validation,nan
CVE-2014-0615,24/01/2014 19:22,15/01/2014 16:08,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2014-0616,24/01/2014 19:21,15/01/2014 16:08,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-5669,24/01/2014 16:27,24/01/2014 4:38,7.8,255, Credentials Management,nan
CVE-2013-5668,24/01/2014 16:25,24/01/2014 4:38,7.8,255, Credentials Management,nan
CVE-2013-5667,24/01/2014 16:23,24/01/2014 4:38,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-4130,24/01/2014 4:35,20/08/2013 22:55,5.0,399, Resource Management Errors,nan
CVE-2012-6607,24/01/2014 4:30,23/11/2013 18:55,3.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6535,24/01/2014 4:30,2/12/2013 22:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0786,24/01/2014 4:24,23/11/2013 18:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-7306,23/01/2014 19:09,23/01/2014 17:55,5.4,20, Improper Input Validation,nan
CVE-2013-6443,23/01/2014 18:18,23/01/2014 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6448,23/01/2014 18:17,23/01/2014 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6447,23/01/2014 18:16,23/01/2014 0:55,5.0,200, Information Exposure,nan
CVE-2013-6412,23/01/2014 17:55,23/01/2014 0:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-7305,23/01/2014 16:38,22/01/2014 19:55,4.3,255, Credentials Management,nan
CVE-2013-2750,23/01/2014 16:21,22/01/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2104,22/01/2014 21:57,21/01/2014 18:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1769,22/01/2014 20:50,21/01/2014 18:55,5.0,310, Cryptographic Issues,nan
CVE-2013-0157,22/01/2014 20:26,21/01/2014 18:55,2.1,200, Information Exposure,nan
CVE-2013-6922,22/01/2014 19:49,21/01/2014 16:06,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3482,21/01/2014 21:14,19/01/2014 17:16,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3483,21/01/2014 21:12,19/01/2014 17:16,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2142,21/01/2014 20:54,19/01/2014 18:02,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-5270,21/01/2014 17:31,21/01/2014 1:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5297,21/01/2014 17:28,21/01/2014 1:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-5296,21/01/2014 17:20,21/01/2014 1:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-5295,21/01/2014 17:19,21/01/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5294,21/01/2014 17:18,21/01/2014 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5293,21/01/2014 17:16,21/01/2014 1:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2014-0792,21/01/2014 14:14,17/01/2014 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6630,17/01/2014 19:16,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6629,17/01/2014 18:51,16/01/2014 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6628,17/01/2014 18:50,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6627,17/01/2014 18:35,16/01/2014 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6786,17/01/2014 16:01,16/01/2014 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6687,17/01/2014 15:12,16/01/2014 19:55,4.0,255, Credentials Management,nan
CVE-2013-7113,17/01/2014 5:20,19/12/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-4672,17/01/2014 5:17,1/08/2013 13:32,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4671,17/01/2014 5:17,1/08/2013 13:32,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4670,17/01/2014 5:17,1/08/2013 13:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1993,17/01/2014 5:14,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1762,17/01/2014 5:13,8/03/2013 18:55,6.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1617,17/01/2014 5:13,1/08/2013 13:32,7.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1616,17/01/2014 5:13,1/08/2013 13:32,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-0632,17/01/2014 5:12,17/01/2013 0:55,10.0,200, Information Exposure,nan
CVE-2013-2827,16/01/2014 17:21,15/01/2014 16:08,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2826,16/01/2014 17:18,15/01/2014 16:08,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2820,16/01/2014 16:47,15/01/2014 16:08,10.0,287, Improper Authentication,nan
CVE-2013-2819,16/01/2014 16:44,15/01/2014 16:08,9.3,255, Credentials Management,nan
CVE-2010-0746,14/01/2014 16:21,13/01/2014 21:55,6.2,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7292,14/01/2014 15:01,13/01/2014 15:37,3.5,287, Improper Authentication,nan
CVE-2014-0805,14/01/2014 4:49,12/01/2014 18:34,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-7081,14/01/2014 4:29,23/12/2013 23:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-7075,14/01/2014 4:29,23/12/2013 23:55,6.5,310, Cryptographic Issues,nan
CVE-2013-6883,14/01/2014 4:29,17/12/2013 16:08,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6882,14/01/2014 4:29,17/12/2013 16:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6386,14/01/2014 4:28,7/12/2013 21:55,6.8,310, Cryptographic Issues,nan
CVE-2013-6385,14/01/2014 4:28,7/12/2013 21:55,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4461,14/01/2014 4:27,23/12/2013 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4414,14/01/2014 4:27,23/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4405,14/01/2014 4:27,23/12/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4404,14/01/2014 4:27,23/12/2013 22:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4325,14/01/2014 4:27,23/09/2013 10:18,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-3709,14/01/2014 4:26,23/12/2013 23:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-2629,14/01/2014 4:25,23/12/2013 20:55,5.0,20, Improper Input Validation,nan
CVE-2013-2162,14/01/2014 4:24,19/08/2013 13:07,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-2068,14/01/2014 4:24,28/09/2013 19:55,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2126,14/01/2014 4:17,1/10/2013 17:55,4.3,310, Cryptographic Issues,nan
CVE-2011-2022,14/01/2014 4:08,9/05/2011 19:55,6.9,20, Improper Input Validation,nan
CVE-2011-1776,14/01/2014 4:08,6/09/2011 16:55,5.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1746,14/01/2014 4:07,9/05/2011 19:55,6.9,189, Numeric Errors,nan
CVE-2011-1745,14/01/2014 4:07,9/05/2011 19:55,6.9,189, Numeric Errors,nan
CVE-2011-0711,14/01/2014 4:05,1/03/2011 23:00,2.1,200, Information Exposure,nan
CVE-2010-4649,14/01/2014 4:01,18/02/2011 20:00,6.9,189, Numeric Errors,nan
CVE-2014-0804,13/01/2014 20:05,12/01/2014 18:34,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0803,13/01/2014 19:47,12/01/2014 18:34,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2014-0802,13/01/2014 19:07,12/01/2014 18:34,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-5292,10/01/2014 18:36,10/01/2014 16:47,1.9,200, Information Exposure,nan
CVE-2010-5291,10/01/2014 18:35,10/01/2014 16:47,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-4460,10/01/2014 18:11,10/01/2014 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2014-1234,10/01/2014 17:57,10/01/2014 12:02,2.1,200, Information Exposure,nan
CVE-2014-1233,10/01/2014 17:53,10/01/2014 12:02,2.1,200, Information Exposure,nan
CVE-2013-7282,10/01/2014 17:37,10/01/2014 12:02,10.0,287, Improper Authentication,nan
CVE-2013-7139,10/01/2014 16:04,9/01/2014 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7283,10/01/2014 15:07,9/01/2014 18:07,9.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2014-0752,10/01/2014 14:56,9/01/2014 18:07,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6955,10/01/2014 13:54,9/01/2014 18:07,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1780,8/01/2014 17:46,7/01/2014 19:55,6.1,20, Improper Input Validation,nan
CVE-2013-7026,8/01/2014 4:42,9/12/2013 18:55,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-6763,8/01/2014 4:42,12/11/2013 14:35,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6192,8/01/2014 4:42,17/12/2013 4:46,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6191,8/01/2014 4:42,17/12/2013 4:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6181,8/01/2014 4:42,28/12/2013 4:53,2.1,310, Cryptographic Issues,nan
CVE-2013-6180,8/01/2014 4:42,9/12/2013 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6178,8/01/2014 4:42,19/12/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6170,8/01/2014 4:42,17/10/2013 23:55,4.3,20, Improper Input Validation,nan
CVE-2013-4516,8/01/2014 4:40,12/11/2013 14:35,4.9,200, Information Exposure,nan
CVE-2013-3576,8/01/2014 4:39,14/06/2013 18:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-2096,8/01/2014 4:37,9/07/2013 17:55,2.1,399, Resource Management Errors,nan
CVE-2012-4508,8/01/2014 4:32,21/12/2012 11:47,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-4328,8/01/2014 4:23,16/06/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2899,7/01/2014 3:32,5/01/2014 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2898,7/01/2014 3:31,5/01/2014 20:55,5.0,310, Cryptographic Issues,nan
CVE-2009-5137,7/01/2014 2:53,3/01/2014 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6957,4/01/2014 4:51,13/12/2013 18:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6956,4/01/2014 4:51,13/12/2013 18:07,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6937,4/01/2014 4:50,4/12/2013 16:15,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6389,4/01/2014 4:50,7/12/2013 21:55,5.8,20, Improper Input Validation,nan
CVE-2013-6388,4/01/2014 4:50,24/12/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6387,4/01/2014 4:50,24/12/2013 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4550,4/01/2014 4:48,24/12/2013 18:55,5.1,310, Cryptographic Issues,nan
CVE-2013-4402,4/01/2014 4:48,28/10/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2013-4351,4/01/2014 4:48,10/10/2013 0:55,5.8,310, Cryptographic Issues,nan
CVE-2013-4350,4/01/2014 4:48,25/09/2013 10:31,5.0,310, Cryptographic Issues,nan
CVE-2013-4162,4/01/2014 4:48,29/07/2013 13:59,4.7,399, Resource Management Errors,nan
CVE-2013-3233,4/01/2014 4:47,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3230,4/01/2014 4:47,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3226,4/01/2014 4:47,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-2895,4/01/2014 4:47,16/09/2013 13:01,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2894,4/01/2014 4:47,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2888,4/01/2014 4:47,16/09/2013 13:01,6.2,20, Improper Input Validation,nan
CVE-2013-2548,4/01/2014 4:46,15/03/2013 20:55,2.1,310, Cryptographic Issues,nan
CVE-2013-2547,4/01/2014 4:46,15/03/2013 20:55,2.1,310, Cryptographic Issues,nan
CVE-2013-2546,4/01/2014 4:46,15/03/2013 20:55,2.1,310, Cryptographic Issues,nan
CVE-2013-2148,4/01/2014 4:46,7/06/2013 14:03,2.1,399, Resource Management Errors,nan
CVE-2013-2140,4/01/2014 4:46,25/09/2013 10:31,3.8,20, Improper Input Validation,nan
CVE-2013-1929,4/01/2014 4:46,7/06/2013 14:03,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1819,4/01/2014 4:45,6/03/2013 22:55,4.6,20, Improper Input Validation,nan
CVE-2012-5375,4/01/2014 4:42,18/02/2013 11:56,4.0,310, Cryptographic Issues,nan
CVE-2012-5374,4/01/2014 4:42,18/02/2013 11:56,4.0,310, Cryptographic Issues,nan
CVE-2011-5268,4/01/2014 4:35,24/12/2013 19:55,4.3,310, Cryptographic Issues,nan
CVE-2011-3941,4/01/2014 4:34,9/12/2013 16:34,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-7222,3/01/2014 17:12,2/01/2014 14:59,5.0,310, Cryptographic Issues,nan
CVE-2013-7223,3/01/2014 17:11,2/01/2014 14:59,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7225,3/01/2014 17:04,2/01/2014 14:59,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7224,3/01/2014 16:58,2/01/2014 14:59,5.0,200, Information Exposure,nan
CVE-2013-7249,3/01/2014 16:57,2/01/2014 14:59,5.0,200, Information Exposure,nan
CVE-2013-6002,3/01/2014 15:31,5/12/2013 12:55,5.0,399, Resource Management Errors,nan
CVE-2013-6001,3/01/2014 15:22,5/12/2013 12:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6003,3/01/2014 15:21,5/12/2013 12:55,3.5,20, Improper Input Validation,nan
CVE-2013-6900,3/01/2014 15:20,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6004,3/01/2014 15:20,5/12/2013 12:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6902,3/01/2014 15:19,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5269,2/01/2014 18:21,2/01/2014 14:59,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0264,2/01/2014 16:39,31/12/2013 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0263,2/01/2014 16:35,31/12/2013 20:55,4.0,200, Information Exposure,nan
CVE-2012-0262,2/01/2014 16:32,31/12/2013 20:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0261,2/01/2014 16:24,31/12/2013 20:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6907,31/12/2013 17:09,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6908,31/12/2013 17:08,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6909,31/12/2013 17:04,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6910,31/12/2013 17:03,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6914,31/12/2013 17:02,5/12/2013 12:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6915,31/12/2013 17:01,5/12/2013 12:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7209,31/12/2013 15:19,30/12/2013 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5326,31/12/2013 4:26,13/11/2013 1:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5221,31/12/2013 4:26,24/09/2013 10:35,3.5,20, Improper Input Validation,nan
CVE-2013-4339,31/12/2013 4:25,12/09/2013 13:30,7.5,20, Improper Input Validation,nan
CVE-2011-2901,31/12/2013 4:09,1/10/2013 17:55,5.5,399, Resource Management Errors,nan
CVE-2011-2517,31/12/2013 4:08,24/05/2012 23:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2495,31/12/2013 4:08,13/06/2012 10:24,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-2491,31/12/2013 4:08,1/03/2013 12:37,4.9,399, Resource Management Errors,nan
CVE-2013-7233,31/12/2013 1:42,30/12/2013 4:53,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-7232,31/12/2013 1:40,30/12/2013 4:53,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7231,31/12/2013 1:39,30/12/2013 4:53,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5222,31/12/2013 1:38,30/12/2013 4:53,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5210,31/12/2013 1:34,30/12/2013 4:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5220,30/12/2013 19:29,30/12/2013 4:53,6.1,20, Improper Input Validation,nan
CVE-2013-5218,30/12/2013 19:27,30/12/2013 4:53,2.9,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5219,30/12/2013 19:26,30/12/2013 4:53,3.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5039,30/12/2013 19:25,30/12/2013 4:53,5.4,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5038,30/12/2013 19:14,30/12/2013 4:53,5.8,287, Improper Authentication,nan
CVE-2013-5037,30/12/2013 19:12,30/12/2013 4:53,3.3,255, Credentials Management,nan
CVE-2013-4858,30/12/2013 18:50,30/12/2013 4:53,4.3,20, Improper Input Validation,nan
CVE-2013-6932,30/12/2013 16:48,28/12/2013 4:53,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6929,30/12/2013 16:39,28/12/2013 4:53,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6886,30/12/2013 16:33,28/12/2013 4:53,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6808,30/12/2013 16:14,28/12/2013 4:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6006,30/12/2013 15:22,28/12/2013 4:53,5.8,287, Improper Authentication,nan
CVE-2013-4424,27/12/2013 17:44,23/12/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6787,27/12/2013 17:40,5/12/2013 18:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0847,27/12/2013 16:28,7/12/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0851,27/12/2013 16:27,7/12/2013 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0855,27/12/2013 16:21,7/12/2013 21:55,9.3,189, Numeric Errors,nan
CVE-2013-0856,27/12/2013 16:19,7/12/2013 21:55,9.3,20, Improper Input Validation,nan
CVE-2013-0859,27/12/2013 16:17,7/12/2013 21:55,9.3,189, Numeric Errors,nan
CVE-2013-2179,27/12/2013 16:00,27/12/2013 1:55,4.3,310, Cryptographic Issues,nan
CVE-2010-0430,27/12/2013 15:20,27/12/2013 1:55,7.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2821,26/12/2013 16:44,21/12/2013 14:22,7.1,20, Improper Input Validation,nan
CVE-2013-2822,26/12/2013 16:43,21/12/2013 14:22,4.7,20, Improper Input Validation,nan
CVE-2013-4452,26/12/2013 15:50,24/12/2013 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-6616,26/12/2013 15:40,24/12/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6795,26/12/2013 15:14,24/12/2013 18:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-7102,24/12/2013 22:07,23/12/2013 23:55,6.8,20, Improper Input Validation,nan
CVE-2013-6890,24/12/2013 17:16,23/12/2013 22:55,5.0,287, Improper Authentication,nan
CVE-2013-3705,23/12/2013 22:29,22/12/2013 15:16,4.9,20, Improper Input Validation,nan
CVE-2012-4135,23/12/2013 17:15,21/12/2013 14:22,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4131,23/12/2013 16:09,21/12/2013 14:22,4.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2628,23/12/2013 15:28,21/12/2013 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2627,23/12/2013 15:27,21/12/2013 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-7105,20/12/2013 4:39,14/12/2013 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6986,20/12/2013 4:38,12/12/2013 17:55,2.1,310, Cryptographic Issues,nan
CVE-2013-6421,20/12/2013 4:38,12/12/2013 18:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4558,20/12/2013 4:36,7/12/2013 20:55,3.5,20, Improper Input Validation,nan
CVE-2013-4505,20/12/2013 4:36,7/12/2013 20:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-3281,20/12/2013 4:35,6/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-7005,19/12/2013 19:25,19/12/2013 4:24,4.9,200, Information Exposure,nan
CVE-2013-7004,19/12/2013 19:24,19/12/2013 4:24,7.8,255, Credentials Management,nan
CVE-2013-4775,19/12/2013 19:19,19/12/2013 4:24,7.8,200, Information Exposure,nan
CVE-2013-5946,19/12/2013 19:01,19/12/2013 4:24,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-7128,18/12/2013 15:35,17/12/2013 15:21,2.1,310, Cryptographic Issues,nan
CVE-2013-6271,18/12/2013 14:42,14/12/2013 20:55,8.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2814,18/12/2013 3:46,17/12/2013 15:21,7.1,20, Improper Input Validation,nan
CVE-2013-2816,18/12/2013 3:42,17/12/2013 15:21,4.7,20, Improper Input Validation,nan
CVE-2013-2813,18/12/2013 3:38,17/12/2013 15:21,7.1,20, Improper Input Validation,nan
CVE-2013-6926,17/12/2013 15:13,17/12/2013 4:46,8.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5107,16/12/2013 20:35,14/12/2013 17:21,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1364,16/12/2013 19:42,14/12/2013 17:21,5.0,287, Improper Authentication,nan
CVE-2013-5676,16/12/2013 17:16,13/12/2013 18:55,4.0,310, Cryptographic Issues,nan
CVE-2013-4569,16/12/2013 15:54,13/12/2013 18:07,4.3,200, Information Exposure,nan
CVE-2012-5394,16/12/2013 15:24,13/12/2013 18:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6839,16/12/2013 15:13,13/12/2013 18:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1812,13/12/2013 16:12,12/12/2013 18:55,4.3,399, Resource Management Errors,nan
CVE-2013-7001,13/12/2013 5:22,7/12/2013 21:55,4.3,20, Improper Input Validation,nan
CVE-2013-7000,13/12/2013 5:22,7/12/2013 21:55,4.3,20, Improper Input Validation,nan
CVE-2013-6916,13/12/2013 5:22,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6913,13/12/2013 5:22,5/12/2013 12:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6912,13/12/2013 5:22,5/12/2013 12:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6911,13/12/2013 5:22,5/12/2013 12:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6906,13/12/2013 5:22,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6905,13/12/2013 5:22,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6904,13/12/2013 5:22,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6903,13/12/2013 5:22,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6901,13/12/2013 5:22,5/12/2013 12:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6791,13/12/2013 5:22,29/11/2013 15:55,4.3,200, Information Exposure,nan
CVE-2013-6039,13/12/2013 5:22,9/12/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3624,13/12/2013 5:18,3/10/2013 11:04,7.8,310, Cryptographic Issues,nan
CVE-2013-1953,13/12/2013 5:14,9/12/2013 16:36,6.8,189, Numeric Errors,nan
CVE-2013-1080,13/12/2013 5:12,29/03/2013 16:09,10.0,287, Improper Authentication,nan
CVE-2013-0786,13/12/2013 5:11,24/02/2013 11:48,5.0,200, Information Exposure,nan
CVE-2013-0785,13/12/2013 5:11,24/02/2013 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4198,13/12/2013 5:04,16/11/2012 12:24,4.0,200, Information Exposure,nan
CVE-2012-4189,13/12/2013 5:04,16/11/2012 12:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3485,13/12/2013 5:03,26/08/2012 19:55,7.2,20, Improper Input Validation,nan
CVE-2012-3354,13/12/2013 5:02,20/11/2012 0:55,4.3,200, Information Exposure,nan
CVE-2012-2153,13/12/2013 4:59,1/10/2012 0:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1969,13/12/2013 4:59,30/07/2012 13:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1591,13/12/2013 4:58,1/10/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1590,13/12/2013 4:58,1/10/2012 0:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1589,13/12/2013 4:58,18/05/2012 20:55,5.8,20, Improper Input Validation,nan
CVE-2012-1588,13/12/2013 4:58,1/10/2012 0:55,3.5,399, Resource Management Errors,nan
CVE-2012-0806,13/12/2013 4:56,27/01/2012 0:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3727,13/12/2013 4:52,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-0524,13/12/2013 4:46,13/08/2012 20:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0523,13/12/2013 4:46,13/08/2012 20:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-5081,13/12/2013 4:34,30/06/2011 15:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-5080,13/12/2013 4:34,30/06/2011 15:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-5079,13/12/2013 4:34,30/06/2011 15:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-5334,12/12/2013 18:44,11/12/2013 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5333,12/12/2013 18:43,11/12/2013 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6840,12/12/2013 17:11,10/12/2013 16:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3047,12/12/2013 16:56,10/12/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3710,12/12/2013 15:18,10/12/2013 16:55,4.3,310, Cryptographic Issues,nan
CVE-2013-6985,11/12/2013 19:22,9/12/2013 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3929,10/12/2013 21:14,9/12/2013 16:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1349,10/12/2013 17:18,9/12/2013 16:36,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3946,10/12/2013 17:10,9/12/2013 16:35,6.8,399, Resource Management Errors,nan
CVE-2011-3934,10/12/2013 17:06,9/12/2013 16:34,6.8,399, Resource Management Errors,nan
CVE-2011-4351,10/12/2013 17:04,9/12/2013 16:36,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4315,10/12/2013 6:05,16/09/2013 19:14,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6409,9/12/2013 20:52,7/12/2013 20:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6050,9/12/2013 20:02,7/12/2013 20:55,4.3,189, Numeric Errors,nan
CVE-2013-4478,9/12/2013 17:54,7/12/2013 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4446,9/12/2013 17:38,7/12/2013 20:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4445,9/12/2013 17:36,7/12/2013 20:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4171,9/12/2013 17:09,7/12/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6920,9/12/2013 16:48,7/12/2013 0:55,10.0,287, Improper Authentication,nan
CVE-2013-6384,8/12/2013 6:07,23/11/2013 18:55,1.9,200, Information Exposure,nan
CVE-2013-4392,8/12/2013 6:00,28/10/2013 22:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4314,8/12/2013 6:00,30/09/2013 21:55,4.3,20, Improper Input Validation,nan
CVE-2013-4222,8/12/2013 6:00,30/09/2013 22:55,6.5,255, Credentials Management,nan
CVE-2013-6804,6/12/2013 18:33,5/12/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2850,5/12/2013 5:26,7/06/2013 14:03,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1836,5/12/2013 5:25,25/03/2013 21:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1835,5/12/2013 5:25,25/03/2013 21:55,3.5,200, Information Exposure,nan
CVE-2013-1834,5/12/2013 5:25,25/03/2013 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1833,5/12/2013 5:25,25/03/2013 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1832,5/12/2013 5:25,25/03/2013 21:55,4.0,200, Information Exposure,nan
CVE-2013-1831,5/12/2013 5:25,25/03/2013 21:55,5.0,200, Information Exposure,nan
CVE-2013-0252,5/12/2013 5:22,12/03/2013 22:55,5.0,20, Improper Input Validation,nan
CVE-2012-5576,5/12/2013 5:20,18/12/2012 1:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4510,5/12/2013 5:17,20/11/2012 0:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4414,5/12/2013 5:17,22/01/2013 23:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3481,5/12/2013 5:15,25/08/2012 10:29,6.8,189, Numeric Errors,nan
CVE-2012-3466,5/12/2013 5:15,22/10/2012 23:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-3403,5/12/2013 5:15,25/08/2012 10:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2677,5/12/2013 5:14,25/07/2012 19:55,5.0,189, Numeric Errors,nan
CVE-2012-0426,3/12/2013 0:37,2/12/2013 4:36,7.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-3707,2/12/2013 18:40,1/12/2013 17:55,4.3,20, Improper Input Validation,nan
CVE-2013-5636,2/12/2013 17:29,30/11/2013 11:43,3.3,255, Credentials Management,nan
CVE-2013-5635,2/12/2013 16:20,30/11/2013 11:43,3.3,255, Credentials Management,nan
CVE-2013-5745,1/12/2013 4:31,1/10/2013 17:55,7.1,20, Improper Input Validation,nan
CVE-2013-5576,1/12/2013 4:31,9/10/2013 14:54,6.8,20, Improper Input Validation,nan
CVE-2013-4480,1/12/2013 4:30,18/11/2013 2:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1997,1/12/2013 4:27,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1986,1/12/2013 4:27,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1985,1/12/2013 4:27,15/06/2013 19:55,6.8,20, Improper Input Validation,nan
CVE-2013-1984,1/12/2013 4:27,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1983,1/12/2013 4:27,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1959,1/12/2013 4:27,3/05/2013 11:57,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-1922,1/12/2013 4:27,13/05/2013 23:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1915,1/12/2013 4:27,25/04/2013 23:55,7.5,20, Improper Input Validation,nan
CVE-2013-1912,1/12/2013 4:27,10/04/2013 15:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1901,1/12/2013 4:27,4/04/2013 17:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1899,1/12/2013 4:27,4/04/2013 17:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1892,1/12/2013 4:27,1/10/2013 20:55,6.0,20, Improper Input Validation,nan
CVE-2013-1888,1/12/2013 4:27,17/08/2013 6:54,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1865,1/12/2013 4:27,22/03/2013 21:55,6.8,287, Improper Authentication,nan
CVE-2013-1828,1/12/2013 4:27,22/03/2013 11:59,6.9,20, Improper Input Validation,nan
CVE-2013-1428,1/12/2013 4:26,26/04/2013 16:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1416,1/12/2013 4:26,19/04/2013 11:44,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6700,29/11/2013 14:52,29/11/2013 4:33,5.0,20, Improper Input Validation,nan
CVE-2013-5912,29/11/2013 14:18,28/11/2013 4:37,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5957,29/11/2013 13:57,27/11/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4624,29/11/2013 13:40,27/11/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4617,29/11/2013 13:38,27/11/2013 18:55,5.0,200, Information Exposure,nan
CVE-2013-3920,29/11/2013 13:35,27/11/2013 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0869,27/11/2013 16:57,23/11/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6863,27/11/2013 16:42,23/11/2013 18:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-6866,27/11/2013 16:41,23/11/2013 18:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6864,27/11/2013 16:40,23/11/2013 18:55,6.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4573,27/11/2013 16:30,25/11/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6870,27/11/2013 16:19,25/11/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4523,27/11/2013 16:19,26/11/2013 5:25,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4525,27/11/2013 16:18,26/11/2013 5:25,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4524,27/11/2013 16:18,26/11/2013 5:25,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4522,27/11/2013 16:17,26/11/2013 5:25,5.0,200, Information Exposure,nan
CVE-2013-3394,27/11/2013 15:21,27/11/2013 4:43,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6875,27/11/2013 14:58,26/11/2013 16:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6874,27/11/2013 14:49,26/11/2013 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6868,25/11/2013 19:53,23/11/2013 18:55,7.8,200, Information Exposure,nan
CVE-2013-6865,25/11/2013 19:44,23/11/2013 18:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4459,25/11/2013 19:11,23/11/2013 18:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6859,25/11/2013 18:46,23/11/2013 18:55,8.5,287, Improper Authentication,nan
CVE-2013-1058,25/11/2013 18:36,23/11/2013 18:55,5.8,310, Cryptographic Issues,nan
CVE-2013-4354,25/11/2013 16:42,23/11/2013 17:55,2.1,20, Improper Input Validation,nan
CVE-2013-2029,25/11/2013 16:17,23/11/2013 17:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-6342,25/11/2013 15:20,22/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6698,25/11/2013 15:03,22/11/2013 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6694,25/11/2013 15:00,22/11/2013 19:55,4.3,20, Improper Input Validation,nan
CVE-2013-6833,25/11/2013 4:36,21/11/2013 4:40,4.9,20, Improper Input Validation,nan
CVE-2013-6832,25/11/2013 4:36,21/11/2013 4:40,4.9,200, Information Exposure,nan
CVE-2013-6831,25/11/2013 4:36,20/11/2013 14:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6830,25/11/2013 4:36,20/11/2013 14:12,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6348,25/11/2013 4:36,2/11/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3505,25/11/2013 4:34,8/05/2013 12:09,4.0,255, Credentials Management,nan
CVE-2013-3499,25/11/2013 4:34,8/05/2013 12:09,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3266,25/11/2013 4:33,2/05/2013 11:44,7.5,20, Improper Input Validation,nan
CVE-2013-2083,25/11/2013 4:32,25/05/2013 3:18,5.0,20, Improper Input Validation,nan
CVE-2013-2082,25/11/2013 4:32,25/05/2013 3:18,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2081,25/11/2013 4:32,25/05/2013 3:18,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-2080,25/11/2013 4:32,25/05/2013 3:18,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2079,25/11/2013 4:32,25/05/2013 3:18,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2066,25/11/2013 4:32,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2063,25/11/2013 4:32,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-2001,25/11/2013 4:32,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2000,25/11/2013 4:32,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1999,25/11/2013 4:32,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1992,25/11/2013 4:32,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1991,25/11/2013 4:32,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1990,25/11/2013 4:32,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1989,25/11/2013 4:32,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1988,25/11/2013 4:32,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2012-5520,25/11/2013 4:29,26/11/2012 12:45,7.5,20, Improper Input Validation,nan
CVE-2012-5272,25/11/2013 4:28,9/10/2012 11:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4528,25/11/2013 4:28,28/12/2012 11:48,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3868,25/11/2013 4:27,25/07/2012 10:42,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-3459,25/11/2013 4:26,28/09/2012 17:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2684,25/11/2013 4:25,28/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-6693,22/11/2013 22:43,22/11/2013 1:55,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6852,22/11/2013 19:03,22/11/2013 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6692,22/11/2013 18:56,22/11/2013 1:55,6.3,399, Resource Management Errors,nan
CVE-2013-2823,22/11/2013 13:38,22/11/2013 1:55,4.7,20, Improper Input Validation,nan
CVE-2013-2811,22/11/2013 13:35,22/11/2013 1:55,7.1,20, Improper Input Validation,nan
CVE-2013-4713,21/11/2013 19:30,1/11/2013 2:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5548,21/11/2013 19:29,1/11/2013 2:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6129,21/11/2013 19:20,19/10/2013 10:36,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5555,21/11/2013 19:19,1/11/2013 2:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2701,21/11/2013 19:09,1/11/2013 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6075,21/11/2013 18:41,2/11/2013 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1084,21/11/2013 18:32,2/11/2013 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3617,21/11/2013 18:29,2/11/2013 19:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2058,21/11/2013 18:21,4/11/2013 15:55,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6793,21/11/2013 17:57,14/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6794,21/11/2013 17:55,14/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6020,21/11/2013 17:54,28/10/2013 3:42,5.8,200, Information Exposure,nan
CVE-2013-6019,21/11/2013 17:54,28/10/2013 3:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6018,21/11/2013 17:54,28/10/2013 3:42,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6285,21/11/2013 17:50,28/10/2013 3:42,5.0,200, Information Exposure,nan
CVE-2013-1057,21/11/2013 17:50,18/11/2013 2:55,4.4,20, Improper Input Validation,nan
CVE-2013-4466,21/11/2013 17:06,20/11/2013 14:12,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5996,21/11/2013 14:58,21/11/2013 4:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5995,21/11/2013 14:58,21/11/2013 4:40,5.5,200, Information Exposure,nan
CVE-2013-6827,21/11/2013 14:46,20/11/2013 14:12,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6829,21/11/2013 14:45,20/11/2013 14:12,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6828,21/11/2013 14:45,20/11/2013 14:12,6.4,287, Improper Authentication,nan
CVE-2013-5992,21/11/2013 14:36,21/11/2013 4:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5991,21/11/2013 14:36,21/11/2013 4:40,4.3,200, Information Exposure,nan
CVE-2013-5994,21/11/2013 14:35,21/11/2013 4:40,5.0,200, Information Exposure,nan
CVE-2013-5993,21/11/2013 14:35,21/11/2013 4:40,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5556,20/11/2013 17:40,18/11/2013 3:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-4507,20/11/2013 17:39,20/11/2013 13:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3095,20/11/2013 17:39,20/11/2013 13:19,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6826,20/11/2013 17:10,20/11/2013 14:12,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5966,20/11/2013 15:23,20/11/2013 13:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4510,20/11/2013 0:31,18/11/2013 2:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5193,20/11/2013 0:24,18/11/2013 2:55,4.7,255, Credentials Management,nan
CVE-2013-6799,20/11/2013 0:17,18/11/2013 2:55,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2271,19/11/2013 23:18,19/11/2013 4:47,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-3406,19/11/2013 23:10,18/11/2013 3:55,6.8,20, Improper Input Validation,nan
CVE-2013-6797,19/11/2013 19:27,19/11/2013 4:50,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6686,19/11/2013 19:27,18/11/2013 3:55,6.8,20, Improper Input Validation,nan
CVE-2013-6688,19/11/2013 19:26,18/11/2013 3:55,6.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-6689,19/11/2013 19:13,18/11/2013 3:55,6.9,20, Improper Input Validation,nan
CVE-2013-0741,19/11/2013 19:06,19/11/2013 4:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3407,19/11/2013 18:57,18/11/2013 3:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3694,19/11/2013 18:50,18/11/2013 3:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5972,19/11/2013 15:07,18/11/2013 5:23,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-6801,19/11/2013 15:02,18/11/2013 5:23,7.1,399, Resource Management Errors,nan
CVE-2013-3240,19/11/2013 4:48,26/04/2013 3:34,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3239,19/11/2013 4:48,26/04/2013 3:34,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3061,19/11/2013 4:48,1/05/2013 12:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5561,15/11/2013 18:15,4/11/2013 16:55,5.0,20, Improper Input Validation,nan
CVE-2013-3285,15/11/2013 17:58,2/11/2013 19:55,3.5,310, Cryptographic Issues,nan
CVE-2013-5565,14/11/2013 19:57,8/11/2013 4:47,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5566,14/11/2013 19:56,8/11/2013 4:47,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6685,14/11/2013 19:45,13/11/2013 15:55,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-4740,14/11/2013 19:43,12/11/2013 14:35,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-6684,14/11/2013 19:31,13/11/2013 15:55,6.8,20, Improper Input Validation,nan
CVE-2013-6683,14/11/2013 19:31,13/11/2013 15:55,6.1,20, Improper Input Validation,nan
CVE-2013-6682,14/11/2013 19:25,13/11/2013 15:55,6.4,20, Improper Input Validation,nan
CVE-2013-6357,14/11/2013 17:45,13/11/2013 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5552,14/11/2013 13:32,13/11/2013 15:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-5560,14/11/2013 13:00,13/11/2013 15:55,5.4,20, Improper Input Validation,nan
CVE-2013-5568,14/11/2013 12:59,13/11/2013 15:55,7.1,20, Improper Input Validation,nan
CVE-2013-6122,13/11/2013 19:53,12/11/2013 14:35,6.9,20, Improper Input Validation,nan
CVE-2013-6789,13/11/2013 19:45,13/11/2013 0:55,5.0,200, Information Exposure,nan
CVE-2013-5328,13/11/2013 17:23,13/11/2013 1:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5726,13/11/2013 15:49,12/11/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2653,13/11/2013 14:33,13/11/2013 0:55,5.8,20, Improper Input Validation,nan
CVE-2013-5558,8/11/2013 18:43,8/11/2013 4:47,10.0,255, Credentials Management,nan
CVE-2013-5554,8/11/2013 18:24,8/11/2013 4:47,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5553,8/11/2013 17:43,8/11/2013 4:47,7.8,399, Resource Management Errors,nan
CVE-2013-4987,8/11/2013 17:32,8/11/2013 4:47,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4716,8/11/2013 17:09,8/11/2013 4:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6366,7/11/2013 19:47,4/11/2013 16:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-5267,7/11/2013 19:43,5/11/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4435,7/11/2013 19:42,5/11/2013 18:55,6.0,287, Improper Authentication,nan
CVE-2013-4436,7/11/2013 19:40,5/11/2013 18:55,9.3,20, Improper Input Validation,nan
CVE-2013-4438,7/11/2013 19:30,5/11/2013 18:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1097,7/11/2013 4:36,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1095,7/11/2013 4:36,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1094,7/11/2013 4:36,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1093,7/11/2013 4:36,17/06/2013 11:38,5.8,20, Improper Input Validation,nan
CVE-2013-4439,7/11/2013 1:29,5/11/2013 18:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5670,7/11/2013 1:23,5/11/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6077,7/11/2013 1:22,5/11/2013 18:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-3263,7/11/2013 1:21,5/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4497,7/11/2013 1:11,5/11/2013 20:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-5694,7/11/2013 1:03,5/11/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5695,7/11/2013 1:02,5/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3626,7/11/2013 1:00,6/11/2013 15:55,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4715,7/11/2013 0:51,6/11/2013 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4714,7/11/2013 0:51,6/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5562,7/11/2013 0:50,6/11/2013 15:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5563,7/11/2013 0:47,6/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4502,6/11/2013 19:25,5/11/2013 21:55,5.0,189, Numeric Errors,nan
CVE-2012-4503,6/11/2013 19:08,5/11/2013 21:55,5.0,200, Information Exposure,nan
CVE-2013-5688,6/11/2013 18:55,5/11/2013 21:55,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3286,6/11/2013 18:47,6/11/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3264,6/11/2013 14:55,5/11/2013 20:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-6617,6/11/2013 14:36,5/11/2013 18:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5564,6/11/2013 14:04,4/11/2013 16:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5551,5/11/2013 16:08,1/11/2013 2:55,6.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3287,5/11/2013 15:55,2/11/2013 19:55,1.9,310, Cryptographic Issues,nan
CVE-2013-4457,5/11/2013 15:21,2/11/2013 18:55,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-3631,5/11/2013 14:56,2/11/2013 19:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6344,5/11/2013 0:04,2/11/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6346,4/11/2013 23:59,2/11/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6347,4/11/2013 23:58,2/11/2013 20:55,6.8,287, Improper Authentication,nan
CVE-2013-6349,4/11/2013 23:53,2/11/2013 21:55,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-6289,3/11/2013 3:35,28/10/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6012,3/11/2013 3:34,28/10/2013 22:55,8.5,287, Improper Authentication,nan
CVE-2013-4630,3/11/2013 3:34,20/06/2013 15:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3502,3/11/2013 3:33,8/05/2013 12:09,6.5,255, Credentials Management,nan
CVE-2013-5547,1/11/2013 15:46,31/10/2013 21:55,7.8,20, Improper Input Validation,nan
CVE-2013-5546,1/11/2013 15:44,31/10/2013 21:55,7.8,20, Improper Input Validation,nan
CVE-2013-5545,1/11/2013 15:37,31/10/2013 21:55,7.8,20, Improper Input Validation,nan
CVE-2013-5543,1/11/2013 14:04,31/10/2013 21:55,7.8,20, Improper Input Validation,nan
CVE-2013-5976,31/10/2013 3:36,1/10/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5975,31/10/2013 3:36,1/10/2013 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5915,31/10/2013 3:35,4/10/2013 17:55,4.3,310, Cryptographic Issues,nan
CVE-2013-5145,31/10/2013 3:35,19/09/2013 10:28,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5142,31/10/2013 3:35,19/09/2013 10:28,4.9,200, Information Exposure,nan
CVE-2013-5141,31/10/2013 3:35,19/09/2013 10:28,7.1,189, Numeric Errors,nan
CVE-2013-5131,31/10/2013 3:35,19/09/2013 10:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5129,31/10/2013 3:35,19/09/2013 10:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4623,31/10/2013 3:35,30/09/2013 22:55,4.3,20, Improper Input Validation,nan
CVE-2013-4300,31/10/2013 3:34,25/09/2013 10:31,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4294,31/10/2013 3:34,23/09/2013 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4183,31/10/2013 3:34,16/09/2013 19:14,2.1,200, Information Exposure,nan
CVE-2013-4179,31/10/2013 3:34,16/09/2013 19:14,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4155,31/10/2013 3:34,20/08/2013 22:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3954,31/10/2013 3:34,5/06/2013 14:39,6.9,20, Improper Input Validation,nan
CVE-2013-3950,31/10/2013 3:34,5/06/2013 14:39,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2898,31/10/2013 3:33,16/09/2013 13:01,1.9,20, Improper Input Validation,nan
CVE-2013-2160,31/10/2013 3:33,19/08/2013 23:55,5.0,399, Resource Management Errors,nan
CVE-2013-1036,31/10/2013 3:31,19/09/2013 10:27,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5036,31/10/2013 3:21,30/12/2011 1:55,5.0,310, Cryptographic Issues,nan
CVE-2012-4572,30/10/2013 14:47,28/10/2013 21:55,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-2102,30/10/2013 14:46,28/10/2013 21:55,3.3,287, Improper Authentication,nan
CVE-2013-2208,30/10/2013 14:39,28/10/2013 22:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4261,30/10/2013 13:53,29/10/2013 22:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5744,29/10/2013 21:04,28/10/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5741,29/10/2013 20:56,29/10/2013 3:42,7.8,20, Improper Input Validation,nan
CVE-2010-1159,29/10/2013 20:53,28/10/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3704,29/10/2013 16:08,28/10/2013 22:55,4.3,310, Cryptographic Issues,nan
CVE-2012-0827,29/10/2013 15:19,28/10/2013 22:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5914,28/10/2013 15:46,26/10/2013 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4106,28/10/2013 15:15,26/10/2013 16:55,6.8,20, Improper Input Validation,nan
CVE-2013-1445,28/10/2013 15:14,26/10/2013 17:55,4.3,310, Cryptographic Issues,nan
CVE-2013-1067,28/10/2013 13:49,25/10/2013 23:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-6128,28/10/2013 13:39,25/10/2013 20:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6127,28/10/2013 13:32,25/10/2013 20:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5521,25/10/2013 19:00,25/10/2013 3:52,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3280,25/10/2013 19:00,25/10/2013 3:52,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5522,25/10/2013 18:59,25/10/2013 3:52,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5531,25/10/2013 18:57,25/10/2013 3:52,5.0,287, Improper Authentication,nan
CVE-2013-6281,25/10/2013 18:17,25/10/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-6280,25/10/2013 18:06,25/10/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4689,25/10/2013 17:04,17/10/2013 23:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5154,25/10/2013 16:58,19/09/2013 10:28,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5149,25/10/2013 16:56,19/09/2013 10:28,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4616,25/10/2013 16:37,18/06/2013 14:55,5.8,255, Credentials Management,nan
CVE-2013-3244,25/10/2013 15:18,24/10/2013 0:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4293,25/10/2013 14:33,24/10/2013 3:48,2.1,310, Cryptographic Issues,nan
CVE-2013-4390,25/10/2013 14:30,24/10/2013 3:48,5.8,20, Improper Input Validation,nan
CVE-2013-5165,25/10/2013 0:10,24/10/2013 3:48,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-5169,25/10/2013 0:09,24/10/2013 3:48,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5173,25/10/2013 0:04,24/10/2013 3:48,2.1,310, Cryptographic Issues,nan
CVE-2013-5175,25/10/2013 0:02,24/10/2013 3:48,6.6,20, Improper Input Validation,nan
CVE-2013-5176,24/10/2013 23:53,24/10/2013 3:48,4.9,189, Numeric Errors,nan
CVE-2013-5177,24/10/2013 23:45,24/10/2013 3:48,4.9,189, Numeric Errors,nan
CVE-2013-5168,24/10/2013 23:44,24/10/2013 3:48,6.8,20, Improper Input Validation,nan
CVE-2013-5180,24/10/2013 23:41,24/10/2013 3:48,4.3,310, Cryptographic Issues,nan
CVE-2013-5181,24/10/2013 23:40,24/10/2013 3:48,4.3,310, Cryptographic Issues,nan
CVE-2013-5183,24/10/2013 23:38,24/10/2013 3:48,2.6,200, Information Exposure,nan
CVE-2013-5182,24/10/2013 23:38,24/10/2013 3:48,5.0,310, Cryptographic Issues,nan
CVE-2013-5185,24/10/2013 23:37,24/10/2013 3:48,4.3,310, Cryptographic Issues,nan
CVE-2013-5186,24/10/2013 23:32,24/10/2013 3:48,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5189,24/10/2013 23:31,24/10/2013 3:48,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5184,24/10/2013 23:31,24/10/2013 3:48,5.7,399, Resource Management Errors,nan
CVE-2013-1742,24/10/2013 23:29,24/10/2013 10:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1733,24/10/2013 23:29,24/10/2013 10:53,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1743,24/10/2013 23:28,24/10/2013 10:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5130,24/10/2013 23:24,24/10/2013 10:53,5.0,200, Information Exposure,nan
CVE-2013-5536,24/10/2013 23:23,24/10/2013 10:53,5.0,20, Improper Input Validation,nan
CVE-2013-5148,24/10/2013 18:24,24/10/2013 10:53,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-1734,24/10/2013 16:35,24/10/2013 10:53,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5190,24/10/2013 16:19,24/10/2013 3:48,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-6246,24/10/2013 16:18,24/10/2013 3:48,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5192,24/10/2013 16:10,24/10/2013 3:48,4.9,20, Improper Input Validation,nan
CVE-2013-5191,24/10/2013 16:05,24/10/2013 3:48,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5188,24/10/2013 15:51,24/10/2013 3:48,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5187,24/10/2013 15:45,24/10/2013 3:48,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5174,24/10/2013 15:17,24/10/2013 3:48,4.9,189, Numeric Errors,nan
CVE-2013-5172,24/10/2013 15:09,24/10/2013 3:48,7.1,189, Numeric Errors,nan
CVE-2013-5171,24/10/2013 15:06,24/10/2013 3:48,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5167,24/10/2013 14:54,24/10/2013 3:48,5.0,16, Configuration,nan
CVE-2013-5164,24/10/2013 14:40,24/10/2013 3:48,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-5162,24/10/2013 14:27,24/10/2013 3:48,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5144,24/10/2013 14:15,24/10/2013 3:48,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4295,24/10/2013 13:57,24/10/2013 3:48,5.0,200, Information Exposure,nan
CVE-2013-5710,24/10/2013 3:48,23/09/2013 20:55,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-5691,24/10/2013 3:48,23/09/2013 10:18,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3511,24/10/2013 3:40,4/10/2012 3:28,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-2731,24/10/2013 3:32,5/12/2012 17:55,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1923,24/10/2013 3:31,20/06/2012 17:55,4.0,310, Cryptographic Issues,nan
CVE-2010-1158,24/10/2013 3:22,20/04/2010 15:30,5.0,189, Numeric Errors,nan
CVE-2013-5703,23/10/2013 3:22,22/10/2013 22:55,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-5137,22/10/2013 20:04,19/09/2013 10:28,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-5140,22/10/2013 19:59,19/09/2013 10:28,7.8,20, Improper Input Validation,nan
CVE-2013-5151,22/10/2013 19:53,19/09/2013 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5156,22/10/2013 19:52,19/09/2013 10:28,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5155,22/10/2013 19:52,19/09/2013 10:28,7.1,20, Improper Input Validation,nan
CVE-2013-5157,22/10/2013 19:26,19/09/2013 10:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5158,22/10/2013 19:22,19/09/2013 10:28,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5159,22/10/2013 19:20,19/09/2013 10:28,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5153,22/10/2013 19:07,19/09/2013 10:28,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5493,22/10/2013 18:54,13/09/2013 14:10,6.8,20, Improper Input Validation,nan
CVE-2013-5516,22/10/2013 18:51,1/10/2013 0:55,6.3,399, Resource Management Errors,nan
CVE-2013-5544,22/10/2013 18:27,22/10/2013 11:17,5.4,399, Resource Management Errors,nan
CVE-2013-5550,22/10/2013 18:07,22/10/2013 11:17,4.6,20, Improper Input Validation,nan
CVE-2013-5542,21/10/2013 18:06,21/10/2013 10:54,8.5,399, Resource Management Errors,nan
CVE-2012-4115,21/10/2013 17:18,21/10/2013 10:50,5.8,310, Cryptographic Issues,nan
CVE-2013-6027,21/10/2013 16:50,19/10/2013 10:36,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6026,21/10/2013 16:40,19/10/2013 10:36,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5702,21/10/2013 15:42,19/10/2013 10:36,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5534,21/10/2013 14:43,19/10/2013 10:36,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4712,21/10/2013 14:31,19/10/2013 10:36,6.8,399, Resource Management Errors,nan
CVE-2012-4117,21/10/2013 13:51,19/10/2013 10:36,5.8,20, Improper Input Validation,nan
CVE-2012-4116,21/10/2013 13:17,19/10/2013 10:36,4.3,200, Information Exposure,nan
CVE-2012-4114,21/10/2013 13:16,19/10/2013 10:36,5.8,310, Cryptographic Issues,nan
CVE-2012-4113,21/10/2013 13:04,19/10/2013 10:36,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4112,21/10/2013 12:45,19/10/2013 10:36,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-6169,18/10/2013 17:46,17/10/2013 23:55,4.3,310, Cryptographic Issues,nan
CVE-2013-5494,18/10/2013 13:51,16/09/2013 13:02,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5517,17/10/2013 19:27,2/10/2013 22:55,5.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5519,17/10/2013 19:19,3/10/2013 11:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5535,17/10/2013 19:09,16/10/2013 10:52,6.4,255, Credentials Management,nan
CVE-2013-3279,17/10/2013 18:30,16/10/2013 20:55,5.0,255, Credentials Management,nan
CVE-2013-5208,16/10/2013 16:25,16/10/2013 10:52,4.1,310, Cryptographic Issues,nan
CVE-2013-5492,16/10/2013 15:53,13/09/2013 14:10,5.0,310, Cryptographic Issues,nan
CVE-2013-5496,16/10/2013 15:51,16/09/2013 13:02,6.3,20, Improper Input Validation,nan
CVE-2013-4782,16/10/2013 14:37,8/07/2013 22:55,10.0,287, Improper Authentication,nan
CVE-2013-5541,16/10/2013 14:16,16/10/2013 10:52,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5539,16/10/2013 14:16,16/10/2013 10:52,6.0,20, Improper Input Validation,nan
CVE-2013-5540,16/10/2013 14:13,16/10/2013 10:52,6.8,399, Resource Management Errors,nan
CVE-2013-5529,16/10/2013 14:09,16/10/2013 10:52,6.8,20, Improper Input Validation,nan
CVE-2013-5538,16/10/2013 14:02,16/10/2013 10:52,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5119,16/10/2013 12:32,23/09/2013 20:55,6.8,287, Improper Authentication,nan
CVE-2012-4121,16/10/2013 11:26,14/10/2013 3:34,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5931,15/10/2013 18:03,23/09/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3616,15/10/2013 17:56,24/09/2013 10:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5506,15/10/2013 17:47,13/10/2013 10:20,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-5911,15/10/2013 17:04,24/09/2013 10:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2787,15/10/2013 16:55,13/10/2013 10:20,7.8,20, Improper Input Validation,nan
CVE-2012-4108,15/10/2013 16:51,13/10/2013 10:20,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-4709,15/10/2013 16:41,13/10/2013 10:20,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-6079,15/10/2013 16:38,11/10/2013 22:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4255,15/10/2013 16:12,11/10/2013 22:55,3.5,20, Improper Input Validation,nan
CVE-2013-4319,15/10/2013 16:05,11/10/2013 22:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4203,15/10/2013 15:55,11/10/2013 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4173,15/10/2013 15:21,11/10/2013 22:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4167,15/10/2013 14:54,11/10/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3693,15/10/2013 14:52,11/10/2013 22:55,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-4137,15/10/2013 14:42,11/10/2013 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5136,15/10/2013 14:40,11/10/2013 22:55,4.0,20, Improper Input Validation,nan
CVE-2013-3687,15/10/2013 14:20,11/10/2013 21:55,7.8,310, Cryptographic Issues,nan
CVE-2013-3686,15/10/2013 14:15,11/10/2013 21:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2581,15/10/2013 14:12,11/10/2013 21:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2579,15/10/2013 14:11,11/10/2013 21:55,10.0,255, Credentials Management,nan
CVE-2013-2578,15/10/2013 13:13,11/10/2013 21:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-5750,15/10/2013 12:10,25/09/2013 10:31,5.0,399, Resource Management Errors,nan
CVE-2013-5200,15/10/2013 11:58,25/09/2013 10:31,7.5,287, Improper Authentication,nan
CVE-2012-6576,11/10/2013 18:11,27/06/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4682,11/10/2013 17:59,25/06/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3397,11/10/2013 17:09,26/06/2013 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3648,11/10/2013 17:06,28/06/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3651,11/10/2013 17:04,30/06/2013 19:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3650,11/10/2013 17:03,30/06/2013 19:28,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3649,11/10/2013 17:01,28/06/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3581,11/10/2013 16:55,2/07/2013 3:43,7.1,287, Improper Authentication,nan
CVE-2013-3654,11/10/2013 16:50,30/06/2013 19:28,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3652,11/10/2013 16:50,30/06/2013 20:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3653,11/10/2013 16:49,30/06/2013 20:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4153,11/10/2013 16:01,30/09/2013 21:55,5.0,399, Resource Management Errors,nan
CVE-2013-2218,11/10/2013 16:01,30/09/2013 21:55,5.0,399, Resource Management Errors,nan
CVE-2013-3272,11/10/2013 15:51,8/07/2013 20:55,2.1,255, Credentials Management,nan
CVE-2013-1950,11/10/2013 15:18,9/07/2013 17:55,4.3,399, Resource Management Errors,nan
CVE-2013-5697,11/10/2013 15:17,30/09/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2052,11/10/2013 15:11,9/07/2013 17:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2238,11/10/2013 14:52,30/09/2013 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4932,11/10/2013 14:51,28/12/2012 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4787,11/10/2013 14:49,9/07/2013 17:55,9.3,310, Cryptographic Issues,nan
CVE-2010-5191,11/10/2013 14:48,26/08/2012 19:55,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3405,11/10/2013 14:46,10/07/2013 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4879,11/10/2013 14:45,7/09/2012 0:55,10.0,255, Credentials Management,nan
CVE-2013-1243,11/10/2013 14:44,18/07/2013 12:48,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3220,11/10/2013 14:42,2/08/2013 12:10,6.4,399, Resource Management Errors,nan
CVE-2013-3219,11/10/2013 14:38,2/08/2013 12:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5495,11/10/2013 14:35,16/09/2013 13:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4165,11/10/2013 14:16,2/08/2013 12:10,4.3,200, Information Exposure,nan
CVE-2012-4393,11/10/2013 14:10,5/09/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1633,11/10/2013 13:59,6/08/2013 2:52,6.8,20, Improper Input Validation,nan
CVE-2013-5693,11/10/2013 13:33,30/09/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4222,11/10/2013 13:31,30/11/2012 12:54,4.3,20, Improper Input Validation,nan
CVE-2012-4221,11/10/2013 13:27,30/11/2012 12:54,6.8,189, Numeric Errors,nan
CVE-2012-3552,11/10/2013 13:22,3/10/2012 11:02,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-4347,11/10/2013 13:18,5/12/2012 11:57,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5152,11/10/2013 13:17,19/09/2013 10:28,4.3,20, Improper Input Validation,nan
CVE-2013-5959,11/10/2013 3:54,28/09/2013 19:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3955,11/10/2013 3:53,5/06/2013 14:39,6.2,20, Improper Input Validation,nan
CVE-2013-3953,11/10/2013 3:53,5/06/2013 14:39,4.9,200, Information Exposure,nan
CVE-2013-1495,11/10/2013 3:50,18/03/2013 21:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1444,11/10/2013 3:50,30/09/2013 22:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-0957,11/10/2013 3:49,19/09/2013 10:27,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-0215,11/10/2013 3:48,7/03/2013 5:04,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0152,11/10/2013 3:48,13/02/2013 1:55,4.7,399, Resource Management Errors,nan
CVE-2013-0151,11/10/2013 3:48,7/03/2013 5:04,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3433,11/10/2013 3:44,24/11/2012 20:55,4.9,399, Resource Management Errors,nan
CVE-2012-3432,11/10/2013 3:44,3/12/2012 21:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3132,11/10/2013 3:44,10/08/2012 23:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2751,11/10/2013 3:43,22/07/2012 16:55,4.3,20, Improper Input Validation,nan
CVE-2011-2722,11/10/2013 3:36,25/05/2012 20:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-1411,11/10/2013 3:34,2/09/2011 23:55,5.8,287, Improper Authentication,nan
CVE-2011-1398,11/10/2013 3:34,30/08/2012 22:55,4.3,20, Improper Input Validation,nan
CVE-2012-3581,10/10/2013 20:48,29/08/2012 10:56,3.3,200, Information Exposure,nan
CVE-2013-4379,10/10/2013 20:41,9/10/2013 17:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-5967,10/10/2013 20:38,9/10/2013 14:54,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2138,10/10/2013 20:28,10/10/2013 0:55,7.5,20, Improper Input Validation,nan
CVE-2013-2241,10/10/2013 20:26,10/10/2013 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0736,10/10/2013 20:23,9/10/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5008,10/10/2013 20:10,10/10/2013 10:55,4.6,200, Information Exposure,nan
CVE-2012-3505,10/10/2013 19:25,9/10/2012 23:55,5.0,310, Cryptographic Issues,nan
CVE-2012-3489,10/10/2013 19:23,3/10/2012 21:55,4.0,20, Improper Input Validation,nan
CVE-2013-4136,10/10/2013 19:09,30/09/2013 21:55,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-5964,10/10/2013 18:56,30/09/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0455,10/10/2013 18:33,2/07/2013 14:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3863,10/10/2013 18:24,9/07/2012 10:20,4.0,399, Resource Management Errors,nan
CVE-2013-3409,10/10/2013 18:21,10/10/2013 10:55,4.3,255, Credentials Management,nan
CVE-2013-1839,10/10/2013 17:41,30/09/2013 22:55,7.8,20, Improper Input Validation,nan
CVE-2013-3417,10/10/2013 16:54,30/09/2013 17:09,5.0,287, Improper Authentication,nan
CVE-2013-4378,10/10/2013 16:52,30/09/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4284,10/10/2013 14:09,9/10/2013 14:54,5.0,399, Resource Management Errors,nan
CVE-2013-5327,10/10/2013 13:39,9/10/2013 14:54,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4983,9/10/2013 14:51,10/09/2013 11:28,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-5725,8/10/2013 21:21,1/10/2013 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2269,8/10/2013 20:45,1/10/2013 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3418,8/10/2013 19:24,27/08/2012 23:55,5.0,189, Numeric Errors,nan
CVE-2013-1062,8/10/2013 18:05,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3013,8/10/2013 17:41,7/09/2012 0:55,10.0,255, Credentials Management,nan
CVE-2013-5035,8/10/2013 17:33,5/09/2013 11:44,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-2794,8/10/2013 17:24,9/09/2013 11:39,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4704,8/10/2013 16:23,16/09/2013 13:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5716,8/10/2013 16:04,9/09/2013 17:55,4.3,20, Improper Input Validation,nan
CVE-2013-5715,8/10/2013 15:51,9/09/2013 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4626,8/10/2013 14:22,26/09/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5160,7/10/2013 21:04,28/09/2013 3:40,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5161,7/10/2013 20:53,28/09/2013 3:40,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-5481,7/10/2013 20:36,27/09/2013 10:08,7.1,20, Improper Input Validation,nan
CVE-2013-0126,7/10/2013 20:31,21/03/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5473,7/10/2013 20:26,27/09/2013 10:08,7.8,399, Resource Management Errors,nan
CVE-2013-5093,7/10/2013 20:25,27/09/2013 10:08,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5476,7/10/2013 20:18,27/09/2013 10:08,7.8,20, Improper Input Validation,nan
CVE-2013-5943,7/10/2013 20:17,27/09/2013 10:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5942,7/10/2013 20:17,27/09/2013 10:08,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5480,7/10/2013 20:16,27/09/2013 10:08,7.8,20, Improper Input Validation,nan
CVE-2013-5479,7/10/2013 20:15,27/09/2013 10:08,7.8,20, Improper Input Validation,nan
CVE-2013-5478,7/10/2013 20:14,27/09/2013 10:08,7.8,20, Improper Input Validation,nan
CVE-2013-5477,7/10/2013 20:13,27/09/2013 10:08,7.8,20, Improper Input Validation,nan
CVE-2013-5475,7/10/2013 20:12,27/09/2013 10:08,7.8,20, Improper Input Validation,nan
CVE-2013-5474,7/10/2013 20:11,27/09/2013 10:08,7.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-2704,7/10/2013 20:10,12/07/2013 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1190,7/10/2013 20:08,2/08/2013 12:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4679,7/10/2013 20:02,5/08/2013 13:22,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1630,7/10/2013 19:56,6/08/2013 2:52,6.8,20, Improper Input Validation,nan
CVE-2013-2202,7/10/2013 19:36,8/07/2013 20:55,4.3,200, Information Exposure,nan
CVE-2013-4698,7/10/2013 19:29,16/08/2013 1:55,3.5,200, Information Exposure,nan
CVE-2013-4157,7/10/2013 19:02,4/10/2013 17:55,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-4986,7/10/2013 18:08,4/10/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3582,7/10/2013 18:04,28/08/2013 13:13,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3271,7/10/2013 17:56,28/08/2013 13:13,5.0,255, Credentials Management,nan
CVE-2013-2808,7/10/2013 17:56,5/10/2013 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3584,7/10/2013 17:54,28/08/2013 13:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3585,7/10/2013 17:53,28/08/2013 13:09,5.0,255, Credentials Management,nan
CVE-2013-2983,7/10/2013 17:49,2/07/2013 14:12,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2696,7/10/2013 17:48,25/04/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2123,7/10/2013 17:48,28/08/2013 22:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2197,7/10/2013 17:46,28/08/2013 22:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2247,7/10/2013 17:45,28/08/2013 22:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6601,7/10/2013 17:43,31/08/2013 17:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6591,7/10/2013 17:42,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6603,7/10/2013 17:35,31/08/2013 17:55,10.0,287, Improper Authentication,nan
CVE-2012-6594,7/10/2013 17:35,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6593,7/10/2013 17:28,31/08/2013 17:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6602,7/10/2013 17:27,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6592,7/10/2013 17:18,31/08/2013 17:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6596,7/10/2013 17:16,31/08/2013 17:55,5.0,255, Credentials Management,nan
CVE-2012-6605,7/10/2013 17:15,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6600,7/10/2013 17:15,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6590,7/10/2013 17:15,31/08/2013 17:55,4.3,200, Information Exposure,nan
CVE-2012-6595,7/10/2013 17:13,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6597,7/10/2013 17:11,31/08/2013 17:55,6.3,20, Improper Input Validation,nan
CVE-2012-6604,7/10/2013 17:10,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6599,7/10/2013 17:10,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-6598,7/10/2013 17:10,31/08/2013 17:55,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-3610,7/10/2013 16:35,5/10/2013 10:55,6.1,287, Improper Authentication,nan
CVE-2012-2633,7/10/2013 16:29,15/06/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2398,7/10/2013 16:29,20/04/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2139,7/10/2013 16:18,18/07/2012 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3543,7/10/2013 16:17,4/10/2013 23:55,8.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-1211,7/10/2013 16:17,1/04/2009 10:30,5.8,16, Configuration,nan
CVE-2013-3689,7/10/2013 15:38,4/10/2013 23:55,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-3541,7/10/2013 15:38,4/10/2013 23:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5701,7/10/2013 15:30,3/10/2013 20:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4711,7/10/2013 15:07,4/10/2013 10:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3540,7/10/2013 14:55,4/10/2013 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6011,7/10/2013 14:52,4/10/2013 17:55,7.8,20, Improper Input Validation,nan
CVE-2013-4758,7/10/2013 14:29,4/10/2013 17:55,6.8,399, Resource Management Errors,nan
CVE-2013-4708,7/10/2013 14:06,1/10/2013 17:55,4.0,310, Cryptographic Issues,nan
CVE-2013-0742,7/10/2013 13:35,3/10/2013 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5163,7/10/2013 13:06,4/10/2013 10:44,6.6,287, Improper Authentication,nan
CVE-2013-1065,4/10/2013 16:59,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1063,4/10/2013 16:58,3/10/2013 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-3688,4/10/2013 16:43,1/10/2013 19:55,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2230,4/10/2013 16:43,30/09/2013 21:55,4.0,20, Improper Input Validation,nan
CVE-2013-5690,4/10/2013 16:41,3/10/2013 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3675,4/10/2013 16:41,10/06/2013 3:19,4.3,20, Improper Input Validation,nan
CVE-2012-2380,4/10/2013 15:11,26/06/2012 10:23,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-6009,4/10/2013 14:18,3/10/2013 19:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2381,3/10/2013 19:45,26/06/2012 10:23,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1968,3/10/2013 18:50,30/07/2012 13:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1468,3/10/2013 18:49,14/03/2013 3:13,7.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4104,3/10/2013 18:32,2/10/2013 22:55,6.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4110,3/10/2013 18:31,2/10/2013 22:55,6.8,20, Improper Input Validation,nan
CVE-2012-1611,3/10/2013 18:31,6/09/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1804,3/10/2013 18:30,14/05/2012 20:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0692,3/10/2013 18:07,3/10/2013 11:04,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4111,3/10/2013 18:06,2/10/2013 22:55,6.8,20, Improper Input Validation,nan
CVE-2013-0693,3/10/2013 18:05,3/10/2013 11:04,10.0,200, Information Exposure,nan
CVE-2012-0308,3/10/2013 18:00,29/08/2012 10:56,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5503,3/10/2013 17:58,2/10/2013 22:55,7.8,399, Resource Management Errors,nan
CVE-2012-0340,3/10/2013 17:56,13/02/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4940,3/10/2013 17:54,29/07/2013 13:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0689,3/10/2013 17:40,3/10/2013 11:04,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0694,3/10/2013 17:13,3/10/2013 11:04,9.0,255, Credentials Management,nan
CVE-2013-3625,3/10/2013 17:01,3/10/2013 11:04,7.8,255, Credentials Management,nan
CVE-2013-5944,3/10/2013 16:54,3/10/2013 11:04,10.0,287, Improper Authentication,nan
CVE-2012-4109,3/10/2013 15:58,2/10/2013 22:55,6.8,20, Improper Input Validation,nan
CVE-2013-3593,3/10/2013 15:25,3/10/2013 11:04,7.8,310, Cryptographic Issues,nan
CVE-2012-4102,3/10/2013 14:48,2/10/2013 22:55,6.8,20, Improper Input Validation,nan
CVE-2013-1731,3/10/2013 3:38,18/09/2013 10:08,6.8,20, Improper Input Validation,nan
CVE-2013-1729,3/10/2013 3:38,18/09/2013 10:08,2.6,200, Information Exposure,nan
CVE-2013-1727,3/10/2013 3:38,18/09/2013 10:08,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3969,2/10/2013 20:38,1/10/2013 20:55,6.5,399, Resource Management Errors,nan
CVE-2013-5501,2/10/2013 19:44,20/09/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5500,2/10/2013 19:43,20/09/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3539,2/10/2013 19:26,1/10/2013 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3962,2/10/2013 17:28,1/10/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3690,2/10/2013 17:21,1/10/2013 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5580,2/10/2013 17:18,1/10/2013 19:55,4.3,20, Improper Input Validation,nan
CVE-2013-3963,2/10/2013 17:14,1/10/2013 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3964,2/10/2013 17:10,1/10/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3278,2/10/2013 15:16,1/10/2013 3:48,4.9,255, Credentials Management,nan
CVE-2013-4340,2/10/2013 4:29,12/09/2013 13:30,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4338,2/10/2013 4:29,12/09/2013 13:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4254,2/10/2013 4:29,25/08/2013 3:27,6.9,20, Improper Input Validation,nan
CVE-2013-4205,2/10/2013 4:29,25/08/2013 3:27,4.7,399, Resource Management Errors,nan
CVE-2013-4163,2/10/2013 4:29,29/07/2013 13:59,4.7,399, Resource Management Errors,nan
CVE-2013-1060,2/10/2013 4:23,25/09/2013 10:31,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-4715,2/10/2013 4:18,18/04/2013 11:33,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5692,1/10/2013 20:01,30/09/2013 22:55,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4096,1/10/2013 19:23,1/10/2013 0:55,6.2,20, Improper Input Validation,nan
CVE-2013-4239,1/10/2013 15:16,30/09/2013 21:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4291,1/10/2013 15:00,30/09/2013 21:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5664,30/09/2013 15:08,31/08/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1661,30/09/2013 14:35,4/09/2013 3:24,4.3,20, Improper Input Validation,nan
CVE-2013-3601,30/09/2013 14:34,6/09/2013 11:15,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1649,30/09/2013 14:32,5/09/2013 11:44,4.3,255, Credentials Management,nan
CVE-2013-5472,30/09/2013 14:24,27/09/2013 10:08,7.1,20, Improper Input Validation,nan
CVE-2013-0895,30/09/2013 13:57,23/02/2013 21:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5739,27/09/2013 3:47,12/09/2013 13:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5738,27/09/2013 3:47,12/09/2013 13:30,4.3,20, Improper Input Validation,nan
CVE-2013-5147,27/09/2013 3:47,19/09/2013 10:28,3.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-4783,27/09/2013 3:47,8/07/2013 22:55,10.0,287, Improper Authentication,nan
CVE-2013-1028,27/09/2013 3:43,16/09/2013 13:02,5.8,20, Improper Input Validation,nan
CVE-2013-1026,27/09/2013 3:43,16/09/2013 13:02,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1025,27/09/2013 3:43,16/09/2013 13:02,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1012,27/09/2013 3:43,5/06/2013 14:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3106,26/09/2013 17:35,5/09/2013 11:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3479,26/09/2013 16:47,5/09/2013 3:27,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2582,26/09/2013 16:47,5/09/2013 11:44,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2583,26/09/2013 16:44,5/09/2013 11:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1645,26/09/2013 16:42,5/09/2013 11:44,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3276,26/09/2013 16:41,5/09/2013 11:44,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1647,26/09/2013 16:38,5/09/2013 11:44,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1646,26/09/2013 16:37,5/09/2013 11:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4790,26/09/2013 16:36,5/09/2013 11:44,3.5,255, Credentials Management,nan
CVE-2013-1650,26/09/2013 16:20,5/09/2013 11:44,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2791,26/09/2013 16:17,9/09/2013 11:39,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5666,26/09/2013 3:53,23/09/2013 20:55,4.7,200, Information Exposure,nan
CVE-2013-4813,26/09/2013 3:52,16/09/2013 13:01,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4812,26/09/2013 3:52,16/09/2013 13:01,10.0,20, Improper Input Validation,nan
CVE-2013-4811,26/09/2013 3:52,16/09/2013 13:01,10.0,20, Improper Input Validation,nan
CVE-2013-4809,26/09/2013 3:52,16/09/2013 13:01,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5118,25/09/2013 22:57,25/09/2013 10:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5933,25/09/2013 22:53,25/09/2013 10:31,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5934,25/09/2013 22:49,25/09/2013 10:31,4.0,255, Credentials Management,nan
CVE-2013-5935,25/09/2013 22:48,25/09/2013 10:31,4.3,200, Information Exposure,nan
CVE-2013-2793,25/09/2013 21:58,9/09/2013 11:39,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5936,25/09/2013 21:53,25/09/2013 10:31,4.3,200, Information Exposure,nan
CVE-2013-4313,25/09/2013 18:41,16/09/2013 13:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5674,25/09/2013 18:40,16/09/2013 13:02,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-4341,25/09/2013 18:40,16/09/2013 13:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1441,25/09/2013 18:29,16/09/2013 19:14,4.3,20, Improper Input Validation,nan
CVE-2013-4181,25/09/2013 18:27,16/09/2013 19:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4233,25/09/2013 18:21,16/09/2013 19:14,6.8,189, Numeric Errors,nan
CVE-2013-4278,25/09/2013 18:09,16/09/2013 19:14,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-5711,25/09/2013 18:08,17/09/2013 12:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5754,25/09/2013 18:07,17/09/2013 12:04,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3614,25/09/2013 18:07,17/09/2013 12:04,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-3589,25/09/2013 17:52,24/09/2013 10:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5338,24/09/2013 18:01,23/09/2013 19:55,5.8,20, Improper Input Validation,nan
CVE-2013-1629,24/09/2013 14:32,6/08/2013 2:52,6.8,20, Improper Input Validation,nan
CVE-2012-2624,24/09/2013 13:56,23/09/2013 20:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2861,24/09/2013 3:39,11/08/2010 18:47,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5724,23/09/2013 23:21,12/09/2013 13:31,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-5487,23/09/2013 23:15,23/09/2013 10:18,7.8,200, Information Exposure,nan
CVE-2013-3473,23/09/2013 22:34,20/09/2013 18:55,7.8,287, Improper Authentication,nan
CVE-2013-5696,23/09/2013 22:33,23/09/2013 3:49,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5918,23/09/2013 22:29,23/09/2013 10:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4706,23/09/2013 22:27,20/09/2013 15:26,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4707,23/09/2013 22:25,20/09/2013 15:26,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-5917,23/09/2013 19:23,23/09/2013 10:18,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1130,23/09/2013 15:16,20/09/2013 16:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1121,20/09/2013 0:53,19/09/2013 18:55,5.4,399, Resource Management Errors,nan
CVE-2013-1031,19/09/2013 15:02,16/09/2013 13:02,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4138,19/09/2013 1:10,28/08/2013 22:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3277,19/09/2013 1:03,5/09/2013 11:44,5.8,20, Improper Input Validation,nan
CVE-2013-3458,19/09/2013 0:42,8/09/2013 3:17,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5714,19/09/2013 0:31,9/09/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2297,18/09/2013 20:11,17/09/2013 12:04,6.9,255, Credentials Management,nan
CVE-2013-2296,18/09/2013 19:52,17/09/2013 12:04,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4067,18/09/2013 19:51,17/09/2013 12:04,4.3,399, Resource Management Errors,nan
CVE-2013-2788,18/09/2013 19:49,17/09/2013 12:04,4.3,20, Improper Input Validation,nan
CVE-2013-4766,18/09/2013 16:54,17/09/2013 12:04,4.3,200, Information Exposure,nan
CVE-2013-5132,18/09/2013 15:30,8/09/2013 3:17,5.4,189, Numeric Errors,nan
CVE-2013-2891,18/09/2013 14:41,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2890,18/09/2013 14:30,16/09/2013 13:01,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1033,18/09/2013 13:59,16/09/2013 13:02,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1029,18/09/2013 13:56,16/09/2013 13:02,4.9,20, Improper Input Validation,nan
CVE-2013-1030,18/09/2013 13:54,16/09/2013 13:02,2.1,200, Information Exposure,nan
CVE-2013-1027,18/09/2013 13:41,16/09/2013 13:02,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-5649,18/09/2013 3:30,13/09/2013 14:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5022,18/09/2013 3:30,6/08/2013 20:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5021,18/09/2013 3:30,6/08/2013 20:55,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4298,18/09/2013 3:29,10/09/2013 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3748,18/09/2013 3:22,3/11/2012 17:55,5.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-5709,17/09/2013 18:52,17/09/2013 12:04,8.3,189, Numeric Errors,nan
CVE-2013-3615,17/09/2013 18:37,17/09/2013 12:04,7.8,255, Credentials Management,nan
CVE-2013-3613,17/09/2013 18:35,17/09/2013 12:04,7.8,287, Improper Authentication,nan
CVE-2013-3612,17/09/2013 16:15,17/09/2013 12:04,10.0,255, Credentials Management,nan
CVE-2013-4182,17/09/2013 15:14,16/09/2013 19:14,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4180,17/09/2013 15:00,16/09/2013 19:14,5.0,20, Improper Input Validation,nan
CVE-2013-4900,13/09/2013 18:56,9/09/2013 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5700,13/09/2013 18:42,10/09/2013 11:28,5.0,189, Numeric Errors,nan
CVE-2013-3446,13/09/2013 18:35,12/09/2013 13:28,5.8,20, Improper Input Validation,nan
CVE-2013-4705,13/09/2013 18:08,13/09/2013 14:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5216,13/09/2013 18:07,12/09/2013 18:37,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5482,13/09/2013 18:06,13/09/2013 14:10,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-3657,13/09/2013 18:01,10/09/2013 11:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2934,13/09/2013 16:17,12/09/2013 18:37,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4258,13/09/2013 6:38,30/12/2010 19:00,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1491,13/09/2013 6:31,23/04/2010 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1190,13/09/2013 6:30,31/03/2010 18:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3192,13/09/2013 6:22,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4925,13/09/2013 5:43,18/09/2007 18:17,7.5,20, Improper Input Validation,nan
CVE-2013-3658,12/09/2013 17:07,10/09/2013 11:28,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3360,12/09/2013 13:58,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3359,12/09/2013 13:57,12/09/2013 13:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5147,12/09/2013 6:24,31/08/2012 21:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1049,12/09/2013 6:08,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5645,12/09/2013 3:37,29/08/2013 12:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5642,12/09/2013 3:37,9/09/2013 17:55,5.0,20, Improper Input Validation,nan
CVE-2013-5641,12/09/2013 3:37,9/09/2013 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-5471,12/09/2013 3:37,5/09/2013 3:27,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5097,12/09/2013 3:37,16/08/2013 14:01,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5096,12/09/2013 3:37,16/08/2013 14:01,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-5095,12/09/2013 3:37,16/08/2013 13:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4974,12/09/2013 3:37,27/08/2013 3:34,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4973,12/09/2013 3:37,27/08/2013 3:34,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4702,12/09/2013 3:36,30/08/2013 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4635,12/09/2013 3:36,21/06/2013 21:55,5.0,189, Numeric Errors,nan
CVE-2013-3596,12/09/2013 3:36,8/09/2013 16:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2062,12/09/2013 3:34,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-0290,12/09/2013 3:31,19/02/2013 19:55,4.9,20, Improper Input Validation,nan
CVE-2012-4388,12/09/2013 3:28,7/09/2012 22:55,4.3,20, Improper Input Validation,nan
CVE-2009-5031,12/09/2013 2:58,22/07/2012 16:55,4.3,20, Improper Input Validation,nan
CVE-2013-4169,12/09/2013 1:06,10/09/2013 19:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-4283,11/09/2013 14:13,10/09/2013 19:55,5.0,20, Improper Input Validation,nan
CVE-2011-5168,11/09/2013 6:22,15/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3896,11/09/2013 6:00,24/11/2009 17:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3598,11/09/2013 3:23,28/08/2013 13:09,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3459,11/09/2013 3:23,25/08/2013 3:27,7.8,399, Resource Management Errors,nan
CVE-2013-3934,10/09/2013 23:05,10/09/2013 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0533,10/09/2013 17:18,30/03/2010 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2203,10/09/2013 17:12,8/07/2013 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-2201,10/09/2013 17:03,8/07/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4899,10/09/2013 13:31,9/09/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1761,10/09/2013 6:20,7/06/2012 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2803,9/09/2013 19:28,9/09/2013 11:39,9.3,310, Cryptographic Issues,nan
CVE-2010-4109,9/09/2013 6:04,8/12/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1354,9/09/2013 5:58,12/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-1228,8/09/2013 5:32,10/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3742,7/09/2013 6:30,4/07/2013 14:33,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5990,6/09/2013 17:57,6/09/2013 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3604,6/09/2013 17:56,6/09/2013 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3603,6/09/2013 17:56,6/09/2013 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5706,6/09/2013 17:55,6/09/2013 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3605,6/09/2013 17:55,6/09/2013 11:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5708,6/09/2013 17:53,6/09/2013 11:15,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3600,6/09/2013 17:51,6/09/2013 11:15,8.5,20, Improper Input Validation,nan
CVE-2013-2804,6/09/2013 17:49,28/08/2013 13:09,7.1,20, Improper Input Validation,nan
CVE-2013-5698,6/09/2013 17:44,5/09/2013 11:44,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1648,6/09/2013 17:43,5/09/2013 11:44,3.5,20, Improper Input Validation,nan
CVE-2013-5707,6/09/2013 17:09,6/09/2013 11:15,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3602,6/09/2013 14:38,6/09/2013 11:15,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3599,6/09/2013 14:04,6/09/2013 11:15,9.3,20, Improper Input Validation,nan
CVE-2013-1119,6/09/2013 13:39,6/09/2013 11:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1118,6/09/2013 13:38,6/09/2013 11:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1117,6/09/2013 13:37,6/09/2013 11:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1116,6/09/2013 13:34,6/09/2013 11:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1115,6/09/2013 13:33,6/09/2013 11:15,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3597,5/09/2013 15:47,28/08/2013 13:09,5.0,200, Information Exposure,nan
CVE-2013-4272,5/09/2013 15:41,28/08/2013 22:55,4.3,200, Information Exposure,nan
CVE-2012-1901,5/09/2013 6:23,18/09/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4849,4/09/2013 6:11,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6502,3/09/2013 18:29,22/01/2013 15:55,2.6,200, Information Exposure,nan
CVE-2012-6571,2/09/2013 6:29,20/06/2013 15:55,7.5,310, Cryptographic Issues,nan
CVE-2011-2486,1/09/2013 6:24,19/11/2012 12:10,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3393,31/08/2013 6:39,26/06/2013 19:55,5.0,20, Improper Input Validation,nan
CVE-2006-6957,31/08/2013 5:20,29/01/2007 16:28,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5744,30/08/2013 13:44,30/08/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1435,30/08/2013 6:38,23/08/2013 16:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5648,30/08/2013 0:46,29/08/2013 12:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5647,29/08/2013 22:03,29/08/2013 12:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-5646,29/08/2013 21:51,29/08/2013 12:07,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4274,29/08/2013 17:21,28/08/2013 22:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2800,29/08/2013 13:42,22/08/2013 5:34,5.0,399, Resource Management Errors,nan
CVE-2013-3453,29/08/2013 13:26,22/08/2013 22:55,7.8,399, Resource Management Errors,nan
CVE-2013-3586,29/08/2013 13:19,28/08/2013 13:09,7.6,287, Improper Authentication,nan
CVE-2013-2782,29/08/2013 13:04,28/08/2013 13:09,9.3,310, Cryptographic Issues,nan
CVE-2013-3583,29/08/2013 12:58,28/08/2013 13:09,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2176,29/08/2013 12:51,28/08/2013 21:55,7.2,399, Resource Management Errors,nan
CVE-2011-1848,28/08/2013 6:36,13/05/2011 17:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5020,28/08/2013 6:31,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4456,28/08/2013 6:14,30/12/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4656,28/08/2013 5:37,4/09/2007 22:17,2.1,310, Cryptographic Issues,nan
CVE-2012-4733,27/08/2013 17:16,23/08/2013 16:55,6.0,255, Credentials Management,nan
CVE-2013-4247,27/08/2013 14:25,25/08/2013 3:27,7.8,189, Numeric Errors,nan
CVE-2010-5289,27/08/2013 14:17,25/08/2013 3:27,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6584,27/08/2013 14:13,25/08/2013 3:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6586,27/08/2013 14:01,25/08/2013 3:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4172,27/08/2013 13:51,23/08/2013 16:55,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6587,27/08/2013 13:46,25/08/2013 3:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6588,27/08/2013 13:27,25/08/2013 3:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3387,27/08/2013 13:26,25/08/2013 3:27,7.8,399, Resource Management Errors,nan
CVE-2013-3389,27/08/2013 13:20,25/08/2013 3:27,7.8,399, Resource Management Errors,nan
CVE-2013-3390,27/08/2013 13:17,25/08/2013 3:27,7.8,399, Resource Management Errors,nan
CVE-2013-4218,27/08/2013 13:03,25/08/2013 3:27,2.1,310, Cryptographic Issues,nan
CVE-2013-3372,27/08/2013 13:02,23/08/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4216,27/08/2013 13:01,25/08/2013 3:27,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-3720,27/08/2013 12:58,31/05/2013 12:20,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0993,27/08/2013 5:56,18/03/2008 23:44,2.1,200, Information Exposure,nan
CVE-2012-4464,27/08/2013 3:27,25/04/2013 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2692,27/08/2013 3:24,17/06/2012 3:41,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1123,27/08/2013 3:21,29/06/2012 19:55,7.5,287, Improper Authentication,nan
CVE-2012-1122,27/08/2013 3:21,29/06/2012 19:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1121,27/08/2013 3:21,29/06/2012 19:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1120,27/08/2013 3:21,29/06/2012 19:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-1119,27/08/2013 3:21,29/06/2012 19:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-1118,27/08/2013 3:21,29/06/2012 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3755,27/08/2013 3:17,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-2938,27/08/2013 3:15,21/09/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4350,27/08/2013 3:07,3/01/2011 20:00,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4348,27/08/2013 3:06,3/01/2011 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3763,27/08/2013 3:05,5/10/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3303,27/08/2013 3:04,5/10/2010 22:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5578,26/08/2013 19:27,25/08/2013 3:27,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4219,26/08/2013 18:40,25/08/2013 3:27,7.5,189, Numeric Errors,nan
CVE-2013-4217,26/08/2013 18:29,25/08/2013 3:27,2.1,310, Cryptographic Issues,nan
CVE-2013-3388,26/08/2013 17:42,25/08/2013 3:27,7.8,399, Resource Management Errors,nan
CVE-2012-6589,26/08/2013 17:32,25/08/2013 3:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6585,26/08/2013 15:20,25/08/2013 3:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1662,26/08/2013 15:14,24/08/2013 1:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-5587,26/08/2013 14:58,23/08/2013 16:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3373,26/08/2013 14:38,23/08/2013 16:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3371,26/08/2013 14:33,23/08/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3370,26/08/2013 14:31,23/08/2013 16:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-3368,26/08/2013 14:25,23/08/2013 16:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1909,26/08/2013 14:01,23/08/2013 16:55,5.8,20, Improper Input Validation,nan
CVE-2013-2802,23/08/2013 20:28,21/08/2013 21:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2789,23/08/2013 20:26,22/08/2013 5:34,7.8,399, Resource Management Errors,nan
CVE-2013-2801,23/08/2013 17:09,22/08/2013 5:35,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2299,23/08/2013 13:37,22/08/2013 5:34,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4883,22/08/2013 6:54,22/07/2013 11:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4882,22/08/2013 6:54,22/07/2013 11:21,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4877,22/08/2013 6:54,18/07/2013 16:51,2.6,287, Improper Authentication,nan
CVE-2013-4875,22/08/2013 6:54,18/07/2013 16:51,6.2,287, Improper Authentication,nan
CVE-2013-4874,22/08/2013 6:54,18/07/2013 16:51,6.2,287, Improper Authentication,nan
CVE-2013-4781,22/08/2013 6:54,18/07/2013 16:51,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-4780,22/08/2013 6:54,18/07/2013 16:51,7.8,200, Information Exposure,nan
CVE-2013-4779,22/08/2013 6:54,18/07/2013 16:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4778,22/08/2013 6:54,18/07/2013 16:51,7.8,200, Information Exposure,nan
CVE-2013-4685,22/08/2013 6:54,11/07/2013 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4677,22/08/2013 6:54,5/08/2013 13:22,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4676,22/08/2013 6:54,5/08/2013 13:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4668,22/08/2013 6:54,18/07/2013 16:51,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4575,22/08/2013 6:54,5/08/2013 13:22,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3956,22/08/2013 6:54,31/07/2013 13:20,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-3823,22/08/2013 6:54,17/07/2013 13:41,4.0,200, Information Exposure,nan
CVE-2013-3347,22/08/2013 6:53,10/07/2013 10:55,10.0,189, Numeric Errors,nan
CVE-2013-3345,22/08/2013 6:53,10/07/2013 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2173,22/08/2013 6:52,21/06/2013 13:57,4.3,310, Cryptographic Issues,nan
CVE-2013-2117,22/08/2013 6:51,9/08/2013 20:56,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1772,22/08/2013 6:51,28/02/2013 19:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1767,22/08/2013 6:51,28/02/2013 19:55,6.2,399, Resource Management Errors,nan
CVE-2013-0268,22/08/2013 6:48,18/02/2013 4:41,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0228,22/08/2013 6:48,1/03/2013 12:37,6.2,189, Numeric Errors,nan
CVE-2013-0217,22/08/2013 6:48,18/02/2013 4:41,5.2,399, Resource Management Errors,nan
CVE-2013-0216,22/08/2013 6:48,18/02/2013 4:41,5.2,20, Improper Input Validation,nan
CVE-2013-0131,22/08/2013 6:48,8/04/2013 16:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6549,22/08/2013 6:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6547,22/08/2013 6:48,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-5522,22/08/2013 6:46,16/11/2012 0:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4716,22/08/2013 6:36,8/12/2011 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2131,22/08/2013 6:23,2/06/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4960,22/08/2013 3:59,20/06/2013 15:55,6.5,310, Cryptographic Issues,nan
CVE-2012-4922,22/08/2013 3:59,14/09/2012 18:55,5.0,20, Improper Input Validation,nan
CVE-2012-4565,22/08/2013 3:58,21/12/2012 11:47,4.7,189, Numeric Errors,nan
CVE-2012-4225,22/08/2013 3:57,19/11/2012 12:10,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-3519,22/08/2013 3:56,26/08/2012 3:17,5.0,200, Information Exposure,nan
CVE-2012-3518,22/08/2013 3:56,26/08/2012 3:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3517,22/08/2013 3:56,26/08/2012 3:17,5.0,399, Resource Management Errors,nan
CVE-2012-2921,22/08/2013 3:55,21/05/2012 22:55,5.0,399, Resource Management Errors,nan
CVE-2012-0957,22/08/2013 3:51,21/12/2012 11:47,4.9,16, Configuration,nan
CVE-2012-0283,22/08/2013 3:50,13/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4114,21/08/2013 18:37,16/08/2013 17:55,5.0,255, Credentials Management,nan
CVE-2013-5321,21/08/2013 14:08,20/08/2013 14:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5319,21/08/2013 14:05,20/08/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0696,21/08/2013 6:18,23/02/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-5314,20/08/2013 13:46,19/08/2013 21:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5313,20/08/2013 13:30,19/08/2013 21:10,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-5312,20/08/2013 13:17,19/08/2013 21:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5311,20/08/2013 13:15,19/08/2013 21:10,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3416,20/08/2013 3:23,10/07/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3412,20/08/2013 3:23,18/07/2013 12:48,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3410,20/08/2013 3:23,18/07/2013 12:48,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3408,20/08/2013 3:23,10/07/2013 21:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-3404,20/08/2013 3:23,18/07/2013 12:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3402,20/08/2013 3:23,18/07/2013 12:48,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3400,20/08/2013 3:23,10/07/2013 20:55,6.8,20, Improper Input Validation,nan
CVE-2013-3348,20/08/2013 3:23,10/07/2013 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4557,19/08/2013 6:17,17/12/2010 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3544,19/08/2013 5:47,13/10/2008 20:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4801,18/08/2013 6:24,14/12/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3313,18/08/2013 6:14,22/09/2010 19:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4615,17/08/2013 6:49,27/11/2012 21:55,2.1,310, Cryptographic Issues,nan
CVE-2012-4614,17/08/2013 6:49,27/11/2012 21:55,9.3,287, Improper Authentication,nan
CVE-2012-4611,17/08/2013 6:49,27/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3749,17/08/2013 6:47,3/11/2012 17:55,5.0,200, Information Exposure,nan
CVE-2012-3412,17/08/2013 6:46,3/10/2012 11:02,7.8,189, Numeric Errors,nan
CVE-2009-4317,16/08/2013 6:54,14/12/2009 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7247,16/08/2013 5:46,6/09/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5121,14/08/2013 17:52,14/08/2013 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-5120,14/08/2013 17:31,14/08/2013 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2127,14/08/2013 17:14,14/08/2013 15:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2783,14/08/2013 6:04,17/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4943,13/08/2013 19:50,9/08/2013 19:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-4789,13/08/2013 18:45,9/08/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2790,13/08/2013 18:39,13/08/2013 15:04,7.8,20, Improper Input Validation,nan
CVE-2011-4718,13/08/2013 18:32,13/08/2013 15:04,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-2204,13/08/2013 17:21,8/07/2013 20:55,4.3,20, Improper Input Validation,nan
CVE-2013-2200,13/08/2013 17:21,8/07/2013 20:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2199,13/08/2013 17:21,8/07/2013 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1005,13/08/2013 17:00,2/03/2011 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5284,13/08/2013 16:58,26/11/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4619,13/08/2013 14:05,9/08/2013 21:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4620,13/08/2013 13:56,9/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6458,13/08/2013 13:10,9/08/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2798,12/08/2013 20:23,9/08/2013 23:55,4.7,20, Improper Input Validation,nan
CVE-2013-2796,12/08/2013 20:21,9/08/2013 23:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-2792,12/08/2013 20:00,9/08/2013 23:55,7.1,20, Improper Input Validation,nan
CVE-2012-3039,12/08/2013 19:28,9/08/2013 23:55,7.1,310, Cryptographic Issues,nan
CVE-2011-4583,12/08/2013 17:58,20/07/2012 10:40,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4600,12/08/2013 17:45,9/08/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3253,12/08/2013 16:38,9/08/2013 20:56,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0150,12/08/2013 15:57,9/08/2013 20:56,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3454,9/08/2013 17:55,8/08/2013 14:55,10.0,255, Credentials Management,nan
CVE-2013-4678,9/08/2013 14:08,5/08/2013 13:22,2.7,200, Information Exposure,nan
CVE-2009-4584,9/08/2013 6:17,6/01/2010 22:00,7.5,287, Improper Authentication,nan
CVE-2007-6062,7/08/2013 5:43,20/11/2007 23:46,5.0,20, Improper Input Validation,nan
CVE-2013-3451,5/08/2013 13:22,5/08/2013 13:22,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3450,5/08/2013 13:22,5/08/2013 13:22,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3442,5/08/2013 13:22,5/08/2013 13:22,4.0,200, Information Exposure,nan
CVE-2011-3918,3/08/2013 7:37,7/10/2012 15:55,7.8,399, Resource Management Errors,nan
CVE-2011-0277,3/08/2013 7:29,9/02/2011 1:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-4651,1/08/2013 13:32,1/08/2013 13:32,6.6,255, Credentials Management,nan
CVE-2013-3724,1/08/2013 13:32,1/08/2013 13:32,5.0,20, Improper Input Validation,nan
CVE-2012-5460,1/08/2013 13:32,1/08/2013 13:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5020,31/07/2013 13:20,31/07/2013 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5001,31/07/2013 13:20,31/07/2013 13:20,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-5000,31/07/2013 13:20,31/07/2013 13:20,5.0,200, Information Exposure,nan
CVE-2013-4999,31/07/2013 13:20,31/07/2013 13:20,5.0,200, Information Exposure,nan
CVE-2013-4998,31/07/2013 13:20,31/07/2013 13:20,5.0,200, Information Exposure,nan
CVE-2013-4997,31/07/2013 13:20,31/07/2013 13:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4156,31/07/2013 13:20,31/07/2013 13:20,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3697,31/07/2013 13:20,31/07/2013 13:20,7.2,189, Numeric Errors,nan
CVE-2013-2785,31/07/2013 13:20,31/07/2013 13:20,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2220,31/07/2013 13:20,31/07/2013 13:20,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2189,31/07/2013 13:20,31/07/2013 13:20,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2056,31/07/2013 13:20,31/07/2013 13:20,5.0,287, Improper Authentication,nan
CVE-2013-1377,31/07/2013 13:20,31/07/2013 13:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0943,31/07/2013 13:20,31/07/2013 13:20,4.6,200, Information Exposure,nan
CVE-2011-4813,31/07/2013 6:24,14/12/2011 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3010,31/07/2013 6:12,15/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4399,30/07/2013 6:28,9/10/2012 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4953,30/07/2013 4:00,29/07/2013 23:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4952,30/07/2013 4:00,29/07/2013 23:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-4951,30/07/2013 4:00,29/07/2013 23:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4946,30/07/2013 4:00,29/07/2013 23:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4945,30/07/2013 4:00,29/07/2013 23:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-2181,30/07/2013 4:00,29/07/2013 23:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0723,30/07/2013 4:00,29/07/2013 23:27,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2000-0589,30/07/2013 4:00,26/06/2000 4:00,7.5,310, Cryptographic Issues,nan
CVE-2000-0588,30/07/2013 4:00,26/06/2000 4:00,5.0,200, Information Exposure,nan
CVE-2013-4942,29/07/2013 13:59,29/07/2013 13:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4941,29/07/2013 13:59,29/07/2013 13:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4939,29/07/2013 13:59,29/07/2013 13:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4938,29/07/2013 13:59,29/07/2013 13:59,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-4127,29/07/2013 13:59,29/07/2013 13:59,4.7,399, Resource Management Errors,nan
CVE-2013-3580,29/07/2013 13:59,29/07/2013 13:59,4.3,20, Improper Input Validation,nan
CVE-2013-3300,29/07/2013 13:59,29/07/2013 13:59,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2246,29/07/2013 13:59,29/07/2013 13:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2245,29/07/2013 13:59,29/07/2013 13:59,4.0,287, Improper Authentication,nan
CVE-2013-2244,29/07/2013 13:59,29/07/2013 13:59,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2243,29/07/2013 13:59,29/07/2013 13:59,4.0,200, Information Exposure,nan
CVE-2013-2242,29/07/2013 13:59,29/07/2013 13:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4878,29/07/2013 4:00,18/07/2013 16:51,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3275,29/07/2013 4:00,19/07/2013 14:36,4.3,20, Improper Input Validation,nan
CVE-2013-3274,29/07/2013 4:00,19/07/2013 14:36,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1955,29/07/2013 4:00,20/07/2013 3:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6349,29/07/2013 4:00,18/07/2013 16:51,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1008,26/07/2013 6:40,8/02/2012 4:11,5.0,20, Improper Input Validation,nan
CVE-2012-6579,26/07/2013 4:00,24/07/2013 12:01,6.4,310, Cryptographic Issues,nan
CVE-2013-3418,25/07/2013 16:52,11/07/2013 22:55,6.8,399, Resource Management Errors,nan
CVE-2012-4680,25/07/2013 16:46,27/08/2012 23:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4348,25/07/2013 16:37,8/06/2013 13:05,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-6581,24/07/2013 12:01,24/07/2013 12:01,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-6580,24/07/2013 12:01,24/07/2013 12:01,4.3,310, Cryptographic Issues,nan
CVE-2012-6578,24/07/2013 12:01,24/07/2013 12:01,4.3,310, Cryptographic Issues,nan
CVE-2013-3399,23/07/2013 9:55,2/07/2013 3:43,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1217,23/07/2013 8:57,30/03/2010 23:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0711,20/07/2013 6:53,25/02/2010 20:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0322,20/07/2013 3:35,27/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5552,20/07/2013 3:33,3/12/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-4485,20/07/2013 3:31,31/10/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4876,19/07/2013 4:00,18/07/2013 16:51,6.2,255, Credentials Management,nan
CVE-2013-3426,18/07/2013 12:51,18/07/2013 12:51,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3420,18/07/2013 12:51,18/07/2013 12:51,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1218,18/07/2013 12:48,18/07/2013 12:48,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1852,17/07/2013 6:27,13/05/2011 17:05,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4731,17/07/2013 4:00,30/06/2013 19:28,9.3,287, Improper Authentication,nan
CVE-2013-1908,17/07/2013 4:00,16/07/2013 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0246,16/07/2013 18:55,16/07/2013 18:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-3578,16/07/2013 4:00,15/07/2013 20:55,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3577,16/07/2013 4:00,15/07/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3428,16/07/2013 4:00,15/07/2013 15:55,4.0,200, Information Exposure,nan
CVE-2013-1087,16/07/2013 4:00,15/07/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2688,15/07/2013 4:00,12/07/2013 16:56,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2687,15/07/2013 4:00,12/07/2013 16:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2311,15/07/2013 4:00,22/05/2013 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2054,15/07/2013 4:00,9/07/2013 17:55,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4265,14/07/2013 6:25,13/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3413,13/07/2013 7:16,4/07/2013 14:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3419,12/07/2013 4:00,11/07/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3245,11/07/2013 4:00,10/07/2013 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2786,11/07/2013 4:00,10/07/2013 22:55,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-2784,11/07/2013 4:00,10/07/2013 22:55,7.8,310, Cryptographic Issues,nan
CVE-2013-2115,11/07/2013 4:00,10/07/2013 19:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1132,11/07/2013 4:00,10/07/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0430,10/07/2013 20:01,19/02/2011 1:00,7.5,399, Resource Management Errors,nan
CVE-2013-3273,9/07/2013 12:56,8/07/2013 20:55,2.1,255, Credentials Management,nan
CVE-2013-0237,8/07/2013 20:55,8/07/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0236,8/07/2013 20:55,8/07/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1615,8/07/2013 17:55,8/07/2013 17:55,2.9,200, Information Exposure,nan
CVE-2013-1614,8/07/2013 17:55,8/07/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1613,8/07/2013 17:55,8/07/2013 17:55,4.7,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1414,8/07/2013 17:55,8/07/2013 17:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3299,8/07/2013 4:00,6/07/2013 13:57,4.3,20, Improper Input Validation,nan
CVE-2013-1224,8/07/2013 4:00,9/05/2013 12:31,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4823,5/07/2013 5:45,11/09/2007 19:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4729,5/07/2013 4:00,4/07/2013 14:33,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4650,5/07/2013 4:00,4/07/2013 14:33,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3563,5/07/2013 4:00,4/07/2013 14:33,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2144,4/07/2013 19:13,3/07/2013 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1613,4/07/2013 7:30,4/09/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4739,4/07/2013 7:13,16/02/2011 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1814,3/07/2013 17:03,14/03/2013 0:55,4.0,200, Information Exposure,nan
CVE-2013-0259,3/07/2013 4:29,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6550,3/07/2013 4:29,2/04/2013 3:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4746,2/07/2013 4:00,1/07/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4745,2/07/2013 4:00,1/07/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3925,2/07/2013 4:00,1/07/2013 21:55,5.8,20, Improper Input Validation,nan
CVE-2013-4735,1/07/2013 18:48,30/06/2013 19:28,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4098,1/07/2013 17:14,28/06/2013 23:55,5.0,20, Improper Input Validation,nan
CVE-2013-4097,1/07/2013 17:13,28/06/2013 23:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4096,1/07/2013 17:02,28/06/2013 23:55,9.0,20, Improper Input Validation,nan
CVE-2013-4095,1/07/2013 16:54,28/06/2013 23:55,6.5,20, Improper Input Validation,nan
CVE-2013-4094,1/07/2013 16:50,28/06/2013 23:55,6.5,20, Improper Input Validation,nan
CVE-2013-4093,1/07/2013 16:45,28/06/2013 23:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-4092,1/07/2013 16:44,28/06/2013 23:55,5.0,255, Credentials Management,nan
CVE-2013-4091,1/07/2013 16:38,28/06/2013 23:55,7.5,255, Credentials Management,nan
CVE-2010-5288,1/07/2013 16:09,28/06/2013 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4660,1/07/2013 14:51,28/06/2013 14:55,6.8,20, Improper Input Validation,nan
CVE-2013-4733,1/07/2013 4:00,30/06/2013 19:28,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-4732,1/07/2013 4:00,30/06/2013 19:28,10.0,255, Credentials Management,nan
CVE-2013-0137,1/07/2013 4:00,30/06/2013 19:28,10.0,310, Cryptographic Issues,nan
CVE-2013-3383,28/06/2013 4:00,27/06/2013 21:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3398,27/06/2013 22:41,26/06/2013 21:55,5.0,200, Information Exposure,nan
CVE-2013-3382,27/06/2013 20:50,26/06/2013 19:55,7.8,20, Improper Input Validation,nan
CVE-2013-2177,26/06/2013 19:23,25/06/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4604,26/06/2013 14:45,25/06/2013 14:38,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4945,26/06/2013 3:14,18/11/2012 21:55,7.5,20, Improper Input Validation,nan
CVE-2012-4942,26/06/2013 3:14,18/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4941,26/06/2013 3:14,18/11/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4552,26/06/2013 3:14,18/11/2012 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1906,25/06/2013 15:12,24/06/2013 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4636,24/06/2013 22:37,21/06/2013 21:55,4.3,20, Improper Input Validation,nan
CVE-2013-4615,24/06/2013 22:31,21/06/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-4614,24/06/2013 22:30,21/06/2013 21:55,2.1,255, Credentials Management,nan
CVE-2013-4613,24/06/2013 22:28,21/06/2013 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3392,24/06/2013 22:16,21/06/2013 21:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3250,24/06/2013 4:00,21/06/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4697,24/06/2013 4:00,23/05/2013 17:55,10.0,255, Credentials Management,nan
CVE-2013-3377,21/06/2013 17:29,21/06/2013 13:57,7.8,399, Resource Management Errors,nan
CVE-2013-4633,21/06/2013 16:39,20/06/2013 15:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-4631,21/06/2013 16:22,20/06/2013 15:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3379,21/06/2013 13:57,21/06/2013 13:57,8.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-3378,21/06/2013 13:57,21/06/2013 13:57,7.8,20, Improper Input Validation,nan
CVE-2013-4632,21/06/2013 4:00,20/06/2013 15:55,7.8,20, Improper Input Validation,nan
CVE-2013-4629,21/06/2013 4:00,20/06/2013 15:55,8.5,255, Credentials Management,nan
CVE-2013-4628,21/06/2013 4:00,20/06/2013 15:55,3.5,200, Information Exposure,nan
CVE-2012-6570,21/06/2013 4:00,20/06/2013 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6569,21/06/2013 4:00,20/06/2013 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6568,21/06/2013 4:00,20/06/2013 15:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2004,21/06/2013 3:17,15/06/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1994,21/06/2013 3:17,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1982,21/06/2013 3:17,15/06/2013 19:55,6.8,189, Numeric Errors,nan
CVE-2013-1969,21/06/2013 3:17,25/04/2013 23:55,7.5,399, Resource Management Errors,nan
CVE-2013-1940,21/06/2013 3:17,13/05/2013 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-0913,21/06/2013 3:16,18/03/2013 15:55,7.2,189, Numeric Errors,nan
CVE-2013-0871,21/06/2013 3:16,18/02/2013 4:41,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-5481,21/06/2013 3:14,21/11/2012 12:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5480,21/06/2013 3:14,21/11/2012 12:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-5479,21/06/2013 3:14,21/11/2012 12:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5473,21/06/2013 3:14,21/11/2012 12:55,4.0,200, Information Exposure,nan
CVE-2012-5472,21/06/2013 3:14,21/11/2012 12:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5471,21/06/2013 3:14,21/11/2012 12:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4542,21/06/2013 3:13,28/02/2013 19:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3040,21/06/2013 3:12,10/10/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2119,21/06/2013 3:11,22/01/2013 23:55,5.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4604,21/06/2013 3:07,7/06/2013 14:03,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3873,21/06/2013 2:56,3/01/2011 20:00,7.8,399, Resource Management Errors,nan
CVE-2007-6746,21/06/2013 2:26,21/05/2013 18:55,5.8,20, Improper Input Validation,nan
CVE-2013-1612,20/06/2013 4:00,20/06/2013 3:17,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-4622,19/06/2013 13:39,19/06/2013 13:39,7.5,255, Credentials Management,nan
CVE-2012-4009,19/06/2013 4:00,31/08/2012 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4008,19/06/2013 4:00,31/08/2012 14:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1203,18/06/2013 15:04,18/06/2013 14:55,5.4,20, Improper Input Validation,nan
CVE-2013-3520,18/06/2013 4:00,17/06/2013 3:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2309,18/06/2013 4:00,17/06/2013 3:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4608,17/06/2013 21:20,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-4609,17/06/2013 20:59,17/06/2013 11:38,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-4612,17/06/2013 19:14,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6567,17/06/2013 11:38,17/06/2013 11:38,6.5,20, Improper Input Validation,nan
CVE-2012-6566,17/06/2013 11:38,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6565,17/06/2013 11:38,17/06/2013 11:38,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6564,17/06/2013 11:38,17/06/2013 11:38,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3959,17/06/2013 4:00,14/06/2013 19:55,4.0,200, Information Exposure,nan
CVE-2013-3958,17/06/2013 4:00,14/06/2013 19:55,7.5,255, Credentials Management,nan
CVE-2013-3957,17/06/2013 4:00,14/06/2013 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3643,17/06/2013 4:00,17/06/2013 3:29,4.3,200, Information Exposure,nan
CVE-2013-3642,17/06/2013 4:00,17/06/2013 3:29,4.3,200, Information Exposure,nan
CVE-2013-2783,17/06/2013 4:00,14/06/2013 19:55,7.1,20, Improper Input Validation,nan
CVE-2013-2310,17/06/2013 4:00,17/06/2013 3:29,3.3,287, Improper Authentication,nan
CVE-2012-3525,15/06/2013 3:14,25/08/2012 16:55,5.8,20, Improper Input Validation,nan
CVE-2013-3645,14/06/2013 15:12,14/06/2013 13:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3575,14/06/2013 15:00,14/06/2013 13:07,5.0,20, Improper Input Validation,nan
CVE-2013-3574,14/06/2013 14:59,14/06/2013 13:07,7.8,20, Improper Input Validation,nan
CVE-2013-3376,14/06/2013 13:18,14/06/2013 13:07,4.3,20, Improper Input Validation,nan
CVE-2013-3375,14/06/2013 13:10,14/06/2013 13:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3573,14/06/2013 13:07,14/06/2013 13:07,10.0,20, Improper Input Validation,nan
CVE-2013-3970,13/06/2013 17:47,13/06/2013 16:47,4.3,310, Cryptographic Issues,nan
CVE-2013-3381,12/06/2013 4:00,12/06/2013 3:30,5.0,399, Resource Management Errors,nan
CVE-2013-3640,11/06/2013 4:00,10/06/2013 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1212,11/06/2013 4:00,29/05/2013 19:55,5.8,310, Cryptographic Issues,nan
CVE-2011-4347,10/06/2013 17:30,8/06/2013 13:05,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1180,10/06/2013 13:43,8/06/2013 13:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0144,10/06/2013 13:19,7/06/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3673,10/06/2013 4:00,10/06/2013 3:19,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3671,10/06/2013 4:00,10/06/2013 3:19,4.3,189, Numeric Errors,nan
CVE-2013-3670,10/06/2013 4:00,10/06/2013 3:19,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0947,10/06/2013 4:00,7/06/2013 20:55,2.1,255, Credentials Management,nan
CVE-2013-0143,10/06/2013 4:00,7/06/2013 20:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-0142,10/06/2013 4:00,7/06/2013 20:55,5.0,255, Credentials Management,nan
CVE-2011-4098,10/06/2013 4:00,8/06/2013 13:05,1.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4087,10/06/2013 4:00,8/06/2013 13:05,4.3,399, Resource Management Errors,nan
CVE-2011-3619,10/06/2013 4:00,8/06/2013 13:05,4.6,20, Improper Input Validation,nan
CVE-2013-2318,7/06/2013 4:00,6/06/2013 13:02,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1205,6/06/2013 14:34,6/06/2013 13:02,4.3,287, Improper Authentication,nan
CVE-2013-3952,6/06/2013 4:00,5/06/2013 14:39,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3718,6/06/2013 4:00,20/09/2012 21:55,2.1,200, Information Exposure,nan
CVE-2013-3661,6/06/2013 3:26,24/05/2013 20:55,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1945,6/06/2013 3:10,31/05/2011 20:55,2.6,310, Cryptographic Issues,nan
CVE-2013-1009,5/06/2013 16:55,5/06/2013 14:39,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0984,5/06/2013 16:11,5/06/2013 14:39,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0982,5/06/2013 15:13,5/06/2013 14:39,1.7,200, Information Exposure,nan
CVE-2013-3949,5/06/2013 14:39,5/06/2013 14:39,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-1023,5/06/2013 14:39,5/06/2013 14:39,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1013,5/06/2013 14:39,5/06/2013 14:39,4.3,20, Improper Input Validation,nan
CVE-2013-0990,5/06/2013 14:39,5/06/2013 14:39,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0985,5/06/2013 14:39,5/06/2013 14:39,2.1,287, Improper Authentication,nan
CVE-2013-0983,5/06/2013 14:39,5/06/2013 14:39,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0975,5/06/2013 14:39,5/06/2013 14:39,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0976,5/06/2013 4:00,15/03/2013 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1843,5/06/2013 3:42,20/03/2013 15:55,6.4,399, Resource Management Errors,nan
CVE-2013-1842,5/06/2013 3:42,20/03/2013 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0798,5/06/2013 3:41,3/04/2013 11:56,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0349,5/06/2013 3:40,28/02/2013 19:55,1.9,200, Information Exposure,nan
CVE-2013-0335,5/06/2013 3:40,22/03/2013 21:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0256,5/06/2013 3:40,1/03/2013 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6096,5/06/2013 3:40,22/01/2013 23:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4530,5/06/2013 3:38,18/02/2013 4:41,2.1,200, Information Exposure,nan
CVE-2013-2314,4/06/2013 4:00,29/05/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2313,4/06/2013 4:00,29/05/2013 19:55,4.0,287, Improper Authentication,nan
CVE-2013-1213,4/06/2013 4:00,29/05/2013 19:55,5.0,399, Resource Management Errors,nan
CVE-2013-3261,3/06/2013 15:30,1/06/2013 14:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3735,3/06/2013 4:00,31/05/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-3719,3/06/2013 4:00,31/05/2013 12:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3315,3/06/2013 4:00,31/05/2013 21:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1247,3/06/2013 4:00,31/05/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1246,3/06/2013 4:00,31/05/2013 15:55,6.8,399, Resource Management Errors,nan
CVE-2013-0136,3/06/2013 4:00,1/06/2013 14:21,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4518,3/06/2013 4:00,23/05/2013 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3721,31/05/2013 12:20,31/05/2013 12:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3666,31/05/2013 4:00,29/05/2013 14:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4515,31/05/2013 4:00,21/03/2013 14:55,4.6,255, Credentials Management,nan
CVE-2013-1211,30/05/2013 13:43,29/05/2013 19:55,5.0,287, Improper Authentication,nan
CVE-2013-1210,30/05/2013 13:36,29/05/2013 19:55,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1209,30/05/2013 13:30,29/05/2013 19:55,5.0,287, Improper Authentication,nan
CVE-2013-1208,30/05/2013 13:26,29/05/2013 19:55,5.8,310, Cryptographic Issues,nan
CVE-2013-2315,30/05/2013 4:00,29/05/2013 19:55,5.0,20, Improper Input Validation,nan
CVE-2013-2312,30/05/2013 4:00,29/05/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6459,30/05/2013 4:00,1/01/2013 15:55,4.3,200, Information Exposure,nan
CVE-2012-2983,30/05/2013 3:16,11/09/2012 18:55,5.0,287, Improper Authentication,nan
CVE-2012-2981,30/05/2013 3:16,11/09/2012 18:55,6.0,20, Improper Input Validation,nan
CVE-2013-3633,28/05/2013 14:30,24/05/2013 20:55,8.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3634,28/05/2013 4:00,24/05/2013 20:55,7.5,20, Improper Input Validation,nan
CVE-2013-2953,28/05/2013 4:00,27/05/2013 14:55,4.3,310, Cryptographic Issues,nan
CVE-2012-6399,28/05/2013 4:00,27/05/2013 14:55,5.8,20, Improper Input Validation,nan
CVE-2012-2561,25/05/2013 3:11,21/05/2012 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6556,24/05/2013 13:24,23/05/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6555,24/05/2013 12:44,23/05/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6557,24/05/2013 4:00,23/05/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4520,24/05/2013 4:00,23/05/2013 17:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4519,24/05/2013 4:00,23/05/2013 17:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2781,23/05/2013 14:35,23/05/2013 13:36,10.0,399, Resource Management Errors,nan
CVE-2013-1204,23/05/2013 13:36,23/05/2013 13:36,5.0,399, Resource Management Errors,nan
CVE-2013-0941,23/05/2013 4:00,22/05/2013 13:29,2.1,310, Cryptographic Issues,nan
CVE-2013-0699,23/05/2013 4:00,1/05/2013 12:00,7.1,20, Improper Input Validation,nan
CVE-2013-0145,23/05/2013 4:00,20/05/2013 14:44,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3496,22/05/2013 13:29,22/05/2013 13:29,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0942,22/05/2013 13:29,22/05/2013 13:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1977,22/05/2013 4:00,21/05/2013 18:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-4952,21/05/2013 4:00,1/05/2013 12:00,5.0,255, Credentials Management,nan
CVE-2013-0716,21/05/2013 3:23,20/03/2013 18:55,5.0,20, Improper Input Validation,nan
CVE-2013-0715,21/05/2013 3:23,20/03/2013 18:55,4.0,20, Improper Input Validation,nan
CVE-2013-0714,21/05/2013 3:23,20/03/2013 18:55,10.0,20, Improper Input Validation,nan
CVE-2013-0713,21/05/2013 3:23,20/03/2013 18:55,6.8,20, Improper Input Validation,nan
CVE-2013-0711,21/05/2013 3:23,20/03/2013 18:55,7.8,20, Improper Input Validation,nan
CVE-2012-5409,21/05/2013 3:21,1/11/2012 10:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4711,21/05/2013 3:20,15/02/2013 12:09,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4708,21/05/2013 3:20,24/02/2013 11:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4707,21/05/2013 3:20,24/02/2013 11:48,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4706,21/05/2013 3:20,24/02/2013 11:48,7.8,189, Numeric Errors,nan
CVE-2012-4705,21/05/2013 3:20,24/02/2013 11:48,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4704,21/05/2013 3:20,24/02/2013 11:48,10.0,20, Improper Input Validation,nan
CVE-2012-4698,21/05/2013 3:20,23/12/2012 21:55,4.3,200, Information Exposure,nan
CVE-2012-4690,21/05/2013 3:20,8/12/2012 15:55,7.1,16, Configuration,nan
CVE-2012-3797,21/05/2013 3:19,25/06/2012 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3796,21/05/2013 3:19,25/06/2012 17:55,5.0,200, Information Exposure,nan
CVE-2012-3795,21/05/2013 3:19,25/06/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3792,21/05/2013 3:19,25/06/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5007,21/05/2013 3:12,25/12/2011 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1918,21/05/2013 3:08,2/11/2011 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0342,21/05/2013 3:04,2/09/2011 16:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0340,21/05/2013 3:04,4/05/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3270,20/05/2013 14:44,20/05/2013 14:44,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1236,16/05/2013 13:13,16/05/2013 3:36,7.8,20, Improper Input Validation,nan
CVE-2013-1200,16/05/2013 13:02,16/05/2013 3:36,6.8,287, Improper Authentication,nan
CVE-2013-1245,16/05/2013 4:00,16/05/2013 3:36,4.0,20, Improper Input Validation,nan
CVE-2013-1244,16/05/2013 4:00,16/05/2013 3:36,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1188,16/05/2013 4:00,16/05/2013 3:36,5.0,287, Improper Authentication,nan
CVE-2013-1088,16/05/2013 4:00,24/04/2013 10:28,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1346,15/05/2013 10:55,15/05/2013 10:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3075,15/05/2013 4:00,19/04/2013 11:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1990,15/05/2013 4:00,22/05/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2766,15/05/2013 3:36,10/04/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1665,15/05/2013 3:35,3/04/2013 0:55,5.0,200, Information Exposure,nan
CVE-2013-1664,15/05/2013 3:35,3/04/2013 0:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0306,15/05/2013 3:34,2/05/2013 14:55,5.0,189, Numeric Errors,nan
CVE-2013-0305,15/05/2013 3:34,2/05/2013 14:55,4.0,200, Information Exposure,nan
CVE-2013-0287,15/05/2013 3:34,21/03/2013 16:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0254,15/05/2013 3:34,6/02/2013 12:05,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-6540,15/05/2013 3:33,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-6539,15/05/2013 3:33,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2012-3402,15/05/2013 3:27,25/08/2012 10:29,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2763,15/05/2013 3:26,12/07/2012 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2631,15/05/2013 3:10,6/07/2010 17:17,4.3,20, Improper Input Validation,nan
CVE-2010-2630,15/05/2013 3:10,6/07/2010 17:17,4.3,20, Improper Input Validation,nan
CVE-2010-2597,15/05/2013 3:10,2/07/2010 12:43,4.3,20, Improper Input Validation,nan
CVE-2010-2596,15/05/2013 3:10,2/07/2010 12:43,4.3,20, Improper Input Validation,nan
CVE-2010-2595,15/05/2013 3:10,2/07/2010 12:43,4.3,20, Improper Input Validation,nan
CVE-2010-2483,15/05/2013 3:10,6/07/2010 17:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2481,15/05/2013 3:10,6/07/2010 17:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2432,15/05/2013 3:10,22/06/2010 20:30,5.0,399, Resource Management Errors,nan
CVE-2010-2431,15/05/2013 3:10,22/06/2010 20:30,2.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2233,15/05/2013 3:09,2/07/2010 12:43,7.5,20, Improper Input Validation,nan
CVE-2010-2065,15/05/2013 3:09,24/06/2010 12:30,6.8,189, Numeric Errors,nan
CVE-2010-1411,15/05/2013 3:08,17/06/2010 16:30,6.8,189, Numeric Errors,nan
CVE-2010-1142,15/05/2013 3:07,12/04/2010 18:30,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1140,15/05/2013 3:07,12/04/2010 18:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-1139,15/05/2013 3:07,12/04/2010 18:30,7.2,134, Use of Externally-Controlled Format String,nan
CVE-2010-1138,15/05/2013 3:07,12/04/2010 18:30,5.0,200, Information Exposure,nan
CVE-2010-0393,15/05/2013 3:06,5/03/2010 19:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-4811,15/05/2013 3:04,27/04/2010 15:30,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-3732,15/05/2013 3:01,12/04/2010 18:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-3707,15/05/2013 3:01,16/10/2009 16:30,5.0,134, Use of Externally-Controlled Format String,nan
CVE-2013-3536,14/05/2013 14:48,13/05/2013 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1897,14/05/2013 4:00,13/05/2013 23:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-1136,13/05/2013 11:50,13/05/2013 11:50,4.6,399, Resource Management Errors,nan
CVE-2013-3522,13/05/2013 4:00,10/05/2013 21:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3254,10/05/2013 11:42,10/05/2013 11:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2707,10/05/2013 11:42,10/05/2013 11:42,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1242,10/05/2013 11:42,10/05/2013 11:42,5.0,399, Resource Management Errors,nan
CVE-2013-0939,10/05/2013 11:42,10/05/2013 11:42,5.8,20, Improper Input Validation,nan
CVE-2013-0938,10/05/2013 11:42,10/05/2013 11:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0937,10/05/2013 11:42,10/05/2013 11:42,5.8,287, Improper Authentication,nan
CVE-2013-1611,10/05/2013 4:00,9/05/2013 12:31,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1222,9/05/2013 13:54,9/05/2013 12:31,7.8,16, Configuration,nan
CVE-2013-2308,9/05/2013 12:31,9/05/2013 12:31,4.0,200, Information Exposure,nan
CVE-2013-1225,9/05/2013 12:31,9/05/2013 12:31,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1223,9/05/2013 12:31,9/05/2013 12:31,7.8,20, Improper Input Validation,nan
CVE-2013-1221,9/05/2013 12:31,9/05/2013 12:31,10.0,16, Configuration,nan
CVE-2013-0688,9/05/2013 12:31,9/05/2013 12:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0686,9/05/2013 12:31,9/05/2013 12:31,9.3,20, Improper Input Validation,nan
CVE-2013-0685,9/05/2013 12:31,9/05/2013 12:31,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0684,9/05/2013 12:31,9/05/2013 12:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3513,8/05/2013 12:09,8/05/2013 12:09,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-3512,8/05/2013 12:09,8/05/2013 12:09,6.5,20, Improper Input Validation,nan
CVE-2013-3511,8/05/2013 12:09,8/05/2013 12:09,5.8,20, Improper Input Validation,nan
CVE-2013-3510,8/05/2013 12:09,8/05/2013 12:09,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-3509,8/05/2013 12:09,8/05/2013 12:09,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3508,8/05/2013 12:09,8/05/2013 12:09,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-3507,8/05/2013 12:09,8/05/2013 12:09,4.0,200, Information Exposure,nan
CVE-2013-3506,8/05/2013 12:09,8/05/2013 12:09,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3504,8/05/2013 12:09,8/05/2013 12:09,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-3503,8/05/2013 12:09,8/05/2013 12:09,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-3501,8/05/2013 12:09,8/05/2013 12:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3500,8/05/2013 12:09,8/05/2013 12:09,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1241,8/05/2013 12:09,8/05/2013 12:09,6.3,287, Improper Authentication,nan
CVE-2013-0934,7/05/2013 12:56,7/05/2013 12:23,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0933,7/05/2013 12:51,7/05/2013 12:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0932,7/05/2013 12:49,7/05/2013 12:23,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6140,7/05/2013 4:00,24/04/2013 10:28,1.9,200, Information Exposure,nan
CVE-2012-4550,7/05/2013 4:00,5/01/2013 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-1232,6/05/2013 13:40,4/05/2013 3:24,5.0,20, Improper Input Validation,nan
CVE-2013-2703,6/05/2013 4:00,5/05/2013 11:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2702,6/05/2013 4:00,5/05/2013 11:07,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1240,6/05/2013 4:00,4/05/2013 3:24,4.6,20, Improper Input Validation,nan
CVE-2013-0728,6/05/2013 4:00,25/04/2013 3:36,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0726,6/05/2013 4:00,5/05/2013 11:07,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3302,4/05/2013 3:24,29/04/2013 14:55,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0636,4/05/2013 3:23,13/02/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0635,4/05/2013 3:23,13/02/2013 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6532,4/05/2013 3:22,13/02/2013 17:55,5.0,399, Resource Management Errors,nan
CVE-2012-4522,4/05/2013 3:20,24/11/2012 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4520,4/05/2013 3:20,18/11/2012 23:55,6.4,20, Improper Input Validation,nan
CVE-2012-3987,4/05/2013 3:20,10/10/2012 17:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3941,4/05/2013 3:20,25/10/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3940,4/05/2013 3:20,25/10/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3939,4/05/2013 3:20,25/10/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3938,4/05/2013 3:20,25/10/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3937,4/05/2013 3:20,25/10/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3936,4/05/2013 3:20,25/10/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3267,3/05/2013 18:23,3/05/2013 11:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3059,3/05/2013 18:19,3/05/2013 11:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0945,3/05/2013 16:54,3/05/2013 11:57,9.3,20, Improper Input Validation,nan
CVE-2009-5029,3/05/2013 12:39,2/05/2013 14:55,6.8,189, Numeric Errors,nan
CVE-2013-3058,3/05/2013 11:57,3/05/2013 11:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3057,3/05/2013 11:57,3/05/2013 11:57,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3056,3/05/2013 11:57,3/05/2013 11:57,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1234,3/05/2013 11:57,3/05/2013 11:57,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1231,3/05/2013 11:57,3/05/2013 11:57,5.0,200, Information Exposure,nan
CVE-2013-0944,3/05/2013 11:57,3/05/2013 11:57,3.5,200, Information Exposure,nan
CVE-2013-0940,3/05/2013 11:57,3/05/2013 11:57,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0582,3/05/2013 4:00,2/05/2013 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5657,3/05/2013 4:00,2/05/2013 14:55,5.0,200, Information Exposure,nan
CVE-2012-0864,3/05/2013 4:00,2/05/2013 14:55,6.8,189, Numeric Errors,nan
CVE-2011-4609,3/05/2013 4:00,2/05/2013 14:55,5.0,399, Resource Management Errors,nan
CVE-2012-4956,3/05/2013 3:25,18/11/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1186,2/05/2013 4:00,25/04/2013 10:55,7.5,287, Improper Authentication,nan
CVE-2013-1158,1/05/2013 13:51,1/05/2013 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-3107,1/05/2013 12:00,1/05/2013 12:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-3080,1/05/2013 12:00,1/05/2013 12:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-3079,1/05/2013 12:00,1/05/2013 12:00,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1230,1/05/2013 12:00,1/05/2013 12:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1229,1/05/2013 12:00,1/05/2013 12:00,5.0,20, Improper Input Validation,nan
CVE-2013-1160,1/05/2013 12:00,1/05/2013 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1159,1/05/2013 12:00,1/05/2013 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1157,1/05/2013 12:00,1/05/2013 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1156,1/05/2013 12:00,1/05/2013 12:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0673,1/05/2013 12:00,1/05/2013 12:00,9.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0666,1/05/2013 12:00,1/05/2013 12:00,5.0,399, Resource Management Errors,nan
CVE-2013-2709,1/05/2013 4:00,26/04/2013 11:41,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1958,1/05/2013 4:00,24/04/2013 19:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1956,1/05/2013 4:00,24/04/2013 19:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-1947,1/05/2013 4:00,25/04/2013 23:55,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-1216,1/05/2013 4:00,29/04/2013 12:20,4.0,200, Information Exposure,nan
CVE-2013-1196,30/04/2013 13:26,29/04/2013 21:55,6.8,20, Improper Input Validation,nan
CVE-2013-1150,29/04/2013 16:34,11/04/2013 10:55,7.8,287, Improper Authentication,nan
CVE-2013-1226,29/04/2013 14:23,29/04/2013 12:20,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1198,29/04/2013 14:17,29/04/2013 12:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1227,29/04/2013 12:20,29/04/2013 12:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1179,29/04/2013 4:00,25/04/2013 10:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1170,29/04/2013 4:00,11/04/2013 10:55,7.5,255, Credentials Management,nan
CVE-2013-1215,26/04/2013 4:00,25/04/2013 20:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1178,25/04/2013 16:06,25/04/2013 10:55,8.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1957,25/04/2013 13:17,24/04/2013 19:55,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2013-2305,25/04/2013 10:55,25/04/2013 10:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1185,25/04/2013 10:55,25/04/2013 10:55,9.3,200, Information Exposure,nan
CVE-2013-1184,25/04/2013 10:55,25/04/2013 10:55,7.8,20, Improper Input Validation,nan
CVE-2013-1183,25/04/2013 10:55,25/04/2013 10:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1182,25/04/2013 10:55,25/04/2013 10:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1180,25/04/2013 10:55,25/04/2013 10:55,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3055,25/04/2013 4:00,25/04/2013 3:36,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1217,24/04/2013 10:28,24/04/2013 10:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1195,24/04/2013 10:28,24/04/2013 10:28,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2780,22/04/2013 15:08,22/04/2013 3:27,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-3210,22/04/2013 13:30,19/04/2013 11:44,5.0,200, Information Exposure,nan
CVE-2013-3237,22/04/2013 11:41,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-3236,22/04/2013 11:41,22/04/2013 11:41,4.9,200, Information Exposure,nan
CVE-2013-2697,22/04/2013 4:00,19/04/2013 11:44,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0700,22/04/2013 4:00,22/04/2013 3:27,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0129,22/04/2013 4:00,19/04/2013 11:44,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1199,19/04/2013 4:00,18/04/2013 18:55,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-1177,19/04/2013 4:00,18/04/2013 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1176,19/04/2013 4:00,18/04/2013 18:55,7.1,20, Improper Input Validation,nan
CVE-2013-0132,19/04/2013 4:00,18/04/2013 18:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4737,19/04/2013 3:25,31/08/2012 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4404,19/04/2013 3:24,10/09/2012 22:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4170,19/04/2013 3:24,31/08/2012 14:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3812,19/04/2013 3:24,9/07/2012 22:55,4.0,399, Resource Management Errors,nan
CVE-2012-3510,19/04/2013 3:23,3/10/2012 11:02,5.6,399, Resource Management Errors,nan
CVE-2012-3502,19/04/2013 3:23,22/08/2012 19:55,4.3,200, Information Exposure,nan
CVE-2012-3430,19/04/2013 3:23,3/10/2012 11:02,2.1,200, Information Exposure,nan
CVE-2012-2745,19/04/2013 3:22,9/08/2012 10:29,4.7,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2655,19/04/2013 3:22,18/07/2012 23:55,4.0,399, Resource Management Errors,nan
CVE-2012-2389,19/04/2013 3:21,21/06/2012 15:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-2290,19/04/2013 3:21,18/10/2012 17:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2284,19/04/2013 3:21,18/10/2012 17:55,2.1,255, Credentials Management,nan
CVE-2012-2253,19/04/2013 3:21,24/11/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2242,19/04/2013 3:21,1/10/2012 0:55,6.8,20, Improper Input Validation,nan
CVE-2012-2240,19/04/2013 3:21,1/10/2012 0:55,7.5,20, Improper Input Validation,nan
CVE-2012-2086,19/04/2013 3:21,23/11/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2085,19/04/2013 3:21,28/08/2012 17:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0044,19/04/2013 3:17,17/05/2012 11:00,7.2,189, Numeric Errors,nan
CVE-2010-2322,19/04/2013 3:03,18/06/2010 18:30,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0831,19/04/2013 2:59,18/06/2010 18:30,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0547,19/04/2013 2:58,4/02/2010 20:15,2.1,20, Improper Input Validation,nan
CVE-2009-1284,19/04/2013 2:49,9/04/2009 16:27,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5374,19/04/2013 2:42,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2013-1748,18/04/2013 16:19,18/04/2013 11:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1749,18/04/2013 11:33,18/04/2013 11:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2832,18/04/2013 4:00,16/04/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2760,18/04/2013 4:00,16/04/2013 14:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0687,18/04/2013 4:00,18/04/2013 2:25,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4714,18/04/2013 4:00,18/04/2013 2:25,7.8,189, Numeric Errors,nan
CVE-2012-4713,18/04/2013 4:00,18/04/2013 2:25,7.8,189, Numeric Errors,nan
CVE-2012-4695,18/04/2013 4:00,18/04/2013 2:25,7.1,20, Improper Input Validation,nan
CVE-2013-2835,17/04/2013 4:00,16/04/2013 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2834,17/04/2013 4:00,16/04/2013 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2833,17/04/2013 4:00,16/04/2013 20:55,10.0,399, Resource Management Errors,nan
CVE-2012-3022,16/04/2013 15:21,16/04/2013 14:04,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2304,16/04/2013 14:04,16/04/2013 14:04,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1197,16/04/2013 14:04,16/04/2013 14:04,6.8,20, Improper Input Validation,nan
CVE-2013-1187,16/04/2013 14:04,16/04/2013 14:04,5.0,20, Improper Input Validation,nan
CVE-2012-5415,16/04/2013 14:04,16/04/2013 14:04,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0915,16/04/2013 4:00,18/03/2013 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0285,16/04/2013 4:00,9/04/2013 20:55,7.5,20, Improper Input Validation,nan
CVE-2013-3051,15/04/2013 4:00,13/04/2013 10:56,6.2,16, Configuration,nan
CVE-2013-1169,15/04/2013 4:00,11/04/2013 10:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1155,15/04/2013 4:00,11/04/2013 10:55,7.8,287, Improper Authentication,nan
CVE-2013-0315,15/04/2013 4:00,12/04/2013 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0314,15/04/2013 4:00,12/04/2013 22:55,7.5,287, Improper Authentication,nan
CVE-2012-3532,15/04/2013 4:00,12/04/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3026,13/04/2013 2:55,1/11/2012 10:44,10.0,20, Improper Input Validation,nan
CVE-2012-3021,13/04/2013 2:55,1/11/2012 10:44,10.0,20, Improper Input Validation,nan
CVE-2012-3010,13/04/2013 2:55,1/11/2012 10:44,10.0,20, Improper Input Validation,nan
CVE-2012-2996,13/04/2013 2:54,17/09/2012 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2995,13/04/2013 2:54,17/09/2012 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2779,11/04/2013 10:55,11/04/2013 10:55,7.8,20, Improper Input Validation,nan
CVE-2013-1189,11/04/2013 10:55,11/04/2013 10:55,5.7,20, Improper Input Validation,nan
CVE-2013-1173,11/04/2013 10:55,11/04/2013 10:55,6.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1172,11/04/2013 10:55,11/04/2013 10:55,6.6,20, Improper Input Validation,nan
CVE-2013-1167,11/04/2013 10:55,11/04/2013 10:55,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1166,11/04/2013 10:55,11/04/2013 10:55,7.8,20, Improper Input Validation,nan
CVE-2013-1165,11/04/2013 10:55,11/04/2013 10:55,7.8,20, Improper Input Validation,nan
CVE-2013-1151,11/04/2013 10:55,11/04/2013 10:55,7.1,20, Improper Input Validation,nan
CVE-2013-0927,11/04/2013 4:00,10/04/2013 16:55,7.5,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-6120,11/04/2013 4:00,10/04/2013 15:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2503,11/04/2013 3:33,11/03/2013 17:55,5.8,20, Improper Input Validation,nan
CVE-2013-1142,11/04/2013 3:33,28/03/2013 23:55,7.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0894,11/04/2013 3:33,23/02/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5638,11/04/2013 3:32,20/12/2012 12:02,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-5454,11/04/2013 3:31,22/10/2012 23:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5453,11/04/2013 3:31,22/10/2012 23:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5049,11/04/2013 3:31,28/09/2012 10:40,7.8,20, Improper Input Validation,nan
CVE-2012-5048,11/04/2013 3:31,28/09/2012 10:40,7.8,399, Resource Management Errors,nan
CVE-2012-4896,11/04/2013 3:31,5/10/2012 10:51,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4895,11/04/2013 3:31,5/10/2012 10:51,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4619,11/04/2013 3:31,27/09/2012 0:55,7.8,399, Resource Management Errors,nan
CVE-2012-4618,11/04/2013 3:31,27/09/2012 0:55,7.8,399, Resource Management Errors,nan
CVE-2012-4596,11/04/2013 3:31,22/08/2012 10:42,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4003,11/04/2013 3:30,9/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4002,11/04/2013 3:30,9/10/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3444,11/04/2013 3:29,31/07/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3443,11/04/2013 3:29,31/07/2012 17:55,5.0,20, Improper Input Validation,nan
CVE-2012-3442,11/04/2013 3:29,31/07/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6097,10/04/2013 13:23,9/04/2013 20:55,4.3,200, Information Exposure,nan
CVE-2012-5635,10/04/2013 13:15,9/04/2013 20:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-1898,10/04/2013 4:00,9/04/2013 20:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1802,10/04/2013 4:00,9/04/2013 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1801,10/04/2013 4:00,9/04/2013 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1800,10/04/2013 4:00,9/04/2013 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-1385,10/04/2013 4:00,10/04/2013 3:48,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1383,10/04/2013 4:00,10/04/2013 3:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0284,10/04/2013 4:00,9/04/2013 20:55,5.0,200, Information Exposure,nan
CVE-2013-2778,9/04/2013 15:25,9/04/2013 3:34,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0134,9/04/2013 15:22,9/04/2013 3:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2770,9/04/2013 4:00,7/04/2013 17:55,5.8,20, Improper Input Validation,nan
CVE-2013-2633,9/04/2013 4:00,21/03/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-1844,9/04/2013 4:00,21/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0682,9/04/2013 4:00,5/04/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0680,9/04/2013 4:00,5/04/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0109,9/04/2013 4:00,8/04/2013 16:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1858,8/04/2013 14:44,5/04/2013 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0683,8/04/2013 14:21,5/04/2013 21:55,7.1,16, Configuration,nan
CVE-2013-0681,8/04/2013 14:09,5/04/2013 21:55,5.0,20, Improper Input Validation,nan
CVE-2013-1174,5/04/2013 18:03,5/04/2013 16:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2640,5/04/2013 4:00,22/03/2013 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2636,5/04/2013 4:00,22/03/2013 11:59,1.9,399, Resource Management Errors,nan
CVE-2013-2302,5/04/2013 4:00,4/04/2013 19:55,1.9,200, Information Exposure,nan
CVE-2013-0718,5/04/2013 4:00,27/03/2013 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0258,5/04/2013 4:00,27/03/2013 21:55,6.8,287, Improper Authentication,nan
CVE-2013-0128,5/04/2013 4:00,4/04/2013 19:55,5.0,255, Credentials Management,nan
CVE-2013-0125,5/04/2013 4:00,4/04/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4629,5/04/2013 3:13,12/09/2012 23:55,7.8,399, Resource Management Errors,nan
CVE-2012-3512,5/04/2013 3:12,21/11/2012 23:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-3457,5/04/2013 3:12,12/08/2012 0:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3386,5/04/2013 3:11,7/08/2012 21:55,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-3382,5/04/2013 3:11,12/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1576,5/04/2013 3:09,1/10/2012 20:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1177,5/04/2013 3:09,26/08/2012 20:55,5.1,20, Improper Input Validation,nan
CVE-2012-1015,5/04/2013 3:08,6/08/2012 16:55,9.3,20, Improper Input Validation,nan
CVE-2012-0419,5/04/2013 3:07,28/09/2012 10:40,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4616,5/04/2013 3:06,6/01/2012 4:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4578,5/04/2013 3:06,29/08/2012 22:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-3827,5/04/2013 3:05,19/09/2012 10:57,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1595,5/04/2013 3:01,24/05/2011 23:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4710,4/04/2013 17:50,4/04/2013 16:55,9.3,20, Improper Input Validation,nan
CVE-2013-2763,4/04/2013 13:59,4/04/2013 11:58,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2761,4/04/2013 13:56,4/04/2013 11:58,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2762,4/04/2013 11:58,4/04/2013 11:58,10.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0324,4/04/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0323,4/04/2013 4:00,27/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0319,4/04/2013 4:00,27/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0317,4/04/2013 4:00,27/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6116,4/04/2013 3:21,1/03/2013 5:40,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-1823,3/04/2013 4:00,2/04/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0935,3/04/2013 4:00,28/03/2013 15:55,9.3,287, Improper Authentication,nan
CVE-2013-0919,3/04/2013 4:00,28/03/2013 12:18,7.5,399, Resource Management Errors,nan
CVE-2012-6129,3/04/2013 4:00,3/04/2013 0:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6119,3/04/2013 4:00,2/04/2013 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-2744,2/04/2013 12:09,2/04/2013 12:09,5.0,200, Information Exposure,nan
CVE-2013-2743,2/04/2013 12:09,2/04/2013 12:09,7.5,287, Improper Authentication,nan
CVE-2013-2741,2/04/2013 12:09,2/04/2013 12:09,7.5,287, Improper Authentication,nan
CVE-2013-2685,2/04/2013 4:00,1/04/2013 16:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1799,2/04/2013 4:00,2/04/2013 3:23,4.3,310, Cryptographic Issues,nan
CVE-2013-1171,2/04/2013 4:00,1/04/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1163,2/04/2013 4:00,1/04/2013 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1147,2/04/2013 4:00,28/03/2013 23:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1145,2/04/2013 4:00,28/03/2013 23:55,7.8,399, Resource Management Errors,nan
CVE-2013-1144,2/04/2013 4:00,28/03/2013 23:55,7.8,399, Resource Management Errors,nan
CVE-2013-1079,2/04/2013 4:00,29/03/2013 16:09,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0240,2/04/2013 4:00,2/04/2013 3:22,4.3,310, Cryptographic Issues,nan
CVE-2012-5616,2/04/2013 3:21,22/01/2013 23:55,1.5,255, Credentials Management,nan
CVE-2012-4409,2/04/2013 3:20,21/11/2012 23:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4345,2/04/2013 3:20,21/08/2012 23:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4177,2/04/2013 3:19,7/08/2012 20:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-1344,2/04/2013 3:16,6/08/2012 18:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1340,2/04/2013 3:16,6/08/2012 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1338,2/04/2013 3:16,6/08/2012 17:55,6.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-0878,2/04/2013 3:15,1/05/2012 19:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-0681,2/04/2013 3:15,22/08/2012 10:42,4.3,310, Cryptographic Issues,nan
CVE-2012-0680,2/04/2013 3:15,25/07/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0410,2/04/2013 3:14,5/07/2012 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0304,2/04/2013 3:14,22/06/2012 10:24,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-0271,2/04/2013 3:14,19/09/2012 10:57,10.0,189, Numeric Errors,nan
CVE-2011-4605,2/04/2013 3:13,23/11/2012 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-2686,1/04/2013 16:55,1/04/2013 16:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2264,1/04/2013 16:55,1/04/2013 16:55,5.0,200, Information Exposure,nan
CVE-2013-0130,29/03/2013 17:42,29/03/2013 17:42,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1082,29/03/2013 17:29,29/03/2013 16:09,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-2301,29/03/2013 16:09,29/03/2013 16:09,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-1085,29/03/2013 16:09,29/03/2013 16:09,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1148,29/03/2013 15:13,28/03/2013 23:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1146,29/03/2013 15:09,28/03/2013 23:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5879,29/03/2013 14:18,28/03/2013 23:55,8.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-2494,29/03/2013 4:00,28/03/2013 16:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1143,29/03/2013 4:00,28/03/2013 23:55,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0936,29/03/2013 4:00,28/03/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0321,28/03/2013 15:28,27/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-2300,28/03/2013 13:50,27/03/2013 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1887,28/03/2013 4:00,27/03/2013 23:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1859,28/03/2013 4:00,27/03/2013 21:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-1787,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1786,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1785,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1784,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1781,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1779,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1778,28/03/2013 4:00,27/03/2013 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0720,28/03/2013 4:00,27/03/2013 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0719,28/03/2013 4:00,27/03/2013 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0325,28/03/2013 4:00,27/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0320,28/03/2013 4:00,27/03/2013 21:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0318,28/03/2013 4:00,27/03/2013 21:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0316,28/03/2013 4:00,27/03/2013 21:55,5.0,399, Resource Management Errors,nan
CVE-2013-0257,28/03/2013 4:00,27/03/2013 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0182,28/03/2013 4:00,27/03/2013 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1162,26/03/2013 16:11,26/03/2013 3:42,5.0,20, Improper Input Validation,nan
CVE-2013-1161,26/03/2013 16:09,26/03/2013 3:42,6.3,20, Improper Input Validation,nan
CVE-2013-1829,26/03/2013 14:25,25/03/2013 21:55,4.0,200, Information Exposure,nan
CVE-2013-1608,26/03/2013 14:07,26/03/2013 14:07,6.7,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4970,26/03/2013 3:39,1/01/2013 12:35,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3908,26/03/2013 3:37,16/09/2012 10:34,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3738,26/03/2013 3:37,20/09/2012 21:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3737,26/03/2013 3:37,20/09/2012 21:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-0258,26/03/2013 3:32,2/04/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0257,26/03/2013 3:32,2/04/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0256,26/03/2013 3:31,26/03/2012 14:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1135,23/03/2013 3:15,27/02/2013 21:55,7.1,20, Improper Input Validation,nan
CVE-2012-5656,23/03/2013 3:14,18/01/2013 11:48,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3728,23/03/2013 3:12,20/09/2012 21:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-1051,22/03/2013 14:31,21/03/2013 17:55,4.3,20, Improper Input Validation,nan
CVE-2013-0679,22/03/2013 14:25,21/03/2013 15:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0677,22/03/2013 14:11,21/03/2013 15:55,5.8,200, Information Exposure,nan
CVE-2013-0676,22/03/2013 13:55,21/03/2013 15:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0675,22/03/2013 13:52,21/03/2013 15:55,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0674,22/03/2013 13:49,21/03/2013 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0667,22/03/2013 13:38,21/03/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0672,22/03/2013 13:36,21/03/2013 14:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0678,22/03/2013 4:00,21/03/2013 15:55,4.0,255, Credentials Management,nan
CVE-2013-0671,22/03/2013 4:00,21/03/2013 14:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0670,22/03/2013 4:00,21/03/2013 14:55,4.3,20, Improper Input Validation,nan
CVE-2013-0669,22/03/2013 4:00,21/03/2013 14:55,4.0,20, Improper Input Validation,nan
CVE-2013-0668,22/03/2013 4:00,21/03/2013 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0124,22/03/2013 4:00,21/03/2013 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0123,22/03/2013 4:00,21/03/2013 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3696,22/03/2013 3:11,25/07/2012 19:55,4.3,20, Improper Input Validation,nan
CVE-2012-3695,22/03/2013 3:11,25/07/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3650,22/03/2013 3:11,25/07/2012 19:55,4.3,200, Information Exposure,nan
CVE-2012-3503,22/03/2013 3:11,25/08/2012 10:29,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3445,22/03/2013 3:11,7/08/2012 21:55,3.5,399, Resource Management Errors,nan
CVE-2012-3256,22/03/2013 3:11,8/09/2012 10:28,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3255,22/03/2013 3:11,8/09/2012 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3248,22/03/2013 3:11,16/08/2012 10:38,5.0,200, Information Exposure,nan
CVE-2012-3063,22/03/2013 3:11,20/06/2012 20:55,7.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2984,22/03/2013 3:11,24/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2582,22/03/2013 3:10,23/08/2012 10:32,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2282,22/03/2013 3:10,16/07/2012 20:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2281,22/03/2013 3:10,5/07/2012 14:55,6.8,287, Improper Authentication,nan
CVE-2012-2018,22/03/2013 3:09,5/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2011,22/03/2013 3:09,13/06/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0665,21/03/2013 21:04,21/03/2013 14:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-2617,21/03/2013 18:35,20/03/2013 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1766,21/03/2013 16:34,20/03/2013 15:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-0332,21/03/2013 16:31,20/03/2013 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0226,21/03/2013 14:45,19/03/2013 14:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0207,21/03/2013 14:21,19/03/2013 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0251,21/03/2013 12:00,19/03/2013 14:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-2615,21/03/2013 4:00,20/03/2013 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-2372,21/03/2013 4:00,15/03/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1875,21/03/2013 4:00,20/03/2013 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1863,21/03/2013 4:00,19/03/2013 17:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1750,21/03/2013 4:00,20/03/2013 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0717,21/03/2013 4:00,19/03/2013 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0712,21/03/2013 4:00,20/03/2013 18:55,6.8,20, Improper Input Validation,nan
CVE-2013-0227,21/03/2013 4:00,19/03/2013 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0225,21/03/2013 4:00,19/03/2013 14:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0224,21/03/2013 4:00,19/03/2013 14:55,4.4,16, Configuration,nan
CVE-2013-0205,21/03/2013 4:00,19/03/2013 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-2560,20/03/2013 4:00,15/03/2013 20:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1423,19/03/2013 19:02,14/03/2013 3:13,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-4458,19/03/2013 16:49,14/03/2013 3:10,5.0,189, Numeric Errors,nan
CVE-2011-4966,19/03/2013 12:35,12/03/2013 23:55,6.0,255, Credentials Management,nan
CVE-2013-1469,19/03/2013 4:00,13/03/2013 20:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1049,19/03/2013 4:00,14/03/2013 3:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0312,19/03/2013 4:00,13/03/2013 20:55,5.0,189, Numeric Errors,nan
CVE-2013-0275,19/03/2013 4:00,14/03/2013 3:12,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5660,19/03/2013 4:00,12/03/2013 23:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-4462,19/03/2013 4:00,14/03/2013 3:10,4.3,20, Improper Input Validation,nan
CVE-2012-4460,19/03/2013 4:00,14/03/2013 3:10,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4459,19/03/2013 4:00,14/03/2013 3:10,5.0,189, Numeric Errors,nan
CVE-2012-4446,19/03/2013 4:00,14/03/2013 3:10,6.8,287, Improper Authentication,nan
CVE-2011-1164,19/03/2013 4:00,12/03/2013 23:55,4.6,16, Configuration,nan
CVE-2013-2293,18/03/2013 19:00,12/03/2013 11:28,5.0,399, Resource Management Errors,nan
CVE-2013-2292,18/03/2013 18:38,12/03/2013 11:28,7.8,399, Resource Management Errors,nan
CVE-2012-6536,18/03/2013 18:30,15/03/2013 20:55,2.1,200, Information Exposure,nan
CVE-2012-6541,18/03/2013 18:17,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2013-2273,18/03/2013 18:13,12/03/2013 11:28,5.0,200, Information Exposure,nan
CVE-2012-6543,18/03/2013 18:12,15/03/2013 20:55,1.9,200, Information Exposure,nan
CVE-2013-2272,18/03/2013 18:07,12/03/2013 11:28,5.0,200, Information Exposure,nan
CVE-2012-4684,18/03/2013 17:20,12/03/2013 11:28,7.8,399, Resource Management Errors,nan
CVE-2013-0969,18/03/2013 16:01,15/03/2013 20:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2013-0971,18/03/2013 15:50,15/03/2013 20:55,6.8,399, Resource Management Errors,nan
CVE-2013-2506,18/03/2013 4:00,8/03/2013 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-2373,18/03/2013 4:00,15/03/2013 22:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2013-2371,18/03/2013 4:00,15/03/2013 22:55,5.0,200, Information Exposure,nan
CVE-2013-1627,18/03/2013 4:00,11/03/2013 17:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1081,18/03/2013 4:00,11/03/2013 21:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1050,18/03/2013 4:00,8/03/2013 22:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2013-0266,18/03/2013 4:00,8/03/2013 21:55,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2013-0261,18/03/2013 4:00,8/03/2013 21:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6118,18/03/2013 4:00,12/03/2013 22:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6117,18/03/2013 4:00,12/03/2013 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-6076,18/03/2013 4:00,12/03/2013 22:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-5509,18/03/2013 4:00,12/03/2013 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-4703,18/03/2013 4:00,11/03/2013 21:55,6.1,399, Resource Management Errors,nan
CVE-2012-4702,18/03/2013 4:00,11/03/2013 17:55,10.0,255, Credentials Management,nan
CVE-2012-4066,18/03/2013 4:00,8/03/2013 18:55,5.0,287, Improper Authentication,nan
CVE-2013-2557,16/03/2013 4:00,11/03/2013 10:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0963,16/03/2013 3:39,29/01/2013 5:58,2.1,20, Improper Input Validation,nan
CVE-2013-0962,16/03/2013 3:39,29/01/2013 5:58,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0959,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0958,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0956,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0955,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0954,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0953,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0952,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0951,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0950,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0949,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0948,16/03/2013 3:39,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4348,14/03/2013 3:10,18/12/2012 20:55,7.2,20, Improper Input Validation,nan
CVE-2012-0428,14/03/2013 3:04,25/12/2012 12:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5703,12/03/2013 3:18,20/11/2012 5:52,5.0,20, Improper Input Validation,nan
CVE-2012-4953,12/03/2013 3:17,14/11/2012 12:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1154,8/03/2013 16:24,7/03/2013 20:55,5.0,399, Resource Management Errors,nan
CVE-2013-2493,8/03/2013 5:00,7/03/2013 16:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1153,8/03/2013 5:00,7/03/2013 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-0706,8/03/2013 5:00,22/02/2013 0:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1639,8/03/2013 4:12,8/02/2013 11:58,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1638,8/03/2013 4:12,8/02/2013 11:58,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1637,8/03/2013 4:12,8/02/2013 11:58,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2013-1621,8/03/2013 4:12,8/02/2013 19:55,4.3,20, Improper Input Validation,nan
CVE-2013-1618,8/03/2013 4:12,8/02/2013 19:55,4.0,310, Cryptographic Issues,nan
CVE-2013-0190,8/03/2013 4:11,13/02/2013 1:55,4.9,20, Improper Input Validation,nan
CVE-2012-4543,8/03/2013 4:09,4/01/2013 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4518,8/03/2013 4:09,22/10/2012 23:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4450,8/03/2013 4:09,1/10/2012 3:26,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1141,7/03/2013 5:00,28/02/2013 23:55,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5053,7/03/2013 5:00,7/03/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4318,7/03/2013 5:00,7/03/2013 1:55,5.8,20, Improper Input Validation,nan
CVE-2013-1140,6/03/2013 17:22,6/03/2013 13:10,4.3,200, Information Exposure,nan
CVE-2013-1048,6/03/2013 16:50,6/03/2013 13:10,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-0630,6/03/2013 5:07,11/01/2013 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0931,6/03/2013 5:00,5/03/2013 22:03,5.4,16, Configuration,nan
CVE-2011-4355,6/03/2013 5:00,5/03/2013 21:38,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2288,6/03/2013 4:59,4/09/2012 11:04,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2012-6026,5/03/2013 16:18,5/03/2013 5:04,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0710,5/03/2013 5:05,5/03/2013 5:05,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1133,4/03/2013 5:00,27/02/2013 21:55,7.8,20, Improper Input Validation,nan
CVE-2012-6531,4/03/2013 5:00,13/02/2013 17:55,6.4,20, Improper Input Validation,nan
CVE-2012-5445,4/03/2013 5:00,28/12/2012 11:48,6.8,20, Improper Input Validation,nan
CVE-2011-2479,4/03/2013 5:00,1/03/2013 12:37,4.9,399, Resource Management Errors,nan
CVE-2011-1019,4/03/2013 5:00,1/03/2013 12:37,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-5302,2/03/2013 4:47,24/10/2012 17:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5273,2/03/2013 4:46,23/10/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4826,2/03/2013 4:46,20/10/2012 10:41,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4734,2/03/2013 4:46,11/11/2012 13:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4732,2/03/2013 4:46,11/11/2012 13:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4729,2/03/2013 4:46,26/10/2012 10:39,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4660,2/03/2013 4:46,29/10/2012 20:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4659,2/03/2013 4:46,29/10/2012 20:55,7.1,287, Improper Authentication,nan
CVE-2012-4643,2/03/2013 4:46,29/10/2012 20:55,7.1,399, Resource Management Errors,nan
CVE-2012-4575,2/03/2013 4:45,18/11/2012 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4563,2/03/2013 4:45,20/11/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4500,2/03/2013 4:45,31/10/2012 16:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4495,2/03/2013 4:45,31/10/2012 16:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4492,2/03/2013 4:45,31/10/2012 16:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4491,2/03/2013 4:45,31/10/2012 16:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4490,2/03/2013 4:45,31/10/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4489,2/03/2013 4:45,31/10/2012 16:55,5.8,20, Improper Input Validation,nan
CVE-2012-4021,2/03/2013 4:44,8/11/2012 11:46,5.5,287, Improper Authentication,nan
CVE-2012-4020,2/03/2013 4:44,8/11/2012 11:46,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4017,2/03/2013 4:44,28/09/2012 10:40,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4016,2/03/2013 4:44,28/09/2012 10:40,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3478,2/03/2013 4:44,31/08/2012 18:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3011,2/03/2013 4:43,25/09/2012 11:07,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3002,2/03/2013 4:42,21/12/2012 11:47,10.0,287, Improper Authentication,nan
CVE-2012-3001,2/03/2013 4:42,22/10/2012 16:55,8.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2994,2/03/2013 4:42,18/09/2012 3:48,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2136,2/03/2013 4:41,9/08/2012 10:29,7.2,20, Improper Input Validation,nan
CVE-2012-1833,2/03/2013 4:40,28/09/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2709,2/03/2013 4:33,21/06/2012 15:55,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-5561,1/03/2013 15:51,1/03/2013 5:40,2.1,200, Information Exposure,nan
CVE-2013-1124,1/03/2013 15:09,28/02/2013 23:55,5.8,310, Cryptographic Issues,nan
CVE-2013-0709,1/03/2013 5:40,1/03/2013 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0708,1/03/2013 5:40,1/03/2013 5:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0162,1/03/2013 5:40,1/03/2013 5:40,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2013-1134,28/02/2013 16:17,27/02/2013 21:55,7.1,287, Improper Authentication,nan
CVE-2013-1137,28/02/2013 5:00,27/02/2013 21:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0220,27/02/2013 19:50,24/02/2013 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1139,27/02/2013 5:00,27/02/2013 0:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1138,27/02/2013 5:00,25/02/2013 20:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1122,27/02/2013 5:00,13/02/2013 23:55,5.0,20, Improper Input Validation,nan
CVE-2013-0113,26/02/2013 5:00,24/02/2013 11:48,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6274,26/02/2013 5:00,24/02/2013 11:48,5.0,287, Improper Authentication,nan
CVE-2012-5658,26/02/2013 5:00,24/02/2013 22:55,2.1,310, Cryptographic Issues,nan
CVE-2012-5647,26/02/2013 5:00,24/02/2013 21:55,5.8,20, Improper Input Validation,nan
CVE-2012-5646,26/02/2013 5:00,24/02/2013 21:55,7.5,20, Improper Input Validation,nan
CVE-2012-5624,26/02/2013 5:00,24/02/2013 19:55,4.3,200, Information Exposure,nan
CVE-2012-5337,26/02/2013 5:00,24/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5590,26/02/2013 4:52,26/12/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5586,26/02/2013 4:52,26/12/2012 17:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-5585,26/02/2013 4:52,26/12/2012 17:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5551,26/02/2013 4:52,3/12/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5545,26/02/2013 4:52,3/12/2012 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5530,26/02/2013 4:51,29/11/2012 13:14,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-5417,26/02/2013 4:51,2/11/2012 4:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5372,26/02/2013 4:51,28/11/2012 13:03,5.0,310, Cryptographic Issues,nan
CVE-2012-4983,26/02/2013 4:51,5/12/2012 11:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4982,26/02/2013 4:51,5/12/2012 11:57,5.8,20, Improper Input Validation,nan
CVE-2012-4940,26/02/2013 4:51,31/10/2012 19:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4613,26/02/2013 4:50,16/11/2012 0:55,6.9,287, Improper Authentication,nan
CVE-2012-4612,26/02/2013 4:50,16/11/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6273,25/02/2013 18:20,24/02/2013 11:48,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-0804,25/02/2013 5:00,24/02/2013 4:37,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2013-0730,25/02/2013 5:00,22/02/2013 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0164,25/02/2013 5:00,24/02/2013 22:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2013-0120,25/02/2013 5:00,24/02/2013 11:48,7.8,20, Improper Input Validation,nan
CVE-2013-0118,25/02/2013 5:00,24/02/2013 11:48,5.0,16, Configuration,nan
CVE-2013-0108,25/02/2013 5:00,24/02/2013 11:48,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6326,25/02/2013 5:00,22/02/2013 20:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6275,25/02/2013 5:00,24/02/2013 11:48,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0439,25/02/2013 5:00,24/02/2013 4:37,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4037,22/02/2013 4:40,15/08/2012 20:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3523,22/02/2013 4:39,11/11/2012 13:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2013-1129,20/02/2013 5:00,19/02/2013 23:55,5.0,399, Resource Management Errors,nan
CVE-2013-1125,20/02/2013 5:00,19/02/2013 23:55,6.8,20, Improper Input Validation,nan
CVE-2012-6533,20/02/2013 5:00,18/02/2013 11:56,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2960,20/02/2013 4:38,8/08/2012 10:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0705,19/02/2013 5:00,15/02/2013 12:09,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0658,19/02/2013 5:00,15/02/2013 12:09,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5564,19/02/2013 5:00,14/02/2013 22:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-4351,18/02/2013 18:23,18/02/2013 11:56,6.9,189, Numeric Errors,nan
CVE-2012-4352,18/02/2013 11:56,18/02/2013 11:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1128,18/02/2013 5:00,15/02/2013 12:09,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1405,15/02/2013 12:09,15/02/2013 12:09,10.0,287, Improper Authentication,nan
CVE-2013-0704,15/02/2013 12:09,15/02/2013 12:09,4.3,200, Information Exposure,nan
CVE-2013-0703,15/02/2013 12:09,15/02/2013 12:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4712,15/02/2013 12:09,15/02/2013 12:09,5.0,200, Information Exposure,nan
CVE-2012-4701,15/02/2013 12:09,15/02/2013 12:09,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4694,15/02/2013 12:09,15/02/2013 12:09,7.6,310, Cryptographic Issues,nan
CVE-2012-5625,15/02/2013 5:04,26/12/2012 22:55,4.3,200, Information Exposure,nan
CVE-2013-1402,15/02/2013 5:00,14/02/2013 22:55,5.0,200, Information Exposure,nan
CVE-2012-0278,15/02/2013 4:53,18/04/2012 10:33,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4314,15/02/2013 4:50,27/01/2012 15:55,5.8,20, Improper Input Validation,nan
CVE-2013-0702,14/02/2013 18:07,14/02/2013 12:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-0701,14/02/2013 12:11,14/02/2013 12:11,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2013-1114,14/02/2013 5:00,13/02/2013 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1111,14/02/2013 5:00,13/02/2013 23:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1100,14/02/2013 5:00,13/02/2013 23:55,5.4,399, Resource Management Errors,nan
CVE-2012-4621,14/02/2013 4:56,27/09/2012 0:55,7.8,399, Resource Management Errors,nan
CVE-2012-4617,14/02/2013 4:56,27/09/2012 0:55,7.1,20, Improper Input Validation,nan
CVE-2012-3582,14/02/2013 4:55,4/09/2012 11:04,2.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2998,14/02/2013 4:53,28/09/2012 10:40,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2289,14/02/2013 4:52,26/08/2012 3:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0417,14/02/2013 4:48,28/09/2012 10:40,10.0,189, Numeric Errors,nan
CVE-2012-0306,14/02/2013 4:48,18/10/2012 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0272,14/02/2013 4:48,19/09/2012 10:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5212,14/02/2013 4:47,22/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5129,14/02/2013 4:47,30/08/2012 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4312,14/02/2013 4:46,24/11/2011 4:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2494,14/02/2013 4:31,8/07/2010 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0265,13/02/2013 5:00,13/02/2013 1:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-5262,13/02/2013 5:00,12/02/2013 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5257,13/02/2013 5:00,12/02/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5256,13/02/2013 5:00,12/02/2013 20:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2378,12/02/2013 5:08,5/01/2013 0:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2187,12/02/2013 5:08,25/09/2012 20:55,5.0,310, Cryptographic Issues,nan
CVE-2012-2127,12/02/2013 5:08,21/06/2012 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4700,8/02/2013 5:50,8/02/2013 5:50,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-1471,8/02/2013 5:00,4/02/2013 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5186,8/02/2013 5:00,6/02/2013 12:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1352,8/02/2013 5:00,5/02/2013 15:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6037,8/02/2013 4:55,24/11/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4696,8/02/2013 4:54,28/01/2013 18:55,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4447,8/02/2013 4:53,28/10/2012 15:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2247,8/02/2013 4:50,24/11/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2244,8/02/2013 4:50,24/11/2012 20:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2243,8/02/2013 4:50,24/11/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2239,8/02/2013 4:50,24/11/2012 20:55,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2100,8/02/2013 4:49,3/07/2012 16:40,7.1,189, Numeric Errors,nan
CVE-2013-0838,7/02/2013 5:03,15/01/2013 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5484,7/02/2013 5:01,27/01/2013 18:55,7.9,310, Cryptographic Issues,nan
CVE-2013-1120,7/02/2013 5:00,6/02/2013 12:05,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1107,7/02/2013 5:00,6/02/2013 12:05,4.0,200, Information Exposure,nan
CVE-2012-5187,7/02/2013 5:00,6/02/2013 12:05,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4912,7/02/2013 5:00,28/09/2012 10:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2293,7/02/2013 5:00,6/02/2013 12:05,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1064,7/02/2013 5:00,6/02/2013 12:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1350,7/02/2013 5:00,5/02/2013 15:55,7.1,200, Information Exposure,nan
CVE-2010-5076,7/02/2013 5:00,29/06/2012 19:55,4.3,20, Improper Input Validation,nan
CVE-2010-2621,7/02/2013 5:00,2/07/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2010-1766,7/02/2013 5:00,22/07/2010 5:42,7.5,189, Numeric Errors,nan
CVE-2009-2700,7/02/2013 5:00,2/09/2009 17:30,4.3,20, Improper Input Validation,nan
CVE-2012-3420,7/02/2013 4:57,27/08/2012 23:55,5.0,399, Resource Management Errors,nan
CVE-2012-3419,7/02/2013 4:57,27/08/2012 23:55,5.0,200, Information Exposure,nan
CVE-2012-2999,7/02/2013 4:56,4/10/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0554,7/02/2013 4:41,2/10/2011 2:53,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0553,7/02/2013 4:41,2/10/2011 2:53,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0552,7/02/2013 4:41,2/10/2011 2:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0551,7/02/2013 4:41,15/08/2011 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0548,7/02/2013 4:41,18/07/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0216,7/02/2013 4:40,21/07/2011 23:55,9.3,189, Numeric Errors,nan
CVE-2010-1525,7/02/2013 4:30,17/08/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-1524,7/02/2013 4:30,17/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0135,7/02/2013 4:27,17/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0134,7/02/2013 4:27,17/08/2010 20:00,9.3,189, Numeric Errors,nan
CVE-2010-0133,7/02/2013 4:27,17/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0131,7/02/2013 4:26,17/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0126,7/02/2013 4:26,17/08/2010 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3110,7/02/2013 4:21,8/09/2009 23:30,5.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-3108,7/02/2013 4:21,8/09/2009 23:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-3107,7/02/2013 4:21,8/09/2009 23:30,4.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-3037,7/02/2013 4:21,1/09/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3036,7/02/2013 4:21,23/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3032,7/02/2013 4:21,5/03/2010 19:30,10.0,189, Numeric Errors,nan
CVE-2009-3029,7/02/2013 4:21,15/10/2009 10:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2294,6/02/2013 18:20,6/02/2013 12:05,6.8,20, Improper Input Validation,nan
CVE-2012-2292,6/02/2013 12:05,6/02/2013 12:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2013-0968,5/02/2013 20:19,29/01/2013 5:58,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2619,5/02/2013 5:00,14/11/2012 12:30,7.8,20, Improper Input Validation,nan
CVE-2005-2224,5/02/2013 5:00,12/07/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2012-6029,4/02/2013 5:00,31/01/2013 12:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2013-1112,2/02/2013 5:11,31/01/2013 12:06,5.0,20, Improper Input Validation,nan
CVE-2013-1110,2/02/2013 5:11,21/01/2013 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-1109,2/02/2013 5:11,17/01/2013 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2013-1108,2/02/2013 5:11,21/01/2013 21:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6396,2/02/2013 5:10,19/01/2013 20:55,4.9,399, Resource Management Errors,nan
CVE-2012-6395,2/02/2013 5:10,18/01/2013 21:55,6.3,20, Improper Input Validation,nan
CVE-2012-6113,2/02/2013 5:10,19/01/2013 21:55,5.0,200, Information Exposure,nan
CVE-2012-5977,2/02/2013 5:10,4/01/2013 15:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5976,2/02/2013 5:10,4/01/2013 11:52,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5051,2/02/2013 5:09,5/10/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4917,2/02/2013 5:09,26/01/2013 23:55,5.0,310, Cryptographic Issues,nan
CVE-2012-4023,2/02/2013 5:07,8/11/2012 11:46,4.3,20, Improper Input Validation,nan
CVE-2012-4022,2/02/2013 5:07,8/11/2012 11:46,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-3516,1/02/2013 4:49,23/11/2012 20:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3314,1/02/2013 4:49,2/10/2012 21:55,5.8,20, Improper Input Validation,nan
CVE-2012-6530,31/01/2013 5:44,31/01/2013 5:44,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5328,31/01/2013 5:00,8/10/2012 20:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1671,31/01/2013 5:00,8/10/2012 23:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-1451,30/01/2013 5:00,29/01/2013 12:27,4.0,16, Configuration,nan
CVE-2013-1450,30/01/2013 5:00,29/01/2013 12:27,4.0,16, Configuration,nan
CVE-2013-0843,30/01/2013 5:00,24/01/2013 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0652,30/01/2013 5:00,27/01/2013 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0651,30/01/2013 5:00,27/01/2013 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2013-0107,30/01/2013 5:00,26/01/2013 21:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6272,30/01/2013 5:00,25/01/2013 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6112,30/01/2013 5:00,27/01/2013 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6106,30/01/2013 5:00,27/01/2013 22:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6104,30/01/2013 5:00,27/01/2013 22:55,5.0,200, Information Exposure,nan
CVE-2012-6098,30/01/2013 5:00,27/01/2013 22:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6007,30/01/2013 5:00,19/12/2012 11:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5992,30/01/2013 5:00,19/12/2012 11:56,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5344,30/01/2013 5:00,9/10/2012 15:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4899,30/01/2013 5:00,10/10/2012 18:55,2.1,310, Cryptographic Issues,nan
CVE-2009-5067,30/01/2013 5:00,10/10/2012 18:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4930,30/01/2013 4:55,15/09/2012 18:55,2.6,310, Cryptographic Issues,nan
CVE-2012-4523,30/01/2013 4:55,20/11/2012 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-4474,30/01/2013 4:54,30/11/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4473,30/01/2013 4:54,30/11/2012 22:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4471,30/01/2013 4:54,30/11/2012 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4470,30/01/2013 4:54,30/11/2012 22:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4468,30/01/2013 4:54,30/11/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4467,30/01/2013 4:54,10/10/2012 21:55,6.6,399, Resource Management Errors,nan
CVE-2012-4465,30/01/2013 4:54,10/10/2012 18:55,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4418,30/01/2013 4:54,9/10/2012 23:55,5.8,287, Improper Authentication,nan
CVE-2012-2669,30/01/2013 4:51,27/12/2012 11:47,2.1,20, Improper Input Validation,nan
CVE-2013-0654,29/01/2013 5:00,27/01/2013 18:55,9.3,20, Improper Input Validation,nan
CVE-2013-0653,29/01/2013 5:00,27/01/2013 18:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0209,29/01/2013 5:00,23/01/2013 1:55,7.5,287, Improper Authentication,nan
CVE-2012-6515,29/01/2013 5:00,24/01/2013 1:55,5.0,200, Information Exposure,nan
CVE-2012-6513,29/01/2013 5:00,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6510,29/01/2013 5:00,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6508,29/01/2013 5:00,24/01/2013 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6505,29/01/2013 5:00,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6504,29/01/2013 5:00,24/01/2013 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6397,29/01/2013 5:00,17/01/2013 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6392,29/01/2013 5:00,17/01/2013 15:55,10.0,20, Improper Input Validation,nan
CVE-2012-5968,29/01/2013 5:00,19/12/2012 11:55,4.8,20, Improper Input Validation,nan
CVE-2012-5717,29/01/2013 5:00,18/01/2013 21:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5444,29/01/2013 5:00,17/01/2013 15:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5419,29/01/2013 5:00,17/01/2013 15:55,7.8,399, Resource Management Errors,nan
CVE-2012-5185,29/01/2013 5:00,19/01/2013 20:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5178,29/01/2013 5:00,19/12/2012 11:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4898,29/01/2013 5:00,18/12/2012 12:30,6.1,310, Cryptographic Issues,nan
CVE-2012-4691,29/01/2013 5:00,18/12/2012 12:30,3.3,399, Resource Management Errors,nan
CVE-2012-4689,29/01/2013 5:00,17/01/2013 16:55,4.3,189, Numeric Errors,nan
CVE-2012-3364,29/01/2013 5:00,22/01/2013 23:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1922,29/01/2013 5:00,24/01/2013 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1953,29/01/2013 5:00,8/06/2009 1:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-6276,28/01/2013 5:00,26/01/2013 21:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6105,28/01/2013 5:00,27/01/2013 22:55,5.0,200, Information Exposure,nan
CVE-2012-6103,28/01/2013 5:00,27/01/2013 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6102,28/01/2013 5:00,27/01/2013 22:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6101,28/01/2013 5:00,27/01/2013 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-6100,28/01/2013 5:00,27/01/2013 22:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6099,28/01/2013 5:00,27/01/2013 22:55,4.0,20, Improper Input Validation,nan
CVE-2012-4914,28/01/2013 5:00,26/01/2013 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2087,28/01/2013 5:00,27/05/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5368,26/01/2013 4:58,25/10/2012 10:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5339,26/01/2013 4:58,25/10/2012 10:51,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5329,26/01/2013 4:58,8/10/2012 23:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5303,26/01/2013 4:58,5/10/2012 21:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-5159,26/01/2013 4:57,25/09/2012 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6441,25/01/2013 16:32,24/01/2013 21:55,5.0,200, Information Exposure,nan
CVE-2012-6440,25/01/2013 16:31,24/01/2013 21:55,9.3,287, Improper Authentication,nan
CVE-2012-6438,25/01/2013 16:26,24/01/2013 21:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6437,25/01/2013 16:25,24/01/2013 21:55,10.0,287, Improper Authentication,nan
CVE-2012-6436,25/01/2013 16:24,24/01/2013 21:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6435,25/01/2013 5:00,24/01/2013 21:55,7.8,399, Resource Management Errors,nan
CVE-2012-6095,25/01/2013 5:00,24/01/2013 21:55,1.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-6521,24/01/2013 5:00,24/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1921,24/01/2013 5:00,26/08/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4503,24/01/2013 5:00,22/11/2011 11:55,7.5,16, Configuration,nan
CVE-2011-4502,24/01/2013 5:00,22/11/2011 11:55,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-4501,24/01/2013 5:00,22/11/2011 11:55,10.0,16, Configuration,nan
CVE-2006-2560,24/01/2013 5:00,24/05/2006 1:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6500,23/01/2013 5:00,12/01/2013 4:33,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0656,22/01/2013 5:00,21/01/2013 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2013-0655,22/01/2013 5:00,21/01/2013 16:55,9.3,20, Improper Input Validation,nan
CVE-2012-2291,22/01/2013 5:00,21/01/2013 21:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-5874,21/01/2013 5:00,12/01/2013 4:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5184,21/01/2013 5:00,19/01/2013 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5179,21/01/2013 5:00,26/12/2012 17:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-4607,21/01/2013 5:00,17/01/2013 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4160,21/01/2013 5:00,7/01/2011 12:00,6.9,189, Numeric Errors,nan
CVE-2012-5531,18/01/2013 11:48,18/01/2013 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2124,18/01/2013 11:48,18/01/2013 11:48,5.0,399, Resource Management Errors,nan
CVE-2013-0172,18/01/2013 5:00,17/01/2013 21:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5972,18/01/2013 5:00,17/01/2013 16:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2013-0631,18/01/2013 4:50,9/01/2013 1:55,5.0,200, Information Exposure,nan
CVE-2013-0629,18/01/2013 4:50,9/01/2013 1:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2013-0625,18/01/2013 4:50,9/01/2013 1:55,6.8,255, Credentials Management,nan
CVE-2012-5155,16/01/2013 5:00,15/01/2013 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2793,16/01/2013 5:00,8/12/2010 18:00,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-5900,15/01/2013 5:00,17/11/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5899,15/01/2013 5:00,17/11/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5891,15/01/2013 5:00,17/11/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4556,15/01/2013 5:00,4/01/2013 22:55,4.0,20, Improper Input Validation,nan
CVE-2012-4549,15/01/2013 5:00,5/01/2013 0:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2224,15/01/2013 5:00,24/06/2010 17:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-4452,15/01/2013 4:33,9/10/2012 23:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-2693,15/01/2013 4:30,17/06/2012 3:41,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2011-5053,15/01/2013 4:25,6/01/2012 20:55,5.8,287, Improper Authentication,nan
CVE-2012-6499,14/01/2013 5:00,12/01/2013 4:33,5.8,20, Improper Input Validation,nan
CVE-2012-3428,8/01/2013 5:04,20/12/2012 12:02,4.3,255, Credentials Management,nan
CVE-2012-3272,8/01/2013 5:03,6/12/2012 11:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6428,8/01/2013 5:00,23/12/2012 21:55,10.0,255, Credentials Management,nan
CVE-2012-6369,8/01/2013 5:00,28/12/2012 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6348,8/01/2013 5:00,4/01/2013 21:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-6325,8/01/2013 5:00,21/12/2012 21:55,4.0,200, Information Exposure,nan
CVE-2012-5932,8/01/2013 5:00,24/12/2012 18:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5931,8/01/2013 5:00,24/12/2012 18:55,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5930,8/01/2013 5:00,24/12/2012 18:55,6.4,287, Improper Authentication,nan
CVE-2012-5868,8/01/2013 5:00,27/12/2012 11:47,2.6,200, Information Exposure,nan
CVE-2012-5587,8/01/2013 5:00,26/12/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5584,8/01/2013 5:00,26/12/2012 17:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5183,8/01/2013 5:00,26/12/2012 17:55,2.6,200, Information Exposure,nan
CVE-2012-5182,8/01/2013 5:00,26/12/2012 17:55,4.3,200, Information Exposure,nan
CVE-2012-5180,8/01/2013 5:00,26/12/2012 17:55,4.3,200, Information Exposure,nan
CVE-2012-3133,8/01/2013 5:00,21/12/2012 5:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0432,8/01/2013 5:00,25/12/2012 12:13,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4316,7/01/2013 14:54,4/01/2013 22:55,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2012-6495,7/01/2013 5:00,3/01/2013 1:55,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6434,7/01/2013 5:00,3/01/2013 11:54,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6433,7/01/2013 5:00,3/01/2013 11:54,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6431,7/01/2013 5:00,27/12/2012 11:47,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-6426,7/01/2013 5:00,1/01/2013 15:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-6082,7/01/2013 5:00,3/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5655,7/01/2013 5:00,3/01/2013 1:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6090,4/01/2013 15:09,4/01/2013 11:52,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6089,4/01/2013 11:52,4/01/2013 11:52,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4901,4/01/2013 5:00,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3245,4/01/2013 5:00,7/09/2010 18:00,2.1,200, Information Exposure,nan
CVE-2009-4396,4/01/2013 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1250,4/01/2013 4:36,4/06/2012 17:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1249,4/01/2013 4:36,21/05/2012 20:55,5.0,200, Information Exposure,nan
CVE-2012-0295,4/01/2013 4:34,23/05/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6080,3/01/2013 5:00,3/01/2013 1:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5666,3/01/2013 5:00,3/01/2013 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5654,3/01/2013 5:00,3/01/2013 1:55,4.3,200, Information Exposure,nan
CVE-2011-5251,3/01/2013 5:00,31/12/2012 20:55,5.8,20, Improper Input Validation,nan
CVE-2011-5024,3/01/2013 5:00,29/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1114,3/01/2013 5:00,3/03/2008 18:44,4.3,20, Improper Input Validation,nan
CVE-2007-5557,3/01/2013 5:00,18/10/2007 20:17,7.8,20, Improper Input Validation,nan
CVE-2006-0697,3/01/2013 5:00,15/02/2006 11:06,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-0633,3/01/2013 5:00,10/02/2006 11:02,6.4,287, Improper Authentication,nan
CVE-2012-6470,2/01/2013 18:39,2/01/2013 11:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6466,2/01/2013 18:27,2/01/2013 11:46,5.0,200, Information Exposure,nan
CVE-2012-6465,2/01/2013 18:19,2/01/2013 11:46,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6463,2/01/2013 18:15,2/01/2013 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6371,2/01/2013 16:05,31/12/2012 20:55,3.3,310, Cryptographic Issues,nan
CVE-2012-6472,2/01/2013 11:46,2/01/2013 11:46,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-6464,2/01/2013 11:46,2/01/2013 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6462,2/01/2013 11:46,2/01/2013 11:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6461,2/01/2013 11:46,2/01/2013 11:46,5.0,20, Improper Input Validation,nan
CVE-2012-6337,31/12/2012 15:22,31/12/2012 11:50,3.3,200, Information Exposure,nan
CVE-2012-6453,31/12/2012 11:50,31/12/2012 11:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6339,31/12/2012 11:50,31/12/2012 11:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4688,31/12/2012 11:50,31/12/2012 11:50,7.5,287, Improper Authentication,nan
CVE-2012-0961,31/12/2012 5:00,26/12/2012 22:55,2.1,200, Information Exposure,nan
CVE-2012-3873,28/12/2012 15:09,28/12/2012 11:48,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3872,28/12/2012 15:06,28/12/2012 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3871,28/12/2012 11:48,28/12/2012 11:48,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3870,28/12/2012 11:48,28/12/2012 11:48,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-6312,28/12/2012 5:00,11/12/2012 12:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5956,28/12/2012 5:00,11/12/2012 12:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5469,28/12/2012 5:00,20/12/2012 12:02,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5055,28/12/2012 5:00,5/12/2012 17:55,5.0,200, Information Exposure,nan
CVE-2012-4974,28/12/2012 5:00,12/12/2012 11:38,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4731,28/12/2012 5:00,11/11/2012 13:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-6432,27/12/2012 20:03,27/12/2012 11:47,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4616,27/12/2012 16:42,26/12/2012 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5591,27/12/2012 5:00,26/12/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5589,27/12/2012 5:00,26/12/2012 17:55,3.5,200, Information Exposure,nan
CVE-2012-5588,27/12/2012 5:00,26/12/2012 17:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4687,26/12/2012 5:00,8/12/2012 15:55,7.6,310, Cryptographic Issues,nan
CVE-2012-6427,24/12/2012 5:00,23/12/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2899,24/12/2012 5:00,5/12/2012 17:55,2.1,200, Information Exposure,nan
CVE-2012-1712,21/12/2012 15:05,21/12/2012 5:46,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0882,21/12/2012 5:46,21/12/2012 5:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6422,21/12/2012 5:00,18/12/2012 0:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3030,20/12/2012 5:00,18/09/2012 14:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1654,20/12/2012 5:00,18/09/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1421,20/12/2012 5:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-5186,20/12/2012 5:00,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2777,20/12/2012 5:00,29/08/2012 22:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-1130,20/12/2012 5:00,21/06/2011 2:52,7.5,20, Improper Input Validation,nan
CVE-2012-5177,19/12/2012 18:58,19/12/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5969,19/12/2012 11:55,19/12/2012 11:55,4.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5691,19/12/2012 11:55,19/12/2012 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5690,19/12/2012 11:55,19/12/2012 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-6063,19/12/2012 5:00,30/11/2012 22:55,7.5,399, Resource Management Errors,nan
CVE-2012-5622,19/12/2012 5:00,18/12/2012 1:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4693,19/12/2012 5:00,18/12/2012 12:30,1.9,310, Cryptographic Issues,nan
CVE-2012-2114,19/12/2012 4:52,31/08/2012 22:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4945,19/12/2012 4:46,1/10/2012 23:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-1485,19/12/2012 4:39,31/05/2011 20:55,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-3855,19/12/2012 4:32,26/11/2010 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3814,19/12/2012 4:32,26/11/2010 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3311,19/12/2012 4:30,7/01/2011 23:00,9.3,189, Numeric Errors,nan
CVE-2010-3053,19/12/2012 4:30,19/08/2010 18:00,4.3,20, Improper Input Validation,nan
CVE-2010-2805,19/12/2012 4:29,19/08/2010 18:00,6.8,20, Improper Input Validation,nan
CVE-2010-2541,19/12/2012 4:28,19/08/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2527,19/12/2012 4:28,19/08/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2520,19/12/2012 4:28,19/08/2010 18:00,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2519,19/12/2012 4:28,19/08/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2500,19/12/2012 4:28,19/08/2010 18:00,6.8,189, Numeric Errors,nan
CVE-2010-2499,19/12/2012 4:28,19/08/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2498,19/12/2012 4:28,19/08/2010 18:00,6.8,399, Resource Management Errors,nan
CVE-2010-2497,19/12/2012 4:28,19/08/2010 18:00,6.8,189, Numeric Errors,nan
CVE-2012-5610,18/12/2012 5:00,18/12/2012 1:55,6.5,20, Improper Input Validation,nan
CVE-2012-5608,18/12/2012 5:00,18/12/2012 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5607,18/12/2012 5:00,18/12/2012 1:55,5.0,255, Credentials Management,nan
CVE-2012-5606,18/12/2012 5:00,18/12/2012 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4005,18/12/2012 5:00,7/08/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-5680,17/12/2012 5:00,13/12/2012 11:53,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5544,17/12/2012 5:00,3/12/2012 21:55,4.0,200, Information Exposure,nan
CVE-2011-5183,17/12/2012 5:00,20/09/2012 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5178,17/12/2012 5:00,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5163,17/12/2012 5:00,15/09/2012 17:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4949,17/12/2012 5:00,31/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5966,13/12/2012 11:53,13/12/2012 11:53,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5679,13/12/2012 11:53,13/12/2012 11:53,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4991,13/12/2012 11:53,13/12/2012 11:53,8.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3131,13/12/2012 11:53,13/12/2012 11:53,4.6,399, Resource Management Errors,nan
CVE-2005-4232,13/12/2012 2:46,14/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5675,12/12/2012 11:38,12/12/2012 11:38,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-4977,12/12/2012 11:38,12/12/2012 11:38,5.0,310, Cryptographic Issues,nan
CVE-2012-4976,12/12/2012 11:38,12/12/2012 11:38,5.0,200, Information Exposure,nan
CVE-2012-4971,12/12/2012 11:38,12/12/2012 11:38,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-6313,11/12/2012 18:56,11/12/2012 12:18,5.0,200, Information Exposure,nan
CVE-2012-6301,11/12/2012 5:00,10/12/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2011-4041,11/12/2012 4:27,6/02/2012 20:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-5176,6/12/2012 11:45,6/12/2012 11:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5175,6/12/2012 11:45,6/12/2012 11:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2732,6/12/2012 5:00,5/12/2012 17:55,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1799,6/12/2012 4:18,18/04/2012 10:33,10.0,287, Improper Authentication,nan
CVE-2012-4609,5/12/2012 16:07,5/12/2012 11:57,4.3,20, Improper Input Validation,nan
CVE-2012-4608,5/12/2012 15:55,5/12/2012 11:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6067,5/12/2012 5:00,4/12/2012 23:55,10.0,287, Improper Authentication,nan
CVE-2012-6066,5/12/2012 5:00,4/12/2012 23:55,9.3,287, Improper Authentication,nan
CVE-2012-5975,5/12/2012 5:00,4/12/2012 23:55,9.3,287, Improper Authentication,nan
CVE-2012-5550,4/12/2012 18:39,3/12/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5549,4/12/2012 18:38,3/12/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1599,4/12/2012 14:54,3/12/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1598,4/12/2012 14:49,3/12/2012 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5569,4/12/2012 5:00,3/12/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5557,4/12/2012 5:00,3/12/2012 21:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-5556,4/12/2012 5:00,3/12/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5554,4/12/2012 5:00,3/12/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-5553,4/12/2012 5:00,3/12/2012 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5548,4/12/2012 5:00,3/12/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5547,4/12/2012 5:00,3/12/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5543,4/12/2012 5:00,3/12/2012 21:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5541,4/12/2012 5:00,3/12/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5540,4/12/2012 5:00,3/12/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5539,4/12/2012 5:00,3/12/2012 21:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5538,4/12/2012 5:00,3/12/2012 21:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5537,4/12/2012 5:00,3/12/2012 21:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4028,4/12/2012 5:00,16/07/2012 20:55,7.8,255, Credentials Management,nan
CVE-2012-4479,3/12/2012 19:24,30/11/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4478,3/12/2012 19:13,30/11/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4571,3/12/2012 5:00,30/11/2012 22:55,2.1,310, Cryptographic Issues,nan
CVE-2012-4551,3/12/2012 5:00,30/11/2012 22:55,7.5,399, Resource Management Errors,nan
CVE-2012-4477,3/12/2012 5:00,30/11/2012 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4476,3/12/2012 5:00,30/11/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4475,3/12/2012 5:00,30/11/2012 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4469,3/12/2012 5:00,30/11/2012 22:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3694,30/11/2012 5:00,25/07/2012 19:55,4.3,200, Information Exposure,nan
CVE-2012-6051,29/11/2012 5:00,28/11/2012 13:03,5.0,310, Cryptographic Issues,nan
CVE-2010-5285,29/11/2012 4:27,26/11/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2739,28/11/2012 13:03,28/11/2012 13:03,5.0,310, Cryptographic Issues,nan
CVE-2012-4964,28/11/2012 5:00,28/11/2012 1:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4612,28/11/2012 5:00,20/11/2012 0:55,5.0,20, Improper Input Validation,nan
CVE-2012-6042,28/11/2012 4:41,26/11/2012 22:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4789,28/11/2012 4:31,13/01/2012 4:14,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4788,28/11/2012 4:31,13/01/2012 4:14,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-6048,27/11/2012 5:00,27/11/2012 4:49,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-6047,27/11/2012 5:00,27/11/2012 4:49,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-6039,27/11/2012 5:00,26/11/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4602,27/11/2012 5:00,23/11/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5286,27/11/2012 5:00,26/11/2012 23:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1826,27/11/2012 4:41,8/06/2012 16:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0947,27/11/2012 4:39,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0248,27/11/2012 4:38,5/06/2012 22:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0247,27/11/2012 4:38,5/06/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3196,27/11/2012 3:48,16/07/2008 18:41,7.8,399, Resource Management Errors,nan
CVE-2008-3069,27/11/2012 3:48,8/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4601,26/11/2012 5:00,23/11/2012 20:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3513,23/11/2012 11:24,21/11/2012 23:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-2211,22/11/2012 12:28,22/11/2012 12:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4566,20/11/2012 5:00,20/11/2012 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-5780,20/11/2012 4:50,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-4585,20/11/2012 4:49,22/08/2012 10:42,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4583,20/11/2012 4:49,22/08/2012 10:42,4.0,200, Information Exposure,nan
CVE-2012-4582,20/11/2012 4:49,22/08/2012 10:42,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1992,20/11/2012 4:44,11/04/2012 10:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1802,20/11/2012 4:44,18/04/2012 10:33,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1800,20/11/2012 4:44,18/04/2012 10:33,6.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1237,20/11/2012 4:42,6/04/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4959,19/11/2012 19:24,18/11/2012 19:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4958,19/11/2012 19:23,18/11/2012 19:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4957,19/11/2012 19:21,18/11/2012 19:55,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5918,19/11/2012 15:51,19/11/2012 12:10,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4541,19/11/2012 12:10,19/11/2012 12:10,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5898,19/11/2012 5:00,17/11/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5172,19/11/2012 5:00,16/11/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-4884,15/11/2012 5:00,11/11/2012 13:00,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-5241,15/11/2012 5:00,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5211,15/11/2012 5:00,22/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4483,13/11/2012 5:00,31/10/2012 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4554,12/11/2012 22:00,11/11/2012 13:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4553,12/11/2012 21:56,11/11/2012 13:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-4515,12/11/2012 21:15,11/11/2012 13:00,6.8,399, Resource Management Errors,nan
CVE-2012-4513,12/11/2012 20:57,11/11/2012 13:00,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4730,12/11/2012 5:00,11/11/2012 13:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2455,12/11/2012 5:00,10/11/2012 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-4436,8/11/2012 5:00,22/10/2012 23:55,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1154,8/11/2012 5:00,22/10/2012 23:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-0736,8/11/2012 5:00,25/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5243,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5242,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5240,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5239,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5238,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5237,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2011-5236,6/11/2012 12:21,6/11/2012 12:21,5.8,20, Improper Input Validation,nan
CVE-2012-2394,6/11/2012 5:11,30/06/2012 10:15,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2390,6/11/2012 5:11,13/06/2012 10:24,4.9,399, Resource Management Errors,nan
CVE-2012-2362,6/11/2012 5:11,21/07/2012 3:38,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2152,6/11/2012 5:11,25/07/2012 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1786,6/11/2012 5:10,19/03/2012 18:55,5.0,200, Information Exposure,nan
CVE-2012-1461,6/11/2012 5:09,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1453,6/11/2012 5:09,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1448,6/11/2012 5:09,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1443,6/11/2012 5:09,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0335,6/11/2012 5:06,2/05/2012 10:09,5.0,287, Improper Authentication,nan
CVE-2011-5037,6/11/2012 5:05,30/12/2011 1:55,5.0,20, Improper Input Validation,nan
CVE-2011-5034,6/11/2012 5:05,30/12/2011 1:55,7.8,20, Improper Input Validation,nan
CVE-2011-4780,6/11/2012 5:04,22/12/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4778,6/11/2012 5:04,3/01/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4642,6/11/2012 5:04,3/01/2012 11:55,4.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4634,6/11/2012 5:04,22/12/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4597,6/11/2012 5:04,15/12/2011 3:57,5.0,200, Information Exposure,nan
CVE-2011-4528,6/11/2012 5:03,20/12/2011 11:55,5.0,399, Resource Management Errors,nan
CVE-2011-4354,6/11/2012 5:03,27/01/2012 0:55,5.8,310, Cryptographic Issues,nan
CVE-2011-4000,6/11/2012 5:02,8/11/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3635,6/11/2012 5:01,23/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5807,6/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5806,6/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5805,6/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5799,6/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5781,6/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-4498,6/11/2012 5:00,2/11/2012 15:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4493,6/11/2012 5:00,2/11/2012 15:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4486,6/11/2012 5:00,2/11/2012 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3446,6/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2011-3181,6/11/2012 5:00,29/08/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1940,6/11/2012 4:57,26/01/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2452,6/11/2012 4:42,29/06/2010 18:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2451,6/11/2012 4:42,29/06/2010 18:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2010-2020,6/11/2012 4:41,28/05/2010 18:30,6.9,20, Improper Input Validation,nan
CVE-2010-0541,6/11/2012 4:36,17/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4791,6/11/2012 3:46,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-2910,6/11/2012 3:40,30/05/2007 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2728,6/11/2012 3:39,16/05/2007 22:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5808,5/11/2012 18:57,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5801,5/11/2012 18:22,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5798,5/11/2012 18:17,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-4487,5/11/2012 14:38,2/11/2012 15:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-5823,5/11/2012 5:00,4/11/2012 22:55,5.8,20, Improper Input Validation,nan
CVE-2012-5705,2/11/2012 4:00,1/11/2012 10:44,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4939,2/11/2012 4:00,31/10/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4494,2/11/2012 4:00,31/10/2012 16:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4488,2/11/2012 4:00,31/10/2012 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4482,2/11/2012 4:00,31/10/2012 16:55,5.0,20, Improper Input Validation,nan
CVE-2012-4532,1/11/2012 16:28,31/10/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5704,1/11/2012 10:44,1/11/2012 10:44,3.5,399, Resource Management Errors,nan
CVE-2012-4499,1/11/2012 4:00,31/10/2012 16:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0232,1/11/2012 4:00,15/03/2012 18:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4425,31/10/2012 4:04,18/09/2012 17:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-5156,31/10/2012 3:06,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5142,31/10/2012 3:06,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5095,31/10/2012 3:06,14/11/2008 19:20,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5094,31/10/2012 3:06,14/11/2008 19:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5092,31/10/2012 3:06,14/11/2008 19:20,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5068,31/10/2012 3:06,13/11/2008 17:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4415,31/10/2012 3:04,17/11/2008 23:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4216,31/10/2012 3:04,17/11/2008 18:18,4.3,200, Information Exposure,nan
CVE-2008-3644,31/10/2012 3:01,17/11/2008 18:18,1.9,200, Information Exposure,nan
CVE-2008-3632,31/10/2012 3:01,11/09/2008 1:13,9.3,399, Resource Management Errors,nan
CVE-2007-6051,31/10/2012 2:46,20/11/2007 20:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5831,31/10/2012 2:46,5/11/2007 19:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5379,31/10/2012 2:44,19/10/2007 23:17,5.0,200, Information Exposure,nan
CVE-2007-3642,31/10/2012 2:39,10/07/2007 1:30,7.8,189, Numeric Errors,nan
CVE-2007-3116,31/10/2012 2:37,7/06/2007 21:30,5.0,399, Resource Management Errors,nan
CVE-2007-0447,31/10/2012 2:28,5/10/2007 21:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4584,30/10/2012 4:07,22/08/2012 10:42,3.5,310, Cryptographic Issues,nan
CVE-2012-2367,30/10/2012 4:04,21/07/2012 3:38,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2365,30/10/2012 4:04,21/07/2012 3:38,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2140,30/10/2012 4:03,18/07/2012 18:55,7.5,20, Improper Input Validation,nan
CVE-2012-2069,30/10/2012 4:03,6/09/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1815,30/10/2012 4:03,8/06/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1814,30/10/2012 4:03,8/06/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1293,30/10/2012 4:02,25/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0853,30/10/2012 4:01,20/08/2012 18:55,6.8,20, Improper Input Validation,nan
CVE-2012-0409,30/10/2012 4:00,1/06/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0362,30/10/2012 4:00,2/05/2012 10:09,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0361,30/10/2012 4:00,2/05/2012 10:09,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0339,30/10/2012 4:00,2/05/2012 10:09,5.0,20, Improper Input Validation,nan
CVE-2012-0338,30/10/2012 4:00,2/05/2012 10:09,5.0,20, Improper Input Validation,nan
CVE-2012-0333,30/10/2012 4:00,2/05/2012 10:09,5.0,287, Improper Authentication,nan
CVE-2012-0327,30/10/2012 4:00,5/04/2012 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0294,30/10/2012 3:59,23/05/2012 21:55,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0289,30/10/2012 3:59,23/05/2012 21:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0245,30/10/2012 3:59,9/03/2012 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4015,30/10/2012 3:57,2/05/2012 10:09,5.0,20, Improper Input Validation,nan
CVE-2011-4007,30/10/2012 3:57,2/05/2012 10:09,5.4,20, Improper Input Validation,nan
CVE-2011-4006,30/10/2012 3:57,2/05/2012 10:09,7.8,20, Improper Input Validation,nan
CVE-2011-3947,30/10/2012 3:57,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3940,30/10/2012 3:57,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3936,30/10/2012 3:57,20/08/2012 18:55,4.3,20, Improper Input Validation,nan
CVE-2011-3929,30/10/2012 3:57,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3309,30/10/2012 3:56,2/05/2012 10:09,4.3,200, Information Exposure,nan
CVE-2011-3295,30/10/2012 3:55,2/05/2012 10:09,7.8,20, Improper Input Validation,nan
CVE-2011-3289,30/10/2012 3:55,2/05/2012 10:09,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-2586,30/10/2012 3:54,2/05/2012 10:09,5.4,20, Improper Input Validation,nan
CVE-2009-5026,30/10/2012 3:37,17/08/2012 0:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4445,30/10/2012 3:17,6/10/2008 19:54,4.7,200, Information Exposure,nan
CVE-2007-6672,30/10/2012 3:04,8/01/2008 11:46,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5713,30/10/2012 3:00,30/10/2007 19:46,7.5,189, Numeric Errors,nan
CVE-2007-4742,30/10/2012 2:56,6/09/2007 19:17,4.3,20, Improper Input Validation,nan
CVE-2012-4501,26/10/2012 17:08,26/10/2012 10:39,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4402,26/10/2012 4:00,19/09/2012 10:57,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-4400,26/10/2012 4:00,19/09/2012 10:57,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2586,26/10/2012 4:00,19/09/2012 10:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2578,26/10/2012 4:00,19/09/2012 10:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-1123,24/10/2012 15:15,2/05/2005 4:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5317,24/10/2012 4:00,8/10/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3996,24/10/2012 4:00,12/07/2012 19:55,5.0,200, Information Exposure,nan
CVE-2011-4551,24/10/2012 4:00,1/10/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3798,24/10/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2010-4827,24/10/2012 4:00,24/08/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4826,24/10/2012 4:00,24/08/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1605,24/10/2012 4:00,11/05/2009 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5961,24/10/2012 4:00,23/01/2009 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5960,24/10/2012 4:00,23/01/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1047,24/10/2012 4:00,27/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5684,24/10/2012 4:00,26/10/2007 18:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5683,24/10/2012 4:00,26/10/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5682,24/10/2012 4:00,26/10/2007 18:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-3273,24/10/2012 4:00,19/06/2007 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6168,24/10/2012 4:00,29/11/2006 2:28,7.5,20, Improper Input Validation,nan
CVE-2006-6163,24/10/2012 4:00,29/11/2006 1:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6162,24/10/2012 4:00,29/11/2006 1:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3283,24/10/2012 4:00,23/10/2005 10:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-1122,24/10/2012 4:00,14/04/2005 4:00,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2005-0200,24/10/2012 4:00,2/05/2005 4:00,7.5,20, Improper Input Validation,nan
CVE-2002-2154,24/10/2012 4:00,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-1852,24/10/2012 4:00,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3163,23/10/2012 3:10,10/09/2009 21:30,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2009-3051,23/10/2012 3:10,10/09/2009 18:30,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2009-1722,23/10/2012 3:06,31/07/2009 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1721,23/10/2012 3:06,31/07/2009 19:00,6.8,16, Configuration,nan
CVE-2009-1720,23/10/2012 3:06,31/07/2009 19:00,7.5,189, Numeric Errors,nan
CVE-2009-1523,23/10/2012 3:06,5/05/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1000,23/10/2012 3:04,15/04/2009 10:30,7.5,255, Credentials Management,nan
CVE-2008-7160,23/10/2012 3:01,10/09/2009 21:30,5.8,134, Use of Externally-Controlled Format String,nan
CVE-2008-5462,23/10/2012 2:56,14/01/2009 2:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-5461,23/10/2012 2:56,14/01/2009 2:30,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-5460,23/10/2012 2:56,14/01/2009 2:30,2.6,200, Information Exposure,nan
CVE-2008-5459,23/10/2012 2:56,14/01/2009 2:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-4247,23/10/2012 2:53,25/09/2008 19:25,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5386,22/10/2012 4:00,11/10/2012 15:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-5385,22/10/2012 4:00,11/10/2012 15:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-5384,22/10/2012 4:00,11/10/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4756,22/10/2012 4:00,13/09/2006 22:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4755,22/10/2012 4:00,13/09/2006 22:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4247,22/10/2012 4:00,14/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4246,22/10/2012 4:00,14/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4006,22/10/2012 4:00,5/12/2005 1:03,7.5,287, Improper Authentication,nan
CVE-2007-4315,18/10/2012 4:00,13/08/2007 21:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-1627,15/10/2012 4:00,20/09/2012 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0974,15/10/2012 4:00,25/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5193,15/10/2012 4:00,23/09/2012 17:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4961,15/10/2012 4:00,17/09/2012 17:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4959,15/10/2012 4:00,17/09/2012 17:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1818,13/10/2012 3:22,8/06/2012 18:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-1817,13/10/2012 3:22,8/06/2012 18:55,7.5,20, Improper Input Validation,nan
CVE-2012-1816,13/10/2012 3:22,8/06/2012 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3814,13/10/2012 3:16,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2010-0637,13/10/2012 2:58,12/02/2010 22:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0636,13/10/2012 2:58,12/02/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5067,12/10/2012 4:00,29/01/2012 4:04,4.0,200, Information Exposure,nan
CVE-2012-4667,12/10/2012 3:30,25/08/2012 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0287,12/10/2012 3:24,6/01/2012 4:01,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5345,10/10/2012 4:00,9/10/2012 15:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4443,10/10/2012 3:20,5/10/2012 17:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-4342,9/10/2012 4:00,15/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1189,9/10/2012 4:00,8/10/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5208,9/10/2012 4:00,8/10/2012 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4928,9/10/2012 4:00,8/10/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4342,9/10/2012 4:00,8/10/2012 18:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-5276,8/10/2012 21:19,7/10/2012 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-5309,8/10/2012 10:47,8/10/2012 10:47,6.8,287, Improper Authentication,nan
CVE-2012-5308,8/10/2012 10:47,8/10/2012 10:47,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-5307,8/10/2012 10:47,8/10/2012 10:47,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4825,8/10/2012 10:47,8/10/2012 10:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4824,8/10/2012 10:47,8/10/2012 10:47,5.8,20, Improper Input Validation,nan
CVE-2011-4640,8/10/2012 10:47,8/10/2012 10:47,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4639,8/10/2012 10:47,8/10/2012 10:47,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4638,8/10/2012 10:47,8/10/2012 10:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5279,8/10/2012 10:47,8/10/2012 10:47,5.0,189, Numeric Errors,nan
CVE-2010-5067,8/10/2012 10:47,8/10/2012 10:47,6.8,255, Credentials Management,nan
CVE-2010-5066,8/10/2012 10:47,8/10/2012 10:47,4.3,310, Cryptographic Issues,nan
CVE-2010-5065,8/10/2012 10:47,8/10/2012 10:47,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5064,8/10/2012 10:47,8/10/2012 10:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5063,8/10/2012 10:47,8/10/2012 10:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-5304,8/10/2012 4:00,6/10/2012 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4442,8/10/2012 4:00,5/10/2012 21:55,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2012-1623,8/10/2012 4:00,6/10/2012 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4932,8/10/2012 4:00,6/10/2012 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4911,8/10/2012 4:00,7/10/2012 21:55,5.0,20, Improper Input Validation,nan
CVE-2011-4910,8/10/2012 4:00,7/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4909,8/10/2012 4:00,7/10/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4363,8/10/2012 4:00,7/10/2012 21:55,2.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-5275,8/10/2012 4:00,7/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1897,5/10/2012 4:00,1/10/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5204,5/10/2012 4:00,4/10/2012 17:55,1.9,255, Credentials Management,nan
CVE-2012-0956,4/10/2012 4:00,28/09/2012 15:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3209,3/10/2012 11:02,3/10/2012 11:02,4.9,189, Numeric Errors,nan
CVE-2012-3493,3/10/2012 4:00,28/09/2012 17:55,5.8,200, Information Exposure,nan
CVE-2012-3492,3/10/2012 4:00,28/09/2012 17:55,6.4,287, Improper Authentication,nan
CVE-2012-3491,3/10/2012 4:00,28/09/2012 17:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4065,2/10/2012 20:18,1/10/2012 23:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4064,2/10/2012 20:11,1/10/2012 23:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1603,2/10/2012 20:05,1/10/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1898,2/10/2012 17:27,1/10/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5234,2/10/2012 4:00,1/10/2012 23:55,5.8,20, Improper Input Validation,nan
CVE-2012-5233,2/10/2012 4:00,1/10/2012 22:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4427,2/10/2012 4:00,1/10/2012 3:26,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1636,2/10/2012 4:00,1/10/2012 22:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1604,2/10/2012 4:00,1/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1602,2/10/2012 4:00,1/10/2012 23:55,7.5,287, Improper Authentication,nan
CVE-2012-1471,2/10/2012 4:00,1/10/2012 23:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1470,2/10/2012 4:00,1/10/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4448,1/10/2012 4:00,28/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4415,1/10/2012 4:00,1/10/2012 3:26,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3347,29/09/2012 3:19,13/06/2012 19:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2274,29/09/2012 3:17,13/08/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2042,29/09/2012 3:17,24/05/2012 15:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1829,29/09/2012 3:17,13/06/2012 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1828,29/09/2012 3:17,13/06/2012 19:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1827,29/09/2012 3:17,13/06/2012 19:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4459,29/09/2012 3:13,4/06/2012 19:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4458,29/09/2012 3:13,4/06/2012 19:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2085,29/09/2012 3:09,4/06/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2084,29/09/2012 3:09,4/06/2012 19:55,4.0,200, Information Exposure,nan
CVE-2011-2083,29/09/2012 3:09,4/06/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2082,29/09/2012 3:09,4/06/2012 19:55,5.0,255, Credentials Management,nan
CVE-2012-4051,28/09/2012 10:40,28/09/2012 10:40,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1103,26/09/2012 4:00,25/09/2012 23:55,4.3,20, Improper Input Validation,nan
CVE-2012-0973,26/09/2012 4:00,25/09/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0209,26/09/2012 4:00,25/09/2012 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4623,26/09/2012 4:00,25/09/2012 23:55,2.1,189, Numeric Errors,nan
CVE-2012-4015,25/09/2012 11:07,25/09/2012 11:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3037,25/09/2012 11:07,25/09/2012 11:07,5.0,310, Cryptographic Issues,nan
CVE-2011-5025,25/09/2012 3:42,29/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5192,24/09/2012 4:00,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5191,24/09/2012 4:00,23/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3691,22/09/2012 3:35,25/07/2012 19:55,5.8,20, Improper Input Validation,nan
CVE-2012-3686,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3683,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3682,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3681,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3680,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3679,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3678,22/09/2012 3:35,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3674,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3670,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3669,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3668,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3667,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3666,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3665,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3664,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3663,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3661,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3656,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3655,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3646,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3645,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3644,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3642,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3641,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3640,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3639,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3636,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3634,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3629,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3627,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3625,22/09/2012 3:34,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2386,22/09/2012 3:32,7/07/2012 10:21,7.5,189, Numeric Errors,nan
CVE-2012-0683,22/09/2012 3:29,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0682,22/09/2012 3:29,25/07/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3457,22/09/2012 3:25,2/02/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3740,21/09/2012 18:27,20/09/2012 21:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3736,21/09/2012 18:04,20/09/2012 21:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-4993,21/09/2012 4:00,19/09/2012 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3739,21/09/2012 4:00,20/09/2012 21:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3720,21/09/2012 4:00,20/09/2012 21:55,4.3,255, Credentials Management,nan
CVE-2012-2439,21/09/2012 4:00,28/04/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1638,21/09/2012 4:00,19/09/2012 21:55,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0650,21/09/2012 4:00,20/09/2012 21:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-5007,20/09/2012 18:47,20/09/2012 3:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1625,20/09/2012 18:12,20/09/2012 3:46,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1632,20/09/2012 17:51,20/09/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5185,20/09/2012 10:55,20/09/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-5006,20/09/2012 4:00,19/09/2012 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4407,20/09/2012 4:00,19/09/2012 10:57,5.0,200, Information Exposure,nan
CVE-2012-1651,20/09/2012 4:00,19/09/2012 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4403,19/09/2012 18:48,19/09/2012 10:57,5.0,200, Information Exposure,nan
CVE-2012-3034,19/09/2012 14:11,18/09/2012 14:55,4.3,200, Information Exposure,nan
CVE-2012-3032,19/09/2012 14:03,18/09/2012 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4408,19/09/2012 10:57,19/09/2012 10:57,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4401,19/09/2012 10:57,19/09/2012 10:57,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3031,19/09/2012 4:00,18/09/2012 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3028,19/09/2012 4:00,18/09/2012 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4968,18/09/2012 4:00,17/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4926,18/09/2012 4:00,15/09/2012 17:55,6.4,287, Improper Authentication,nan
CVE-2012-2575,18/09/2012 4:00,17/09/2012 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2056,18/09/2012 4:00,17/09/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4962,18/09/2012 4:00,17/09/2012 17:55,6.8,20, Improper Input Validation,nan
CVE-2011-4960,18/09/2012 4:00,17/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5079,18/09/2012 4:00,17/09/2012 17:55,5.0,310, Cryptographic Issues,nan
CVE-2010-4822,18/09/2012 4:00,17/09/2012 17:55,4.3,200, Information Exposure,nan
CVE-2012-3383,18/09/2012 3:35,22/07/2012 17:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-0823,18/09/2012 3:31,23/02/2012 20:07,5.0,20, Improper Input Validation,nan
CVE-2011-4161,18/09/2012 3:28,1/12/2011 21:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-2189,18/09/2012 3:24,10/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2012-3458,17/09/2012 17:43,15/09/2012 17:55,4.3,310, Cryptographic Issues,nan
CVE-2011-5175,17/09/2012 17:22,15/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4422,17/09/2012 4:00,14/09/2012 19:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4421,17/09/2012 4:00,14/09/2012 19:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4013,17/09/2012 4:00,14/09/2012 23:55,4.3,200, Information Exposure,nan
CVE-2012-4011,17/09/2012 4:00,8/09/2012 10:28,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-3899,17/09/2012 4:00,16/09/2012 10:34,5.0,399, Resource Management Errors,nan
CVE-2011-5176,17/09/2012 4:00,15/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5164,17/09/2012 4:00,15/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5106,17/09/2012 4:00,14/09/2012 19:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4909,14/09/2012 13:31,13/09/2012 20:55,4.3,200, Information Exposure,nan
CVE-2012-4908,14/09/2012 13:30,13/09/2012 20:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4907,14/09/2012 13:25,13/09/2012 20:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4906,14/09/2012 13:23,13/09/2012 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4905,14/09/2012 13:22,13/09/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4904,14/09/2012 13:20,13/09/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4903,14/09/2012 4:00,13/09/2012 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0797,14/09/2012 4:00,17/07/2012 10:20,5.5,16, Configuration,nan
CVE-2012-4865,13/09/2012 4:00,6/09/2012 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4392,13/09/2012 4:00,5/09/2012 23:55,7.5,287, Improper Authentication,nan
CVE-2012-4390,13/09/2012 4:00,5/09/2012 23:55,4.0,200, Information Exposure,nan
CVE-2012-3542,13/09/2012 4:00,5/09/2012 23:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3012,13/09/2012 4:00,5/09/2012 20:55,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2741,13/09/2012 4:00,6/09/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2740,13/09/2012 4:00,6/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1467,13/09/2012 4:00,6/09/2012 21:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4450,13/09/2012 4:00,5/09/2012 20:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4819,13/09/2012 4:00,5/09/2012 23:55,3.6,20, Improper Input Validation,nan
CVE-2012-3572,12/09/2012 14:53,11/09/2012 19:55,6.0,20, Improper Input Validation,nan
CVE-2012-4893,12/09/2012 14:30,11/09/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2975,12/09/2012 13:53,11/09/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4238,11/09/2012 18:42,20/08/2012 20:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4391,11/09/2012 4:00,5/09/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4237,11/09/2012 4:00,20/08/2012 20:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2306,11/09/2012 4:00,25/07/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2316,10/09/2012 18:25,9/09/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1579,10/09/2012 17:02,9/09/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-4873,10/09/2012 4:00,6/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4012,10/09/2012 4:00,8/09/2012 10:28,4.3,200, Information Exposure,nan
CVE-2012-0254,10/09/2012 4:00,8/09/2012 10:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5159,10/09/2012 4:00,9/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4942,10/09/2012 4:00,9/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1612,7/09/2012 13:46,6/09/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0837,7/09/2012 13:34,6/09/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-0820,7/09/2012 13:22,6/09/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4219,7/09/2012 4:31,21/08/2012 19:55,5.0,200, Information Exposure,nan
CVE-2012-3426,7/09/2012 4:30,31/07/2012 10:45,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3292,7/09/2012 4:30,7/06/2012 20:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-3176,7/09/2012 4:21,9/04/2012 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3175,7/09/2012 4:21,9/04/2012 20:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4876,7/09/2012 4:00,6/09/2012 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4868,7/09/2012 4:00,6/09/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4867,7/09/2012 4:00,6/09/2012 17:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0822,7/09/2012 4:00,6/09/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4753,6/09/2012 16:11,5/09/2012 23:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4752,6/09/2012 16:09,5/09/2012 23:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4397,6/09/2012 16:05,5/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4396,6/09/2012 15:43,5/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4395,6/09/2012 15:39,5/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4394,6/09/2012 15:36,5/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4818,6/09/2012 13:40,5/09/2012 23:55,8.5,20, Improper Input Validation,nan
CVE-2011-4452,6/09/2012 13:08,5/09/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4448,6/09/2012 12:43,5/09/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3551,6/09/2012 4:00,5/09/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3380,5/09/2012 4:00,31/08/2012 18:55,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3378,5/09/2012 4:00,31/08/2012 18:55,3.3,310, Cryptographic Issues,nan
CVE-2012-2065,5/09/2012 4:00,5/09/2012 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2064,5/09/2012 4:00,5/09/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1614,5/09/2012 4:00,4/09/2012 20:55,5.0,200, Information Exposure,nan
CVE-2012-1608,5/09/2012 4:00,4/09/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2012-1607,5/09/2012 4:00,4/09/2012 20:55,5.0,200, Information Exposure,nan
CVE-2012-1606,5/09/2012 4:00,4/09/2012 20:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5146,5/09/2012 4:00,31/08/2012 21:55,2.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-5125,5/09/2012 4:00,26/08/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5185,5/09/2012 4:00,26/08/2012 3:17,10.0,20, Improper Input Validation,nan
CVE-2010-5184,5/09/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5183,5/09/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2374,5/09/2012 3:23,23/05/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2012-0808,5/09/2012 3:21,19/03/2012 19:55,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-4747,4/09/2012 11:04,4/09/2012 11:04,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3014,4/09/2012 11:04,4/09/2012 11:04,7.7,255, Credentials Management,nan
CVE-2012-2969,4/09/2012 4:00,12/08/2012 16:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-2968,4/09/2012 4:00,12/08/2012 16:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2965,4/09/2012 4:00,12/08/2012 16:55,7.5,20, Improper Input Validation,nan
CVE-2012-2116,4/09/2012 4:00,31/08/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2083,4/09/2012 4:00,31/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5143,4/09/2012 4:00,31/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4950,3/09/2012 18:31,31/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5150,3/09/2012 18:10,31/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4746,3/09/2012 4:00,31/08/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4948,3/09/2012 4:00,31/08/2012 22:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-5123,3/09/2012 4:00,26/08/2012 3:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4598,1/09/2012 3:38,15/12/2011 3:57,4.3,200, Information Exposure,nan
CVE-2012-4686,29/08/2012 14:34,28/08/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5128,29/08/2012 4:39,29/08/2012 4:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3508,29/08/2012 4:00,25/08/2012 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2990,29/08/2012 4:00,24/08/2012 20:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2587,29/08/2012 4:00,12/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2324,29/08/2012 4:00,13/08/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1977,29/08/2012 4:00,9/05/2012 10:33,7.1,255, Credentials Management,nan
CVE-2012-1645,29/08/2012 4:00,28/08/2012 17:55,2.6,200, Information Exposure,nan
CVE-2012-1643,29/08/2012 4:00,28/08/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1642,29/08/2012 4:00,28/08/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1641,29/08/2012 4:00,28/08/2012 17:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1635,29/08/2012 4:00,28/08/2012 17:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-5153,29/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5152,29/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-1919,29/08/2012 3:48,27/03/2012 19:55,6.4,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1917,29/08/2012 3:48,27/03/2012 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4332,28/08/2012 4:00,14/08/2012 22:55,5.0,200, Information Exposure,nan
CVE-2012-1835,28/08/2012 4:00,14/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1586,28/08/2012 4:00,27/08/2012 23:55,2.1,200, Information Exposure,nan
CVE-2011-5127,27/08/2012 22:54,26/08/2012 19:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-5126,27/08/2012 22:38,26/08/2012 19:55,5.0,200, Information Exposure,nan
CVE-2011-5124,27/08/2012 22:30,26/08/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5189,27/08/2012 22:19,26/08/2012 19:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-5130,27/08/2012 21:55,26/08/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5129,27/08/2012 21:51,26/08/2012 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5128,27/08/2012 21:43,26/08/2012 19:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4674,27/08/2012 21:32,26/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2010-5093,27/08/2012 21:19,26/08/2012 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5090,27/08/2012 21:11,26/08/2012 18:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5087,27/08/2012 21:05,26/08/2012 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-5123,27/08/2012 20:19,26/08/2012 3:17,10.0,310, Cryptographic Issues,nan
CVE-2011-5122,27/08/2012 20:16,26/08/2012 3:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5176,27/08/2012 18:22,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5174,27/08/2012 18:18,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5172,27/08/2012 18:13,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5167,27/08/2012 18:01,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5163,27/08/2012 17:47,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5162,27/08/2012 17:44,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5161,27/08/2012 17:42,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5160,27/08/2012 17:38,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5155,27/08/2012 17:19,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5154,27/08/2012 17:14,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-4678,27/08/2012 13:05,26/08/2012 21:55,5.0,399, Resource Management Errors,nan
CVE-2012-4677,27/08/2012 4:00,26/08/2012 19:55,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-4676,27/08/2012 4:00,26/08/2012 19:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-4673,27/08/2012 4:00,26/08/2012 3:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4671,27/08/2012 4:00,25/08/2012 16:55,5.8,20, Improper Input Validation,nan
CVE-2012-4669,27/08/2012 4:00,25/08/2012 16:55,5.8,20, Improper Input Validation,nan
CVE-2012-4668,27/08/2012 4:00,25/08/2012 10:29,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3501,27/08/2012 4:00,25/08/2012 10:29,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3487,27/08/2012 4:00,26/08/2012 19:55,1.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-3486,27/08/2012 4:00,26/08/2012 19:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-3484,27/08/2012 4:00,26/08/2012 19:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-3483,27/08/2012 4:00,26/08/2012 19:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-3477,27/08/2012 4:00,26/08/2012 3:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2146,27/08/2012 4:00,26/08/2012 21:55,4.3,310, Cryptographic Issues,nan
CVE-2012-1175,27/08/2012 4:00,26/08/2012 20:55,6.8,189, Numeric Errors,nan
CVE-2012-0048,27/08/2012 4:00,25/08/2012 10:29,4.3,399, Resource Management Errors,nan
CVE-2011-5121,27/08/2012 4:00,26/08/2012 3:17,10.0,310, Cryptographic Issues,nan
CVE-2011-5119,27/08/2012 4:00,26/08/2012 3:17,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-5118,27/08/2012 4:00,26/08/2012 3:17,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5190,27/08/2012 4:00,26/08/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5187,27/08/2012 4:00,26/08/2012 18:55,4.3,200, Information Exposure,nan
CVE-2010-5182,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5181,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5180,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5179,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5178,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5177,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5175,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5173,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5171,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5170,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5169,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5168,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5165,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5164,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5159,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5158,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5157,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5156,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5151,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5150,27/08/2012 4:00,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-5094,27/08/2012 4:00,26/08/2012 18:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5092,27/08/2012 4:00,26/08/2012 18:55,1.9,255, Credentials Management,nan
CVE-2010-5091,27/08/2012 4:00,26/08/2012 18:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-5089,27/08/2012 4:00,26/08/2012 18:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-5080,27/08/2012 4:00,26/08/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-5131,27/08/2012 4:00,26/08/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-5124,27/08/2012 4:00,26/08/2012 3:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5166,25/08/2012 21:55,25/08/2012 21:55,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-2488,25/08/2012 3:27,31/05/2012 10:17,7.8,20, Improper Input Validation,nan
CVE-2012-1904,25/08/2012 3:26,28/03/2012 10:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5117,24/08/2012 16:30,24/08/2012 10:36,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-4026,24/08/2012 4:00,16/07/2012 20:49,5.0,20, Improper Input Validation,nan
CVE-2012-3371,24/08/2012 4:00,17/07/2012 21:55,3.5,20, Improper Input Validation,nan
CVE-2012-2674,24/08/2012 4:00,25/07/2012 19:55,4.3,189, Numeric Errors,nan
CVE-2012-2496,24/08/2012 4:00,20/06/2012 20:55,6.8,20, Improper Input Validation,nan
CVE-2011-5116,24/08/2012 4:00,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5115,24/08/2012 4:00,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5114,24/08/2012 4:00,23/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5113,24/08/2012 4:00,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5112,24/08/2012 4:00,23/08/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5102,23/08/2012 14:54,23/08/2012 10:32,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4604,23/08/2012 10:32,23/08/2012 10:32,4.3,287, Improper Authentication,nan
CVE-2010-5144,23/08/2012 10:32,23/08/2012 10:32,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-5121,23/08/2012 10:32,23/08/2012 10:32,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-5120,23/08/2012 10:32,23/08/2012 10:32,4.3,16, Configuration,nan
CVE-2009-5119,23/08/2012 10:32,23/08/2012 10:32,4.3,16, Configuration,nan
CVE-2012-4586,22/08/2012 17:55,22/08/2012 10:42,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4593,22/08/2012 10:42,22/08/2012 10:42,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-4588,22/08/2012 10:42,22/08/2012 10:42,4.3,255, Credentials Management,nan
CVE-2012-4581,22/08/2012 10:42,22/08/2012 10:42,6.8,287, Improper Authentication,nan
CVE-2012-4580,22/08/2012 10:42,22/08/2012 10:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5100,22/08/2012 10:42,22/08/2012 10:42,7.5,287, Improper Authentication,nan
CVE-2010-5143,22/08/2012 10:42,22/08/2012 10:42,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-3499,22/08/2012 10:42,22/08/2012 10:42,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-3498,22/08/2012 10:42,22/08/2012 10:42,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-3497,22/08/2012 10:42,22/08/2012 10:42,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-3496,22/08/2012 10:42,22/08/2012 10:42,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-5116,22/08/2012 10:42,22/08/2012 10:42,6.5,287, Improper Authentication,nan
CVE-2012-4579,22/08/2012 4:00,21/08/2012 23:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4272,22/08/2012 4:00,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2330,22/08/2012 4:00,13/08/2012 23:55,6.4,20, Improper Input Validation,nan
CVE-2011-3974,22/08/2012 3:30,2/10/2011 20:55,5.0,189, Numeric Errors,nan
CVE-2011-3973,22/08/2012 3:30,2/10/2011 20:55,5.0,399, Resource Management Errors,nan
CVE-2012-4362,21/08/2012 18:24,20/08/2012 22:55,4.0,255, Credentials Management,nan
CVE-2011-4579,21/08/2012 17:38,20/08/2012 20:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0847,21/08/2012 15:29,20/08/2012 19:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0858,21/08/2012 14:41,20/08/2012 18:55,6.8,399, Resource Management Errors,nan
CVE-2012-2985,21/08/2012 10:46,21/08/2012 10:46,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2980,21/08/2012 10:46,21/08/2012 10:46,7.1,255, Credentials Management,nan
CVE-2012-4361,21/08/2012 4:00,20/08/2012 22:55,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-4236,21/08/2012 4:00,20/08/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2986,21/08/2012 4:00,20/08/2012 22:55,7.7,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2387,21/08/2012 4:00,20/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2011-4364,21/08/2012 4:00,20/08/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4353,21/08/2012 4:00,20/08/2012 20:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4352,21/08/2012 4:00,20/08/2012 20:55,6.8,189, Numeric Errors,nan
CVE-2011-3951,21/08/2012 4:00,20/08/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3945,21/08/2012 4:00,20/08/2012 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4356,20/08/2012 16:16,19/08/2012 20:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-4359,20/08/2012 4:00,19/08/2012 20:55,9.3,20, Improper Input Validation,nan
CVE-2012-4358,20/08/2012 4:00,19/08/2012 20:55,9.3,20, Improper Input Validation,nan
CVE-2012-4357,20/08/2012 4:00,19/08/2012 20:55,9.3,20, Improper Input Validation,nan
CVE-2012-4355,20/08/2012 4:00,19/08/2012 20:55,9.3,189, Numeric Errors,nan
CVE-2012-4354,20/08/2012 4:00,19/08/2012 20:55,9.3,189, Numeric Errors,nan
CVE-2012-4353,20/08/2012 4:00,19/08/2012 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4007,20/08/2012 4:00,17/08/2012 20:55,4.3,200, Information Exposure,nan
CVE-2012-2611,19/08/2012 3:44,15/05/2012 4:21,9.3,20, Improper Input Validation,nan
CVE-2012-2566,19/08/2012 3:44,9/06/2012 0:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2565,19/08/2012 3:44,9/06/2012 0:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-2564,19/08/2012 3:44,9/06/2012 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2563,19/08/2012 3:44,9/06/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4014,19/08/2012 3:38,2/05/2012 10:09,4.0,200, Information Exposure,nan
CVE-2012-2614,18/08/2012 4:00,12/07/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1908,17/08/2012 4:00,17/08/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1597,17/08/2012 4:00,17/08/2012 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3361,17/08/2012 3:53,22/07/2012 16:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3360,17/08/2012 3:53,22/07/2012 16:55,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-3025,16/08/2012 16:13,16/08/2012 10:38,5.0,310, Cryptographic Issues,nan
CVE-2012-3024,16/08/2012 10:38,16/08/2012 10:38,5.0,287, Improper Authentication,nan
CVE-2012-3009,16/08/2012 10:38,16/08/2012 10:38,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4340,16/08/2012 4:00,15/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3434,16/08/2012 4:00,15/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2300,15/08/2012 18:47,14/08/2012 22:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4162,15/08/2012 10:31,15/08/2012 10:31,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4161,15/08/2012 10:31,15/08/2012 10:31,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2047,15/08/2012 10:31,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2046,15/08/2012 10:31,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2045,15/08/2012 10:31,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2044,15/08/2012 10:31,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2043,15/08/2012 10:31,15/08/2012 10:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2299,15/08/2012 4:00,14/08/2012 22:55,2.1,255, Credentials Management,nan
CVE-2012-2096,15/08/2012 4:00,14/08/2012 21:55,5.0,20, Improper Input Validation,nan
CVE-2012-4280,14/08/2012 22:05,13/08/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-4266,14/08/2012 18:26,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2327,14/08/2012 13:49,13/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2012-2326,14/08/2012 13:48,13/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4283,14/08/2012 4:00,13/08/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4279,14/08/2012 4:00,13/08/2012 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4278,14/08/2012 4:00,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4277,14/08/2012 4:00,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4275,14/08/2012 4:00,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4267,14/08/2012 4:00,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4264,14/08/2012 4:00,13/08/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4258,14/08/2012 4:00,13/08/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4255,14/08/2012 4:00,13/08/2012 18:55,4.3,200, Information Exposure,nan
CVE-2012-3869,14/08/2012 4:00,13/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2371,14/08/2012 4:00,13/08/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2368,14/08/2012 4:00,13/08/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2012-2332,14/08/2012 4:00,13/08/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2331,14/08/2012 4:00,13/08/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2325,14/08/2012 4:00,13/08/2012 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5096,14/08/2012 4:00,13/08/2012 23:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3847,14/08/2012 3:38,5/07/2012 3:23,5.0,399, Resource Management Errors,nan
CVE-2012-3831,14/08/2012 3:38,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3561,14/08/2012 3:38,14/06/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3007,14/08/2012 3:38,5/07/2012 3:23,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2352,14/08/2012 3:37,31/05/2012 17:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2314,14/08/2012 3:37,3/07/2012 22:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-1425,14/08/2012 3:35,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1424,14/08/2012 3:35,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1423,14/08/2012 3:35,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1422,14/08/2012 3:35,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1420,14/08/2012 3:35,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1419,14/08/2012 3:35,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1174,14/08/2012 3:35,12/07/2012 20:55,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2012-0466,14/08/2012 3:34,27/04/2012 20:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0465,14/08/2012 3:34,27/04/2012 20:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0407,14/08/2012 3:34,20/04/2012 4:02,5.0,189, Numeric Errors,nan
CVE-2012-0406,14/08/2012 3:33,20/04/2012 4:02,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3620,14/08/2012 3:30,3/05/2012 23:55,7.5,287, Improper Authentication,nan
CVE-2008-0610,14/08/2012 2:37,6/02/2008 12:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3476,13/08/2012 17:58,12/08/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3474,13/08/2012 17:55,12/08/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-3473,13/08/2012 17:54,12/08/2012 21:55,6.4,287, Improper Authentication,nan
CVE-2012-3472,13/08/2012 17:53,12/08/2012 21:55,6.4,287, Improper Authentication,nan
CVE-2012-3471,13/08/2012 17:52,12/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3469,13/08/2012 17:47,12/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2585,13/08/2012 17:22,12/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4249,13/08/2012 16:49,12/08/2012 17:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4247,13/08/2012 14:23,12/08/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4248,13/08/2012 4:00,12/08/2012 17:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-4246,13/08/2012 4:00,12/08/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4070,13/08/2012 4:00,12/08/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4069,13/08/2012 4:00,12/08/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3470,13/08/2012 4:00,12/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3468,13/08/2012 4:00,12/08/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2964,13/08/2012 4:00,12/08/2012 16:55,5.0,20, Improper Input Validation,nan
CVE-2012-2963,13/08/2012 4:00,12/08/2012 16:55,5.0,287, Improper Authentication,nan
CVE-2012-2649,13/08/2012 4:00,8/08/2012 18:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2602,13/08/2012 4:00,12/08/2012 16:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2590,13/08/2012 4:00,12/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2573,13/08/2012 4:00,12/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2571,13/08/2012 4:00,12/08/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5097,13/08/2012 4:00,8/08/2012 10:26,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-5142,13/08/2012 4:00,8/08/2012 10:26,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3554,10/08/2012 13:59,10/08/2012 10:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-4235,10/08/2012 10:34,10/08/2012 10:34,5.0,200, Information Exposure,nan
CVE-2012-4071,10/08/2012 10:34,10/08/2012 10:34,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2648,10/08/2012 4:00,7/08/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5098,10/08/2012 4:00,8/08/2012 10:26,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4004,9/08/2012 13:47,8/08/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3384,9/08/2012 4:00,22/07/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2353,9/08/2012 4:00,21/07/2012 3:38,4.0,200, Information Exposure,nan
CVE-2012-2305,9/08/2012 4:00,25/07/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2303,9/08/2012 4:00,18/07/2012 18:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0215,9/08/2012 4:00,12/07/2012 20:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2005-4895,9/08/2012 4:00,25/07/2012 19:55,5.0,189, Numeric Errors,nan
CVE-2012-3454,8/08/2012 15:21,7/08/2012 20:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-0421,8/08/2012 10:26,8/08/2012 10:26,2.1,200, Information Exposure,nan
CVE-2012-3453,8/08/2012 4:00,7/08/2012 20:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3452,8/08/2012 4:00,7/08/2012 20:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3413,8/08/2012 4:00,7/08/2012 20:55,4.3,16, Configuration,nan
CVE-2012-2317,8/08/2012 4:00,7/08/2012 19:55,4.3,310, Cryptographic Issues,nan
CVE-2012-2310,8/08/2012 4:00,25/07/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2302,8/08/2012 4:00,25/07/2012 21:55,5.0,200, Information Exposure,nan
CVE-2012-0678,8/08/2012 4:00,25/07/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1361,7/08/2012 20:17,6/08/2012 18:55,4.3,200, Information Exposure,nan
CVE-2012-1357,7/08/2012 20:14,6/08/2012 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1348,7/08/2012 20:02,6/08/2012 18:55,5.0,200, Information Exposure,nan
CVE-2012-1346,7/08/2012 19:57,6/08/2012 18:55,5.0,399, Resource Management Errors,nan
CVE-2012-2490,7/08/2012 19:47,6/08/2012 17:55,5.0,20, Improper Input Validation,nan
CVE-2012-2474,7/08/2012 19:38,6/08/2012 17:55,4.0,200, Information Exposure,nan
CVE-2010-5140,7/08/2012 14:37,6/08/2012 16:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2859,7/08/2012 14:10,6/08/2012 15:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4146,7/08/2012 4:00,6/08/2012 16:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-4144,7/08/2012 4:00,6/08/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-4143,7/08/2012 4:00,6/08/2012 16:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-4142,7/08/2012 4:00,6/08/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3020,7/08/2012 4:00,6/08/2012 16:55,7.5,255, Credentials Management,nan
CVE-2012-2500,7/08/2012 4:00,6/08/2012 17:55,4.0,310, Cryptographic Issues,nan
CVE-2012-2499,7/08/2012 4:00,6/08/2012 17:55,5.8,310, Cryptographic Issues,nan
CVE-2012-2498,7/08/2012 4:00,6/08/2012 17:55,4.0,287, Improper Authentication,nan
CVE-2012-2472,7/08/2012 4:00,6/08/2012 17:55,7.8,399, Resource Management Errors,nan
CVE-2012-1909,7/08/2012 4:00,6/08/2012 16:55,5.0,16, Configuration,nan
CVE-2011-4447,7/08/2012 4:00,6/08/2012 16:55,4.3,310, Cryptographic Issues,nan
CVE-2010-5141,7/08/2012 4:00,6/08/2012 16:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-5139,7/08/2012 4:00,6/08/2012 16:55,7.5,189, Numeric Errors,nan
CVE-2012-1370,6/08/2012 15:55,6/08/2012 15:55,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1367,6/08/2012 15:55,6/08/2012 15:55,5.0,20, Improper Input Validation,nan
CVE-2006-5530,6/08/2012 4:00,26/10/2006 17:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4386,6/08/2012 4:00,20/12/2005 2:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0054,3/08/2012 4:00,19/03/2012 19:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-7298,2/08/2012 4:00,9/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7297,2/08/2012 4:00,9/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7296,2/08/2012 4:00,9/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7295,2/08/2012 4:00,9/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7294,2/08/2012 4:00,9/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7293,2/08/2012 4:00,9/08/2011 19:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-7292,2/08/2012 4:00,9/08/2011 19:55,2.1,200, Information Exposure,nan
CVE-2012-0813,1/08/2012 4:00,29/06/2012 19:55,2.1,255, Credentials Management,nan
CVE-2012-0277,1/08/2012 4:00,17/07/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3017,31/07/2012 14:25,31/07/2012 10:45,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3018,31/07/2012 10:45,31/07/2012 10:45,4.4,310, Cryptographic Issues,nan
CVE-2012-2647,31/07/2012 10:45,31/07/2012 10:45,5.8,200, Information Exposure,nan
CVE-2012-3698,31/07/2012 4:00,26/07/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3697,30/07/2012 4:00,25/07/2012 19:55,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3689,30/07/2012 4:00,25/07/2012 19:55,5.8,20, Improper Input Validation,nan
CVE-2012-2676,30/07/2012 4:00,25/07/2012 19:55,4.3,189, Numeric Errors,nan
CVE-2012-2675,30/07/2012 4:00,25/07/2012 19:55,4.3,189, Numeric Errors,nan
CVE-2012-2309,30/07/2012 4:00,25/07/2012 21:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2307,30/07/2012 4:00,25/07/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0679,30/07/2012 4:00,25/07/2012 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1454,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1452,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1450,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1449,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1446,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1444,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1442,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1439,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1437,28/07/2012 3:30,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3888,27/07/2012 13:58,26/07/2012 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3886,27/07/2012 13:48,26/07/2012 22:55,5.0,200, Information Exposure,nan
CVE-2012-3885,27/07/2012 13:45,26/07/2012 22:55,7.5,287, Improper Authentication,nan
CVE-2011-3174,27/07/2012 13:39,26/07/2012 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2658,27/07/2012 13:33,26/07/2012 22:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2503,27/07/2012 12:04,26/07/2012 19:55,3.7,20, Improper Input Validation,nan
CVE-2012-4043,27/07/2012 4:00,26/07/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3887,27/07/2012 4:00,26/07/2012 22:55,5.0,310, Cryptographic Issues,nan
CVE-2012-3884,27/07/2012 4:00,26/07/2012 22:55,5.0,287, Improper Authentication,nan
CVE-2011-2657,27/07/2012 4:00,26/07/2012 22:55,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2502,27/07/2012 4:00,26/07/2012 19:55,4.4,20, Improper Input Validation,nan
CVE-2012-3362,27/07/2012 3:40,12/07/2012 20:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3690,26/07/2012 14:23,25/07/2012 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6754,26/07/2012 12:52,25/07/2012 19:55,5.0,189, Numeric Errors,nan
CVE-2012-3805,26/07/2012 4:00,12/07/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7252,26/07/2012 4:00,25/07/2012 19:55,5.0,189, Numeric Errors,nan
CVE-2009-5063,24/07/2012 3:12,31/08/2011 23:55,5.0,399, Resource Management Errors,nan
CVE-2012-3385,23/07/2012 19:03,22/07/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2364,23/07/2012 14:25,21/07/2012 3:38,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2363,23/07/2012 14:24,21/07/2012 3:38,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2361,23/07/2012 14:20,21/07/2012 3:38,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2360,23/07/2012 14:17,21/07/2012 3:38,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2359,23/07/2012 14:15,21/07/2012 3:38,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2357,23/07/2012 14:03,21/07/2012 3:38,5.0,200, Information Exposure,nan
CVE-2012-2356,23/07/2012 13:57,21/07/2012 3:38,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2355,23/07/2012 13:51,21/07/2012 3:38,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2354,23/07/2012 13:50,21/07/2012 3:38,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2358,23/07/2012 4:00,21/07/2012 3:38,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4593,23/07/2012 4:00,20/07/2012 10:40,4.0,200, Information Exposure,nan
CVE-2011-4590,23/07/2012 4:00,20/07/2012 10:40,4.0,287, Improper Authentication,nan
CVE-2011-4582,23/07/2012 4:00,20/07/2012 10:40,4.9,20, Improper Input Validation,nan
CVE-2011-4581,23/07/2012 4:00,20/07/2012 10:40,4.0,200, Information Exposure,nan
CVE-2011-3464,23/07/2012 4:00,22/07/2012 17:55,7.5,189, Numeric Errors,nan
CVE-2011-2199,23/07/2012 4:00,22/07/2012 17:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5000,22/07/2012 3:33,5/04/2012 14:55,3.5,189, Numeric Errors,nan
CVE-2010-3294,22/07/2012 3:18,24/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4592,20/07/2012 13:42,20/07/2012 10:40,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4591,20/07/2012 13:34,20/07/2012 10:40,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4589,20/07/2012 13:30,20/07/2012 10:40,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3998,19/07/2012 4:00,12/07/2012 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3997,19/07/2012 4:00,12/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0282,18/07/2012 13:15,17/07/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3241,18/07/2012 4:00,17/07/2012 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3240,18/07/2012 4:00,17/07/2012 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-0276,18/07/2012 4:00,17/07/2012 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0800,17/07/2012 14:51,17/07/2012 10:20,2.1,200, Information Exposure,nan
CVE-2012-0801,17/07/2012 10:20,17/07/2012 10:20,7.5,20, Improper Input Validation,nan
CVE-2012-0799,17/07/2012 10:20,17/07/2012 10:20,4.3,200, Information Exposure,nan
CVE-2012-0798,17/07/2012 10:20,17/07/2012 10:20,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-4027,17/07/2012 4:00,16/07/2012 20:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3842,17/07/2012 4:00,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3838,17/07/2012 4:00,3/07/2012 22:55,5.0,200, Information Exposure,nan
CVE-2012-3837,17/07/2012 4:00,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3836,17/07/2012 4:00,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3832,17/07/2012 4:00,3/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3829,17/07/2012 4:00,3/07/2012 22:55,5.0,200, Information Exposure,nan
CVE-2012-3585,17/07/2012 4:00,5/07/2012 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2640,17/07/2012 4:00,5/07/2012 17:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-2607,17/07/2012 4:00,16/07/2012 20:49,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2560,17/07/2012 4:00,5/07/2012 3:23,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2559,17/07/2012 4:00,5/07/2012 3:23,10.0,399, Resource Management Errors,nan
CVE-2012-2516,17/07/2012 4:00,5/07/2012 3:23,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-2515,17/07/2012 4:00,5/07/2012 3:23,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1832,17/07/2012 4:00,5/07/2012 3:23,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1831,17/07/2012 4:00,5/07/2012 3:23,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1830,17/07/2012 4:00,5/07/2012 3:23,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0833,17/07/2012 4:00,3/07/2012 16:40,2.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0302,17/07/2012 4:00,5/07/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0300,17/07/2012 4:00,5/07/2012 17:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-5096,17/07/2012 4:00,3/07/2012 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4298,17/07/2012 4:00,11/07/2012 10:26,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4029,17/07/2012 4:00,3/07/2012 19:55,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-4028,17/07/2012 4:00,3/07/2012 19:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-4279,16/07/2012 13:23,16/07/2012 10:28,5.0,200, Information Exposure,nan
CVE-2011-4297,16/07/2012 10:28,16/07/2012 10:28,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-4296,16/07/2012 10:28,16/07/2012 10:28,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4295,16/07/2012 10:28,16/07/2012 10:28,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4294,16/07/2012 10:28,16/07/2012 10:28,5.8,20, Improper Input Validation,nan
CVE-2011-4293,16/07/2012 10:28,16/07/2012 10:28,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-4292,16/07/2012 10:28,16/07/2012 10:28,4.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4290,16/07/2012 10:28,16/07/2012 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4289,16/07/2012 10:28,16/07/2012 10:28,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4288,16/07/2012 10:28,16/07/2012 10:28,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4287,16/07/2012 10:28,16/07/2012 10:28,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4286,16/07/2012 10:28,16/07/2012 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4285,16/07/2012 10:28,16/07/2012 10:28,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4284,16/07/2012 10:28,16/07/2012 10:28,5.0,200, Information Exposure,nan
CVE-2011-4283,16/07/2012 10:28,16/07/2012 10:28,5.0,200, Information Exposure,nan
CVE-2011-4282,16/07/2012 10:28,16/07/2012 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4281,16/07/2012 10:28,16/07/2012 10:28,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4280,16/07/2012 10:28,16/07/2012 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4278,16/07/2012 10:28,16/07/2012 10:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4133,16/07/2012 10:28,16/07/2012 10:28,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-3881,16/07/2012 4:00,12/07/2012 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2279,16/07/2012 4:00,13/07/2012 21:55,6.4,20, Improper Input Validation,nan
CVE-2012-2278,16/07/2012 4:00,13/07/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1661,16/07/2012 4:00,12/07/2012 21:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1163,16/07/2012 4:00,12/07/2012 20:55,6.8,189, Numeric Errors,nan
CVE-2012-1037,16/07/2012 4:00,12/07/2012 20:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4305,16/07/2012 4:00,11/07/2012 10:26,4.0,189, Numeric Errors,nan
CVE-2011-4303,16/07/2012 4:00,11/07/2012 10:26,4.3,310, Cryptographic Issues,nan
CVE-2012-1162,13/07/2012 14:50,12/07/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-3076,12/07/2012 10:34,12/07/2012 10:34,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2012-3075,12/07/2012 10:34,12/07/2012 10:34,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-4309,12/07/2012 4:00,11/07/2012 10:26,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4304,11/07/2012 17:23,11/07/2012 10:26,4.0,200, Information Exposure,nan
CVE-2011-4307,11/07/2012 10:26,11/07/2012 10:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4306,11/07/2012 10:26,11/07/2012 10:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4302,11/07/2012 10:26,11/07/2012 10:26,6.8,20, Improper Input Validation,nan
CVE-2011-4300,11/07/2012 10:26,11/07/2012 10:26,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4299,11/07/2012 10:26,11/07/2012 10:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2447,10/07/2012 14:10,9/07/2012 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2446,10/07/2012 14:05,9/07/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1445,10/07/2012 4:28,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0716,10/07/2012 4:27,20/06/2012 10:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3238,10/07/2012 4:00,9/07/2012 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2970,10/07/2012 4:00,9/07/2012 22:55,7.8,399, Resource Management Errors,nan
CVE-2012-2138,10/07/2012 4:00,9/07/2012 22:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1493,10/07/2012 4:00,9/07/2012 22:55,7.8,255, Credentials Management,nan
CVE-2012-2644,9/07/2012 14:28,7/07/2012 10:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3372,9/07/2012 10:20,9/07/2012 10:20,5.8,310, Cryptographic Issues,nan
CVE-2012-2643,9/07/2012 4:00,7/07/2012 10:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2642,9/07/2012 4:00,7/07/2012 10:21,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0303,6/07/2012 14:14,5/07/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0301,6/07/2012 14:05,5/07/2012 17:55,5.4,287, Improper Authentication,nan
CVE-2012-2641,6/07/2012 4:00,5/07/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3368,4/07/2012 4:00,3/07/2012 21:55,2.6,189, Numeric Errors,nan
CVE-2011-4415,3/07/2012 4:04,8/11/2011 11:55,1.2,20, Improper Input Validation,nan
CVE-2011-3379,3/07/2012 4:02,3/11/2011 15:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4839,3/07/2012 4:00,6/05/2010 12:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4838,3/07/2012 4:00,6/05/2010 12:47,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4837,3/07/2012 4:00,6/05/2010 12:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6156,3/07/2012 4:00,29/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3325,3/07/2012 4:00,27/10/2005 10:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-3818,2/07/2012 12:36,29/06/2012 17:55,2.1,310, Cryptographic Issues,nan
CVE-2012-3232,2/07/2012 12:22,29/06/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0323,2/07/2012 4:00,9/03/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0489,2/07/2012 4:00,9/02/2009 20:30,2.1,16, Configuration,nan
CVE-2012-2827,29/06/2012 4:00,27/06/2012 10:18,7.5,399, Resource Management Errors,nan
CVE-2011-4957,28/06/2012 12:57,27/06/2012 21:55,5.0,20, Improper Input Validation,nan
CVE-2012-3814,28/06/2012 4:00,27/06/2012 21:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3231,28/06/2012 4:00,27/06/2012 22:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2603,28/06/2012 4:00,8/06/2012 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1253,28/06/2012 4:00,4/06/2012 15:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4956,28/06/2012 4:00,27/06/2012 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3488,28/06/2012 4:00,16/09/2011 14:28,10.0,399, Resource Management Errors,nan
CVE-2011-2496,28/06/2012 4:00,13/06/2012 10:24,4.9,189, Numeric Errors,nan
CVE-2012-2340,28/06/2012 3:43,21/05/2012 20:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-2719,27/06/2012 16:51,27/06/2012 0:55,5.1,264, Permissions Privileges and Access Controls,nan
CVE-2012-3798,27/06/2012 4:00,27/06/2012 0:55,5.0,200, Information Exposure,nan
CVE-2012-3587,26/06/2012 4:00,19/06/2012 20:55,2.6,20, Improper Input Validation,nan
CVE-2012-0954,26/06/2012 4:00,19/06/2012 20:55,2.6,20, Improper Input Validation,nan
CVE-2012-0950,26/06/2012 4:00,19/06/2012 20:55,5.0,200, Information Exposure,nan
CVE-2011-1160,26/06/2012 4:00,21/06/2012 23:55,2.1,200, Information Exposure,nan
CVE-2011-0006,26/06/2012 4:00,21/06/2012 23:55,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-4250,26/06/2012 4:00,21/06/2012 23:55,4.9,399, Resource Management Errors,nan
CVE-2009-0695,26/06/2012 4:00,19/06/2012 20:55,7.5,287, Improper Authentication,nan
CVE-2001-1247,25/06/2012 4:00,6/12/2001 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2012-0028,22/06/2012 19:27,21/06/2012 23:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-4650,22/06/2012 15:24,21/06/2012 23:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1479,22/06/2012 4:00,21/06/2012 23:55,4.7,399, Resource Management Errors,nan
CVE-2011-1021,22/06/2012 4:00,21/06/2012 23:55,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3790,21/06/2012 4:00,20/06/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2495,21/06/2012 4:00,20/06/2012 20:55,4.3,20, Improper Input Validation,nan
CVE-2012-2494,21/06/2012 4:00,20/06/2012 20:55,4.3,20, Improper Input Validation,nan
CVE-2012-2493,21/06/2012 4:00,20/06/2012 20:55,9.3,20, Improper Input Validation,nan
CVE-2012-0717,21/06/2012 4:00,20/06/2012 10:27,2.6,287, Improper Authentication,nan
CVE-2011-5095,21/06/2012 4:00,20/06/2012 17:55,4.0,310, Cryptographic Issues,nan
CVE-2012-2638,20/06/2012 4:00,19/06/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2637,20/06/2012 4:00,19/06/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2636,20/06/2012 4:00,19/06/2012 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0802,20/06/2012 4:00,19/06/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3494,20/06/2012 4:00,16/09/2011 14:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0693,20/06/2012 4:00,19/06/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3671,19/06/2012 4:00,18/06/2012 19:55,7.5,399, Resource Management Errors,nan
CVE-2010-4337,19/06/2012 3:35,14/01/2011 23:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-2635,18/06/2012 4:00,15/06/2012 19:55,4.3,200, Information Exposure,nan
CVE-2012-2634,18/06/2012 4:00,15/06/2012 19:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2631,15/06/2012 14:55,15/06/2012 14:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-3557,15/06/2012 13:45,14/06/2012 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-3556,15/06/2012 13:39,14/06/2012 19:55,9.3,20, Improper Input Validation,nan
CVE-2012-3560,15/06/2012 4:00,14/06/2012 19:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-3558,15/06/2012 4:00,14/06/2012 19:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2012-3289,15/06/2012 4:00,14/06/2012 20:55,7.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3124,15/06/2012 4:00,10/08/2011 20:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-3123,15/06/2012 4:00,10/08/2011 20:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-2899,15/06/2012 4:00,31/08/2011 23:55,5.1,20, Improper Input Validation,nan
CVE-2011-2561,15/06/2012 4:00,29/08/2011 15:55,7.1,399, Resource Management Errors,nan
CVE-2011-2560,15/06/2012 4:00,29/08/2011 15:55,7.8,399, Resource Management Errors,nan
CVE-2011-1768,15/06/2012 4:00,13/06/2012 10:24,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1643,15/06/2012 4:00,29/08/2011 15:55,10.0,200, Information Exposure,nan
CVE-2010-0933,15/06/2012 4:00,5/03/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-7244,15/06/2012 4:00,31/08/2011 23:55,5.0,399, Resource Management Errors,nan
CVE-2012-3287,14/06/2012 4:00,13/06/2012 19:55,5.0,310, Cryptographic Issues,nan
CVE-2011-2545,14/06/2012 4:00,13/06/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2183,14/06/2012 4:00,13/06/2012 10:24,4.0,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1759,14/06/2012 4:00,13/06/2012 10:24,6.2,189, Numeric Errors,nan
CVE-2011-2211,13/06/2012 16:15,13/06/2012 10:24,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2012-2606,13/06/2012 15:55,13/06/2012 15:55,5.0,287, Improper Authentication,nan
CVE-2012-2605,13/06/2012 15:55,13/06/2012 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2604,13/06/2012 15:55,13/06/2012 15:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2209,13/06/2012 15:14,13/06/2012 10:24,2.1,189, Numeric Errors,nan
CVE-2011-2210,13/06/2012 10:24,13/06/2012 10:24,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-2208,13/06/2012 10:24,13/06/2012 10:24,2.1,189, Numeric Errors,nan
CVE-2012-2041,13/06/2012 4:46,13/06/2012 4:46,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-3003,12/06/2012 4:00,8/06/2012 18:55,5.8,20, Improper Input Validation,nan
CVE-2012-2959,12/06/2012 4:00,11/06/2012 23:55,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-2598,12/06/2012 4:00,8/06/2012 18:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2597,12/06/2012 4:00,8/06/2012 18:55,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-2596,12/06/2012 4:00,8/06/2012 18:55,5.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2595,12/06/2012 4:00,8/06/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1825,12/06/2012 4:00,11/06/2012 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1012,12/06/2012 4:00,7/06/2012 19:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-3343,11/06/2012 4:00,9/06/2012 0:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1236,9/06/2012 3:41,19/03/2012 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4237,9/06/2012 3:38,3/05/2012 10:11,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3317,9/06/2012 3:36,2/05/2012 10:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3293,9/06/2012 3:36,2/05/2012 10:09,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3898,9/06/2012 3:14,24/11/2009 17:30,4.9,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5540,7/06/2012 21:14,18/10/2007 0:17,7.5,20, Improper Input Validation,nan
CVE-2008-1082,7/06/2012 18:06,29/02/2008 2:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1081,7/06/2012 18:02,29/02/2008 2:44,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1080,7/06/2012 17:58,29/02/2008 2:44,6.8,20, Improper Input Validation,nan
CVE-2008-5682,7/06/2012 17:22,19/12/2008 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2070,7/06/2012 16:12,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2012-1255,6/06/2012 15:14,4/06/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-2630,6/06/2012 4:00,4/06/2012 15:55,4.3,255, Credentials Management,nan
CVE-2012-1254,6/06/2012 4:00,4/06/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5093,5/06/2012 16:34,4/06/2012 19:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-5092,5/06/2012 16:31,4/06/2012 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1252,5/06/2012 4:00,4/06/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3493,4/06/2012 4:00,16/09/2011 14:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3714,1/06/2012 3:33,25/10/2010 20:01,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-3779,31/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3772,31/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2010-2491,31/05/2012 4:00,24/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-2949,30/05/2012 4:00,29/05/2012 19:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4019,30/05/2012 4:00,3/05/2012 10:11,5.4,399, Resource Management Errors,nan
CVE-2012-0675,30/05/2012 3:42,11/05/2012 3:49,4.3,287, Improper Authentication,nan
CVE-2012-0662,30/05/2012 3:42,11/05/2012 3:49,7.5,189, Numeric Errors,nan
CVE-2012-0660,30/05/2012 3:42,11/05/2012 3:49,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0659,30/05/2012 3:42,11/05/2012 3:49,6.8,189, Numeric Errors,nan
CVE-2012-0658,30/05/2012 3:42,11/05/2012 3:49,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0657,30/05/2012 3:42,11/05/2012 3:49,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-4232,30/05/2012 3:40,3/05/2012 10:11,5.0,200, Information Exposure,nan
CVE-2011-2906,30/05/2012 3:37,24/05/2012 23:55,4.9,189, Numeric Errors,nan
CVE-2012-2435,29/05/2012 4:00,27/05/2012 20:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4080,29/05/2012 4:00,24/05/2012 23:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3363,29/05/2012 4:00,24/05/2012 23:55,5.4,20, Improper Input Validation,nan
CVE-2011-3359,29/05/2012 4:00,24/05/2012 23:55,5.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2918,29/05/2012 4:00,24/05/2012 23:55,4.9,399, Resource Management Errors,nan
CVE-2011-2898,29/05/2012 4:00,24/05/2012 23:55,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-2707,29/05/2012 4:00,24/05/2012 23:55,4.9,20, Improper Input Validation,nan
CVE-2012-2429,28/05/2012 4:00,25/05/2012 19:55,10.0,189, Numeric Errors,nan
CVE-2012-2428,28/05/2012 4:00,25/05/2012 19:55,10.0,189, Numeric Errors,nan
CVE-2012-2427,28/05/2012 4:00,25/05/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-2426,28/05/2012 4:00,25/05/2012 19:55,7.8,399, Resource Management Errors,nan
CVE-2012-2235,28/05/2012 4:00,27/05/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1792,28/05/2012 4:00,27/05/2012 19:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1413,28/05/2012 4:00,27/05/2012 19:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3353,25/05/2012 4:00,24/05/2012 23:55,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3191,25/05/2012 4:00,24/05/2012 23:55,10.0,189, Numeric Errors,nan
CVE-2011-2521,25/05/2012 4:00,24/05/2012 23:55,4.9,189, Numeric Errors,nan
CVE-2012-2338,22/05/2012 17:25,21/05/2012 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0296,22/05/2012 16:37,21/05/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2674,22/05/2012 4:00,2/10/2011 2:53,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2012-2120,21/05/2012 16:24,18/05/2012 22:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3856,21/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3855,21/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3853,21/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3852,21/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3851,21/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3826,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3825,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3824,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3823,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3822,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3821,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3820,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3819,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3818,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3817,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3816,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3815,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3813,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3812,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3811,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3810,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3809,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3808,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3807,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3806,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3805,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3804,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3803,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3802,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3801,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3800,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3799,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3797,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3796,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3795,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3794,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3793,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3792,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3791,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3790,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3789,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3788,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3787,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3786,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3785,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3784,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3783,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3782,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3781,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3780,21/05/2012 4:00,24/09/2011 0:55,5.0,200, Information Exposure,nan
CVE-2011-3694,21/05/2012 4:00,27/09/2011 19:55,5.0,200, Information Exposure,nan
CVE-2011-3693,21/05/2012 4:00,27/09/2011 19:55,1.9,310, Cryptographic Issues,nan
CVE-2011-3692,21/05/2012 4:00,27/09/2011 19:55,1.9,310, Cryptographic Issues,nan
CVE-2011-3689,21/05/2012 4:00,27/09/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3686,21/05/2012 4:00,27/09/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3685,21/05/2012 4:00,27/09/2011 19:55,1.9,310, Cryptographic Issues,nan
CVE-2011-3684,21/05/2012 4:00,27/09/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4842,21/05/2012 4:00,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4841,21/05/2012 4:00,27/09/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4840,21/05/2012 4:00,27/09/2011 19:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3865,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3864,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3863,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3861,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3859,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3858,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3857,18/05/2012 4:00,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3371,18/05/2012 4:00,2/10/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3362,18/05/2012 4:00,2/10/2011 20:55,6.8,189, Numeric Errors,nan
CVE-2011-3010,18/05/2012 4:00,30/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0944,18/05/2012 4:00,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-3460,18/05/2012 3:43,2/02/2012 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3459,18/05/2012 3:43,2/02/2012 18:55,6.8,189, Numeric Errors,nan
CVE-2011-3458,18/05/2012 3:43,2/02/2012 18:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-0207,17/05/2012 16:45,17/05/2012 11:00,7.8,399, Resource Management Errors,nan
CVE-2012-0038,17/05/2012 15:54,17/05/2012 11:00,4.9,189, Numeric Errors,nan
CVE-2011-4611,17/05/2012 14:43,17/05/2012 11:00,4.9,189, Numeric Errors,nan
CVE-2011-4097,17/05/2012 13:46,17/05/2012 11:00,4.9,189, Numeric Errors,nan
CVE-2011-3637,17/05/2012 11:00,17/05/2012 11:00,4.9,20, Improper Input Validation,nan
CVE-2011-3288,14/05/2012 4:00,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3287,14/05/2012 4:00,6/10/2011 10:55,7.8,399, Resource Management Errors,nan
CVE-2011-3275,14/05/2012 4:00,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-3273,14/05/2012 4:00,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-2662,14/05/2012 4:00,8/10/2011 2:52,10.0,189, Numeric Errors,nan
CVE-2011-2661,14/05/2012 4:00,8/10/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2190,14/05/2012 4:00,7/10/2011 2:51,2.1,310, Cryptographic Issues,nan
CVE-2011-2059,14/05/2012 4:00,22/10/2011 2:59,5.0,200, Information Exposure,nan
CVE-2011-2058,14/05/2012 4:00,22/10/2011 2:59,7.8,399, Resource Management Errors,nan
CVE-2011-2057,14/05/2012 4:00,22/10/2011 2:59,7.8,399, Resource Management Errors,nan
CVE-2011-2042,14/05/2012 4:00,22/10/2011 2:59,5.0,200, Information Exposure,nan
CVE-2011-1640,14/05/2012 4:00,22/10/2011 2:59,7.8,399, Resource Management Errors,nan
CVE-2011-1221,14/05/2012 4:00,4/10/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1159,14/05/2012 4:00,5/10/2011 2:56,2.1,20, Improper Input Validation,nan
CVE-2011-0946,14/05/2012 4:00,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-0945,14/05/2012 4:00,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-0459,14/05/2012 4:00,5/10/2011 2:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0334,14/05/2012 4:00,8/10/2011 2:52,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0333,14/05/2012 4:00,8/10/2011 2:52,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4966,14/05/2012 4:00,21/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4965,14/05/2012 4:00,16/10/2011 18:55,9.0,255, Credentials Management,nan
CVE-2010-4964,14/05/2012 4:00,16/10/2011 18:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4951,14/05/2012 4:00,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4950,14/05/2012 4:00,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4948,14/05/2012 4:00,9/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4947,14/05/2012 4:00,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4946,14/05/2012 4:00,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4943,14/05/2012 4:00,9/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4939,14/05/2012 4:00,9/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4938,14/05/2012 4:00,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4935,14/05/2012 4:00,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4934,14/05/2012 4:00,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4932,14/05/2012 4:00,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4931,14/05/2012 4:00,9/10/2011 10:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4929,14/05/2012 4:00,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4924,14/05/2012 4:00,9/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4905,14/05/2012 4:00,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4904,14/05/2012 4:00,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4898,14/05/2012 4:00,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4892,14/05/2012 4:00,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4891,14/05/2012 4:00,7/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4890,14/05/2012 4:00,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4888,14/05/2012 4:00,7/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4887,14/05/2012 4:00,7/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4886,14/05/2012 4:00,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4885,14/05/2012 4:00,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4879,14/05/2012 4:00,7/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4878,14/05/2012 4:00,7/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4856,14/05/2012 4:00,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5103,14/05/2012 4:00,21/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5102,14/05/2012 4:00,21/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7302,14/05/2012 4:00,5/10/2011 2:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7300,14/05/2012 4:00,5/10/2011 2:56,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4777,13/05/2012 4:00,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4772,13/05/2012 4:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4771,13/05/2012 4:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4770,13/05/2012 4:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4769,13/05/2012 4:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4703,13/05/2012 4:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4170,13/05/2012 4:00,23/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2060,13/05/2012 4:00,22/10/2011 2:59,4.9,399, Resource Management Errors,nan
CVE-2011-3212,12/05/2012 3:40,14/10/2011 10:55,2.1,310, Cryptographic Issues,nan
CVE-2011-1566,12/05/2012 3:37,5/04/2011 15:19,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1004,12/05/2012 3:36,2/03/2011 20:00,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0241,12/05/2012 3:34,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0337,11/05/2012 4:00,2/05/2012 10:09,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4231,11/05/2012 4:00,3/05/2012 10:11,6.3,20, Improper Input Validation,nan
CVE-2011-4022,11/05/2012 4:00,3/05/2012 10:11,5.0,287, Improper Authentication,nan
CVE-2012-0685,10/05/2012 4:00,9/05/2012 10:33,9.3,189, Numeric Errors,nan
CVE-2012-0684,10/05/2012 4:00,9/05/2012 10:33,9.3,189, Numeric Errors,nan
CVE-2012-0378,10/05/2012 4:00,3/05/2012 20:55,7.8,189, Numeric Errors,nan
CVE-2012-0674,8/05/2012 10:25,8/05/2012 10:25,4.3,20, Improper Input Validation,nan
CVE-2012-2213,30/04/2012 17:58,28/04/2012 10:06,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0269,30/04/2012 4:00,27/04/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2386,27/04/2012 4:00,8/06/2011 10:36,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1584,27/04/2012 4:00,8/06/2011 10:36,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1169,27/04/2012 4:00,3/05/2011 19:55,6.9,20, Improper Input Validation,nan
CVE-2009-5076,27/04/2012 4:00,8/06/2011 10:36,7.5,287, Improper Authentication,nan
CVE-2011-2468,25/04/2012 4:00,9/06/2011 2:38,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-5085,25/04/2012 4:00,12/08/2011 17:55,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-5084,25/04/2012 4:00,12/08/2011 17:55,1.9,310, Cryptographic Issues,nan
CVE-2009-5077,25/04/2012 4:00,8/06/2011 15:55,7.5,287, Improper Authentication,nan
CVE-2012-0693,23/04/2012 4:00,14/01/2012 3:57,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-2236,20/04/2012 10:55,20/04/2012 10:55,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5086,20/04/2012 4:00,18/04/2012 10:33,6.8,20, Improper Input Validation,nan
CVE-2011-4871,20/04/2012 4:00,18/04/2012 10:33,5.0,20, Improper Input Validation,nan
CVE-2011-1528,20/04/2012 4:00,20/10/2011 21:55,7.8,20, Improper Input Validation,nan
CVE-2011-4700,19/04/2012 4:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2478,18/04/2012 4:00,17/04/2012 18:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1779,16/04/2012 14:36,13/04/2012 20:55,7.5,399, Resource Management Errors,nan
CVE-2012-1809,16/04/2012 13:59,13/04/2012 17:55,5.0,399, Resource Management Errors,nan
CVE-2012-1807,16/04/2012 13:53,13/04/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4330,16/04/2012 4:00,27/01/2012 15:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1748,16/04/2012 4:00,9/05/2011 22:55,4.9,20, Improper Input Validation,nan
CVE-2010-4666,16/04/2012 4:00,13/04/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4883,13/04/2012 13:27,13/04/2012 10:41,5.0,20, Improper Input Validation,nan
CVE-2011-4882,13/04/2012 13:26,13/04/2012 10:41,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4880,13/04/2012 10:41,13/04/2012 10:41,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1451,13/04/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1441,13/04/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1436,13/04/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1434,13/04/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1432,13/04/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1430,13/04/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3846,12/04/2012 10:45,12/04/2012 10:45,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2903,12/04/2012 4:00,15/09/2009 22:30,7.1,399, Resource Management Errors,nan
CVE-2008-7311,12/04/2012 4:00,5/04/2012 13:25,5.0,255, Credentials Management,nan
CVE-2008-7309,12/04/2012 4:00,5/04/2012 13:25,5.0,255, Credentials Management,nan
CVE-2012-1036,11/04/2012 10:39,11/04/2012 10:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1030,11/04/2012 10:39,11/04/2012 10:39,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1239,9/04/2012 4:00,6/04/2012 19:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4004,6/04/2012 4:00,27/10/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3319,6/04/2012 4:00,27/10/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3318,6/04/2012 4:00,27/10/2011 21:55,7.8,399, Resource Management Errors,nan
CVE-2008-7270,6/04/2012 3:07,6/12/2010 22:30,4.3,310, Cryptographic Issues,nan
CVE-2012-2054,5/04/2012 14:55,5/04/2012 14:55,5.0,255, Credentials Management,nan
CVE-2008-7310,5/04/2012 13:25,5/04/2012 13:25,5.0,255, Credentials Management,nan
CVE-2012-1907,5/04/2012 4:00,28/03/2012 10:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0222,3/04/2012 4:00,2/04/2012 18:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0221,3/04/2012 4:00,2/04/2012 18:55,5.0,20, Improper Input Validation,nan
CVE-2011-4535,3/04/2012 4:00,3/04/2012 3:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4045,3/04/2012 4:00,3/04/2012 3:44,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4043,3/04/2012 4:00,3/04/2012 3:44,9.3,189, Numeric Errors,nan
CVE-2011-1417,30/03/2012 4:00,11/03/2011 17:55,6.8,189, Numeric Errors,nan
CVE-2010-1181,30/03/2012 4:00,29/03/2010 19:30,4.3,20, Improper Input Validation,nan
CVE-2009-1702,30/03/2012 4:00,10/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1700,30/03/2012 4:00,10/06/2009 18:00,4.3,200, Information Exposure,nan
CVE-2009-1680,30/03/2012 4:00,19/06/2009 16:30,2.1,200, Information Exposure,nan
CVE-2007-6752,28/03/2012 16:30,28/03/2012 10:54,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1438,27/03/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1431,27/03/2012 4:00,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1265,23/03/2012 4:00,8/04/2009 1:30,5.0,189, Numeric Errors,nan
CVE-2011-1173,22/03/2012 4:00,22/06/2011 22:55,5.0,200, Information Exposure,nan
CVE-2012-1440,21/03/2012 10:11,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1435,21/03/2012 10:11,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1433,21/03/2012 10:11,21/03/2012 10:11,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-1256,21/03/2012 3:54,22/02/2012 13:54,5.0,287, Improper Authentication,nan
CVE-2012-0764,21/03/2012 3:53,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5083,20/03/2012 13:17,19/03/2012 18:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2012-1782,20/03/2012 4:00,19/03/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3088,20/03/2012 4:00,8/09/2009 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5086,19/03/2012 23:19,19/03/2012 18:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2700,19/03/2012 4:00,6/09/2011 15:55,2.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2695,19/03/2012 4:00,28/07/2011 22:55,4.9,189, Numeric Errors,nan
CVE-2011-2534,19/03/2012 4:00,22/06/2011 23:55,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2497,19/03/2012 4:00,29/08/2011 18:55,8.3,189, Numeric Errors,nan
CVE-2011-2203,19/03/2012 4:00,27/01/2012 15:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1770,19/03/2012 4:00,24/06/2011 20:55,7.8,189, Numeric Errors,nan
CVE-2011-1747,19/03/2012 4:00,9/05/2011 19:55,4.7,399, Resource Management Errors,nan
CVE-2011-1598,19/03/2012 4:00,9/05/2011 22:55,4.9,20, Improper Input Validation,nan
CVE-2011-1581,19/03/2012 4:00,26/05/2011 16:55,4.6,20, Improper Input Validation,nan
CVE-2011-1162,19/03/2012 4:00,27/01/2012 15:55,2.1,200, Information Exposure,nan
CVE-2011-1082,19/03/2012 4:00,4/04/2011 12:27,4.9,399, Resource Management Errors,nan
CVE-2011-0463,19/03/2012 4:00,10/04/2011 2:51,2.1,20, Improper Input Validation,nan
CVE-2010-4805,19/03/2012 4:00,26/05/2011 16:55,6.1,399, Resource Management Errors,nan
CVE-2010-4656,19/03/2012 4:00,18/07/2011 19:55,6.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4565,19/03/2012 4:00,29/12/2010 18:00,2.1,200, Information Exposure,nan
CVE-2010-4529,19/03/2012 4:00,13/01/2011 19:00,2.1,189, Numeric Errors,nan
CVE-2010-4527,19/03/2012 4:00,13/01/2011 19:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4342,19/03/2012 4:00,30/12/2010 19:00,7.1,399, Resource Management Errors,nan
CVE-2010-4256,19/03/2012 4:00,25/01/2011 19:00,4.9,20, Improper Input Validation,nan
CVE-2010-4165,19/03/2012 4:00,22/11/2010 13:00,4.9,189, Numeric Errors,nan
CVE-2010-4164,19/03/2012 4:00,3/01/2011 20:00,7.8,189, Numeric Errors,nan
CVE-2010-4163,19/03/2012 4:00,3/01/2011 20:00,4.7,399, Resource Management Errors,nan
CVE-2010-4162,19/03/2012 4:00,3/01/2011 20:00,4.7,189, Numeric Errors,nan
CVE-2010-4082,19/03/2012 4:00,30/11/2010 22:14,1.9,200, Information Exposure,nan
CVE-2010-4079,19/03/2012 4:00,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4078,19/03/2012 4:00,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4077,19/03/2012 4:00,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4076,19/03/2012 4:00,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-4074,19/03/2012 4:00,29/11/2010 16:00,1.9,200, Information Exposure,nan
CVE-2010-3881,19/03/2012 4:00,23/12/2010 18:00,1.9,200, Information Exposure,nan
CVE-2010-3875,19/03/2012 4:00,3/01/2011 20:00,1.9,200, Information Exposure,nan
CVE-2010-3874,19/03/2012 4:00,29/12/2010 18:00,4.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3861,19/03/2012 4:00,10/12/2010 19:00,2.1,200, Information Exposure,nan
CVE-2010-3850,19/03/2012 4:00,30/12/2010 19:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-3849,19/03/2012 4:00,30/12/2010 19:00,4.7,399, Resource Management Errors,nan
CVE-2010-3848,19/03/2012 4:00,30/12/2010 19:00,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3705,19/03/2012 4:00,26/11/2010 20:00,8.3,20, Improper Input Validation,nan
CVE-2010-3698,19/03/2012 4:00,26/11/2010 19:00,4.6,399, Resource Management Errors,nan
CVE-2010-3437,19/03/2012 4:00,4/10/2010 21:00,6.6,189, Numeric Errors,nan
CVE-2010-3298,19/03/2012 4:00,30/09/2010 15:00,4.9,200, Information Exposure,nan
CVE-2010-3297,19/03/2012 4:00,30/09/2010 15:00,2.1,200, Information Exposure,nan
CVE-2010-3080,19/03/2012 4:00,21/09/2010 18:00,4.9,399, Resource Management Errors,nan
CVE-2010-2963,19/03/2012 4:00,26/11/2010 19:00,6.2,20, Improper Input Validation,nan
CVE-2010-2962,19/03/2012 4:00,26/11/2010 19:00,7.2,20, Improper Input Validation,nan
CVE-2010-2959,19/03/2012 4:00,8/09/2010 20:00,7.2,189, Numeric Errors,nan
CVE-2010-2955,19/03/2012 4:00,8/09/2010 20:00,3.3,189, Numeric Errors,nan
CVE-2010-2803,19/03/2012 4:00,8/09/2010 20:00,1.9,200, Information Exposure,nan
CVE-2010-2653,19/03/2012 4:00,5/10/2010 18:00,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2538,19/03/2012 4:00,30/09/2010 15:00,4.7,189, Numeric Errors,nan
CVE-2010-2537,19/03/2012 4:00,30/09/2010 15:00,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2495,19/03/2012 4:00,8/09/2010 20:00,10.0,20, Improper Input Validation,nan
CVE-2010-2478,19/03/2012 4:00,29/09/2010 17:00,7.2,189, Numeric Errors,nan
CVE-2010-2219,19/03/2012 4:00,11/08/2010 18:47,5.0,399, Resource Management Errors,nan
CVE-2010-2217,19/03/2012 4:00,11/08/2010 18:47,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2071,19/03/2012 4:00,16/06/2010 20:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-1636,19/03/2012 4:00,8/06/2010 0:30,2.1,200, Information Exposure,nan
CVE-2010-1488,19/03/2012 4:00,20/04/2010 15:30,2.1,399, Resource Management Errors,nan
CVE-2010-1451,19/03/2012 4:00,7/05/2010 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0623,19/03/2012 4:00,15/02/2010 18:30,4.9,20, Improper Input Validation,nan
CVE-2009-4895,19/03/2012 4:00,8/09/2010 20:00,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-4131,19/03/2012 4:00,13/12/2009 1:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-3888,19/03/2012 4:00,16/11/2009 19:30,4.9,399, Resource Management Errors,nan
CVE-2009-3624,19/03/2012 4:00,2/11/2009 15:30,4.6,310, Cryptographic Issues,nan
CVE-2009-3623,19/03/2012 4:00,30/10/2009 20:30,7.8,287, Improper Authentication,nan
CVE-2009-3280,19/03/2012 4:00,21/09/2009 19:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3234,19/03/2012 4:00,17/09/2009 10:30,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3043,19/03/2012 4:00,2/09/2009 17:30,4.9,399, Resource Management Errors,nan
CVE-2009-2909,19/03/2012 4:00,20/10/2009 17:30,4.9,189, Numeric Errors,nan
CVE-2009-2844,19/03/2012 4:00,18/08/2009 21:00,7.8,399, Resource Management Errors,nan
CVE-2009-2287,19/03/2012 4:00,1/07/2009 13:00,4.9,20, Improper Input Validation,nan
CVE-2009-1961,19/03/2012 4:00,8/06/2009 1:00,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1184,19/03/2012 4:00,5/05/2009 20:30,4.4,16, Configuration,nan
CVE-2009-0835,19/03/2012 4:00,6/03/2009 11:30,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-0605,19/03/2012 4:00,17/02/2009 17:30,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0024,19/03/2012 4:00,13/01/2009 17:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6733,19/03/2012 4:00,16/03/2010 19:30,4.7,399, Resource Management Errors,nan
CVE-2006-4572,19/03/2012 4:00,7/11/2006 0:07,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3142,16/03/2012 4:00,16/08/2011 21:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3141,16/03/2012 4:00,16/08/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0404,15/03/2012 4:00,15/03/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0398,15/03/2012 4:00,15/03/2012 0:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1625,15/03/2012 4:00,18/08/2011 18:55,5.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1624,15/03/2012 4:00,18/08/2011 18:55,7.8,399, Resource Management Errors,nan
CVE-2012-0688,14/03/2012 4:00,13/03/2012 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0687,14/03/2012 4:00,13/03/2012 10:55,5.0,200, Information Exposure,nan
CVE-2012-0689,13/03/2012 17:33,13/03/2012 10:55,5.0,200, Information Exposure,nan
CVE-2012-0690,13/03/2012 10:55,13/03/2012 10:55,5.0,200, Information Exposure,nan
CVE-2012-1472,13/03/2012 4:00,13/03/2012 3:12,6.4,20, Improper Input Validation,nan
CVE-2011-3732,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3731,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3730,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3729,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3728,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3726,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3725,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3724,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3723,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3722,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3721,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3719,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3718,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3717,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3716,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3715,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3714,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3712,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3711,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3710,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3709,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3708,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3707,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3706,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3705,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3704,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3703,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3702,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3701,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3700,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3699,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3698,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3697,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3696,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3695,13/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2012-1545,12/03/2012 4:00,9/03/2012 11:55,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3759,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3758,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3757,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3756,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3754,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3753,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3752,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3751,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3750,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3749,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3748,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3747,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3746,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3745,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3744,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3743,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3742,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3741,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3740,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3739,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3738,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3737,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3736,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3735,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3734,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3733,12/03/2012 4:00,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3627,12/03/2012 4:00,17/11/2011 19:55,4.3,189, Numeric Errors,nan
CVE-2011-3616,12/03/2012 4:00,4/11/2011 21:55,6.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-2772,12/03/2012 4:00,15/11/2011 3:57,5.0,20, Improper Input Validation,nan
CVE-2011-4499,9/03/2012 5:00,22/11/2011 11:55,7.5,16, Configuration,nan
CVE-2011-4506,8/03/2012 5:00,22/11/2011 11:55,7.5,16, Configuration,nan
CVE-2011-4505,8/03/2012 5:00,22/11/2011 11:55,7.5,16, Configuration,nan
CVE-2011-4504,8/03/2012 5:00,22/11/2011 11:55,7.5,16, Configuration,nan
CVE-2011-4261,8/03/2012 5:00,24/11/2011 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4260,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4259,8/03/2012 5:00,24/11/2011 11:55,9.3,189, Numeric Errors,nan
CVE-2011-4258,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4257,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4256,8/03/2012 5:00,24/11/2011 11:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4254,8/03/2012 5:00,24/11/2011 11:55,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4252,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4251,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4249,8/03/2012 5:00,24/11/2011 11:55,10.0,20, Improper Input Validation,nan
CVE-2011-4248,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4247,8/03/2012 5:00,24/11/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4245,8/03/2012 5:00,24/11/2011 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4244,8/03/2012 5:00,24/11/2011 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4034,8/03/2012 5:00,2/12/2011 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5068,8/03/2012 5:00,7/12/2011 19:55,4.3,200, Information Exposure,nan
CVE-2002-2437,8/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0397,7/03/2012 5:00,6/03/2012 23:55,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4220,7/03/2012 5:00,1/11/2011 19:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-5072,7/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5071,7/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-5070,7/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4969,7/03/2012 5:00,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4690,6/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4689,6/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4687,6/03/2012 5:00,7/12/2011 19:55,5.0,399, Resource Management Errors,nan
CVE-2011-4685,6/03/2012 5:00,7/12/2011 19:55,5.0,20, Improper Input Validation,nan
CVE-2011-4684,6/03/2012 5:00,7/12/2011 19:55,10.0,310, Cryptographic Issues,nan
CVE-2011-4682,6/03/2012 5:00,7/12/2011 19:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-4681,6/03/2012 5:00,7/12/2011 19:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4803,5/03/2012 5:00,14/12/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4800,5/03/2012 5:00,14/12/2011 0:55,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4487,5/03/2012 5:00,1/03/2012 1:55,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4265,5/03/2012 5:00,8/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4264,5/03/2012 5:00,8/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4054,5/03/2012 5:00,8/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3636,5/03/2012 5:00,8/12/2011 11:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3179,5/03/2012 5:00,8/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-2653,5/03/2012 5:00,8/12/2011 11:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3443,2/03/2012 5:00,2/03/2012 0:55,7.5,399, Resource Management Errors,nan
CVE-2012-0367,1/03/2012 5:00,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2012-0366,1/03/2012 5:00,1/03/2012 1:55,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-0331,1/03/2012 5:00,1/03/2012 1:55,7.5,399, Resource Management Errors,nan
CVE-2012-0330,1/03/2012 5:00,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2011-4486,1/03/2012 5:00,1/03/2012 1:55,7.8,399, Resource Management Errors,nan
CVE-2012-1410,29/02/2012 11:55,29/02/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1087,29/02/2012 5:00,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1086,29/02/2012 5:00,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1083,29/02/2012 5:00,14/02/2012 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1082,29/02/2012 5:00,14/02/2012 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1081,29/02/2012 5:00,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1080,29/02/2012 5:00,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5079,29/02/2012 5:00,14/02/2012 17:55,5.8,20, Improper Input Validation,nan
CVE-2011-4865,29/02/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4864,29/02/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4614,29/02/2012 5:00,18/02/2012 0:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4320,29/02/2012 5:00,18/02/2012 0:55,4.0,399, Resource Management Errors,nan
CVE-2011-4217,29/02/2012 5:00,1/11/2011 19:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1915,29/02/2012 5:00,1/11/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0941,29/02/2012 5:00,1/11/2011 19:55,7.8,399, Resource Management Errors,nan
CVE-2009-1754,29/02/2012 5:00,26/05/2009 15:30,4.3,287, Improper Authentication,nan
CVE-2012-1288,27/02/2012 5:00,23/02/2012 12:33,10.0,255, Credentials Management,nan
CVE-2012-1047,25/02/2012 4:21,12/02/2012 22:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0926,25/02/2012 4:21,8/02/2012 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0924,25/02/2012 4:21,8/02/2012 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0923,25/02/2012 4:21,8/02/2012 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-0839,25/02/2012 4:21,8/02/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2012-0834,25/02/2012 4:21,11/02/2012 2:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0766,25/02/2012 4:21,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1208,24/02/2012 13:55,24/02/2012 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1205,24/02/2012 13:55,24/02/2012 13:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2012-1000,24/02/2012 13:55,24/02/2012 13:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0999,24/02/2012 13:55,24/02/2012 13:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0998,24/02/2012 13:55,24/02/2012 13:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-0997,24/02/2012 13:55,24/02/2012 13:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0996,24/02/2012 13:55,24/02/2012 13:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1290,24/02/2012 5:00,23/02/2012 20:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1227,24/02/2012 5:00,21/02/2012 13:31,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1225,24/02/2012 5:00,21/02/2012 13:31,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1216,24/02/2012 5:00,21/02/2012 13:31,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0873,24/02/2012 5:00,23/02/2012 20:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4187,24/02/2012 5:00,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1235,23/02/2012 5:00,21/02/2012 13:31,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-1234,23/02/2012 5:00,21/02/2012 13:31,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1914,23/02/2012 5:00,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1224,22/02/2012 5:00,21/02/2012 13:31,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4186,22/02/2012 5:00,21/02/2012 13:31,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4185,22/02/2012 5:00,21/02/2012 13:31,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1191,20/02/2012 5:00,17/02/2012 22:55,6.4,20, Improper Input Validation,nan
CVE-2012-0352,17/02/2012 5:00,16/02/2012 21:55,7.8,399, Resource Management Errors,nan
CVE-2011-5010,17/02/2012 4:10,25/12/2011 1:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-5006,17/02/2012 4:10,25/12/2011 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-5002,17/02/2012 4:10,25/12/2011 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4329,17/02/2012 4:10,28/11/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2740,17/02/2012 4:08,9/11/2011 23:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2012-0763,16/02/2012 5:00,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0760,16/02/2012 5:00,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0758,16/02/2012 5:00,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0757,16/02/2012 5:00,15/02/2012 1:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4872,16/02/2012 5:00,5/02/2012 11:55,2.6,200, Information Exposure,nan
CVE-2011-3375,16/02/2012 4:16,19/01/2012 4:01,5.0,200, Information Exposure,nan
CVE-2011-2720,16/02/2012 4:15,5/08/2011 21:55,5.0,200, Information Exposure,nan
CVE-2010-2543,16/02/2012 4:05,23/08/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2092,16/02/2012 4:04,27/05/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1645,16/02/2012 4:03,23/08/2010 22:00,6.5,20, Improper Input Validation,nan
CVE-2010-1644,16/02/2012 4:03,23/08/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1431,16/02/2012 4:02,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1070,15/02/2012 18:18,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1077,15/02/2012 5:00,14/02/2012 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5080,15/02/2012 5:00,14/02/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5084,15/02/2012 5:00,14/02/2012 20:55,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3442,15/02/2012 4:10,11/11/2011 18:55,7.2,399, Resource Management Errors,nan
CVE-2011-2449,15/02/2012 4:08,8/11/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2448,15/02/2012 4:08,8/11/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2447,15/02/2012 4:08,8/11/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2446,15/02/2012 4:08,8/11/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1060,14/02/2012 5:00,14/02/2012 0:55,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4039,14/02/2012 5:00,10/02/2012 19:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-4038,14/02/2012 5:00,10/02/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4973,14/02/2012 5:00,1/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1034,14/02/2012 4:11,8/02/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4432,14/02/2012 4:09,10/11/2011 0:55,5.0,310, Cryptographic Issues,nan
CVE-2011-4431,14/02/2012 4:09,10/11/2011 0:55,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4156,14/02/2012 4:09,16/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4155,14/02/2012 4:09,16/11/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3688,14/02/2012 4:09,27/09/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3687,14/02/2012 4:09,27/09/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3645,14/02/2012 4:08,27/09/2011 19:55,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3497,14/02/2012 4:08,16/09/2011 17:26,10.0,200, Information Exposure,nan
CVE-2011-3496,14/02/2012 4:08,16/09/2011 17:26,10.0,20, Improper Input Validation,nan
CVE-2011-3495,14/02/2012 4:08,16/09/2011 17:26,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3490,14/02/2012 4:08,16/09/2011 14:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3394,14/02/2012 4:08,15/09/2011 17:58,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-3393,14/02/2012 4:08,15/09/2011 17:58,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3163,14/02/2012 4:08,23/10/2011 10:55,1.2,200, Information Exposure,nan
CVE-2011-2950,14/02/2012 4:08,18/08/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2739,14/02/2012 4:07,9/11/2011 23:55,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2628,14/02/2012 4:07,1/07/2011 10:55,10.0,20, Improper Input Validation,nan
CVE-2011-2443,14/02/2012 4:07,4/10/2011 20:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2023,14/02/2012 4:06,14/07/2011 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1774,14/02/2012 4:06,21/07/2011 23:55,8.8,20, Improper Input Validation,nan
CVE-2011-0182,14/02/2012 4:03,23/03/2011 2:00,7.2,20, Improper Input Validation,nan
CVE-2010-5037,14/02/2012 4:02,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5031,14/02/2012 4:02,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5008,14/02/2012 4:02,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5006,14/02/2012 4:02,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5000,14/02/2012 4:02,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4998,14/02/2012 4:02,2/11/2011 21:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4970,14/02/2012 4:02,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4968,14/02/2012 4:02,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4936,14/02/2012 4:02,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4933,14/02/2012 4:02,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4928,14/02/2012 4:02,9/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4927,14/02/2012 4:02,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4923,14/02/2012 4:02,9/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4913,14/02/2012 4:02,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4909,14/02/2012 4:02,8/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4902,14/02/2012 4:02,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4884,14/02/2012 4:02,7/10/2011 10:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4877,14/02/2012 4:02,7/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4864,14/02/2012 4:02,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4859,14/02/2012 4:02,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4858,14/02/2012 4:02,5/10/2011 10:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4855,14/02/2012 4:02,5/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4852,14/02/2012 4:02,27/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4851,14/02/2012 4:02,27/09/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4850,14/02/2012 4:02,27/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4838,14/02/2012 4:02,14/09/2011 2:56,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4837,14/02/2012 4:02,14/09/2011 2:56,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4835,14/02/2012 4:02,14/09/2011 2:56,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4834,14/02/2012 4:02,14/09/2011 2:56,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1637,14/02/2012 3:55,22/06/2010 17:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3999,14/02/2012 3:49,20/01/2010 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-1046,13/02/2012 5:00,10/02/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4812,10/02/2012 5:00,14/12/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4811,10/02/2012 5:00,14/12/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4810,10/02/2012 5:00,14/12/2011 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4809,10/02/2012 5:00,14/12/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4808,10/02/2012 5:00,14/12/2011 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4807,10/02/2012 5:00,14/12/2011 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4806,10/02/2012 5:00,14/12/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4804,10/02/2012 5:00,14/12/2011 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4659,10/02/2012 5:00,19/01/2012 15:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2012-1035,9/02/2012 5:00,8/02/2012 21:55,5.0,20, Improper Input Validation,nan
CVE-2012-0928,9/02/2012 5:00,8/02/2012 15:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-5078,9/02/2012 5:00,8/02/2012 21:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-4831,9/02/2012 5:00,15/12/2011 3:57,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4827,9/02/2012 5:00,15/12/2011 3:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4826,9/02/2012 5:00,15/12/2011 3:57,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4823,9/02/2012 5:00,15/12/2011 3:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0314,9/02/2012 4:10,3/02/2012 4:05,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5076,8/02/2012 15:16,8/02/2012 0:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-1025,8/02/2012 5:00,8/02/2012 0:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2012-1019,8/02/2012 5:00,8/02/2012 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-1004,8/02/2012 5:00,8/02/2012 4:11,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0039,8/02/2012 5:00,14/01/2012 17:55,5.0,310, Cryptographic Issues,nan
CVE-2011-5066,8/02/2012 5:00,15/01/2012 3:55,2.1,200, Information Exposure,nan
CVE-2011-5061,8/02/2012 5:00,14/01/2012 3:57,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4114,8/02/2012 5:00,13/01/2012 18:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-4867,7/02/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4508,7/02/2012 5:00,3/02/2012 20:55,9.3,287, Improper Authentication,nan
CVE-2010-4986,7/02/2012 5:00,1/11/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3877,7/02/2012 5:00,29/11/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0395,6/02/2012 5:00,27/01/2012 0:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0312,6/02/2012 5:00,26/01/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0311,6/02/2012 5:00,26/01/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4514,6/02/2012 5:00,3/02/2012 20:55,10.0,287, Improper Authentication,nan
CVE-2011-4512,6/02/2012 5:00,3/02/2012 20:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4511,6/02/2012 5:00,3/02/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4510,6/02/2012 5:00,3/02/2012 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4509,6/02/2012 5:00,3/02/2012 20:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4143,6/02/2012 5:00,27/01/2012 0:55,5.0,200, Information Exposure,nan
CVE-2011-3874,6/02/2012 5:00,27/01/2012 15:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3444,6/02/2012 5:00,2/02/2012 18:55,4.3,310, Cryptographic Issues,nan
CVE-2011-1941,6/02/2012 5:00,26/01/2012 15:55,4.3,20, Improper Input Validation,nan
CVE-2011-3657,4/02/2012 4:01,2/01/2012 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2937,4/02/2012 4:00,21/09/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0200,4/02/2012 3:56,24/06/2011 20:55,6.8,189, Numeric Errors,nan
CVE-2011-3452,3/02/2012 16:16,2/02/2012 18:55,4.3,200, Information Exposure,nan
CVE-2011-3463,3/02/2012 5:00,2/02/2012 18:55,7.2,287, Improper Authentication,nan
CVE-2011-3450,3/02/2012 5:00,2/02/2012 18:55,6.8,399, Resource Management Errors,nan
CVE-2011-3449,3/02/2012 5:00,2/02/2012 18:55,6.8,399, Resource Management Errors,nan
CVE-2011-3448,3/02/2012 5:00,2/02/2012 18:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3447,3/02/2012 5:00,2/02/2012 18:55,4.3,200, Information Exposure,nan
CVE-2011-2393,3/02/2012 5:00,2/02/2012 17:55,7.8,399, Resource Management Errors,nan
CVE-2010-4563,3/02/2012 5:00,2/02/2012 17:55,5.0,200, Information Exposure,nan
CVE-2010-4562,3/02/2012 5:00,2/02/2012 17:55,4.3,200, Information Exposure,nan
CVE-2011-5074,2/02/2012 5:00,29/01/2012 11:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-5073,2/02/2012 5:00,29/01/2012 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5072,2/02/2012 5:00,29/01/2012 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5071,2/02/2012 5:00,29/01/2012 4:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4337,2/02/2012 5:00,29/01/2012 11:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4194,2/02/2012 5:00,2/02/2012 4:09,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4925,2/02/2012 4:09,13/01/2012 4:14,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-4368,2/02/2012 4:08,14/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3669,2/02/2012 4:07,2/01/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3668,2/02/2012 4:07,2/01/2012 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2524,2/02/2012 4:06,31/08/2011 23:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2463,2/02/2012 4:06,14/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5027,1/02/2012 4:12,29/12/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-5023,1/02/2012 4:12,29/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4617,1/02/2012 4:12,31/12/2011 1:55,1.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2012-0782,31/01/2012 14:01,30/01/2012 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4898,31/01/2012 5:00,30/01/2012 17:55,5.0,200, Information Exposure,nan
CVE-2012-0329,31/01/2012 4:08,19/01/2012 15:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3626,30/01/2012 5:00,27/01/2012 15:55,7.5,399, Resource Management Errors,nan
CVE-2012-0193,27/01/2012 4:04,20/01/2012 4:04,5.0,20, Improper Input Validation,nan
CVE-2011-4215,27/01/2012 4:03,1/11/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4214,27/01/2012 4:03,1/11/2011 19:55,10.0,287, Improper Authentication,nan
CVE-2011-4075,27/01/2012 4:03,2/11/2011 17:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4074,27/01/2012 4:03,2/11/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0909,26/01/2012 16:00,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4644,26/01/2012 5:00,3/01/2012 11:55,9.3,287, Improper Authentication,nan
CVE-2011-4276,26/01/2012 5:00,25/01/2012 18:55,4.3,200, Information Exposure,nan
CVE-2011-4866,25/01/2012 19:45,25/01/2012 4:03,6.4,200, Information Exposure,nan
CVE-2011-4699,25/01/2012 19:43,25/01/2012 4:03,6.4,200, Information Exposure,nan
CVE-2011-4698,25/01/2012 19:41,25/01/2012 4:03,6.4,200, Information Exposure,nan
CVE-2012-0916,25/01/2012 18:48,24/01/2012 18:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2012-0915,25/01/2012 5:00,24/01/2012 18:55,9.3,189, Numeric Errors,nan
CVE-2012-0790,25/01/2012 5:00,24/01/2012 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4705,25/01/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4704,25/01/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4702,25/01/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4701,25/01/2012 5:00,25/01/2012 4:03,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-4697,25/01/2012 5:00,25/01/2012 4:03,6.4,200, Information Exposure,nan
CVE-2012-0912,24/01/2012 16:56,24/01/2012 15:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2012-0286,24/01/2012 16:53,24/01/2012 15:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2012-0285,24/01/2012 15:55,24/01/2012 15:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2012-0313,24/01/2012 5:00,24/01/2012 4:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2742,24/01/2012 4:00,14/12/2011 11:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2741,24/01/2012 4:00,14/12/2011 11:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2012-0268,23/01/2012 5:00,19/01/2012 15:55,5.1,189, Numeric Errors,nan
CVE-2011-4135,23/01/2012 5:00,19/01/2012 19:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4134,20/01/2012 5:00,19/01/2012 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6744,20/01/2012 5:00,19/01/2012 19:55,2.1,200, Information Exposure,nan
CVE-2011-4142,19/01/2012 11:55,19/01/2012 11:55,2.1,255, Credentials Management,nan
CVE-2011-4361,19/01/2012 4:00,8/01/2012 11:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4360,19/01/2012 4:00,8/01/2012 11:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3365,19/01/2012 3:59,29/11/2011 17:55,4.3,20, Improper Input Validation,nan
CVE-2011-3343,19/01/2012 3:59,8/09/2011 18:55,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3342,19/01/2012 3:59,8/09/2011 18:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3341,19/01/2012 3:59,8/09/2011 18:55,7.5,189, Numeric Errors,nan
CVE-2011-2778,19/01/2012 3:58,23/12/2011 3:59,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2769,19/01/2012 3:58,23/12/2011 3:59,4.3,200, Information Exposure,nan
CVE-2011-2768,19/01/2012 3:58,23/12/2011 3:59,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2705,19/01/2012 3:58,5/08/2011 21:55,5.0,20, Improper Input Validation,nan
CVE-2011-2685,19/01/2012 3:58,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2176,19/01/2012 3:57,2/09/2011 23:55,2.1,287, Improper Authentication,nan
CVE-2011-1772,19/01/2012 3:57,13/05/2011 17:05,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1587,19/01/2012 3:56,27/04/2011 0:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1529,19/01/2012 3:56,20/10/2011 21:55,7.8,20, Improper Input Validation,nan
CVE-2011-1527,19/01/2012 3:56,20/10/2011 21:55,7.8,20, Improper Input Validation,nan
CVE-2010-2643,19/01/2012 3:49,7/01/2011 19:00,7.6,189, Numeric Errors,nan
CVE-2010-2641,19/01/2012 3:49,7/01/2011 19:00,7.6,20, Improper Input Validation,nan
CVE-2010-2640,19/01/2012 3:49,7/01/2011 19:00,7.6,20, Improper Input Validation,nan
CVE-2009-5064,19/01/2012 3:44,30/03/2011 22:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-2702,19/01/2012 3:40,8/09/2009 18:30,7.5,310, Cryptographic Issues,nan
CVE-2011-2170,18/01/2012 5:00,24/05/2011 23:55,4.4,20, Improper Input Validation,nan
CVE-2011-4057,16/01/2012 5:00,13/01/2012 18:55,5.0,399, Resource Management Errors,nan
CVE-2011-3228,14/01/2012 3:55,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3227,14/01/2012 3:55,14/10/2011 10:55,6.8,20, Improper Input Validation,nan
CVE-2011-3226,14/01/2012 3:55,14/10/2011 10:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-3225,14/01/2012 3:55,14/10/2011 10:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3223,14/01/2012 3:55,14/10/2011 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3222,14/01/2012 3:55,14/10/2011 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3221,14/01/2012 3:55,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3220,14/01/2012 3:55,14/10/2011 10:55,4.3,200, Information Exposure,nan
CVE-2011-3218,14/01/2012 3:55,14/10/2011 10:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3217,14/01/2012 3:55,14/10/2011 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3216,14/01/2012 3:55,14/10/2011 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-3215,14/01/2012 3:55,14/10/2011 10:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-3214,14/01/2012 3:55,14/10/2011 10:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-3213,14/01/2012 3:55,14/10/2011 10:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-2404,14/01/2012 3:54,11/08/2011 22:55,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0260,14/01/2012 3:51,14/10/2011 10:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-0231,14/01/2012 3:51,14/10/2011 10:55,5.0,200, Information Exposure,nan
CVE-2011-0230,14/01/2012 3:51,14/10/2011 10:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0229,14/01/2012 3:51,14/10/2011 10:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0224,14/01/2012 3:51,14/10/2011 10:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-0185,14/01/2012 3:51,14/10/2011 10:55,4.4,134, Use of Externally-Controlled Format String,nan
CVE-2011-5059,13/01/2012 5:00,10/01/2012 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4453,12/01/2012 5:00,22/12/2011 15:29,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4203,12/01/2012 5:00,22/12/2011 15:29,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4037,12/01/2012 5:00,22/12/2011 15:29,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3990,12/01/2012 5:00,22/12/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2585,12/01/2012 4:03,20/10/2011 0:55,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-5059,10/01/2012 5:00,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4531,9/01/2012 22:52,8/01/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2011-4530,9/01/2012 22:51,8/01/2012 20:55,5.0,20, Improper Input Validation,nan
CVE-2012-0024,9/01/2012 19:38,8/01/2012 0:55,5.0,20, Improper Input Validation,nan
CVE-2011-5055,9/01/2012 18:30,8/01/2012 0:55,5.0,20, Improper Input Validation,nan
CVE-2011-4870,9/01/2012 5:00,8/01/2012 0:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4532,9/01/2012 5:00,8/01/2012 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4529,9/01/2012 5:00,8/01/2012 20:55,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4905,5/01/2012 19:13,5/01/2012 16:55,5.0,399, Resource Management Errors,nan
CVE-2009-0708,5/01/2012 5:00,23/02/2009 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3337,4/01/2012 17:49,4/01/2012 3:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-4356,3/01/2012 16:38,5/12/2011 11:55,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2011-4710,3/01/2012 5:00,8/12/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4708,3/01/2012 5:00,8/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1710,2/01/2012 5:00,31/12/2011 1:55,7.5,189, Numeric Errors,nan
CVE-2011-4897,30/12/2011 5:00,23/12/2011 3:59,4.3,200, Information Exposure,nan
CVE-2011-4896,30/12/2011 5:00,23/12/2011 3:59,4.3,200, Information Exposure,nan
CVE-2011-5022,29/12/2011 14:10,29/12/2011 11:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-5021,29/12/2011 5:00,29/12/2011 4:15,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2914,29/12/2011 5:00,21/08/2009 11:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5111,28/12/2011 14:46,27/12/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2009-5110,28/12/2011 14:42,27/12/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2010-5081,28/12/2011 5:00,25/12/2011 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5109,28/12/2011 5:00,25/12/2011 1:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4536,27/12/2011 15:40,27/12/2011 4:01,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3372,26/12/2011 5:00,24/12/2011 19:55,7.5,287, Improper Authentication,nan
CVE-2011-4895,23/12/2011 5:00,23/12/2011 3:59,4.3,200, Information Exposure,nan
CVE-2011-4894,23/12/2011 5:00,23/12/2011 3:59,4.3,200, Information Exposure,nan
CVE-2011-4052,22/12/2011 5:00,5/12/2011 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4861,21/12/2011 5:00,17/12/2011 11:55,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4723,20/12/2011 11:55,20/12/2011 11:55,6.8,310, Cryptographic Issues,nan
CVE-2011-4717,20/12/2011 11:55,20/12/2011 11:55,5.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3347,20/12/2011 5:00,24/09/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3345,20/12/2011 5:00,24/09/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3337,20/12/2011 5:00,24/09/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2862,20/12/2011 5:00,28/09/2009 19:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-4860,19/12/2011 19:03,17/12/2011 11:55,10.0,287, Improper Authentication,nan
CVE-2011-4850,16/12/2011 11:55,16/12/2011 11:55,4.3,200, Information Exposure,nan
CVE-2011-4766,16/12/2011 11:55,16/12/2011 11:55,5.0,200, Information Exposure,nan
CVE-2011-4750,16/12/2011 11:55,16/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4836,15/12/2011 19:54,15/12/2011 3:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4835,15/12/2011 19:53,15/12/2011 3:57,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4830,15/12/2011 19:01,15/12/2011 3:57,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4829,15/12/2011 18:56,15/12/2011 3:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4825,15/12/2011 18:03,15/12/2011 3:57,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4606,15/12/2011 16:32,15/12/2011 3:57,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4837,15/12/2011 5:00,15/12/2011 3:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4828,15/12/2011 5:00,15/12/2011 3:57,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4064,15/12/2011 3:57,1/11/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4002,14/12/2011 5:00,30/11/2011 4:05,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-4001,14/12/2011 5:00,1/12/2011 11:55,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3821,14/12/2011 5:00,28/10/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3820,14/12/2011 5:00,28/10/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4202,13/12/2011 14:57,13/12/2011 11:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-4201,13/12/2011 11:55,13/12/2011 11:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4671,13/12/2011 4:09,2/12/2011 18:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4545,13/12/2011 4:09,2/12/2011 11:55,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4544,13/12/2011 4:09,1/12/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4435,13/12/2011 4:09,11/11/2011 21:55,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4404,13/12/2011 4:09,19/11/2011 3:58,5.0,16, Configuration,nan
CVE-2011-4062,13/12/2011 4:09,18/10/2011 1:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4349,12/12/2011 5:00,10/12/2011 17:55,4.6,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4346,12/12/2011 5:00,10/12/2011 17:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3974,12/12/2011 5:00,18/11/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4713,9/12/2011 5:00,8/12/2011 19:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2917,9/12/2011 5:00,8/12/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4263,8/12/2011 14:59,7/12/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1932,8/12/2011 13:37,5/12/2011 11:55,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4678,8/12/2011 5:00,6/12/2011 11:55,5.0,255, Credentials Management,nan
CVE-2011-4555,8/12/2011 5:00,6/12/2011 11:55,4.0,255, Credentials Management,nan
CVE-2011-4554,8/12/2011 5:00,6/12/2011 11:55,5.5,20, Improper Input Validation,nan
CVE-2011-4553,8/12/2011 5:00,6/12/2011 11:55,5.8,20, Improper Input Validation,nan
CVE-2011-4552,8/12/2011 5:00,6/12/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4130,8/12/2011 5:00,6/12/2011 11:55,9.0,399, Resource Management Errors,nan
CVE-2011-4051,8/12/2011 5:00,5/12/2011 11:55,10.0,287, Improper Authentication,nan
CVE-2006-5242,8/12/2011 5:00,12/10/2006 0:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4677,6/12/2011 11:55,6/12/2011 11:55,7.5,287, Improper Authentication,nan
CVE-2011-4036,2/12/2011 11:55,2/12/2011 11:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-4033,2/12/2011 11:55,2/12/2011 11:55,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4647,1/12/2011 5:00,30/11/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4646,1/12/2011 5:00,30/11/2011 19:55,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3366,1/12/2011 5:00,29/11/2011 17:55,4.3,20, Improper Input Validation,nan
CVE-2011-4191,30/11/2011 18:51,30/11/2011 4:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3173,30/11/2011 17:52,30/11/2011 4:05,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3367,30/11/2011 15:51,29/11/2011 17:55,5.0,20, Improper Input Validation,nan
CVE-2011-4568,30/11/2011 5:00,29/11/2011 11:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4563,29/11/2011 5:00,28/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4332,28/11/2011 5:00,23/11/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4321,28/11/2011 5:00,23/11/2011 18:55,5.0,310, Cryptographic Issues,nan
CVE-2010-5053,28/11/2011 5:00,23/11/2011 1:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4246,24/11/2011 11:55,24/11/2011 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2191,24/11/2011 3:58,7/10/2011 2:51,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0204,24/11/2011 3:54,24/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5054,23/11/2011 14:56,23/11/2011 1:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4507,22/11/2011 11:55,22/11/2011 11:55,7.5,310, Cryptographic Issues,nan
CVE-2011-4500,22/11/2011 11:55,22/11/2011 11:55,7.5,16, Configuration,nan
CVE-2011-2227,22/11/2011 3:56,8/10/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1696,22/11/2011 3:56,8/10/2011 2:52,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1602,22/11/2011 3:56,2/06/2011 20:55,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4498,21/11/2011 11:55,21/11/2011 11:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-4497,21/11/2011 11:55,21/11/2011 11:55,3.3,200, Information Exposure,nan
CVE-2011-4496,21/11/2011 11:55,21/11/2011 11:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4040,21/11/2011 11:55,21/11/2011 11:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-4311,21/11/2011 5:00,19/11/2011 3:58,5.0,20, Improper Input Validation,nan
CVE-2011-3646,21/11/2011 5:00,17/11/2011 19:55,5.0,20, Improper Input Validation,nan
CVE-2011-2770,21/11/2011 5:00,17/11/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7303,21/11/2011 5:00,15/11/2011 18:55,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-4457,18/11/2011 5:00,17/11/2011 23:55,2.6,200, Information Exposure,nan
CVE-2011-3320,17/11/2011 5:00,2/11/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1919,17/11/2011 5:00,2/11/2011 17:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-5022,17/11/2011 5:00,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5019,17/11/2011 5:00,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-5018,17/11/2011 5:00,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5005,17/11/2011 5:00,2/11/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5004,17/11/2011 5:00,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4997,17/11/2011 5:00,2/11/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-4277,16/11/2011 5:00,3/11/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3999,16/11/2011 5:00,9/11/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3998,16/11/2011 5:00,9/11/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3997,16/11/2011 5:00,9/11/2011 20:55,7.5,287, Improper Authentication,nan
CVE-2011-3994,16/11/2011 5:00,3/11/2011 17:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3993,16/11/2011 5:00,3/11/2011 17:55,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-3986,16/11/2011 5:00,3/11/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-5040,16/11/2011 5:00,2/11/2011 21:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-4118,15/11/2011 5:00,15/11/2011 3:57,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-4046,15/11/2011 5:00,12/11/2011 0:55,5.0,310, Cryptographic Issues,nan
CVE-2011-3440,15/11/2011 5:00,11/11/2011 18:55,1.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-2774,15/11/2011 5:00,15/11/2011 3:57,4.0,200, Information Exposure,nan
CVE-2011-2773,15/11/2011 5:00,15/11/2011 3:57,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2771,15/11/2011 5:00,15/11/2011 3:57,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4436,14/11/2011 5:00,12/11/2011 0:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-4047,14/11/2011 5:00,12/11/2011 0:55,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-3985,10/11/2011 5:00,9/11/2011 23:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3418,10/11/2011 5:00,25/09/2009 22:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-4533,10/11/2011 5:00,1/09/2006 23:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2673,8/11/2011 5:00,2/10/2011 2:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0737,8/11/2011 4:18,1/02/2011 18:00,5.0,200, Information Exposure,nan
CVE-2011-0736,8/11/2011 4:18,1/02/2011 18:00,4.3,200, Information Exposure,nan
CVE-2011-0735,8/11/2011 4:18,1/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0734,8/11/2011 4:18,1/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0733,8/11/2011 4:18,1/02/2011 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2072,3/11/2011 2:58,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-4030,30/10/2011 3:39,10/10/2011 10:55,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3860,30/10/2011 3:39,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1781,27/10/2011 3:25,29/08/2011 21:55,1.2,189, Numeric Errors,nan
CVE-2011-1769,27/10/2011 3:25,29/08/2011 21:55,1.2,189, Numeric Errors,nan
CVE-2011-1603,27/10/2011 3:24,2/06/2011 20:55,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1330,27/10/2011 3:24,22/06/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0212,27/10/2011 3:21,24/06/2011 20:55,6.4,399, Resource Management Errors,nan
CVE-2011-0210,27/10/2011 3:21,24/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0207,27/10/2011 3:21,24/06/2011 20:55,5.0,310, Cryptographic Issues,nan
CVE-2011-0205,27/10/2011 3:21,24/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0203,27/10/2011 3:21,24/06/2011 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0199,27/10/2011 3:21,24/06/2011 20:55,5.8,20, Improper Input Validation,nan
CVE-2011-0198,27/10/2011 3:21,24/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0197,27/10/2011 3:21,24/06/2011 20:55,2.1,200, Information Exposure,nan
CVE-2010-4804,27/10/2011 3:20,9/06/2011 10:36,4.3,200, Information Exposure,nan
CVE-2011-1756,26/10/2011 4:00,21/06/2011 2:52,5.0,399, Resource Management Errors,nan
CVE-2011-1898,26/10/2011 2:58,12/08/2011 18:55,7.4,264, Permissions Privileges and Access Controls,nan
CVE-2011-1484,26/10/2011 2:58,27/07/2011 2:42,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-0723,26/10/2011 2:57,20/05/2011 22:55,6.8,399, Resource Management Errors,nan
CVE-2011-0722,26/10/2011 2:57,20/05/2011 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0226,26/10/2011 2:56,19/07/2011 22:55,9.3,189, Numeric Errors,nan
CVE-2010-4704,26/10/2011 2:55,22/01/2011 22:00,4.3,20, Improper Input Validation,nan
CVE-2010-3908,26/10/2011 2:53,20/05/2011 22:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5086,26/10/2011 2:45,2/09/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4640,26/10/2011 2:44,10/02/2010 2:30,4.3,189, Numeric Errors,nan
CVE-2009-4639,26/10/2011 2:44,10/02/2010 2:30,4.3,189, Numeric Errors,nan
CVE-2009-4636,26/10/2011 2:44,10/02/2010 2:30,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4635,26/10/2011 2:44,10/02/2010 2:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4634,26/10/2011 2:44,10/02/2010 2:30,10.0,189, Numeric Errors,nan
CVE-2009-4633,26/10/2011 2:44,10/02/2010 2:30,10.0,189, Numeric Errors,nan
CVE-2009-4632,26/10/2011 2:44,10/02/2010 2:30,5.8,189, Numeric Errors,nan
CVE-2011-4173,25/10/2011 4:00,24/10/2011 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-3862,22/10/2011 2:59,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3854,21/10/2011 2:56,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3850,21/10/2011 2:56,28/09/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3720,21/10/2011 2:56,23/09/2011 23:55,5.0,200, Information Exposure,nan
CVE-2011-3599,21/10/2011 2:56,10/10/2011 10:55,5.8,310, Cryptographic Issues,nan
CVE-2011-3272,21/10/2011 2:55,3/10/2011 23:55,7.8,399, Resource Management Errors,nan
CVE-2011-1462,21/10/2011 2:53,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1457,21/10/2011 2:53,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1453,21/10/2011 2:53,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1288,21/10/2011 2:53,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0255,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0254,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0242,21/10/2011 2:51,21/07/2011 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0238,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0235,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0234,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0233,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0232,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0225,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0222,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0221,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0218,21/10/2011 2:51,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0208,21/10/2011 2:51,24/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0187,21/10/2011 2:51,23/03/2011 2:00,4.3,200, Information Exposure,nan
CVE-2010-3786,21/10/2011 2:48,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3785,21/10/2011 2:48,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3436,21/10/2011 2:48,9/11/2010 1:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0184,20/10/2011 4:00,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4974,18/10/2011 4:00,19/09/2007 17:17,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6576,18/10/2011 4:00,15/12/2006 19:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3355,18/10/2011 4:00,18/11/2005 22:03,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-3349,18/10/2011 4:00,18/11/2005 22:03,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0225,17/10/2011 4:00,10/01/2008 23:46,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6125,17/10/2011 4:00,27/11/2006 0:07,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-3815,17/10/2011 4:00,25/07/2006 13:22,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2006-3068,17/10/2011 4:00,19/06/2006 10:02,5.0,399, Resource Management Errors,nan
CVE-2005-2341,17/10/2011 4:00,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3254,14/10/2011 10:55,14/10/2011 10:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3253,14/10/2011 10:55,14/10/2011 10:55,2.6,200, Information Exposure,nan
CVE-2011-0253,14/10/2011 2:50,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0240,14/10/2011 2:50,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0237,14/10/2011 2:50,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0223,14/10/2011 2:50,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0215,14/10/2011 2:50,21/07/2011 23:55,9.3,20, Improper Input Validation,nan
CVE-2010-4334,14/10/2011 2:48,14/01/2011 1:00,4.0,310, Cryptographic Issues,nan
CVE-2011-2115,12/10/2011 4:00,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2123,11/10/2011 4:00,16/06/2011 23:55,9.3,189, Numeric Errors,nan
CVE-2006-5679,11/10/2011 4:00,3/11/2006 22:07,4.6,189, Numeric Errors,nan
CVE-2006-4466,11/10/2011 4:00,31/08/2006 20:04,5.0,20, Improper Input Validation,nan
CVE-2006-4302,11/10/2011 4:00,23/08/2006 1:04,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-2900,11/10/2011 4:00,7/06/2006 16:02,4.0,200, Information Exposure,nan
CVE-2010-4897,10/10/2011 4:00,8/10/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6165,6/10/2011 4:00,29/11/2007 1:46,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-2955,6/10/2011 2:50,18/08/2011 23:55,9.3,399, Resource Management Errors,nan
CVE-2011-2954,6/10/2011 2:50,18/08/2011 23:55,9.3,399, Resource Management Errors,nan
CVE-2011-2953,6/10/2011 2:50,18/08/2011 23:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2952,6/10/2011 2:50,18/08/2011 23:55,9.3,399, Resource Management Errors,nan
CVE-2011-2951,6/10/2011 2:50,18/08/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2949,6/10/2011 2:50,18/08/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2948,6/10/2011 2:50,18/08/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2947,6/10/2011 2:50,18/08/2011 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2945,6/10/2011 2:50,18/08/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2696,6/10/2011 2:50,27/07/2011 2:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2654,6/10/2011 2:50,6/09/2011 15:55,9.3,20, Improper Input Validation,nan
CVE-2011-2581,6/10/2011 2:50,14/09/2011 16:05,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-3385,5/10/2011 4:00,2/09/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2422,5/10/2011 2:55,11/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2421,5/10/2011 2:55,11/08/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2420,5/10/2011 2:55,11/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2419,5/10/2011 2:55,11/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2133,5/10/2011 2:54,11/08/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2132,5/10/2011 2:54,11/08/2011 22:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2131,5/10/2011 2:54,11/08/2011 22:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2121,5/10/2011 2:54,16/06/2011 23:55,9.3,189, Numeric Errors,nan
CVE-2011-2120,5/10/2011 2:54,16/06/2011 23:55,9.3,189, Numeric Errors,nan
CVE-2011-2119,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2118,5/10/2011 2:54,16/06/2011 23:55,9.3,20, Improper Input Validation,nan
CVE-2011-2117,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2116,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2114,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2113,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2112,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2111,5/10/2011 2:54,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2109,5/10/2011 2:54,16/06/2011 23:55,9.3,189, Numeric Errors,nan
CVE-2011-0335,5/10/2011 2:51,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0320,5/10/2011 2:51,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0319,5/10/2011 2:51,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0318,5/10/2011 2:51,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0317,5/10/2011 2:51,16/06/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4309,5/10/2011 2:50,11/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4308,5/10/2011 2:50,11/08/2011 22:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5656,3/10/2011 4:00,3/11/2006 0:07,5.0,399, Resource Management Errors,nan
CVE-2011-3576,23/09/2011 3:34,19/09/2011 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3211,23/09/2011 3:34,16/09/2011 12:35,9.3,20, Improper Input Validation,nan
CVE-2011-3204,23/09/2011 3:34,6/09/2011 16:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-3200,23/09/2011 3:34,6/09/2011 16:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3132,23/09/2011 3:34,2/09/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2882,22/09/2011 3:32,21/07/2011 23:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2745,22/09/2011 3:32,27/07/2011 2:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-2081,22/09/2011 3:31,10/05/2011 19:55,5.0,200, Information Exposure,nan
CVE-2011-2079,22/09/2011 3:31,10/05/2011 19:55,7.5,20, Improper Input Validation,nan
CVE-2011-2078,22/09/2011 3:31,10/05/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2077,22/09/2011 3:31,10/05/2011 19:55,7.5,16, Configuration,nan
CVE-2011-2076,22/09/2011 3:31,10/05/2011 19:55,5.0,200, Information Exposure,nan
CVE-2011-1937,22/09/2011 3:31,31/05/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1931,22/09/2011 3:31,7/07/2011 21:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1840,22/09/2011 3:30,13/05/2011 17:05,2.1,310, Cryptographic Issues,nan
CVE-2011-1568,22/09/2011 3:30,5/04/2011 15:19,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2011-1567,22/09/2011 3:30,5/04/2011 15:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1565,22/09/2011 3:30,5/04/2011 15:19,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1564,22/09/2011 3:30,5/04/2011 15:19,10.0,189, Numeric Errors,nan
CVE-2011-1563,22/09/2011 3:30,5/04/2011 15:19,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1545,22/09/2011 3:30,3/05/2011 19:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1543,22/09/2011 3:30,29/04/2011 22:55,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1542,22/09/2011 3:30,29/04/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1538,22/09/2011 3:30,3/05/2011 19:55,4.9,20, Improper Input Validation,nan
CVE-2011-1537,22/09/2011 3:30,3/05/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1523,22/09/2011 3:30,3/05/2011 19:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1498,22/09/2011 3:30,7/07/2011 21:55,4.3,200, Information Exposure,nan
CVE-2011-0893,22/09/2011 3:29,4/04/2011 12:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0892,22/09/2011 3:29,29/03/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0614,22/09/2011 3:28,16/05/2011 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0535,22/09/2011 3:28,8/02/2011 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0418,22/09/2011 3:28,24/05/2011 23:55,4.0,20, Improper Input Validation,nan
CVE-2011-0354,22/09/2011 3:28,3/02/2011 16:00,10.0,255, Credentials Management,nan
CVE-2010-4830,22/09/2011 3:27,24/08/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4782,22/09/2011 3:27,7/04/2011 14:23,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4781,22/09/2011 3:27,7/04/2011 14:23,5.0,200, Information Exposure,nan
CVE-2010-4780,22/09/2011 3:27,7/04/2011 14:23,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4770,22/09/2011 3:27,23/03/2011 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4750,22/09/2011 3:27,1/03/2011 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4749,22/09/2011 3:27,1/03/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4748,22/09/2011 3:27,1/03/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4740,22/09/2011 3:27,16/02/2011 3:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4738,22/09/2011 3:27,16/02/2011 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4737,22/09/2011 3:27,16/02/2011 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4736,22/09/2011 3:27,16/02/2011 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4734,22/09/2011 3:27,16/02/2011 3:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3747,22/09/2011 3:25,19/10/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0932,22/09/2011 3:07,17/03/2009 21:30,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-3501,21/09/2011 4:00,16/09/2011 17:26,5.0,189, Numeric Errors,nan
CVE-2010-4754,21/09/2011 4:00,2/03/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2010-4321,21/09/2011 4:00,30/12/2010 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0152,21/09/2011 4:00,9/01/2008 0:46,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4227,21/09/2011 2:58,25/11/2008 23:30,7.5,310, Cryptographic Issues,nan
CVE-2007-2987,20/09/2011 4:00,1/06/2007 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-3502,19/09/2011 4:00,16/09/2011 17:26,5.0,200, Information Exposure,nan
CVE-2011-3500,19/09/2011 4:00,16/09/2011 17:26,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4221,15/09/2011 3:18,9/11/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4001,15/09/2011 3:17,6/11/2010 0:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-3867,15/09/2011 3:17,9/11/2010 21:00,7.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3288,15/09/2011 3:06,22/09/2009 10:30,4.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2201,14/09/2011 16:05,14/09/2011 16:05,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-3384,14/09/2011 4:00,8/09/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3382,14/09/2011 4:00,8/09/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-3381,14/09/2011 4:00,8/09/2011 18:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4839,14/09/2011 4:00,14/09/2011 2:56,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-5097,14/09/2011 4:00,13/09/2011 19:59,7.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4340,13/09/2011 4:00,12/09/2011 12:41,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-3156,13/09/2011 4:00,11/06/2007 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-5534,13/09/2011 4:00,26/10/2006 17:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4658,13/09/2011 4:00,31/12/2005 5:00,6.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4491,13/09/2011 4:00,22/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4485,13/09/2011 4:00,22/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4190,13/09/2011 4:00,13/12/2005 11:03,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3511,13/09/2011 4:00,6/11/2005 11:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0502,13/09/2011 3:00,10/02/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0500,13/09/2011 3:00,10/02/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6689,8/09/2011 4:00,21/12/2006 21:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5481,8/09/2011 4:00,24/10/2006 20:07,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-1049,8/09/2011 4:00,7/03/2006 11:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-0659,8/09/2011 4:00,13/02/2006 11:06,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-0115,8/09/2011 4:00,9/01/2006 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4478,8/09/2011 4:00,22/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2591,7/09/2011 3:17,5/08/2011 21:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2536,7/09/2011 3:17,6/07/2011 19:55,5.0,200, Information Exposure,nan
CVE-2011-2490,7/09/2011 3:17,27/07/2011 2:55,7.2,20, Improper Input Validation,nan
CVE-2011-2489,7/09/2011 3:17,27/07/2011 2:55,7.2,189, Numeric Errors,nan
CVE-2011-2160,7/09/2011 3:17,20/05/2011 22:55,9.3,20, Improper Input Validation,nan
CVE-2011-2092,7/09/2011 3:16,16/06/2011 23:55,10.0,20, Improper Input Validation,nan
CVE-2011-2041,7/09/2011 3:16,2/06/2011 20:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1856,7/09/2011 3:16,16/05/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1843,7/09/2011 3:16,3/05/2011 0:55,6.8,189, Numeric Errors,nan
CVE-2011-1775,7/09/2011 3:16,26/05/2011 18:55,5.8,20, Improper Input Validation,nan
CVE-2011-1760,7/09/2011 3:16,9/06/2011 19:55,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1738,7/09/2011 3:16,13/05/2011 17:05,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1737,7/09/2011 3:16,13/05/2011 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1709,7/09/2011 3:16,14/06/2011 17:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1651,7/09/2011 3:16,31/05/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-1649,7/09/2011 3:16,31/05/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-1647,7/09/2011 3:16,31/05/2011 20:55,5.0,200, Information Exposure,nan
CVE-2011-1646,7/09/2011 3:16,31/05/2011 20:55,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1645,7/09/2011 3:16,31/05/2011 20:55,9.3,16, Configuration,nan
CVE-2011-1599,7/09/2011 3:16,27/04/2011 0:55,9.0,20, Improper Input Validation,nan
CVE-2011-1547,7/09/2011 3:16,9/05/2011 19:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1507,7/09/2011 3:16,27/04/2011 0:55,5.0,399, Resource Management Errors,nan
CVE-2011-1407,7/09/2011 3:15,16/05/2011 18:55,7.5,20, Improper Input Validation,nan
CVE-2011-1137,7/09/2011 3:15,11/03/2011 17:55,5.0,189, Numeric Errors,nan
CVE-2011-1022,7/09/2011 3:15,22/03/2011 17:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1001,7/09/2011 3:15,8/07/2011 17:55,4.3,20, Improper Input Validation,nan
CVE-2010-2788,7/09/2011 3:10,27/04/2011 0:55,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2787,7/09/2011 3:10,27/04/2011 0:55,4.3,200, Information Exposure,nan
CVE-2008-5845,7/09/2011 2:53,5/01/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0542,5/09/2011 4:00,2/09/2011 23:55,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1341,29/08/2011 4:00,19/08/2011 21:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2445,29/08/2011 4:00,13/07/2009 17:30,5.0,200, Information Exposure,nan
CVE-2010-4803,27/08/2011 3:46,3/05/2011 0:55,10.0,20, Improper Input Validation,nan
CVE-2010-4802,27/08/2011 3:46,3/05/2011 0:55,10.0,20, Improper Input Validation,nan
CVE-2010-4259,27/08/2011 3:45,7/12/2010 13:53,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3851,27/08/2011 3:44,4/11/2010 18:00,4.7,200, Information Exposure,nan
CVE-2010-3707,27/08/2011 3:44,6/10/2010 17:00,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2011-1342,26/08/2011 4:00,19/08/2011 21:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0456,26/08/2011 4:00,11/03/2011 17:55,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-4829,25/08/2011 4:00,24/08/2011 10:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6674,25/08/2011 4:00,21/12/2006 1:28,2.1,310, Cryptographic Issues,nan
CVE-2011-1583,24/08/2011 3:17,12/08/2011 18:55,6.9,189, Numeric Errors,nan
CVE-2011-1158,24/08/2011 3:16,11/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1157,24/08/2011 3:16,11/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1156,24/08/2011 3:16,11/04/2011 18:55,5.0,399, Resource Management Errors,nan
CVE-2011-1147,24/08/2011 3:16,15/03/2011 17:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0188,24/08/2011 3:15,23/03/2011 2:00,6.8,189, Numeric Errors,nan
CVE-2009-5065,24/08/2011 3:06,11/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2939,24/08/2011 3:02,21/09/2009 19:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-1386,23/08/2011 4:00,19/08/2010 22:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5413,23/08/2011 4:00,10/12/2008 0:30,5.0,200, Information Exposure,nan
CVE-2006-0094,23/08/2011 4:00,5/01/2006 11:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4942,22/08/2011 4:00,18/09/2007 19:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-5083,12/08/2011 17:55,12/08/2011 17:55,6.8,287, Improper Authentication,nan
CVE-2008-7299,12/08/2011 17:55,12/08/2011 17:55,5.0,20, Improper Input Validation,nan
CVE-2010-1326,12/08/2011 4:00,15/09/2010 18:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1486,12/08/2011 2:44,31/05/2011 20:55,3.3,399, Resource Management Errors,nan
CVE-2011-0213,11/08/2011 2:48,24/06/2011 20:55,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0211,11/08/2011 2:48,24/06/2011 20:55,6.8,189, Numeric Errors,nan
CVE-2011-0209,11/08/2011 2:48,24/06/2011 20:55,6.8,189, Numeric Errors,nan
CVE-2011-0186,11/08/2011 2:48,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4176,10/08/2011 4:00,7/12/2010 22:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5933,10/08/2011 4:00,13/11/2007 20:46,7.8,20, Improper Input Validation,nan
CVE-2007-2400,10/08/2011 4:00,25/06/2007 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3835,10/08/2011 4:00,26/11/2005 20:03,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1340,8/08/2011 4:00,5/08/2011 21:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0332,8/08/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0331,8/08/2011 4:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0329,8/08/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0318,8/08/2011 4:00,15/01/2010 18:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0316,8/08/2011 4:00,15/01/2010 17:30,9.3,189, Numeric Errors,nan
CVE-2010-0312,8/08/2011 4:00,14/01/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-0184,8/08/2011 4:00,14/01/2010 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-0002,8/08/2011 4:00,14/01/2010 18:30,2.1,20, Improper Input Validation,nan
CVE-2009-4613,8/08/2011 4:00,14/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4612,8/08/2011 4:00,13/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4610,8/08/2011 4:00,13/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4609,8/08/2011 4:00,13/01/2010 20:30,5.0,200, Information Exposure,nan
CVE-2005-4495,8/08/2011 4:00,22/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2975,5/08/2011 4:00,1/08/2011 20:55,6.8,399, Resource Management Errors,nan
CVE-2011-0248,5/08/2011 4:00,4/08/2011 2:45,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0789,5/08/2011 4:00,6/02/2007 19:28,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-3960,5/08/2011 4:00,1/08/2006 21:04,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4073,5/08/2011 4:00,8/12/2005 1:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3881,5/08/2011 4:00,29/11/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3840,5/08/2011 4:00,26/11/2005 22:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3748,5/08/2011 4:00,22/11/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3744,5/08/2011 4:00,22/11/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3686,5/08/2011 4:00,19/11/2005 1:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3497,5/08/2011 4:00,4/11/2005 0:02,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6297,4/08/2011 4:00,5/12/2006 11:28,5.0,399, Resource Management Errors,nan
CVE-2011-2185,2/08/2011 4:00,27/07/2011 2:55,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2006-2200,2/08/2011 4:00,28/06/2006 1:45,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4807,2/08/2011 4:00,31/12/2005 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-2930,2/08/2011 4:00,28/10/2005 21:02,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2963,1/08/2011 4:00,29/07/2011 19:55,10.0,287, Improper Authentication,nan
CVE-2011-2961,1/08/2011 4:00,29/07/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2960,1/08/2011 4:00,29/07/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2959,1/08/2011 4:00,29/07/2011 19:55,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2196,1/08/2011 4:00,27/07/2011 2:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-1339,1/08/2011 4:00,28/07/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2956,29/07/2011 4:00,28/07/2011 18:55,7.8,287, Improper Authentication,nan
CVE-2011-2892,29/07/2011 4:00,27/07/2011 20:55,4.3,20, Improper Input Validation,nan
CVE-2010-1938,29/07/2011 2:37,28/05/2010 18:30,9.3,189, Numeric Errors,nan
CVE-2011-2488,28/07/2011 4:00,27/07/2011 20:55,5.0,200, Information Exposure,nan
CVE-2011-0227,26/07/2011 4:00,19/07/2011 22:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-4743,26/07/2011 4:00,18/02/2011 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3441,26/07/2011 4:00,18/02/2011 17:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2826,26/07/2011 4:00,17/08/2010 5:41,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0335,26/07/2011 4:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0333,26/07/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4104,26/07/2011 4:00,29/11/2009 13:08,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3737,26/07/2011 4:00,17/08/2010 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1464,26/07/2011 4:00,24/03/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0334,25/07/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1487,25/07/2011 4:00,24/03/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1469,25/07/2011 4:00,24/03/2008 21:44,6.4,287, Improper Authentication,nan
CVE-2008-0640,25/07/2011 4:00,8/02/2008 2:00,10.0,287, Improper Authentication,nan
CVE-2006-6687,25/07/2011 4:00,21/12/2006 21:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6653,25/07/2011 4:00,20/12/2006 2:28,1.7,20, Improper Input Validation,nan
CVE-2011-0202,23/07/2011 2:39,24/06/2011 20:55,6.8,189, Numeric Errors,nan
CVE-2011-0201,23/07/2011 2:39,24/06/2011 20:55,7.5,189, Numeric Errors,nan
CVE-2011-0195,23/07/2011 2:39,15/04/2011 19:55,4.3,200, Information Exposure,nan
CVE-2011-2883,22/07/2011 4:00,21/07/2011 23:55,9.3,20, Improper Input Validation,nan
CVE-2011-0244,22/07/2011 4:00,21/07/2011 23:55,4.3,200, Information Exposure,nan
CVE-2011-0219,22/07/2011 4:00,21/07/2011 23:55,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-0217,22/07/2011 4:00,21/07/2011 23:55,4.3,200, Information Exposure,nan
CVE-2011-0214,22/07/2011 4:00,21/07/2011 23:55,5.0,310, Cryptographic Issues,nan
CVE-2010-1420,22/07/2011 4:00,21/07/2011 23:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1383,22/07/2011 4:00,21/07/2011 23:55,9.3,255, Credentials Management,nan
CVE-2011-0009,20/07/2011 4:00,25/01/2011 19:00,4.3,310, Cryptographic Issues,nan
CVE-2011-2758,19/07/2011 4:00,17/07/2011 20:55,5.0,287, Improper Authentication,nan
CVE-2011-2757,19/07/2011 4:00,17/07/2011 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2756,19/07/2011 4:00,17/07/2011 20:55,5.0,287, Improper Authentication,nan
CVE-2011-2755,19/07/2011 4:00,17/07/2011 20:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2754,19/07/2011 4:00,17/07/2011 20:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2751,19/07/2011 4:00,17/07/2011 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1223,19/07/2011 4:00,17/07/2011 20:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1222,19/07/2011 4:00,17/07/2011 20:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0015,19/07/2011 4:00,19/01/2011 12:00,5.0,20, Improper Input Validation,nan
CVE-2010-4696,19/07/2011 4:00,18/01/2011 18:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3260,19/07/2011 4:00,27/04/2011 0:55,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-2789,19/07/2011 4:00,27/04/2011 0:55,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7271,19/07/2011 4:00,13/01/2011 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1845,14/07/2011 4:00,3/05/2011 19:55,7.8,399, Resource Management Errors,nan
CVE-2011-1844,14/07/2011 4:00,3/05/2011 19:55,7.8,399, Resource Management Errors,nan
CVE-2011-0729,14/07/2011 4:00,29/04/2011 22:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2005-3501,14/07/2011 4:00,5/11/2005 11:02,4.3,399, Resource Management Errors,nan
CVE-2011-0766,13/07/2011 4:00,31/05/2011 20:55,7.8,310, Cryptographic Issues,nan
CVE-2010-4807,13/07/2011 4:00,26/05/2011 16:55,3.5,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-1461,13/07/2011 4:00,14/03/2007 18:19,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-2604,12/07/2011 4:00,30/06/2011 15:55,7.1,399, Resource Management Errors,nan
CVE-2011-2603,12/07/2011 4:00,30/06/2011 15:55,7.1,399, Resource Management Errors,nan
CVE-2011-2602,12/07/2011 4:00,30/06/2011 15:55,7.1,399, Resource Management Errors,nan
CVE-2011-2601,12/07/2011 4:00,30/06/2011 15:55,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-2600,12/07/2011 4:00,30/06/2011 15:55,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1951,12/07/2011 4:00,11/07/2011 20:55,4.3,399, Resource Management Errors,nan
CVE-2011-0949,12/07/2011 4:00,31/05/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-0943,12/07/2011 4:00,31/05/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2009-5082,12/07/2011 4:00,30/06/2011 15:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-3694,12/07/2011 2:39,9/11/2010 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3077,12/07/2011 2:38,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2619,11/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2618,11/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2614,11/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2613,11/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2344,8/07/2011 17:55,8/07/2011 17:55,10.0,310, Cryptographic Issues,nan
CVE-2011-2634,8/07/2011 4:00,1/07/2011 10:55,5.0,20, Improper Input Validation,nan
CVE-2011-2632,8/07/2011 4:00,1/07/2011 10:55,5.0,20, Improper Input Validation,nan
CVE-2011-2631,8/07/2011 4:00,1/07/2011 10:55,5.0,20, Improper Input Validation,nan
CVE-2011-2630,8/07/2011 4:00,1/07/2011 10:55,4.3,20, Improper Input Validation,nan
CVE-2011-2626,8/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2625,8/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2624,8/07/2011 4:00,1/07/2011 10:55,4.3,399, Resource Management Errors,nan
CVE-2011-1336,8/07/2011 4:00,7/07/2011 19:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1563,8/07/2011 4:00,21/03/2007 19:19,6.8,200, Information Exposure,nan
CVE-2011-2635,6/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2641,5/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2011-2639,5/07/2011 4:00,1/07/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2010-3790,2/07/2011 2:36,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-2470,30/06/2011 4:00,29/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2181,30/06/2011 4:00,29/06/2011 17:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-2180,30/06/2011 4:00,29/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1924,30/06/2011 4:00,14/06/2011 17:55,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1335,30/06/2011 4:00,29/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1334,30/06/2011 4:00,29/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1333,30/06/2011 4:00,29/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1332,29/06/2011 17:55,29/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1129,29/06/2011 4:00,21/06/2011 2:52,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1128,29/06/2011 4:00,21/06/2011 2:52,7.5,310, Cryptographic Issues,nan
CVE-2011-1127,29/06/2011 4:00,21/06/2011 2:52,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-2019,29/06/2011 4:00,31/12/2002 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-2532,28/06/2011 4:00,22/06/2011 21:55,5.0,399, Resource Management Errors,nan
CVE-2011-2531,28/06/2011 4:00,22/06/2011 21:55,4.3,399, Resource Management Errors,nan
CVE-2011-2206,28/06/2011 4:00,22/06/2011 22:55,5.5,399, Resource Management Errors,nan
CVE-2011-1757,28/06/2011 4:00,21/06/2011 2:52,5.0,399, Resource Management Errors,nan
CVE-2011-1131,28/06/2011 4:00,21/06/2011 2:52,5.0,200, Information Exposure,nan
CVE-2011-0196,27/06/2011 4:00,24/06/2011 20:55,7.8,399, Resource Management Errors,nan
CVE-2011-0181,27/06/2011 4:00,23/03/2011 2:00,6.8,189, Numeric Errors,nan
CVE-2007-6728,27/06/2011 4:00,5/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1056,20/06/2011 4:00,21/02/2011 21:00,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3612,20/06/2011 4:00,11/09/2008 1:13,7.5,189, Numeric Errors,nan
CVE-2007-2552,16/06/2011 4:00,9/05/2007 10:19,5.0,200, Information Exposure,nan
CVE-2006-6979,16/06/2011 4:00,8/02/2007 18:28,7.5,20, Improper Input Validation,nan
CVE-2011-1766,16/06/2011 2:56,23/05/2011 22:55,5.8,287, Improper Authentication,nan
CVE-2011-1765,16/06/2011 2:56,23/05/2011 22:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4667,14/06/2011 17:55,14/06/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-2475,14/06/2011 4:00,9/06/2011 21:55,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2011-2474,14/06/2011 4:00,9/06/2011 21:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-2382,14/06/2011 4:00,3/06/2011 17:55,4.3,20, Improper Input Validation,nan
CVE-2009-4008,14/06/2011 4:00,2/06/2011 20:55,5.0,399, Resource Management Errors,nan
CVE-2006-6637,14/06/2011 4:00,19/12/2006 20:28,5.0,200, Information Exposure,nan
CVE-2009-0171,13/06/2011 4:00,16/01/2009 21:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-5258,13/06/2011 4:00,12/10/2006 22:07,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-3122,13/06/2011 4:00,9/08/2006 22:04,5.0,399, Resource Management Errors,nan
CVE-2011-2168,11/06/2011 2:37,24/05/2011 23:55,5.0,189, Numeric Errors,nan
CVE-2007-0267,10/06/2011 4:00,17/01/2007 0:28,6.6,399, Resource Management Errors,nan
CVE-2011-2087,2/06/2011 4:00,13/05/2011 17:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2246,2/06/2011 4:00,26/05/2011 18:55,5.1,20, Improper Input Validation,nan
CVE-2010-0969,2/06/2011 4:00,16/03/2010 19:00,5.0,399, Resource Management Errors,nan
CVE-2011-1906,31/05/2011 4:00,5/05/2011 14:55,5.0,255, Credentials Management,nan
CVE-2011-1905,31/05/2011 4:00,5/05/2011 14:55,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1904,31/05/2011 4:00,5/05/2011 14:55,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-1903,31/05/2011 4:00,5/05/2011 14:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1902,31/05/2011 4:00,5/05/2011 14:55,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1901,31/05/2011 4:00,5/05/2011 14:55,7.5,287, Improper Authentication,nan
CVE-2011-1900,31/05/2011 4:00,4/05/2011 22:55,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-1570,31/05/2011 4:00,7/05/2011 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1522,31/05/2011 4:00,3/05/2011 20:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1504,31/05/2011 4:00,7/05/2011 19:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1503,31/05/2011 4:00,7/05/2011 19:55,3.5,200, Information Exposure,nan
CVE-2011-1502,31/05/2011 4:00,7/05/2011 19:55,4.0,200, Information Exposure,nan
CVE-2011-1207,31/05/2011 4:00,5/05/2011 2:39,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0756,31/05/2011 4:00,5/05/2011 2:39,5.0,255, Credentials Management,nan
CVE-2010-4779,31/05/2011 4:00,7/04/2011 14:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1758,27/05/2011 4:00,26/05/2011 18:55,3.7,287, Improper Authentication,nan
CVE-2011-1324,27/05/2011 4:00,9/05/2011 19:55,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-1323,27/05/2011 4:00,9/05/2011 19:55,7.8,20, Improper Input Validation,nan
CVE-2011-1031,27/05/2011 4:00,14/02/2011 22:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0426,27/05/2011 4:00,9/05/2011 22:55,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4284,27/05/2011 4:00,9/05/2011 22:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4806,26/05/2011 16:55,26/05/2011 16:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1789,26/05/2011 4:00,9/05/2011 22:55,5.0,310, Cryptographic Issues,nan
CVE-2011-1325,26/05/2011 4:00,13/05/2011 17:05,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-2169,25/05/2011 4:00,24/05/2011 23:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-0615,25/05/2011 4:00,16/05/2011 17:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0613,25/05/2011 4:00,16/05/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0612,25/05/2011 4:00,16/05/2011 17:55,5.0,399, Resource Management Errors,nan
CVE-2007-4311,25/05/2011 4:00,13/08/2007 21:17,6.8,310, Cryptographic Issues,nan
CVE-2006-7245,25/05/2011 4:00,20/05/2011 22:55,4.3,399, Resource Management Errors,nan
CVE-2011-1327,24/05/2011 4:00,20/05/2011 22:55,2.1,310, Cryptographic Issues,nan
CVE-2009-5075,24/05/2011 4:00,20/05/2011 22:55,4.3,399, Resource Management Errors,nan
CVE-2007-1460,24/05/2011 4:00,14/03/2007 18:19,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4705,24/05/2011 2:38,22/01/2011 22:00,9.3,189, Numeric Errors,nan
CVE-2005-1928,20/05/2011 4:00,14/12/2005 23:03,7.8,399, Resource Management Errors,nan
CVE-2005-3570,19/05/2011 4:00,16/11/2005 7:42,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-2936,19/05/2011 4:00,18/11/2005 6:03,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2005-2819,19/05/2011 4:00,7/09/2005 19:07,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-2388,18/05/2011 4:00,29/05/2007 21:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-0436,18/05/2011 4:00,4/02/2007 0:28,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-4093,18/05/2011 4:00,8/12/2005 11:03,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5652,12/05/2011 4:00,23/10/2007 21:47,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1717,11/05/2011 19:25,18/04/2011 18:55,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-4746,11/05/2011 4:00,23/02/2011 19:00,5.0,399, Resource Management Errors,nan
CVE-2010-0362,6/05/2011 4:00,20/01/2010 16:30,5.0,310, Cryptographic Issues,nan
CVE-2011-0908,5/05/2011 4:00,8/02/2011 21:00,5.8,20, Improper Input Validation,nan
CVE-2010-4156,4/05/2011 2:52,10/11/2010 3:00,5.0,20, Improper Input Validation,nan
CVE-2010-2950,4/05/2011 2:49,28/09/2010 18:00,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2010-0350,2/05/2011 4:00,15/01/2010 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0349,29/04/2011 4:00,15/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0348,29/04/2011 4:00,15/01/2010 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0347,29/04/2011 4:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0346,29/04/2011 4:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0344,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0343,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0342,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0341,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0340,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0339,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0337,29/04/2011 4:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6372,29/04/2011 4:00,15/12/2007 1:46,7.8,20, Improper Input Validation,nan
CVE-2011-0640,28/04/2011 4:00,25/01/2011 1:00,6.9,16, Configuration,nan
CVE-2011-0639,28/04/2011 4:00,25/01/2011 1:00,6.9,16, Configuration,nan
CVE-2010-0361,28/04/2011 4:00,20/01/2010 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0360,28/04/2011 4:00,20/01/2010 16:30,10.0,20, Improper Input Validation,nan
CVE-2010-0358,28/04/2011 4:00,20/01/2010 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0230,28/04/2011 4:00,22/01/2010 21:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0562,27/04/2011 4:00,8/02/2010 21:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0384,27/04/2011 4:00,25/01/2010 19:30,2.1,200, Information Exposure,nan
CVE-2006-6683,27/04/2011 4:00,21/12/2006 19:28,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-4711,26/04/2011 20:54,31/01/2011 20:00,10.0,399, Resource Management Errors,nan
CVE-2010-4712,26/04/2011 20:16,31/01/2011 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4742,26/04/2011 4:00,18/02/2011 18:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4741,26/04/2011 4:00,18/02/2011 18:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4714,26/04/2011 4:00,31/01/2011 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4713,26/04/2011 4:00,31/01/2011 20:00,10.0,189, Numeric Errors,nan
CVE-2011-1149,23/04/2011 2:41,21/04/2011 10:55,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-0462,22/04/2011 4:00,10/04/2011 2:51,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1822,21/04/2011 10:55,21/04/2011 10:55,2.1,255, Credentials Management,nan
CVE-2011-1821,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2010-4789,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2010-4788,21/04/2011 10:55,21/04/2011 10:55,4.0,20, Improper Input Validation,nan
CVE-2010-4787,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2010-4786,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2010-4785,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2009-5073,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2009-5072,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2008-7290,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2008-7289,21/04/2011 10:55,21/04/2011 10:55,4.0,20, Improper Input Validation,nan
CVE-2008-7288,21/04/2011 10:55,21/04/2011 10:55,5.0,399, Resource Management Errors,nan
CVE-2008-7287,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2007-6743,21/04/2011 10:55,21/04/2011 10:55,4.0,399, Resource Management Errors,nan
CVE-2007-6742,21/04/2011 10:55,21/04/2011 10:55,6.8,399, Resource Management Errors,nan
CVE-2011-1683,21/04/2011 4:00,13/04/2011 14:55,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2011-1307,21/04/2011 4:00,8/03/2011 21:59,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2011-1068,21/04/2011 4:00,23/02/2011 19:00,2.6,20, Improper Input Validation,nan
CVE-2011-0466,21/04/2011 4:00,10/04/2011 2:51,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-4753,21/04/2011 4:00,1/03/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1549,21/04/2011 2:33,30/03/2011 22:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1548,21/04/2011 2:33,30/03/2011 22:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1155,21/04/2011 2:33,30/03/2011 22:55,1.9,399, Resource Management Errors,nan
CVE-2011-1154,21/04/2011 2:33,30/03/2011 22:55,6.9,20, Improper Input Validation,nan
CVE-2011-1098,21/04/2011 2:33,30/03/2011 22:55,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2011-1006,21/04/2011 2:33,22/03/2011 17:55,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0935,21/04/2011 2:33,14/04/2011 16:55,10.0,310, Cryptographic Issues,nan
CVE-2011-1401,20/04/2011 4:00,11/04/2011 18:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0286,18/04/2011 18:55,18/04/2011 18:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0012,18/04/2011 17:55,18/04/2011 17:55,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2011-0388,9/04/2011 3:32,25/02/2011 12:00,7.8,399, Resource Management Errors,nan
CVE-2011-0382,9/04/2011 3:32,25/02/2011 12:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0379,9/04/2011 3:32,25/02/2011 12:00,7.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0331,9/04/2011 3:32,22/03/2011 17:55,9.3,399, Resource Management Errors,nan
CVE-2010-4362,9/04/2011 3:31,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3902,9/04/2011 3:29,14/10/2010 5:58,5.0,200, Information Exposure,nan
CVE-2011-1550,7/04/2011 4:00,30/03/2011 22:55,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-1317,7/04/2011 4:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2011-1316,7/04/2011 4:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2011-1315,7/04/2011 4:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2011-1314,7/04/2011 4:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2011-1313,7/04/2011 4:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2011-1312,7/04/2011 4:00,8/03/2011 21:59,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1311,7/04/2011 4:00,8/03/2011 21:59,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-1310,7/04/2011 4:00,8/03/2011 21:59,1.9,200, Information Exposure,nan
CVE-2011-1309,7/04/2011 4:00,8/03/2011 21:59,7.5,20, Improper Input Validation,nan
CVE-2007-4158,7/04/2011 4:00,3/08/2007 21:17,7.8,399, Resource Management Errors,nan
CVE-2010-1242,7/04/2011 3:18,5/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1652,6/04/2011 17:55,6/04/2011 17:55,5.0,16, Configuration,nan
CVE-2010-4596,6/04/2011 4:00,4/04/2011 12:27,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4235,6/04/2011 4:00,4/04/2011 12:27,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2011-1561,5/04/2011 15:19,5/04/2011 15:19,6.8,287, Improper Authentication,nan
CVE-2011-1558,5/04/2011 15:19,5/04/2011 15:19,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1557,5/04/2011 4:00,4/04/2011 12:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-1555,5/04/2011 4:00,4/04/2011 12:27,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7219,5/04/2011 4:00,13/09/2009 22:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0378,31/03/2011 3:29,25/02/2011 12:00,8.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0376,31/03/2011 3:29,25/02/2011 12:00,10.0,200, Information Exposure,nan
CVE-2011-0375,31/03/2011 3:29,25/02/2011 12:00,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0374,31/03/2011 3:29,25/02/2011 12:00,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0373,31/03/2011 3:29,25/02/2011 12:00,9.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0372,31/03/2011 3:29,25/02/2011 12:00,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2011-0167,31/03/2011 3:29,11/03/2011 22:55,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2011-0160,31/03/2011 3:29,11/03/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-0159,31/03/2011 3:29,11/03/2011 22:55,5.0,20, Improper Input Validation,nan
CVE-2011-0022,31/03/2011 3:28,23/02/2011 19:00,4.7,399, Resource Management Errors,nan
CVE-2011-0019,31/03/2011 3:28,23/02/2011 19:00,7.5,20, Improper Input Validation,nan
CVE-2011-1319,30/03/2011 4:00,8/03/2011 21:59,4.0,399, Resource Management Errors,nan
CVE-2011-1318,30/03/2011 4:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2011-1320,29/03/2011 4:00,8/03/2011 21:59,6.8,20, Improper Input Validation,nan
CVE-2011-0024,29/03/2011 4:00,28/03/2011 16:55,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0175,24/03/2011 18:35,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1416,24/03/2011 4:00,11/03/2011 17:55,5.0,200, Information Exposure,nan
CVE-2011-0183,24/03/2011 4:00,23/03/2011 2:00,5.0,189, Numeric Errors,nan
CVE-2011-0180,24/03/2011 4:00,23/03/2011 2:00,2.1,189, Numeric Errors,nan
CVE-2011-0179,24/03/2011 4:00,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0178,24/03/2011 4:00,23/03/2011 2:00,2.1,200, Information Exposure,nan
CVE-2011-0177,24/03/2011 4:00,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0176,24/03/2011 4:00,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0174,24/03/2011 4:00,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0173,24/03/2011 4:00,23/03/2011 2:00,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2011-0172,24/03/2011 4:00,23/03/2011 2:00,4.9,189, Numeric Errors,nan
CVE-2010-4774,24/03/2011 4:00,23/03/2011 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4772,24/03/2011 4:00,23/03/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4771,24/03/2011 4:00,23/03/2011 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4769,24/03/2011 4:00,23/03/2011 22:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-5062,24/03/2011 4:00,22/03/2011 17:55,3.5,399, Resource Management Errors,nan
CVE-2008-7286,24/03/2011 4:00,22/03/2011 17:55,3.5,20, Improper Input Validation,nan
CVE-2008-7284,24/03/2011 4:00,22/03/2011 17:55,3.5,399, Resource Management Errors,nan
CVE-2010-4261,24/03/2011 2:54,7/12/2010 13:53,7.5,189, Numeric Errors,nan
CVE-2010-3434,24/03/2011 2:52,30/09/2010 15:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0194,23/03/2011 4:00,23/03/2011 2:00,6.8,189, Numeric Errors,nan
CVE-2011-0193,23/03/2011 4:00,23/03/2011 2:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0190,23/03/2011 4:00,23/03/2011 2:00,4.3,20, Improper Input Validation,nan
CVE-2011-0189,23/03/2011 4:00,23/03/2011 2:00,5.0,16, Configuration,nan
CVE-2011-1428,22/03/2011 4:00,16/03/2011 22:55,5.8,20, Improper Input Validation,nan
CVE-2010-4768,22/03/2011 4:00,18/03/2011 16:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4767,22/03/2011 4:00,18/03/2011 16:55,5.0,20, Improper Input Validation,nan
CVE-2010-4766,22/03/2011 4:00,18/03/2011 16:55,4.3,20, Improper Input Validation,nan
CVE-2010-4765,22/03/2011 4:00,18/03/2011 16:55,4.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4764,22/03/2011 4:00,18/03/2011 16:55,5.0,255, Credentials Management,nan
CVE-2010-4763,22/03/2011 4:00,18/03/2011 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4762,22/03/2011 4:00,18/03/2011 16:55,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4761,22/03/2011 4:00,18/03/2011 16:55,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4760,22/03/2011 4:00,18/03/2011 16:55,3.5,200, Information Exposure,nan
CVE-2010-4759,22/03/2011 4:00,18/03/2011 16:55,4.0,20, Improper Input Validation,nan
CVE-2010-4758,22/03/2011 4:00,18/03/2011 16:55,1.9,310, Cryptographic Issues,nan
CVE-2009-5057,22/03/2011 4:00,18/03/2011 16:55,5.0,310, Cryptographic Issues,nan
CVE-2009-5056,22/03/2011 4:00,18/03/2011 16:55,2.1,20, Improper Input Validation,nan
CVE-2009-5055,22/03/2011 4:00,18/03/2011 16:55,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7283,22/03/2011 4:00,18/03/2011 16:55,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7282,22/03/2011 4:00,18/03/2011 16:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-7281,22/03/2011 4:00,18/03/2011 16:55,4.3,200, Information Exposure,nan
CVE-2008-7280,22/03/2011 4:00,18/03/2011 16:55,5.0,20, Improper Input Validation,nan
CVE-2008-7279,22/03/2011 4:00,18/03/2011 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7278,22/03/2011 4:00,18/03/2011 16:55,5.0,20, Improper Input Validation,nan
CVE-2008-7277,22/03/2011 4:00,18/03/2011 16:55,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7276,22/03/2011 4:00,18/03/2011 16:55,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-7275,22/03/2011 4:00,18/03/2011 16:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0330,18/03/2011 2:56,21/02/2011 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2011-0329,18/03/2011 2:56,21/02/2011 18:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2011-0132,18/03/2011 2:56,3/03/2011 20:00,7.6,399, Resource Management Errors,nan
CVE-2011-0115,18/03/2011 2:56,3/03/2011 20:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4652,18/03/2011 2:56,2/02/2011 1:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2264,18/03/2011 2:50,11/06/2010 19:30,4.3,200, Information Exposure,nan
CVE-2010-1760,18/03/2011 2:49,19/08/2010 22:00,10.0,255, Credentials Management,nan
CVE-2008-7265,18/03/2011 2:35,9/11/2010 21:00,4.0,399, Resource Management Errors,nan
CVE-2011-0457,15/03/2011 17:55,15/03/2011 17:55,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0432,15/03/2011 4:00,14/03/2011 19:55,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0697,11/03/2011 3:51,14/02/2011 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0696,11/03/2011 3:51,14/02/2011 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0453,11/03/2011 3:50,18/02/2011 17:00,5.0,287, Improper Authentication,nan
CVE-2011-0431,11/03/2011 3:50,19/02/2011 1:00,5.0,20, Improper Input Validation,nan
CVE-2010-3920,11/03/2011 3:48,8/12/2010 20:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2011-1321,10/03/2011 5:00,8/03/2011 21:59,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-6239,10/03/2011 5:00,3/12/2006 19:28,7.5,255, Credentials Management,nan
CVE-2006-4434,10/03/2011 5:00,29/08/2006 0:04,5.0,399, Resource Management Errors,nan
CVE-2005-2938,10/03/2011 5:00,18/11/2005 6:03,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2011-1322,9/03/2011 5:00,8/03/2011 21:59,5.0,399, Resource Management Errors,nan
CVE-2009-0548,8/03/2011 3:18,12/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0492,8/03/2011 3:18,10/02/2009 1:30,10.0,287, Improper Authentication,nan
CVE-2009-0477,8/03/2011 3:18,8/02/2009 21:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-0474,8/03/2011 3:18,6/02/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-0473,8/03/2011 3:18,6/02/2009 19:30,6.8,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0472,8/03/2011 3:18,6/02/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0271,8/03/2011 3:18,26/01/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0254,8/03/2011 3:18,22/01/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0142,8/03/2011 3:17,12/02/2009 23:30,1.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-0140,8/03/2011 3:17,13/02/2009 0:30,9.3,399, Resource Management Errors,nan
CVE-2009-0139,8/03/2011 3:17,13/02/2009 0:30,9.3,189, Numeric Errors,nan
CVE-2009-0138,8/03/2011 3:17,13/02/2009 0:30,10.0,287, Improper Authentication,nan
CVE-2009-0132,8/03/2011 3:17,15/01/2009 17:30,4.9,189, Numeric Errors,nan
CVE-2009-0056,8/03/2011 3:17,16/01/2009 21:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0055,8/03/2011 3:17,16/01/2009 21:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0054,8/03/2011 3:17,16/01/2009 21:30,4.3,255, Credentials Management,nan
CVE-2009-0053,8/03/2011 3:17,16/01/2009 21:30,4.3,310, Cryptographic Issues,nan
CVE-2009-0020,8/03/2011 3:17,13/02/2009 0:30,7.8,399, Resource Management Errors,nan
CVE-2009-0019,8/03/2011 3:17,13/02/2009 0:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0018,8/03/2011 3:17,13/02/2009 0:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0017,8/03/2011 3:17,13/02/2009 0:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0015,8/03/2011 3:17,13/02/2009 0:30,4.9,255, Credentials Management,nan
CVE-2009-0014,8/03/2011 3:17,13/02/2009 0:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-6145,8/03/2011 3:15,16/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6144,8/03/2011 3:15,16/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6096,8/03/2011 3:15,9/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5911,8/03/2011 3:15,20/01/2009 16:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5686,8/03/2011 3:14,19/12/2008 17:30,8.5,287, Improper Authentication,nan
CVE-2008-5609,8/03/2011 3:14,17/12/2008 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5280,8/03/2011 3:14,29/11/2008 2:30,5.0,399, Resource Management Errors,nan
CVE-2008-5279,8/03/2011 3:14,29/11/2008 2:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5235,8/03/2011 3:14,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5187,8/03/2011 3:14,21/11/2008 2:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5001,8/03/2011 3:13,10/11/2008 14:12,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4929,8/03/2011 3:13,4/11/2008 21:00,5.0,310, Cryptographic Issues,nan
CVE-2008-4928,8/03/2011 3:13,4/11/2008 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4831,8/03/2011 3:13,10/11/2008 14:12,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-4661,8/03/2011 3:12,22/10/2008 0:11,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4659,8/03/2011 3:12,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4658,8/03/2011 3:12,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4657,8/03/2011 3:12,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4656,8/03/2011 3:12,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4655,8/03/2011 3:12,22/10/2008 0:11,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4646,8/03/2011 3:12,22/10/2008 0:11,2.1,255, Credentials Management,nan
CVE-2008-4551,8/03/2011 3:12,14/10/2008 20:00,5.0,399, Resource Management Errors,nan
CVE-2008-4326,8/03/2011 3:12,30/09/2008 16:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4314,8/03/2011 3:12,1/12/2008 15:30,8.5,200, Information Exposure,nan
CVE-2008-4236,8/03/2011 3:12,17/12/2008 1:30,7.1,399, Resource Management Errors,nan
CVE-2008-4230,8/03/2011 3:12,25/11/2008 23:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-4229,8/03/2011 3:12,25/11/2008 23:30,3.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-4228,8/03/2011 3:12,25/11/2008 23:30,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-4224,8/03/2011 3:12,17/12/2008 1:30,7.1,20, Improper Input Validation,nan
CVE-2008-4223,8/03/2011 3:12,17/12/2008 1:30,10.0,287, Improper Authentication,nan
CVE-2008-4222,8/03/2011 3:12,17/12/2008 1:30,7.1,399, Resource Management Errors,nan
CVE-2008-4221,8/03/2011 3:12,17/12/2008 1:30,10.0,399, Resource Management Errors,nan
CVE-2008-4220,8/03/2011 3:12,17/12/2008 1:30,10.0,189, Numeric Errors,nan
CVE-2008-4219,8/03/2011 3:12,17/12/2008 1:30,4.9,399, Resource Management Errors,nan
CVE-2008-4218,8/03/2011 3:12,17/12/2008 1:30,7.2,189, Numeric Errors,nan
CVE-2008-4217,8/03/2011 3:12,17/12/2008 1:30,9.3,189, Numeric Errors,nan
CVE-2008-4171,8/03/2011 3:12,22/09/2008 18:34,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3909,8/03/2011 3:11,4/09/2008 17:41,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3830,8/03/2011 3:11,8/10/2008 22:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-3828,8/03/2011 3:11,8/10/2008 22:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3631,8/03/2011 3:11,11/09/2008 1:13,7.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-3516,8/03/2011 3:10,13/08/2008 0:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3515,8/03/2011 3:10,13/08/2008 0:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2991,8/03/2011 3:10,9/07/2008 18:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2889,8/03/2011 3:09,27/06/2008 18:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2306,8/03/2011 3:08,23/06/2008 20:41,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-2233,8/03/2011 3:08,18/08/2008 17:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-2172,8/03/2011 3:08,13/05/2008 22:20,7.1,20, Improper Input Validation,nan
CVE-2008-2171,8/03/2011 3:08,13/05/2008 22:20,7.1,20, Improper Input Validation,nan
CVE-2008-1995,8/03/2011 3:08,28/04/2008 17:05,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-1805,8/03/2011 3:07,6/06/2008 22:32,9.3,20, Improper Input Validation,nan
CVE-2008-1777,8/03/2011 3:07,14/04/2008 16:05,5.0,399, Resource Management Errors,nan
CVE-2008-1663,8/03/2011 3:07,9/07/2008 0:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1598,8/03/2011 3:07,31/03/2008 23:44,4.7,200, Information Exposure,nan
CVE-2008-1596,8/03/2011 3:07,31/03/2008 23:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-1592,8/03/2011 3:07,31/03/2008 23:44,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-1586,8/03/2011 3:07,25/11/2008 23:30,7.1,399, Resource Management Errors,nan
CVE-2008-1389,8/03/2011 3:07,4/09/2008 16:41,5.0,399, Resource Management Errors,nan
CVE-2008-1366,8/03/2011 3:06,17/03/2008 22:44,5.0,20, Improper Input Validation,nan
CVE-2008-1365,8/03/2011 3:06,17/03/2008 22:44,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-1130,8/03/2011 3:05,4/03/2008 0:44,6.6,287, Improper Authentication,nan
CVE-2008-1120,8/03/2011 3:05,3/03/2008 22:44,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2008-1073,8/03/2011 3:05,29/02/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1040,8/03/2011 3:05,27/02/2008 19:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0988,8/03/2011 3:05,18/03/2008 23:44,4.3,189, Numeric Errors,nan
CVE-2008-0935,8/03/2011 3:05,25/02/2008 18:44,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0932,8/03/2011 3:05,25/02/2008 21:44,7.5,20, Improper Input Validation,nan
CVE-2008-0904,8/03/2011 3:05,22/02/2008 21:44,7.8,200, Information Exposure,nan
CVE-2008-0902,8/03/2011 3:05,22/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0900,8/03/2011 3:05,22/02/2008 21:44,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-0899,8/03/2011 3:05,22/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0898,8/03/2011 3:05,22/02/2008 21:44,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2008-0897,8/03/2011 3:05,22/02/2008 21:44,7.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0896,8/03/2011 3:05,22/02/2008 21:44,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0895,8/03/2011 3:05,22/02/2008 21:44,6.4,287, Improper Authentication,nan
CVE-2008-0876,8/03/2011 3:05,21/02/2008 19:44,4.3,20, Improper Input Validation,nan
CVE-2008-0869,8/03/2011 3:05,21/02/2008 1:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0866,8/03/2011 3:05,21/02/2008 1:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0863,8/03/2011 3:05,21/02/2008 1:44,5.0,200, Information Exposure,nan
CVE-2008-0862,8/03/2011 3:05,21/02/2008 1:44,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-0861,8/03/2011 3:05,21/02/2008 1:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0858,8/03/2011 3:05,21/02/2008 0:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0834,8/03/2011 3:05,20/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0826,8/03/2011 3:05,19/02/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0825,8/03/2011 3:05,19/02/2008 20:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0807,8/03/2011 3:05,19/02/2008 1:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0740,8/03/2011 3:05,13/02/2008 1:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-0717,8/03/2011 3:05,12/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0715,8/03/2011 3:05,12/02/2008 2:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0698,8/03/2011 3:05,12/02/2008 1:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0697,8/03/2011 3:05,12/02/2008 1:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-0696,8/03/2011 3:05,12/02/2008 1:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0694,8/03/2011 3:05,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0693,8/03/2011 3:05,12/02/2008 1:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0668,8/03/2011 3:05,11/02/2008 21:00,9.3,189, Numeric Errors,nan
CVE-2008-0664,8/03/2011 3:05,8/02/2008 2:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-0646,8/03/2011 3:05,7/02/2008 21:00,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0642,8/03/2011 3:05,15/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0622,8/03/2011 3:05,6/02/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0577,8/03/2011 3:04,5/02/2008 2:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-0576,8/03/2011 3:04,5/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0571,8/03/2011 3:04,5/02/2008 2:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0570,8/03/2011 3:04,5/02/2008 2:00,5.0,20, Improper Input Validation,nan
CVE-2008-0569,8/03/2011 3:04,5/02/2008 2:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-0522,8/03/2011 3:04,31/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0400,8/03/2011 3:04,23/01/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0386,8/03/2011 3:04,4/02/2008 23:00,6.8,20, Improper Input Validation,nan
CVE-2008-0309,8/03/2011 3:04,28/02/2008 20:44,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0308,8/03/2011 3:04,28/02/2008 20:44,7.1,399, Resource Management Errors,nan
CVE-2008-0263,8/03/2011 3:04,15/01/2008 20:00,5.0,399, Resource Management Errors,nan
CVE-2008-0214,8/03/2011 3:04,8/02/2008 2:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-0064,8/03/2011 3:03,31/01/2008 20:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0043,8/03/2011 3:03,8/02/2008 2:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0042,8/03/2011 3:03,12/02/2008 20:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0041,8/03/2011 3:03,12/02/2008 20:00,5.0,200, Information Exposure,nan
CVE-2008-0040,8/03/2011 3:03,12/02/2008 20:00,10.0,399, Resource Management Errors,nan
CVE-2008-0039,8/03/2011 3:03,12/02/2008 20:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0038,8/03/2011 3:03,12/02/2008 20:00,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0037,8/03/2011 3:03,12/02/2008 20:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6706,8/03/2011 3:03,9/03/2008 2:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6612,8/03/2011 3:03,3/01/2008 22:46,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6594,8/03/2011 3:03,28/12/2007 21:46,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-6569,8/03/2011 3:03,28/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6531,8/03/2011 3:03,9/01/2008 23:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6530,8/03/2011 3:03,27/12/2007 22:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6468,8/03/2011 3:02,20/12/2007 0:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6465,8/03/2011 3:02,20/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6434,8/03/2011 3:02,18/12/2007 20:46,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2007-6433,8/03/2011 3:02,18/12/2007 20:46,7.5,20, Improper Input Validation,nan
CVE-2007-6424,8/03/2011 3:02,18/12/2007 19:46,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6383,8/03/2011 3:02,15/12/2007 2:46,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6371,8/03/2011 3:02,15/12/2007 1:46,7.1,20, Improper Input Validation,nan
CVE-2007-6356,8/03/2011 3:02,18/12/2007 20:46,5.0,399, Resource Management Errors,nan
CVE-2007-6343,8/03/2011 3:02,13/12/2007 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6313,8/03/2011 3:02,18/02/2008 23:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6305,8/03/2011 3:02,10/12/2007 21:46,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-6273,8/03/2011 3:02,7/12/2007 11:46,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2007-6219,8/03/2011 3:02,4/12/2007 17:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6190,8/03/2011 3:02,30/11/2007 1:46,3.5,200, Information Exposure,nan
CVE-2007-6168,8/03/2011 3:02,29/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6148,8/03/2011 3:02,13/02/2008 21:00,10.0,399, Resource Management Errors,nan
CVE-2007-6146,8/03/2011 3:02,27/11/2007 19:46,5.0,20, Improper Input Validation,nan
CVE-2007-6144,8/03/2011 3:02,27/11/2007 19:46,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6131,8/03/2011 3:01,26/11/2007 22:46,2.1,16, Configuration,nan
CVE-2007-6130,8/03/2011 3:01,26/11/2007 22:46,5.0,287, Improper Authentication,nan
CVE-2007-6102,8/03/2011 3:01,23/11/2007 20:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6053,8/03/2011 3:01,20/11/2007 20:46,9.3,399, Resource Management Errors,nan
CVE-2007-6050,8/03/2011 3:01,20/11/2007 20:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6049,8/03/2011 3:01,20/11/2007 20:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6048,8/03/2011 3:01,20/11/2007 20:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6047,8/03/2011 3:01,20/11/2007 20:46,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6017,8/03/2011 3:01,29/02/2008 19:44,5.1,20, Improper Input Validation,nan
CVE-2007-5965,8/03/2011 3:01,8/01/2008 1:46,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-5951,8/03/2011 3:01,14/11/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-5948,8/03/2011 3:01,14/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5944,8/03/2011 3:01,14/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5940,8/03/2011 3:01,13/11/2007 23:46,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5934,8/03/2011 3:01,13/11/2007 22:46,4.3,200, Information Exposure,nan
CVE-2007-5924,8/03/2011 3:01,10/11/2007 2:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5910,8/03/2011 3:01,10/11/2007 2:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5862,8/03/2011 3:01,18/12/2007 20:46,9.4,287, Improper Authentication,nan
CVE-2007-5810,8/03/2011 3:01,5/11/2007 17:46,5.0,20, Improper Input Validation,nan
CVE-2007-5809,8/03/2011 3:01,5/11/2007 17:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5797,8/03/2011 3:01,3/11/2007 0:46,7.5,287, Improper Authentication,nan
CVE-2007-5767,8/03/2011 3:01,2/11/2007 23:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5665,8/03/2011 3:01,9/01/2008 0:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5623,8/03/2011 3:01,23/10/2007 16:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5602,8/03/2011 3:01,5/02/2008 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5544,8/03/2011 3:00,29/10/2007 21:46,6.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5491,8/03/2011 3:00,17/10/2007 19:17,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5391,8/03/2011 3:00,12/10/2007 10:17,10.0,287, Improper Authentication,nan
CVE-2007-5377,8/03/2011 3:00,12/10/2007 0:17,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-5241,8/03/2011 3:00,6/10/2007 16:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5198,8/03/2011 3:00,4/10/2007 17:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5136,8/03/2011 3:00,28/09/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5100,8/03/2011 3:00,26/09/2007 22:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5087,8/03/2011 3:00,26/09/2007 10:17,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5086,8/03/2011 3:00,26/09/2007 10:17,2.1,20, Improper Input Validation,nan
CVE-2007-5064,8/03/2011 3:00,24/09/2007 22:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5046,8/03/2011 2:59,24/09/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5007,8/03/2011 2:59,12/12/2007 22:10,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4994,8/03/2011 2:59,6/11/2007 21:46,7.5,255, Credentials Management,nan
CVE-2007-4943,8/03/2011 2:59,18/09/2007 19:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4935,8/03/2011 2:59,18/09/2007 18:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4799,8/03/2011 2:59,10/09/2007 21:17,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-4797,8/03/2011 2:59,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4796,8/03/2011 2:59,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4795,8/03/2011 2:59,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4793,8/03/2011 2:59,10/09/2007 21:17,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4759,8/03/2011 2:59,8/09/2007 10:17,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4758,8/03/2011 2:59,8/09/2007 10:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-4718,8/03/2011 2:59,5/09/2007 19:17,5.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4717,8/03/2011 2:59,5/09/2007 19:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4696,8/03/2011 2:59,15/11/2007 1:46,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-4668,8/03/2011 2:58,4/09/2007 22:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4561,8/03/2011 2:58,28/08/2007 1:17,10.0,20, Improper Input Validation,nan
CVE-2007-4559,8/03/2011 2:58,28/08/2007 1:17,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-4542,8/03/2011 2:58,27/08/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4516,8/03/2011 2:58,21/02/2008 20:44,4.3,20, Improper Input Validation,nan
CVE-2007-4277,8/03/2011 2:58,30/10/2007 22:46,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-4271,8/03/2011 2:58,18/08/2007 21:17,2.1,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3918,8/03/2011 2:57,5/10/2007 22:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3369,8/03/2011 2:56,22/06/2007 18:30,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1426,8/03/2011 2:52,13/03/2007 1:19,7.8,20, Improper Input Validation,nan
CVE-2007-1309,8/03/2011 2:51,7/03/2007 0:19,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-1184,8/03/2011 2:51,2/03/2007 21:18,5.0,16, Configuration,nan
CVE-2007-1136,8/03/2011 2:51,2/03/2007 21:18,6.8,20, Improper Input Validation,nan
CVE-2007-1027,8/03/2011 2:51,21/02/2007 11:28,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-0979,8/03/2011 2:51,16/02/2007 1:28,5.0,200, Information Exposure,nan
CVE-2007-0729,8/03/2011 2:50,24/04/2007 16:19,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-0325,8/03/2011 2:49,20/02/2007 17:28,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6852,8/03/2011 2:47,31/12/2006 5:00,6.0,20, Improper Input Validation,nan
CVE-2006-6832,8/03/2011 2:47,31/12/2006 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6748,8/03/2011 2:46,27/12/2006 0:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6727,8/03/2011 2:46,26/12/2006 21:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6725,8/03/2011 2:46,26/12/2006 21:28,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-6706,8/03/2011 2:46,23/12/2006 1:28,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2006-6705,8/03/2011 2:46,23/12/2006 1:28,5.0,287, Improper Authentication,nan
CVE-2006-6400,8/03/2011 2:45,10/12/2006 2:28,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6212,8/03/2011 2:45,1/12/2006 1:28,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5859,8/03/2011 2:43,14/02/2007 1:28,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4801,8/03/2011 2:42,14/09/2006 22:07,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2006-4476,8/03/2011 2:41,31/08/2006 20:04,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-4475,8/03/2011 2:41,31/08/2006 20:04,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-4220,8/03/2011 2:40,31/12/2006 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-4136,8/03/2011 2:40,14/08/2006 23:04,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-0056,8/03/2011 2:29,13/02/2006 11:06,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4245,8/03/2011 2:27,14/12/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4244,8/03/2011 2:27,14/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-3908,8/03/2011 2:27,30/11/2005 11:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3760,8/03/2011 2:27,22/11/2005 23:03,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-3467,8/03/2011 2:26,2/11/2005 23:02,5.0,20, Improper Input Validation,nan
CVE-2005-2923,8/03/2011 2:25,7/12/2005 1:03,4.0,20, Improper Input Validation,nan
CVE-2005-2818,8/03/2011 2:25,7/09/2005 19:07,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-2752,8/03/2011 2:24,1/11/2005 12:47,2.1,200, Information Exposure,nan
CVE-2005-2310,8/03/2011 2:24,19/07/2005 4:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2426,8/03/2011 2:11,31/12/2002 5:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0012,7/03/2011 5:00,13/02/2009 0:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0318,7/03/2011 5:00,12/02/2008 20:00,10.0,189, Numeric Errors,nan
CVE-2007-5708,7/03/2011 5:00,30/10/2007 19:46,7.1,399, Resource Management Errors,nan
CVE-2007-4034,7/03/2011 5:00,27/07/2007 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1944,7/03/2011 5:00,11/04/2007 1:19,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0646,7/03/2011 5:00,1/02/2007 0:28,7.1,134, Use of Externally-Controlled Format String,nan
CVE-2007-0127,7/03/2011 5:00,9/01/2007 2:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-5647,7/03/2011 5:00,1/11/2006 15:07,6.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-5646,7/03/2011 5:00,1/11/2006 15:07,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-4223,7/03/2011 5:00,18/08/2006 20:04,5.0,200, Information Exposure,nan
CVE-2006-3127,7/03/2011 5:00,21/06/2006 23:02,7.8,399, Resource Management Errors,nan
CVE-2006-1982,7/03/2011 5:00,21/04/2006 22:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-0871,7/03/2011 5:00,24/02/2006 11:02,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0063,7/03/2011 5:00,5/01/2006 19:03,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4315,7/03/2011 5:00,17/12/2005 0:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4267,7/03/2011 5:00,21/12/2005 11:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4263,7/03/2011 5:00,15/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4228,7/03/2011 5:00,14/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4069,7/03/2011 5:00,8/12/2005 1:03,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2005-3714,7/03/2011 5:00,31/12/2005 5:00,5.0,399, Resource Management Errors,nan
CVE-2005-3496,7/03/2011 5:00,4/11/2005 0:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-1929,7/03/2011 5:00,14/12/2005 21:03,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4756,4/03/2011 5:00,2/03/2011 20:00,4.0,399, Resource Management Errors,nan
CVE-2011-1032,1/03/2011 7:08,15/02/2011 1:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-4005,1/03/2011 7:06,6/11/2010 0:00,6.9,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3906,1/03/2011 7:06,17/12/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3692,1/03/2011 7:06,7/10/2010 21:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3691,1/03/2011 7:06,7/10/2010 21:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-3690,1/03/2011 7:06,7/10/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2542,1/03/2011 7:03,11/08/2010 18:47,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1152,1/03/2011 7:01,12/04/2010 18:30,5.0,20, Improper Input Validation,nan
CVE-2011-1104,1/03/2011 5:00,28/02/2011 17:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2011-0917,25/02/2011 6:58,8/02/2011 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0004,25/02/2011 6:58,10/01/2011 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0918,23/02/2011 6:48,8/02/2011 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0916,23/02/2011 6:48,8/02/2011 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0914,23/02/2011 6:48,8/02/2011 22:00,10.0,189, Numeric Errors,nan
CVE-2011-0913,23/02/2011 6:48,8/02/2011 22:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0698,23/02/2011 6:48,14/02/2011 21:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4369,23/02/2011 6:47,2/12/2010 16:22,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4367,23/02/2011 6:47,2/12/2010 16:22,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2011-1049,22/02/2011 5:00,21/02/2011 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-1048,22/02/2011 5:00,21/02/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0774,22/02/2011 5:00,4/02/2011 1:00,5.0,200, Information Exposure,nan
CVE-2010-4523,17/02/2011 7:01,7/01/2011 20:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1729,17/02/2011 6:55,6/05/2010 14:53,4.3,399, Resource Management Errors,nan
CVE-2010-1388,17/02/2011 6:54,11/06/2010 18:00,4.3,200, Information Exposure,nan
CVE-2009-2200,17/02/2011 6:44,12/08/2009 19:30,7.1,200, Information Exposure,nan
CVE-2009-2195,17/02/2011 6:44,12/08/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1718,17/02/2011 6:43,10/06/2009 18:00,7.1,200, Information Exposure,nan
CVE-2009-1715,17/02/2011 6:43,10/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1703,17/02/2011 6:43,10/06/2009 18:00,7.1,200, Information Exposure,nan
CVE-2009-1697,17/02/2011 6:43,10/06/2009 18:00,4.3,20, Improper Input Validation,nan
CVE-2009-1696,17/02/2011 6:43,10/06/2009 18:00,5.0,310, Cryptographic Issues,nan
CVE-2009-1695,17/02/2011 6:43,10/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1691,17/02/2011 6:43,10/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1689,17/02/2011 6:43,10/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1688,17/02/2011 6:43,10/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1686,17/02/2011 6:43,10/06/2009 14:30,9.3,20, Improper Input Validation,nan
CVE-2009-1685,17/02/2011 6:43,10/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1684,17/02/2011 6:43,10/06/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4307,17/02/2011 5:00,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4306,17/02/2011 5:00,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4196,17/02/2011 5:00,10/02/2011 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-4195,17/02/2011 5:00,10/02/2011 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-4194,17/02/2011 5:00,10/02/2011 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-4193,17/02/2011 5:00,10/02/2011 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-4191,17/02/2011 5:00,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4187,17/02/2011 5:00,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4093,17/02/2011 5:00,10/02/2011 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0125,17/02/2011 5:00,14/12/2010 16:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4716,16/02/2011 23:40,31/01/2011 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-1034,16/02/2011 5:00,16/02/2011 3:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4735,16/02/2011 5:00,16/02/2011 3:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4717,16/02/2011 5:00,31/01/2011 20:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4715,16/02/2011 5:00,31/01/2011 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2001-1378,16/02/2011 5:00,6/09/2001 4:00,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2001-1009,16/02/2011 5:00,31/08/2001 4:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-0146,15/02/2011 20:45,25/06/2002 4:00,5.0,20, Improper Input Validation,nan
CVE-2011-1030,15/02/2011 5:00,14/02/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0702,15/02/2011 5:00,14/02/2011 21:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-4733,15/02/2011 5:00,15/02/2011 1:00,10.0,255, Credentials Management,nan
CVE-2010-4732,15/02/2011 5:00,15/02/2011 1:00,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4731,15/02/2011 5:00,15/02/2011 1:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4730,15/02/2011 5:00,15/02/2011 1:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4723,15/02/2011 5:00,3/02/2011 17:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-4721,15/02/2011 5:00,1/02/2011 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4720,15/02/2011 5:00,1/02/2011 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4718,15/02/2011 5:00,1/02/2011 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-5054,15/02/2011 5:00,3/02/2011 17:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7274,15/02/2011 5:00,15/02/2011 1:00,4.3,20, Improper Input Validation,nan
CVE-2011-0920,14/02/2011 5:00,8/02/2011 22:00,9.3,287, Improper Authentication,nan
CVE-2011-0911,14/02/2011 5:00,8/02/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0909,14/02/2011 5:00,8/02/2011 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2011-0526,14/02/2011 5:00,8/02/2011 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4729,14/02/2011 5:00,8/02/2011 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4728,14/02/2011 5:00,8/02/2011 22:00,5.0,310, Cryptographic Issues,nan
CVE-2011-0537,12/02/2011 6:46,4/02/2011 1:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3930,12/02/2011 6:44,2/02/2011 1:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3779,12/02/2011 6:44,6/10/2010 21:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3706,12/02/2011 6:44,6/10/2010 17:00,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3304,12/02/2011 6:43,24/09/2010 19:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-4531,5/02/2011 7:00,18/01/2011 18:03,4.4,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4209,5/02/2011 7:00,7/11/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4208,5/02/2011 7:00,7/11/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4207,5/02/2011 7:00,7/11/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4727,4/02/2011 5:00,3/02/2011 17:00,10.0,20, Improper Input Validation,nan
CVE-2010-4254,2/02/2011 6:59,6/12/2010 13:44,7.5,20, Improper Input Validation,nan
CVE-2009-3905,2/02/2011 6:48,6/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4196,1/02/2011 18:09,27/09/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0338,1/02/2011 5:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2779,31/01/2011 5:00,28/01/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2778,31/01/2011 5:00,28/01/2011 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2777,31/01/2011 5:00,28/01/2011 22:00,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4481,28/01/2011 5:00,17/12/2010 19:00,5.0,287, Improper Authentication,nan
CVE-2010-4480,28/01/2011 5:00,8/12/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4329,28/01/2011 5:00,2/12/2010 16:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3056,28/01/2011 5:00,24/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3055,28/01/2011 5:00,24/08/2010 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7252,28/01/2011 5:00,19/01/2010 16:30,10.0,310, Cryptographic Issues,nan
CVE-2010-4392,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4386,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4385,26/01/2011 6:52,14/12/2010 16:00,9.3,189, Numeric Errors,nan
CVE-2010-4384,26/01/2011 6:52,14/12/2010 16:00,9.3,20, Improper Input Validation,nan
CVE-2010-4383,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4382,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4379,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4378,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4375,26/01/2011 6:52,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3749,26/01/2011 6:51,19/10/2010 0:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2997,26/01/2011 6:50,14/12/2010 16:00,9.3,399, Resource Management Errors,nan
CVE-2010-2094,26/01/2011 6:48,27/05/2010 22:30,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2009-4269,26/01/2011 6:41,16/08/2010 20:00,2.1,310, Cryptographic Issues,nan
CVE-2009-1251,26/01/2011 6:35,9/04/2009 0:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1250,26/01/2011 6:35,9/04/2009 0:30,7.8,189, Numeric Errors,nan
CVE-2005-3294,26/01/2011 5:00,23/10/2005 21:02,5.0,399, Resource Management Errors,nan
CVE-2011-0519,24/01/2011 5:00,20/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2011-0514,24/01/2011 5:00,20/01/2011 19:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0501,24/01/2011 5:00,20/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0498,24/01/2011 5:00,20/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4071,24/01/2011 5:00,20/01/2011 19:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4586,22/01/2011 6:45,22/12/2010 3:00,10.0,16, Configuration,nan
CVE-2010-4584,22/01/2011 6:45,22/12/2010 3:00,2.6,310, Cryptographic Issues,nan
CVE-2010-4582,22/01/2011 6:45,22/12/2010 3:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4580,22/01/2011 6:45,22/12/2010 3:00,5.0,200, Information Exposure,nan
CVE-2010-4335,22/01/2011 6:44,14/01/2011 23:00,7.5,20, Improper Input Validation,nan
CVE-2010-3703,22/01/2011 6:43,5/11/2010 18:00,4.3,20, Improper Input Validation,nan
CVE-2010-3495,22/01/2011 6:43,19/10/2010 20:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1676,22/01/2011 6:39,22/12/2010 1:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2011-0016,22/01/2011 5:00,19/01/2011 12:00,2.1,399, Resource Management Errors,nan
CVE-2011-0513,21/01/2011 5:00,20/01/2011 19:00,7.2,20, Improper Input Validation,nan
CVE-2011-0500,21/01/2011 5:00,20/01/2011 19:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4703,21/01/2011 5:00,20/01/2011 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4535,20/01/2011 6:46,10/01/2011 20:00,5.0,20, Improper Input Validation,nan
CVE-2010-4534,20/01/2011 6:46,10/01/2011 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4262,20/01/2011 6:46,17/12/2010 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4013,20/01/2011 6:45,10/01/2011 20:00,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2009-4228,20/01/2011 6:37,8/12/2009 18:30,4.3,399, Resource Management Errors,nan
CVE-2009-3024,20/01/2011 6:35,31/08/2009 20:30,4.3,310, Cryptographic Issues,nan
CVE-2010-4588,19/01/2011 7:02,23/12/2010 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4524,19/01/2011 7:02,3/01/2011 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4397,19/01/2011 7:02,14/12/2010 16:00,9.3,189, Numeric Errors,nan
CVE-2010-4396,19/01/2011 7:02,14/12/2010 16:00,4.3,20, Improper Input Validation,nan
CVE-2010-4395,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4394,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4391,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4390,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4389,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4388,19/01/2011 7:02,14/12/2010 16:00,4.3,20, Improper Input Validation,nan
CVE-2010-4387,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4381,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4380,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4377,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4376,19/01/2011 7:02,14/12/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3616,19/01/2011 7:00,17/12/2010 19:00,5.0,20, Improper Input Validation,nan
CVE-2010-3076,19/01/2011 6:59,14/10/2010 5:57,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2999,19/01/2011 6:59,14/12/2010 16:00,9.3,189, Numeric Errors,nan
CVE-2010-0682,19/01/2011 6:55,23/02/2010 20:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0039,19/01/2011 6:53,22/12/2010 3:00,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2189,19/01/2011 6:48,22/12/2010 3:00,6.1,399, Resource Management Errors,nan
CVE-2010-4339,18/01/2011 5:00,14/01/2011 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4598,14/01/2011 6:48,23/12/2010 18:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3074,14/01/2011 6:46,17/09/2010 18:00,2.1,310, Cryptographic Issues,nan
CVE-2010-3073,14/01/2011 6:46,17/09/2010 18:00,2.1,310, Cryptographic Issues,nan
CVE-2010-2947,14/01/2011 6:46,24/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2523,14/01/2011 6:45,13/07/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2522,14/01/2011 6:45,13/07/2010 17:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-3922,12/01/2011 6:53,9/12/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3921,12/01/2011 6:53,9/12/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2808,12/01/2011 6:51,19/08/2010 18:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2806,12/01/2011 6:51,19/08/2010 18:00,6.8,399, Resource Management Errors,nan
CVE-2010-2603,12/01/2011 6:51,17/12/2010 19:00,2.1,310, Cryptographic Issues,nan
CVE-2010-1844,12/01/2011 6:49,16/11/2010 22:00,7.1,20, Improper Input Validation,nan
CVE-2010-1842,12/01/2011 6:49,15/11/2010 23:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1841,12/01/2011 6:49,15/11/2010 23:00,9.3,20, Improper Input Validation,nan
CVE-2010-1838,12/01/2011 6:49,15/11/2010 23:00,4.4,287, Improper Authentication,nan
CVE-2010-1837,12/01/2011 6:49,15/11/2010 23:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4507,12/01/2011 5:00,30/12/2010 19:00,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0391,12/01/2011 5:00,26/01/2010 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4597,11/01/2011 6:46,23/12/2010 18:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4593,11/01/2011 6:46,22/12/2010 21:00,4.0,399, Resource Management Errors,nan
CVE-2010-4592,11/01/2011 6:46,22/12/2010 21:00,4.3,399, Resource Management Errors,nan
CVE-2010-4591,11/01/2011 6:46,22/12/2010 21:00,4.4,287, Improper Authentication,nan
CVE-2010-4589,11/01/2011 6:46,22/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4521,11/01/2011 6:46,23/12/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4276,11/01/2011 6:46,30/12/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4114,11/01/2011 6:45,22/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4112,11/01/2011 6:45,22/12/2010 21:00,5.0,200, Information Exposure,nan
CVE-2010-4111,11/01/2011 6:45,22/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4094,11/01/2011 6:45,26/10/2010 18:00,5.0,255, Credentials Management,nan
CVE-2010-2792,11/01/2011 6:43,30/08/2010 20:00,3.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-0215,11/01/2011 5:00,7/01/2011 23:00,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0141,7/01/2011 5:00,28/01/2010 20:30,6.4,255, Credentials Management,nan
CVE-2010-0139,7/01/2011 5:00,28/01/2010 20:30,9.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0549,6/01/2011 5:00,4/02/2010 20:15,5.0,200, Information Exposure,nan
CVE-2009-4169,6/01/2011 5:00,2/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4157,6/01/2011 5:00,2/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4152,6/01/2011 5:00,2/12/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5417,5/01/2011 5:00,10/12/2008 14:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-4096,4/01/2011 6:45,27/10/2010 19:00,4.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4449,4/01/2011 6:37,29/12/2009 20:41,6.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4448,4/01/2011 6:37,29/12/2009 20:41,5.0,399, Resource Management Errors,nan
CVE-2010-4610,4/01/2011 5:00,29/12/2010 22:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4609,4/01/2011 5:00,29/12/2010 22:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4607,4/01/2011 5:00,29/12/2010 22:33,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4600,4/01/2011 5:00,29/12/2010 18:00,5.0,200, Information Exposure,nan
CVE-2010-2802,4/01/2011 5:00,7/09/2010 17:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4230,4/01/2011 5:00,8/12/2009 19:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2843,4/01/2011 5:00,8/12/2009 17:30,5.0,310, Cryptographic Issues,nan
CVE-2009-2175,4/01/2011 5:00,23/06/2009 21:30,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4201,3/01/2011 5:00,24/09/2008 11:42,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4638,31/12/2010 5:00,30/12/2010 21:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4634,31/12/2010 5:00,30/12/2010 21:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4632,31/12/2010 5:00,30/12/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4522,31/12/2010 5:00,30/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3862,31/12/2010 5:00,30/12/2010 21:00,2.6,20, Improper Input Validation,nan
CVE-2010-3878,30/12/2010 21:00,30/12/2010 21:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3708,30/12/2010 21:00,30/12/2010 21:00,7.5,20, Improper Input Validation,nan
CVE-2010-4618,30/12/2010 5:00,29/12/2010 22:33,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4614,30/12/2010 5:00,29/12/2010 22:33,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4613,30/12/2010 5:00,29/12/2010 22:33,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4608,30/12/2010 5:00,29/12/2010 22:33,5.0,200, Information Exposure,nan
CVE-2010-1319,29/12/2010 5:00,20/04/2010 15:30,10.0,189, Numeric Errors,nan
CVE-2008-5313,28/12/2010 5:00,3/12/2008 17:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5312,28/12/2010 5:00,3/12/2008 17:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-4590,27/12/2010 18:55,22/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4594,27/12/2010 18:54,22/12/2010 21:00,4.3,399, Resource Management Errors,nan
CVE-2010-4595,27/12/2010 18:53,22/12/2010 21:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4519,27/12/2010 5:00,23/12/2010 18:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4520,23/12/2010 18:00,23/12/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4212,22/12/2010 5:00,9/11/2010 1:00,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-4252,22/12/2010 5:00,10/12/2009 1:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-2254,21/12/2010 5:00,13/07/2005 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4558,20/12/2010 5:00,17/12/2010 19:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4400,20/12/2010 5:00,6/12/2010 13:37,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4399,20/12/2010 5:00,6/12/2010 13:37,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4518,18/12/2010 7:07,9/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4515,18/12/2010 7:07,9/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4512,18/12/2010 7:07,9/12/2010 20:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-4168,18/12/2010 7:06,17/11/2010 16:00,5.0,399, Resource Management Errors,nan
CVE-2010-3787,18/12/2010 7:06,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4553,17/12/2010 5:00,16/12/2010 20:00,5.0,20, Improper Input Validation,nan
CVE-2010-4552,17/12/2010 5:00,16/12/2010 20:00,5.0,399, Resource Management Errors,nan
CVE-2010-4550,17/12/2010 5:00,16/12/2010 20:00,5.0,20, Improper Input Validation,nan
CVE-2010-4549,17/12/2010 5:00,16/12/2010 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4548,17/12/2010 5:00,16/12/2010 20:00,2.1,20, Improper Input Validation,nan
CVE-2010-4547,17/12/2010 5:00,16/12/2010 20:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-4546,17/12/2010 5:00,16/12/2010 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4545,17/12/2010 5:00,16/12/2010 20:00,4.0,399, Resource Management Errors,nan
CVE-2009-5035,17/12/2010 5:00,16/12/2010 20:00,4.3,200, Information Exposure,nan
CVE-2010-4401,16/12/2010 19:58,6/12/2010 13:37,5.0,200, Information Exposure,nan
CVE-2010-4406,16/12/2010 5:00,6/12/2010 13:37,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4405,16/12/2010 5:00,6/12/2010 13:37,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4404,16/12/2010 5:00,6/12/2010 13:37,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3172,16/12/2010 5:00,5/11/2010 17:00,2.6,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-1999-0001,16/12/2010 5:00,30/12/1999 5:00,5.0,20, Improper Input Validation,nan
CVE-2010-1093,14/12/2010 14:34,24/03/2010 22:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1097,14/12/2010 5:00,24/03/2010 22:44,6.8,287, Improper Authentication,nan
CVE-2010-1095,14/12/2010 5:00,24/03/2010 22:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3919,13/12/2010 5:00,10/12/2010 19:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-3918,13/12/2010 5:00,10/12/2010 19:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-3795,11/12/2010 6:47,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3794,11/12/2010 6:47,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3793,11/12/2010 6:47,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3792,11/12/2010 6:47,16/11/2010 22:00,6.8,189, Numeric Errors,nan
CVE-2010-3791,11/12/2010 6:47,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3789,11/12/2010 6:47,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3788,11/12/2010 6:47,16/11/2010 22:00,6.8,20, Improper Input Validation,nan
CVE-2010-4412,10/12/2010 14:08,7/12/2010 13:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3798,10/12/2010 6:45,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3797,10/12/2010 6:45,16/11/2010 22:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3783,10/12/2010 6:45,16/11/2010 22:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-3065,10/12/2010 6:44,20/08/2010 20:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3038,10/12/2010 6:44,22/11/2010 20:00,10.0,255, Credentials Management,nan
CVE-2010-3037,10/12/2010 6:44,22/11/2010 20:00,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2807,10/12/2010 6:43,19/08/2010 18:00,6.8,189, Numeric Errors,nan
CVE-2010-2547,10/12/2010 6:43,5/08/2010 18:17,5.1,399, Resource Management Errors,nan
CVE-2010-2477,10/12/2010 6:43,6/11/2010 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1847,10/12/2010 6:41,16/11/2010 22:00,4.9,399, Resource Management Errors,nan
CVE-2010-1846,10/12/2010 6:41,16/11/2010 22:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1843,10/12/2010 6:41,16/11/2010 22:00,7.8,20, Improper Input Validation,nan
CVE-2010-1840,10/12/2010 6:41,15/11/2010 23:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1836,10/12/2010 6:41,15/11/2010 23:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1834,10/12/2010 6:41,15/11/2010 23:00,5.8,20, Improper Input Validation,nan
CVE-2010-1833,10/12/2010 6:41,15/11/2010 23:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1832,10/12/2010 6:41,15/11/2010 23:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1831,10/12/2010 6:41,15/11/2010 23:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1829,10/12/2010 6:41,15/11/2010 23:00,6.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1828,10/12/2010 6:41,15/11/2010 23:00,5.0,20, Improper Input Validation,nan
CVE-2010-1128,10/12/2010 6:39,26/03/2010 20:30,6.4,310, Cryptographic Issues,nan
CVE-2009-1707,10/12/2010 6:30,10/06/2009 18:00,1.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4517,10/12/2010 5:00,9/12/2010 21:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4516,10/12/2010 5:00,9/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4514,10/12/2010 5:00,9/12/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4246,10/12/2010 5:00,7/12/2010 13:53,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2235,10/12/2010 5:00,9/12/2010 20:00,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4505,9/12/2010 5:00,8/12/2010 20:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4504,9/12/2010 5:00,8/12/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4503,9/12/2010 5:00,8/12/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4502,9/12/2010 5:00,8/12/2010 20:00,7.2,189, Numeric Errors,nan
CVE-2010-4500,9/12/2010 5:00,8/12/2010 17:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4012,9/12/2010 5:00,8/12/2010 20:00,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-4179,8/12/2010 5:00,7/12/2010 22:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3064,7/12/2010 6:50,20/08/2010 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3063,7/12/2010 6:50,20/08/2010 20:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3062,7/12/2010 6:50,20/08/2010 20:00,5.0,200, Information Exposure,nan
CVE-2010-2093,7/12/2010 6:48,27/05/2010 22:30,5.0,399, Resource Management Errors,nan
CVE-2010-1526,7/12/2010 6:47,24/08/2010 22:00,6.8,189, Numeric Errors,nan
CVE-2009-4111,7/12/2010 6:43,29/11/2009 13:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-4368,3/12/2010 5:00,2/12/2010 16:22,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-5020,2/12/2010 16:22,2/12/2010 16:22,5.8,20, Improper Input Validation,nan
CVE-2010-4365,2/12/2010 5:00,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4361,2/12/2010 5:00,1/12/2010 16:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4360,2/12/2010 5:00,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4359,2/12/2010 5:00,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4357,2/12/2010 5:00,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4356,2/12/2010 5:00,1/12/2010 16:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4354,1/12/2010 5:00,30/11/2010 22:14,5.0,200, Information Exposure,nan
CVE-2009-5017,1/12/2010 5:00,12/11/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3766,1/12/2010 5:00,23/10/2009 19:30,6.8,310, Cryptographic Issues,nan
CVE-2010-4305,30/11/2010 5:00,22/11/2010 20:00,5.0,310, Cryptographic Issues,nan
CVE-2010-4304,30/11/2010 5:00,22/11/2010 20:00,6.4,310, Cryptographic Issues,nan
CVE-2010-4303,30/11/2010 5:00,22/11/2010 20:00,4.9,255, Credentials Management,nan
CVE-2010-4302,30/11/2010 5:00,22/11/2010 20:00,4.9,310, Cryptographic Issues,nan
CVE-2010-4173,30/11/2010 5:00,22/11/2010 20:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-1318,24/11/2010 5:00,20/04/2010 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1378,22/11/2010 5:00,15/11/2010 23:00,7.5,310, Cryptographic Issues,nan
CVE-2010-2057,19/11/2010 5:00,20/10/2010 18:00,5.0,310, Cryptographic Issues,nan
CVE-2009-2624,18/11/2010 6:29,29/01/2010 18:30,6.8,20, Improper Input Validation,nan
CVE-2010-4271,18/11/2010 5:00,17/11/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3869,18/11/2010 5:00,17/11/2010 16:00,4.0,310, Cryptographic Issues,nan
CVE-2010-3868,18/11/2010 5:00,17/11/2010 16:00,5.8,287, Improper Authentication,nan
CVE-2010-4270,17/11/2010 5:00,17/11/2010 1:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-4011,17/11/2010 5:00,17/11/2010 1:00,4.0,200, Information Exposure,nan
CVE-2010-3796,17/11/2010 5:00,16/11/2010 22:00,4.3,200, Information Exposure,nan
CVE-2010-1801,17/11/2010 5:00,25/08/2010 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4898,12/11/2010 5:00,7/09/2010 17:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4101,11/11/2010 6:50,2/11/2010 2:26,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4024,11/11/2010 6:50,28/10/2010 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-4023,11/11/2010 6:50,28/10/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3991,11/11/2010 6:50,28/10/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3989,11/11/2010 6:50,28/10/2010 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3987,11/11/2010 6:50,28/10/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3291,11/11/2010 6:50,21/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3288,11/11/2010 6:50,23/10/2010 20:39,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0136,11/11/2010 6:44,16/02/2010 19:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-5007,11/11/2010 6:44,14/10/2010 5:52,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-4217,10/11/2010 17:19,9/11/2010 21:00,5.0,399, Resource Management Errors,nan
CVE-2010-3040,10/11/2010 15:26,9/11/2010 21:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4220,10/11/2010 5:00,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4219,10/11/2010 5:00,9/11/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4214,9/11/2010 5:00,9/11/2010 1:00,4.3,310, Cryptographic Issues,nan
CVE-2010-4213,9/11/2010 5:00,9/11/2010 1:00,4.3,310, Cryptographic Issues,nan
CVE-2010-4183,9/11/2010 5:00,5/11/2010 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3913,9/11/2010 5:00,5/11/2010 17:00,4.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-5014,9/11/2010 5:00,6/11/2010 0:00,7.5,310, Cryptographic Issues,nan
CVE-2010-4000,8/11/2010 5:00,6/11/2010 0:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-3994,6/11/2010 5:39,28/10/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3036,6/11/2010 5:38,29/10/2010 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2445,6/11/2010 4:00,8/07/2010 12:54,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-4142,4/11/2010 4:00,2/11/2010 2:26,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0607,4/11/2010 4:00,11/02/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0606,3/11/2010 18:16,11/02/2010 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0609,3/11/2010 17:46,11/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-4143,3/11/2010 15:49,2/11/2010 2:26,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3983,3/11/2010 6:00,18/10/2010 17:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3981,3/11/2010 6:00,18/10/2010 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2536,3/11/2010 5:59,2/08/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-4145,3/11/2010 4:00,2/11/2010 2:26,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0563,3/11/2010 4:00,8/02/2010 21:30,5.0,200, Information Exposure,nan
CVE-2010-2242,30/10/2010 5:41,19/08/2010 18:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-2239,30/10/2010 5:41,19/08/2010 18:00,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-2237,30/10/2010 5:41,19/08/2010 18:00,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-2238,30/10/2010 4:00,19/08/2010 18:00,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-4121,29/10/2010 4:00,28/10/2010 21:00,7.5,287, Improper Authentication,nan
CVE-2009-4893,28/10/2010 5:42,15/06/2010 14:04,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3842,28/10/2010 4:00,28/10/2010 0:00,5.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3713,28/10/2010 4:00,28/10/2010 0:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2886,28/10/2010 4:00,26/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2885,28/10/2010 4:00,26/10/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2585,28/10/2010 4:00,26/10/2010 19:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2584,28/10/2010 4:00,26/10/2010 19:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-4070,27/10/2010 4:00,25/10/2010 20:01,10.0,189, Numeric Errors,nan
CVE-2010-4069,27/10/2010 4:00,25/10/2010 20:01,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4068,27/10/2010 4:00,25/10/2010 20:01,4.9,20, Improper Input Validation,nan
CVE-2010-3717,27/10/2010 4:00,25/10/2010 20:01,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3716,27/10/2010 4:00,25/10/2010 20:01,6.0,20, Improper Input Validation,nan
CVE-2010-3715,27/10/2010 4:00,25/10/2010 20:01,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5364,25/10/2010 4:00,8/12/2008 11:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-4007,21/10/2010 4:00,20/10/2010 18:00,5.0,310, Cryptographic Issues,nan
CVE-2010-3494,20/10/2010 4:00,19/10/2010 20:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-5013,20/10/2010 4:00,19/10/2010 20:00,4.0,399, Resource Management Errors,nan
CVE-2009-5012,20/10/2010 4:00,19/10/2010 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-5011,20/10/2010 4:00,19/10/2010 20:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-5010,20/10/2010 4:00,19/10/2010 20:00,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-7264,20/10/2010 4:00,19/10/2010 20:00,4.0,20, Improper Input Validation,nan
CVE-2008-7263,20/10/2010 4:00,19/10/2010 20:00,7.5,287, Improper Authentication,nan
CVE-2008-7262,20/10/2010 4:00,19/10/2010 20:00,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6741,20/10/2010 4:00,19/10/2010 20:00,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6740,20/10/2010 4:00,19/10/2010 20:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6739,20/10/2010 4:00,19/10/2010 20:00,5.0,20, Improper Input Validation,nan
CVE-2007-6737,20/10/2010 4:00,19/10/2010 20:00,7.5,287, Improper Authentication,nan
CVE-2007-6736,20/10/2010 4:00,19/10/2010 20:00,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3979,19/10/2010 4:00,18/10/2010 17:00,5.0,200, Information Exposure,nan
CVE-2010-3751,19/10/2010 4:00,19/10/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3750,19/10/2010 4:00,19/10/2010 0:00,9.3,20, Improper Input Validation,nan
CVE-2010-3748,19/10/2010 4:00,19/10/2010 0:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2998,19/10/2010 4:00,19/10/2010 0:00,9.3,20, Improper Input Validation,nan
CVE-2010-2578,19/10/2010 4:00,19/10/2010 0:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3934,15/10/2010 4:00,14/10/2010 19:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2601,15/10/2010 4:00,14/10/2010 18:00,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-5009,14/10/2010 22:49,14/10/2010 5:52,5.0,399, Resource Management Errors,nan
CVE-2010-3901,14/10/2010 5:58,14/10/2010 5:58,6.4,20, Improper Input Validation,nan
CVE-2010-3192,14/10/2010 5:58,14/10/2010 5:58,5.0,200, Information Exposure,nan
CVE-2009-5008,14/10/2010 5:52,14/10/2010 5:52,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-3701,13/10/2010 17:48,12/10/2010 21:00,4.0,399, Resource Management Errors,nan
CVE-2010-3085,13/10/2010 4:00,12/10/2010 21:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3887,11/10/2010 18:01,8/10/2010 22:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-3883,11/10/2010 17:45,8/10/2010 21:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-3882,11/10/2010 17:42,8/10/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3088,11/10/2010 17:30,8/10/2010 21:00,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2797,11/10/2010 17:14,8/10/2010 21:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3697,8/10/2010 4:00,7/10/2010 21:00,4.3,399, Resource Management Errors,nan
CVE-2010-3696,8/10/2010 4:00,7/10/2010 21:00,4.3,399, Resource Management Errors,nan
CVE-2010-3070,7/10/2010 5:50,28/09/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4331,7/10/2010 5:44,16/12/2009 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2367,7/10/2010 4:00,6/10/2010 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3761,6/10/2010 18:14,5/10/2010 22:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3760,6/10/2010 18:11,5/10/2010 22:00,7.8,399, Resource Management Errors,nan
CVE-2010-3742,6/10/2010 14:13,5/10/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-3739,6/10/2010 4:00,5/10/2010 18:00,6.4,287, Improper Authentication,nan
CVE-2010-3307,5/10/2010 18:00,5/10/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2535,5/10/2010 18:00,5/10/2010 18:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3688,30/09/2010 17:34,29/09/2010 17:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2221,30/09/2010 6:01,8/07/2010 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1866,30/09/2010 6:00,7/05/2010 23:00,7.5,189, Numeric Errors,nan
CVE-2010-3686,30/09/2010 4:00,29/09/2010 17:00,5.0,287, Improper Authentication,nan
CVE-2010-3685,30/09/2010 4:00,29/09/2010 17:00,5.0,287, Improper Authentication,nan
CVE-2010-3468,30/09/2010 4:00,29/09/2010 17:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3091,30/09/2010 4:00,29/09/2010 17:00,5.0,287, Improper Authentication,nan
CVE-2010-2530,30/09/2010 4:00,29/09/2010 17:00,4.9,189, Numeric Errors,nan
CVE-2010-3277,29/09/2010 4:00,28/09/2010 18:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-3605,27/09/2010 20:38,24/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3608,27/09/2010 4:00,24/09/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3604,27/09/2010 4:00,24/09/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3601,27/09/2010 4:00,24/09/2010 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3306,27/09/2010 4:00,24/09/2010 19:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2836,24/09/2010 18:12,23/09/2010 19:00,7.8,399, Resource Management Errors,nan
CVE-2010-3489,23/09/2010 4:00,22/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3487,23/09/2010 4:00,22/09/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3485,23/09/2010 4:00,22/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3484,23/09/2010 4:00,22/09/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3483,23/09/2010 4:00,22/09/2010 20:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3482,23/09/2010 4:00,22/09/2010 20:00,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3314,22/09/2010 22:28,22/09/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3202,22/09/2010 5:47,13/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3094,22/09/2010 4:00,21/09/2010 20:00,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3093,22/09/2010 4:00,21/09/2010 20:00,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-3092,22/09/2010 4:00,21/09/2010 20:00,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0653,21/09/2010 5:46,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-3473,21/09/2010 4:00,20/09/2010 22:00,5.8,20, Improper Input Validation,nan
CVE-2010-3472,21/09/2010 4:00,20/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3471,21/09/2010 4:00,20/09/2010 22:00,4.3,287, Improper Authentication,nan
CVE-2010-3470,21/09/2010 4:00,20/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2149,21/09/2010 4:00,3/06/2010 16:30,4.0,287, Improper Authentication,nan
CVE-2009-5002,21/09/2010 4:00,20/09/2010 22:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-5001,21/09/2010 4:00,20/09/2010 22:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-5000,21/09/2010 4:00,20/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4999,21/09/2010 4:00,20/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4998,21/09/2010 4:00,20/09/2010 22:00,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-7261,21/09/2010 4:00,20/09/2010 22:00,2.1,255, Credentials Management,nan
CVE-2006-7242,21/09/2010 4:00,20/09/2010 22:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2006-7241,21/09/2010 4:00,20/09/2010 22:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3462,20/09/2010 4:00,17/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3075,20/09/2010 4:00,17/09/2010 18:00,5.0,310, Cryptographic Issues,nan
CVE-2010-3428,17/09/2010 4:00,16/09/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3427,17/09/2010 4:00,16/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3424,17/09/2010 4:00,16/09/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3422,17/09/2010 4:00,16/09/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-0460,15/09/2010 5:41,24/01/2007 1:28,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2961,15/09/2010 4:00,14/09/2010 19:00,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2799,15/09/2010 4:00,14/09/2010 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-3322,14/09/2010 17:00,14/09/2010 17:00,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2958,14/09/2010 5:44,8/09/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3320,14/09/2010 4:00,13/09/2010 21:00,6.8,20, Improper Input Validation,nan
CVE-2010-3319,14/09/2010 4:00,13/09/2010 21:00,5.0,255, Credentials Management,nan
CVE-2010-3318,14/09/2010 4:00,13/09/2010 21:00,5.0,255, Credentials Management,nan
CVE-2010-3317,14/09/2010 4:00,13/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2366,14/09/2010 4:00,13/09/2010 21:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3034,13/09/2010 4:00,10/09/2010 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-3033,13/09/2010 4:00,10/09/2010 18:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2843,13/09/2010 4:00,10/09/2010 18:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2842,13/09/2010 4:00,10/09/2010 18:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0575,13/09/2010 4:00,10/09/2010 18:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2957,10/09/2010 18:00,10/09/2010 18:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3018,10/09/2010 4:00,9/09/2010 22:00,4.3,200, Information Exposure,nan
CVE-2010-2840,9/09/2010 5:43,26/08/2010 21:00,7.8,20, Improper Input Validation,nan
CVE-2010-2839,9/09/2010 5:43,26/08/2010 21:00,7.8,399, Resource Management Errors,nan
CVE-2010-2480,9/09/2010 5:42,2/07/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2231,9/09/2010 5:42,28/06/2010 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2230,9/09/2010 5:42,28/06/2010 17:30,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2229,9/09/2010 5:42,28/06/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2228,9/09/2010 5:42,28/06/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2074,9/09/2010 5:42,16/06/2010 20:30,6.8,20, Improper Input Validation,nan
CVE-2010-1459,9/09/2010 5:41,27/05/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0926,9/09/2010 5:40,10/03/2010 20:13,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0438,9/09/2010 5:39,9/02/2010 19:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3264,9/09/2010 4:00,8/09/2010 20:00,2.1,255, Credentials Management,nan
CVE-2010-3244,8/09/2010 17:43,7/09/2010 18:00,4.6,200, Information Exposure,nan
CVE-2009-4997,8/09/2010 17:08,7/09/2010 18:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2006-7240,8/09/2010 15:26,7/09/2010 18:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2794,8/09/2010 5:48,30/08/2010 20:00,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2759,8/09/2010 5:48,16/08/2010 15:14,4.0,189, Numeric Errors,nan
CVE-2010-2758,8/09/2010 5:48,16/08/2010 15:14,5.0,200, Information Exposure,nan
CVE-2010-2757,8/09/2010 5:48,16/08/2010 15:14,6.5,310, Cryptographic Issues,nan
CVE-2010-2756,8/09/2010 5:48,16/08/2010 15:14,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2739,8/09/2010 4:00,7/09/2010 18:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4996,8/09/2010 4:00,7/09/2010 18:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-3203,6/09/2010 4:00,3/09/2010 18:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1507,6/09/2010 4:00,3/09/2010 20:00,5.0,255, Credentials Management,nan
CVE-2010-2365,31/08/2010 22:00,31/08/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2364,31/08/2010 22:00,31/08/2010 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1311,31/08/2010 5:43,8/04/2010 17:30,5.0,20, Improper Input Validation,nan
CVE-2010-1129,31/08/2010 5:42,26/03/2010 20:30,7.5,20, Improper Input Validation,nan
CVE-2010-2945,31/08/2010 4:00,30/08/2010 20:00,6.9,16, Configuration,nan
CVE-2010-3031,30/08/2010 4:00,17/08/2010 20:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5227,30/08/2010 4:00,5/10/2007 23:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2330,30/08/2010 4:00,31/12/2002 5:00,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-3122,26/08/2010 4:00,25/08/2010 20:00,5.0,255, Credentials Management,nan
CVE-2010-3121,26/08/2010 4:00,25/08/2010 20:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1808,26/08/2010 4:00,25/08/2010 20:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1802,26/08/2010 4:00,25/08/2010 20:00,6.4,287, Improper Authentication,nan
CVE-2010-1800,26/08/2010 4:00,25/08/2010 20:00,5.0,200, Information Exposure,nan
CVE-2009-4995,26/08/2010 4:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4994,26/08/2010 4:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4991,25/08/2010 20:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4990,25/08/2010 20:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4989,25/08/2010 20:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4983,25/08/2010 20:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4981,25/08/2010 20:00,25/08/2010 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4980,25/08/2010 20:00,25/08/2010 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4979,25/08/2010 20:00,25/08/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3176,25/08/2010 5:36,11/09/2009 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2784,25/08/2010 4:00,24/08/2010 18:00,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-2076,25/08/2010 4:00,19/08/2010 18:00,7.5,20, Improper Input Validation,nan
CVE-2010-0431,25/08/2010 4:00,24/08/2010 18:00,6.6,20, Improper Input Validation,nan
CVE-2010-0429,25/08/2010 4:00,24/08/2010 18:00,6.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0428,25/08/2010 4:00,24/08/2010 18:00,6.6,20, Improper Input Validation,nan
CVE-2010-3098,24/08/2010 15:16,20/08/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2628,24/08/2010 5:46,20/08/2010 18:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7258,24/08/2010 5:33,20/08/2010 18:00,2.1,20, Improper Input Validation,nan
CVE-2010-3097,24/08/2010 4:00,20/08/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3058,24/08/2010 4:00,20/08/2010 18:00,7.5,399, Resource Management Errors,nan
CVE-2010-3104,23/08/2010 4:00,21/08/2010 0:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3103,23/08/2010 4:00,21/08/2010 0:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3102,23/08/2010 4:00,21/08/2010 0:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3101,23/08/2010 4:00,21/08/2010 0:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3100,23/08/2010 4:00,20/08/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3099,23/08/2010 4:00,20/08/2010 20:00,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-3059,23/08/2010 4:00,20/08/2010 18:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2944,23/08/2010 4:00,20/08/2010 20:00,7.5,287, Improper Authentication,nan
CVE-2010-2827,20/08/2010 6:01,16/08/2010 18:39,7.8,20, Improper Input Validation,nan
CVE-2010-2973,18/08/2010 5:50,5/08/2010 18:17,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-3030,18/08/2010 4:00,17/08/2010 20:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2812,18/08/2010 4:00,17/08/2010 22:00,5.0,20, Improper Input Validation,nan
CVE-2010-3029,17/08/2010 16:25,16/08/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3027,17/08/2010 4:00,16/08/2010 20:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2577,16/08/2010 17:37,16/08/2010 17:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-3013,16/08/2010 17:12,16/08/2010 17:12,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2991,12/08/2010 21:18,11/08/2010 20:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4902,12/08/2010 14:22,18/06/2010 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0758,12/08/2010 14:13,3/03/2009 16:30,7.8,399, Resource Management Errors,nan
CVE-2010-2988,10/08/2010 20:02,10/08/2010 12:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2987,10/08/2010 19:59,10/08/2010 12:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2978,10/08/2010 14:26,10/08/2010 12:19,10.0,310, Cryptographic Issues,nan
CVE-2010-2977,10/08/2010 14:26,10/08/2010 12:19,10.0,16, Configuration,nan
CVE-2010-2976,10/08/2010 14:25,10/08/2010 12:19,10.0,255, Credentials Management,nan
CVE-2010-2985,10/08/2010 12:23,10/08/2010 12:23,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2493,10/08/2010 12:23,10/08/2010 12:23,5.0,16, Configuration,nan
CVE-2010-2474,10/08/2010 12:23,10/08/2010 12:23,3.5,20, Improper Input Validation,nan
CVE-2010-0834,10/08/2010 12:23,10/08/2010 12:23,9.3,287, Improper Authentication,nan
CVE-2010-2982,10/08/2010 12:19,10/08/2010 12:19,7.1,200, Information Exposure,nan
CVE-2010-2980,10/08/2010 12:19,10/08/2010 12:19,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2979,10/08/2010 12:19,10/08/2010 12:19,7.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2975,10/08/2010 12:18,10/08/2010 12:18,2.1,200, Information Exposure,nan
CVE-2010-2819,10/08/2010 4:00,9/08/2010 11:58,7.8,20, Improper Input Validation,nan
CVE-2010-2800,9/08/2010 11:58,9/08/2010 11:58,4.3,399, Resource Management Errors,nan
CVE-2010-2974,9/08/2010 4:00,5/08/2010 19:17,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2725,5/08/2010 13:23,5/08/2010 13:23,7.5,20, Improper Input Validation,nan
CVE-2010-2970,5/08/2010 13:22,5/08/2010 13:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2969,5/08/2010 13:22,5/08/2010 13:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2968,5/08/2010 13:22,5/08/2010 13:22,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2010-2967,5/08/2010 13:22,5/08/2010 13:22,7.8,310, Cryptographic Issues,nan
CVE-2010-2966,5/08/2010 13:22,5/08/2010 13:22,7.8,255, Credentials Management,nan
CVE-2010-2965,5/08/2010 13:22,5/08/2010 13:22,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2487,5/08/2010 13:22,5/08/2010 13:22,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1671,3/08/2010 4:00,2/08/2010 21:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-1518,3/08/2010 4:00,2/08/2010 20:40,10.0,20, Improper Input Validation,nan
CVE-2010-1517,3/08/2010 4:00,2/08/2010 20:40,10.0,20, Improper Input Validation,nan
CVE-2009-4896,3/08/2010 4:00,2/08/2010 20:40,6.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1648,30/07/2010 5:48,8/06/2010 0:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1647,30/07/2010 5:48,8/06/2010 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2896,29/07/2010 4:00,28/07/2010 20:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2855,29/07/2010 4:00,25/07/2010 2:04,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4972,28/07/2010 14:43,28/07/2010 14:43,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4971,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4970,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4969,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4968,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4967,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4966,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4965,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4963,28/07/2010 14:43,28/07/2010 14:43,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4959,28/07/2010 14:43,28/07/2010 14:43,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1666,27/07/2010 5:40,2/07/2010 19:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2854,26/07/2010 4:00,25/07/2010 2:04,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4956,23/07/2010 4:00,22/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4955,23/07/2010 4:00,22/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4954,23/07/2010 4:00,22/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4953,23/07/2010 4:00,22/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4952,23/07/2010 4:00,22/07/2010 18:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4951,23/07/2010 4:00,22/07/2010 18:30,5.0,200, Information Exposure,nan
CVE-2009-4950,23/07/2010 4:00,22/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4949,23/07/2010 4:00,22/07/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4948,23/07/2010 4:00,22/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2771,22/07/2010 5:43,22/07/2010 5:43,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2056,22/07/2010 5:43,22/07/2010 5:43,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2656,20/07/2010 5:48,8/07/2010 12:54,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2655,20/07/2010 5:48,8/07/2010 12:54,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2654,20/07/2010 5:48,8/07/2010 12:54,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1524,20/07/2010 5:36,5/05/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2139,19/07/2010 4:00,8/09/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2675,16/07/2010 4:00,8/07/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-6685,16/07/2010 4:00,21/12/2006 19:28,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2722,15/07/2010 4:00,13/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2723,14/07/2010 4:00,13/07/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2693,14/07/2010 4:00,13/07/2010 20:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2465,13/07/2010 5:52,25/06/2010 21:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2457,13/07/2010 5:52,25/06/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2333,13/07/2010 5:52,18/06/2010 20:30,5.0,200, Information Exposure,nan
CVE-2009-4677,13/07/2010 5:48,8/03/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2700,13/07/2010 4:00,12/07/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2699,13/07/2010 4:00,12/07/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2694,13/07/2010 4:00,12/07/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2689,13/07/2010 4:00,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2690,12/07/2010 13:27,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2683,12/07/2010 13:27,12/07/2010 13:27,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2681,12/07/2010 13:27,12/07/2010 13:27,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4934,12/07/2010 13:27,12/07/2010 13:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4926,12/07/2010 13:27,12/07/2010 13:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2673,9/07/2010 4:00,8/07/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2672,9/07/2010 4:00,8/07/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2671,9/07/2010 4:00,8/07/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2479,7/07/2010 4:00,6/07/2010 17:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1670,7/07/2010 4:00,6/07/2010 17:17,7.5,287, Improper Authentication,nan
CVE-2006-6887,7/07/2010 4:00,31/12/2006 5:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2627,6/07/2010 4:00,2/07/2010 20:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2620,6/07/2010 4:00,2/07/2010 20:30,9.3,287, Improper Authentication,nan
CVE-2009-4924,6/07/2010 4:00,2/07/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2769,6/07/2010 4:00,2/07/2010 20:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-2594,2/07/2010 12:43,2/07/2010 12:43,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2516,30/06/2010 4:00,29/06/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4921,30/06/2010 4:00,29/06/2010 18:30,7.8,20, Improper Input Validation,nan
CVE-2009-4919,30/06/2010 4:00,29/06/2010 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4918,30/06/2010 4:00,29/06/2010 18:30,7.8,20, Improper Input Validation,nan
CVE-2009-4914,30/06/2010 4:00,29/06/2010 18:30,7.8,399, Resource Management Errors,nan
CVE-2009-4913,30/06/2010 4:00,29/06/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4912,30/06/2010 4:00,29/06/2010 18:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4910,30/06/2010 4:00,29/06/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1299,29/06/2010 23:04,18/03/2010 17:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2508,29/06/2010 16:24,28/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2515,29/06/2010 4:00,28/06/2010 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2514,29/06/2010 4:00,28/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2513,29/06/2010 4:00,28/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2512,29/06/2010 4:00,28/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2511,29/06/2010 4:00,28/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2510,29/06/2010 4:00,28/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2509,29/06/2010 4:00,28/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2505,29/06/2010 4:00,28/06/2010 18:30,5.0,20, Improper Input Validation,nan
CVE-2010-2503,29/06/2010 4:00,28/06/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2502,29/06/2010 4:00,28/06/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2470,29/06/2010 4:00,28/06/2010 17:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-4438,29/06/2010 4:00,28/12/2009 19:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4431,29/06/2010 4:00,28/12/2009 19:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4334,29/06/2010 4:00,16/12/2009 18:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-4333,29/06/2010 4:00,16/12/2009 18:30,7.5,200, Information Exposure,nan
CVE-2009-4327,29/06/2010 4:00,16/12/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2009-4326,29/06/2010 4:00,16/12/2009 18:30,4.3,200, Information Exposure,nan
CVE-2009-4325,29/06/2010 4:00,16/12/2009 18:30,6.4,20, Improper Input Validation,nan
CVE-2009-1798,29/06/2010 4:00,28/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1797,29/06/2010 4:00,28/12/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2006-6998,29/06/2010 4:00,12/02/2007 17:28,5.0,200, Information Exposure,nan
CVE-2010-1204,28/06/2010 17:30,28/06/2010 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0180,28/06/2010 17:30,28/06/2010 17:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-2469,28/06/2010 4:00,25/06/2010 21:30,5.0,255, Credentials Management,nan
CVE-2010-2463,28/06/2010 4:00,25/06/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4906,28/06/2010 4:00,25/06/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4905,28/06/2010 4:00,25/06/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2442,25/06/2010 4:00,24/06/2010 17:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2440,25/06/2010 4:00,24/06/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2223,25/06/2010 4:00,24/06/2010 17:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2010-1013,25/06/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1011,25/06/2010 4:00,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2323,24/06/2010 21:05,18/06/2010 18:30,5.0,200, Information Exposure,nan
CVE-2010-1625,24/06/2010 12:30,24/06/2010 12:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2422,24/06/2010 12:17,24/06/2010 12:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2335,24/06/2010 4:00,18/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2325,24/06/2010 4:00,18/06/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1015,24/06/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4374,24/06/2010 4:00,21/12/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1638,23/06/2010 4:00,22/06/2010 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1120,23/06/2010 4:00,25/03/2010 21:00,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0956,23/06/2010 4:00,10/03/2010 20:14,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0471,23/06/2010 4:00,2/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4720,23/06/2010 4:00,18/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1335,23/06/2010 4:00,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1334,23/06/2010 4:00,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2192,22/06/2010 5:41,18/06/2010 16:30,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-2349,22/06/2010 4:00,21/06/2010 19:30,5.0,399, Resource Management Errors,nan
CVE-2010-2336,22/06/2010 4:00,18/06/2010 20:30,5.0,200, Information Exposure,nan
CVE-2010-2342,21/06/2010 15:30,21/06/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2340,21/06/2010 4:00,18/06/2010 21:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2334,21/06/2010 4:00,18/06/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2331,21/06/2010 4:00,18/06/2010 20:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2327,21/06/2010 4:00,18/06/2010 18:30,4.3,20, Improper Input Validation,nan
CVE-2010-2326,21/06/2010 4:00,18/06/2010 18:30,4.3,200, Information Exposure,nan
CVE-2010-0535,21/06/2010 4:00,30/03/2010 18:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0534,21/06/2010 4:00,30/03/2010 18:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0525,21/06/2010 4:00,30/03/2010 18:30,5.0,310, Cryptographic Issues,nan
CVE-2010-0523,21/06/2010 4:00,30/03/2010 18:30,5.0,200, Information Exposure,nan
CVE-2010-0522,21/06/2010 4:00,30/03/2010 18:30,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0521,21/06/2010 4:00,30/03/2010 18:30,5.0,287, Improper Authentication,nan
CVE-2010-2263,18/06/2010 5:36,15/06/2010 14:04,5.0,200, Information Exposure,nan
CVE-2010-2075,18/06/2010 5:36,15/06/2010 14:04,7.5,20, Improper Input Validation,nan
CVE-2010-2319,18/06/2010 4:00,17/06/2010 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2318,18/06/2010 4:00,17/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2317,18/06/2010 4:00,17/06/2010 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2316,18/06/2010 4:00,17/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2314,18/06/2010 4:00,17/06/2010 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2267,18/06/2010 4:00,15/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1937,18/06/2010 4:00,15/06/2010 14:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1515,18/06/2010 4:00,15/06/2010 14:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1382,18/06/2010 4:00,17/06/2010 16:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1381,18/06/2010 4:00,17/06/2010 16:30,3.5,16, Configuration,nan
CVE-2010-1380,18/06/2010 4:00,17/06/2010 16:30,7.5,189, Numeric Errors,nan
CVE-2010-1379,18/06/2010 4:00,17/06/2010 16:30,5.0,20, Improper Input Validation,nan
CVE-2010-1377,18/06/2010 4:00,17/06/2010 16:30,9.3,310, Cryptographic Issues,nan
CVE-2010-1376,18/06/2010 4:00,17/06/2010 16:30,6.8,134, Use of Externally-Controlled Format String,nan
CVE-2010-1375,18/06/2010 4:00,17/06/2010 16:30,7.2,287, Improper Authentication,nan
CVE-2010-1216,18/06/2010 4:00,30/03/2010 23:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0537,18/06/2010 4:00,30/03/2010 18:30,2.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-1374,17/06/2010 16:30,17/06/2010 16:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1373,17/06/2010 16:30,17/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0546,17/06/2010 16:30,17/06/2010 16:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0545,17/06/2010 16:30,17/06/2010 16:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-0543,17/06/2010 16:30,17/06/2010 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2312,17/06/2010 4:00,16/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2309,17/06/2010 4:00,16/06/2010 20:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2282,17/06/2010 4:00,15/06/2010 14:30,5.1,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2270,17/06/2010 4:00,15/06/2010 14:30,7.5,310, Cryptographic Issues,nan
CVE-2010-2269,17/06/2010 4:00,15/06/2010 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2277,16/06/2010 14:29,15/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2276,16/06/2010 14:03,15/06/2010 14:30,10.0,16, Configuration,nan
CVE-2010-2275,16/06/2010 13:54,15/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2281,16/06/2010 4:00,15/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2273,16/06/2010 4:00,15/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2271,16/06/2010 4:00,15/06/2010 14:30,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2010-2268,16/06/2010 4:00,15/06/2010 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2054,15/06/2010 14:30,15/06/2010 14:30,10.0,189, Numeric Errors,nan
CVE-2010-2266,15/06/2010 14:04,15/06/2010 14:04,5.0,20, Improper Input Validation,nan
CVE-2009-4894,15/06/2010 14:04,15/06/2010 14:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2155,13/06/2010 19:18,3/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1916,13/06/2010 19:18,12/05/2010 11:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1857,13/06/2010 19:18,7/05/2010 20:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0600,13/06/2010 19:16,27/05/2010 19:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0599,13/06/2010 19:16,27/05/2010 19:30,9.3,255, Credentials Management,nan
CVE-2010-0598,13/06/2010 19:16,27/05/2010 19:30,9.3,255, Credentials Management,nan
CVE-2009-4882,13/06/2010 19:15,2/06/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4442,13/06/2010 19:15,28/12/2009 19:30,5.0,16, Configuration,nan
CVE-2009-4440,13/06/2010 19:15,28/12/2009 19:30,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2283,13/06/2010 19:11,1/07/2009 13:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2260,13/06/2010 19:11,30/06/2009 10:30,5.0,200, Information Exposure,nan
CVE-2010-1479,11/06/2010 4:00,19/04/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1478,11/06/2010 4:00,19/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1477,11/06/2010 4:00,19/04/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1476,11/06/2010 4:00,19/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1473,11/06/2010 4:00,19/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1472,11/06/2010 4:00,19/04/2010 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1471,11/06/2010 4:00,19/04/2010 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1470,11/06/2010 4:00,19/04/2010 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1469,11/06/2010 4:00,19/04/2010 19:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1468,11/06/2010 4:00,19/04/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4787,11/06/2010 4:00,21/04/2010 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2259,10/06/2010 4:00,9/06/2010 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2257,10/06/2010 4:00,9/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2256,10/06/2010 4:00,9/06/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2255,10/06/2010 4:00,9/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2254,10/06/2010 4:00,9/06/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2198,9/06/2010 4:00,8/06/2010 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-2158,8/06/2010 4:00,7/06/2010 17:12,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1480,8/06/2010 4:00,19/04/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1596,8/06/2010 4:00,5/04/2010 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1273,7/06/2010 4:00,6/04/2010 16:30,9.3,20, Improper Input Validation,nan
CVE-2010-1161,7/06/2010 4:00,16/04/2010 19:30,3.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-1160,7/06/2010 4:00,16/04/2010 19:30,1.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4776,7/06/2010 4:00,21/04/2010 14:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4770,7/06/2010 4:00,20/04/2010 14:30,7.5,255, Credentials Management,nan
CVE-2009-4769,7/06/2010 4:00,20/04/2010 14:30,9.3,134, Use of Externally-Controlled Format String,nan
CVE-2010-0732,5/06/2010 5:32,19/03/2010 19:30,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-2151,4/06/2010 4:00,3/06/2010 16:30,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2150,4/06/2010 4:00,3/06/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2146,4/06/2010 4:00,3/06/2010 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-2144,4/06/2010 4:00,3/06/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2143,4/06/2010 4:00,3/06/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0793,3/06/2010 5:54,16/03/2010 19:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0745,3/06/2010 5:54,20/05/2010 17:30,5.0,399, Resource Management Errors,nan
CVE-2010-2140,3/06/2010 4:00,2/06/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2139,3/06/2010 4:00,2/06/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1153,3/06/2010 4:00,20/04/2010 19:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4790,3/06/2010 4:00,22/04/2010 14:30,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4789,3/06/2010 4:00,21/04/2010 14:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4788,3/06/2010 4:00,21/04/2010 14:30,4.3,20, Improper Input Validation,nan
CVE-2009-4785,3/06/2010 4:00,21/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4784,3/06/2010 4:00,21/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-7255,3/06/2010 4:00,20/04/2010 16:30,4.6,255, Credentials Management,nan
CVE-2010-2116,1/06/2010 4:00,28/05/2010 20:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-2115,1/06/2010 4:00,28/05/2010 20:30,5.0,20, Improper Input Validation,nan
CVE-2010-2114,1/06/2010 4:00,28/05/2010 20:30,2.6,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-2112,1/06/2010 4:00,28/05/2010 20:30,8.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2022,1/06/2010 4:00,28/05/2010 18:30,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1718,1/06/2010 4:00,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1717,1/06/2010 4:00,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2314,29/05/2010 5:39,5/07/2009 16:30,2.1,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2140,29/05/2010 5:38,21/09/2009 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2099,28/05/2010 4:00,27/05/2010 22:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-2096,28/05/2010 4:00,27/05/2010 22:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2095,28/05/2010 4:00,27/05/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2088,28/05/2010 4:00,27/05/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2086,28/05/2010 4:00,27/05/2010 19:00,4.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2085,28/05/2010 4:00,27/05/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2084,28/05/2010 4:00,27/05/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1151,27/05/2010 5:49,20/04/2010 16:30,6.8,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-4762,27/05/2010 5:47,29/03/2010 20:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-5972,27/05/2010 5:19,6/12/2007 2:46,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2083,27/05/2010 4:00,26/05/2010 19:30,4.0,255, Credentials Management,nan
CVE-2010-2082,27/05/2010 4:00,26/05/2010 19:30,5.0,255, Credentials Management,nan
CVE-2010-2026,27/05/2010 4:00,26/05/2010 19:30,6.4,287, Improper Authentication,nan
CVE-2010-2025,27/05/2010 4:00,26/05/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4879,27/05/2010 4:00,26/05/2010 18:30,4.3,287, Improper Authentication,nan
CVE-2009-4873,26/05/2010 18:30,26/05/2010 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-2036,26/05/2010 13:44,25/05/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1629,26/05/2010 5:48,19/05/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2051,26/05/2010 4:00,25/05/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2049,26/05/2010 4:00,25/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2046,26/05/2010 4:00,25/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2042,26/05/2010 4:00,25/05/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2037,26/05/2010 4:00,25/05/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2035,26/05/2010 4:00,25/05/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2034,26/05/2010 4:00,25/05/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-2033,26/05/2010 4:00,25/05/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1495,26/05/2010 4:00,23/04/2010 14:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1486,26/05/2010 4:00,22/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4803,26/05/2010 4:00,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0559,25/05/2010 5:51,5/02/2010 22:30,7.5,16, Configuration,nan
CVE-2009-4498,25/05/2010 5:49,31/12/2009 18:30,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-2268,25/05/2010 5:45,1/07/2009 13:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-7239,25/05/2010 4:00,24/05/2010 19:30,5.0,310, Cryptographic Issues,nan
CVE-2010-2019,24/05/2010 17:30,24/05/2010 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2017,24/05/2010 17:30,24/05/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2015,24/05/2010 17:30,24/05/2010 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2014,24/05/2010 17:30,24/05/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2012,24/05/2010 17:30,24/05/2010 17:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-2011,24/05/2010 4:00,21/05/2010 20:30,4.0,310, Cryptographic Issues,nan
CVE-2010-2009,24/05/2010 4:00,21/05/2010 17:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1540,24/05/2010 4:00,26/04/2010 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1535,24/05/2010 4:00,26/04/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1533,24/05/2010 4:00,26/04/2010 18:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0539,24/05/2010 4:00,21/05/2010 19:30,6.8,189, Numeric Errors,nan
CVE-2010-0538,24/05/2010 4:00,21/05/2010 19:30,6.8,399, Resource Management Errors,nan
CVE-2009-4828,24/05/2010 4:00,27/04/2010 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4827,24/05/2010 4:00,27/04/2010 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4826,24/05/2010 4:00,27/04/2010 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1619,22/05/2010 5:47,29/04/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1618,22/05/2010 5:47,29/04/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1617,22/05/2010 5:47,29/04/2010 21:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1615,22/05/2010 5:47,29/04/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1614,22/05/2010 5:47,29/04/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1613,22/05/2010 5:47,29/04/2010 21:30,6.8,287, Improper Authentication,nan
CVE-2010-1194,22/05/2010 5:46,31/03/2010 18:00,6.8,310, Cryptographic Issues,nan
CVE-2010-1192,22/05/2010 5:46,31/03/2010 18:00,6.8,310, Cryptographic Issues,nan
CVE-2010-1567,21/05/2010 5:59,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2010-1565,21/05/2010 5:59,14/05/2010 20:30,7.8,399, Resource Management Errors,nan
CVE-2010-1563,21/05/2010 5:59,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2010-1562,21/05/2010 5:59,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2010-1561,21/05/2010 5:59,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2010-1557,21/05/2010 5:59,14/05/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0602,21/05/2010 5:57,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2010-0601,21/05/2010 5:57,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2010-0524,21/05/2010 5:57,30/03/2010 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0512,21/05/2010 5:57,30/03/2010 18:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-2002,21/05/2010 4:00,20/05/2010 17:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2001,21/05/2010 4:00,20/05/2010 17:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-2000,21/05/2010 4:00,20/05/2010 17:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1999,21/05/2010 4:00,20/05/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1977,21/05/2010 4:00,19/05/2010 20:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4842,21/05/2010 4:00,7/05/2010 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1985,20/05/2010 19:47,19/05/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1189,20/05/2010 5:49,31/03/2010 18:00,5.0,20, Improper Input Validation,nan
CVE-2010-0603,20/05/2010 5:48,14/05/2010 20:30,7.8,20, Improper Input Validation,nan
CVE-2009-4637,20/05/2010 5:46,10/02/2010 2:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3289,20/05/2010 5:44,22/09/2009 10:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-1982,20/05/2010 4:00,19/05/2010 20:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1627,20/05/2010 4:00,19/05/2010 22:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2010-1954,19/05/2010 12:07,19/05/2010 12:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1953,19/05/2010 12:07,19/05/2010 12:07,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1950,19/05/2010 12:07,19/05/2010 12:07,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1949,19/05/2010 12:07,19/05/2010 12:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1948,19/05/2010 12:07,19/05/2010 12:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1947,19/05/2010 12:07,19/05/2010 12:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1946,19/05/2010 12:07,19/05/2010 12:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1945,19/05/2010 12:07,19/05/2010 12:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1568,17/05/2010 4:00,14/05/2010 20:30,5.0,310, Cryptographic Issues,nan
CVE-2010-0744,14/05/2010 5:49,20/04/2010 15:30,5.8,287, Improper Authentication,nan
CVE-2010-1293,14/05/2010 4:00,13/05/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3467,14/05/2010 4:00,13/05/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1934,13/05/2010 4:00,12/05/2010 16:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1927,13/05/2010 4:00,12/05/2010 16:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1926,13/05/2010 4:00,12/05/2010 16:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1925,13/05/2010 4:00,12/05/2010 16:07,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1921,13/05/2010 4:00,12/05/2010 16:07,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1920,13/05/2010 4:00,12/05/2010 16:07,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1482,13/05/2010 4:00,12/05/2010 16:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4851,13/05/2010 4:00,7/05/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1620,12/05/2010 21:07,12/05/2010 11:46,7.2,189, Numeric Errors,nan
CVE-2010-1918,12/05/2010 19:36,12/05/2010 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1872,12/05/2010 11:46,12/05/2010 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1457,12/05/2010 11:46,12/05/2010 11:46,4.9,200, Information Exposure,nan
CVE-2010-1686,12/05/2010 0:41,5/05/2010 13:22,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4869,11/05/2010 12:02,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4868,11/05/2010 12:02,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4861,11/05/2010 12:02,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4859,11/05/2010 12:02,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4858,11/05/2010 12:02,11/05/2010 12:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1868,11/05/2010 4:00,7/05/2010 23:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1853,11/05/2010 4:00,7/05/2010 20:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1732,11/05/2010 4:00,6/05/2010 12:47,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1731,11/05/2010 4:00,6/05/2010 14:53,4.3,399, Resource Management Errors,nan
CVE-2010-1279,11/05/2010 4:00,5/05/2010 13:22,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0406,11/05/2010 4:00,5/05/2010 13:22,4.0,399, Resource Management Errors,nan
CVE-2010-0401,11/05/2010 4:00,5/05/2010 13:22,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4835,11/05/2010 4:00,6/05/2010 12:47,4.3,189, Numeric Errors,nan
CVE-2009-4375,11/05/2010 4:00,21/12/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1863,10/05/2010 4:00,7/05/2010 23:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1861,10/05/2010 4:00,7/05/2010 23:00,6.4,399, Resource Management Errors,nan
CVE-2010-1859,10/05/2010 4:00,7/05/2010 23:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1856,10/05/2010 4:00,7/05/2010 20:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1854,10/05/2010 4:00,7/05/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1852,10/05/2010 4:00,7/05/2010 18:24,4.3,200, Information Exposure,nan
CVE-2010-1453,10/05/2010 4:00,7/05/2010 18:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4852,10/05/2010 4:00,7/05/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1150,8/05/2010 5:57,20/04/2010 15:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1147,8/05/2010 5:57,6/04/2010 16:30,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1737,7/05/2010 4:00,6/05/2010 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0101,7/05/2010 4:00,4/05/2010 16:00,7.8,20, Improper Input Validation,nan
CVE-2010-1730,6/05/2010 14:53,6/05/2010 14:53,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7251,6/05/2010 4:00,19/01/2010 16:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0402,5/05/2010 13:22,5/05/2010 13:22,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1723,5/05/2010 4:00,4/05/2010 16:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1687,5/05/2010 4:00,4/05/2010 16:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1707,4/05/2010 16:00,4/05/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1705,4/05/2010 16:00,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1701,4/05/2010 16:00,4/05/2010 16:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1685,4/05/2010 16:00,4/05/2010 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0594,4/05/2010 16:00,4/05/2010 16:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4823,4/05/2010 5:49,27/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4638,4/05/2010 5:48,10/02/2010 2:30,4.3,189, Numeric Errors,nan
CVE-2009-4631,4/05/2010 5:48,10/02/2010 2:30,9.3,189, Numeric Errors,nan
CVE-2009-1861,4/05/2010 5:43,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1859,4/05/2010 5:43,11/06/2009 15:30,9.3,399, Resource Management Errors,nan
CVE-2009-0512,4/05/2010 5:40,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0511,4/05/2010 5:40,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0510,4/05/2010 5:40,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1652,3/05/2010 15:30,3/05/2010 13:51,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1654,3/05/2010 13:51,3/05/2010 13:51,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1653,3/05/2010 13:51,3/05/2010 13:51,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1603,30/04/2010 4:00,29/04/2010 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1602,30/04/2010 4:00,29/04/2010 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1592,29/04/2010 4:00,28/04/2010 23:30,6.9,20, Improper Input Validation,nan
CVE-2010-1590,29/04/2010 4:00,28/04/2010 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1238,28/04/2010 5:46,5/04/2010 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1193,28/04/2010 5:46,1/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0686,28/04/2010 5:45,1/04/2010 19:30,7.5,20, Improper Input Validation,nan
CVE-2010-1559,28/04/2010 4:00,27/04/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4829,28/04/2010 4:00,27/04/2010 15:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4821,28/04/2010 4:00,27/04/2010 15:30,5.0,287, Improper Authentication,nan
CVE-2002-2393,28/04/2010 4:00,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2010-1542,27/04/2010 16:43,26/04/2010 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-1536,27/04/2010 16:04,26/04/2010 19:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4813,27/04/2010 15:30,27/04/2010 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4812,27/04/2010 15:30,27/04/2010 15:30,5.0,200, Information Exposure,nan
CVE-2009-0816,27/04/2010 5:49,5/03/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1544,27/04/2010 4:00,26/04/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-1541,27/04/2010 4:00,26/04/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1532,27/04/2010 4:00,26/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1530,27/04/2010 4:00,26/04/2010 18:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0815,27/04/2010 4:00,5/03/2009 2:30,5.0,200, Information Exposure,nan
CVE-2009-4810,26/04/2010 16:17,23/04/2010 14:30,7.5,20, Improper Input Validation,nan
CVE-2010-1492,26/04/2010 4:00,23/04/2010 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4804,26/04/2010 4:00,23/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4802,26/04/2010 4:00,23/04/2010 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4780,24/04/2010 4:00,21/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1312,22/04/2010 5:42,8/04/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1565,22/04/2010 5:33,12/04/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1564,22/04/2010 5:33,12/04/2010 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4786,22/04/2010 4:00,21/04/2010 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4781,22/04/2010 4:00,21/04/2010 14:30,7.2,255, Credentials Management,nan
CVE-2010-1317,21/04/2010 4:00,20/04/2010 15:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1461,19/04/2010 4:00,16/04/2010 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1316,16/04/2010 4:00,14/04/2010 16:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0725,15/04/2010 5:41,26/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0724,15/04/2010 5:41,26/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1371,14/04/2010 21:03,13/04/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1369,14/04/2010 20:58,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1366,14/04/2010 20:49,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1364,14/04/2010 19:37,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1362,14/04/2010 13:59,13/04/2010 18:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4766,14/04/2010 12:44,13/04/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1370,14/04/2010 4:00,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1367,14/04/2010 4:00,13/04/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1365,14/04/2010 4:00,13/04/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1359,14/04/2010 4:00,13/04/2010 18:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1358,14/04/2010 4:00,13/04/2010 18:30,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4765,14/04/2010 4:00,13/04/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-1352,13/04/2010 21:31,12/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1149,13/04/2010 4:00,12/04/2010 18:30,2.1,200, Information Exposure,nan
CVE-2010-1345,12/04/2010 4:00,9/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1342,12/04/2010 4:00,9/04/2010 18:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1339,12/04/2010 4:00,9/04/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1310,9/04/2010 17:01,8/04/2010 17:30,5.0,200, Information Exposure,nan
CVE-2010-0513,9/04/2010 5:42,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1314,9/04/2010 4:00,8/04/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1313,9/04/2010 4:00,8/04/2010 20:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1309,9/04/2010 4:00,8/04/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1308,9/04/2010 4:00,8/04/2010 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0400,8/04/2010 13:25,7/04/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1302,8/04/2010 4:00,7/04/2010 18:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-7254,8/04/2010 4:00,7/04/2010 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1298,7/04/2010 4:00,6/04/2010 22:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1276,7/04/2010 4:00,6/04/2010 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1267,7/04/2010 4:00,6/04/2010 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1265,7/04/2010 4:00,6/04/2010 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6735,6/04/2010 14:22,5/04/2010 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-1239,6/04/2010 4:00,5/04/2010 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6734,6/04/2010 4:00,5/04/2010 15:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2004-2767,6/04/2010 4:00,5/04/2010 15:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2003-1595,6/04/2010 4:00,5/04/2010 15:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2003-1594,6/04/2010 4:00,5/04/2010 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2003-1593,6/04/2010 4:00,5/04/2010 15:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2003-1592,6/04/2010 4:00,5/04/2010 15:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2000-1246,5/04/2010 19:28,5/04/2010 15:30,3.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2001-1587,5/04/2010 15:30,5/04/2010 15:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2288,3/04/2010 5:30,1/07/2009 13:00,7.5,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-1226,2/04/2010 4:00,1/04/2010 22:30,5.0,20, Improper Input Validation,nan
CVE-2010-1195,1/04/2010 4:00,31/03/2010 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0510,31/03/2010 18:08,30/03/2010 18:30,9.0,255, Credentials Management,nan
CVE-2010-0504,31/03/2010 17:14,30/03/2010 18:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0503,31/03/2010 17:07,30/03/2010 18:30,6.5,399, Resource Management Errors,nan
CVE-2010-0498,31/03/2010 15:37,30/03/2010 18:30,7.2,287, Improper Authentication,nan
CVE-2010-0418,31/03/2010 5:41,10/03/2010 20:13,10.0,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-0409,31/03/2010 5:41,8/02/2010 21:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0511,31/03/2010 4:00,30/03/2010 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0509,31/03/2010 4:00,30/03/2010 18:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2010-0507,31/03/2010 4:00,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0506,31/03/2010 4:00,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0501,31/03/2010 4:00,30/03/2010 18:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0500,31/03/2010 4:00,30/03/2010 18:30,7.8,20, Improper Input Validation,nan
CVE-2010-0065,31/03/2010 4:00,30/03/2010 18:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0064,31/03/2010 4:00,30/03/2010 18:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2010-0058,31/03/2010 4:00,30/03/2010 17:30,6.4,16, Configuration,nan
CVE-2010-0057,31/03/2010 4:00,30/03/2010 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0056,31/03/2010 4:00,30/03/2010 17:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2801,31/03/2010 4:00,30/03/2010 17:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2010-1179,30/03/2010 4:00,29/03/2010 19:30,9.3,189, Numeric Errors,nan
CVE-2010-1177,30/03/2010 4:00,29/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-1176,30/03/2010 4:00,29/03/2010 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4740,29/03/2010 16:42,26/03/2010 20:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-1526,29/03/2010 4:00,5/05/2009 20:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2010-0613,26/03/2010 5:37,11/02/2010 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4427,26/03/2010 5:36,28/12/2009 19:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4012,26/03/2010 5:34,19/01/2010 16:30,10.0,189, Numeric Errors,nan
CVE-2008-5824,26/03/2010 5:24,2/01/2009 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-1112,26/03/2010 4:00,25/03/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1096,25/03/2010 4:00,24/03/2010 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1089,25/03/2010 4:00,24/03/2010 22:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2907,25/03/2010 4:00,24/03/2010 22:45,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1082,24/03/2010 19:52,23/03/2010 19:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1081,24/03/2010 19:30,23/03/2010 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1079,24/03/2010 19:12,23/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1076,24/03/2010 18:25,23/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1069,24/03/2010 17:25,23/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1062,24/03/2010 14:40,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1061,24/03/2010 14:30,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1075,24/03/2010 4:00,23/03/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1063,24/03/2010 4:00,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1060,24/03/2010 4:00,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1059,24/03/2010 4:00,23/03/2010 17:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1040,24/03/2010 4:00,23/03/2010 18:30,5.8,287, Improper Authentication,nan
CVE-2010-1046,23/03/2010 13:53,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1052,23/03/2010 4:00,23/03/2010 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1051,23/03/2010 4:00,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1050,23/03/2010 4:00,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1048,23/03/2010 4:00,23/03/2010 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1045,23/03/2010 4:00,23/03/2010 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1043,23/03/2010 4:00,23/03/2010 1:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-1022,22/03/2010 17:17,19/03/2010 19:00,7.5,287, Improper Authentication,nan
CVE-2010-1020,22/03/2010 16:58,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1012,22/03/2010 15:04,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1021,22/03/2010 4:00,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1019,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1018,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1017,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1016,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1014,22/03/2010 4:00,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1010,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1009,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1008,22/03/2010 4:00,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1007,22/03/2010 4:00,19/03/2010 19:00,5.0,200, Information Exposure,nan
CVE-2010-1006,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-1005,22/03/2010 4:00,19/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-1004,22/03/2010 4:00,19/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0736,22/03/2010 4:00,19/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0982,17/03/2010 18:44,16/03/2010 19:30,4.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0966,17/03/2010 13:27,16/03/2010 19:00,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0979,17/03/2010 4:00,16/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0977,17/03/2010 4:00,16/03/2010 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0968,17/03/2010 4:00,16/03/2010 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4714,17/03/2010 4:00,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4710,17/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4718,16/03/2010 21:43,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0963,16/03/2010 19:00,16/03/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4709,16/03/2010 15:03,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4717,16/03/2010 4:00,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4712,16/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4711,16/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4708,16/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4707,16/03/2010 4:00,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4706,16/03/2010 4:00,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4705,16/03/2010 4:00,15/03/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4703,16/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4702,16/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4701,16/03/2010 4:00,15/03/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4691,11/03/2010 5:00,10/03/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4689,11/03/2010 5:00,10/03/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4688,11/03/2010 5:00,10/03/2010 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0958,10/03/2010 20:14,10/03/2010 20:14,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0728,10/03/2010 20:13,10/03/2010 20:13,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2010-0103,10/03/2010 20:13,10/03/2010 20:13,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4679,9/03/2010 5:00,8/03/2010 15:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0935,8/03/2010 5:00,5/03/2010 19:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2010-0934,8/03/2010 5:00,5/03/2010 19:30,7.1,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2010-0932,8/03/2010 5:00,5/03/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-0931,8/03/2010 5:00,5/03/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2010-0930,8/03/2010 5:00,5/03/2010 19:30,5.0,399, Resource Management Errors,nan
CVE-2010-0929,8/03/2010 5:00,5/03/2010 19:30,5.0,20, Improper Input Validation,nan
CVE-2009-4676,8/03/2010 5:00,5/03/2010 19:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0927,5/03/2010 17:30,5/03/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0923,4/03/2010 5:00,3/03/2010 19:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2010-0920,4/03/2010 5:00,3/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0802,3/03/2010 5:00,2/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0801,3/03/2010 5:00,2/03/2010 20:30,3.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0799,3/03/2010 5:00,2/03/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0798,3/03/2010 5:00,2/03/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0797,3/03/2010 5:00,2/03/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0763,3/03/2010 5:00,2/03/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0726,3/03/2010 5:00,2/03/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0692,3/03/2010 5:00,23/02/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0691,3/03/2010 5:00,23/02/2010 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0704,2/03/2010 5:00,25/02/2010 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0695,2/03/2010 5:00,23/02/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0760,1/03/2010 5:00,27/02/2010 0:30,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0667,1/03/2010 5:00,26/02/2010 19:30,5.0,200, Information Exposure,nan
CVE-2009-4413,26/02/2010 7:10,24/12/2009 16:30,5.0,189, Numeric Errors,nan
CVE-2009-3305,26/02/2010 7:08,24/12/2009 16:30,5.0,20, Improper Input Validation,nan
CVE-2010-0710,26/02/2010 5:00,25/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4568,24/02/2010 7:19,5/01/2010 19:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0699,24/02/2010 5:00,23/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0681,23/02/2010 17:14,22/02/2010 21:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0680,23/02/2010 17:14,22/02/2010 21:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0676,23/02/2010 16:18,22/02/2010 20:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0679,23/02/2010 5:00,22/02/2010 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0678,23/02/2010 5:00,22/02/2010 21:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0677,23/02/2010 5:00,22/02/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0675,23/02/2010 5:00,22/02/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0673,23/02/2010 5:00,22/02/2010 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4651,23/02/2010 5:00,22/02/2010 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4650,23/02/2010 5:00,22/02/2010 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4646,22/02/2010 5:00,19/02/2010 17:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2010-0652,19/02/2010 5:00,18/02/2010 18:00,4.3,200, Information Exposure,nan
CVE-2010-0638,16/02/2010 5:00,15/02/2010 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4643,16/02/2010 5:00,15/02/2010 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0635,15/02/2010 5:00,12/02/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0631,15/02/2010 5:00,12/02/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0444,13/02/2010 7:22,9/02/2010 19:30,10.0,255, Credentials Management,nan
CVE-2009-2439,13/02/2010 5:00,13/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0608,12/02/2010 5:00,11/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0605,12/02/2010 5:00,11/02/2010 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0561,9/02/2010 5:00,8/02/2010 21:30,4.9,189, Numeric Errors,nan
CVE-2010-0294,9/02/2010 5:00,8/02/2010 20:30,5.0,399, Resource Management Errors,nan
CVE-2010-0293,9/02/2010 5:00,8/02/2010 20:30,5.0,399, Resource Management Errors,nan
CVE-2010-0292,9/02/2010 5:00,8/02/2010 20:30,5.0,399, Resource Management Errors,nan
CVE-2003-1579,8/02/2010 14:55,5/02/2010 22:30,4.3,189, Numeric Errors,nan
CVE-2010-0557,8/02/2010 5:00,5/02/2010 22:30,7.5,255, Credentials Management,nan
CVE-2003-1581,8/02/2010 5:00,5/02/2010 22:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1580,8/02/2010 5:00,5/02/2010 22:30,4.3,189, Numeric Errors,nan
CVE-2010-0383,5/02/2010 7:13,25/01/2010 19:30,5.0,200, Information Exposure,nan
CVE-2010-0548,5/02/2010 5:00,4/02/2010 20:15,5.0,200, Information Exposure,nan
CVE-2010-0158,5/02/2010 5:00,6/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4016,5/02/2010 5:00,4/02/2010 20:15,6.8,189, Numeric Errors,nan
CVE-2009-4015,4/02/2010 5:00,2/02/2010 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0470,3/02/2010 5:00,2/02/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4014,3/02/2010 5:00,2/02/2010 16:30,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2009-4013,3/02/2010 5:00,2/02/2010 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2010-0363,2/02/2010 5:00,20/01/2010 16:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0005,2/02/2010 5:00,29/01/2010 18:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4629,2/02/2010 5:00,29/01/2010 18:30,5.0,200, Information Exposure,nan
CVE-2009-4499,2/02/2010 5:00,31/12/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0386,31/01/2010 5:00,25/01/2010 19:30,4.3,16, Configuration,nan
CVE-2010-0142,31/01/2010 5:00,28/01/2010 20:30,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4630,31/01/2010 5:00,29/01/2010 18:30,5.0,200, Information Exposure,nan
CVE-2004-2766,31/01/2010 5:00,28/01/2010 20:30,4.3,200, Information Exposure,nan
CVE-2004-2765,31/01/2010 5:00,28/01/2010 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1576,31/01/2010 5:00,28/01/2010 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1575,31/01/2010 5:00,28/01/2010 20:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3942,28/01/2010 7:00,16/11/2009 19:30,6.4,310, Cryptographic Issues,nan
CVE-2010-0385,26/01/2010 5:00,25/01/2010 19:30,5.0,200, Information Exposure,nan
CVE-2008-7253,26/01/2010 5:00,25/01/2010 19:30,4.3,16, Configuration,nan
CVE-2010-0381,25/01/2010 5:00,22/01/2010 22:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0380,25/01/2010 5:00,22/01/2010 22:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2010-0377,22/01/2010 18:30,21/01/2010 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0359,21/01/2010 5:00,20/01/2010 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0327,18/01/2010 15:31,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0322,18/01/2010 14:02,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0345,18/01/2010 5:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0330,18/01/2010 5:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2010-0328,18/01/2010 5:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0326,18/01/2010 5:00,15/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2010-0324,18/01/2010 5:00,15/01/2010 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-0596,16/01/2010 5:00,18/06/2002 4:00,5.0,200, Information Exposure,nan
CVE-2010-0014,15/01/2010 5:00,14/01/2010 18:30,3.7,287, Improper Authentication,nan
CVE-2009-4601,13/01/2010 13:15,12/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4602,13/01/2010 5:00,12/01/2010 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4595,13/01/2010 5:00,12/01/2010 17:30,6.0,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4500,12/01/2010 5:00,31/12/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3952,11/01/2010 12:25,8/01/2010 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4514,11/01/2010 5:00,31/12/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4515,8/01/2010 20:29,31/12/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4517,8/01/2010 17:50,31/12/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2010-0229,8/01/2010 5:00,7/01/2010 19:30,4.6,255, Credentials Management,nan
CVE-2010-0228,8/01/2010 5:00,7/01/2010 19:30,4.6,310, Cryptographic Issues,nan
CVE-2009-4586,8/01/2010 5:00,7/01/2010 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4516,8/01/2010 5:00,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4497,8/01/2010 5:00,7/01/2010 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4392,8/01/2010 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2001-1539,8/01/2010 5:00,31/12/2001 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2010-0157,7/01/2010 5:00,6/01/2010 22:00,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4518,7/01/2010 5:00,31/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4393,7/01/2010 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4520,6/01/2010 5:00,31/12/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4476,6/01/2010 5:00,30/12/2009 21:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4460,6/01/2010 5:00,30/12/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4409,6/01/2010 5:00,23/12/2009 21:30,2.6,287, Improper Authentication,nan
CVE-2009-4526,4/01/2010 19:51,31/12/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-7250,4/01/2010 17:31,30/12/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4535,4/01/2010 5:00,31/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-4530,4/01/2010 5:00,31/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-4482,4/01/2010 5:00,30/12/2009 21:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4479,4/01/2010 5:00,30/12/2009 21:30,7.8,399, Resource Management Errors,nan
CVE-2009-4502,1/01/2010 5:00,31/12/2009 18:30,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-4501,1/01/2010 5:00,31/12/2009 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4480,31/12/2009 5:00,30/12/2009 21:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4461,30/12/2009 20:00,30/12/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4434,29/12/2009 5:00,28/12/2009 19:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4432,29/12/2009 5:00,28/12/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4430,29/12/2009 5:00,28/12/2009 19:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4417,28/12/2009 5:00,24/12/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4397,28/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4137,28/12/2009 5:00,24/12/2009 16:30,7.5,20, Improper Input Validation,nan
CVE-2007-3532,28/12/2009 5:00,27/07/2007 22:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-4383,24/12/2009 5:00,22/12/2009 23:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4391,23/12/2009 19:50,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4390,23/12/2009 19:03,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4388,23/12/2009 18:37,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4385,23/12/2009 18:02,22/12/2009 23:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4384,23/12/2009 17:57,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3727,23/12/2009 6:58,10/11/2009 18:30,5.0,200, Information Exposure,nan
CVE-2007-2281,23/12/2009 6:26,18/12/2009 19:30,10.0,189, Numeric Errors,nan
CVE-2007-2280,23/12/2009 6:26,18/12/2009 19:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4401,23/12/2009 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4400,23/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4399,23/12/2009 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4398,23/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4395,23/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4394,23/12/2009 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4387,23/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4382,23/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4380,23/12/2009 5:00,22/12/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4379,23/12/2009 5:00,22/12/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4362,22/12/2009 5:00,21/12/2009 16:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4361,22/12/2009 5:00,21/12/2009 16:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3792,22/12/2009 5:00,21/12/2009 16:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4358,21/12/2009 5:00,20/12/2009 2:30,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2009-4357,21/12/2009 5:00,18/12/2009 19:30,5.0,200, Information Exposure,nan
CVE-2009-3616,19/12/2009 6:58,23/10/2009 18:30,8.5,399, Resource Management Errors,nan
CVE-2009-2839,19/12/2009 6:57,10/11/2009 19:30,6.8,399, Resource Management Errors,nan
CVE-2009-2629,19/12/2009 6:56,15/09/2009 22:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2415,19/12/2009 6:56,10/08/2009 18:30,10.0,189, Numeric Errors,nan
CVE-2009-0898,19/12/2009 6:53,10/12/2009 23:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4350,18/12/2009 5:00,17/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4348,18/12/2009 5:00,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4346,18/12/2009 5:00,17/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4304,17/12/2009 5:00,16/12/2009 1:30,7.5,255, Credentials Management,nan
CVE-2009-4161,17/12/2009 5:00,2/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7228,17/12/2009 5:00,14/09/2009 14:30,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2009-4305,16/12/2009 5:00,16/12/2009 1:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4303,16/12/2009 5:00,16/12/2009 1:30,5.0,200, Information Exposure,nan
CVE-2009-4302,16/12/2009 5:00,16/12/2009 1:30,5.0,310, Cryptographic Issues,nan
CVE-2009-4301,16/12/2009 5:00,16/12/2009 1:30,6.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4300,16/12/2009 5:00,16/12/2009 1:30,5.0,200, Information Exposure,nan
CVE-2009-4299,16/12/2009 5:00,16/12/2009 1:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-4298,16/12/2009 5:00,16/12/2009 1:30,5.0,200, Information Exposure,nan
CVE-2009-4297,16/12/2009 5:00,16/12/2009 1:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-4319,15/12/2009 5:00,14/12/2009 21:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4318,15/12/2009 5:00,14/12/2009 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4316,15/12/2009 5:00,14/12/2009 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4314,15/12/2009 5:00,14/12/2009 17:30,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-4296,14/12/2009 5:00,11/12/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4295,14/12/2009 5:00,11/12/2009 16:30,7.8,310, Cryptographic Issues,nan
CVE-2009-4265,11/12/2009 5:00,10/12/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4264,11/12/2009 5:00,10/12/2009 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4149,10/12/2009 5:00,9/12/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4234,9/12/2009 5:00,8/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4233,9/12/2009 5:00,8/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4232,9/12/2009 5:00,8/12/2009 19:30,5.0,287, Improper Authentication,nan
CVE-2009-4231,9/12/2009 5:00,8/12/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4222,8/12/2009 5:00,7/12/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-4217,8/12/2009 5:00,7/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4207,8/12/2009 5:00,4/12/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4159,8/12/2009 5:00,2/12/2009 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4163,7/12/2009 5:00,2/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4150,7/12/2009 5:00,2/12/2009 11:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3304,7/12/2009 5:00,4/12/2009 19:30,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-4192,4/12/2009 5:00,3/12/2009 19:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4189,4/12/2009 5:00,3/12/2009 17:30,10.0,255, Credentials Management,nan
CVE-2009-4188,4/12/2009 5:00,3/12/2009 17:30,10.0,255, Credentials Management,nan
CVE-2009-4187,4/12/2009 5:00,3/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4166,3/12/2009 5:00,2/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4165,3/12/2009 5:00,2/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4164,3/12/2009 5:00,2/12/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4158,3/12/2009 5:00,2/12/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4156,3/12/2009 5:00,2/12/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4154,3/12/2009 5:00,2/12/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4127,3/12/2009 5:00,2/12/2009 19:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-4096,2/12/2009 5:00,29/11/2009 13:08,7.5,255, Credentials Management,nan
CVE-2009-4109,30/11/2009 5:00,29/11/2009 13:08,5.0,200, Information Exposure,nan
CVE-2009-4103,30/11/2009 5:00,29/11/2009 13:08,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-4070,24/11/2009 17:30,24/11/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4069,24/11/2009 17:30,24/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3303,24/11/2009 17:30,24/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3961,24/11/2009 7:04,17/11/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3930,24/11/2009 7:04,10/11/2009 19:30,9.3,189, Numeric Errors,nan
CVE-2009-2823,24/11/2009 7:02,10/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2661,24/11/2009 7:02,4/08/2009 16:30,5.0,310, Cryptographic Issues,nan
CVE-2008-5248,24/11/2009 6:53,26/11/2008 1:30,4.3,20, Improper Input Validation,nan
CVE-2002-2353,24/11/2009 5:15,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-4056,24/11/2009 5:00,24/11/2009 2:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4053,23/11/2009 17:30,23/11/2009 17:30,4.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4050,23/11/2009 17:30,23/11/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-4047,23/11/2009 17:30,23/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4046,23/11/2009 5:00,20/11/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4045,23/11/2009 5:00,20/11/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-4040,23/11/2009 5:00,20/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4039,23/11/2009 5:00,20/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4038,23/11/2009 5:00,20/11/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-4037,23/11/2009 5:00,20/11/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3684,23/11/2009 5:00,22/10/2009 16:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4883,23/11/2009 5:00,20/11/2009 19:30,4.3,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2005-4882,23/11/2009 5:00,20/11/2009 19:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-3685,20/11/2009 5:00,22/10/2009 16:00,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3941,19/11/2009 5:00,16/11/2009 19:30,5.0,310, Cryptographic Issues,nan
CVE-2009-3854,18/11/2009 7:00,4/11/2009 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3892,18/11/2009 5:00,17/11/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2838,17/11/2009 7:03,10/11/2009 19:30,6.8,189, Numeric Errors,nan
CVE-2009-2836,17/11/2009 7:03,10/11/2009 19:30,6.2,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2835,17/11/2009 7:03,10/11/2009 19:30,4.6,20, Improper Input Validation,nan
CVE-2009-2833,17/11/2009 7:03,10/11/2009 19:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2832,17/11/2009 7:03,10/11/2009 19:30,5.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2830,17/11/2009 7:02,10/11/2009 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2829,17/11/2009 7:02,10/11/2009 19:30,5.0,255, Credentials Management,nan
CVE-2009-2828,17/11/2009 7:02,10/11/2009 19:30,7.5,399, Resource Management Errors,nan
CVE-2009-2827,17/11/2009 7:02,10/11/2009 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2826,17/11/2009 7:02,10/11/2009 19:30,6.8,189, Numeric Errors,nan
CVE-2009-2825,17/11/2009 7:02,10/11/2009 19:30,4.3,310, Cryptographic Issues,nan
CVE-2009-2824,17/11/2009 7:02,10/11/2009 19:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2819,17/11/2009 7:02,10/11/2009 19:30,9.3,399, Resource Management Errors,nan
CVE-2009-2818,17/11/2009 7:02,10/11/2009 19:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2808,17/11/2009 7:02,10/11/2009 19:30,5.4,310, Cryptographic Issues,nan
CVE-2009-2834,17/11/2009 5:00,10/11/2009 19:30,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-3937,16/11/2009 5:00,13/11/2009 16:30,4.9,399, Resource Management Errors,nan
CVE-2009-3856,16/11/2009 5:00,4/11/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3299,16/11/2009 5:00,3/11/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1515,13/11/2009 7:12,4/05/2009 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0306,12/11/2009 5:00,4/11/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3921,10/11/2009 5:00,9/11/2009 17:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3912,9/11/2009 17:30,9/11/2009 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3901,6/11/2009 15:30,6/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3862,5/11/2009 5:00,4/11/2009 18:30,5.0,287, Improper Authentication,nan
CVE-2009-3298,4/11/2009 5:00,3/11/2009 16:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3833,2/11/2009 15:30,2/11/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3625,31/10/2009 6:23,26/10/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3369,31/10/2009 6:22,24/09/2009 16:30,8.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2911,31/10/2009 6:22,22/10/2009 16:30,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-3765,29/10/2009 4:00,23/10/2009 19:30,6.8,310, Cryptographic Issues,nan
CVE-2009-3822,28/10/2009 10:30,28/10/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3817,28/10/2009 10:30,28/10/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3816,28/10/2009 10:30,28/10/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3815,28/10/2009 4:00,27/10/2009 16:30,5.0,200, Information Exposure,nan
CVE-2009-3814,28/10/2009 4:00,27/10/2009 16:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3813,28/10/2009 4:00,27/10/2009 16:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3804,28/10/2009 4:00,27/10/2009 16:30,6.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3801,28/10/2009 4:00,27/10/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3730,27/10/2009 5:28,20/10/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3617,27/10/2009 5:28,20/10/2009 17:30,7.6,134, Use of Externally-Controlled Format String,nan
CVE-2009-3784,27/10/2009 4:00,26/10/2009 17:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3611,26/10/2009 16:30,26/10/2009 16:30,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2281,26/10/2009 4:00,23/10/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3296,21/10/2009 4:00,20/10/2009 17:30,7.5,189, Numeric Errors,nan
CVE-2009-3282,20/10/2009 4:00,16/10/2009 16:30,7.8,189, Numeric Errors,nan
CVE-2009-3710,19/10/2009 4:00,16/10/2009 16:30,10.0,255, Credentials Management,nan
CVE-2009-3705,19/10/2009 4:00,16/10/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3281,19/10/2009 4:00,16/10/2009 16:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-3708,16/10/2009 16:30,16/10/2009 16:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3472,14/10/2009 5:26,29/09/2009 21:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1958,14/10/2009 5:24,8/06/2009 1:00,5.0,399, Resource Management Errors,nan
CVE-2009-1957,14/10/2009 5:24,8/06/2009 1:00,5.0,399, Resource Management Errors,nan
CVE-2009-0737,14/10/2009 5:22,25/02/2009 20:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5252,14/10/2009 5:17,19/12/2008 17:30,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5250,14/10/2009 5:17,19/12/2008 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5249,14/10/2009 5:17,19/12/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-0970,14/10/2009 4:00,2/05/2005 4:00,7.6,264, Permissions Privileges and Access Controls,nan
CVE-2002-1877,14/10/2009 4:00,31/12/2002 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-3693,13/10/2009 10:30,13/10/2009 10:30,9.3,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3668,12/10/2009 4:00,11/10/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3645,12/10/2009 4:00,9/10/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3644,12/10/2009 4:00,9/10/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3642,12/10/2009 4:00,9/10/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3589,8/10/2009 15:30,8/10/2009 15:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-3568,8/10/2009 4:00,6/10/2009 20:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-3527,7/10/2009 4:00,6/10/2009 22:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-1083,6/10/2009 4:00,25/03/2009 15:30,9.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1080,6/10/2009 4:00,25/03/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1079,6/10/2009 4:00,25/03/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1078,6/10/2009 4:00,25/03/2009 15:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1077,6/10/2009 4:00,25/03/2009 15:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1075,6/10/2009 4:00,25/03/2009 15:30,5.0,255, Credentials Management,nan
CVE-2009-1074,6/10/2009 4:00,25/03/2009 15:30,5.0,310, Cryptographic Issues,nan
CVE-2009-3540,5/10/2009 4:00,2/10/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3539,5/10/2009 4:00,2/10/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3538,5/10/2009 4:00,2/10/2009 19:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3486,5/10/2009 4:00,30/09/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3485,5/10/2009 4:00,30/09/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3470,3/10/2009 4:00,29/09/2009 21:30,5.0,399, Resource Management Errors,nan
CVE-2009-3519,2/10/2009 4:00,1/10/2009 15:30,4.9,399, Resource Management Errors,nan
CVE-2009-3518,2/10/2009 4:00,1/10/2009 15:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3491,2/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3487,2/10/2009 4:00,30/09/2009 15:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3521,1/10/2009 17:00,1/10/2009 17:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3520,1/10/2009 15:30,1/10/2009 15:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3264,1/10/2009 5:24,18/09/2009 22:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-3504,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3503,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3502,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3500,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3499,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3498,1/10/2009 4:00,30/09/2009 15:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3497,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3496,1/10/2009 4:00,30/09/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3495,1/10/2009 4:00,30/09/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3481,1/10/2009 4:00,30/09/2009 15:30,7.5,287, Improper Authentication,nan
CVE-2009-3479,1/10/2009 4:00,30/09/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3478,1/10/2009 4:00,29/09/2009 23:30,6.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3475,30/09/2009 4:00,29/09/2009 23:30,7.5,310, Cryptographic Issues,nan
CVE-2009-3456,30/09/2009 4:00,29/09/2009 18:00,7.5,310, Cryptographic Issues,nan
CVE-2009-3455,30/09/2009 4:00,29/09/2009 18:00,7.5,310, Cryptographic Issues,nan
CVE-2009-3437,30/09/2009 4:00,28/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3443,29/09/2009 4:00,28/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3341,28/09/2009 4:00,24/09/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3367,25/09/2009 4:00,24/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3362,25/09/2009 4:00,24/09/2009 16:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-3284,24/09/2009 4:00,22/09/2009 10:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2815,24/09/2009 4:00,10/09/2009 21:30,7.8,399, Resource Management Errors,nan
CVE-2009-3287,22/09/2009 10:30,22/09/2009 10:30,7.5,20, Improper Input Validation,nan
CVE-2009-3283,22/09/2009 10:30,22/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3261,22/09/2009 4:00,18/09/2009 21:30,7.5,287, Improper Authentication,nan
CVE-2009-3262,21/09/2009 4:00,18/09/2009 21:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3260,21/09/2009 4:00,18/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3256,21/09/2009 4:00,18/09/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3166,19/09/2009 5:32,15/09/2009 22:30,5.0,255, Credentials Management,nan
CVE-2009-2205,19/09/2009 5:30,9/09/2009 22:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3240,18/09/2009 10:30,18/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2937,18/09/2009 10:30,18/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7241,18/09/2009 4:00,17/09/2009 18:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-3233,17/09/2009 10:30,17/09/2009 10:30,7.2,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-3227,17/09/2009 4:00,16/09/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3226,17/09/2009 4:00,16/09/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3225,17/09/2009 4:00,16/09/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7201,17/09/2009 4:00,10/09/2009 10:30,7.8,399, Resource Management Errors,nan
CVE-2009-2468,16/09/2009 5:32,22/07/2009 18:30,10.0,189, Numeric Errors,nan
CVE-2009-1862,16/09/2009 5:31,23/07/2009 20:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1372,16/09/2009 5:30,23/04/2009 15:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1371,16/09/2009 5:30,23/04/2009 15:30,5.0,20, Improper Input Validation,nan
CVE-2009-1272,16/09/2009 5:30,8/04/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2009-3198,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3197,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3196,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3195,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3194,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3189,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3187,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3186,16/09/2009 4:00,15/09/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3184,16/09/2009 4:00,15/09/2009 21:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3165,16/09/2009 4:00,15/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3125,16/09/2009 4:00,15/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2945,16/09/2009 4:00,15/09/2009 22:30,4.3,255, Credentials Management,nan
CVE-2008-4980,15/09/2009 5:19,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4979,15/09/2009 5:19,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4975,15/09/2009 5:19,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0131,15/09/2009 5:10,8/01/2008 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6730,15/09/2009 5:10,10/09/2009 10:30,9.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6729,15/09/2009 5:10,10/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6263,15/09/2009 5:09,6/12/2007 15:46,9.3,20, Improper Input Validation,nan
CVE-2009-3021,15/09/2009 4:00,31/08/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7227,15/09/2009 4:00,14/09/2009 14:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7223,15/09/2009 4:00,14/09/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7229,14/09/2009 14:30,14/09/2009 14:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-7217,14/09/2009 4:00,13/09/2009 22:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-6732,14/09/2009 4:00,13/09/2009 22:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6731,14/09/2009 4:00,13/09/2009 22:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-7207,11/09/2009 16:30,11/09/2009 16:30,2.1,310, Cryptographic Issues,nan
CVE-2008-5375,11/09/2009 5:29,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5371,11/09/2009 5:29,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-3162,11/09/2009 4:00,10/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3157,11/09/2009 4:00,10/09/2009 18:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7202,11/09/2009 4:00,10/09/2009 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3147,10/09/2009 18:30,10/09/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3124,10/09/2009 4:00,9/09/2009 22:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-3120,10/09/2009 4:00,9/09/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3119,10/09/2009 4:00,9/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3118,10/09/2009 4:00,9/09/2009 22:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3050,10/09/2009 4:00,2/09/2009 17:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2266,10/09/2009 4:00,9/09/2009 17:30,5.0,200, Information Exposure,nan
CVE-2009-3101,9/09/2009 4:00,8/09/2009 18:30,4.9,399, Resource Management Errors,nan
CVE-2009-3066,9/09/2009 4:00,3/09/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3060,9/09/2009 4:00,3/09/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1769,9/09/2009 4:00,22/05/2009 18:30,5.0,200, Information Exposure,nan
CVE-2008-7166,9/09/2009 4:00,4/09/2009 10:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-7146,9/09/2009 4:00,1/09/2009 16:30,5.0,200, Information Exposure,nan
CVE-2009-3082,8/09/2009 4:00,4/09/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2665,4/09/2009 5:28,4/08/2009 16:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2662,4/09/2009 5:28,4/08/2009 16:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-3067,4/09/2009 4:00,3/09/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3061,4/09/2009 4:00,3/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3059,4/09/2009 4:00,3/09/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-3057,4/09/2009 4:00,3/09/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7147,3/09/2009 4:00,1/09/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1217,3/09/2009 4:00,9/03/2008 2:44,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6275,3/09/2009 4:00,7/12/2007 11:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2739,2/09/2009 5:24,11/08/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2286,2/09/2009 5:24,1/07/2009 13:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5102,1/09/2009 5:21,17/11/2008 18:18,4.0,399, Resource Management Errors,nan
CVE-2008-1485,1/09/2009 5:14,24/03/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3012,1/09/2009 4:00,31/08/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-3000,31/08/2009 4:00,28/08/2009 15:30,7.1,399, Resource Management Errors,nan
CVE-2008-7121,28/08/2009 15:30,28/08/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7120,28/08/2009 15:30,28/08/2009 15:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2976,28/08/2009 4:00,27/08/2009 17:30,7.8,310, Cryptographic Issues,nan
CVE-2005-4845,28/08/2009 4:00,31/12/2005 5:00,5.0,16, Configuration,nan
CVE-2009-2737,26/08/2009 5:25,11/08/2009 10:30,5.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1896,26/08/2009 5:24,10/08/2009 18:30,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1877,26/08/2009 5:24,18/08/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1875,26/08/2009 5:24,18/08/2009 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4960,26/08/2009 5:17,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4954,26/08/2009 5:17,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4948,26/08/2009 5:17,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4947,26/08/2009 5:17,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1878,26/08/2009 4:00,18/08/2009 22:30,5.8,287, Improper Authentication,nan
CVE-2009-2959,25/08/2009 17:30,25/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0749,25/08/2009 5:09,13/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-7050,24/08/2009 10:30,24/08/2009 10:30,7.5,255, Credentials Management,nan
CVE-2008-7046,24/08/2009 10:30,24/08/2009 10:30,6.4,287, Improper Authentication,nan
CVE-2009-2056,21/08/2009 17:30,21/08/2009 17:30,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1154,21/08/2009 17:30,21/08/2009 17:30,3.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2856,21/08/2009 15:25,18/08/2009 22:30,3.5,200, Information Exposure,nan
CVE-2009-2915,21/08/2009 11:30,21/08/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2913,21/08/2009 11:02,21/08/2009 11:02,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2882,21/08/2009 4:00,20/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2858,21/08/2009 4:00,19/08/2009 17:30,5.0,399, Resource Management Errors,nan
CVE-2009-2850,21/08/2009 4:00,18/08/2009 21:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2424,21/08/2009 4:00,10/07/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2226,21/08/2009 4:00,26/06/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2144,21/08/2009 4:00,22/06/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2055,21/08/2009 4:00,19/08/2009 17:30,4.3,20, Improper Input Validation,nan
CVE-2008-6993,21/08/2009 4:00,19/08/2009 5:24,10.0,310, Cryptographic Issues,nan
CVE-2009-2893,20/08/2009 17:30,20/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4391,20/08/2009 5:21,9/12/2008 0:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4390,20/08/2009 5:21,9/12/2008 0:30,10.0,200, Information Exposure,nan
CVE-2008-1292,20/08/2009 5:14,24/03/2008 17:44,4.3,200, Information Exposure,nan
CVE-2008-1291,20/08/2009 5:14,24/03/2008 17:44,4.3,200, Information Exposure,nan
CVE-2008-1290,20/08/2009 5:14,24/03/2008 17:44,4.3,200, Information Exposure,nan
CVE-2008-0739,20/08/2009 5:13,13/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0738,20/08/2009 5:13,13/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2859,20/08/2009 4:00,19/08/2009 17:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-0788,20/08/2009 4:00,15/02/2008 1:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0137,19/08/2009 5:25,13/02/2009 0:30,10.0,20, Improper Input Validation,nan
CVE-2008-7002,19/08/2009 5:24,19/08/2009 5:24,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2008-6992,19/08/2009 5:24,19/08/2009 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6990,19/08/2009 5:24,19/08/2009 5:24,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6903,19/08/2009 5:24,6/08/2009 0:30,4.3,399, Resource Management Errors,nan
CVE-2008-6541,19/08/2009 5:24,30/03/2009 1:30,6.8,20, Improper Input Validation,nan
CVE-2008-6505,19/08/2009 5:23,23/03/2009 14:19,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-6463,19/08/2009 5:23,13/03/2009 10:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6040,19/08/2009 5:22,3/02/2009 11:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5703,19/08/2009 5:22,22/12/2008 15:30,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5380,19/08/2009 5:21,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-3221,19/08/2009 5:17,18/07/2008 16:41,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-2738,18/08/2009 4:00,11/08/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2779,17/08/2009 16:30,17/08/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2776,17/08/2009 4:00,14/08/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2712,15/08/2009 5:23,7/08/2009 19:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-2771,14/08/2009 17:30,14/08/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2669,12/08/2009 5:30,5/08/2009 19:30,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2009-2659,12/08/2009 5:30,4/08/2009 16:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2658,12/08/2009 5:30,4/08/2009 16:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2622,12/08/2009 5:30,28/07/2009 17:30,5.0,20, Improper Input Validation,nan
CVE-2009-2621,12/08/2009 5:30,28/07/2009 17:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0889,12/08/2009 5:27,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0888,12/08/2009 5:27,11/06/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6820,12/08/2009 5:25,3/06/2009 21:00,10.0,16, Configuration,nan
CVE-2009-2705,11/08/2009 10:30,11/08/2009 10:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-2704,11/08/2009 10:30,11/08/2009 10:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-2727,11/08/2009 4:00,10/08/2009 23:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1276,11/08/2009 4:00,9/04/2009 15:08,2.1,200, Information Exposure,nan
CVE-2009-1603,8/08/2009 5:26,11/05/2009 16:30,4.3,310, Cryptographic Issues,nan
CVE-2009-1513,8/08/2009 5:26,4/05/2009 16:30,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6106,8/08/2009 5:22,10/02/2009 22:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6105,8/08/2009 5:22,10/02/2009 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2492,7/08/2009 5:22,17/07/2009 16:30,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2478,7/08/2009 5:22,16/07/2009 15:30,5.0,189, Numeric Errors,nan
CVE-2009-1165,7/08/2009 5:20,29/07/2009 17:30,7.8,399, Resource Management Errors,nan
CVE-2009-1164,7/08/2009 5:20,29/07/2009 17:30,7.8,399, Resource Management Errors,nan
CVE-2009-2284,7/08/2009 4:00,1/07/2009 13:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2668,6/08/2009 4:00,5/08/2009 19:30,7.8,399, Resource Management Errors,nan
CVE-2009-2316,5/08/2009 5:25,5/07/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2657,5/08/2009 4:00,4/08/2009 16:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2583,4/08/2009 5:25,23/07/2009 20:30,6.8,20, Improper Input Validation,nan
CVE-2008-6885,3/08/2009 4:00,31/07/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6879,31/07/2009 4:00,30/07/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2636,29/07/2009 4:00,28/07/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2619,27/07/2009 18:30,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2617,27/07/2009 18:30,27/07/2009 18:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2616,27/07/2009 18:30,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2615,27/07/2009 18:30,27/07/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2614,27/07/2009 18:30,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2613,27/07/2009 18:30,27/07/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2612,27/07/2009 18:30,27/07/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2610,27/07/2009 18:30,27/07/2009 18:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2575,23/07/2009 4:00,22/07/2009 18:30,7.1,399, Resource Management Errors,nan
CVE-2008-4454,23/07/2009 4:00,6/10/2008 23:25,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2428,23/07/2009 4:00,6/02/2009 19:30,5.0,20, Improper Input Validation,nan
CVE-2002-2427,23/07/2009 4:00,6/02/2009 19:30,5.0,287, Improper Authentication,nan
CVE-2009-2569,22/07/2009 17:30,22/07/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0809,22/07/2009 4:00,4/03/2009 17:30,3.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2549,21/07/2009 4:00,20/07/2009 20:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-2548,21/07/2009 4:00,20/07/2009 20:00,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2008-4943,21/07/2009 4:00,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-2455,20/07/2009 4:00,14/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4956,20/07/2009 4:00,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4955,20/07/2009 4:00,5/11/2008 15:00,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4953,20/07/2009 4:00,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4950,20/07/2009 4:00,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4946,20/07/2009 4:00,5/11/2008 15:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-2388,16/07/2009 4:00,9/07/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5378,15/07/2009 5:35,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1150,15/07/2009 4:00,26/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2454,14/07/2009 14:30,14/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2453,14/07/2009 14:30,14/07/2009 14:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2449,14/07/2009 4:00,13/07/2009 17:30,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2448,14/07/2009 4:00,13/07/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2447,14/07/2009 4:00,13/07/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2442,13/07/2009 14:30,13/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2440,13/07/2009 14:30,13/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2438,13/07/2009 14:30,13/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2437,13/07/2009 14:30,13/07/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2436,13/07/2009 14:30,13/07/2009 14:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2435,13/07/2009 14:30,13/07/2009 14:30,5.0,255, Credentials Management,nan
CVE-2009-2428,13/07/2009 4:00,10/07/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2427,13/07/2009 4:00,10/07/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2423,13/07/2009 4:00,10/07/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2386,13/07/2009 4:00,10/07/2009 15:30,9.3,20, Improper Input Validation,nan
CVE-2009-1732,10/07/2009 5:33,20/05/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2343,9/07/2009 4:00,7/07/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2475,9/07/2009 4:00,9/06/2009 20:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-2374,8/07/2009 15:30,8/07/2009 15:30,5.0,255, Credentials Management,nan
CVE-2009-2373,8/07/2009 15:30,8/07/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2372,8/07/2009 15:30,8/07/2009 15:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2371,8/07/2009 15:30,8/07/2009 15:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-2370,8/07/2009 15:30,8/07/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2345,8/07/2009 4:00,7/07/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2342,8/07/2009 4:00,7/07/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2222,7/07/2009 15:45,26/06/2009 15:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2221,7/07/2009 4:00,26/06/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6727,7/07/2009 4:00,5/07/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1648,6/07/2009 4:00,5/07/2009 16:30,7.5,16, Configuration,nan
CVE-2009-2298,2/07/2009 10:30,2/07/2009 10:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5324,2/07/2009 4:00,5/12/2008 0:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2211,2/07/2009 3:31,25/06/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2137,2/07/2009 3:31,19/06/2009 19:30,7.8,399, Resource Management Errors,nan
CVE-2009-2106,2/07/2009 3:31,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2104,2/07/2009 3:31,17/06/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2046,2/07/2009 3:31,25/06/2009 1:30,6.8,200, Information Exposure,nan
CVE-2009-1163,2/07/2009 3:30,25/06/2009 1:30,7.8,399, Resource Management Errors,nan
CVE-2009-2291,1/07/2009 13:00,1/07/2009 13:00,6.8,264, Permissions Privileges and Access Controls,nan
CVE-2009-2282,1/07/2009 13:00,1/07/2009 13:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2009-2240,30/06/2009 4:00,27/06/2009 18:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1775,30/06/2009 4:00,22/05/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2076,29/06/2009 4:00,16/06/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1849,29/06/2009 4:00,1/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1628,29/06/2009 4:00,26/06/2009 18:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6836,29/06/2009 4:00,27/06/2009 18:47,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6835,29/06/2009 4:00,27/06/2009 18:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6819,29/06/2009 4:00,1/06/2009 19:30,4.7,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-2215,26/06/2009 4:00,25/06/2009 23:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0691,26/06/2009 4:00,23/06/2009 21:30,9.3,399, Resource Management Errors,nan
CVE-2009-2187,25/06/2009 4:00,25/06/2009 1:30,4.9,399, Resource Management Errors,nan
CVE-2009-2132,25/06/2009 4:00,19/06/2009 18:00,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-2057,25/06/2009 4:00,15/06/2009 19:30,5.8,287, Improper Authentication,nan
CVE-2009-0653,25/06/2009 4:00,20/02/2009 19:30,7.5,287, Improper Authentication,nan
CVE-2009-2118,24/06/2009 5:34,18/06/2009 21:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2171,24/06/2009 4:00,23/06/2009 16:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2170,24/06/2009 4:00,23/06/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0690,24/06/2009 4:00,23/06/2009 21:30,9.3,189, Numeric Errors,nan
CVE-2009-2103,23/06/2009 5:33,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2072,23/06/2009 5:33,15/06/2009 19:30,5.4,287, Improper Authentication,nan
CVE-2009-2071,23/06/2009 5:33,15/06/2009 19:30,6.8,287, Improper Authentication,nan
CVE-2009-2069,23/06/2009 5:33,15/06/2009 19:30,5.8,287, Improper Authentication,nan
CVE-2009-1933,23/06/2009 5:33,5/06/2009 16:00,4.7,255, Credentials Management,nan
CVE-2009-1753,23/06/2009 5:33,22/05/2009 11:53,3.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-2169,23/06/2009 4:00,22/06/2009 22:30,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-2125,23/06/2009 4:00,19/06/2009 18:00,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2105,23/06/2009 4:00,17/06/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2128,22/06/2009 4:00,19/06/2009 18:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2126,22/06/2009 4:00,19/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2032,20/06/2009 5:29,12/06/2009 18:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2031,19/06/2009 5:32,11/06/2009 21:30,2.1,200, Information Exposure,nan
CVE-2009-1716,19/06/2009 5:32,10/06/2009 18:00,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-1706,19/06/2009 5:32,10/06/2009 18:00,5.0,200, Information Exposure,nan
CVE-2009-1704,19/06/2009 5:32,10/06/2009 18:00,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1682,19/06/2009 5:32,10/06/2009 14:30,4.3,255, Credentials Management,nan
CVE-2009-2077,19/06/2009 4:00,16/06/2009 19:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-2075,19/06/2009 4:00,16/06/2009 19:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0804,18/06/2009 4:00,4/03/2009 16:30,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0803,18/06/2009 4:00,4/03/2009 16:30,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0802,18/06/2009 4:00,4/03/2009 16:30,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0801,18/06/2009 4:00,4/03/2009 16:30,5.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-2083,17/06/2009 4:00,16/06/2009 21:00,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2082,17/06/2009 4:00,16/06/2009 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2079,17/06/2009 4:00,16/06/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2078,17/06/2009 4:00,16/06/2009 19:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-2074,17/06/2009 4:00,16/06/2009 19:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1085,17/06/2009 4:00,25/03/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0869,17/06/2009 4:00,10/03/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0764,17/06/2009 4:00,6/03/2009 6:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1705,13/06/2009 5:33,10/06/2009 18:00,9.3,189, Numeric Errors,nan
CVE-2009-0241,13/06/2009 5:30,21/01/2009 11:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1416,10/06/2009 5:29,30/04/2009 20:30,7.5,310, Cryptographic Issues,nan
CVE-2007-5615,10/06/2009 5:09,5/12/2007 11:46,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5613,10/06/2009 5:09,5/12/2007 11:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1881,9/06/2009 5:34,2/06/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1161,9/06/2009 5:33,21/05/2009 14:30,10.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0759,9/06/2009 5:32,3/03/2009 16:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0543,9/06/2009 5:32,12/02/2009 16:30,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-2005,9/06/2009 4:00,8/06/2009 19:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1844,8/06/2009 5:27,1/06/2009 14:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1942,8/06/2009 4:00,5/06/2009 18:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1909,5/06/2009 4:00,4/06/2009 16:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1908,5/06/2009 4:00,4/06/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0856,5/06/2009 4:00,9/03/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1880,2/06/2009 15:30,2/06/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1851,2/06/2009 4:00,1/06/2009 19:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2763,2/06/2009 4:00,1/06/2009 22:30,5.8,16, Configuration,nan
CVE-2009-1803,29/05/2009 4:00,28/05/2009 14:30,5.0,200, Information Exposure,nan
CVE-2009-1755,29/05/2009 4:00,22/05/2009 11:52,5.0,189, Numeric Errors,nan
CVE-2009-1802,29/05/2009 3:26,28/05/2009 14:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1800,28/05/2009 14:30,28/05/2009 14:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1785,24/05/2009 4:00,22/05/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1773,24/05/2009 4:00,22/05/2009 18:30,5.0,20, Improper Input Validation,nan
CVE-2009-1772,24/05/2009 4:00,22/05/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1631,23/05/2009 5:31,14/05/2009 17:30,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2009-1591,23/05/2009 5:31,8/05/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1556,23/05/2009 5:31,6/05/2009 16:30,3.5,200, Information Exposure,nan
CVE-2009-1555,23/05/2009 5:31,6/05/2009 16:30,5.0,200, Information Exposure,nan
CVE-2009-1757,22/05/2009 11:52,22/05/2009 11:52,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-5704,20/05/2009 4:00,22/12/2008 15:30,7.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1442,19/05/2009 5:35,7/05/2009 17:30,6.8,189, Numeric Errors,nan
CVE-2009-0176,18/05/2009 4:00,20/01/2009 16:00,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4388,18/05/2009 4:00,20/01/2009 16:30,9.3,20, Improper Input Validation,nan
CVE-2009-0944,16/05/2009 5:30,13/05/2009 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0160,16/05/2009 5:29,13/05/2009 15:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1295,15/05/2009 5:29,30/04/2009 20:30,1.9,16, Configuration,nan
CVE-2009-1086,15/05/2009 5:28,25/03/2009 18:30,6.4,399, Resource Management Errors,nan
CVE-2009-1366,14/05/2009 5:36,22/04/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5844,14/05/2009 5:32,5/01/2009 20:30,7.5,16, Configuration,nan
CVE-2008-5396,14/05/2009 5:31,9/12/2008 0:30,7.2,189, Numeric Errors,nan
CVE-2009-1585,13/05/2009 5:28,7/05/2009 23:30,4.4,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-1507,13/05/2009 5:28,1/05/2009 17:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1501,13/05/2009 5:28,1/05/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1273,13/05/2009 5:27,8/04/2009 18:30,5.0,255, Credentials Management,nan
CVE-2009-0757,13/05/2009 5:27,3/03/2009 16:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-1616,12/05/2009 4:00,11/05/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6802,8/05/2009 4:00,7/05/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6797,8/05/2009 4:00,7/05/2009 18:30,7.8,310, Cryptographic Issues,nan
CVE-2009-1561,7/05/2009 4:00,6/05/2009 16:30,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1518,5/05/2009 4:00,4/05/2009 19:00,6.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-1484,29/04/2009 18:30,29/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1301,29/04/2009 5:29,16/04/2009 15:12,10.0,189, Numeric Errors,nan
CVE-2009-0664,29/04/2009 5:28,23/04/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6722,29/04/2009 5:27,14/04/2009 16:26,1.9,200, Information Exposure,nan
CVE-2009-1285,28/04/2009 5:39,16/04/2009 15:12,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-1160,28/04/2009 5:39,9/04/2009 15:08,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-1155,28/04/2009 5:39,9/04/2009 15:08,7.8,287, Improper Authentication,nan
CVE-2009-0307,28/04/2009 5:37,22/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6682,28/04/2009 5:37,9/04/2009 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1433,27/04/2009 4:00,24/04/2009 23:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6677,23/04/2009 5:57,8/04/2009 10:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6674,23/04/2009 5:57,8/04/2009 10:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6673,23/04/2009 5:57,8/04/2009 10:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1361,23/04/2009 4:00,22/04/2009 18:30,10.0,20, Improper Input Validation,nan
CVE-2006-7238,22/04/2009 4:00,21/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1343,21/04/2009 4:00,20/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1344,20/04/2009 14:30,20/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1342,20/04/2009 14:30,20/04/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5917,18/04/2009 5:44,21/01/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2025,18/04/2009 5:35,9/04/2009 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1320,17/04/2009 14:08,17/04/2009 14:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1254,16/04/2009 5:38,9/04/2009 0:30,6.8,20, Improper Input Validation,nan
CVE-2009-1253,16/04/2009 5:38,9/04/2009 0:30,4.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1149,16/04/2009 5:38,26/03/2009 14:30,7.5,20, Improper Input Validation,nan
CVE-2009-1148,16/04/2009 5:38,26/03/2009 14:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0930,16/04/2009 5:38,17/03/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1281,10/04/2009 4:00,9/04/2009 16:27,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1073,8/04/2009 5:36,31/03/2009 18:24,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2009-1264,8/04/2009 4:00,7/04/2009 23:30,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-1249,7/04/2009 4:00,6/04/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6600,6/04/2009 4:00,3/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6597,6/04/2009 4:00,3/04/2009 18:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6596,6/04/2009 4:00,3/04/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-0735,3/04/2009 4:00,2/05/2005 4:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2004-2717,3/04/2009 4:00,31/12/2004 5:00,2.6,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-1979,3/04/2009 4:00,31/12/2002 5:00,7.5,20, Improper Input Validation,nan
CVE-2002-1978,3/04/2009 4:00,31/12/2002 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-1225,2/04/2009 15:30,2/04/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1175,2/04/2009 5:45,31/03/2009 14:09,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0875,2/04/2009 5:45,12/03/2009 15:20,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2009-0874,2/04/2009 5:45,12/03/2009 15:20,4.9,399, Resource Management Errors,nan
CVE-2009-0364,2/04/2009 5:44,26/03/2009 5:50,7.5,134, Use of Externally-Controlled Format String,nan
CVE-2008-5718,2/04/2009 4:00,26/12/2008 17:30,9.3,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2009-1047,1/04/2009 5:43,23/03/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0855,1/04/2009 5:43,9/03/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0499,1/04/2009 5:42,10/02/2009 2:30,6.4,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-6571,31/03/2009 17:30,31/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6567,31/03/2009 17:30,31/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4880,31/03/2009 17:30,31/03/2009 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-6548,30/03/2009 4:00,30/03/2009 1:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5368,26/03/2009 5:47,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-1082,25/03/2009 15:30,25/03/2009 15:30,9.0,20, Improper Input Validation,nan
CVE-2009-1081,25/03/2009 15:30,25/03/2009 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-1076,25/03/2009 15:30,25/03/2009 15:30,5.0,200, Information Exposure,nan
CVE-2009-0486,25/03/2009 5:50,9/02/2009 17:30,7.5,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0485,25/03/2009 5:50,9/02/2009 17:30,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0484,25/03/2009 5:50,9/02/2009 17:30,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0483,25/03/2009 5:50,9/02/2009 17:30,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0482,25/03/2009 5:50,9/02/2009 17:30,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0481,25/03/2009 5:50,9/02/2009 17:30,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-3317,25/03/2009 4:00,27/10/2005 10:02,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0862,21/03/2009 5:55,10/03/2009 14:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0830,21/03/2009 5:55,5/03/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0829,21/03/2009 5:55,5/03/2009 20:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0366,21/03/2009 5:54,12/03/2009 15:20,4.3,399, Resource Management Errors,nan
CVE-2009-0027,21/03/2009 5:53,9/03/2009 21:30,5.0,20, Improper Input Validation,nan
CVE-2008-4610,20/03/2009 5:49,20/10/2008 17:59,5.0,399, Resource Management Errors,nan
CVE-2009-0931,18/03/2009 16:23,17/03/2009 21:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5543,18/03/2009 10:30,18/03/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5542,18/03/2009 10:30,18/03/2009 10:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0469,13/03/2009 5:47,10/02/2009 7:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0417,13/03/2009 5:46,10/02/2009 7:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6440,10/03/2009 4:00,6/03/2009 18:30,5.0,287, Improper Authentication,nan
CVE-2009-0766,6/03/2009 6:50,6/03/2009 6:50,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2009-0762,6/03/2009 6:50,6/03/2009 6:50,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0466,6/03/2009 6:49,10/02/2009 7:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0126,6/03/2009 6:49,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2008-5262,6/03/2009 6:46,13/01/2009 17:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6399,6/03/2009 5:00,5/03/2009 20:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2009-0821,5/03/2009 5:00,5/03/2009 2:30,5.0,399, Resource Management Errors,nan
CVE-2009-0820,5/03/2009 5:00,5/03/2009 2:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0806,5/03/2009 5:00,4/03/2009 17:30,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2009-0805,5/03/2009 5:00,4/03/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0779,4/03/2009 11:30,4/03/2009 11:30,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0625,3/03/2009 7:04,26/02/2009 16:17,7.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0617,3/03/2009 7:04,26/02/2009 16:17,10.0,255, Credentials Management,nan
CVE-2009-0616,3/03/2009 7:04,26/02/2009 16:17,10.0,255, Credentials Management,nan
CVE-2009-0615,3/03/2009 7:04,26/02/2009 16:17,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-5305,3/03/2009 7:00,10/12/2008 0:30,10.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-6346,2/03/2009 5:00,27/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6344,2/03/2009 5:00,27/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6343,2/03/2009 5:00,27/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6341,2/03/2009 5:00,27/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6340,2/03/2009 5:00,27/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-6338,2/03/2009 5:00,27/02/2009 17:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0742,27/02/2009 5:00,26/02/2009 16:17,7.8,310, Cryptographic Issues,nan
CVE-2009-0621,27/02/2009 5:00,26/02/2009 16:17,10.0,16, Configuration,nan
CVE-2009-0620,27/02/2009 5:00,26/02/2009 16:17,10.0,255, Credentials Management,nan
CVE-2008-6104,26/02/2009 7:06,10/02/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5809,26/02/2009 7:05,2/01/2009 18:11,5.8,287, Improper Authentication,nan
CVE-2008-5721,26/02/2009 7:04,26/12/2008 17:30,5.0,287, Improper Authentication,nan
CVE-2008-1692,26/02/2009 6:51,7/04/2008 18:44,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-6279,26/02/2009 5:00,25/02/2009 23:30,7.8,200, Information Exposure,nan
CVE-2008-6278,26/02/2009 5:00,25/02/2009 23:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1142,26/02/2009 5:00,7/04/2008 17:44,3.7,264, Permissions Privileges and Access Controls,nan
CVE-2009-0416,20/02/2009 6:47,3/02/2009 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-6161,19/02/2009 5:00,18/02/2009 16:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5719,18/02/2009 6:25,26/12/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-5717,18/02/2009 6:25,26/12/2008 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0610,18/02/2009 5:00,17/02/2009 17:30,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0609,18/02/2009 5:00,17/02/2009 17:30,7.8,20, Improper Input Validation,nan
CVE-2008-5688,18/02/2009 5:00,19/12/2008 17:30,4.3,200, Information Exposure,nan
CVE-2009-0488,17/02/2009 6:57,9/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0305,17/02/2009 6:57,10/02/2009 22:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-6005,17/02/2009 6:56,28/01/2009 20:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5155,17/02/2009 6:53,18/11/2008 16:00,9.3,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5149,17/02/2009 6:53,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5144,17/02/2009 6:53,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5139,17/02/2009 6:53,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5137,17/02/2009 6:53,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5136,17/02/2009 6:53,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0573,16/02/2009 5:00,13/02/2009 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0362,13/02/2009 5:00,13/02/2009 1:30,4.0,287, Improper Authentication,nan
CVE-2009-0525,12/02/2009 5:00,11/02/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1228,11/02/2009 5:00,2/03/2007 22:19,4.4,287, Improper Authentication,nan
CVE-2009-0068,10/02/2009 6:59,7/01/2009 19:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-5902,10/02/2009 6:59,15/01/2009 17:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-4688,10/02/2009 6:56,22/10/2008 18:00,5.0,200, Information Exposure,nan
CVE-2008-4575,10/02/2009 6:55,15/10/2008 20:07,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0125,10/02/2009 5:00,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2009-0479,9/02/2009 5:00,9/02/2009 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1569,9/02/2009 5:00,6/02/2009 19:30,5.0,20, Improper Input Validation,nan
CVE-2003-1568,9/02/2009 5:00,6/02/2009 19:30,5.0,20, Improper Input Validation,nan
CVE-2002-2430,6/02/2009 19:30,6/02/2009 19:30,5.0,399, Resource Management Errors,nan
CVE-2002-2429,6/02/2009 19:30,6/02/2009 19:30,5.0,20, Improper Input Validation,nan
CVE-2009-0124,6/02/2009 7:05,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2008-5433,6/02/2009 7:03,11/12/2008 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4474,6/02/2009 7:00,7/10/2008 21:11,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2009-0219,5/02/2009 6:53,21/01/2009 1:30,9.3,399, Resource Management Errors,nan
CVE-2008-5924,5/02/2009 6:52,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4739,5/02/2009 6:30,6/09/2007 19:17,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0431,5/02/2009 5:00,5/02/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2009-0287,5/02/2009 5:00,27/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-6058,5/02/2009 5:00,5/02/2009 0:30,5.0,20, Improper Input Validation,nan
CVE-2008-6055,4/02/2009 15:30,4/02/2009 15:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2009-0274,3/02/2009 19:30,3/02/2009 19:30,5.0,200, Information Exposure,nan
CVE-2008-6041,3/02/2009 11:30,3/02/2009 11:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0382,2/02/2009 19:30,2/02/2009 19:30,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2009-0122,31/01/2009 6:54,15/01/2009 17:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-5184,29/01/2009 6:58,21/11/2008 2:30,10.0,255, Credentials Management,nan
CVE-2008-4905,29/01/2009 6:57,4/11/2008 0:58,5.0,310, Cryptographic Issues,nan
CVE-2008-3941,29/01/2009 6:54,5/09/2008 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2760,29/01/2009 5:37,31/12/2004 5:00,6.8,16, Configuration,nan
CVE-2003-1560,29/01/2009 5:28,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1559,29/01/2009 5:28,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2009-0303,28/01/2009 5:00,27/01/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-2795,28/01/2009 5:00,27/01/2009 23:30,9.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2009-0275,26/01/2009 20:30,26/01/2009 20:30,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2009-0266,26/01/2009 15:30,26/01/2009 15:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5923,23/01/2009 15:08,21/01/2009 18:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5925,23/01/2009 14:58,21/01/2009 18:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5366,23/01/2009 6:43,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5941,22/01/2009 11:30,22/01/2009 11:30,6.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2009-0245,22/01/2009 5:00,22/01/2009 2:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0130,16/01/2009 5:00,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2009-0129,16/01/2009 5:00,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2009-0128,16/01/2009 5:00,15/01/2009 17:30,5.0,287, Improper Authentication,nan
CVE-2003-1567,16/01/2009 5:00,15/01/2009 0:30,5.8,200, Information Exposure,nan
CVE-2008-5435,15/01/2009 6:33,11/12/2008 15:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2009-0121,15/01/2009 5:00,15/01/2009 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-1999-1593,15/01/2009 5:00,15/01/2009 1:30,7.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5891,12/01/2009 20:00,12/01/2009 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-2946,7/01/2009 5:00,16/09/2005 22:03,5.0,310, Cryptographic Issues,nan
CVE-2008-5699,6/01/2009 6:02,22/12/2008 15:30,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2008-5842,6/01/2009 5:00,5/01/2009 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5201,23/12/2008 5:00,4/10/2007 17:17,4.6,200, Information Exposure,nan
CVE-2008-5386,17/12/2008 6:40,9/12/2008 0:30,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5385,17/12/2008 6:40,9/12/2008 0:30,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0701,17/12/2008 6:24,12/02/2008 1:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2008-5370,16/12/2008 5:00,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5421,12/12/2008 5:00,11/12/2008 15:30,5.0,399, Resource Management Errors,nan
CVE-2005-0738,10/12/2008 5:00,2/05/2005 4:00,5.0,399, Resource Management Errors,nan
CVE-2008-5379,9/12/2008 5:00,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5376,9/12/2008 5:00,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5372,9/12/2008 5:00,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5369,9/12/2008 5:00,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5367,9/12/2008 5:00,8/12/2008 23:30,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5331,5/12/2008 5:00,5/12/2008 0:30,7.5,310, Cryptographic Issues,nan
CVE-2007-6719,5/12/2008 5:00,5/12/2008 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5162,3/12/2008 6:46,26/11/2008 23:30,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-5148,3/12/2008 6:46,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5143,3/12/2008 6:46,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5230,3/12/2008 5:00,25/11/2008 23:30,6.8,310, Cryptographic Issues,nan
CVE-2008-5283,2/12/2008 5:00,29/11/2008 2:30,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2008-5281,1/12/2008 5:00,29/11/2008 2:30,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5231,26/11/2008 5:00,26/11/2008 1:30,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-5109,26/11/2008 5:00,25/11/2008 23:30,5.0,16, Configuration,nan
CVE-2008-2432,26/11/2008 5:00,26/11/2008 1:30,5.0,200, Information Exposure,nan
CVE-2008-2429,26/11/2008 5:00,26/11/2008 1:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5151,18/11/2008 16:00,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5146,18/11/2008 16:00,18/11/2008 16:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5135,18/11/2008 16:00,18/11/2008 16:00,6.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5087,17/11/2008 14:39,14/11/2008 19:20,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-5067,17/11/2008 5:00,13/11/2008 17:24,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4571,15/11/2008 7:20,15/10/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3967,15/11/2008 7:19,11/09/2008 1:13,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2008-3966,15/11/2008 7:19,11/09/2008 1:13,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3965,15/11/2008 7:19,11/09/2008 1:13,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6705,15/11/2008 7:06,9/03/2008 2:44,3.3,264, Permissions Privileges and Access Controls,nan
CVE-2007-6699,15/11/2008 7:06,4/02/2008 23:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6696,15/11/2008 7:06,1/02/2008 20:00,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6692,15/11/2008 7:06,17/01/2008 2:00,6.4,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-6689,15/11/2008 7:06,17/01/2008 2:00,7.5,20, Improper Input Validation,nan
CVE-2007-6687,15/11/2008 7:06,17/01/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6677,15/11/2008 7:06,10/01/2008 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6670,15/11/2008 7:06,8/01/2008 2:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6645,15/11/2008 7:05,4/01/2008 1:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6644,15/11/2008 7:05,4/01/2008 1:46,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6643,15/11/2008 7:05,4/01/2008 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6619,15/11/2008 7:05,3/01/2008 23:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6617,15/11/2008 7:05,3/01/2008 23:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6611,15/11/2008 7:05,3/01/2008 22:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6463,15/11/2008 7:04,20/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6461,15/11/2008 7:04,20/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6418,15/11/2008 7:04,18/12/2007 0:46,2.1,200, Information Exposure,nan
CVE-2007-6376,15/11/2008 7:04,15/12/2007 1:46,7.5,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-6363,15/11/2008 7:04,15/12/2007 1:46,2.1,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6357,15/11/2008 7:04,15/12/2007 1:46,5.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6320,15/11/2008 7:04,12/12/2007 1:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6308,15/11/2008 7:04,11/12/2007 21:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6300,15/11/2008 7:04,10/12/2007 18:46,5.0,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6218,15/11/2008 7:03,4/12/2007 17:46,5.0,20, Improper Input Validation,nan
CVE-2007-6208,15/11/2008 7:03,4/12/2007 0:46,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-6096,15/11/2008 7:03,22/11/2007 0:46,5.0,255, Credentials Management,nan
CVE-2007-6095,15/11/2008 7:03,22/11/2007 0:46,4.0,200, Information Exposure,nan
CVE-2007-6094,15/11/2008 7:03,22/11/2007 0:46,4.3,20, Improper Input Validation,nan
CVE-2007-6093,15/11/2008 7:03,22/11/2007 0:46,7.1,20, Improper Input Validation,nan
CVE-2007-6092,15/11/2008 7:03,22/11/2007 0:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6081,15/11/2008 7:03,21/11/2007 23:46,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-6010,15/11/2008 7:03,15/11/2007 23:46,7.8,20, Improper Input Validation,nan
CVE-2007-6009,15/11/2008 7:03,15/11/2007 22:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6006,15/11/2008 7:03,15/11/2007 22:46,10.0,287, Improper Authentication,nan
CVE-2007-5994,15/11/2008 7:02,15/11/2007 22:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5982,15/11/2008 7:02,15/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5952,15/11/2008 7:02,14/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5939,15/11/2008 7:02,6/12/2007 15:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5816,15/11/2008 7:02,5/11/2007 18:46,5.0,200, Information Exposure,nan
CVE-2007-5807,15/11/2008 7:02,5/11/2007 17:46,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5768,15/11/2008 7:02,31/10/2007 22:46,5.0,310, Cryptographic Issues,nan
CVE-2007-5715,15/11/2008 7:01,30/10/2007 19:46,4.3,16, Configuration,nan
CVE-2007-5675,15/11/2008 7:01,24/10/2007 23:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5648,15/11/2008 7:01,23/10/2007 21:47,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5599,15/11/2008 7:01,19/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5566,15/11/2008 7:01,18/10/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5563,15/11/2008 7:01,18/10/2007 20:17,7.5,20, Improper Input Validation,nan
CVE-2007-5549,15/11/2008 7:01,18/10/2007 20:17,2.1,200, Information Exposure,nan
CVE-2007-5548,15/11/2008 7:01,18/10/2007 20:17,6.9,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5547,15/11/2008 7:01,18/10/2007 20:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5470,15/11/2008 7:01,16/10/2007 0:17,2.1,310, Cryptographic Issues,nan
CVE-2007-5375,15/11/2008 7:00,11/10/2007 10:17,2.6,20, Improper Input Validation,nan
CVE-2007-5280,15/11/2008 7:00,9/10/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5259,15/11/2008 7:00,6/10/2007 17:17,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-5258,15/11/2008 7:00,6/10/2007 17:17,7.5,20, Improper Input Validation,nan
CVE-2007-5254,15/11/2008 7:00,6/10/2007 17:17,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-5235,15/11/2008 7:00,6/10/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5216,15/11/2008 7:00,4/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5215,15/11/2008 7:00,4/10/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5196,15/11/2008 7:00,14/10/2007 18:17,7.5,310, Cryptographic Issues,nan
CVE-2007-5195,15/11/2008 7:00,14/10/2007 18:17,6.8,310, Cryptographic Issues,nan
CVE-2007-5168,15/11/2008 6:59,1/10/2007 5:17,6.8,20, Improper Input Validation,nan
CVE-2007-5166,15/11/2008 6:59,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5165,15/11/2008 6:59,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5164,15/11/2008 6:59,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5148,15/11/2008 6:59,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5146,15/11/2008 6:59,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5144,15/11/2008 6:59,1/10/2007 5:17,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5114,15/11/2008 6:59,26/09/2007 23:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5097,15/11/2008 6:59,26/09/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5096,15/11/2008 6:59,26/09/2007 22:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5085,15/11/2008 6:59,26/09/2007 10:17,5.0,287, Improper Authentication,nan
CVE-2007-5035,15/11/2008 6:59,24/09/2007 0:17,7.5,20, Improper Input Validation,nan
CVE-2007-5014,15/11/2008 6:59,20/09/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4998,15/11/2008 6:59,31/01/2008 21:00,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2007-4961,15/11/2008 6:59,18/09/2007 22:17,4.3,310, Cryptographic Issues,nan
CVE-2007-4951,15/11/2008 6:59,18/09/2007 20:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4949,15/11/2008 6:59,18/09/2007 20:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4948,15/11/2008 6:59,18/09/2007 20:17,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4947,15/11/2008 6:59,18/09/2007 20:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4883,15/11/2008 6:58,14/09/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4882,15/11/2008 6:58,14/09/2007 0:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4813,15/11/2008 6:58,11/09/2007 18:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4761,15/11/2008 6:58,8/09/2007 10:17,7.5,20, Improper Input Validation,nan
CVE-2007-4598,15/11/2008 6:57,30/08/2007 18:17,4.6,255, Credentials Management,nan
CVE-2007-4552,15/11/2008 6:57,28/08/2007 0:17,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-4551,15/11/2008 6:57,28/08/2007 0:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-3804,15/11/2008 6:54,16/07/2007 23:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-3484,15/11/2008 6:52,28/06/2007 20:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3481,15/11/2008 6:52,28/06/2007 18:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3286,15/11/2008 6:52,19/09/2007 18:17,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3130,15/11/2008 6:51,8/06/2007 16:30,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-1159,15/11/2008 6:43,2/03/2007 21:18,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-1153,15/11/2008 6:43,2/03/2007 21:18,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6167,15/11/2008 5:00,29/11/2007 1:46,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6059,15/11/2008 5:00,20/11/2007 20:46,5.0,399, Resource Management Errors,nan
CVE-2007-6033,15/11/2008 5:00,20/11/2007 2:46,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-5011,15/11/2008 5:00,20/09/2007 21:17,5.0,200, Information Exposure,nan
CVE-2007-3962,15/11/2008 5:00,25/07/2007 17:30,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3637,15/11/2008 5:00,10/07/2007 0:30,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3482,15/11/2008 5:00,28/06/2007 18:30,7.8,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3114,15/11/2008 5:00,7/06/2007 21:30,5.0,399, Resource Management Errors,nan
CVE-2007-4614,13/11/2008 6:46,31/08/2007 0:17,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2007-1865,13/11/2008 6:36,18/09/2007 19:17,1.9,189, Numeric Errors,nan
CVE-2008-5037,13/11/2008 5:00,12/11/2008 21:09,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-2654,13/11/2008 5:00,14/05/2007 21:19,4.4,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2008-4440,11/11/2008 7:12,3/10/2008 22:22,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-5034,11/11/2008 5:00,10/11/2008 16:15,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4998,10/11/2008 5:00,7/11/2008 19:36,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4997,10/11/2008 5:00,7/11/2008 19:36,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4996,10/11/2008 5:00,7/11/2008 19:36,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4988,6/11/2008 15:55,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4977,6/11/2008 15:55,6/11/2008 15:55,6.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4930,5/11/2008 5:00,4/11/2008 21:00,5.0,20, Improper Input Validation,nan
CVE-2008-4927,5/11/2008 5:00,4/11/2008 21:00,4.3,20, Improper Input Validation,nan
CVE-2008-4737,24/10/2008 10:30,24/10/2008 10:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1564,24/10/2008 4:30,31/12/2003 5:00,9.3,189, Numeric Errors,nan
CVE-2008-4724,24/10/2008 4:00,23/10/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4723,24/10/2008 4:00,23/10/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4404,3/10/2008 15:07,3/10/2008 15:07,10.0,20, Improper Input Validation,nan
CVE-2008-3274,1/10/2008 5:35,12/09/2008 16:56,5.0,200, Information Exposure,nan
CVE-2005-4632,20/09/2008 4:43,31/12/2005 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2005-4027,20/09/2008 4:41,5/12/2005 11:03,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-4126,19/09/2008 4:00,18/09/2008 17:59,6.4,16, Configuration,nan
CVE-2008-4099,19/09/2008 4:00,18/09/2008 17:59,6.4,16, Configuration,nan
CVE-2008-3876,17/09/2008 5:35,2/09/2008 14:24,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-3791,17/09/2008 5:35,3/09/2008 14:12,4.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-4079,15/09/2008 15:14,15/09/2008 15:14,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-4055,12/09/2008 4:00,11/09/2008 21:06,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3634,11/09/2008 4:00,11/09/2008 1:13,2.6,200, Information Exposure,nan
CVE-2008-2464,11/09/2008 4:00,11/09/2008 1:10,7.1,189, Numeric Errors,nan
CVE-2008-2389,11/09/2008 1:10,6/06/2008 22:32,4.9,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0238,11/09/2008 1:04,11/01/2008 21:46,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1682,11/09/2008 0:51,27/08/2008 20:41,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-0801,10/09/2008 19:20,6/10/2003 4:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-1222,10/09/2008 19:14,28/10/2002 5:00,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2000-0715,10/09/2008 19:05,20/10/2000 4:00,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2000-0132,10/09/2008 19:03,31/01/2000 5:00,2.6,200, Information Exposure,nan
CVE-2008-3440,10/09/2008 4:00,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-2975,10/09/2008 4:00,1/06/2007 1:30,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2004-0637,10/09/2008 4:00,2/09/2004 4:00,6.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-1401,10/09/2008 4:00,17/01/2003 5:00,6.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2000-0380,10/09/2008 4:00,26/04/2000 4:00,7.1,20, Improper Input Validation,nan
CVE-2000-0155,10/09/2008 4:00,18/02/2000 5:00,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3901,5/09/2008 21:44,3/09/2008 14:12,2.1,200, Information Exposure,nan
CVE-2008-3754,5/09/2008 21:43,21/08/2008 17:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3671,5/09/2008 21:43,13/08/2008 19:41,5.0,310, Cryptographic Issues,nan
CVE-2008-3590,5/09/2008 21:43,11/08/2008 23:41,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-3442,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3439,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3438,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3437,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3436,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3435,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3433,5/09/2008 21:43,1/08/2008 14:41,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-3233,5/09/2008 21:42,18/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2858,5/09/2008 21:41,25/06/2008 12:36,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-2840,5/09/2008 21:41,24/06/2008 19:41,6.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-2788,5/09/2008 21:41,20/06/2008 11:48,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1432,5/09/2008 21:37,20/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1342,5/09/2008 21:37,17/03/2008 16:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1341,5/09/2008 21:37,17/03/2008 16:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1175,5/09/2008 21:37,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1174,5/09/2008 21:37,6/03/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1133,5/09/2008 21:36,4/03/2008 18:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1132,5/09/2008 21:36,4/03/2008 0:44,4.7,264, Permissions Privileges and Access Controls,nan
CVE-2008-1131,5/09/2008 21:36,4/03/2008 0:44,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1113,5/09/2008 21:36,3/03/2008 18:44,7.8,200, Information Exposure,nan
CVE-2008-1075,5/09/2008 21:36,29/02/2008 0:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1065,5/09/2008 21:36,28/02/2008 20:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-1062,5/09/2008 21:36,28/02/2008 19:44,5.0,20, Improper Input Validation,nan
CVE-2008-1041,5/09/2008 21:36,27/02/2008 19:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0940,5/09/2008 21:36,25/02/2008 20:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0937,5/09/2008 21:36,25/02/2008 18:44,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0936,5/09/2008 21:36,25/02/2008 18:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0931,5/09/2008 21:36,4/03/2008 0:44,6.3,264, Permissions Privileges and Access Controls,nan
CVE-2008-0930,5/09/2008 21:36,4/03/2008 0:44,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0917,5/09/2008 21:36,22/02/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0913,5/09/2008 21:36,22/02/2008 23:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0909,5/09/2008 21:36,22/02/2008 21:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0889,5/09/2008 21:36,20/03/2008 0:44,2.1,264, Permissions Privileges and Access Controls,nan
CVE-2008-0846,5/09/2008 21:36,20/02/2008 21:44,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0809,5/09/2008 21:36,19/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0808,5/09/2008 21:36,19/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0806,5/09/2008 21:36,19/02/2008 0:00,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0777,5/09/2008 21:35,15/02/2008 2:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2008-0774,5/09/2008 21:35,14/02/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0732,5/09/2008 21:35,12/02/2008 21:00,2.1,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0725,5/09/2008 21:35,12/02/2008 2:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0723,5/09/2008 21:35,12/02/2008 2:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0700,5/09/2008 21:35,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0685,5/09/2008 21:35,12/02/2008 1:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0684,5/09/2008 21:35,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0669,5/09/2008 21:35,12/02/2008 1:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0666,5/09/2008 21:35,11/02/2008 21:00,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0665,5/09/2008 21:35,11/02/2008 21:00,3.6,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2008-0651,5/09/2008 21:35,7/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0650,5/09/2008 21:35,7/02/2008 21:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2008-0645,5/09/2008 21:35,7/02/2008 21:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0630,5/09/2008 21:35,6/02/2008 21:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0629,5/09/2008 21:35,6/02/2008 21:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2008-0618,5/09/2008 21:35,6/02/2008 12:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0604,5/09/2008 21:35,6/02/2008 12:00,6.8,255, Credentials Management,nan
CVE-2008-0563,5/09/2008 21:35,5/02/2008 0:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0558,5/09/2008 21:35,4/02/2008 23:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0540,5/09/2008 21:35,1/02/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0494,5/09/2008 21:35,30/01/2008 22:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0442,5/09/2008 21:35,25/01/2008 0:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0381,5/09/2008 21:34,22/01/2008 20:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0334,5/09/2008 21:34,17/01/2008 22:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0302,5/09/2008 21:34,17/01/2008 2:00,7.2,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-0182,5/09/2008 21:34,5/02/2008 0:00,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-0181,5/09/2008 21:34,5/02/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0180,5/09/2008 21:34,5/02/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0179,5/09/2008 21:34,5/02/2008 0:00,2.6,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0178,5/09/2008 21:34,5/02/2008 0:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-0162,5/09/2008 21:34,22/02/2008 21:44,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2007-6675,5/09/2008 21:33,8/01/2008 19:46,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-6484,5/09/2008 21:33,20/12/2007 20:46,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6470,5/09/2008 21:33,20/12/2007 0:46,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-6469,5/09/2008 21:33,20/12/2007 0:46,9.3,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6460,5/09/2008 21:33,20/12/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6415,5/09/2008 21:33,25/01/2008 0:00,8.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6390,5/09/2008 21:33,17/12/2007 18:46,4.3,352, Cross-Site Request Forgery (CSRF),nan
CVE-2007-6380,5/09/2008 21:33,15/12/2007 1:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6365,5/09/2008 21:33,15/12/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6090,5/09/2008 21:32,22/11/2007 0:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-6043,5/09/2008 21:32,20/11/2007 19:46,7.1,200, Information Exposure,nan
CVE-2007-6042,5/09/2008 21:32,20/11/2007 19:46,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6032,5/09/2008 21:32,20/11/2007 2:46,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-6029,5/09/2008 21:32,20/11/2007 2:46,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6025,5/09/2008 21:32,19/11/2007 22:46,7.1,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6011,5/09/2008 21:32,16/11/2007 0:46,10.0,287, Improper Authentication,nan
CVE-2007-6008,5/09/2008 21:32,15/11/2007 22:46,9.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5769,5/09/2008 21:31,6/12/2007 15:46,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5757,5/09/2008 21:31,13/02/2008 0:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2007-5714,5/09/2008 21:31,30/10/2007 19:46,6.8,287, Improper Authentication,nan
CVE-2007-5585,5/09/2008 21:31,19/10/2007 20:17,5.0,399, Resource Management Errors,nan
CVE-2007-5565,5/09/2008 21:31,18/10/2007 21:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5561,5/09/2008 21:31,18/10/2007 20:17,10.0,134, Use of Externally-Controlled Format String,nan
CVE-2007-5560,5/09/2008 21:31,18/10/2007 20:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5559,5/09/2008 21:31,18/10/2007 20:17,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5558,5/09/2008 21:31,18/10/2007 20:17,7.8,189, Numeric Errors,nan
CVE-2007-5556,5/09/2008 21:31,18/10/2007 20:17,7.8,20, Improper Input Validation,nan
CVE-2007-5555,5/09/2008 21:31,18/10/2007 20:17,6.9,200, Information Exposure,nan
CVE-2007-5554,5/09/2008 21:31,18/10/2007 20:17,7.1,200, Information Exposure,nan
CVE-2007-5552,5/09/2008 21:31,18/10/2007 20:17,9.3,189, Numeric Errors,nan
CVE-2007-5550,5/09/2008 21:31,18/10/2007 20:17,5.0,200, Information Exposure,nan
CVE-2007-5397,5/09/2008 21:30,28/02/2008 20:44,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-5226,5/09/2008 21:30,5/10/2007 21:17,5.0,20, Improper Input Validation,nan
CVE-2007-5179,5/09/2008 21:30,3/10/2007 14:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5167,5/09/2008 21:30,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5163,5/09/2008 21:30,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5160,5/09/2008 21:30,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5159,5/09/2008 21:30,1/10/2007 5:17,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2007-5147,5/09/2008 21:30,1/10/2007 5:17,6.8,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-5142,5/09/2008 21:30,28/09/2007 21:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5091,5/09/2008 21:29,26/09/2007 20:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5028,5/09/2008 21:29,21/09/2007 19:17,7.5,200, Information Exposure,nan
CVE-2007-5024,5/09/2008 21:29,21/09/2007 19:17,2.1,310, Cryptographic Issues,nan
CVE-2007-4913,5/09/2008 21:29,17/09/2007 17:17,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-4849,5/09/2008 21:29,12/09/2007 20:17,4.4,264, Permissions Privileges and Access Controls,nan
CVE-2007-4741,5/09/2008 21:29,6/09/2007 19:17,3.5,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4669,5/09/2008 21:28,4/09/2007 22:17,4.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4635,5/09/2008 21:28,31/08/2007 23:17,5.0,20, Improper Input Validation,nan
CVE-2007-4557,5/09/2008 21:28,28/08/2007 1:17,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4548,5/09/2008 21:28,27/08/2007 23:17,10.0,287, Improper Authentication,nan
CVE-2007-3676,5/09/2008 21:26,13/02/2008 0:00,10.0,399, Resource Management Errors,nan
CVE-2007-3638,5/09/2008 21:26,10/07/2007 0:30,6.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-1381,5/09/2008 21:20,10/03/2007 0:19,7.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-0997,5/09/2008 21:19,18/09/2007 19:17,6.9,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2007-0710,5/09/2008 21:18,16/02/2007 19:28,2.1,399, Resource Management Errors,nan
CVE-2007-0004,5/09/2008 21:16,18/09/2007 19:17,1.9,264, Permissions Privileges and Access Controls,nan
CVE-2006-7223,5/09/2008 21:16,14/09/2007 0:17,6.5,264, Permissions Privileges and Access Controls,nan
CVE-2006-7046,5/09/2008 21:16,24/02/2007 0:28,9.3,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6999,5/09/2008 21:16,12/02/2007 17:28,4.3,200, Information Exposure,nan
CVE-2006-6997,5/09/2008 21:16,12/02/2007 11:28,10.0,287, Improper Authentication,nan
CVE-2006-6971,5/09/2008 21:16,7/02/2007 11:28,5.0,20, Improper Input Validation,nan
CVE-2006-4936,5/09/2008 21:10,23/09/2006 0:07,10.0,20, Improper Input Validation,nan
CVE-2006-4935,5/09/2008 21:10,23/09/2006 0:07,10.0,20, Improper Input Validation,nan
CVE-2006-4068,5/09/2008 21:08,10/08/2006 0:04,5.0,255, Credentials Management,nan
CVE-2006-3924,5/09/2008 21:08,28/07/2006 23:04,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-3579,5/09/2008 21:07,13/07/2006 10:05,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2006-2758,5/09/2008 21:05,2/06/2006 1:02,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2006-0535,5/09/2008 20:59,4/02/2006 0:06,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2005-4862,5/09/2008 20:58,31/12/2005 5:00,5.0,255, Credentials Management,nan
CVE-2005-4861,5/09/2008 20:58,31/12/2005 5:00,7.5,287, Improper Authentication,nan
CVE-2005-4846,5/09/2008 20:57,31/12/2005 5:00,4.3,20, Improper Input Validation,nan
CVE-2005-1330,5/09/2008 20:48,4/05/2005 4:00,4.9,20, Improper Input Validation,nan
CVE-2005-0351,5/09/2008 20:46,7/04/2005 4:00,4.6,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-0116,5/09/2008 20:45,18/01/2005 5:00,7.5,20, Improper Input Validation,nan
CVE-2004-2756,5/09/2008 20:45,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2754,5/09/2008 20:45,31/12/2004 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2004-2752,5/09/2008 20:45,31/12/2004 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2004-2750,5/09/2008 20:45,31/12/2004 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2004-2731,5/09/2008 20:44,31/12/2004 5:00,4.4,189, Numeric Errors,nan
CVE-2004-2718,5/09/2008 20:44,31/12/2004 5:00,4.3,264, Permissions Privileges and Access Controls,nan
CVE-2004-2712,5/09/2008 20:44,31/12/2004 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2711,5/09/2008 20:44,31/12/2004 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2710,5/09/2008 20:44,31/12/2004 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2709,5/09/2008 20:44,31/12/2004 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2708,5/09/2008 20:44,31/12/2004 5:00,5.0,255, Credentials Management,nan
CVE-2004-1777,5/09/2008 20:42,31/12/2004 5:00,5.0,20, Improper Input Validation,nan
CVE-2004-0041,5/09/2008 20:37,3/02/2004 5:00,7.5,264, Permissions Privileges and Access Controls,nan
CVE-2003-1542,5/09/2008 20:37,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1539,5/09/2008 20:37,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1538,5/09/2008 20:37,31/12/2003 5:00,6.4,20, Improper Input Validation,nan
CVE-2003-1537,5/09/2008 20:37,31/12/2003 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2003-1526,5/09/2008 20:37,31/12/2003 5:00,5.0,200, Information Exposure,nan
CVE-2003-1520,5/09/2008 20:37,31/12/2003 5:00,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1512,5/09/2008 20:37,31/12/2003 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1511,5/09/2008 20:37,31/12/2003 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2003-1508,5/09/2008 20:37,31/12/2003 5:00,4.3,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2003-1485,5/09/2008 20:37,31/12/2003 5:00,5.0,20, Improper Input Validation,nan
CVE-2003-1482,5/09/2008 20:37,31/12/2003 5:00,4.6,255, Credentials Management,nan
CVE-2003-1474,5/09/2008 20:37,31/12/2003 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2003-1460,5/09/2008 20:36,31/12/2003 5:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2003-1320,5/09/2008 20:36,31/12/2003 5:00,5.1,399, Resource Management Errors,nan
CVE-2003-1253,5/09/2008 20:36,31/12/2003 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-1244,5/09/2008 20:36,31/12/2003 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2003-1240,5/09/2008 20:36,31/12/2003 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2003-0857,5/09/2008 20:35,31/12/2003 5:00,4.6,264, Permissions Privileges and Access Controls,nan
CVE-2002-2425,5/09/2008 20:33,31/12/2002 5:00,10.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-2424,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2423,5/09/2008 20:33,31/12/2002 5:00,6.4,20, Improper Input Validation,nan
CVE-2002-2422,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2421,5/09/2008 20:33,31/12/2002 5:00,7.8,20, Improper Input Validation,nan
CVE-2002-2420,5/09/2008 20:33,31/12/2002 5:00,7.5,20, Improper Input Validation,nan
CVE-2002-2419,5/09/2008 20:33,31/12/2002 5:00,7.8,189, Numeric Errors,nan
CVE-2002-2418,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2417,5/09/2008 20:33,31/12/2002 5:00,10.0,287, Improper Authentication,nan
CVE-2002-2416,5/09/2008 20:33,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2415,5/09/2008 20:33,31/12/2002 5:00,6.8,20, Improper Input Validation,nan
CVE-2002-2412,5/09/2008 20:33,31/12/2002 5:00,2.1,255, Credentials Management,nan
CVE-2002-2410,5/09/2008 20:33,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2409,5/09/2008 20:33,31/12/2002 5:00,3.5,200, Information Exposure,nan
CVE-2002-2407,5/09/2008 20:33,31/12/2002 5:00,6.9,264, Permissions Privileges and Access Controls,nan
CVE-2002-2406,5/09/2008 20:33,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2002-2405,5/09/2008 20:33,31/12/2002 5:00,4.9,264, Permissions Privileges and Access Controls,nan
CVE-2002-2403,5/09/2008 20:33,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2399,5/09/2008 20:33,31/12/2002 5:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2397,5/09/2008 20:33,31/12/2002 5:00,10.0,287, Improper Authentication,nan
CVE-2002-2396,5/09/2008 20:33,31/12/2002 5:00,7.2,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2395,5/09/2008 20:33,31/12/2002 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-2394,5/09/2008 20:33,31/12/2002 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-2391,5/09/2008 20:33,31/12/2002 5:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2002-2390,5/09/2008 20:33,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2389,5/09/2008 20:33,31/12/2002 5:00,5.0,255, Credentials Management,nan
CVE-2002-2388,5/09/2008 20:33,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2387,5/09/2008 20:33,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2386,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2385,5/09/2008 20:33,31/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2384,5/09/2008 20:33,31/12/2002 5:00,3.6,255, Credentials Management,nan
CVE-2002-2382,5/09/2008 20:33,31/12/2002 5:00,7.2,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2002-2381,5/09/2008 20:33,31/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2380,5/09/2008 20:33,31/12/2002 5:00,6.4,200, Information Exposure,nan
CVE-2002-2379,5/09/2008 20:33,31/12/2002 5:00,7.8,310, Cryptographic Issues,nan
CVE-2002-2378,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2377,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2376,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2375,5/09/2008 20:33,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2373,5/09/2008 20:33,31/12/2002 5:00,7.5,16, Configuration,nan
CVE-2002-2372,5/09/2008 20:33,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2371,5/09/2008 20:33,31/12/2002 5:00,7.8,20, Improper Input Validation,nan
CVE-2002-2369,5/09/2008 20:33,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2368,5/09/2008 20:33,31/12/2002 5:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2367,5/09/2008 20:33,31/12/2002 5:00,7.8,189, Numeric Errors,nan
CVE-2002-2366,5/09/2008 20:33,31/12/2002 5:00,6.8,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2365,5/09/2008 20:33,31/12/2002 5:00,10.0,20, Improper Input Validation,nan
CVE-2002-2364,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2363,5/09/2008 20:33,31/12/2002 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2002-2362,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2361,5/09/2008 20:33,31/12/2002 5:00,5.8,264, Permissions Privileges and Access Controls,nan
CVE-2002-2360,5/09/2008 20:33,31/12/2002 5:00,9.3,264, Permissions Privileges and Access Controls,nan
CVE-2002-2359,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2358,5/09/2008 20:33,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2357,5/09/2008 20:33,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2356,5/09/2008 20:33,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2002-2355,5/09/2008 20:33,31/12/2002 5:00,7.1,255, Credentials Management,nan
CVE-2002-2354,5/09/2008 20:33,31/12/2002 5:00,7.8,20, Improper Input Validation,nan
CVE-2002-2351,5/09/2008 20:32,31/12/2002 5:00,6.4,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2350,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2349,5/09/2008 20:32,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2348,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2347,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2346,5/09/2008 20:32,31/12/2002 5:00,5.0,200, Information Exposure,nan
CVE-2002-2345,5/09/2008 20:32,31/12/2002 5:00,7.5,255, Credentials Management,nan
CVE-2002-2344,5/09/2008 20:32,31/12/2002 5:00,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2002-2343,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2341,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2339,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2338,5/09/2008 20:32,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2002-2336,5/09/2008 20:32,31/12/2002 5:00,4.3,16, Configuration,nan
CVE-2002-2335,5/09/2008 20:32,31/12/2002 5:00,5.0,16, Configuration,nan
CVE-2002-2334,5/09/2008 20:32,31/12/2002 5:00,3.6,264, Permissions Privileges and Access Controls,nan
CVE-2002-2333,5/09/2008 20:32,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2332,5/09/2008 20:32,31/12/2002 5:00,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2331,5/09/2008 20:32,31/12/2002 5:00,5.8,16, Configuration,nan
CVE-2002-2329,5/09/2008 20:32,31/12/2002 5:00,7.8,20, Improper Input Validation,nan
CVE-2002-2326,5/09/2008 20:32,31/12/2002 5:00,5.0,310, Cryptographic Issues,nan
CVE-2002-2325,5/09/2008 20:32,31/12/2002 5:00,7.8,20, Improper Input Validation,nan
CVE-2002-2324,5/09/2008 20:32,31/12/2002 5:00,7.2,264, Permissions Privileges and Access Controls,nan
CVE-2002-2323,5/09/2008 20:32,31/12/2002 5:00,5.0,59, Improper Link Resolution Before File Access (‘Link Following’),nan
CVE-2002-2322,5/09/2008 20:32,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2002-2321,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2320,5/09/2008 20:32,31/12/2002 5:00,7.8,264, Permissions Privileges and Access Controls,nan
CVE-2002-2319,5/09/2008 20:32,31/12/2002 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-2318,5/09/2008 20:32,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-2314,5/09/2008 20:32,31/12/2002 5:00,5.0,20, Improper Input Validation,nan
CVE-2002-2311,5/09/2008 20:32,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2002-2310,5/09/2008 20:32,31/12/2002 5:00,5.0,255, Credentials Management,nan
CVE-2002-2309,5/09/2008 20:32,31/12/2002 5:00,7.8,399, Resource Management Errors,nan
CVE-2002-2245,5/09/2008 20:32,31/12/2002 5:00,5.0,189, Numeric Errors,nan
CVE-2002-2236,5/09/2008 20:32,31/12/2002 5:00,10.0,20, Improper Input Validation,nan
CVE-2002-2235,5/09/2008 20:32,31/12/2002 5:00,5.0,189, Numeric Errors,nan
CVE-2002-2234,5/09/2008 20:32,31/12/2002 5:00,4.3,16, Configuration,nan
CVE-2002-2232,5/09/2008 20:32,31/12/2002 5:00,8.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-2229,5/09/2008 20:32,31/12/2002 5:00,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2002-2228,5/09/2008 20:32,31/12/2002 5:00,6.4,20, Improper Input Validation,nan
CVE-2002-2196,5/09/2008 20:32,31/12/2002 5:00,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2002-1958,5/09/2008 20:31,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-1874,5/09/2008 20:31,31/12/2002 5:00,10.0,20, Improper Input Validation,nan
CVE-2002-1798,5/09/2008 20:31,31/12/2002 5:00,6.4,264, Permissions Privileges and Access Controls,nan
CVE-2002-0999,5/09/2008 20:29,4/10/2002 4:00,7.5,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2001-0308,5/09/2008 20:23,3/05/2001 4:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2001-0307,5/09/2008 20:23,3/05/2001 4:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-1999-0453,5/09/2008 20:17,1/01/1999 5:00,5.0,200, Information Exposure,nan
CVE-2008-3939,5/09/2008 15:08,5/09/2008 15:08,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2008-3938,5/09/2008 15:08,5/09/2008 15:08,5.8,352, Cross-Site Request Forgery (CSRF),nan
CVE-2008-3937,5/09/2008 15:08,5/09/2008 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3935,5/09/2008 15:08,5/09/2008 15:08,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-3893,5/09/2008 4:00,3/09/2008 14:12,1.9,200, Information Exposure,nan
CVE-2008-3738,5/09/2008 4:00,27/08/2008 20:41,6.8,287, Improper Authentication,nan
CVE-2008-3397,5/09/2008 4:00,31/07/2008 16:41,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-2173,5/09/2008 4:00,13/05/2008 22:20,7.1,20, Improper Input Validation,nan
CVE-2008-2170,5/09/2008 4:00,13/05/2008 22:20,7.1,20, Improper Input Validation,nan
CVE-2008-1511,5/09/2008 4:00,25/03/2008 23:44,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2008-1299,5/09/2008 4:00,12/03/2008 17:44,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5954,5/09/2008 4:00,14/11/2007 1:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-5927,5/09/2008 4:00,10/11/2007 2:46,9.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-5817,5/09/2008 4:00,5/11/2007 18:46,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4043,5/09/2008 4:00,27/07/2007 22:30,5.0,287, Improper Authentication,nan
CVE-2007-4041,5/09/2008 4:00,27/07/2007 22:30,6.8,78, Improper Neutralization of Special Elements used in an OS Command (‘OS Command Injection’),nan
CVE-2007-4040,5/09/2008 4:00,27/07/2007 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-4039,5/09/2008 4:00,27/07/2007 22:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3968,5/09/2008 4:00,25/07/2007 17:30,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-3967,5/09/2008 4:00,25/07/2007 17:30,5.0,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2007-3954,5/09/2008 4:00,24/07/2007 17:30,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2007-3652,5/09/2008 4:00,9/07/2008 0:41,6.8,89, Improper Neutralization of Special Elements used in an SQL Command (‘SQL Injection’),nan
CVE-2007-3651,5/09/2008 4:00,9/07/2008 0:41,4.3,200, Information Exposure,nan
CVE-2007-3650,5/09/2008 4:00,9/07/2008 0:41,5.0,200, Information Exposure,nan
CVE-2007-1966,5/09/2008 4:00,11/04/2007 10:19,5.0,287, Improper Authentication,nan
CVE-2007-1383,5/09/2008 4:00,10/03/2007 0:19,10.0,189, Numeric Errors,nan
CVE-2007-0342,5/09/2008 4:00,18/01/2007 2:28,4.3,399, Resource Management Errors,nan
CVE-2006-7229,5/09/2008 4:00,15/11/2007 0:46,7.8,399, Resource Management Errors,nan
CVE-2006-7221,5/09/2008 4:00,25/07/2007 17:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2006-6975,5/09/2008 4:00,8/02/2007 17:28,5.1,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2006-6684,5/09/2008 4:00,21/12/2006 19:28,7.5,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2005-4849,5/09/2008 4:00,31/12/2005 5:00,5.0,200, Information Exposure,nan
CVE-2005-1813,5/09/2008 4:00,1/06/2005 4:00,7.8,22, Improper Limitation of a Pathname to a Restricted Directory (‘Path Traversal’),nan
CVE-2005-1812,5/09/2008 4:00,1/06/2005 4:00,10.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2004-2700,5/09/2008 4:00,31/12/2004 5:00,9.0,264, Permissions Privileges and Access Controls,nan
CVE-2004-2687,5/09/2008 4:00,31/12/2004 5:00,9.3,16, Configuration,nan
CVE-2004-2182,5/09/2008 4:00,31/12/2004 5:00,7.5,287, Improper Authentication,nan
CVE-2003-1562,5/09/2008 4:00,31/12/2003 5:00,7.6,362, Concurrent Execution using Shared Resource with Improper Synchronization (‘Race Condition’),nan
CVE-2002-2230,5/09/2008 4:00,31/12/2002 5:00,4.3,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2002-1991,5/09/2008 4:00,31/12/2002 5:00,7.5,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2002-1432,5/09/2008 4:00,11/04/2003 4:00,5.0,200, Information Exposure,nan
CVE-2008-2007,12/06/2008 4:00,22/05/2008 13:09,5.0,20, Improper Input Validation,nan
CVE-2007-5317,18/04/2008 4:00,9/10/2007 21:17,5.0,79, Improper Neutralization of Input During Web Page Generation (‘Cross-site Scripting’),nan
CVE-2008-1683,15/04/2008 4:00,6/04/2008 23:44,5.0,287, Improper Authentication,nan
CVE-2008-1271,12/03/2008 4:00,10/03/2008 21:44,5.0,255, Credentials Management,nan
CVE-2008-1112,5/03/2008 5:00,3/03/2008 18:44,5.0,264, Permissions Privileges and Access Controls,nan
CVE-2007-4721,11/02/2008 5:00,5/09/2007 19:17,5.0,189, Numeric Errors,nan
CVE-2007-6678,21/01/2008 5:00,10/01/2008 1:46,5.0,94, Improper Control of Generation of Code (‘Code Injection’),nan
CVE-2007-6449,10/01/2008 5:00,19/12/2007 22:46,5.0,20, Improper Input Validation,nan
CVE-2007-6448,10/01/2008 5:00,19/12/2007 22:46,5.0,20, Improper Input Validation,nan
CVE-2007-6447,10/01/2008 5:00,19/12/2007 22:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6446,10/01/2008 5:00,19/12/2007 22:46,5.0,399, Resource Management Errors,nan
CVE-2007-6444,10/01/2008 5:00,19/12/2007 22:46,5.0,20, Improper Input Validation,nan
CVE-2007-6443,10/01/2008 5:00,19/12/2007 22:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6442,10/01/2008 5:00,19/12/2007 22:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-6370,10/01/2008 5:00,15/12/2007 1:46,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan
CVE-2007-3004,10/01/2008 5:00,4/06/2007 17:30,5.0,119, Improper Restriction of Operations within the Bounds of a Memory Buffer,nan

In [5]:

df.describe()

Out[5]:

cvss cwe_code Unnamed: 6
count 89660.000000 89660.000000 0.0
mean 6.021429 199.690854 NaN
std 1.994757 176.177244 NaN
min 0.000000 1.000000 NaN
25% 4.300000 79.000000 NaN
50% 5.800000 119.000000 NaN
75% 7.500000 284.000000 NaN
max 10.000000 1188.000000 NaN

In [7]:

df.shape

Out[7]:

(89660, 7)

In [8]:

df.sample

Out[8]:

In [12]:

df.tail(20)

Out[12]:

Unnamed: 0 mod_date pub_date cvss cwe_code cwe_name Unnamed: 6
89640 CVE-2003-1562 5/09/2008 4:00 31/12/2003 5:00 7.6 362 Concurrent Execution using Shared Resource wi… NaN
89641 CVE-2002-2230 5/09/2008 4:00 31/12/2002 5:00 4.3 79 Improper Neutralization of Input During Web P… NaN
89642 CVE-2002-1991 5/09/2008 4:00 31/12/2002 5:00 7.5 94 Improper Control of Generation of Code (‘Code… NaN
89643 CVE-2002-1432 5/09/2008 4:00 11/04/2003 4:00 5.0 200 Information Exposure NaN
89644 CVE-2008-2007 12/06/2008 4:00 22/05/2008 13:09 5.0 20 Improper Input Validation NaN
89645 CVE-2007-5317 18/04/2008 4:00 9/10/2007 21:17 5.0 79 Improper Neutralization of Input During Web P… NaN
89646 CVE-2008-1683 15/04/2008 4:00 6/04/2008 23:44 5.0 287 Improper Authentication NaN
89647 CVE-2008-1271 12/03/2008 4:00 10/03/2008 21:44 5.0 255 Credentials Management NaN
89648 CVE-2008-1112 5/03/2008 5:00 3/03/2008 18:44 5.0 264 Permissions Privileges and Access Controls NaN
89649 CVE-2007-4721 11/02/2008 5:00 5/09/2007 19:17 5.0 189 Numeric Errors NaN
89650 CVE-2007-6678 21/01/2008 5:00 10/01/2008 1:46 5.0 94 Improper Control of Generation of Code (‘Code… NaN
89651 CVE-2007-6449 10/01/2008 5:00 19/12/2007 22:46 5.0 20 Improper Input Validation NaN
89652 CVE-2007-6448 10/01/2008 5:00 19/12/2007 22:46 5.0 20 Improper Input Validation NaN
89653 CVE-2007-6447 10/01/2008 5:00 19/12/2007 22:46 5.0 119 Improper Restriction of Operations within the… NaN
89654 CVE-2007-6446 10/01/2008 5:00 19/12/2007 22:46 5.0 399 Resource Management Errors NaN
89655 CVE-2007-6444 10/01/2008 5:00 19/12/2007 22:46 5.0 20 Improper Input Validation NaN
89656 CVE-2007-6443 10/01/2008 5:00 19/12/2007 22:46 5.0 119 Improper Restriction of Operations within the… NaN
89657 CVE-2007-6442 10/01/2008 5:00 19/12/2007 22:46 5.0 119 Improper Restriction of Operations within the… NaN
89658 CVE-2007-6370 10/01/2008 5:00 15/12/2007 1:46 5.0 119 Improper Restriction of Operations within the… NaN
89659 CVE-2007-3004 10/01/2008 5:00 4/06/2007 17:30 5.0 119 Improper Restriction of Operations within the… NaN

In [ ]: